@kubex/zinc 1.0.7 → 1.0.9

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.
Files changed (37) hide show
  1. package/dist/custom-elements.json +411 -83
  2. package/dist/vscode.html-custom-data.json +45 -16
  3. package/dist/web-types.json +104 -34
  4. package/dist/zn.d.ts +57 -3
  5. package/dist/zn.min.css +1 -1
  6. package/dist/zn.min.js +464 -408
  7. package/docs/data/products-table.json +203 -0
  8. package/docs/pages/components/button.md +39 -0
  9. package/docs/pages/components/data-table.md +21 -0
  10. package/docs/pages/components/header.md +7 -0
  11. package/docs/pages/components/order-table.md +82 -5
  12. package/package.json +1 -1
  13. package/scss/themes/_light.scss +1 -1
  14. package/src/components/button/button.component.ts +160 -10
  15. package/src/components/button/button.scss +85 -0
  16. package/src/components/content-block/content-block.component.ts +18 -7
  17. package/src/components/content-block/content-block.scss +58 -2
  18. package/src/components/data-select/data-select.component.ts +0 -1
  19. package/src/components/data-table/data-table.component.ts +133 -22
  20. package/src/components/data-table/data-table.scss +14 -3
  21. package/src/components/editor/editor.scss +1 -1
  22. package/src/components/expanding-action/expanding-action.component.ts +1 -1
  23. package/src/components/header/header.component.ts +8 -2
  24. package/src/components/header/header.scss +5 -1
  25. package/src/components/linked-select/linked-select.component.ts +1 -0
  26. package/src/components/menu/menu.component.ts +0 -1
  27. package/src/components/navbar/navbar.component.ts +1 -1
  28. package/src/components/note/note.component.ts +70 -2
  29. package/src/components/note/note.scss +26 -4
  30. package/src/components/order-table/order-table.component.ts +49 -28
  31. package/src/components/panel/panel.component.ts +8 -2
  32. package/src/components/panel/panel.scss +4 -0
  33. package/src/components/rating/rating.component.ts +10 -9
  34. package/src/components/rating/rating.scss +15 -1
  35. package/src/components/settings-container/settings-container.component.ts +1 -1
  36. package/src/components/tabs/tabs.component.ts +24 -6
  37. package/src/internal/form.ts +41 -3
@@ -59,79 +59,6 @@
59
59
  }
60
60
  ]
61
61
  },
62
- {
63
- "kind": "javascript-module",
64
- "path": "components/action-bar/action-bar.js",
65
- "declarations": [
66
- {
67
- "kind": "class",
68
- "description": "",
69
- "name": "ZnActionBar",
70
- "cssProperties": [
71
- {
72
- "description": "An example CSS custom property.",
73
- "name": "--example"
74
- }
75
- ],
76
- "cssParts": [
77
- {
78
- "description": "The component's base wrapper.",
79
- "name": "base"
80
- }
81
- ],
82
- "slots": [
83
- {
84
- "description": "The default slot.",
85
- "name": ""
86
- },
87
- {
88
- "description": "An example slot.",
89
- "name": "example"
90
- }
91
- ],
92
- "members": [
93
- {
94
- "kind": "field",
95
- "name": "localize",
96
- "privacy": "private",
97
- "readonly": true,
98
- "default": "new LocalizeController(this)"
99
- }
100
- ],
101
- "events": [
102
- {
103
- "description": "Emitted as an example.",
104
- "name": "zn-event-name"
105
- }
106
- ],
107
- "superclass": {
108
- "name": "ZincElement",
109
- "module": "/src/internal/zinc-element"
110
- },
111
- "summary": "Short summary of the component's intended use.",
112
- "tagNameWithoutPrefix": "action-bar",
113
- "tagName": "zn-action-bar",
114
- "customElement": true,
115
- "jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/action-bar\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 */",
116
- "documentation": "https://zinc.style/components/action-bar",
117
- "status": "experimental",
118
- "since": "1.0",
119
- "dependencies": [
120
- "zn-example"
121
- ]
122
- }
123
- ],
124
- "exports": [
125
- {
126
- "kind": "js",
127
- "name": "default",
128
- "declaration": {
129
- "name": "ZnActionBar",
130
- "module": "components/action-bar/action-bar.js"
131
- }
132
- }
133
- ]
134
- },
135
62
  {
136
63
  "kind": "javascript-module",
137
64
  "path": "components/alert/alert.js",
@@ -290,6 +217,79 @@
290
217
  }
291
218
  ]
292
219
  },
220
+ {
221
+ "kind": "javascript-module",
222
+ "path": "components/action-bar/action-bar.js",
223
+ "declarations": [
224
+ {
225
+ "kind": "class",
226
+ "description": "",
227
+ "name": "ZnActionBar",
228
+ "cssProperties": [
229
+ {
230
+ "description": "An example CSS custom property.",
231
+ "name": "--example"
232
+ }
233
+ ],
234
+ "cssParts": [
235
+ {
236
+ "description": "The component's base wrapper.",
237
+ "name": "base"
238
+ }
239
+ ],
240
+ "slots": [
241
+ {
242
+ "description": "The default slot.",
243
+ "name": ""
244
+ },
245
+ {
246
+ "description": "An example slot.",
247
+ "name": "example"
248
+ }
249
+ ],
250
+ "members": [
251
+ {
252
+ "kind": "field",
253
+ "name": "localize",
254
+ "privacy": "private",
255
+ "readonly": true,
256
+ "default": "new LocalizeController(this)"
257
+ }
258
+ ],
259
+ "events": [
260
+ {
261
+ "description": "Emitted as an example.",
262
+ "name": "zn-event-name"
263
+ }
264
+ ],
265
+ "superclass": {
266
+ "name": "ZincElement",
267
+ "module": "/src/internal/zinc-element"
268
+ },
269
+ "summary": "Short summary of the component's intended use.",
270
+ "tagNameWithoutPrefix": "action-bar",
271
+ "tagName": "zn-action-bar",
272
+ "customElement": true,
273
+ "jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/action-bar\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 */",
274
+ "documentation": "https://zinc.style/components/action-bar",
275
+ "status": "experimental",
276
+ "since": "1.0",
277
+ "dependencies": [
278
+ "zn-example"
279
+ ]
280
+ }
281
+ ],
282
+ "exports": [
283
+ {
284
+ "kind": "js",
285
+ "name": "default",
286
+ "declaration": {
287
+ "name": "ZnActionBar",
288
+ "module": "components/action-bar/action-bar.js"
289
+ }
290
+ }
291
+ ]
292
+ },
293
293
  {
294
294
  "kind": "javascript-module",
295
295
  "path": "components/bulk-actions/bulk-actions.js",
@@ -693,6 +693,10 @@
693
693
  {
694
694
  "description": "A presentational suffix icon or similar element.",
695
695
  "name": "suffix"
696
+ },
697
+ {
698
+ "description": "Slot for custom cancel button/content when autoClick is active.",
699
+ "name": "cancel"
696
700
  }
697
701
  ],
698
702
  "members": [
@@ -719,6 +723,23 @@
719
723
  "readonly": true,
720
724
  "default": "new HasSlotController(this, '[default]')"
721
725
  },
726
+ {
727
+ "kind": "field",
728
+ "name": "_autoClickTimeout",
729
+ "type": {
730
+ "text": "number | undefined"
731
+ },
732
+ "privacy": "private"
733
+ },
734
+ {
735
+ "kind": "field",
736
+ "name": "_loadingState",
737
+ "type": {
738
+ "text": "object"
739
+ },
740
+ "privacy": "private",
741
+ "default": "{ countdown: null as number | null, interval: undefined as number | undefined, }"
742
+ },
722
743
  {
723
744
  "kind": "field",
724
745
  "name": "button",
@@ -726,6 +747,13 @@
726
747
  "text": "HTMLButtonElement"
727
748
  }
728
749
  },
750
+ {
751
+ "kind": "field",
752
+ "name": "countdownContainer",
753
+ "type": {
754
+ "text": "HTMLElement[]"
755
+ }
756
+ },
729
757
  {
730
758
  "kind": "field",
731
759
  "name": "color",
@@ -988,6 +1016,51 @@
988
1016
  },
989
1017
  "attribute": "tooltip"
990
1018
  },
1019
+ {
1020
+ "kind": "field",
1021
+ "name": "autoClick",
1022
+ "type": {
1023
+ "text": "boolean"
1024
+ },
1025
+ "default": "false",
1026
+ "attribute": "auto-click"
1027
+ },
1028
+ {
1029
+ "kind": "field",
1030
+ "name": "autoClickDelay",
1031
+ "type": {
1032
+ "text": "number"
1033
+ },
1034
+ "default": "2000",
1035
+ "attribute": "auto-click-delay"
1036
+ },
1037
+ {
1038
+ "kind": "field",
1039
+ "name": "loadingText",
1040
+ "type": {
1041
+ "text": "string"
1042
+ },
1043
+ "default": "'Loading...'",
1044
+ "attribute": "loading-text"
1045
+ },
1046
+ {
1047
+ "kind": "field",
1048
+ "name": "loadingTextPosition",
1049
+ "type": {
1050
+ "text": "'left' | 'right' | 'center' | string"
1051
+ },
1052
+ "default": "'center'",
1053
+ "attribute": "loading-text-position"
1054
+ },
1055
+ {
1056
+ "kind": "field",
1057
+ "name": "loading",
1058
+ "type": {
1059
+ "text": "boolean"
1060
+ },
1061
+ "default": "false",
1062
+ "attribute": "loading"
1063
+ },
991
1064
  {
992
1065
  "kind": "field",
993
1066
  "name": "validity",
@@ -1040,6 +1113,23 @@
1040
1113
  "kind": "method",
1041
1114
  "name": "_isButton",
1042
1115
  "privacy": "private"
1116
+ },
1117
+ {
1118
+ "kind": "method",
1119
+ "name": "setupAutoClick"
1120
+ },
1121
+ {
1122
+ "kind": "method",
1123
+ "name": "updateCountdownText"
1124
+ },
1125
+ {
1126
+ "kind": "method",
1127
+ "name": "teardownAutoClick"
1128
+ },
1129
+ {
1130
+ "kind": "method",
1131
+ "name": "_getLoadingContainer",
1132
+ "privacy": "private"
1043
1133
  }
1044
1134
  ],
1045
1135
  "events": [
@@ -1287,6 +1377,46 @@
1287
1377
  "text": "string"
1288
1378
  },
1289
1379
  "fieldName": "tooltip"
1380
+ },
1381
+ {
1382
+ "name": "auto-click",
1383
+ "type": {
1384
+ "text": "boolean"
1385
+ },
1386
+ "default": "false",
1387
+ "fieldName": "autoClick"
1388
+ },
1389
+ {
1390
+ "name": "auto-click-delay",
1391
+ "type": {
1392
+ "text": "number"
1393
+ },
1394
+ "default": "2000",
1395
+ "fieldName": "autoClickDelay"
1396
+ },
1397
+ {
1398
+ "name": "loading-text",
1399
+ "type": {
1400
+ "text": "string"
1401
+ },
1402
+ "default": "'Loading...'",
1403
+ "fieldName": "loadingText"
1404
+ },
1405
+ {
1406
+ "name": "loading-text-position",
1407
+ "type": {
1408
+ "text": "'left' | 'right' | 'center' | string"
1409
+ },
1410
+ "default": "'center'",
1411
+ "fieldName": "loadingTextPosition"
1412
+ },
1413
+ {
1414
+ "name": "loading",
1415
+ "type": {
1416
+ "text": "boolean"
1417
+ },
1418
+ "default": "false",
1419
+ "fieldName": "loading"
1290
1420
  }
1291
1421
  ],
1292
1422
  "superclass": {
@@ -1297,7 +1427,7 @@
1297
1427
  "tagNameWithoutPrefix": "button",
1298
1428
  "tagName": "zn-button",
1299
1429
  "customElement": true,
1300
- "jsDoc": "/**\n * @summary Buttons represent actions that are available to the user.\n * @documentation https://inc.style/components/button\n * @status stable\n * @since 2.0\n *\n * @dependency zn-icon\n * @dependency zn-tooltip\n *\n * @event zn-blur - Emitted when the button loses focus.\n * @event zn-focus - Emitted when the button gains focus.\n * @event zn-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n *\n * @slot - The button's label.\n * @slot prefix - A presentational prefix icon or similar element.\n * @slot suffix - A presentational suffix icon or similar element.\n *\n * @csspart base - The component's base wrapper.\n * @csspart prefix - The container that wraps the prefix.\n * @csspart label - The button's label.\n * @csspart suffix - The container that wraps the suffix.\n * @csspart caret - The button's caret icon, an `<zn-icon>` element.\n * @csspart spinner - The spinner that shows when the button is in the loading state.\n */",
1430
+ "jsDoc": "/**\n * @summary Buttons represent actions that are available to the user.\n * @documentation https://inc.style/components/button\n * @status stable\n * @since 2.0\n *\n * @dependency zn-icon\n * @dependency zn-tooltip\n *\n * @event zn-blur - Emitted when the button loses focus.\n * @event zn-focus - Emitted when the button gains focus.\n * @event zn-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n *\n * @slot - The button's label.\n * @slot prefix - A presentational prefix icon or similar element.\n * @slot suffix - A presentational suffix icon or similar element.\n * @slot cancel - Slot for custom cancel button/content when autoClick is active.\n *\n * @csspart base - The component's base wrapper.\n * @csspart prefix - The container that wraps the prefix.\n * @csspart label - The button's label.\n * @csspart suffix - The container that wraps the suffix.\n * @csspart caret - The button's caret icon, an `<zn-icon>` element.\n * @csspart spinner - The spinner that shows when the button is in the loading state.\n */",
1301
1431
  "documentation": "https://inc.style/components/button",
1302
1432
  "status": "stable",
1303
1433
  "since": "2.0",
@@ -4092,6 +4222,15 @@
4092
4222
  "attribute": "outbound",
4093
4223
  "reflects": true
4094
4224
  },
4225
+ {
4226
+ "kind": "field",
4227
+ "name": "noCollapse",
4228
+ "type": {
4229
+ "text": "boolean"
4230
+ },
4231
+ "default": "false",
4232
+ "attribute": "no-collapse"
4233
+ },
4095
4234
  {
4096
4235
  "kind": "field",
4097
4236
  "name": "short",
@@ -4280,6 +4419,14 @@
4280
4419
  "default": "false",
4281
4420
  "fieldName": "outbound"
4282
4421
  },
4422
+ {
4423
+ "name": "no-collapse",
4424
+ "type": {
4425
+ "text": "boolean"
4426
+ },
4427
+ "default": "false",
4428
+ "fieldName": "noCollapse"
4429
+ },
4283
4430
  {
4284
4431
  "name": "short",
4285
4432
  "type": {
@@ -5193,7 +5340,6 @@
5193
5340
  "type": {
5194
5341
  "text": "boolean"
5195
5342
  },
5196
- "default": "true",
5197
5343
  "attribute": "hide-checkboxes"
5198
5344
  },
5199
5345
  {
@@ -5223,6 +5369,31 @@
5223
5369
  "default": "false",
5224
5370
  "attribute": "no-initial-load"
5225
5371
  },
5372
+ {
5373
+ "kind": "field",
5374
+ "name": "groupBy",
5375
+ "type": {
5376
+ "text": "string"
5377
+ },
5378
+ "default": "''",
5379
+ "attribute": "group-by"
5380
+ },
5381
+ {
5382
+ "kind": "field",
5383
+ "name": "groups",
5384
+ "type": {
5385
+ "text": "string"
5386
+ },
5387
+ "default": "''",
5388
+ "attribute": "groups"
5389
+ },
5390
+ {
5391
+ "kind": "field",
5392
+ "name": "selectAllButton",
5393
+ "type": {
5394
+ "text": "ZnButton"
5395
+ }
5396
+ },
5226
5397
  {
5227
5398
  "kind": "field",
5228
5399
  "name": "_initialLoad",
@@ -5320,7 +5491,7 @@
5320
5491
  "kind": "field",
5321
5492
  "name": "_dataTask",
5322
5493
  "privacy": "private",
5323
- "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] })"
5494
+ "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}; } if (this.groupBy) { // we want to load all the data possible so we can group and show multiple tables this.itemsPerPage = 1000; } 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] })"
5324
5495
  },
5325
5496
  {
5326
5497
  "kind": "field",
@@ -5363,6 +5534,32 @@
5363
5534
  }
5364
5535
  ]
5365
5536
  },
5537
+ {
5538
+ "kind": "method",
5539
+ "name": "humanize",
5540
+ "privacy": "public",
5541
+ "parameters": [
5542
+ {
5543
+ "name": "str",
5544
+ "type": {
5545
+ "text": "string"
5546
+ }
5547
+ }
5548
+ ]
5549
+ },
5550
+ {
5551
+ "kind": "method",
5552
+ "name": "renderTableData",
5553
+ "privacy": "public",
5554
+ "parameters": [
5555
+ {
5556
+ "name": "data",
5557
+ "type": {
5558
+ "text": "any"
5559
+ }
5560
+ }
5561
+ ]
5562
+ },
5366
5563
  {
5367
5564
  "kind": "method",
5368
5565
  "name": "getTableHeader"
@@ -5592,6 +5789,11 @@
5592
5789
  "name": "updateKeys",
5593
5790
  "privacy": "private"
5594
5791
  },
5792
+ {
5793
+ "kind": "method",
5794
+ "name": "updateSelectAll",
5795
+ "privacy": "private"
5796
+ },
5595
5797
  {
5596
5798
  "kind": "method",
5597
5799
  "name": "updateModifyKeys",
@@ -5799,7 +6001,6 @@
5799
6001
  "type": {
5800
6002
  "text": "boolean"
5801
6003
  },
5802
- "default": "true",
5803
6004
  "fieldName": "hideCheckboxes"
5804
6005
  },
5805
6006
  {
@@ -5825,6 +6026,22 @@
5825
6026
  },
5826
6027
  "default": "false",
5827
6028
  "fieldName": "noInitialLoad"
6029
+ },
6030
+ {
6031
+ "name": "group-by",
6032
+ "type": {
6033
+ "text": "string"
6034
+ },
6035
+ "default": "''",
6036
+ "fieldName": "groupBy"
6037
+ },
6038
+ {
6039
+ "name": "groups",
6040
+ "type": {
6041
+ "text": "string"
6042
+ },
6043
+ "default": "''",
6044
+ "fieldName": "groups"
5828
6045
  }
5829
6046
  ],
5830
6047
  "superclass": {
@@ -9687,6 +9904,14 @@
9687
9904
  },
9688
9905
  "attribute": "caption"
9689
9906
  },
9907
+ {
9908
+ "kind": "field",
9909
+ "name": "icon",
9910
+ "type": {
9911
+ "text": "string"
9912
+ },
9913
+ "attribute": "icon"
9914
+ },
9690
9915
  {
9691
9916
  "kind": "field",
9692
9917
  "name": "description",
@@ -9792,6 +10017,13 @@
9792
10017
  },
9793
10018
  "fieldName": "caption"
9794
10019
  },
10020
+ {
10021
+ "name": "icon",
10022
+ "type": {
10023
+ "text": "string"
10024
+ },
10025
+ "fieldName": "icon"
10026
+ },
9795
10027
  {
9796
10028
  "name": "description",
9797
10029
  "type": {
@@ -13571,6 +13803,44 @@
13571
13803
  "default": "''",
13572
13804
  "attribute": "body",
13573
13805
  "reflects": true
13806
+ },
13807
+ {
13808
+ "kind": "field",
13809
+ "name": "collapseAtLines",
13810
+ "type": {
13811
+ "text": "number"
13812
+ },
13813
+ "default": "3",
13814
+ "attribute": "collapse-at-lines",
13815
+ "reflects": true
13816
+ },
13817
+ {
13818
+ "kind": "field",
13819
+ "name": "expanded",
13820
+ "type": {
13821
+ "text": "boolean"
13822
+ },
13823
+ "privacy": "private",
13824
+ "default": "false"
13825
+ },
13826
+ {
13827
+ "kind": "field",
13828
+ "name": "_isOverflowing",
13829
+ "type": {
13830
+ "text": "boolean"
13831
+ },
13832
+ "privacy": "private",
13833
+ "default": "false"
13834
+ },
13835
+ {
13836
+ "kind": "field",
13837
+ "name": "_toggleExpand",
13838
+ "privacy": "private"
13839
+ },
13840
+ {
13841
+ "kind": "method",
13842
+ "name": "_measureOverflow",
13843
+ "privacy": "private"
13574
13844
  }
13575
13845
  ],
13576
13846
  "events": [
@@ -13610,6 +13880,14 @@
13610
13880
  },
13611
13881
  "default": "''",
13612
13882
  "fieldName": "body"
13883
+ },
13884
+ {
13885
+ "name": "collapse-at-lines",
13886
+ "type": {
13887
+ "text": "number"
13888
+ },
13889
+ "default": "3",
13890
+ "fieldName": "collapseAtLines"
13613
13891
  }
13614
13892
  ],
13615
13893
  "superclass": {
@@ -13887,7 +14165,7 @@
13887
14165
  "kind": "field",
13888
14166
  "name": "data",
13889
14167
  "type": {
13890
- "text": "Object"
14168
+ "text": "OrderTableData"
13891
14169
  },
13892
14170
  "attribute": "data",
13893
14171
  "reflects": true
@@ -13905,10 +14183,13 @@
13905
14183
  "kind": "field",
13906
14184
  "name": "modifiedData",
13907
14185
  "type": {
13908
- "text": "any"
14186
+ "text": "OrderTableData"
13909
14187
  },
13910
- "privacy": "private",
13911
- "default": "null"
14188
+ "privacy": "private"
14189
+ },
14190
+ {
14191
+ "kind": "field",
14192
+ "name": "resizeEventHandler"
13912
14193
  },
13913
14194
  {
13914
14195
  "kind": "method",
@@ -13992,7 +14273,7 @@
13992
14273
  {
13993
14274
  "name": "data",
13994
14275
  "type": {
13995
- "text": "Object"
14276
+ "text": "OrderTableData"
13996
14277
  },
13997
14278
  "fieldName": "data"
13998
14279
  }
@@ -15373,6 +15654,14 @@
15373
15654
  },
15374
15655
  "attribute": "caption"
15375
15656
  },
15657
+ {
15658
+ "kind": "field",
15659
+ "name": "icon",
15660
+ "type": {
15661
+ "text": "string"
15662
+ },
15663
+ "attribute": "icon"
15664
+ },
15376
15665
  {
15377
15666
  "kind": "field",
15378
15667
  "name": "description",
@@ -15389,6 +15678,14 @@
15389
15678
  },
15390
15679
  "attribute": "tabbed"
15391
15680
  },
15681
+ {
15682
+ "kind": "field",
15683
+ "name": "underlineHeader",
15684
+ "type": {
15685
+ "text": "boolean"
15686
+ },
15687
+ "attribute": "header-underline"
15688
+ },
15392
15689
  {
15393
15690
  "kind": "field",
15394
15691
  "name": "cosmic",
@@ -15453,6 +15750,13 @@
15453
15750
  },
15454
15751
  "fieldName": "caption"
15455
15752
  },
15753
+ {
15754
+ "name": "icon",
15755
+ "type": {
15756
+ "text": "string"
15757
+ },
15758
+ "fieldName": "icon"
15759
+ },
15456
15760
  {
15457
15761
  "name": "description",
15458
15762
  "type": {
@@ -15467,6 +15771,13 @@
15467
15771
  },
15468
15772
  "fieldName": "tabbed"
15469
15773
  },
15774
+ {
15775
+ "name": "header-underline",
15776
+ "type": {
15777
+ "text": "boolean"
15778
+ },
15779
+ "fieldName": "underlineHeader"
15780
+ },
15470
15781
  {
15471
15782
  "name": "cosmic",
15472
15783
  "type": {
@@ -18123,6 +18434,15 @@
18123
18434
  "default": "false",
18124
18435
  "attribute": "disabled"
18125
18436
  },
18437
+ {
18438
+ "kind": "field",
18439
+ "name": "size",
18440
+ "type": {
18441
+ "text": "'small' | 'medium' | 'large'"
18442
+ },
18443
+ "default": "'medium'",
18444
+ "attribute": "size"
18445
+ },
18126
18446
  {
18127
18447
  "kind": "field",
18128
18448
  "name": "getSymbol",
@@ -18409,6 +18729,14 @@
18409
18729
  "default": "false",
18410
18730
  "fieldName": "disabled"
18411
18731
  },
18732
+ {
18733
+ "name": "size",
18734
+ "type": {
18735
+ "text": "'small' | 'medium' | 'large'"
18736
+ },
18737
+ "default": "'medium'",
18738
+ "fieldName": "size"
18739
+ },
18412
18740
  {
18413
18741
  "name": "getSymbol",
18414
18742
  "type": {
@@ -25429,7 +25757,7 @@
25429
25757
  "package": {
25430
25758
  "name": "@kubex/zinc",
25431
25759
  "description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
25432
- "version": "1.0.7",
25760
+ "version": "1.0.9",
25433
25761
  "author": "",
25434
25762
  "license": "MIT"
25435
25763
  }