From ceecdf97d83b141d4dc1c3833bc2e9025051be6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Fri, 2 Sep 2022 13:22:24 +0300 Subject: [PATCH] refactor --- src/views/terminal/TerminalDoc.vue | 8 +++---- src/views/theming/Theming.vue | 2 +- src/views/treetable/TreeTableDoc.vue | 23 ++++++++++++++++--- .../treetable/TreeTableResponsiveDemo.vue | 8 +++---- 4 files changed, 29 insertions(+), 12 deletions(-) diff --git a/src/views/terminal/TerminalDoc.vue b/src/views/terminal/TerminalDoc.vue index ce0aa4fb4..debeef75e 100755 --- a/src/views/terminal/TerminalDoc.vue +++ b/src/views/terminal/TerminalDoc.vue @@ -20,7 +20,7 @@ import TerminalService from 'primevue/terminalservice'; import TerminalService from 'primevue/terminalservice'; export default { - methods: { + methods: { commandHandler(text) { let response; let argsIndex = text.indexOf(' '); @@ -95,7 +95,7 @@ export default { - + p-terminal Container element. @@ -107,7 +107,7 @@ export default { p-terminal-prompt Prompt text. - + p-terminal-response Command response. @@ -136,7 +136,7 @@ export default { import TerminalService from 'primevue/terminalservice'; export default { - methods: { + methods: { commandHandler(text) { let response; let argsIndex = text.indexOf(' '); diff --git a/src/views/theming/Theming.vue b/src/views/theming/Theming.vue index d1ffb72ba..f7bb9c3a4 100755 --- a/src/views/theming/Theming.vue +++ b/src/views/theming/Theming.vue @@ -59,7 +59,7 @@ html { <style lang="scss" scoped> :deep(.dark-panel.p-panel) { - .p-panel-titlebar { + .p-panel-title { background: #212121; } diff --git a/src/views/treetable/TreeTableDoc.vue b/src/views/treetable/TreeTableDoc.vue index f1667cae7..0e54b46de 100755 --- a/src/views/treetable/TreeTableDoc.vue +++ b/src/views/treetable/TreeTableDoc.vue @@ -889,7 +889,7 @@ data() {

Optionally a global filter is available to search against all the fields, in this case the special global keyword should be the property to be populated.

In addition filterMode specifies the filtering strategy. In lenient mode when the query matches a node, children of the node are not searched further as all descendants of the node are included. On the other hand, - in strict mode when the query matches a node, filtering continues on all descendants.

+ in strict mode when the query matches a node, filtering continues on all descendants.