@kubex/zinc 1.0.116 → 1.0.118

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 (100) hide show
  1. package/dist/custom-elements.json +372 -234
  2. package/dist/vscode.html-custom-data.json +41 -46
  3. package/dist/web-types.json +94 -74
  4. package/dist/zn.d.ts +59 -11
  5. package/dist/zn.min.css +1 -1
  6. package/dist/zn.min.js +1090 -1081
  7. package/docs/_includes/default.njk +3 -4
  8. package/docs/assets/styles/docs.css +13 -13
  9. package/docs/pages/components/absolute-container.md +2 -2
  10. package/docs/pages/components/alert.md +5 -5
  11. package/docs/pages/components/audio-select.md +4 -4
  12. package/docs/pages/components/button-group.md +1 -31
  13. package/docs/pages/components/button.md +13 -12
  14. package/docs/pages/components/checkbox.md +4 -4
  15. package/docs/pages/components/chip.md +14 -14
  16. package/docs/pages/components/data-table.md +4 -4
  17. package/docs/pages/components/datepicker.md +5 -5
  18. package/docs/pages/components/dialog.md +2 -2
  19. package/docs/pages/components/file.md +81 -9
  20. package/docs/pages/components/header.md +4 -6
  21. package/docs/pages/components/hover-container.md +1 -1
  22. package/docs/pages/components/icon.md +14 -0
  23. package/docs/pages/components/inline-edit.md +4 -4
  24. package/docs/pages/components/item.md +2 -2
  25. package/docs/pages/components/menu.md +2 -2
  26. package/docs/pages/components/note.md +12 -12
  27. package/docs/pages/components/page.md +3 -3
  28. package/docs/pages/components/pagination.md +6 -6
  29. package/docs/pages/components/pane.md +3 -6
  30. package/docs/pages/components/panel.md +10 -12
  31. package/docs/pages/components/priority-list.md +3 -3
  32. package/docs/pages/components/radio-group.md +4 -4
  33. package/docs/pages/components/radio.md +4 -4
  34. package/docs/pages/components/scroll-container.md +10 -10
  35. package/docs/pages/components/select.md +5 -5
  36. package/docs/pages/components/split-button.md +4 -4
  37. package/docs/pages/components/tabs.md +3 -3
  38. package/docs/pages/components/tile.md +13 -13
  39. package/docs/pages/components/toggle.md +4 -4
  40. package/docs/pages/components/translations.md +5 -5
  41. package/docs/pages/components/vertical-stepper.md +3 -3
  42. package/docs/pages/components/well.md +19 -19
  43. package/docs/pages/getting-started/example-layout.md +16 -16
  44. package/docs/pages/getting-started/example-page.md +1 -3
  45. package/package.json +2 -1
  46. package/scss/_root.scss +87 -60
  47. package/scss/shared/_button.scss +6 -1
  48. package/scss/shared/_form-elements.scss +1 -0
  49. package/scss/shared/layout.scss +5 -4
  50. package/scss/themes/_dark.scss +4 -4
  51. package/scss/themes/_light.scss +70 -287
  52. package/src/components/bulk-actions/bulk-actions.component.ts +0 -1
  53. package/src/components/button/button.component.ts +40 -10
  54. package/src/components/button/button.scss +67 -103
  55. package/src/components/button-menu/button-menu.component.ts +2 -6
  56. package/src/components/collapsible/collapsible.scss +1 -1
  57. package/src/components/cols/cols.scss +1 -1
  58. package/src/components/content-block/content-block.component.ts +1 -2
  59. package/src/components/data-table/data-table.component.ts +4 -8
  60. package/src/components/data-table/data-table.test.ts +7 -0
  61. package/src/components/data-table-filter/data-table-filter.component.ts +1 -1
  62. package/src/components/data-table-sort/data-table-sort.component.ts +2 -2
  63. package/src/components/dialog/dialog.component.ts +0 -1
  64. package/src/components/editor/modules/dialog/dialog.component.ts +0 -1
  65. package/src/components/editor/modules/dialog/dialog.scss +1 -1
  66. package/src/components/editor/modules/toolbar/toolbar.component.ts +0 -1
  67. package/src/components/expanding-action/expanding-action.component.ts +0 -3
  68. package/src/components/expanding-action/expanding-action.scss +0 -5
  69. package/src/components/file/file.component.ts +158 -17
  70. package/src/components/file/file.scss +122 -29
  71. package/src/components/header/header.component.ts +2 -8
  72. package/src/components/header/header.scss +4 -25
  73. package/src/components/icon/icon.component.ts +80 -1
  74. package/src/components/icon/icon.scss +8 -0
  75. package/src/components/icon/icon.test.ts +24 -0
  76. package/src/components/icon-picker/icon-picker.component.ts +0 -1
  77. package/src/components/inline-edit/inline-edit.component.ts +3 -4
  78. package/src/components/input/input.scss +21 -6
  79. package/src/components/input-group/input-group.scss +2 -1
  80. package/src/components/markdown-editor/markdown-editor.component.ts +1 -5
  81. package/src/components/menu/menu.scss +1 -1
  82. package/src/components/menu-item/menu-item.scss +4 -4
  83. package/src/components/navbar/navbar.component.ts +20 -0
  84. package/src/components/navbar/navbar.scss +31 -17
  85. package/src/components/navbar/navbar.test.ts +72 -0
  86. package/src/components/note/note.component.ts +0 -1
  87. package/src/components/page/page.component.ts +7 -9
  88. package/src/components/page/page.scss +21 -17
  89. package/src/components/page/page.test.ts +1 -1
  90. package/src/components/page-nav/page-nav.scss +6 -6
  91. package/src/components/panel/panel.component.ts +3 -5
  92. package/src/components/panel/panel.scss +3 -3
  93. package/src/components/panel/panel.test.ts +14 -0
  94. package/src/components/query-builder/query-builder.component.ts +0 -1
  95. package/src/components/slideout/slideout.component.ts +0 -1
  96. package/src/components/sp/sp.scss +2 -2
  97. package/src/components/tabs/tabs.component.ts +1 -1
  98. package/src/components/tile/tile.scss +1 -1
  99. package/src/components/translation-group/translation-group.component.ts +0 -3
  100. package/src/components/translations/translations.component.ts +0 -3
@@ -1265,19 +1265,18 @@
1265
1265
  "kind": "field",
1266
1266
  "name": "color",
1267
1267
  "type": {
1268
- "text": "'default' | 'secondary' | 'error' | 'info' | 'success' | 'warning' |\n 'transparent' | 'star'"
1268
+ "text": "'default' | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning' |\n 'transparent' | 'star' | (string & Record<never, never>)"
1269
1269
  },
1270
1270
  "default": "'default'",
1271
1271
  "attribute": "color"
1272
1272
  },
1273
1273
  {
1274
1274
  "kind": "field",
1275
- "name": "size",
1275
+ "name": "hoverColor",
1276
1276
  "type": {
1277
- "text": "'content' | 'x-small' | 'small' | 'medium' | 'large'"
1277
+ "text": "string"
1278
1278
  },
1279
- "default": "'medium'",
1280
- "attribute": "size"
1279
+ "attribute": "hover-color"
1281
1280
  },
1282
1281
  {
1283
1282
  "kind": "field",
@@ -1324,6 +1323,15 @@
1324
1323
  "default": "false",
1325
1324
  "attribute": "square"
1326
1325
  },
1326
+ {
1327
+ "kind": "field",
1328
+ "name": "iconButton",
1329
+ "type": {
1330
+ "text": "boolean"
1331
+ },
1332
+ "default": "false",
1333
+ "attribute": "icon-button"
1334
+ },
1327
1335
  {
1328
1336
  "kind": "field",
1329
1337
  "name": "panelBackground",
@@ -1652,6 +1660,19 @@
1652
1660
  "name": "_isButton",
1653
1661
  "privacy": "private"
1654
1662
  },
1663
+ {
1664
+ "kind": "method",
1665
+ "name": "getIconButtonColor",
1666
+ "privacy": "private",
1667
+ "parameters": [
1668
+ {
1669
+ "name": "color",
1670
+ "type": {
1671
+ "text": "string | undefined"
1672
+ }
1673
+ }
1674
+ ]
1675
+ },
1655
1676
  {
1656
1677
  "kind": "method",
1657
1678
  "name": "setupAutoClick"
@@ -1688,18 +1709,17 @@
1688
1709
  {
1689
1710
  "name": "color",
1690
1711
  "type": {
1691
- "text": "'default' | 'secondary' | 'error' | 'info' | 'success' | 'warning' |\n 'transparent' | 'star'"
1712
+ "text": "'default' | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning' |\n 'transparent' | 'star' | (string & Record<never, never>)"
1692
1713
  },
1693
1714
  "default": "'default'",
1694
1715
  "fieldName": "color"
1695
1716
  },
1696
1717
  {
1697
- "name": "size",
1718
+ "name": "hover-color",
1698
1719
  "type": {
1699
- "text": "'content' | 'x-small' | 'small' | 'medium' | 'large'"
1720
+ "text": "string"
1700
1721
  },
1701
- "default": "'medium'",
1702
- "fieldName": "size"
1722
+ "fieldName": "hoverColor"
1703
1723
  },
1704
1724
  {
1705
1725
  "name": "text",
@@ -1741,6 +1761,14 @@
1741
1761
  "default": "false",
1742
1762
  "fieldName": "square"
1743
1763
  },
1764
+ {
1765
+ "name": "icon-button",
1766
+ "type": {
1767
+ "text": "boolean"
1768
+ },
1769
+ "default": "false",
1770
+ "fieldName": "iconButton"
1771
+ },
1744
1772
  {
1745
1773
  "name": "panel-bg",
1746
1774
  "type": {
@@ -2212,15 +2240,6 @@
2212
2240
  "default": "2",
2213
2241
  "attribute": "max-level"
2214
2242
  },
2215
- {
2216
- "kind": "field",
2217
- "name": "size",
2218
- "type": {
2219
- "text": "'content' | 'x-small' | 'small' | 'medium' | 'large'"
2220
- },
2221
- "default": "'medium'",
2222
- "attribute": "size"
2223
- },
2224
2243
  {
2225
2244
  "kind": "field",
2226
2245
  "name": "iconSize",
@@ -2404,14 +2423,6 @@
2404
2423
  "default": "2",
2405
2424
  "fieldName": "maxLevel"
2406
2425
  },
2407
- {
2408
- "name": "size",
2409
- "type": {
2410
- "text": "'content' | 'x-small' | 'small' | 'medium' | 'large'"
2411
- },
2412
- "default": "'medium'",
2413
- "fieldName": "size"
2414
- },
2415
2426
  {
2416
2427
  "name": "icon-size",
2417
2428
  "type": {
@@ -10966,12 +10977,28 @@
10966
10977
  "name": "droparea-background"
10967
10978
  },
10968
10979
  {
10969
- "description": "The container that wraps the icon for the drop zone.",
10970
- "name": "droparea-icon"
10980
+ "description": "The upload button shown in the droparea when no file is selected.",
10981
+ "name": "upload"
10971
10982
  },
10972
10983
  {
10973
- "description": "The text for the drop zone.",
10974
- "name": "droparea-value"
10984
+ "description": "The image preview rendered in the droparea for previewable files.",
10985
+ "name": "preview"
10986
+ },
10987
+ {
10988
+ "description": "The filename label rendered in the droparea for non-previewable files.",
10989
+ "name": "filename"
10990
+ },
10991
+ {
10992
+ "description": "The clear button rendered in the droparea when a file is present.",
10993
+ "name": "clear"
10994
+ },
10995
+ {
10996
+ "description": "The confirmation dialog shown before clearing the file.",
10997
+ "name": "clear-confirm"
10998
+ },
10999
+ {
11000
+ "description": "The current link anchor rendered when `show-link` is enabled.",
11001
+ "name": "link"
10975
11002
  },
10976
11003
  {
10977
11004
  "description": "The container that wraps the trigger.",
@@ -10987,16 +11014,21 @@
10987
11014
  "description": "Text that describes how to use the file control. Alternatively, you can use the `help-text` attribute.",
10988
11015
  "name": "help-text"
10989
11016
  },
10990
- {
10991
- "description": "Optional droparea icon to use instead of the default. Works best with `<zn-icon>`.",
10992
- "name": "droparea-icon"
10993
- },
10994
11017
  {
10995
11018
  "description": "Optional content to be used as trigger instead of the default content. Opening the file dialog on click and as well as drag and drop will work for this content. Following attributes will no longer work: *label*, *droparea*, *help-text*, *size*, *hide-value*. Also if using the disabled attribute, the disabled styling will not be applied and must be taken care of yourself.",
10996
11019
  "name": "trigger"
10997
11020
  }
10998
11021
  ],
10999
11022
  "members": [
11023
+ {
11024
+ "kind": "field",
11025
+ "name": "dependencies",
11026
+ "type": {
11027
+ "text": "object"
11028
+ },
11029
+ "static": true,
11030
+ "default": "{ 'zn-dialog': ZnDialog }"
11031
+ },
11000
11032
  {
11001
11033
  "kind": "field",
11002
11034
  "name": "formControlController",
@@ -11027,6 +11059,15 @@
11027
11059
  "privacy": "private",
11028
11060
  "default": "false"
11029
11061
  },
11062
+ {
11063
+ "kind": "field",
11064
+ "name": "fileObjectUrl",
11065
+ "type": {
11066
+ "text": "string | null"
11067
+ },
11068
+ "privacy": "private",
11069
+ "default": "null"
11070
+ },
11030
11071
  {
11031
11072
  "kind": "field",
11032
11073
  "name": "input",
@@ -11062,6 +11103,13 @@
11062
11103
  "text": "HTMLSpanElement"
11063
11104
  }
11064
11105
  },
11106
+ {
11107
+ "kind": "field",
11108
+ "name": "clearConfirmDialog",
11109
+ "type": {
11110
+ "text": "HTMLElement & { show: () => void; hide: () => void }"
11111
+ }
11112
+ },
11065
11113
  {
11066
11114
  "kind": "field",
11067
11115
  "name": "files",
@@ -11228,6 +11276,36 @@
11228
11276
  "description": "Suppress the value from being displayed in the file control",
11229
11277
  "attribute": "hide-value"
11230
11278
  },
11279
+ {
11280
+ "kind": "field",
11281
+ "name": "src",
11282
+ "type": {
11283
+ "text": "string"
11284
+ },
11285
+ "default": "''",
11286
+ "description": "URL of an already-uploaded file (e.g., from a CDN) to display as the current value\nwhen no file has been selected locally. If the URL points to an image, it is rendered\nas a preview inside the droparea. Otherwise the URL is shown as a filename.",
11287
+ "attribute": "src"
11288
+ },
11289
+ {
11290
+ "kind": "field",
11291
+ "name": "triggerSubmit",
11292
+ "type": {
11293
+ "text": "boolean"
11294
+ },
11295
+ "default": "false",
11296
+ "description": "When enabled, automatically submit the surrounding form whenever the value changes\n(file selected, dropped, or cleared). Useful for forms that only contain this control\nand a CSRF token.",
11297
+ "attribute": "trigger-submit"
11298
+ },
11299
+ {
11300
+ "kind": "field",
11301
+ "name": "showLink",
11302
+ "type": {
11303
+ "text": "boolean"
11304
+ },
11305
+ "default": "false",
11306
+ "description": "When enabled, render the current link (`previewSrc`) as a clickable URL below the control.\nUseful for showing the existing CDN link alongside the preview.",
11307
+ "attribute": "show-link"
11308
+ },
11231
11309
  {
11232
11310
  "kind": "field",
11233
11311
  "name": "validity",
@@ -11414,6 +11492,32 @@
11414
11492
  "privacy": "private",
11415
11493
  "description": "Remove a file from the list of files"
11416
11494
  },
11495
+ {
11496
+ "kind": "field",
11497
+ "name": "handleClearClick",
11498
+ "privacy": "private",
11499
+ "description": "Open the confirm dialog before clearing."
11500
+ },
11501
+ {
11502
+ "kind": "field",
11503
+ "name": "confirmClear",
11504
+ "privacy": "private",
11505
+ "description": "Clear the current value after the user confirms."
11506
+ },
11507
+ {
11508
+ "kind": "method",
11509
+ "name": "updatePreview",
11510
+ "privacy": "private"
11511
+ },
11512
+ {
11513
+ "kind": "field",
11514
+ "name": "previewSrc",
11515
+ "type": {
11516
+ "text": "string"
11517
+ },
11518
+ "description": "Returns the URL currently shown in the droparea — the locally-selected file's object URL\nif a file is selected, otherwise the externally supplied `src`. Useful for getting the\ncurrent CDN link to submit alongside form data.",
11519
+ "readonly": true
11520
+ },
11417
11521
  {
11418
11522
  "kind": "method",
11419
11523
  "name": "renderFileValueWithDelete",
@@ -11454,6 +11558,10 @@
11454
11558
  "description": "Emitted when an alteration to the control's value is committed by the user.",
11455
11559
  "name": "zn-change"
11456
11560
  },
11561
+ {
11562
+ "description": "Emitted when the user confirms clearing the selected file or `src`.",
11563
+ "name": "zn-clear"
11564
+ },
11457
11565
  {
11458
11566
  "description": "Emitted when multiple files are selected via drag and drop, without the `multiple` property being set.",
11459
11567
  "name": "zn-error"
@@ -11602,6 +11710,33 @@
11602
11710
  "default": "false",
11603
11711
  "description": "Suppress the value from being displayed in the file control",
11604
11712
  "fieldName": "hideValue"
11713
+ },
11714
+ {
11715
+ "name": "src",
11716
+ "type": {
11717
+ "text": "string"
11718
+ },
11719
+ "default": "''",
11720
+ "description": "URL of an already-uploaded file (e.g., from a CDN) to display as the current value\nwhen no file has been selected locally. If the URL points to an image, it is rendered\nas a preview inside the droparea. Otherwise the URL is shown as a filename.",
11721
+ "fieldName": "src"
11722
+ },
11723
+ {
11724
+ "name": "trigger-submit",
11725
+ "type": {
11726
+ "text": "boolean"
11727
+ },
11728
+ "default": "false",
11729
+ "description": "When enabled, automatically submit the surrounding form whenever the value changes\n(file selected, dropped, or cleared). Useful for forms that only contain this control\nand a CSRF token.",
11730
+ "fieldName": "triggerSubmit"
11731
+ },
11732
+ {
11733
+ "name": "show-link",
11734
+ "type": {
11735
+ "text": "boolean"
11736
+ },
11737
+ "default": "false",
11738
+ "description": "When enabled, render the current link (`previewSrc`) as a clickable URL below the control.\nUseful for showing the existing CDN link alongside the preview.",
11739
+ "fieldName": "showLink"
11605
11740
  }
11606
11741
  ],
11607
11742
  "superclass": {
@@ -11612,13 +11747,14 @@
11612
11747
  "tagNameWithoutPrefix": "file",
11613
11748
  "tagName": "zn-file",
11614
11749
  "customElement": true,
11615
- "jsDoc": "/**\n * @summary File controls allow selecting an arbitrary number of files for uploading.\n * @documentation https://zinc.style/components/drag-upload\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-button\n * @dependency zn-icon\n *\n * @slot label - The file control's label. Alternatively, you can use the `label` attribute.\n * @slot help-text - Text that describes how to use the file control.\n * Alternatively, you can use the `help-text` attribute.\n * @slot droparea-icon - Optional droparea icon to use instead of the default.\n * Works best with `<zn-icon>`.\n * @slot trigger - Optional content to be used as trigger instead of the default content.\n * Opening the file dialog on click and as well as drag and drop will work for this content.\n * Following attributes will no longer work: *label*, *droparea*, *help-text*, *size*,\n * *hide-value*. Also if using the disabled attribute, the disabled styling will not be\n * applied and must be taken care of yourself.\n *\n * @event zn-blur - Emitted when the control loses focus.\n * @event zn-change - Emitted when an alteration to the control's value is committed by the user.\n * @event zn-error - Emitted when multiple files are selected via drag and drop, without\n * the `multiple` property being set.\n * @event zn-focus - Emitted when the control gains focus.\n * @event zn-input - Emitted when the control receives input.\n *\n * @csspart form-control - The form control that wraps the label, input, and help text.\n * @csspart form-control-label - The label's wrapper.\n * @csspart form-control-input - The input's wrapper.\n * @csspart form-control-help-text - The help text's wrapper.\n * @csspart button-wrapper - The wrapper around the button and text value.\n * @csspart button - The zn-button acting as a file input.\n * @csspart button__base - The zn-button's exported `base` part.\n * @csspart value - The chosen files or placeholder text for the file input.\n * @csspart droparea - The element wrapping the drop zone.\n * @csspart droparea-background - The background of the drop zone.\n * @csspart droparea-icon - The container that wraps the icon for the drop zone.\n * @csspart droparea-value - The text for the drop zone.\n * @csspart trigger - The container that wraps the trigger.\n *\n * @animation file.iconDrop - The animation to use for the file icon\n * when a file is dropped\n * @animation file.text.disappear - The disappear animation to use for the file placeholder text\n * when a file is dropped\n * @animation file.text.appear - The appear animation to use for the file placeholder text\n * when a file is dropped\n */",
11750
+ "jsDoc": "/**\n * @summary File controls allow selecting an arbitrary number of files for uploading.\n * @documentation https://zinc.style/components/drag-upload\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-button\n * @dependency zn-icon\n * @dependency zn-dialog\n *\n * @slot label - The file control's label. Alternatively, you can use the `label` attribute.\n * @slot help-text - Text that describes how to use the file control.\n * Alternatively, you can use the `help-text` attribute.\n * @slot trigger - Optional content to be used as trigger instead of the default content.\n * Opening the file dialog on click and as well as drag and drop will work for this content.\n * Following attributes will no longer work: *label*, *droparea*, *help-text*, *size*,\n * *hide-value*. Also if using the disabled attribute, the disabled styling will not be\n * applied and must be taken care of yourself.\n *\n * @event zn-blur - Emitted when the control loses focus.\n * @event zn-change - Emitted when an alteration to the control's value is committed by the user.\n * @event zn-clear - Emitted when the user confirms clearing the selected file or `src`.\n * @event zn-error - Emitted when multiple files are selected via drag and drop, without\n * the `multiple` property being set.\n * @event zn-focus - Emitted when the control gains focus.\n * @event zn-input - Emitted when the control receives input.\n *\n * @csspart form-control - The form control that wraps the label, input, and help text.\n * @csspart form-control-label - The label's wrapper.\n * @csspart form-control-input - The input's wrapper.\n * @csspart form-control-help-text - The help text's wrapper.\n * @csspart button-wrapper - The wrapper around the button and text value.\n * @csspart button - The zn-button acting as a file input.\n * @csspart button__base - The zn-button's exported `base` part.\n * @csspart value - The chosen files or placeholder text for the file input.\n * @csspart droparea - The element wrapping the drop zone.\n * @csspart droparea-background - The background of the drop zone.\n * @csspart upload - The upload button shown in the droparea when no file is selected.\n * @csspart preview - The image preview rendered in the droparea for previewable files.\n * @csspart filename - The filename label rendered in the droparea for non-previewable files.\n * @csspart clear - The clear button rendered in the droparea when a file is present.\n * @csspart clear-confirm - The confirmation dialog shown before clearing the file.\n * @csspart link - The current link anchor rendered when `show-link` is enabled.\n * @csspart trigger - The container that wraps the trigger.\n *\n * @animation file.iconDrop - The animation to use for the file icon\n * when a file is dropped\n * @animation file.text.disappear - The disappear animation to use for the file placeholder text\n * when a file is dropped\n * @animation file.text.appear - The appear animation to use for the file placeholder text\n * when a file is dropped\n */",
11616
11751
  "documentation": "https://zinc.style/components/drag-upload",
11617
11752
  "status": "experimental",
11618
11753
  "since": "1.0",
11619
11754
  "dependencies": [
11620
11755
  "zn-button",
11621
- "zn-icon"
11756
+ "zn-icon",
11757
+ "zn-dialog"
11622
11758
  ],
11623
11759
  "animations": [
11624
11760
  {
@@ -12076,14 +12212,6 @@
12076
12212
  },
12077
12213
  "attribute": "icon"
12078
12214
  },
12079
- {
12080
- "kind": "field",
12081
- "name": "description",
12082
- "type": {
12083
- "text": "string"
12084
- },
12085
- "attribute": "description"
12086
- },
12087
12215
  {
12088
12216
  "kind": "field",
12089
12217
  "name": "navigation",
@@ -12197,13 +12325,6 @@
12197
12325
  },
12198
12326
  "fieldName": "icon"
12199
12327
  },
12200
- {
12201
- "name": "description",
12202
- "type": {
12203
- "text": "string"
12204
- },
12205
- "fieldName": "description"
12206
- },
12207
12328
  {
12208
12329
  "name": "navigation",
12209
12330
  "type": {
@@ -12805,6 +12926,79 @@
12805
12926
  }
12806
12927
  ]
12807
12928
  },
12929
+ {
12930
+ "kind": "method",
12931
+ "name": "renderLucideIcon",
12932
+ "privacy": "private"
12933
+ },
12934
+ {
12935
+ "kind": "method",
12936
+ "name": "getLucideIcon",
12937
+ "privacy": "private",
12938
+ "return": {
12939
+ "type": {
12940
+ "text": "IconNode | undefined"
12941
+ }
12942
+ },
12943
+ "parameters": [
12944
+ {
12945
+ "name": "src",
12946
+ "default": "''"
12947
+ }
12948
+ ]
12949
+ },
12950
+ {
12951
+ "kind": "method",
12952
+ "name": "toPascalCase",
12953
+ "privacy": "private",
12954
+ "parameters": [
12955
+ {
12956
+ "name": "input",
12957
+ "type": {
12958
+ "text": "string"
12959
+ }
12960
+ }
12961
+ ]
12962
+ },
12963
+ {
12964
+ "kind": "method",
12965
+ "name": "getLucideSvg",
12966
+ "privacy": "private",
12967
+ "parameters": [
12968
+ {
12969
+ "name": "icon",
12970
+ "type": {
12971
+ "text": "IconNode"
12972
+ }
12973
+ }
12974
+ ]
12975
+ },
12976
+ {
12977
+ "kind": "method",
12978
+ "name": "getSvgAttributes",
12979
+ "privacy": "private",
12980
+ "parameters": [
12981
+ {
12982
+ "name": "attrs",
12983
+ "type": {
12984
+ "text": "SVGProps"
12985
+ }
12986
+ }
12987
+ ]
12988
+ },
12989
+ {
12990
+ "kind": "method",
12991
+ "name": "escapeSvgAttribute",
12992
+ "privacy": "private",
12993
+ "parameters": [
12994
+ {
12995
+ "name": "value",
12996
+ "type": {
12997
+ "text": "string"
12998
+ }
12999
+ }
13000
+ ]
13001
+ },
12808
13002
  {
12809
13003
  "kind": "method",
12810
13004
  "name": "getColorForAvatar",
@@ -17052,18 +17246,6 @@
17052
17246
  "module": "components/panel/panel.js"
17053
17247
  }
17054
17248
  },
17055
- {
17056
- "kind": "field",
17057
- "name": "description",
17058
- "type": {
17059
- "text": "string"
17060
- },
17061
- "attribute": "description",
17062
- "inheritedFrom": {
17063
- "name": "ZnPanel",
17064
- "module": "components/panel/panel.js"
17065
- }
17066
- },
17067
17249
  {
17068
17250
  "kind": "field",
17069
17251
  "name": "tabbed",
@@ -17078,11 +17260,11 @@
17078
17260
  },
17079
17261
  {
17080
17262
  "kind": "field",
17081
- "name": "underlineHeader",
17263
+ "name": "headerBorderless",
17082
17264
  "type": {
17083
17265
  "text": "boolean"
17084
17266
  },
17085
- "attribute": "header-underline",
17267
+ "attribute": "header-borderless",
17086
17268
  "inheritedFrom": {
17087
17269
  "name": "ZnPanel",
17088
17270
  "module": "components/panel/panel.js"
@@ -17332,17 +17514,6 @@
17332
17514
  "module": "src/components/panel/panel.component.ts"
17333
17515
  }
17334
17516
  },
17335
- {
17336
- "name": "description",
17337
- "type": {
17338
- "text": "string"
17339
- },
17340
- "fieldName": "description",
17341
- "inheritedFrom": {
17342
- "name": "ZnPanel",
17343
- "module": "src/components/panel/panel.component.ts"
17344
- }
17345
- },
17346
17517
  {
17347
17518
  "name": "tabbed",
17348
17519
  "type": {
@@ -17355,11 +17526,11 @@
17355
17526
  }
17356
17527
  },
17357
17528
  {
17358
- "name": "header-underline",
17529
+ "name": "header-borderless",
17359
17530
  "type": {
17360
17531
  "text": "boolean"
17361
17532
  },
17362
- "fieldName": "underlineHeader",
17533
+ "fieldName": "headerBorderless",
17363
17534
  "inheritedFrom": {
17364
17535
  "name": "ZnPanel",
17365
17536
  "module": "src/components/panel/panel.component.ts"
@@ -18612,6 +18783,11 @@
18612
18783
  }
18613
18784
  }
18614
18785
  },
18786
+ {
18787
+ "kind": "method",
18788
+ "name": "_syncLastVisibleItem",
18789
+ "privacy": "private"
18790
+ },
18615
18791
  {
18616
18792
  "kind": "method",
18617
18793
  "name": "_getExpandableWidth",
@@ -22489,14 +22665,6 @@
22489
22665
  },
22490
22666
  "attribute": "icon"
22491
22667
  },
22492
- {
22493
- "kind": "field",
22494
- "name": "description",
22495
- "type": {
22496
- "text": "string"
22497
- },
22498
- "attribute": "description"
22499
- },
22500
22668
  {
22501
22669
  "kind": "field",
22502
22670
  "name": "tabbed",
@@ -22507,11 +22675,11 @@
22507
22675
  },
22508
22676
  {
22509
22677
  "kind": "field",
22510
- "name": "underlineHeader",
22678
+ "name": "headerBorderless",
22511
22679
  "type": {
22512
22680
  "text": "boolean"
22513
22681
  },
22514
- "attribute": "header-underline"
22682
+ "attribute": "header-borderless"
22515
22683
  },
22516
22684
  {
22517
22685
  "kind": "field",
@@ -22592,13 +22760,6 @@
22592
22760
  },
22593
22761
  "fieldName": "icon"
22594
22762
  },
22595
- {
22596
- "name": "description",
22597
- "type": {
22598
- "text": "string"
22599
- },
22600
- "fieldName": "description"
22601
- },
22602
22763
  {
22603
22764
  "name": "tabbed",
22604
22765
  "type": {
@@ -22607,11 +22768,11 @@
22607
22768
  "fieldName": "tabbed"
22608
22769
  },
22609
22770
  {
22610
- "name": "header-underline",
22771
+ "name": "header-borderless",
22611
22772
  "type": {
22612
22773
  "text": "boolean"
22613
22774
  },
22614
- "fieldName": "underlineHeader"
22775
+ "fieldName": "headerBorderless"
22615
22776
  },
22616
22777
  {
22617
22778
  "name": "cosmic",
@@ -31061,114 +31222,6 @@
31061
31222
  }
31062
31223
  ]
31063
31224
  },
31064
- {
31065
- "kind": "javascript-module",
31066
- "path": "components/tab/tab.js",
31067
- "declarations": [
31068
- {
31069
- "kind": "class",
31070
- "description": "",
31071
- "name": "ZnTab",
31072
- "slots": [
31073
- {
31074
- "description": "The tab panel content.",
31075
- "name": ""
31076
- }
31077
- ],
31078
- "members": [
31079
- {
31080
- "kind": "field",
31081
- "name": "caption",
31082
- "type": {
31083
- "text": "string"
31084
- },
31085
- "attribute": "caption"
31086
- },
31087
- {
31088
- "kind": "field",
31089
- "name": "priority",
31090
- "type": {
31091
- "text": "number"
31092
- },
31093
- "attribute": "priority"
31094
- },
31095
- {
31096
- "kind": "field",
31097
- "name": "uri",
31098
- "type": {
31099
- "text": "string"
31100
- },
31101
- "attribute": "uri"
31102
- },
31103
- {
31104
- "kind": "field",
31105
- "name": "selected",
31106
- "type": {
31107
- "text": "boolean"
31108
- },
31109
- "default": "false",
31110
- "description": "When present, zn-page opens this tab on load instead of the first tab.",
31111
- "attribute": "selected",
31112
- "reflects": true
31113
- }
31114
- ],
31115
- "attributes": [
31116
- {
31117
- "name": "caption",
31118
- "type": {
31119
- "text": "string"
31120
- },
31121
- "fieldName": "caption"
31122
- },
31123
- {
31124
- "name": "priority",
31125
- "type": {
31126
- "text": "number"
31127
- },
31128
- "fieldName": "priority"
31129
- },
31130
- {
31131
- "name": "uri",
31132
- "type": {
31133
- "text": "string"
31134
- },
31135
- "fieldName": "uri"
31136
- },
31137
- {
31138
- "name": "selected",
31139
- "type": {
31140
- "text": "boolean"
31141
- },
31142
- "default": "false",
31143
- "description": "When present, zn-page opens this tab on load instead of the first tab.",
31144
- "fieldName": "selected"
31145
- }
31146
- ],
31147
- "superclass": {
31148
- "name": "ZincElement",
31149
- "module": "/src/internal/zinc-element"
31150
- },
31151
- "summary": "Defines a tab panel for use inside zn-page.",
31152
- "tagNameWithoutPrefix": "tab",
31153
- "tagName": "zn-tab",
31154
- "customElement": true,
31155
- "jsDoc": "/**\n * @summary Defines a tab panel for use inside zn-page.\n * @documentation https://zinc.style/components/tab\n * @status experimental\n * @since 1.0\n *\n * @slot - The tab panel content.\n */",
31156
- "documentation": "https://zinc.style/components/tab",
31157
- "status": "experimental",
31158
- "since": "1.0"
31159
- }
31160
- ],
31161
- "exports": [
31162
- {
31163
- "kind": "js",
31164
- "name": "default",
31165
- "declaration": {
31166
- "name": "ZnTab",
31167
- "module": "components/tab/tab.js"
31168
- }
31169
- }
31170
- ]
31171
- },
31172
31225
  {
31173
31226
  "kind": "javascript-module",
31174
31227
  "path": "components/table/table.js",
@@ -31433,6 +31486,114 @@
31433
31486
  }
31434
31487
  ]
31435
31488
  },
31489
+ {
31490
+ "kind": "javascript-module",
31491
+ "path": "components/tab/tab.js",
31492
+ "declarations": [
31493
+ {
31494
+ "kind": "class",
31495
+ "description": "",
31496
+ "name": "ZnTab",
31497
+ "slots": [
31498
+ {
31499
+ "description": "The tab panel content.",
31500
+ "name": ""
31501
+ }
31502
+ ],
31503
+ "members": [
31504
+ {
31505
+ "kind": "field",
31506
+ "name": "caption",
31507
+ "type": {
31508
+ "text": "string"
31509
+ },
31510
+ "attribute": "caption"
31511
+ },
31512
+ {
31513
+ "kind": "field",
31514
+ "name": "priority",
31515
+ "type": {
31516
+ "text": "number"
31517
+ },
31518
+ "attribute": "priority"
31519
+ },
31520
+ {
31521
+ "kind": "field",
31522
+ "name": "uri",
31523
+ "type": {
31524
+ "text": "string"
31525
+ },
31526
+ "attribute": "uri"
31527
+ },
31528
+ {
31529
+ "kind": "field",
31530
+ "name": "selected",
31531
+ "type": {
31532
+ "text": "boolean"
31533
+ },
31534
+ "default": "false",
31535
+ "description": "When present, zn-page opens this tab on load instead of the first tab.",
31536
+ "attribute": "selected",
31537
+ "reflects": true
31538
+ }
31539
+ ],
31540
+ "attributes": [
31541
+ {
31542
+ "name": "caption",
31543
+ "type": {
31544
+ "text": "string"
31545
+ },
31546
+ "fieldName": "caption"
31547
+ },
31548
+ {
31549
+ "name": "priority",
31550
+ "type": {
31551
+ "text": "number"
31552
+ },
31553
+ "fieldName": "priority"
31554
+ },
31555
+ {
31556
+ "name": "uri",
31557
+ "type": {
31558
+ "text": "string"
31559
+ },
31560
+ "fieldName": "uri"
31561
+ },
31562
+ {
31563
+ "name": "selected",
31564
+ "type": {
31565
+ "text": "boolean"
31566
+ },
31567
+ "default": "false",
31568
+ "description": "When present, zn-page opens this tab on load instead of the first tab.",
31569
+ "fieldName": "selected"
31570
+ }
31571
+ ],
31572
+ "superclass": {
31573
+ "name": "ZincElement",
31574
+ "module": "/src/internal/zinc-element"
31575
+ },
31576
+ "summary": "Defines a tab panel for use inside zn-page.",
31577
+ "tagNameWithoutPrefix": "tab",
31578
+ "tagName": "zn-tab",
31579
+ "customElement": true,
31580
+ "jsDoc": "/**\n * @summary Defines a tab panel for use inside zn-page.\n * @documentation https://zinc.style/components/tab\n * @status experimental\n * @since 1.0\n *\n * @slot - The tab panel content.\n */",
31581
+ "documentation": "https://zinc.style/components/tab",
31582
+ "status": "experimental",
31583
+ "since": "1.0"
31584
+ }
31585
+ ],
31586
+ "exports": [
31587
+ {
31588
+ "kind": "js",
31589
+ "name": "default",
31590
+ "declaration": {
31591
+ "name": "ZnTab",
31592
+ "module": "components/tab/tab.js"
31593
+ }
31594
+ }
31595
+ ]
31596
+ },
31436
31597
  {
31437
31598
  "kind": "javascript-module",
31438
31599
  "path": "components/tabs/tabs.js",
@@ -34551,18 +34712,6 @@
34551
34712
  "module": "components/panel/panel.js"
34552
34713
  }
34553
34714
  },
34554
- {
34555
- "kind": "field",
34556
- "name": "description",
34557
- "type": {
34558
- "text": "string"
34559
- },
34560
- "attribute": "description",
34561
- "inheritedFrom": {
34562
- "name": "ZnPanel",
34563
- "module": "components/panel/panel.js"
34564
- }
34565
- },
34566
34715
  {
34567
34716
  "kind": "field",
34568
34717
  "name": "tabbed",
@@ -34577,11 +34726,11 @@
34577
34726
  },
34578
34727
  {
34579
34728
  "kind": "field",
34580
- "name": "underlineHeader",
34729
+ "name": "headerBorderless",
34581
34730
  "type": {
34582
34731
  "text": "boolean"
34583
34732
  },
34584
- "attribute": "header-underline",
34733
+ "attribute": "header-borderless",
34585
34734
  "inheritedFrom": {
34586
34735
  "name": "ZnPanel",
34587
34736
  "module": "components/panel/panel.js"
@@ -34730,17 +34879,6 @@
34730
34879
  "module": "src/components/panel/panel.component.ts"
34731
34880
  }
34732
34881
  },
34733
- {
34734
- "name": "description",
34735
- "type": {
34736
- "text": "string"
34737
- },
34738
- "fieldName": "description",
34739
- "inheritedFrom": {
34740
- "name": "ZnPanel",
34741
- "module": "src/components/panel/panel.component.ts"
34742
- }
34743
- },
34744
34882
  {
34745
34883
  "name": "tabbed",
34746
34884
  "type": {
@@ -34753,11 +34891,11 @@
34753
34891
  }
34754
34892
  },
34755
34893
  {
34756
- "name": "header-underline",
34894
+ "name": "header-borderless",
34757
34895
  "type": {
34758
34896
  "text": "boolean"
34759
34897
  },
34760
- "fieldName": "underlineHeader",
34898
+ "fieldName": "headerBorderless",
34761
34899
  "inheritedFrom": {
34762
34900
  "name": "ZnPanel",
34763
34901
  "module": "src/components/panel/panel.component.ts"
@@ -35562,7 +35700,7 @@
35562
35700
  "package": {
35563
35701
  "name": "@kubex/zinc",
35564
35702
  "description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
35565
- "version": "1.0.116",
35703
+ "version": "1.0.118",
35566
35704
  "author": "",
35567
35705
  "license": "MIT"
35568
35706
  }