@kubex/zinc 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +1034 -111
- package/dist/vscode.html-custom-data.json +85 -15
- package/dist/web-types.json +215 -24
- package/dist/zn.d.ts +1234 -888
- package/dist/zn.min.css +1 -1
- package/dist/zn.min.js +1979 -940
- package/docs/_includes/default.njk +1 -0
- package/docs/assets/scripts/docs.js +4 -5
- package/docs/assets/scripts/search.js +0 -9
- package/docs/assets/styles/docs.css +3 -3
- package/docs/data/data-table.json +79 -0
- package/docs/data/products-table.json +36 -0
- package/docs/eleventy.config.cjs +3 -0
- package/docs/pages/components/data-select.md +10 -0
- package/docs/pages/components/data-table.md +84 -45
- package/docs/pages/components/dialog.md +1 -1
- package/docs/pages/components/editor.md +1 -3
- package/docs/pages/components/filter-wrapper.md +20 -0
- package/docs/pages/components/icon.md +2 -0
- package/docs/pages/components/item.md +2 -2
- package/docs/pages/components/menu-item.md +12 -3
- package/docs/pages/components/panel.md +17 -0
- package/docs/pages/components/progress-tile.md +17 -1
- package/docs/pages/components/settings-container.md +137 -0
- package/docs/pages/components/textarea.md +1 -1
- package/package.json +3 -1
- package/scss/_root.scss +26 -0
- package/scss/boot.scss +27 -1
- package/scss/mixins/index.scss +30 -1
- package/scss/shared/_base.scss +1 -1
- package/scss/shared/_button.scss +1 -1
- package/scss/shared/layout.scss +7 -0
- package/scss/themes/_dark.scss +5 -5
- package/scss/themes/_light.scss +6 -5
- package/scss/variables/index.scss +9 -0
- package/src/components/alert/alert.component.ts +1 -1
- package/src/components/alert/alert.scss +18 -4
- package/src/components/button/button.component.ts +6 -2
- package/src/components/button/button.scss +16 -1
- package/src/components/button-menu/button-menu.component.ts +23 -15
- package/src/components/button-menu/button-menu.scss +4 -4
- package/src/components/checkbox/checkbox.component.ts +5 -1
- package/src/components/checkbox/checkbox.scss +1 -1
- package/src/components/chip/chip.component.ts +7 -3
- package/src/components/chip/chip.scss +9 -1
- package/src/components/collapsible/collapsible.component.ts +48 -2
- package/src/components/confirm/confirm.component.ts +1 -2
- package/src/components/content-block/content-block.component.ts +25 -1
- package/src/components/content-block/content-block.scss +8 -0
- package/src/components/data-select/data-select.component.ts +1 -1
- package/src/components/data-table/data-table.component.ts +361 -422
- package/src/components/data-table/data-table.scss +6 -1
- package/src/components/datepicker/datepicker.scss +1 -1
- package/src/components/dialog/dialog.component.ts +52 -33
- package/src/components/dialog/dialog.scss +15 -1
- package/src/components/dropdown/dropdown.component.ts +1 -1
- package/src/components/editor/editor.component.ts +196 -158
- package/src/components/editor/editor.scss +25 -5
- package/src/components/editor/modules/ai/index.ts +281 -0
- package/src/components/editor/modules/ai/panel/ai-panel.component.ts +102 -0
- package/src/components/editor/modules/ai/panel/ai-panel.scss +83 -0
- package/src/components/editor/modules/ai/tooltip/ai-tooltip.component.ts +30 -0
- package/src/components/editor/modules/ai/tooltip/ai-tooltip.scss +28 -0
- package/src/components/editor/modules/{attachment-module.ts → attachment/attachment.ts} +7 -7
- package/src/components/editor/modules/context-menu/context-menu-component.ts +115 -0
- package/src/components/editor/modules/context-menu/context-menu.scss +49 -0
- package/src/components/editor/modules/context-menu/context-menu.ts +296 -0
- package/src/components/editor/modules/context-menu/quick-action/index.ts +12 -0
- package/src/components/editor/modules/context-menu/quick-action/quick-action.component.ts +18 -0
- package/src/components/editor/modules/date-picker/date-picker.ts +77 -0
- package/src/components/editor/modules/dialog/dialog.component.ts +115 -0
- package/src/components/editor/modules/dialog/dialog.scss +43 -0
- package/src/components/editor/modules/dialog/dialog.ts +46 -0
- package/src/components/editor/modules/{drag-drop-module.ts → drag-drop/drag-drop.ts} +6 -6
- package/src/components/editor/modules/emoji/emoji.ts +106 -0
- package/src/components/editor/modules/emoji/headless/headless-emoji.component.ts +122 -0
- package/src/components/editor/modules/emoji/headless/headless-emoji.scss +52 -0
- package/src/components/editor/modules/emoji/headless/headless-emoji.ts +223 -0
- package/src/components/editor/modules/{image-resize-module/image-resize-module.ts → image-resize/image-resize.ts} +5 -5
- package/src/components/editor/modules/{time-tracking-module.ts → time-tracking/time-tracking.ts} +5 -5
- package/src/components/editor/modules/toolbar/tool/index.ts +12 -0
- package/src/components/editor/modules/toolbar/tool/tool.component.ts +30 -0
- package/src/components/editor/modules/toolbar/tool/tool.scss +5 -0
- package/src/components/editor/modules/toolbar/toolbar.component.ts +738 -0
- package/src/components/editor/modules/toolbar/toolbar.scss +98 -0
- package/src/components/editor/modules/toolbar/toolbar.ts +328 -0
- package/src/components/expanding-action/expanding-action.component.ts +2 -2
- package/src/components/expanding-action/expanding-action.scss +2 -2
- package/src/components/filter-wrapper/filter-wrapper.component.ts +91 -0
- package/src/components/filter-wrapper/filter-wrapper.scss +11 -0
- package/src/components/filter-wrapper/filter-wrapper.test.ts +10 -0
- package/src/components/filter-wrapper/index.ts +12 -0
- package/src/components/header/header.component.ts +1 -1
- package/src/components/header/header.scss +8 -1
- package/src/components/hover-container/hover-container.scss +39 -36
- package/src/components/icon/icon.component.ts +11 -5
- package/src/components/icon/icon.scss +15 -2
- package/src/components/inline-edit/inline-edit.component.ts +28 -3
- package/src/components/inline-edit/inline-edit.scss +4 -1
- package/src/components/input/input.scss +1 -1
- package/src/components/item/item.component.ts +30 -19
- package/src/components/item/item.scss +56 -14
- package/src/components/linked-select/linked-select.component.ts +5 -1
- package/src/components/menu/menu.component.ts +1 -0
- package/src/components/menu/menu.scss +1 -1
- package/src/components/menu-item/menu-item.component.ts +22 -4
- package/src/components/menu-item/menu-item.scss +54 -7
- package/src/components/navbar/navbar.component.ts +7 -1
- package/src/components/navbar/navbar.scss +26 -16
- package/src/components/option/option.component.ts +4 -1
- package/src/components/option/option.scss +9 -0
- package/src/components/page-nav/page-nav.component.ts +2 -2
- package/src/components/page-nav/page-nav.scss +4 -4
- package/src/components/panel/panel.component.ts +20 -9
- package/src/components/panel/panel.scss +5 -1
- package/src/components/popup/popup.component.ts +16 -2
- package/src/components/progress-tile/progress-tile.component.ts +10 -4
- package/src/components/progress-tile/progress-tile.scss +7 -4
- package/src/components/query-builder/query-builder.component.ts +1 -1
- package/src/components/radio/radio.scss +1 -1
- package/src/components/scroll-container/scroll-container.component.ts +56 -9
- package/src/components/scroll-container/scroll-container.scss +37 -2
- package/src/components/select/select.component.ts +3 -0
- package/src/components/select/select.scss +1 -1
- package/src/components/settings-container/index.ts +12 -0
- package/src/components/settings-container/settings-container.component.ts +226 -0
- package/src/components/settings-container/settings-container.scss +92 -0
- package/src/components/settings-container/settings-container.test.ts +10 -0
- package/src/components/skeleton/skeleton.scss +5 -4
- package/src/components/sp/sp.component.ts +2 -0
- package/src/components/sp/sp.scss +2 -0
- package/src/components/split-button/split-button.component.ts +24 -18
- package/src/components/split-pane/split-pane.component.ts +5 -5
- package/src/components/stat/stat.component.ts +5 -1
- package/src/components/stat/stat.scss +24 -1
- package/src/components/style/style.component.ts +18 -0
- package/src/components/tabs/tabs.component.ts +12 -1
- package/src/components/textarea/textarea.component.ts +3 -1
- package/src/components/textarea/textarea.scss +21 -2
- package/src/components/vertical-stepper/vertical-stepper.scss +1 -1
- package/src/internal/form.ts +3 -1
- package/src/internal/slot.ts +29 -3
- package/src/utilities/on.ts +7 -8
- package/src/utilities/query.ts +5 -1
- package/src/wc.scss +7 -0
- package/src/zinc.ts +5 -0
- package/src/components/editor/modules/dialog-module/dialog-module.component.ts +0 -289
- package/src/components/editor/modules/dialog-module/dialog-module.scss +0 -115
- package/src/components/editor/modules/dialog-module/dialog-module.ts +0 -99
- package/src/components/editor/modules/events/zn-show-canned-response-dialog.ts +0 -15
- package/src/components/editor/modules/menu-module/menu-module.component.ts +0 -149
- package/src/components/editor/modules/menu-module/menu-module.scss +0 -17
- package/src/components/editor/modules/menu-module/menu-module.ts +0 -203
|
@@ -194,7 +194,7 @@
|
|
|
194
194
|
"kind": "field",
|
|
195
195
|
"name": "level",
|
|
196
196
|
"type": {
|
|
197
|
-
"text": "'primary' | 'error' | 'info' | 'success' | 'warning' | 'note'"
|
|
197
|
+
"text": "'primary' | 'error' | 'info' | 'success' | 'warning' | 'note' | 'cosmic'"
|
|
198
198
|
},
|
|
199
199
|
"default": "'info'",
|
|
200
200
|
"attribute": "level"
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
{
|
|
249
249
|
"name": "level",
|
|
250
250
|
"type": {
|
|
251
|
-
"text": "'primary' | 'error' | 'info' | 'success' | 'warning' | 'note'"
|
|
251
|
+
"text": "'primary' | 'error' | 'info' | 'success' | 'warning' | 'note' | 'cosmic'"
|
|
252
252
|
},
|
|
253
253
|
"default": "'info'",
|
|
254
254
|
"fieldName": "level"
|
|
@@ -745,6 +745,15 @@
|
|
|
745
745
|
},
|
|
746
746
|
"attribute": "notification"
|
|
747
747
|
},
|
|
748
|
+
{
|
|
749
|
+
"kind": "field",
|
|
750
|
+
"name": "mutedNotifications",
|
|
751
|
+
"type": {
|
|
752
|
+
"text": "boolean"
|
|
753
|
+
},
|
|
754
|
+
"default": "false",
|
|
755
|
+
"attribute": "muted-notifications"
|
|
756
|
+
},
|
|
748
757
|
{
|
|
749
758
|
"kind": "field",
|
|
750
759
|
"name": "verticalAlign",
|
|
@@ -1058,6 +1067,14 @@
|
|
|
1058
1067
|
},
|
|
1059
1068
|
"fieldName": "notification"
|
|
1060
1069
|
},
|
|
1070
|
+
{
|
|
1071
|
+
"name": "muted-notifications",
|
|
1072
|
+
"type": {
|
|
1073
|
+
"text": "boolean"
|
|
1074
|
+
},
|
|
1075
|
+
"default": "false",
|
|
1076
|
+
"fieldName": "mutedNotifications"
|
|
1077
|
+
},
|
|
1061
1078
|
{
|
|
1062
1079
|
"name": "verticalAlign",
|
|
1063
1080
|
"type": {
|
|
@@ -1467,6 +1484,16 @@
|
|
|
1467
1484
|
"default": "'medium'",
|
|
1468
1485
|
"attribute": "size"
|
|
1469
1486
|
},
|
|
1487
|
+
{
|
|
1488
|
+
"kind": "field",
|
|
1489
|
+
"name": "iconSize",
|
|
1490
|
+
"type": {
|
|
1491
|
+
"text": "number"
|
|
1492
|
+
},
|
|
1493
|
+
"default": "24",
|
|
1494
|
+
"attribute": "icon-size",
|
|
1495
|
+
"reflects": true
|
|
1496
|
+
},
|
|
1470
1497
|
{
|
|
1471
1498
|
"kind": "field",
|
|
1472
1499
|
"name": "noGap",
|
|
@@ -1632,6 +1659,14 @@
|
|
|
1632
1659
|
"default": "'medium'",
|
|
1633
1660
|
"fieldName": "size"
|
|
1634
1661
|
},
|
|
1662
|
+
{
|
|
1663
|
+
"name": "icon-size",
|
|
1664
|
+
"type": {
|
|
1665
|
+
"text": "number"
|
|
1666
|
+
},
|
|
1667
|
+
"default": "24",
|
|
1668
|
+
"fieldName": "iconSize"
|
|
1669
|
+
},
|
|
1635
1670
|
{
|
|
1636
1671
|
"name": "no-gap",
|
|
1637
1672
|
"type": {
|
|
@@ -2189,6 +2224,11 @@
|
|
|
2189
2224
|
"description": "Gets the validity state object",
|
|
2190
2225
|
"readonly": true
|
|
2191
2226
|
},
|
|
2227
|
+
{
|
|
2228
|
+
"kind": "field",
|
|
2229
|
+
"name": "isChecked",
|
|
2230
|
+
"readonly": true
|
|
2231
|
+
},
|
|
2192
2232
|
{
|
|
2193
2233
|
"kind": "field",
|
|
2194
2234
|
"name": "validationMessage",
|
|
@@ -3151,6 +3191,25 @@
|
|
|
3151
3191
|
"attribute": "label",
|
|
3152
3192
|
"reflects": true
|
|
3153
3193
|
},
|
|
3194
|
+
{
|
|
3195
|
+
"kind": "field",
|
|
3196
|
+
"name": "showNumber",
|
|
3197
|
+
"type": {
|
|
3198
|
+
"text": "boolean"
|
|
3199
|
+
},
|
|
3200
|
+
"default": "false",
|
|
3201
|
+
"attribute": "show-number",
|
|
3202
|
+
"reflects": true
|
|
3203
|
+
},
|
|
3204
|
+
{
|
|
3205
|
+
"kind": "field",
|
|
3206
|
+
"name": "countElement",
|
|
3207
|
+
"type": {
|
|
3208
|
+
"text": "string"
|
|
3209
|
+
},
|
|
3210
|
+
"default": "'*'",
|
|
3211
|
+
"attribute": "count-element"
|
|
3212
|
+
},
|
|
3154
3213
|
{
|
|
3155
3214
|
"kind": "field",
|
|
3156
3215
|
"name": "expanded",
|
|
@@ -3208,6 +3267,14 @@
|
|
|
3208
3267
|
"attribute": "flush",
|
|
3209
3268
|
"reflects": true
|
|
3210
3269
|
},
|
|
3270
|
+
{
|
|
3271
|
+
"kind": "field",
|
|
3272
|
+
"name": "numberOfItems",
|
|
3273
|
+
"type": {
|
|
3274
|
+
"text": "number"
|
|
3275
|
+
},
|
|
3276
|
+
"default": "0"
|
|
3277
|
+
},
|
|
3211
3278
|
{
|
|
3212
3279
|
"kind": "field",
|
|
3213
3280
|
"name": "_store",
|
|
@@ -3216,9 +3283,29 @@
|
|
|
3216
3283
|
},
|
|
3217
3284
|
"privacy": "protected"
|
|
3218
3285
|
},
|
|
3286
|
+
{
|
|
3287
|
+
"kind": "field",
|
|
3288
|
+
"name": "hasSlotController",
|
|
3289
|
+
"privacy": "private",
|
|
3290
|
+
"readonly": true,
|
|
3291
|
+
"default": "new HasSlotController(this, '[default]', 'header', 'caption', 'label')"
|
|
3292
|
+
},
|
|
3293
|
+
{
|
|
3294
|
+
"kind": "field",
|
|
3295
|
+
"name": "observer",
|
|
3296
|
+
"type": {
|
|
3297
|
+
"text": "MutationObserver"
|
|
3298
|
+
},
|
|
3299
|
+
"privacy": "private"
|
|
3300
|
+
},
|
|
3219
3301
|
{
|
|
3220
3302
|
"kind": "field",
|
|
3221
3303
|
"name": "handleCollapse"
|
|
3304
|
+
},
|
|
3305
|
+
{
|
|
3306
|
+
"kind": "field",
|
|
3307
|
+
"name": "recalculateNumberOfItems",
|
|
3308
|
+
"privacy": "public"
|
|
3222
3309
|
}
|
|
3223
3310
|
],
|
|
3224
3311
|
"attributes": [
|
|
@@ -3246,6 +3333,22 @@
|
|
|
3246
3333
|
"default": "''",
|
|
3247
3334
|
"fieldName": "label"
|
|
3248
3335
|
},
|
|
3336
|
+
{
|
|
3337
|
+
"name": "show-number",
|
|
3338
|
+
"type": {
|
|
3339
|
+
"text": "boolean"
|
|
3340
|
+
},
|
|
3341
|
+
"default": "false",
|
|
3342
|
+
"fieldName": "showNumber"
|
|
3343
|
+
},
|
|
3344
|
+
{
|
|
3345
|
+
"name": "count-element",
|
|
3346
|
+
"type": {
|
|
3347
|
+
"text": "string"
|
|
3348
|
+
},
|
|
3349
|
+
"default": "'*'",
|
|
3350
|
+
"fieldName": "countElement"
|
|
3351
|
+
},
|
|
3249
3352
|
{
|
|
3250
3353
|
"name": "expanded",
|
|
3251
3354
|
"type": {
|
|
@@ -4768,6 +4871,7 @@
|
|
|
4768
4871
|
"type": {
|
|
4769
4872
|
"text": "string"
|
|
4770
4873
|
},
|
|
4874
|
+
"default": "\"asc\"",
|
|
4771
4875
|
"attribute": "sort-direction"
|
|
4772
4876
|
},
|
|
4773
4877
|
{
|
|
@@ -4800,7 +4904,7 @@
|
|
|
4800
4904
|
"kind": "field",
|
|
4801
4905
|
"name": "headers",
|
|
4802
4906
|
"type": {
|
|
4803
|
-
"text": "Record<string,
|
|
4907
|
+
"text": "Record<string, HeaderConfig>"
|
|
4804
4908
|
},
|
|
4805
4909
|
"default": "{}",
|
|
4806
4910
|
"attribute": "headers"
|
|
@@ -4866,6 +4970,23 @@
|
|
|
4866
4970
|
},
|
|
4867
4971
|
"attribute": "caption"
|
|
4868
4972
|
},
|
|
4973
|
+
{
|
|
4974
|
+
"kind": "field",
|
|
4975
|
+
"name": "emptyStateCaption",
|
|
4976
|
+
"type": {
|
|
4977
|
+
"text": "string"
|
|
4978
|
+
},
|
|
4979
|
+
"attribute": "empty-state-caption"
|
|
4980
|
+
},
|
|
4981
|
+
{
|
|
4982
|
+
"kind": "field",
|
|
4983
|
+
"name": "emptyStateIcon",
|
|
4984
|
+
"type": {
|
|
4985
|
+
"text": "string"
|
|
4986
|
+
},
|
|
4987
|
+
"default": "\"data_alert\"",
|
|
4988
|
+
"attribute": "empty-state-icon"
|
|
4989
|
+
},
|
|
4869
4990
|
{
|
|
4870
4991
|
"kind": "field",
|
|
4871
4992
|
"name": "hideCheckboxes",
|
|
@@ -4883,6 +5004,24 @@
|
|
|
4883
5004
|
"default": "[]",
|
|
4884
5005
|
"attribute": "filters"
|
|
4885
5006
|
},
|
|
5007
|
+
{
|
|
5008
|
+
"kind": "field",
|
|
5009
|
+
"name": "method",
|
|
5010
|
+
"type": {
|
|
5011
|
+
"text": "'GET' | 'POST'"
|
|
5012
|
+
},
|
|
5013
|
+
"default": "'POST'",
|
|
5014
|
+
"attribute": "method"
|
|
5015
|
+
},
|
|
5016
|
+
{
|
|
5017
|
+
"kind": "field",
|
|
5018
|
+
"name": "noInitialLoad",
|
|
5019
|
+
"type": {
|
|
5020
|
+
"text": "boolean"
|
|
5021
|
+
},
|
|
5022
|
+
"default": "false",
|
|
5023
|
+
"attribute": "no-initial-load"
|
|
5024
|
+
},
|
|
4886
5025
|
{
|
|
4887
5026
|
"kind": "field",
|
|
4888
5027
|
"name": "_initialLoad",
|
|
@@ -4944,15 +5083,6 @@
|
|
|
4944
5083
|
"privacy": "private",
|
|
4945
5084
|
"default": "[]"
|
|
4946
5085
|
},
|
|
4947
|
-
{
|
|
4948
|
-
"kind": "field",
|
|
4949
|
-
"name": "_filteredRows",
|
|
4950
|
-
"type": {
|
|
4951
|
-
"text": "any[]"
|
|
4952
|
-
},
|
|
4953
|
-
"privacy": "private",
|
|
4954
|
-
"default": "[]"
|
|
4955
|
-
},
|
|
4956
5086
|
{
|
|
4957
5087
|
"kind": "field",
|
|
4958
5088
|
"name": "numberOfRowsSelected",
|
|
@@ -4983,18 +5113,51 @@
|
|
|
4983
5113
|
"kind": "field",
|
|
4984
5114
|
"name": "hasSlotController",
|
|
4985
5115
|
"privacy": "private",
|
|
4986
|
-
"default": "new HasSlotController( this, '[default]', 'search-action', ActionSlots.delete.valueOf(), ActionSlots.modify.valueOf(), ActionSlots.create.valueOf(), ActionSlots.filter.valueOf(), ActionSlots.sort.valueOf() )"
|
|
5116
|
+
"default": "new HasSlotController( this, '[default]', 'search-action', ActionSlots.delete.valueOf(), ActionSlots.modify.valueOf(), ActionSlots.create.valueOf(), ActionSlots.filter.valueOf(), ActionSlots.sort.valueOf(), ActionSlots.inputs.valueOf() )"
|
|
4987
5117
|
},
|
|
4988
5118
|
{
|
|
4989
5119
|
"kind": "field",
|
|
4990
5120
|
"name": "_dataTask",
|
|
4991
5121
|
"privacy": "private",
|
|
4992
|
-
"default": "new Task(this, { task: async ([dataUri], {signal}) => {
|
|
5122
|
+
"default": "new Task(this, { task: async ([dataUri, requestParams], {signal}) => { if (dataUri === undefined || this.noInitialLoad && this._initialLoad) { return {rows: [], page: 1, perPage: this.itemsPerPage, total: 0}; } const requestData: DataRequest = { page: this.page, perPage: this.itemsPerPage, sortColumn: this.sortColumn, sortDirection: this.sortDirection, filter: this.filter, }; // get all inputs that are in the inputs slot and add them to the const inputs = this.hasSlotController.getSlots(ActionSlots.inputs.valueOf()); const params: Record<string, any> = {}; if (inputs) { inputs.forEach((input) => { const allowedInputs = ['zn-input', 'zn-select', 'zn-query-builder', 'zn-multiselect', 'zn-params-select', 'input', 'select', 'textarea']; if (allowedInputs.includes(input.tagName.toLowerCase())) { const value = (input as AllowedInputElement).value as string || input.getAttribute('value'); const name = (input as AllowedInputElement).name || input.getAttribute('name'); if (name) { params[name] = value; } } }); Object.assign(requestData, params); } // Add any extra request params if (requestParams && typeof requestParams === 'object') { Object.assign(requestData, requestParams); } // This is also used for Rubix, so it may not work for your application. const response = await fetch(dataUri, { method: this.method, headers: { 'x-kx-fetch-style': 'zn-data-table', }, signal, credentials: 'same-origin', body: this.method === 'POST' ? JSON.stringify(requestData) : undefined }); if (!response.ok) throw new Error(response.statusText); return response.json(); }, args: () => [this.dataUri, this.requestParams] })"
|
|
5123
|
+
},
|
|
5124
|
+
{
|
|
5125
|
+
"kind": "field",
|
|
5126
|
+
"name": "rowHasActions",
|
|
5127
|
+
"type": {
|
|
5128
|
+
"text": "boolean"
|
|
5129
|
+
},
|
|
5130
|
+
"privacy": "private",
|
|
5131
|
+
"default": "false"
|
|
5132
|
+
},
|
|
5133
|
+
{
|
|
5134
|
+
"kind": "field",
|
|
5135
|
+
"name": "requestParams",
|
|
5136
|
+
"type": {
|
|
5137
|
+
"text": "Record<string, any>"
|
|
5138
|
+
},
|
|
5139
|
+
"default": "{}"
|
|
5140
|
+
},
|
|
5141
|
+
{
|
|
5142
|
+
"kind": "field",
|
|
5143
|
+
"name": "builtinRequestParams",
|
|
5144
|
+
"type": {
|
|
5145
|
+
"text": "Record<string, any>"
|
|
5146
|
+
},
|
|
5147
|
+
"default": "{}"
|
|
5148
|
+
},
|
|
5149
|
+
{
|
|
5150
|
+
"kind": "method",
|
|
5151
|
+
"name": "refresh"
|
|
4993
5152
|
},
|
|
4994
5153
|
{
|
|
4995
5154
|
"kind": "field",
|
|
4996
5155
|
"name": "changeEventListener"
|
|
4997
5156
|
},
|
|
5157
|
+
{
|
|
5158
|
+
"kind": "method",
|
|
5159
|
+
"name": "emptyState"
|
|
5160
|
+
},
|
|
4998
5161
|
{
|
|
4999
5162
|
"kind": "method",
|
|
5000
5163
|
"name": "renderTable",
|
|
@@ -5002,7 +5165,7 @@
|
|
|
5002
5165
|
{
|
|
5003
5166
|
"name": "data",
|
|
5004
5167
|
"type": {
|
|
5005
|
-
"text": "
|
|
5168
|
+
"text": "Response"
|
|
5006
5169
|
}
|
|
5007
5170
|
}
|
|
5008
5171
|
]
|
|
@@ -5079,19 +5242,6 @@
|
|
|
5079
5242
|
}
|
|
5080
5243
|
]
|
|
5081
5244
|
},
|
|
5082
|
-
{
|
|
5083
|
-
"kind": "method",
|
|
5084
|
-
"name": "updateActionKeys",
|
|
5085
|
-
"privacy": "private",
|
|
5086
|
-
"parameters": [
|
|
5087
|
-
{
|
|
5088
|
-
"name": "slotName",
|
|
5089
|
-
"type": {
|
|
5090
|
-
"text": "string"
|
|
5091
|
-
}
|
|
5092
|
-
}
|
|
5093
|
-
]
|
|
5094
|
-
},
|
|
5095
5245
|
{
|
|
5096
5246
|
"kind": "method",
|
|
5097
5247
|
"name": "selectRow",
|
|
@@ -5130,12 +5280,25 @@
|
|
|
5130
5280
|
},
|
|
5131
5281
|
{
|
|
5132
5282
|
"kind": "method",
|
|
5133
|
-
"name": "
|
|
5283
|
+
"name": "renderCell",
|
|
5134
5284
|
"parameters": [
|
|
5135
5285
|
{
|
|
5136
5286
|
"name": "data",
|
|
5137
5287
|
"type": {
|
|
5138
|
-
"text": "
|
|
5288
|
+
"text": "Cell"
|
|
5289
|
+
}
|
|
5290
|
+
}
|
|
5291
|
+
]
|
|
5292
|
+
},
|
|
5293
|
+
{
|
|
5294
|
+
"kind": "method",
|
|
5295
|
+
"name": "updateActionKeys",
|
|
5296
|
+
"privacy": "private",
|
|
5297
|
+
"parameters": [
|
|
5298
|
+
{
|
|
5299
|
+
"name": "slotName",
|
|
5300
|
+
"type": {
|
|
5301
|
+
"text": "string"
|
|
5139
5302
|
}
|
|
5140
5303
|
}
|
|
5141
5304
|
]
|
|
@@ -5159,9 +5322,9 @@
|
|
|
5159
5322
|
"privacy": "private",
|
|
5160
5323
|
"parameters": [
|
|
5161
5324
|
{
|
|
5162
|
-
"name": "
|
|
5325
|
+
"name": "header",
|
|
5163
5326
|
"type": {
|
|
5164
|
-
"text": "
|
|
5327
|
+
"text": "HeaderConfig"
|
|
5165
5328
|
}
|
|
5166
5329
|
}
|
|
5167
5330
|
]
|
|
@@ -5180,20 +5343,7 @@
|
|
|
5180
5343
|
{
|
|
5181
5344
|
"name": "value",
|
|
5182
5345
|
"type": {
|
|
5183
|
-
"text": "
|
|
5184
|
-
}
|
|
5185
|
-
}
|
|
5186
|
-
]
|
|
5187
|
-
},
|
|
5188
|
-
{
|
|
5189
|
-
"kind": "method",
|
|
5190
|
-
"name": "hasHeaderPosition",
|
|
5191
|
-
"privacy": "private",
|
|
5192
|
-
"parameters": [
|
|
5193
|
-
{
|
|
5194
|
-
"name": "header",
|
|
5195
|
-
"type": {
|
|
5196
|
-
"text": "string | HeaderConfig"
|
|
5346
|
+
"text": "Cell"
|
|
5197
5347
|
}
|
|
5198
5348
|
}
|
|
5199
5349
|
]
|
|
@@ -5202,17 +5352,16 @@
|
|
|
5202
5352
|
"kind": "method",
|
|
5203
5353
|
"name": "getRows",
|
|
5204
5354
|
"privacy": "private",
|
|
5355
|
+
"return": {
|
|
5356
|
+
"type": {
|
|
5357
|
+
"text": "Row[]"
|
|
5358
|
+
}
|
|
5359
|
+
},
|
|
5205
5360
|
"parameters": [
|
|
5206
|
-
{
|
|
5207
|
-
"name": "keys",
|
|
5208
|
-
"type": {
|
|
5209
|
-
"text": "string[]"
|
|
5210
|
-
}
|
|
5211
|
-
},
|
|
5212
5361
|
{
|
|
5213
5362
|
"name": "data",
|
|
5214
5363
|
"type": {
|
|
5215
|
-
"text": "
|
|
5364
|
+
"text": "Response"
|
|
5216
5365
|
}
|
|
5217
5366
|
}
|
|
5218
5367
|
]
|
|
@@ -5220,7 +5369,12 @@
|
|
|
5220
5369
|
{
|
|
5221
5370
|
"kind": "method",
|
|
5222
5371
|
"name": "getSelectedKeys",
|
|
5223
|
-
"privacy": "private"
|
|
5372
|
+
"privacy": "private",
|
|
5373
|
+
"return": {
|
|
5374
|
+
"type": {
|
|
5375
|
+
"text": "(string)[]"
|
|
5376
|
+
}
|
|
5377
|
+
}
|
|
5224
5378
|
},
|
|
5225
5379
|
{
|
|
5226
5380
|
"kind": "method",
|
|
@@ -5237,6 +5391,24 @@
|
|
|
5237
5391
|
"name": "updateDeleteKeys",
|
|
5238
5392
|
"privacy": "private"
|
|
5239
5393
|
},
|
|
5394
|
+
{
|
|
5395
|
+
"kind": "method",
|
|
5396
|
+
"name": "extractComparable",
|
|
5397
|
+
"privacy": "private",
|
|
5398
|
+
"return": {
|
|
5399
|
+
"type": {
|
|
5400
|
+
"text": "string"
|
|
5401
|
+
}
|
|
5402
|
+
},
|
|
5403
|
+
"parameters": [
|
|
5404
|
+
{
|
|
5405
|
+
"name": "cell",
|
|
5406
|
+
"type": {
|
|
5407
|
+
"text": "Cell"
|
|
5408
|
+
}
|
|
5409
|
+
}
|
|
5410
|
+
]
|
|
5411
|
+
},
|
|
5240
5412
|
{
|
|
5241
5413
|
"kind": "method",
|
|
5242
5414
|
"name": "sortData",
|
|
@@ -5245,13 +5417,13 @@
|
|
|
5245
5417
|
{
|
|
5246
5418
|
"name": "a",
|
|
5247
5419
|
"type": {
|
|
5248
|
-
"text": "
|
|
5420
|
+
"text": "Cell"
|
|
5249
5421
|
}
|
|
5250
5422
|
},
|
|
5251
5423
|
{
|
|
5252
5424
|
"name": "b",
|
|
5253
5425
|
"type": {
|
|
5254
|
-
"text": "
|
|
5426
|
+
"text": "Cell"
|
|
5255
5427
|
}
|
|
5256
5428
|
}
|
|
5257
5429
|
]
|
|
@@ -5260,6 +5432,19 @@
|
|
|
5260
5432
|
"kind": "method",
|
|
5261
5433
|
"name": "loadingTable",
|
|
5262
5434
|
"privacy": "private"
|
|
5435
|
+
},
|
|
5436
|
+
{
|
|
5437
|
+
"kind": "method",
|
|
5438
|
+
"name": "renderActions",
|
|
5439
|
+
"privacy": "private",
|
|
5440
|
+
"parameters": [
|
|
5441
|
+
{
|
|
5442
|
+
"name": "row",
|
|
5443
|
+
"type": {
|
|
5444
|
+
"text": "Row"
|
|
5445
|
+
}
|
|
5446
|
+
}
|
|
5447
|
+
]
|
|
5263
5448
|
}
|
|
5264
5449
|
],
|
|
5265
5450
|
"events": [
|
|
@@ -5295,6 +5480,7 @@
|
|
|
5295
5480
|
"type": {
|
|
5296
5481
|
"text": "string"
|
|
5297
5482
|
},
|
|
5483
|
+
"default": "\"asc\"",
|
|
5298
5484
|
"fieldName": "sortDirection"
|
|
5299
5485
|
},
|
|
5300
5486
|
{
|
|
@@ -5323,7 +5509,7 @@
|
|
|
5323
5509
|
{
|
|
5324
5510
|
"name": "headers",
|
|
5325
5511
|
"type": {
|
|
5326
|
-
"text": "Record<string,
|
|
5512
|
+
"text": "Record<string, HeaderConfig>"
|
|
5327
5513
|
},
|
|
5328
5514
|
"default": "{}",
|
|
5329
5515
|
"fieldName": "headers"
|
|
@@ -5382,6 +5568,21 @@
|
|
|
5382
5568
|
},
|
|
5383
5569
|
"fieldName": "caption"
|
|
5384
5570
|
},
|
|
5571
|
+
{
|
|
5572
|
+
"name": "empty-state-caption",
|
|
5573
|
+
"type": {
|
|
5574
|
+
"text": "string"
|
|
5575
|
+
},
|
|
5576
|
+
"fieldName": "emptyStateCaption"
|
|
5577
|
+
},
|
|
5578
|
+
{
|
|
5579
|
+
"name": "empty-state-icon",
|
|
5580
|
+
"type": {
|
|
5581
|
+
"text": "string"
|
|
5582
|
+
},
|
|
5583
|
+
"default": "\"data_alert\"",
|
|
5584
|
+
"fieldName": "emptyStateIcon"
|
|
5585
|
+
},
|
|
5385
5586
|
{
|
|
5386
5587
|
"name": "hide-checkboxes",
|
|
5387
5588
|
"type": {
|
|
@@ -5396,6 +5597,22 @@
|
|
|
5396
5597
|
},
|
|
5397
5598
|
"default": "[]",
|
|
5398
5599
|
"fieldName": "filters"
|
|
5600
|
+
},
|
|
5601
|
+
{
|
|
5602
|
+
"name": "method",
|
|
5603
|
+
"type": {
|
|
5604
|
+
"text": "'GET' | 'POST'"
|
|
5605
|
+
},
|
|
5606
|
+
"default": "'POST'",
|
|
5607
|
+
"fieldName": "method"
|
|
5608
|
+
},
|
|
5609
|
+
{
|
|
5610
|
+
"name": "no-initial-load",
|
|
5611
|
+
"type": {
|
|
5612
|
+
"text": "boolean"
|
|
5613
|
+
},
|
|
5614
|
+
"default": "false",
|
|
5615
|
+
"fieldName": "noInitialLoad"
|
|
5399
5616
|
}
|
|
5400
5617
|
],
|
|
5401
5618
|
"superclass": {
|
|
@@ -6697,6 +6914,16 @@
|
|
|
6697
6914
|
"attribute": "label",
|
|
6698
6915
|
"reflects": true
|
|
6699
6916
|
},
|
|
6917
|
+
{
|
|
6918
|
+
"kind": "field",
|
|
6919
|
+
"name": "cosmic",
|
|
6920
|
+
"type": {
|
|
6921
|
+
"text": "boolean"
|
|
6922
|
+
},
|
|
6923
|
+
"default": "false",
|
|
6924
|
+
"attribute": "cosmic",
|
|
6925
|
+
"reflects": true
|
|
6926
|
+
},
|
|
6700
6927
|
{
|
|
6701
6928
|
"kind": "field",
|
|
6702
6929
|
"name": "noHeader",
|
|
@@ -6810,6 +7037,14 @@
|
|
|
6810
7037
|
"description": "The dialog's label as displayed in the header. You should always include a relevant label even when using\n`no-header`, as it is required for proper accessibility. If you need to display HTML, use the `label` slot instead.",
|
|
6811
7038
|
"fieldName": "label"
|
|
6812
7039
|
},
|
|
7040
|
+
{
|
|
7041
|
+
"name": "cosmic",
|
|
7042
|
+
"type": {
|
|
7043
|
+
"text": "boolean"
|
|
7044
|
+
},
|
|
7045
|
+
"default": "false",
|
|
7046
|
+
"fieldName": "cosmic"
|
|
7047
|
+
},
|
|
6813
7048
|
{
|
|
6814
7049
|
"name": "no-header",
|
|
6815
7050
|
"type": {
|
|
@@ -7335,6 +7570,23 @@
|
|
|
7335
7570
|
},
|
|
7336
7571
|
"privacy": "private"
|
|
7337
7572
|
},
|
|
7573
|
+
{
|
|
7574
|
+
"kind": "field",
|
|
7575
|
+
"name": "toolbar",
|
|
7576
|
+
"type": {
|
|
7577
|
+
"text": "ToolbarComponent"
|
|
7578
|
+
},
|
|
7579
|
+
"privacy": "private"
|
|
7580
|
+
},
|
|
7581
|
+
{
|
|
7582
|
+
"kind": "field",
|
|
7583
|
+
"name": "id",
|
|
7584
|
+
"type": {
|
|
7585
|
+
"text": "string"
|
|
7586
|
+
},
|
|
7587
|
+
"attribute": "id",
|
|
7588
|
+
"reflects": true
|
|
7589
|
+
},
|
|
7338
7590
|
{
|
|
7339
7591
|
"kind": "field",
|
|
7340
7592
|
"name": "name",
|
|
@@ -7362,35 +7614,46 @@
|
|
|
7362
7614
|
},
|
|
7363
7615
|
{
|
|
7364
7616
|
"kind": "field",
|
|
7365
|
-
"name": "
|
|
7617
|
+
"name": "uploadAttachmentUrl",
|
|
7366
7618
|
"type": {
|
|
7367
|
-
"text": "
|
|
7619
|
+
"text": "string"
|
|
7368
7620
|
},
|
|
7369
|
-
"attribute": "
|
|
7621
|
+
"attribute": "attachment-url"
|
|
7370
7622
|
},
|
|
7371
7623
|
{
|
|
7372
7624
|
"kind": "field",
|
|
7373
|
-
"name": "
|
|
7625
|
+
"name": "aiPath",
|
|
7374
7626
|
"type": {
|
|
7375
7627
|
"text": "string"
|
|
7376
7628
|
},
|
|
7377
|
-
"
|
|
7629
|
+
"default": "''",
|
|
7630
|
+
"attribute": "ai-path"
|
|
7378
7631
|
},
|
|
7379
7632
|
{
|
|
7380
7633
|
"kind": "field",
|
|
7381
|
-
"name": "
|
|
7634
|
+
"name": "quillElement",
|
|
7635
|
+
"type": {
|
|
7636
|
+
"text": "Quill"
|
|
7637
|
+
},
|
|
7638
|
+
"privacy": "private"
|
|
7639
|
+
},
|
|
7640
|
+
{
|
|
7641
|
+
"kind": "field",
|
|
7642
|
+
"name": "_content",
|
|
7382
7643
|
"type": {
|
|
7383
7644
|
"text": "string"
|
|
7384
7645
|
},
|
|
7385
|
-
"
|
|
7646
|
+
"privacy": "private",
|
|
7647
|
+
"default": "''"
|
|
7386
7648
|
},
|
|
7387
7649
|
{
|
|
7388
7650
|
"kind": "field",
|
|
7389
|
-
"name": "
|
|
7651
|
+
"name": "_selectionRange",
|
|
7390
7652
|
"type": {
|
|
7391
|
-
"text": "
|
|
7653
|
+
"text": "Range"
|
|
7392
7654
|
},
|
|
7393
|
-
"privacy": "private"
|
|
7655
|
+
"privacy": "private",
|
|
7656
|
+
"default": "{index: 0, length: 0}"
|
|
7394
7657
|
},
|
|
7395
7658
|
{
|
|
7396
7659
|
"kind": "field",
|
|
@@ -7457,11 +7720,6 @@
|
|
|
7457
7720
|
"name": "_handleTextChange",
|
|
7458
7721
|
"privacy": "private"
|
|
7459
7722
|
},
|
|
7460
|
-
{
|
|
7461
|
-
"kind": "method",
|
|
7462
|
-
"name": "_updateIcons",
|
|
7463
|
-
"privacy": "private"
|
|
7464
|
-
},
|
|
7465
7723
|
{
|
|
7466
7724
|
"kind": "method",
|
|
7467
7725
|
"name": "_getQuillKeyboardBindings",
|
|
@@ -7469,21 +7727,41 @@
|
|
|
7469
7727
|
},
|
|
7470
7728
|
{
|
|
7471
7729
|
"kind": "method",
|
|
7472
|
-
"name": "
|
|
7473
|
-
"privacy": "private"
|
|
7474
|
-
},
|
|
7475
|
-
{
|
|
7476
|
-
"kind": "method",
|
|
7477
|
-
"name": "_setupTitleAttributes",
|
|
7730
|
+
"name": "_handleEditorChange",
|
|
7478
7731
|
"privacy": "private",
|
|
7479
7732
|
"parameters": [
|
|
7480
7733
|
{
|
|
7481
|
-
"name": "
|
|
7734
|
+
"name": "e",
|
|
7482
7735
|
"type": {
|
|
7483
|
-
"text": "
|
|
7736
|
+
"text": "OnEvent"
|
|
7484
7737
|
}
|
|
7485
7738
|
}
|
|
7486
7739
|
]
|
|
7740
|
+
},
|
|
7741
|
+
{
|
|
7742
|
+
"kind": "method",
|
|
7743
|
+
"name": "_replaceTextAtSelection",
|
|
7744
|
+
"privacy": "private"
|
|
7745
|
+
},
|
|
7746
|
+
{
|
|
7747
|
+
"kind": "method",
|
|
7748
|
+
"name": "_insertTextAtSelection",
|
|
7749
|
+
"privacy": "private"
|
|
7750
|
+
},
|
|
7751
|
+
{
|
|
7752
|
+
"kind": "method",
|
|
7753
|
+
"name": "_closePopups",
|
|
7754
|
+
"privacy": "private"
|
|
7755
|
+
},
|
|
7756
|
+
{
|
|
7757
|
+
"kind": "method",
|
|
7758
|
+
"name": "_closeAiPanel",
|
|
7759
|
+
"privacy": "private"
|
|
7760
|
+
},
|
|
7761
|
+
{
|
|
7762
|
+
"kind": "method",
|
|
7763
|
+
"name": "_closeDialog",
|
|
7764
|
+
"privacy": "private"
|
|
7487
7765
|
}
|
|
7488
7766
|
],
|
|
7489
7767
|
"events": [
|
|
@@ -7493,6 +7771,13 @@
|
|
|
7493
7771
|
}
|
|
7494
7772
|
],
|
|
7495
7773
|
"attributes": [
|
|
7774
|
+
{
|
|
7775
|
+
"name": "id",
|
|
7776
|
+
"type": {
|
|
7777
|
+
"text": "string"
|
|
7778
|
+
},
|
|
7779
|
+
"fieldName": "id"
|
|
7780
|
+
},
|
|
7496
7781
|
{
|
|
7497
7782
|
"name": "name",
|
|
7498
7783
|
"type": {
|
|
@@ -7516,25 +7801,19 @@
|
|
|
7516
7801
|
"fieldName": "interactionType"
|
|
7517
7802
|
},
|
|
7518
7803
|
{
|
|
7519
|
-
"name": "
|
|
7520
|
-
"type": {
|
|
7521
|
-
"text": "any[]"
|
|
7522
|
-
},
|
|
7523
|
-
"fieldName": "cannedResponses"
|
|
7524
|
-
},
|
|
7525
|
-
{
|
|
7526
|
-
"name": "canned-responses-url",
|
|
7804
|
+
"name": "attachment-url",
|
|
7527
7805
|
"type": {
|
|
7528
7806
|
"text": "string"
|
|
7529
7807
|
},
|
|
7530
|
-
"fieldName": "
|
|
7808
|
+
"fieldName": "uploadAttachmentUrl"
|
|
7531
7809
|
},
|
|
7532
7810
|
{
|
|
7533
|
-
"name": "
|
|
7811
|
+
"name": "ai-path",
|
|
7534
7812
|
"type": {
|
|
7535
7813
|
"text": "string"
|
|
7536
7814
|
},
|
|
7537
|
-
"
|
|
7815
|
+
"default": "''",
|
|
7816
|
+
"fieldName": "aiPath"
|
|
7538
7817
|
}
|
|
7539
7818
|
],
|
|
7540
7819
|
"superclass": {
|
|
@@ -8900,6 +9179,109 @@
|
|
|
8900
9179
|
}
|
|
8901
9180
|
]
|
|
8902
9181
|
},
|
|
9182
|
+
{
|
|
9183
|
+
"kind": "javascript-module",
|
|
9184
|
+
"path": "components/filter-wrapper/filter-wrapper.js",
|
|
9185
|
+
"declarations": [
|
|
9186
|
+
{
|
|
9187
|
+
"kind": "class",
|
|
9188
|
+
"description": "",
|
|
9189
|
+
"name": "ZnFilterWrapper",
|
|
9190
|
+
"cssProperties": [
|
|
9191
|
+
{
|
|
9192
|
+
"description": "An example CSS custom property.",
|
|
9193
|
+
"name": "--example"
|
|
9194
|
+
}
|
|
9195
|
+
],
|
|
9196
|
+
"cssParts": [
|
|
9197
|
+
{
|
|
9198
|
+
"description": "The component's base wrapper.",
|
|
9199
|
+
"name": "base"
|
|
9200
|
+
}
|
|
9201
|
+
],
|
|
9202
|
+
"slots": [
|
|
9203
|
+
{
|
|
9204
|
+
"description": "The default slot.",
|
|
9205
|
+
"name": ""
|
|
9206
|
+
},
|
|
9207
|
+
{
|
|
9208
|
+
"description": "An example slot.",
|
|
9209
|
+
"name": "example"
|
|
9210
|
+
}
|
|
9211
|
+
],
|
|
9212
|
+
"members": [
|
|
9213
|
+
{
|
|
9214
|
+
"kind": "field",
|
|
9215
|
+
"name": "button",
|
|
9216
|
+
"type": {
|
|
9217
|
+
"text": "string"
|
|
9218
|
+
},
|
|
9219
|
+
"default": "'Filter'",
|
|
9220
|
+
"attribute": "button"
|
|
9221
|
+
},
|
|
9222
|
+
{
|
|
9223
|
+
"kind": "field",
|
|
9224
|
+
"name": "hasSubmitButton",
|
|
9225
|
+
"type": {
|
|
9226
|
+
"text": "boolean"
|
|
9227
|
+
},
|
|
9228
|
+
"privacy": "private",
|
|
9229
|
+
"default": "false"
|
|
9230
|
+
},
|
|
9231
|
+
{
|
|
9232
|
+
"kind": "field",
|
|
9233
|
+
"name": "handleSubmit"
|
|
9234
|
+
},
|
|
9235
|
+
{
|
|
9236
|
+
"kind": "method",
|
|
9237
|
+
"name": "renderDefaultButton",
|
|
9238
|
+
"privacy": "private"
|
|
9239
|
+
}
|
|
9240
|
+
],
|
|
9241
|
+
"events": [
|
|
9242
|
+
{
|
|
9243
|
+
"description": "Emitted as an example.",
|
|
9244
|
+
"name": "zn-event-name"
|
|
9245
|
+
}
|
|
9246
|
+
],
|
|
9247
|
+
"attributes": [
|
|
9248
|
+
{
|
|
9249
|
+
"name": "button",
|
|
9250
|
+
"type": {
|
|
9251
|
+
"text": "string"
|
|
9252
|
+
},
|
|
9253
|
+
"default": "'Filter'",
|
|
9254
|
+
"fieldName": "button"
|
|
9255
|
+
}
|
|
9256
|
+
],
|
|
9257
|
+
"superclass": {
|
|
9258
|
+
"name": "ZincElement",
|
|
9259
|
+
"module": "/src/internal/zinc-element"
|
|
9260
|
+
},
|
|
9261
|
+
"summary": "Short summary of the component's intended use.",
|
|
9262
|
+
"tagNameWithoutPrefix": "filter-wrapper",
|
|
9263
|
+
"tagName": "zn-filter-wrapper",
|
|
9264
|
+
"customElement": true,
|
|
9265
|
+
"jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/filter-wrapper\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-example\n *\n * @event zn-event-name - Emitted as an example.\n *\n * @slot - The default slot.\n * @slot example - An example slot.\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --example - An example CSS custom property.\n */",
|
|
9266
|
+
"documentation": "https://zinc.style/components/filter-wrapper",
|
|
9267
|
+
"status": "experimental",
|
|
9268
|
+
"since": "1.0",
|
|
9269
|
+
"dependencies": [
|
|
9270
|
+
"zn-example"
|
|
9271
|
+
]
|
|
9272
|
+
}
|
|
9273
|
+
],
|
|
9274
|
+
"exports": [
|
|
9275
|
+
{
|
|
9276
|
+
"kind": "js",
|
|
9277
|
+
"name": "default",
|
|
9278
|
+
"declaration": {
|
|
9279
|
+
"name": "ZnFilterWrapper",
|
|
9280
|
+
"module": "components/filter-wrapper/filter-wrapper.js"
|
|
9281
|
+
}
|
|
9282
|
+
}
|
|
9283
|
+
]
|
|
9284
|
+
},
|
|
8903
9285
|
{
|
|
8904
9286
|
"kind": "javascript-module",
|
|
8905
9287
|
"path": "components/form-group/form-group.js",
|
|
@@ -9646,6 +10028,24 @@
|
|
|
9646
10028
|
"attribute": "color",
|
|
9647
10029
|
"reflects": true
|
|
9648
10030
|
},
|
|
10031
|
+
{
|
|
10032
|
+
"kind": "field",
|
|
10033
|
+
"name": "padded",
|
|
10034
|
+
"type": {
|
|
10035
|
+
"text": "boolean"
|
|
10036
|
+
},
|
|
10037
|
+
"default": "false",
|
|
10038
|
+
"attribute": "padded"
|
|
10039
|
+
},
|
|
10040
|
+
{
|
|
10041
|
+
"kind": "field",
|
|
10042
|
+
"name": "squared",
|
|
10043
|
+
"type": {
|
|
10044
|
+
"text": "boolean"
|
|
10045
|
+
},
|
|
10046
|
+
"default": "false",
|
|
10047
|
+
"attribute": "squared"
|
|
10048
|
+
},
|
|
9649
10049
|
{
|
|
9650
10050
|
"kind": "field",
|
|
9651
10051
|
"name": "gravatarOptions",
|
|
@@ -9760,6 +10160,22 @@
|
|
|
9760
10160
|
"text": "IconColor"
|
|
9761
10161
|
},
|
|
9762
10162
|
"fieldName": "color"
|
|
10163
|
+
},
|
|
10164
|
+
{
|
|
10165
|
+
"name": "padded",
|
|
10166
|
+
"type": {
|
|
10167
|
+
"text": "boolean"
|
|
10168
|
+
},
|
|
10169
|
+
"default": "false",
|
|
10170
|
+
"fieldName": "padded"
|
|
10171
|
+
},
|
|
10172
|
+
{
|
|
10173
|
+
"name": "squared",
|
|
10174
|
+
"type": {
|
|
10175
|
+
"text": "boolean"
|
|
10176
|
+
},
|
|
10177
|
+
"default": "false",
|
|
10178
|
+
"fieldName": "squared"
|
|
9763
10179
|
}
|
|
9764
10180
|
],
|
|
9765
10181
|
"superclass": {
|
|
@@ -10055,10 +10471,18 @@
|
|
|
10055
10471
|
"kind": "method",
|
|
10056
10472
|
"name": "handleIsEditingChange"
|
|
10057
10473
|
},
|
|
10474
|
+
{
|
|
10475
|
+
"kind": "field",
|
|
10476
|
+
"name": "mouseEventHandler"
|
|
10477
|
+
},
|
|
10058
10478
|
{
|
|
10059
10479
|
"kind": "field",
|
|
10060
10480
|
"name": "escKeyHandler"
|
|
10061
10481
|
},
|
|
10482
|
+
{
|
|
10483
|
+
"kind": "field",
|
|
10484
|
+
"name": "submitKeyHandler"
|
|
10485
|
+
},
|
|
10062
10486
|
{
|
|
10063
10487
|
"kind": "field",
|
|
10064
10488
|
"name": "handleEditClick"
|
|
@@ -11414,6 +11838,14 @@
|
|
|
11414
11838
|
},
|
|
11415
11839
|
"attribute": "caption"
|
|
11416
11840
|
},
|
|
11841
|
+
{
|
|
11842
|
+
"kind": "field",
|
|
11843
|
+
"name": "description",
|
|
11844
|
+
"type": {
|
|
11845
|
+
"text": "string"
|
|
11846
|
+
},
|
|
11847
|
+
"attribute": "description"
|
|
11848
|
+
},
|
|
11417
11849
|
{
|
|
11418
11850
|
"kind": "field",
|
|
11419
11851
|
"name": "stacked",
|
|
@@ -11479,6 +11911,14 @@
|
|
|
11479
11911
|
"text": "boolean"
|
|
11480
11912
|
},
|
|
11481
11913
|
"attribute": "no-padding"
|
|
11914
|
+
},
|
|
11915
|
+
{
|
|
11916
|
+
"kind": "field",
|
|
11917
|
+
"name": "alignEnd",
|
|
11918
|
+
"type": {
|
|
11919
|
+
"text": "boolean"
|
|
11920
|
+
},
|
|
11921
|
+
"attribute": "align-end"
|
|
11482
11922
|
}
|
|
11483
11923
|
],
|
|
11484
11924
|
"attributes": [
|
|
@@ -11489,6 +11929,13 @@
|
|
|
11489
11929
|
},
|
|
11490
11930
|
"fieldName": "caption"
|
|
11491
11931
|
},
|
|
11932
|
+
{
|
|
11933
|
+
"name": "description",
|
|
11934
|
+
"type": {
|
|
11935
|
+
"text": "string"
|
|
11936
|
+
},
|
|
11937
|
+
"fieldName": "description"
|
|
11938
|
+
},
|
|
11492
11939
|
{
|
|
11493
11940
|
"name": "stacked",
|
|
11494
11941
|
"type": {
|
|
@@ -11545,6 +11992,13 @@
|
|
|
11545
11992
|
"text": "boolean"
|
|
11546
11993
|
},
|
|
11547
11994
|
"fieldName": "noPadding"
|
|
11995
|
+
},
|
|
11996
|
+
{
|
|
11997
|
+
"name": "align-end",
|
|
11998
|
+
"type": {
|
|
11999
|
+
"text": "boolean"
|
|
12000
|
+
},
|
|
12001
|
+
"fieldName": "alignEnd"
|
|
11548
12002
|
}
|
|
11549
12003
|
],
|
|
11550
12004
|
"superclass": {
|
|
@@ -11672,7 +12126,7 @@
|
|
|
11672
12126
|
"kind": "field",
|
|
11673
12127
|
"name": "input",
|
|
11674
12128
|
"type": {
|
|
11675
|
-
"text": "
|
|
12129
|
+
"text": "ZnSelect"
|
|
11676
12130
|
}
|
|
11677
12131
|
},
|
|
11678
12132
|
{
|
|
@@ -11690,6 +12144,11 @@
|
|
|
11690
12144
|
"readonly": true,
|
|
11691
12145
|
"default": "new FormControlController(this, { value: (input) => { const selectElement = this.input; if (selectElement) { return selectElement.value; } return input.value; } })"
|
|
11692
12146
|
},
|
|
12147
|
+
{
|
|
12148
|
+
"kind": "field",
|
|
12149
|
+
"name": "displayLabel",
|
|
12150
|
+
"readonly": true
|
|
12151
|
+
},
|
|
11693
12152
|
{
|
|
11694
12153
|
"kind": "field",
|
|
11695
12154
|
"name": "validity",
|
|
@@ -12098,6 +12557,16 @@
|
|
|
12098
12557
|
"attribute": "checked",
|
|
12099
12558
|
"reflects": true
|
|
12100
12559
|
},
|
|
12560
|
+
{
|
|
12561
|
+
"kind": "field",
|
|
12562
|
+
"name": "checkedPosition",
|
|
12563
|
+
"type": {
|
|
12564
|
+
"text": "'left' | 'right'"
|
|
12565
|
+
},
|
|
12566
|
+
"default": "'left'",
|
|
12567
|
+
"attribute": "checked-position",
|
|
12568
|
+
"reflects": true
|
|
12569
|
+
},
|
|
12101
12570
|
{
|
|
12102
12571
|
"kind": "field",
|
|
12103
12572
|
"name": "value",
|
|
@@ -12130,6 +12599,14 @@
|
|
|
12130
12599
|
"attribute": "disabled",
|
|
12131
12600
|
"reflects": true
|
|
12132
12601
|
},
|
|
12602
|
+
{
|
|
12603
|
+
"kind": "field",
|
|
12604
|
+
"name": "color",
|
|
12605
|
+
"type": {
|
|
12606
|
+
"text": "string"
|
|
12607
|
+
},
|
|
12608
|
+
"attribute": "color"
|
|
12609
|
+
},
|
|
12133
12610
|
{
|
|
12134
12611
|
"kind": "field",
|
|
12135
12612
|
"name": "href",
|
|
@@ -12270,12 +12747,20 @@
|
|
|
12270
12747
|
"fieldName": "checked"
|
|
12271
12748
|
},
|
|
12272
12749
|
{
|
|
12273
|
-
"name": "
|
|
12750
|
+
"name": "checked-position",
|
|
12274
12751
|
"type": {
|
|
12275
|
-
"text": "
|
|
12752
|
+
"text": "'left' | 'right'"
|
|
12276
12753
|
},
|
|
12277
|
-
"default": "''",
|
|
12278
|
-
"
|
|
12754
|
+
"default": "'left'",
|
|
12755
|
+
"fieldName": "checkedPosition"
|
|
12756
|
+
},
|
|
12757
|
+
{
|
|
12758
|
+
"name": "value",
|
|
12759
|
+
"type": {
|
|
12760
|
+
"text": "string"
|
|
12761
|
+
},
|
|
12762
|
+
"default": "''",
|
|
12763
|
+
"description": "A unique value to store in the menu item. This can be used as a way to identify menu items when selected.",
|
|
12279
12764
|
"fieldName": "value"
|
|
12280
12765
|
},
|
|
12281
12766
|
{
|
|
@@ -12296,6 +12781,13 @@
|
|
|
12296
12781
|
"description": "Draws the menu item in a disabled state, preventing selection.",
|
|
12297
12782
|
"fieldName": "disabled"
|
|
12298
12783
|
},
|
|
12784
|
+
{
|
|
12785
|
+
"name": "color",
|
|
12786
|
+
"type": {
|
|
12787
|
+
"text": "string"
|
|
12788
|
+
},
|
|
12789
|
+
"fieldName": "color"
|
|
12790
|
+
},
|
|
12299
12791
|
{
|
|
12300
12792
|
"name": "href",
|
|
12301
12793
|
"type": {
|
|
@@ -12435,6 +12927,24 @@
|
|
|
12435
12927
|
"attribute": "icon-bar",
|
|
12436
12928
|
"reflects": true
|
|
12437
12929
|
},
|
|
12930
|
+
{
|
|
12931
|
+
"kind": "field",
|
|
12932
|
+
"name": "slim",
|
|
12933
|
+
"type": {
|
|
12934
|
+
"text": "boolean"
|
|
12935
|
+
},
|
|
12936
|
+
"attribute": "slim",
|
|
12937
|
+
"reflects": true
|
|
12938
|
+
},
|
|
12939
|
+
{
|
|
12940
|
+
"kind": "field",
|
|
12941
|
+
"name": "border",
|
|
12942
|
+
"type": {
|
|
12943
|
+
"text": "boolean"
|
|
12944
|
+
},
|
|
12945
|
+
"attribute": "border",
|
|
12946
|
+
"reflects": true
|
|
12947
|
+
},
|
|
12438
12948
|
{
|
|
12439
12949
|
"kind": "field",
|
|
12440
12950
|
"name": "hideOne",
|
|
@@ -12471,6 +12981,14 @@
|
|
|
12471
12981
|
"default": "[]",
|
|
12472
12982
|
"attribute": "dropdown"
|
|
12473
12983
|
},
|
|
12984
|
+
{
|
|
12985
|
+
"kind": "field",
|
|
12986
|
+
"name": "noPad",
|
|
12987
|
+
"type": {
|
|
12988
|
+
"text": "false"
|
|
12989
|
+
},
|
|
12990
|
+
"attribute": "no-pad"
|
|
12991
|
+
},
|
|
12474
12992
|
{
|
|
12475
12993
|
"kind": "field",
|
|
12476
12994
|
"name": "_preItems",
|
|
@@ -12639,6 +13157,20 @@
|
|
|
12639
13157
|
},
|
|
12640
13158
|
"fieldName": "iconBar"
|
|
12641
13159
|
},
|
|
13160
|
+
{
|
|
13161
|
+
"name": "slim",
|
|
13162
|
+
"type": {
|
|
13163
|
+
"text": "boolean"
|
|
13164
|
+
},
|
|
13165
|
+
"fieldName": "slim"
|
|
13166
|
+
},
|
|
13167
|
+
{
|
|
13168
|
+
"name": "border",
|
|
13169
|
+
"type": {
|
|
13170
|
+
"text": "boolean"
|
|
13171
|
+
},
|
|
13172
|
+
"fieldName": "border"
|
|
13173
|
+
},
|
|
12642
13174
|
{
|
|
12643
13175
|
"name": "hide-one",
|
|
12644
13176
|
"type": {
|
|
@@ -12669,6 +13201,13 @@
|
|
|
12669
13201
|
"default": "[]",
|
|
12670
13202
|
"fieldName": "dropdown"
|
|
12671
13203
|
},
|
|
13204
|
+
{
|
|
13205
|
+
"name": "no-pad",
|
|
13206
|
+
"type": {
|
|
13207
|
+
"text": "false"
|
|
13208
|
+
},
|
|
13209
|
+
"fieldName": "noPad"
|
|
13210
|
+
},
|
|
12672
13211
|
{
|
|
12673
13212
|
"name": "_appended",
|
|
12674
13213
|
"type": {
|
|
@@ -12916,6 +13455,15 @@
|
|
|
12916
13455
|
"readonly": true,
|
|
12917
13456
|
"default": "new LocalizeController(this)"
|
|
12918
13457
|
},
|
|
13458
|
+
{
|
|
13459
|
+
"kind": "field",
|
|
13460
|
+
"name": "multiple",
|
|
13461
|
+
"type": {
|
|
13462
|
+
"text": "boolean"
|
|
13463
|
+
},
|
|
13464
|
+
"privacy": "public",
|
|
13465
|
+
"default": "false"
|
|
13466
|
+
},
|
|
12919
13467
|
{
|
|
12920
13468
|
"kind": "field",
|
|
12921
13469
|
"name": "defaultSlot",
|
|
@@ -13667,6 +14215,19 @@
|
|
|
13667
14215
|
"module": "components/tabs/tabs.js"
|
|
13668
14216
|
}
|
|
13669
14217
|
},
|
|
14218
|
+
{
|
|
14219
|
+
"kind": "field",
|
|
14220
|
+
"name": "_activeTab",
|
|
14221
|
+
"type": {
|
|
14222
|
+
"text": "Element | null"
|
|
14223
|
+
},
|
|
14224
|
+
"privacy": "private",
|
|
14225
|
+
"default": "null",
|
|
14226
|
+
"inheritedFrom": {
|
|
14227
|
+
"name": "ZnTabs",
|
|
14228
|
+
"module": "components/tabs/tabs.js"
|
|
14229
|
+
}
|
|
14230
|
+
},
|
|
13670
14231
|
{
|
|
13671
14232
|
"kind": "field",
|
|
13672
14233
|
"name": "_tabs",
|
|
@@ -14574,6 +15135,14 @@
|
|
|
14574
15135
|
},
|
|
14575
15136
|
"attribute": "tabbed"
|
|
14576
15137
|
},
|
|
15138
|
+
{
|
|
15139
|
+
"kind": "field",
|
|
15140
|
+
"name": "cosmic",
|
|
15141
|
+
"type": {
|
|
15142
|
+
"text": "boolean"
|
|
15143
|
+
},
|
|
15144
|
+
"attribute": "cosmic"
|
|
15145
|
+
},
|
|
14577
15146
|
{
|
|
14578
15147
|
"kind": "field",
|
|
14579
15148
|
"name": "flush",
|
|
@@ -14636,6 +15205,13 @@
|
|
|
14636
15205
|
},
|
|
14637
15206
|
"fieldName": "tabbed"
|
|
14638
15207
|
},
|
|
15208
|
+
{
|
|
15209
|
+
"name": "cosmic",
|
|
15210
|
+
"type": {
|
|
15211
|
+
"text": "boolean"
|
|
15212
|
+
},
|
|
15213
|
+
"fieldName": "cosmic"
|
|
15214
|
+
},
|
|
14639
15215
|
{
|
|
14640
15216
|
"name": "flush",
|
|
14641
15217
|
"type": {
|
|
@@ -15469,7 +16045,7 @@
|
|
|
15469
16045
|
"kind": "field",
|
|
15470
16046
|
"name": "_timerInterval",
|
|
15471
16047
|
"type": {
|
|
15472
|
-
"text": "
|
|
16048
|
+
"text": "number"
|
|
15473
16049
|
},
|
|
15474
16050
|
"privacy": "private"
|
|
15475
16051
|
},
|
|
@@ -17630,13 +18206,62 @@
|
|
|
17630
18206
|
"name": "example"
|
|
17631
18207
|
}
|
|
17632
18208
|
],
|
|
17633
|
-
"members": [
|
|
18209
|
+
"members": [
|
|
18210
|
+
{
|
|
18211
|
+
"kind": "field",
|
|
18212
|
+
"name": "startScrolled",
|
|
18213
|
+
"type": {
|
|
18214
|
+
"text": "boolean"
|
|
18215
|
+
},
|
|
18216
|
+
"default": "false",
|
|
18217
|
+
"attribute": "start-scrolled",
|
|
18218
|
+
"reflects": true
|
|
18219
|
+
},
|
|
18220
|
+
{
|
|
18221
|
+
"kind": "field",
|
|
18222
|
+
"name": "container",
|
|
18223
|
+
"type": {
|
|
18224
|
+
"text": "HTMLElement"
|
|
18225
|
+
},
|
|
18226
|
+
"privacy": "private"
|
|
18227
|
+
},
|
|
18228
|
+
{
|
|
18229
|
+
"kind": "field",
|
|
18230
|
+
"name": "footer",
|
|
18231
|
+
"type": {
|
|
18232
|
+
"text": "HTMLElement"
|
|
18233
|
+
},
|
|
18234
|
+
"privacy": "private"
|
|
18235
|
+
},
|
|
18236
|
+
{
|
|
18237
|
+
"kind": "method",
|
|
18238
|
+
"name": "scrollEnd"
|
|
18239
|
+
},
|
|
18240
|
+
{
|
|
18241
|
+
"kind": "field",
|
|
18242
|
+
"name": "_footerResizeObserver",
|
|
18243
|
+
"type": {
|
|
18244
|
+
"text": "ResizeObserver | undefined"
|
|
18245
|
+
},
|
|
18246
|
+
"privacy": "private"
|
|
18247
|
+
}
|
|
18248
|
+
],
|
|
17634
18249
|
"events": [
|
|
17635
18250
|
{
|
|
17636
18251
|
"description": "Emitted as an example.",
|
|
17637
18252
|
"name": "zn-event-name"
|
|
17638
18253
|
}
|
|
17639
18254
|
],
|
|
18255
|
+
"attributes": [
|
|
18256
|
+
{
|
|
18257
|
+
"name": "start-scrolled",
|
|
18258
|
+
"type": {
|
|
18259
|
+
"text": "boolean"
|
|
18260
|
+
},
|
|
18261
|
+
"default": "false",
|
|
18262
|
+
"fieldName": "startScrolled"
|
|
18263
|
+
}
|
|
18264
|
+
],
|
|
17640
18265
|
"superclass": {
|
|
17641
18266
|
"name": "ZincElement",
|
|
17642
18267
|
"module": "/src/internal/zinc-element"
|
|
@@ -18690,6 +19315,200 @@
|
|
|
18690
19315
|
}
|
|
18691
19316
|
]
|
|
18692
19317
|
},
|
|
19318
|
+
{
|
|
19319
|
+
"kind": "javascript-module",
|
|
19320
|
+
"path": "components/settings-container/settings-container.js",
|
|
19321
|
+
"declarations": [
|
|
19322
|
+
{
|
|
19323
|
+
"kind": "class",
|
|
19324
|
+
"description": "",
|
|
19325
|
+
"name": "ZnSettingsContainer",
|
|
19326
|
+
"cssProperties": [
|
|
19327
|
+
{
|
|
19328
|
+
"description": "An example CSS custom property.",
|
|
19329
|
+
"name": "--example"
|
|
19330
|
+
}
|
|
19331
|
+
],
|
|
19332
|
+
"cssParts": [
|
|
19333
|
+
{
|
|
19334
|
+
"description": "The component's base wrapper.",
|
|
19335
|
+
"name": "base"
|
|
19336
|
+
}
|
|
19337
|
+
],
|
|
19338
|
+
"slots": [
|
|
19339
|
+
{
|
|
19340
|
+
"description": "The default slot.",
|
|
19341
|
+
"name": ""
|
|
19342
|
+
},
|
|
19343
|
+
{
|
|
19344
|
+
"description": "An example slot.",
|
|
19345
|
+
"name": "example"
|
|
19346
|
+
}
|
|
19347
|
+
],
|
|
19348
|
+
"members": [
|
|
19349
|
+
{
|
|
19350
|
+
"kind": "field",
|
|
19351
|
+
"name": "filters",
|
|
19352
|
+
"type": {
|
|
19353
|
+
"text": "SettingsContainerFilter[]"
|
|
19354
|
+
},
|
|
19355
|
+
"default": "[]"
|
|
19356
|
+
},
|
|
19357
|
+
{
|
|
19358
|
+
"kind": "field",
|
|
19359
|
+
"name": "position",
|
|
19360
|
+
"type": {
|
|
19361
|
+
"text": "'top-end' | 'top-start' | 'bottom-end' | 'bottom-start'"
|
|
19362
|
+
},
|
|
19363
|
+
"default": "'bottom-start'",
|
|
19364
|
+
"attribute": "position"
|
|
19365
|
+
},
|
|
19366
|
+
{
|
|
19367
|
+
"kind": "field",
|
|
19368
|
+
"name": "storeKey",
|
|
19369
|
+
"type": {
|
|
19370
|
+
"text": "string"
|
|
19371
|
+
},
|
|
19372
|
+
"attribute": "store-key"
|
|
19373
|
+
},
|
|
19374
|
+
{
|
|
19375
|
+
"kind": "field",
|
|
19376
|
+
"name": "noScroll",
|
|
19377
|
+
"type": {
|
|
19378
|
+
"text": "boolean"
|
|
19379
|
+
},
|
|
19380
|
+
"attribute": "no-scroll"
|
|
19381
|
+
},
|
|
19382
|
+
{
|
|
19383
|
+
"kind": "field",
|
|
19384
|
+
"name": "_mutationObserver",
|
|
19385
|
+
"type": {
|
|
19386
|
+
"text": "MutationObserver | null"
|
|
19387
|
+
},
|
|
19388
|
+
"privacy": "private",
|
|
19389
|
+
"default": "null"
|
|
19390
|
+
},
|
|
19391
|
+
{
|
|
19392
|
+
"kind": "field",
|
|
19393
|
+
"name": "_updateFiltersScheduled",
|
|
19394
|
+
"type": {
|
|
19395
|
+
"text": "boolean"
|
|
19396
|
+
},
|
|
19397
|
+
"privacy": "private",
|
|
19398
|
+
"default": "false"
|
|
19399
|
+
},
|
|
19400
|
+
{
|
|
19401
|
+
"kind": "field",
|
|
19402
|
+
"name": "_store",
|
|
19403
|
+
"type": {
|
|
19404
|
+
"text": "Store"
|
|
19405
|
+
},
|
|
19406
|
+
"privacy": "private"
|
|
19407
|
+
},
|
|
19408
|
+
{
|
|
19409
|
+
"kind": "field",
|
|
19410
|
+
"name": "_hiddenElements",
|
|
19411
|
+
"type": {
|
|
19412
|
+
"text": "Set<Element>"
|
|
19413
|
+
},
|
|
19414
|
+
"privacy": "private",
|
|
19415
|
+
"default": "new Set()"
|
|
19416
|
+
},
|
|
19417
|
+
{
|
|
19418
|
+
"kind": "method",
|
|
19419
|
+
"name": "scheduleUpdateFilters",
|
|
19420
|
+
"privacy": "private"
|
|
19421
|
+
},
|
|
19422
|
+
{
|
|
19423
|
+
"kind": "field",
|
|
19424
|
+
"name": "handleContentSlotChange",
|
|
19425
|
+
"privacy": "private"
|
|
19426
|
+
},
|
|
19427
|
+
{
|
|
19428
|
+
"kind": "field",
|
|
19429
|
+
"name": "handleFiltersSlotChange",
|
|
19430
|
+
"privacy": "private"
|
|
19431
|
+
},
|
|
19432
|
+
{
|
|
19433
|
+
"kind": "method",
|
|
19434
|
+
"name": "recomputeFiltersFromSlot",
|
|
19435
|
+
"privacy": "private"
|
|
19436
|
+
},
|
|
19437
|
+
{
|
|
19438
|
+
"kind": "method",
|
|
19439
|
+
"name": "updateFilters"
|
|
19440
|
+
},
|
|
19441
|
+
{
|
|
19442
|
+
"kind": "method",
|
|
19443
|
+
"name": "updateFilter",
|
|
19444
|
+
"parameters": [
|
|
19445
|
+
{
|
|
19446
|
+
"name": "e",
|
|
19447
|
+
"type": {
|
|
19448
|
+
"text": "ZnChangeEvent"
|
|
19449
|
+
}
|
|
19450
|
+
}
|
|
19451
|
+
]
|
|
19452
|
+
}
|
|
19453
|
+
],
|
|
19454
|
+
"events": [
|
|
19455
|
+
{
|
|
19456
|
+
"description": "Emitted as an example.",
|
|
19457
|
+
"name": "zn-event-name"
|
|
19458
|
+
}
|
|
19459
|
+
],
|
|
19460
|
+
"attributes": [
|
|
19461
|
+
{
|
|
19462
|
+
"name": "position",
|
|
19463
|
+
"type": {
|
|
19464
|
+
"text": "'top-end' | 'top-start' | 'bottom-end' | 'bottom-start'"
|
|
19465
|
+
},
|
|
19466
|
+
"default": "'bottom-start'",
|
|
19467
|
+
"fieldName": "position"
|
|
19468
|
+
},
|
|
19469
|
+
{
|
|
19470
|
+
"name": "store-key",
|
|
19471
|
+
"type": {
|
|
19472
|
+
"text": "string"
|
|
19473
|
+
},
|
|
19474
|
+
"fieldName": "storeKey"
|
|
19475
|
+
},
|
|
19476
|
+
{
|
|
19477
|
+
"name": "no-scroll",
|
|
19478
|
+
"type": {
|
|
19479
|
+
"text": "boolean"
|
|
19480
|
+
},
|
|
19481
|
+
"fieldName": "noScroll"
|
|
19482
|
+
}
|
|
19483
|
+
],
|
|
19484
|
+
"superclass": {
|
|
19485
|
+
"name": "ZincElement",
|
|
19486
|
+
"module": "/src/internal/zinc-element"
|
|
19487
|
+
},
|
|
19488
|
+
"summary": "Short summary of the component's intended use.",
|
|
19489
|
+
"tagNameWithoutPrefix": "settings-container",
|
|
19490
|
+
"tagName": "zn-settings-container",
|
|
19491
|
+
"customElement": true,
|
|
19492
|
+
"jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/settings-container\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-example\n *\n * @event zn-event-name - Emitted as an example.\n *\n * @slot - The default slot.\n * @slot example - An example slot.\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --example - An example CSS custom property.\n */",
|
|
19493
|
+
"documentation": "https://zinc.style/components/settings-container",
|
|
19494
|
+
"status": "experimental",
|
|
19495
|
+
"since": "1.0",
|
|
19496
|
+
"dependencies": [
|
|
19497
|
+
"zn-example"
|
|
19498
|
+
]
|
|
19499
|
+
}
|
|
19500
|
+
],
|
|
19501
|
+
"exports": [
|
|
19502
|
+
{
|
|
19503
|
+
"kind": "js",
|
|
19504
|
+
"name": "default",
|
|
19505
|
+
"declaration": {
|
|
19506
|
+
"name": "ZnSettingsContainer",
|
|
19507
|
+
"module": "components/settings-container/settings-container.js"
|
|
19508
|
+
}
|
|
19509
|
+
}
|
|
19510
|
+
]
|
|
19511
|
+
},
|
|
18693
19512
|
{
|
|
18694
19513
|
"kind": "javascript-module",
|
|
18695
19514
|
"path": "components/sidebar/sidebar.js",
|
|
@@ -19490,6 +20309,16 @@
|
|
|
19490
20309
|
"default": "false",
|
|
19491
20310
|
"attribute": "width-container",
|
|
19492
20311
|
"reflects": true
|
|
20312
|
+
},
|
|
20313
|
+
{
|
|
20314
|
+
"kind": "field",
|
|
20315
|
+
"name": "formContainer",
|
|
20316
|
+
"type": {
|
|
20317
|
+
"text": "boolean"
|
|
20318
|
+
},
|
|
20319
|
+
"default": "false",
|
|
20320
|
+
"attribute": "form-container",
|
|
20321
|
+
"reflects": true
|
|
19493
20322
|
}
|
|
19494
20323
|
],
|
|
19495
20324
|
"events": [
|
|
@@ -19617,6 +20446,14 @@
|
|
|
19617
20446
|
},
|
|
19618
20447
|
"default": "false",
|
|
19619
20448
|
"fieldName": "widthContainer"
|
|
20449
|
+
},
|
|
20450
|
+
{
|
|
20451
|
+
"name": "form-container",
|
|
20452
|
+
"type": {
|
|
20453
|
+
"text": "boolean"
|
|
20454
|
+
},
|
|
20455
|
+
"default": "false",
|
|
20456
|
+
"fieldName": "formContainer"
|
|
19620
20457
|
}
|
|
19621
20458
|
],
|
|
19622
20459
|
"superclass": {
|
|
@@ -19769,21 +20606,13 @@
|
|
|
19769
20606
|
},
|
|
19770
20607
|
{
|
|
19771
20608
|
"kind": "method",
|
|
19772
|
-
"name": "
|
|
19773
|
-
"privacy": "public"
|
|
19774
|
-
"parameters": [
|
|
19775
|
-
{
|
|
19776
|
-
"name": "e",
|
|
19777
|
-
"type": {
|
|
19778
|
-
"text": "MouseEvent"
|
|
19779
|
-
}
|
|
19780
|
-
}
|
|
19781
|
-
]
|
|
20609
|
+
"name": "handleTriggerClick",
|
|
20610
|
+
"privacy": "public"
|
|
19782
20611
|
},
|
|
19783
20612
|
{
|
|
19784
20613
|
"kind": "method",
|
|
19785
|
-
"name": "
|
|
19786
|
-
"privacy": "
|
|
20614
|
+
"name": "renderTriggerSlot",
|
|
20615
|
+
"privacy": "private"
|
|
19787
20616
|
},
|
|
19788
20617
|
{
|
|
19789
20618
|
"kind": "method",
|
|
@@ -20452,6 +21281,15 @@
|
|
|
20452
21281
|
"default": "false",
|
|
20453
21282
|
"attribute": "show-delta"
|
|
20454
21283
|
},
|
|
21284
|
+
{
|
|
21285
|
+
"kind": "field",
|
|
21286
|
+
"name": "color",
|
|
21287
|
+
"type": {
|
|
21288
|
+
"text": "'primary' | 'error' | 'info' | 'warning' | 'success' | 'neutral'"
|
|
21289
|
+
},
|
|
21290
|
+
"default": "'primary'",
|
|
21291
|
+
"attribute": "color"
|
|
21292
|
+
},
|
|
20455
21293
|
{
|
|
20456
21294
|
"kind": "method",
|
|
20457
21295
|
"name": "calcPercentageDifference"
|
|
@@ -20532,6 +21370,14 @@
|
|
|
20532
21370
|
},
|
|
20533
21371
|
"default": "false",
|
|
20534
21372
|
"fieldName": "showDelta"
|
|
21373
|
+
},
|
|
21374
|
+
{
|
|
21375
|
+
"name": "color",
|
|
21376
|
+
"type": {
|
|
21377
|
+
"text": "'primary' | 'error' | 'info' | 'warning' | 'success' | 'neutral'"
|
|
21378
|
+
},
|
|
21379
|
+
"default": "'primary'",
|
|
21380
|
+
"fieldName": "color"
|
|
20535
21381
|
}
|
|
20536
21382
|
],
|
|
20537
21383
|
"superclass": {
|
|
@@ -20852,6 +21698,33 @@
|
|
|
20852
21698
|
"default": "false",
|
|
20853
21699
|
"attribute": "accent"
|
|
20854
21700
|
},
|
|
21701
|
+
{
|
|
21702
|
+
"kind": "field",
|
|
21703
|
+
"name": "center",
|
|
21704
|
+
"type": {
|
|
21705
|
+
"text": "boolean"
|
|
21706
|
+
},
|
|
21707
|
+
"default": "false",
|
|
21708
|
+
"attribute": "center"
|
|
21709
|
+
},
|
|
21710
|
+
{
|
|
21711
|
+
"kind": "field",
|
|
21712
|
+
"name": "width",
|
|
21713
|
+
"type": {
|
|
21714
|
+
"text": "string"
|
|
21715
|
+
},
|
|
21716
|
+
"default": "''",
|
|
21717
|
+
"attribute": "width"
|
|
21718
|
+
},
|
|
21719
|
+
{
|
|
21720
|
+
"kind": "field",
|
|
21721
|
+
"name": "height",
|
|
21722
|
+
"type": {
|
|
21723
|
+
"text": "string"
|
|
21724
|
+
},
|
|
21725
|
+
"default": "''",
|
|
21726
|
+
"attribute": "height"
|
|
21727
|
+
},
|
|
20855
21728
|
{
|
|
20856
21729
|
"kind": "field",
|
|
20857
21730
|
"name": "pad",
|
|
@@ -20945,6 +21818,30 @@
|
|
|
20945
21818
|
"default": "false",
|
|
20946
21819
|
"fieldName": "accent"
|
|
20947
21820
|
},
|
|
21821
|
+
{
|
|
21822
|
+
"name": "center",
|
|
21823
|
+
"type": {
|
|
21824
|
+
"text": "boolean"
|
|
21825
|
+
},
|
|
21826
|
+
"default": "false",
|
|
21827
|
+
"fieldName": "center"
|
|
21828
|
+
},
|
|
21829
|
+
{
|
|
21830
|
+
"name": "width",
|
|
21831
|
+
"type": {
|
|
21832
|
+
"text": "string"
|
|
21833
|
+
},
|
|
21834
|
+
"default": "''",
|
|
21835
|
+
"fieldName": "width"
|
|
21836
|
+
},
|
|
21837
|
+
{
|
|
21838
|
+
"name": "height",
|
|
21839
|
+
"type": {
|
|
21840
|
+
"text": "string"
|
|
21841
|
+
},
|
|
21842
|
+
"default": "''",
|
|
21843
|
+
"fieldName": "height"
|
|
21844
|
+
},
|
|
20948
21845
|
{
|
|
20949
21846
|
"name": "pad",
|
|
20950
21847
|
"type": {
|
|
@@ -21499,6 +22396,15 @@
|
|
|
21499
22396
|
"privacy": "private",
|
|
21500
22397
|
"default": "new Map<string, Element[]>()"
|
|
21501
22398
|
},
|
|
22399
|
+
{
|
|
22400
|
+
"kind": "field",
|
|
22401
|
+
"name": "_activeTab",
|
|
22402
|
+
"type": {
|
|
22403
|
+
"text": "Element | null"
|
|
22404
|
+
},
|
|
22405
|
+
"privacy": "private",
|
|
22406
|
+
"default": "null"
|
|
22407
|
+
},
|
|
21502
22408
|
{
|
|
21503
22409
|
"kind": "field",
|
|
21504
22410
|
"name": "_tabs",
|
|
@@ -22321,6 +23227,15 @@
|
|
|
22321
23227
|
"default": "''",
|
|
22322
23228
|
"description": "The default value of the form control. Primarily used for resetting the form control."
|
|
22323
23229
|
},
|
|
23230
|
+
{
|
|
23231
|
+
"kind": "field",
|
|
23232
|
+
"name": "transparent",
|
|
23233
|
+
"type": {
|
|
23234
|
+
"text": "boolean"
|
|
23235
|
+
},
|
|
23236
|
+
"default": "false",
|
|
23237
|
+
"attribute": "transparent"
|
|
23238
|
+
},
|
|
22324
23239
|
{
|
|
22325
23240
|
"kind": "field",
|
|
22326
23241
|
"name": "validity",
|
|
@@ -22749,6 +23664,14 @@
|
|
|
22749
23664
|
},
|
|
22750
23665
|
"description": "Tells the browser what type of data will be entered by the user, allowing it to display the appropriate virtual\nkeyboard on supportive devices.",
|
|
22751
23666
|
"fieldName": "inputmode"
|
|
23667
|
+
},
|
|
23668
|
+
{
|
|
23669
|
+
"name": "transparent",
|
|
23670
|
+
"type": {
|
|
23671
|
+
"text": "boolean"
|
|
23672
|
+
},
|
|
23673
|
+
"default": "false",
|
|
23674
|
+
"fieldName": "transparent"
|
|
22752
23675
|
}
|
|
22753
23676
|
],
|
|
22754
23677
|
"superclass": {
|
|
@@ -24220,7 +25143,7 @@
|
|
|
24220
25143
|
"package": {
|
|
24221
25144
|
"name": "@kubex/zinc",
|
|
24222
25145
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
24223
|
-
"version": "1.0.
|
|
25146
|
+
"version": "1.0.5",
|
|
24224
25147
|
"author": "",
|
|
24225
25148
|
"license": "MIT"
|
|
24226
25149
|
}
|