@kubex/zinc 1.0.119 → 1.1.0

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 (98) hide show
  1. package/dist/custom-elements.json +453 -20
  2. package/dist/vscode.html-custom-data.json +87 -11
  3. package/dist/web-types.json +168 -12
  4. package/dist/zn.d.ts +149 -25
  5. package/dist/zn.min.css +1 -1
  6. package/dist/zn.min.js +911 -874
  7. package/docs/assets/styles/docs.css +1 -1
  8. package/docs/pages/components/button.md +25 -7
  9. package/docs/pages/components/chat-message.md +62 -0
  10. package/docs/pages/components/data-table-search.md +6 -6
  11. package/docs/pages/components/editor.md +1 -1
  12. package/docs/pages/components/file.md +1 -1
  13. package/docs/pages/components/form-group.md +1 -1
  14. package/docs/pages/components/icon.md +19 -2
  15. package/docs/pages/components/menu.md +23 -2
  16. package/docs/pages/components/select.md +2 -2
  17. package/docs/pages/components/tile-group.md +92 -0
  18. package/docs/pages/components/tile.md +80 -25
  19. package/package.json +1 -1
  20. package/scss/_root.scss +1 -1
  21. package/scss/mixins/_spacing-mixins.scss +20 -0
  22. package/scss/mixins/_typography-mixins.scss +22 -0
  23. package/scss/mixins/index.scss +2 -1
  24. package/scss/shared/_base.scss +18 -20
  25. package/scss/shared/_button.scss +5 -3
  26. package/scss/shared/_table.scss +4 -1
  27. package/scss/shared/layout.scss +2 -2
  28. package/scss/themes/_index.scss +2 -0
  29. package/scss/themes/_light.scss +22 -45
  30. package/scss/themes/_spacing.scss +44 -0
  31. package/scss/themes/_typography.scss +62 -0
  32. package/src/components/animated-button/README.md +1 -1
  33. package/src/components/button/button.component.ts +27 -5
  34. package/src/components/button/button.scss +86 -30
  35. package/src/components/button-menu/button-menu.component.ts +22 -9
  36. package/src/components/button-menu/button-menu.scss +1 -2
  37. package/src/components/button-menu/button-menu.test.ts +18 -0
  38. package/src/components/chat-message/chat-message.component.ts +73 -0
  39. package/src/components/chat-message/chat-message.scss +60 -0
  40. package/src/components/chat-message/index.ts +12 -0
  41. package/src/components/checkbox/checkbox.scss +2 -2
  42. package/src/components/chip/chip.component.ts +0 -5
  43. package/src/components/chip/chip.scss +14 -35
  44. package/src/components/content-block/content-block.component.ts +46 -45
  45. package/src/components/content-block/content-block.scss +58 -27
  46. package/src/components/data-table/data-table.scss +10 -7
  47. package/src/components/data-table-sort/data-table-sort.scss +1 -1
  48. package/src/components/dialog/dialog.component.ts +3 -3
  49. package/src/components/dialog/dialog.scss +2 -2
  50. package/src/components/dropdown/dropdown.component.ts +1 -0
  51. package/src/components/editor/editor.component.ts +3 -1
  52. package/src/components/editor/editor.scss +9 -2
  53. package/src/components/editor/modules/ai/panel/ai-panel.scss +2 -2
  54. package/src/components/editor/modules/ai/tooltip/ai-tooltip.scss +1 -1
  55. package/src/components/editor/modules/context-menu/context-menu.ts +20 -20
  56. package/src/components/editor/modules/dialog/dialog.component.ts +3 -4
  57. package/src/components/editor/modules/dialog/dialog.scss +2 -1
  58. package/src/components/editor/modules/dialog/dialog.ts +12 -8
  59. package/src/components/editor/modules/toolbar/tool/tool.component.ts +1 -5
  60. package/src/components/editor/modules/toolbar/toolbar.component.ts +54 -50
  61. package/src/components/editor/modules/toolbar/toolbar.scss +4 -29
  62. package/src/components/editor/modules/toolbar/toolbar.ts +15 -17
  63. package/src/components/expanding-action/expanding-action.component.ts +14 -7
  64. package/src/components/expanding-action/expanding-action.scss +44 -2
  65. package/src/components/file/file.scss +2 -2
  66. package/src/components/header/header.component.ts +1 -1
  67. package/src/components/header/header.scss +3 -3
  68. package/src/components/hover-container/hover-container.scss +1 -1
  69. package/src/components/icon/icon.component.ts +6 -1
  70. package/src/components/icon/icon.scss +31 -0
  71. package/src/components/icon-picker/icon-picker.scss +3 -3
  72. package/src/components/input/input.scss +3 -3
  73. package/src/components/input-group/input-group.scss +16 -16
  74. package/src/components/markdown-editor/markdown-editor.scss +2 -2
  75. package/src/components/menu/menu.component.ts +32 -1
  76. package/src/components/menu/menu.scss +28 -5
  77. package/src/components/menu-item/menu-item.component.ts +6 -2
  78. package/src/components/menu-item/menu-item.scss +49 -5
  79. package/src/components/navbar/navbar.component.ts +7 -4
  80. package/src/components/navbar/navbar.scss +93 -21
  81. package/src/components/page/page.component.ts +1 -1
  82. package/src/components/page/page.scss +7 -26
  83. package/src/components/panel/panel.scss +5 -8
  84. package/src/components/priority-list/priority-list.scss +1 -1
  85. package/src/components/rating/rating.scss +1 -1
  86. package/src/components/scroll-container/scroll-container.scss +2 -1
  87. package/src/components/select/select.scss +1 -1
  88. package/src/components/settings-container/settings-container.scss +2 -2
  89. package/src/components/stat/stat.scss +8 -5
  90. package/src/components/tile/tile.component.ts +10 -2
  91. package/src/components/tile/tile.scss +108 -67
  92. package/src/components/tile-group/index.ts +12 -0
  93. package/src/components/tile-group/tile-group.component.ts +66 -0
  94. package/src/components/tile-group/tile-group.scss +23 -0
  95. package/src/form-control.scss +2 -1
  96. package/src/wc.scss +1 -0
  97. package/src/zinc.ts +2 -0
  98. package/src/components/editor/modules/toolbar/tool/tool.scss +0 -5
@@ -1327,11 +1327,32 @@
1327
1327
  "kind": "field",
1328
1328
  "name": "iconButton",
1329
1329
  "type": {
1330
- "text": "boolean"
1330
+ "text": "boolean | 'small' | 'round'"
1331
1331
  },
1332
1332
  "default": "false",
1333
+ "description": "Renders the button as an icon button (40x36). Pass `small` for the\n36x36 variant or `round` for a 36x36 circle: `icon-button`,\n`icon-button=\"small\"` or `icon-button=\"round\"`.",
1333
1334
  "attribute": "icon-button"
1334
1335
  },
1336
+ {
1337
+ "kind": "field",
1338
+ "name": "plain",
1339
+ "type": {
1340
+ "text": "boolean"
1341
+ },
1342
+ "default": "false",
1343
+ "description": "With `icon-button`, removes the white background and border while\nkeeping the button's size.",
1344
+ "attribute": "plain"
1345
+ },
1346
+ {
1347
+ "kind": "field",
1348
+ "name": "noHover",
1349
+ "type": {
1350
+ "text": "boolean"
1351
+ },
1352
+ "default": "false",
1353
+ "description": "Disables the hover background, for contexts where the tint doesn't fit.",
1354
+ "attribute": "no-hover"
1355
+ },
1335
1356
  {
1336
1357
  "kind": "field",
1337
1358
  "name": "panelBackground",
@@ -1427,6 +1448,22 @@
1427
1448
  },
1428
1449
  "attribute": "icon-color"
1429
1450
  },
1451
+ {
1452
+ "kind": "field",
1453
+ "name": "iconFill",
1454
+ "type": {
1455
+ "text": "IconColor"
1456
+ },
1457
+ "attribute": "icon-fill"
1458
+ },
1459
+ {
1460
+ "kind": "field",
1461
+ "name": "iconLibrary",
1462
+ "type": {
1463
+ "text": "IconLibrary"
1464
+ },
1465
+ "attribute": "icon-library"
1466
+ },
1430
1467
  {
1431
1468
  "kind": "field",
1432
1469
  "name": "type",
@@ -1764,11 +1801,30 @@
1764
1801
  {
1765
1802
  "name": "icon-button",
1766
1803
  "type": {
1767
- "text": "boolean"
1804
+ "text": "boolean | 'small' | 'round'"
1768
1805
  },
1769
1806
  "default": "false",
1807
+ "description": "Renders the button as an icon button (40x36). Pass `small` for the\n36x36 variant or `round` for a 36x36 circle: `icon-button`,\n`icon-button=\"small\"` or `icon-button=\"round\"`.",
1770
1808
  "fieldName": "iconButton"
1771
1809
  },
1810
+ {
1811
+ "name": "plain",
1812
+ "type": {
1813
+ "text": "boolean"
1814
+ },
1815
+ "default": "false",
1816
+ "description": "With `icon-button`, removes the white background and border while\nkeeping the button's size.",
1817
+ "fieldName": "plain"
1818
+ },
1819
+ {
1820
+ "name": "no-hover",
1821
+ "type": {
1822
+ "text": "boolean"
1823
+ },
1824
+ "default": "false",
1825
+ "description": "Disables the hover background, for contexts where the tint doesn't fit.",
1826
+ "fieldName": "noHover"
1827
+ },
1772
1828
  {
1773
1829
  "name": "panel-bg",
1774
1830
  "type": {
@@ -1853,6 +1909,20 @@
1853
1909
  },
1854
1910
  "fieldName": "iconColor"
1855
1911
  },
1912
+ {
1913
+ "name": "icon-fill",
1914
+ "type": {
1915
+ "text": "IconColor"
1916
+ },
1917
+ "fieldName": "iconFill"
1918
+ },
1919
+ {
1920
+ "name": "icon-library",
1921
+ "type": {
1922
+ "text": "IconLibrary"
1923
+ },
1924
+ "fieldName": "iconLibrary"
1925
+ },
1856
1926
  {
1857
1927
  "name": "type",
1858
1928
  "type": {
@@ -2246,7 +2316,7 @@
2246
2316
  "type": {
2247
2317
  "text": "number"
2248
2318
  },
2249
- "default": "24",
2319
+ "default": "20",
2250
2320
  "attribute": "icon-size",
2251
2321
  "reflects": true
2252
2322
  },
@@ -2428,7 +2498,7 @@
2428
2498
  "type": {
2429
2499
  "text": "number"
2430
2500
  },
2431
- "default": "24",
2501
+ "default": "20",
2432
2502
  "fieldName": "iconSize"
2433
2503
  },
2434
2504
  {
@@ -2852,6 +2922,156 @@
2852
2922
  }
2853
2923
  ]
2854
2924
  },
2925
+ {
2926
+ "kind": "javascript-module",
2927
+ "path": "components/chat-message/chat-message.js",
2928
+ "declarations": [
2929
+ {
2930
+ "kind": "class",
2931
+ "description": "",
2932
+ "name": "ZnChatMessage",
2933
+ "cssProperties": [
2934
+ {
2935
+ "description": "The bubble's background colour.",
2936
+ "name": "--message-background"
2937
+ }
2938
+ ],
2939
+ "cssParts": [
2940
+ {
2941
+ "description": "The component's base wrapper.",
2942
+ "name": "base"
2943
+ },
2944
+ {
2945
+ "description": "The avatar column.",
2946
+ "name": "avatar"
2947
+ },
2948
+ {
2949
+ "description": "The header and bubble column.",
2950
+ "name": "body"
2951
+ },
2952
+ {
2953
+ "description": "The sender/time/badge row.",
2954
+ "name": "header"
2955
+ },
2956
+ {
2957
+ "description": "The message bubble.",
2958
+ "name": "bubble"
2959
+ },
2960
+ {
2961
+ "description": "The message content within the bubble.",
2962
+ "name": "content"
2963
+ }
2964
+ ],
2965
+ "slots": [
2966
+ {
2967
+ "description": "The message content.",
2968
+ "name": ""
2969
+ },
2970
+ {
2971
+ "description": "Rendered in the header after the sender and time (e.g. an INTERNAL NOTE chip).",
2972
+ "name": "badge"
2973
+ },
2974
+ {
2975
+ "description": "Action rendered at the end of the bubble (e.g. a remove icon button).",
2976
+ "name": "edit-dialog-trigger"
2977
+ },
2978
+ {
2979
+ "description": "Pass-through for an associated dialog element.",
2980
+ "name": "edit-dialog"
2981
+ }
2982
+ ],
2983
+ "members": [
2984
+ {
2985
+ "kind": "field",
2986
+ "name": "dependencies",
2987
+ "type": {
2988
+ "text": "object"
2989
+ },
2990
+ "static": true,
2991
+ "default": "{ 'zn-icon': ZnIcon }"
2992
+ },
2993
+ {
2994
+ "kind": "field",
2995
+ "name": "sender",
2996
+ "type": {
2997
+ "text": "string"
2998
+ },
2999
+ "default": "''",
3000
+ "description": "The sender's name, also used for the avatar initials.",
3001
+ "attribute": "sender"
3002
+ },
3003
+ {
3004
+ "kind": "field",
3005
+ "name": "time",
3006
+ "type": {
3007
+ "text": "string"
3008
+ },
3009
+ "default": "''",
3010
+ "description": "Unix timestamp (seconds) of the message, shown as HH:MM.",
3011
+ "attribute": "time"
3012
+ },
3013
+ {
3014
+ "kind": "method",
3015
+ "name": "getTime",
3016
+ "privacy": "private",
3017
+ "parameters": [
3018
+ {
3019
+ "name": "time",
3020
+ "type": {
3021
+ "text": "string"
3022
+ }
3023
+ }
3024
+ ]
3025
+ }
3026
+ ],
3027
+ "attributes": [
3028
+ {
3029
+ "name": "sender",
3030
+ "type": {
3031
+ "text": "string"
3032
+ },
3033
+ "default": "''",
3034
+ "description": "The sender's name, also used for the avatar initials.",
3035
+ "fieldName": "sender"
3036
+ },
3037
+ {
3038
+ "name": "time",
3039
+ "type": {
3040
+ "text": "string"
3041
+ },
3042
+ "default": "''",
3043
+ "description": "Unix timestamp (seconds) of the message, shown as HH:MM.",
3044
+ "fieldName": "time"
3045
+ }
3046
+ ],
3047
+ "superclass": {
3048
+ "name": "ZincElement",
3049
+ "module": "/src/internal/zinc-element"
3050
+ },
3051
+ "summary": "A single message in a chat-style conversation: avatar, sender,\ntime, optional badge, and a message bubble with optional actions.",
3052
+ "tagNameWithoutPrefix": "chat-message",
3053
+ "tagName": "zn-chat-message",
3054
+ "customElement": true,
3055
+ "jsDoc": "/**\n * @summary A single message in a chat-style conversation: avatar, sender,\n * time, optional badge, and a message bubble with optional actions.\n * @documentation https://zinc.style/components/chat-message\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-icon\n *\n * @slot - The message content.\n * @slot badge - Rendered in the header after the sender and time (e.g. an INTERNAL NOTE chip).\n * @slot edit-dialog-trigger - Action rendered at the end of the bubble (e.g. a remove icon button).\n * @slot edit-dialog - Pass-through for an associated dialog element.\n *\n * @csspart base - The component's base wrapper.\n * @csspart avatar - The avatar column.\n * @csspart body - The header and bubble column.\n * @csspart header - The sender/time/badge row.\n * @csspart bubble - The message bubble.\n * @csspart content - The message content within the bubble.\n *\n * @cssproperty --message-background - The bubble's background colour.\n */",
3056
+ "documentation": "https://zinc.style/components/chat-message",
3057
+ "status": "experimental",
3058
+ "since": "1.0",
3059
+ "dependencies": [
3060
+ "zn-icon"
3061
+ ]
3062
+ }
3063
+ ],
3064
+ "exports": [
3065
+ {
3066
+ "kind": "js",
3067
+ "name": "default",
3068
+ "declaration": {
3069
+ "name": "ZnChatMessage",
3070
+ "module": "components/chat-message/chat-message.js"
3071
+ }
3072
+ }
3073
+ ]
3074
+ },
2855
3075
  {
2856
3076
  "kind": "javascript-module",
2857
3077
  "path": "components/checkbox/checkbox.js",
@@ -4074,14 +4294,6 @@
4074
4294
  "default": "'neutral'",
4075
4295
  "attribute": "type"
4076
4296
  },
4077
- {
4078
- "kind": "field",
4079
- "name": "size",
4080
- "type": {
4081
- "text": "'small' | 'medium' | 'large'"
4082
- },
4083
- "attribute": "size"
4084
- },
4085
4297
  {
4086
4298
  "kind": "field",
4087
4299
  "name": "flush",
@@ -4159,13 +4371,6 @@
4159
4371
  "default": "'neutral'",
4160
4372
  "fieldName": "type"
4161
4373
  },
4162
- {
4163
- "name": "size",
4164
- "type": {
4165
- "text": "'small' | 'medium' | 'large'"
4166
- },
4167
- "fieldName": "size"
4168
- },
4169
4374
  {
4170
4375
  "name": "flush",
4171
4376
  "type": {
@@ -12801,6 +13006,15 @@
12801
13006
  "attribute": "color",
12802
13007
  "reflects": true
12803
13008
  },
13009
+ {
13010
+ "kind": "field",
13011
+ "name": "fill",
13012
+ "type": {
13013
+ "text": "IconColor"
13014
+ },
13015
+ "attribute": "fill",
13016
+ "reflects": true
13017
+ },
12804
13018
  {
12805
13019
  "kind": "field",
12806
13020
  "name": "padded",
@@ -13080,6 +13294,13 @@
13080
13294
  },
13081
13295
  "fieldName": "color"
13082
13296
  },
13297
+ {
13298
+ "name": "fill",
13299
+ "type": {
13300
+ "text": "IconColor"
13301
+ },
13302
+ "fieldName": "fill"
13303
+ },
13083
13304
  {
13084
13305
  "name": "padded",
13085
13306
  "type": {
@@ -17710,6 +17931,17 @@
17710
17931
  "default": "[]",
17711
17932
  "attribute": "actions"
17712
17933
  },
17934
+ {
17935
+ "kind": "field",
17936
+ "name": "variant",
17937
+ "type": {
17938
+ "text": "'default' | 'shell'"
17939
+ },
17940
+ "default": "'default'",
17941
+ "description": "The menu's visual style. `shell` renders the app-shell header dropdown\nlook: a padded panel with floating rounded items. Propagated to the\nmenu's items.",
17942
+ "attribute": "variant",
17943
+ "reflects": true
17944
+ },
17713
17945
  {
17714
17946
  "kind": "method",
17715
17947
  "name": "handleClick",
@@ -17754,6 +17986,12 @@
17754
17986
  "name": "handleSlotChange",
17755
17987
  "privacy": "private"
17756
17988
  },
17989
+ {
17990
+ "kind": "method",
17991
+ "name": "propagateVariant",
17992
+ "privacy": "private",
17993
+ "description": "Keeps slotted menu items in sync with the menu's variant."
17994
+ },
17757
17995
  {
17758
17996
  "kind": "method",
17759
17997
  "name": "isMenuItem",
@@ -17782,6 +18020,15 @@
17782
18020
  },
17783
18021
  "default": "[]",
17784
18022
  "fieldName": "actions"
18023
+ },
18024
+ {
18025
+ "name": "variant",
18026
+ "type": {
18027
+ "text": "'default' | 'shell'"
18028
+ },
18029
+ "default": "'default'",
18030
+ "description": "The menu's visual style. `shell` renders the app-shell header dropdown\nlook: a padded panel with floating rounded items. Propagated to the\nmenu's items.",
18031
+ "fieldName": "variant"
17785
18032
  }
17786
18033
  ],
17787
18034
  "superclass": {
@@ -17884,6 +18131,17 @@
17884
18131
  "description": "The type of menu item to render. To use `checked`, this value must be set to `checkbox`.",
17885
18132
  "attribute": "type"
17886
18133
  },
18134
+ {
18135
+ "kind": "field",
18136
+ "name": "variant",
18137
+ "type": {
18138
+ "text": "'default' | 'dropdown' | 'shell'"
18139
+ },
18140
+ "default": "'default'",
18141
+ "description": "The item's visual style. A standalone item defaults to navigation styling;\na parent zn-menu sets this to `dropdown` or `shell` automatically.",
18142
+ "attribute": "variant",
18143
+ "reflects": true
18144
+ },
17887
18145
  {
17888
18146
  "kind": "field",
17889
18147
  "name": "checked",
@@ -18140,6 +18398,15 @@
18140
18398
  "description": "The type of menu item to render. To use `checked`, this value must be set to `checkbox`.",
18141
18399
  "fieldName": "type"
18142
18400
  },
18401
+ {
18402
+ "name": "variant",
18403
+ "type": {
18404
+ "text": "'default' | 'dropdown' | 'shell'"
18405
+ },
18406
+ "default": "'default'",
18407
+ "description": "The item's visual style. A standalone item defaults to navigation styling;\na parent zn-menu sets this to `dropdown` or `shell` automatically.",
18408
+ "fieldName": "variant"
18409
+ },
18143
18410
  {
18144
18411
  "name": "checked",
18145
18412
  "type": {
@@ -18424,6 +18691,16 @@
18424
18691
  "attribute": "flush",
18425
18692
  "reflects": true
18426
18693
  },
18694
+ {
18695
+ "kind": "field",
18696
+ "name": "gutter",
18697
+ "type": {
18698
+ "text": "boolean"
18699
+ },
18700
+ "default": "false",
18701
+ "attribute": "gutter",
18702
+ "reflects": true
18703
+ },
18427
18704
  {
18428
18705
  "kind": "field",
18429
18706
  "name": "stacked",
@@ -18467,6 +18744,15 @@
18467
18744
  "default": "false",
18468
18745
  "attribute": "isolated"
18469
18746
  },
18747
+ {
18748
+ "kind": "field",
18749
+ "name": "color",
18750
+ "type": {
18751
+ "text": "string"
18752
+ },
18753
+ "attribute": "color",
18754
+ "reflects": true
18755
+ },
18470
18756
  {
18471
18757
  "kind": "field",
18472
18758
  "name": "masterId",
@@ -18922,6 +19208,14 @@
18922
19208
  "default": "false",
18923
19209
  "fieldName": "flush"
18924
19210
  },
19211
+ {
19212
+ "name": "gutter",
19213
+ "type": {
19214
+ "text": "boolean"
19215
+ },
19216
+ "default": "false",
19217
+ "fieldName": "gutter"
19218
+ },
18925
19219
  {
18926
19220
  "name": "stacked",
18927
19221
  "type": {
@@ -18960,6 +19254,13 @@
18960
19254
  "default": "false",
18961
19255
  "fieldName": "isolated"
18962
19256
  },
19257
+ {
19258
+ "name": "color",
19259
+ "type": {
19260
+ "text": "string"
19261
+ },
19262
+ "fieldName": "color"
19263
+ },
18963
19264
  {
18964
19265
  "name": "master-id",
18965
19266
  "type": {
@@ -33355,6 +33656,25 @@
33355
33656
  },
33356
33657
  "attribute": "inline"
33357
33658
  },
33659
+ {
33660
+ "kind": "field",
33661
+ "name": "plain",
33662
+ "type": {
33663
+ "text": "boolean"
33664
+ },
33665
+ "description": "Renders the caption in the normal table-content weight instead of bold.",
33666
+ "attribute": "plain"
33667
+ },
33668
+ {
33669
+ "kind": "field",
33670
+ "name": "grouped",
33671
+ "type": {
33672
+ "text": "boolean"
33673
+ },
33674
+ "description": "Set by `zn-tile-group` to lay the tile out as a shared-column subgrid row.",
33675
+ "attribute": "grouped",
33676
+ "reflects": true
33677
+ },
33358
33678
  {
33359
33679
  "kind": "method",
33360
33680
  "name": "_isLink",
@@ -33450,6 +33770,22 @@
33450
33770
  "text": "boolean"
33451
33771
  },
33452
33772
  "fieldName": "inline"
33773
+ },
33774
+ {
33775
+ "name": "plain",
33776
+ "type": {
33777
+ "text": "boolean"
33778
+ },
33779
+ "description": "Renders the caption in the normal table-content weight instead of bold.",
33780
+ "fieldName": "plain"
33781
+ },
33782
+ {
33783
+ "name": "grouped",
33784
+ "type": {
33785
+ "text": "boolean"
33786
+ },
33787
+ "description": "Set by `zn-tile-group` to lay the tile out as a shared-column subgrid row.",
33788
+ "fieldName": "grouped"
33453
33789
  }
33454
33790
  ],
33455
33791
  "superclass": {
@@ -33480,6 +33816,103 @@
33480
33816
  }
33481
33817
  ]
33482
33818
  },
33819
+ {
33820
+ "kind": "javascript-module",
33821
+ "path": "components/tile-group/tile-group.js",
33822
+ "declarations": [
33823
+ {
33824
+ "kind": "class",
33825
+ "description": "",
33826
+ "name": "ZnTileGroup",
33827
+ "cssProperties": [
33828
+ {
33829
+ "description": "The number of value/action columns (set automatically).",
33830
+ "name": "--zn-tile-cols"
33831
+ }
33832
+ ],
33833
+ "cssParts": [
33834
+ {
33835
+ "description": "The component's base wrapper (the grid container).",
33836
+ "name": "base"
33837
+ }
33838
+ ],
33839
+ "slots": [
33840
+ {
33841
+ "description": "One or more `zn-tile` elements.",
33842
+ "name": ""
33843
+ }
33844
+ ],
33845
+ "members": [
33846
+ {
33847
+ "kind": "field",
33848
+ "name": "divide",
33849
+ "type": {
33850
+ "text": "boolean"
33851
+ },
33852
+ "default": "false",
33853
+ "description": "Draws a dividing border between rows.",
33854
+ "attribute": "divide",
33855
+ "reflects": true
33856
+ },
33857
+ {
33858
+ "kind": "field",
33859
+ "name": "_mutationObserver",
33860
+ "type": {
33861
+ "text": "MutationObserver | null"
33862
+ },
33863
+ "privacy": "private",
33864
+ "default": "null"
33865
+ },
33866
+ {
33867
+ "kind": "field",
33868
+ "name": "_handleSlotChange",
33869
+ "privacy": "private"
33870
+ },
33871
+ {
33872
+ "kind": "method",
33873
+ "name": "_sync",
33874
+ "privacy": "private"
33875
+ }
33876
+ ],
33877
+ "attributes": [
33878
+ {
33879
+ "name": "divide",
33880
+ "type": {
33881
+ "text": "boolean"
33882
+ },
33883
+ "default": "false",
33884
+ "description": "Draws a dividing border between rows.",
33885
+ "fieldName": "divide"
33886
+ }
33887
+ ],
33888
+ "superclass": {
33889
+ "name": "ZincElement",
33890
+ "module": "/src/internal/zinc-element"
33891
+ },
33892
+ "summary": "Aligns a list of `zn-tile` rows into shared, content-driven columns so values\nand actions line up across every row, with optional dividing borders.",
33893
+ "tagNameWithoutPrefix": "tile-group",
33894
+ "tagName": "zn-tile-group",
33895
+ "customElement": true,
33896
+ "jsDoc": "/**\n * @summary Aligns a list of `zn-tile` rows into shared, content-driven columns so values\n * and actions line up across every row, with optional dividing borders.\n * @documentation https://zinc.style/components/tile-group\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-tile\n *\n * @slot - One or more `zn-tile` elements.\n *\n * @csspart base - The component's base wrapper (the grid container).\n *\n * @cssproperty --zn-tile-cols - The number of value/action columns (set automatically).\n */",
33897
+ "documentation": "https://zinc.style/components/tile-group",
33898
+ "status": "experimental",
33899
+ "since": "1.0",
33900
+ "dependencies": [
33901
+ "zn-tile"
33902
+ ]
33903
+ }
33904
+ ],
33905
+ "exports": [
33906
+ {
33907
+ "kind": "js",
33908
+ "name": "default",
33909
+ "declaration": {
33910
+ "name": "ZnTileGroup",
33911
+ "module": "components/tile-group/tile-group.js"
33912
+ }
33913
+ }
33914
+ ]
33915
+ },
33483
33916
  {
33484
33917
  "kind": "javascript-module",
33485
33918
  "path": "components/tile-property/tile-property.js",
@@ -35700,7 +36133,7 @@
35700
36133
  "package": {
35701
36134
  "name": "@kubex/zinc",
35702
36135
  "description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
35703
- "version": "1.0.119",
36136
+ "version": "1.1.0",
35704
36137
  "author": "",
35705
36138
  "license": "MIT"
35706
36139
  }