@kubex/zinc 1.0.7 → 1.0.8

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 (31) hide show
  1. package/dist/custom-elements.json +318 -10
  2. package/dist/vscode.html-custom-data.json +33 -5
  3. package/dist/web-types.json +80 -12
  4. package/dist/zn.d.ts +53 -3
  5. package/dist/zn.min.js +371 -311
  6. package/docs/data/products-table.json +203 -0
  7. package/docs/pages/components/button.md +25 -0
  8. package/docs/pages/components/data-table.md +21 -0
  9. package/docs/pages/components/header.md +7 -0
  10. package/docs/pages/components/order-table.md +82 -5
  11. package/package.json +1 -1
  12. package/src/components/button/button.component.ts +168 -10
  13. package/src/components/button/button.scss +115 -0
  14. package/src/components/content-block/content-block.component.ts +18 -7
  15. package/src/components/content-block/content-block.scss +4 -2
  16. package/src/components/data-select/data-select.component.ts +0 -1
  17. package/src/components/data-table/data-table.component.ts +112 -20
  18. package/src/components/data-table/data-table.scss +14 -3
  19. package/src/components/editor/editor.scss +1 -0
  20. package/src/components/expanding-action/expanding-action.component.ts +1 -1
  21. package/src/components/header/header.component.ts +8 -2
  22. package/src/components/header/header.scss +5 -1
  23. package/src/components/linked-select/linked-select.component.ts +1 -0
  24. package/src/components/menu/menu.component.ts +0 -1
  25. package/src/components/navbar/navbar.component.ts +1 -1
  26. package/src/components/note/note.component.ts +70 -2
  27. package/src/components/note/note.scss +26 -4
  28. package/src/components/order-table/order-table.component.ts +49 -28
  29. package/src/components/panel/panel.component.ts +3 -1
  30. package/src/components/rating/rating.component.ts +10 -9
  31. package/src/components/rating/rating.scss +15 -1
@@ -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,18 @@
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"
1043
1128
  }
1044
1129
  ],
1045
1130
  "events": [
@@ -1287,6 +1372,46 @@
1287
1372
  "text": "string"
1288
1373
  },
1289
1374
  "fieldName": "tooltip"
1375
+ },
1376
+ {
1377
+ "name": "auto-click",
1378
+ "type": {
1379
+ "text": "boolean"
1380
+ },
1381
+ "default": "false",
1382
+ "fieldName": "autoClick"
1383
+ },
1384
+ {
1385
+ "name": "auto-click-delay",
1386
+ "type": {
1387
+ "text": "number"
1388
+ },
1389
+ "default": "2000",
1390
+ "fieldName": "autoClickDelay"
1391
+ },
1392
+ {
1393
+ "name": "loading-text",
1394
+ "type": {
1395
+ "text": "string"
1396
+ },
1397
+ "default": "'Loading...'",
1398
+ "fieldName": "loadingText"
1399
+ },
1400
+ {
1401
+ "name": "loading-text-position",
1402
+ "type": {
1403
+ "text": "'left' | 'right' | 'center' | string"
1404
+ },
1405
+ "default": "'center'",
1406
+ "fieldName": "loadingTextPosition"
1407
+ },
1408
+ {
1409
+ "name": "loading",
1410
+ "type": {
1411
+ "text": "boolean"
1412
+ },
1413
+ "default": "false",
1414
+ "fieldName": "loading"
1290
1415
  }
1291
1416
  ],
1292
1417
  "superclass": {
@@ -1297,7 +1422,7 @@
1297
1422
  "tagNameWithoutPrefix": "button",
1298
1423
  "tagName": "zn-button",
1299
1424
  "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 */",
1425
+ "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
1426
  "documentation": "https://inc.style/components/button",
1302
1427
  "status": "stable",
1303
1428
  "since": "2.0",
@@ -4092,6 +4217,15 @@
4092
4217
  "attribute": "outbound",
4093
4218
  "reflects": true
4094
4219
  },
4220
+ {
4221
+ "kind": "field",
4222
+ "name": "noCollapse",
4223
+ "type": {
4224
+ "text": "boolean"
4225
+ },
4226
+ "default": "false",
4227
+ "attribute": "no-collapse"
4228
+ },
4095
4229
  {
4096
4230
  "kind": "field",
4097
4231
  "name": "short",
@@ -4280,6 +4414,14 @@
4280
4414
  "default": "false",
4281
4415
  "fieldName": "outbound"
4282
4416
  },
4417
+ {
4418
+ "name": "no-collapse",
4419
+ "type": {
4420
+ "text": "boolean"
4421
+ },
4422
+ "default": "false",
4423
+ "fieldName": "noCollapse"
4424
+ },
4283
4425
  {
4284
4426
  "name": "short",
4285
4427
  "type": {
@@ -5193,7 +5335,6 @@
5193
5335
  "type": {
5194
5336
  "text": "boolean"
5195
5337
  },
5196
- "default": "true",
5197
5338
  "attribute": "hide-checkboxes"
5198
5339
  },
5199
5340
  {
@@ -5223,6 +5364,31 @@
5223
5364
  "default": "false",
5224
5365
  "attribute": "no-initial-load"
5225
5366
  },
5367
+ {
5368
+ "kind": "field",
5369
+ "name": "groupBy",
5370
+ "type": {
5371
+ "text": "string"
5372
+ },
5373
+ "default": "''",
5374
+ "attribute": "group-by"
5375
+ },
5376
+ {
5377
+ "kind": "field",
5378
+ "name": "groups",
5379
+ "type": {
5380
+ "text": "string"
5381
+ },
5382
+ "default": "''",
5383
+ "attribute": "groups"
5384
+ },
5385
+ {
5386
+ "kind": "field",
5387
+ "name": "selectAllButton",
5388
+ "type": {
5389
+ "text": "ZnButton"
5390
+ }
5391
+ },
5226
5392
  {
5227
5393
  "kind": "field",
5228
5394
  "name": "_initialLoad",
@@ -5320,7 +5486,7 @@
5320
5486
  "kind": "field",
5321
5487
  "name": "_dataTask",
5322
5488
  "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] })"
5489
+ "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
5490
  },
5325
5491
  {
5326
5492
  "kind": "field",
@@ -5363,6 +5529,32 @@
5363
5529
  }
5364
5530
  ]
5365
5531
  },
5532
+ {
5533
+ "kind": "method",
5534
+ "name": "humanize",
5535
+ "privacy": "public",
5536
+ "parameters": [
5537
+ {
5538
+ "name": "str",
5539
+ "type": {
5540
+ "text": "string"
5541
+ }
5542
+ }
5543
+ ]
5544
+ },
5545
+ {
5546
+ "kind": "method",
5547
+ "name": "renderTableData",
5548
+ "privacy": "public",
5549
+ "parameters": [
5550
+ {
5551
+ "name": "data",
5552
+ "type": {
5553
+ "text": "any"
5554
+ }
5555
+ }
5556
+ ]
5557
+ },
5366
5558
  {
5367
5559
  "kind": "method",
5368
5560
  "name": "getTableHeader"
@@ -5592,6 +5784,11 @@
5592
5784
  "name": "updateKeys",
5593
5785
  "privacy": "private"
5594
5786
  },
5787
+ {
5788
+ "kind": "method",
5789
+ "name": "updateSelectAll",
5790
+ "privacy": "private"
5791
+ },
5595
5792
  {
5596
5793
  "kind": "method",
5597
5794
  "name": "updateModifyKeys",
@@ -5799,7 +5996,6 @@
5799
5996
  "type": {
5800
5997
  "text": "boolean"
5801
5998
  },
5802
- "default": "true",
5803
5999
  "fieldName": "hideCheckboxes"
5804
6000
  },
5805
6001
  {
@@ -5825,6 +6021,22 @@
5825
6021
  },
5826
6022
  "default": "false",
5827
6023
  "fieldName": "noInitialLoad"
6024
+ },
6025
+ {
6026
+ "name": "group-by",
6027
+ "type": {
6028
+ "text": "string"
6029
+ },
6030
+ "default": "''",
6031
+ "fieldName": "groupBy"
6032
+ },
6033
+ {
6034
+ "name": "groups",
6035
+ "type": {
6036
+ "text": "string"
6037
+ },
6038
+ "default": "''",
6039
+ "fieldName": "groups"
5828
6040
  }
5829
6041
  ],
5830
6042
  "superclass": {
@@ -9687,6 +9899,14 @@
9687
9899
  },
9688
9900
  "attribute": "caption"
9689
9901
  },
9902
+ {
9903
+ "kind": "field",
9904
+ "name": "icon",
9905
+ "type": {
9906
+ "text": "string"
9907
+ },
9908
+ "attribute": "icon"
9909
+ },
9690
9910
  {
9691
9911
  "kind": "field",
9692
9912
  "name": "description",
@@ -9792,6 +10012,13 @@
9792
10012
  },
9793
10013
  "fieldName": "caption"
9794
10014
  },
10015
+ {
10016
+ "name": "icon",
10017
+ "type": {
10018
+ "text": "string"
10019
+ },
10020
+ "fieldName": "icon"
10021
+ },
9795
10022
  {
9796
10023
  "name": "description",
9797
10024
  "type": {
@@ -13571,6 +13798,44 @@
13571
13798
  "default": "''",
13572
13799
  "attribute": "body",
13573
13800
  "reflects": true
13801
+ },
13802
+ {
13803
+ "kind": "field",
13804
+ "name": "collapseAtLines",
13805
+ "type": {
13806
+ "text": "number"
13807
+ },
13808
+ "default": "3",
13809
+ "attribute": "collapse-at-lines",
13810
+ "reflects": true
13811
+ },
13812
+ {
13813
+ "kind": "field",
13814
+ "name": "expanded",
13815
+ "type": {
13816
+ "text": "boolean"
13817
+ },
13818
+ "privacy": "private",
13819
+ "default": "false"
13820
+ },
13821
+ {
13822
+ "kind": "field",
13823
+ "name": "_isOverflowing",
13824
+ "type": {
13825
+ "text": "boolean"
13826
+ },
13827
+ "privacy": "private",
13828
+ "default": "false"
13829
+ },
13830
+ {
13831
+ "kind": "field",
13832
+ "name": "_toggleExpand",
13833
+ "privacy": "private"
13834
+ },
13835
+ {
13836
+ "kind": "method",
13837
+ "name": "_measureOverflow",
13838
+ "privacy": "private"
13574
13839
  }
13575
13840
  ],
13576
13841
  "events": [
@@ -13610,6 +13875,14 @@
13610
13875
  },
13611
13876
  "default": "''",
13612
13877
  "fieldName": "body"
13878
+ },
13879
+ {
13880
+ "name": "collapse-at-lines",
13881
+ "type": {
13882
+ "text": "number"
13883
+ },
13884
+ "default": "3",
13885
+ "fieldName": "collapseAtLines"
13613
13886
  }
13614
13887
  ],
13615
13888
  "superclass": {
@@ -13887,7 +14160,7 @@
13887
14160
  "kind": "field",
13888
14161
  "name": "data",
13889
14162
  "type": {
13890
- "text": "Object"
14163
+ "text": "OrderTableData"
13891
14164
  },
13892
14165
  "attribute": "data",
13893
14166
  "reflects": true
@@ -13905,10 +14178,13 @@
13905
14178
  "kind": "field",
13906
14179
  "name": "modifiedData",
13907
14180
  "type": {
13908
- "text": "any"
14181
+ "text": "OrderTableData"
13909
14182
  },
13910
- "privacy": "private",
13911
- "default": "null"
14183
+ "privacy": "private"
14184
+ },
14185
+ {
14186
+ "kind": "field",
14187
+ "name": "resizeEventHandler"
13912
14188
  },
13913
14189
  {
13914
14190
  "kind": "method",
@@ -13992,7 +14268,7 @@
13992
14268
  {
13993
14269
  "name": "data",
13994
14270
  "type": {
13995
- "text": "Object"
14271
+ "text": "OrderTableData"
13996
14272
  },
13997
14273
  "fieldName": "data"
13998
14274
  }
@@ -15373,6 +15649,14 @@
15373
15649
  },
15374
15650
  "attribute": "caption"
15375
15651
  },
15652
+ {
15653
+ "kind": "field",
15654
+ "name": "icon",
15655
+ "type": {
15656
+ "text": "string"
15657
+ },
15658
+ "attribute": "icon"
15659
+ },
15376
15660
  {
15377
15661
  "kind": "field",
15378
15662
  "name": "description",
@@ -15453,6 +15737,13 @@
15453
15737
  },
15454
15738
  "fieldName": "caption"
15455
15739
  },
15740
+ {
15741
+ "name": "icon",
15742
+ "type": {
15743
+ "text": "string"
15744
+ },
15745
+ "fieldName": "icon"
15746
+ },
15456
15747
  {
15457
15748
  "name": "description",
15458
15749
  "type": {
@@ -18123,6 +18414,15 @@
18123
18414
  "default": "false",
18124
18415
  "attribute": "disabled"
18125
18416
  },
18417
+ {
18418
+ "kind": "field",
18419
+ "name": "size",
18420
+ "type": {
18421
+ "text": "'small' | 'medium' | 'large'"
18422
+ },
18423
+ "default": "'medium'",
18424
+ "attribute": "size"
18425
+ },
18126
18426
  {
18127
18427
  "kind": "field",
18128
18428
  "name": "getSymbol",
@@ -18409,6 +18709,14 @@
18409
18709
  "default": "false",
18410
18710
  "fieldName": "disabled"
18411
18711
  },
18712
+ {
18713
+ "name": "size",
18714
+ "type": {
18715
+ "text": "'small' | 'medium' | 'large'"
18716
+ },
18717
+ "default": "'medium'",
18718
+ "fieldName": "size"
18719
+ },
18412
18720
  {
18413
18721
  "name": "getSymbol",
18414
18722
  "type": {
@@ -25429,7 +25737,7 @@
25429
25737
  "package": {
25430
25738
  "name": "@kubex/zinc",
25431
25739
  "description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
25432
- "version": "1.0.7",
25740
+ "version": "1.0.8",
25433
25741
  "author": "",
25434
25742
  "license": "MIT"
25435
25743
  }
@@ -76,7 +76,7 @@
76
76
  },
77
77
  {
78
78
  "name": "zn-button",
79
- "description": "Buttons represent actions that are available to the user.\n---\n\n\n### **Events:**\n - **zn-blur** - Emitted when the button loses focus.\n- **zn-focus** - Emitted when the button gains focus.\n- **zn-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n\n### **Slots:**\n - _default_ - The button's label.\n- **prefix** - A presentational prefix icon or similar element.\n- **suffix** - A presentational suffix icon or similar element.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **prefix** - The container that wraps the prefix.\n- **label** - The button's label.\n- **suffix** - The container that wraps the suffix.\n- **caret** - The button's caret icon, an `<zn-icon>` element.\n- **spinner** - The spinner that shows when the button is in the loading state.",
79
+ "description": "Buttons represent actions that are available to the user.\n---\n\n\n### **Events:**\n - **zn-blur** - Emitted when the button loses focus.\n- **zn-focus** - Emitted when the button gains focus.\n- **zn-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n\n### **Slots:**\n - _default_ - The button's label.\n- **prefix** - A presentational prefix icon or similar element.\n- **suffix** - A presentational suffix icon or similar element.\n- **cancel** - Slot for custom cancel button/content when autoClick is active.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **prefix** - The container that wraps the prefix.\n- **label** - The button's label.\n- **suffix** - The container that wraps the suffix.\n- **caret** - The button's caret icon, an `<zn-icon>` element.\n- **spinner** - The spinner that shows when the button is in the loading state.",
80
80
  "attributes": [
81
81
  {
82
82
  "name": "color",
@@ -175,7 +175,19 @@
175
175
  "values": [{ "name": "modal" }, { "name": "slide" }]
176
176
  },
177
177
  { "name": "rel", "values": [] },
178
- { "name": "tooltip", "values": [] }
178
+ { "name": "tooltip", "values": [] },
179
+ { "name": "auto-click", "values": [] },
180
+ { "name": "auto-click-delay", "values": [] },
181
+ { "name": "loading-text", "values": [] },
182
+ {
183
+ "name": "loading-text-position",
184
+ "values": [
185
+ { "name": "left" },
186
+ { "name": "right" },
187
+ { "name": "center" }
188
+ ]
189
+ },
190
+ { "name": "loading", "values": [] }
179
191
  ],
180
192
  "references": [
181
193
  {
@@ -551,6 +563,7 @@
551
563
  { "name": "sender", "values": [] },
552
564
  { "name": "avatar", "values": [] },
553
565
  { "name": "outbound", "values": [] },
566
+ { "name": "no-collapse", "values": [] },
554
567
  { "name": "short", "values": [] },
555
568
  {
556
569
  "name": "default-display",
@@ -703,7 +716,9 @@
703
716
  { "name": "hide-checkboxes", "values": [] },
704
717
  { "name": "filters", "values": [{ "name": "[]" }] },
705
718
  { "name": "method", "values": [{ "name": "GET" }, { "name": "POST" }] },
706
- { "name": "no-initial-load", "values": [] }
719
+ { "name": "no-initial-load", "values": [] },
720
+ { "name": "group-by", "values": [] },
721
+ { "name": "groups", "values": [] }
707
722
  ],
708
723
  "references": [
709
724
  {
@@ -1183,6 +1198,7 @@
1183
1198
  { "name": "entity-id-show", "values": [] },
1184
1199
  { "name": "transparent", "values": [] },
1185
1200
  { "name": "caption", "values": [] },
1201
+ { "name": "icon", "values": [] },
1186
1202
  { "name": "description", "values": [] },
1187
1203
  { "name": "navigation", "values": [{ "name": "array" }] },
1188
1204
  { "name": "full-width", "values": [] },
@@ -1665,7 +1681,8 @@
1665
1681
  { "name": "color", "values": [{ "name": "typeof colors[number]" }] },
1666
1682
  { "name": "caption", "values": [] },
1667
1683
  { "name": "date", "values": [] },
1668
- { "name": "body", "values": [] }
1684
+ { "name": "body", "values": [] },
1685
+ { "name": "collapse-at-lines", "values": [] }
1669
1686
  ],
1670
1687
  "references": [
1671
1688
  { "name": "Documentation", "url": "https://zinc.style/components/note" }
@@ -1696,7 +1713,9 @@
1696
1713
  {
1697
1714
  "name": "zn-order-table",
1698
1715
  "description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
1699
- "attributes": [{ "name": "data", "values": [{ "name": "Object" }] }],
1716
+ "attributes": [
1717
+ { "name": "data", "values": [{ "name": "OrderTableData" }] }
1718
+ ],
1700
1719
  "references": [
1701
1720
  {
1702
1721
  "name": "Documentation",
@@ -1766,6 +1785,7 @@
1766
1785
  "attributes": [
1767
1786
  { "name": "basis-px", "values": [] },
1768
1787
  { "name": "caption", "values": [] },
1788
+ { "name": "icon", "values": [] },
1769
1789
  { "name": "description", "values": [] },
1770
1790
  { "name": "tabbed", "values": [] },
1771
1791
  { "name": "cosmic", "values": [] },
@@ -2131,6 +2151,14 @@
2131
2151
  { "name": "precision", "values": [] },
2132
2152
  { "name": "readonly", "values": [] },
2133
2153
  { "name": "disabled", "values": [] },
2154
+ {
2155
+ "name": "size",
2156
+ "values": [
2157
+ { "name": "small" },
2158
+ { "name": "medium" },
2159
+ { "name": "large" }
2160
+ ]
2161
+ },
2134
2162
  {
2135
2163
  "name": "getSymbol",
2136
2164
  "values": [{ "name": "(value: number) => string" }]