@solid-design-system/components 1.14.3 → 1.15.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 (103) hide show
  1. package/dist/components/es/accordion-group.js +1 -1
  2. package/dist/components/es/accordion.js +1 -1
  3. package/dist/components/es/badge.js +1 -1
  4. package/dist/components/es/brandshape.js +1 -1
  5. package/dist/components/es/button.js +1 -1
  6. package/dist/components/es/divider.js +1 -1
  7. package/dist/components/es/drawer.js +1 -1
  8. package/dist/components/es/dropdown.js +1 -1
  9. package/dist/components/es/icon.js +3 -3
  10. package/dist/components/es/include.js +1 -1
  11. package/dist/components/es/link.js +1 -1
  12. package/dist/components/es/navigation-item.js +6 -0
  13. package/dist/components/es/popup.js +1 -1
  14. package/dist/components/es/register-custom-element.js +1 -0
  15. package/dist/components/es/solid-components2.js +1 -1
  16. package/dist/components/es/solid-element.js +3 -8
  17. package/dist/components/es/spinner.js +1 -1
  18. package/dist/components/es/tag.js +1 -1
  19. package/dist/components/es/teaser.js +1 -1
  20. package/dist/components/umd/solid-components.js +17 -18
  21. package/dist/custom-elements.json +1 -1
  22. package/dist/package/components/accordion/accordion.js +2 -1
  23. package/dist/package/components/accordion-group/accordion-group.js +2 -1
  24. package/dist/package/components/badge/badge.js +2 -1
  25. package/dist/package/components/brandshape/brandshape.js +2 -1
  26. package/dist/package/components/button/button.js +2 -1
  27. package/dist/package/components/divider/divider.js +2 -1
  28. package/dist/package/components/drawer/drawer.js +2 -1
  29. package/dist/package/components/dropdown/dropdown.js +2 -1
  30. package/dist/package/components/icon/icon.js +2 -1
  31. package/dist/package/components/include/include.js +2 -1
  32. package/dist/package/components/link/link.js +2 -1
  33. package/dist/package/components/navigation-item/navigation-item.d.ts +31 -0
  34. package/dist/package/components/navigation-item/navigation-item.js +166 -0
  35. package/dist/package/components/popup/popup.js +2 -1
  36. package/dist/package/components/spinner/spinner.js +2 -1
  37. package/dist/package/components/tag/tag.js +2 -1
  38. package/dist/package/components/teaser/teaser.js +2 -1
  39. package/dist/package/internal/register-custom-element.d.ts +19 -0
  40. package/dist/package/internal/register-custom-element.js +30 -0
  41. package/dist/package/solid-components.d.ts +1 -0
  42. package/dist/package/solid-components.js +10 -8
  43. package/dist/package/styles/tailwind.css.js +1 -1
  44. package/dist/versioned-components/es/accordion-group.js +1 -1
  45. package/dist/versioned-components/es/accordion.js +1 -1
  46. package/dist/versioned-components/es/badge.js +1 -1
  47. package/dist/versioned-components/es/brandshape.js +1 -1
  48. package/dist/versioned-components/es/button.js +1 -1
  49. package/dist/versioned-components/es/divider.js +1 -1
  50. package/dist/versioned-components/es/drawer.js +1 -1
  51. package/dist/versioned-components/es/dropdown.js +1 -1
  52. package/dist/versioned-components/es/icon.js +3 -3
  53. package/dist/versioned-components/es/include.js +1 -1
  54. package/dist/versioned-components/es/link.js +1 -1
  55. package/dist/versioned-components/es/navigation-item.js +6 -0
  56. package/dist/versioned-components/es/popup.js +1 -1
  57. package/dist/versioned-components/es/register-custom-element.js +1 -0
  58. package/dist/versioned-components/es/solid-components2.js +1 -1
  59. package/dist/versioned-components/es/solid-element.js +3 -8
  60. package/dist/versioned-components/es/spinner.js +1 -1
  61. package/dist/versioned-components/es/tag.js +1 -1
  62. package/dist/versioned-components/es/teaser.js +1 -1
  63. package/dist/versioned-package/components/accordion/accordion.d.ts +1 -1
  64. package/dist/versioned-package/components/accordion/accordion.js +4 -3
  65. package/dist/versioned-package/components/accordion-group/accordion-group.d.ts +1 -1
  66. package/dist/versioned-package/components/accordion-group/accordion-group.js +5 -4
  67. package/dist/versioned-package/components/badge/badge.d.ts +1 -1
  68. package/dist/versioned-package/components/badge/badge.js +3 -2
  69. package/dist/versioned-package/components/brandshape/brandshape.d.ts +1 -1
  70. package/dist/versioned-package/components/brandshape/brandshape.js +3 -2
  71. package/dist/versioned-package/components/button/button.d.ts +1 -1
  72. package/dist/versioned-package/components/button/button.js +6 -5
  73. package/dist/versioned-package/components/divider/divider.d.ts +1 -1
  74. package/dist/versioned-package/components/divider/divider.js +4 -3
  75. package/dist/versioned-package/components/drawer/drawer.d.ts +1 -1
  76. package/dist/versioned-package/components/drawer/drawer.js +4 -3
  77. package/dist/versioned-package/components/dropdown/dropdown.d.ts +1 -1
  78. package/dist/versioned-package/components/dropdown/dropdown.js +8 -7
  79. package/dist/versioned-package/components/icon/icon.d.ts +1 -1
  80. package/dist/versioned-package/components/icon/icon.js +3 -2
  81. package/dist/versioned-package/components/include/include.d.ts +1 -1
  82. package/dist/versioned-package/components/include/include.js +3 -2
  83. package/dist/versioned-package/components/link/link.d.ts +1 -1
  84. package/dist/versioned-package/components/link/link.js +4 -3
  85. package/dist/versioned-package/components/navigation-item/navigation-item.d.ts +31 -0
  86. package/dist/versioned-package/components/navigation-item/navigation-item.js +166 -0
  87. package/dist/versioned-package/components/popup/popup.d.ts +1 -1
  88. package/dist/versioned-package/components/popup/popup.js +3 -2
  89. package/dist/versioned-package/components/spinner/spinner.d.ts +1 -1
  90. package/dist/versioned-package/components/spinner/spinner.js +3 -2
  91. package/dist/versioned-package/components/tag/tag.d.ts +1 -1
  92. package/dist/versioned-package/components/tag/tag.js +4 -3
  93. package/dist/versioned-package/components/teaser/teaser.js +3 -2
  94. package/dist/versioned-package/internal/form.js +1 -1
  95. package/dist/versioned-package/internal/register-custom-element.d.ts +19 -0
  96. package/dist/versioned-package/internal/register-custom-element.js +30 -0
  97. package/dist/versioned-package/solid-components.d.ts +1 -0
  98. package/dist/versioned-package/solid-components.js +10 -8
  99. package/dist/versioned-package/styles/tailwind.css.js +1 -1
  100. package/dist/versioned-styles/solid-styles.css +1 -1
  101. package/dist/vscode.html-custom-data.json +195 -15
  102. package/dist/web-types.json +466 -16
  103. package/package.json +3 -3
@@ -575,6 +575,96 @@
575
575
  ],
576
576
  "references": []
577
577
  },
578
+ {
579
+ "name": "sd-navigation-item",
580
+ "description": "Flexible button / link component that can be used to quickly build navigations. Takes one of 3 forms: link (overrides all other if 'href' is provided), button (default), or accordion (if 'children' slot defined).\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-show** - Emitted when the navigation item has has children, no href, and is clicked while HTML details are hidden.\n- **sd-hide** - Emitted when the navigation item has has children, no href, and is clicked while HTML details are shown.\n\n### **Slots:**\n - _default_ - The navigation item's label.\n- **description** - *Vertical only: Slot used to provide a description for the navigation item.\n- **children** - Slot used to provide nested child navigation elements. If provided, details and summary elements will be used. A chevron will be shown on the right side regardless of the chevron property.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper including children.\n- **content** - The component's content excluding children.\n- **chevron** - The container that wraps the chevron.\n- **description** - The component's description area below its main content.\n- **divider** - The component's optional top divider.",
581
+ "attributes": [
582
+ {
583
+ "name": "href",
584
+ "description": "The navigation item's href target. If provided, the navigation item will use an anchor tag otherwise it will use a button tag. The 'children' slot and accordion behavior will be ignored if an 'href' is provided.",
585
+ "values": []
586
+ },
587
+ {
588
+ "name": "target",
589
+ "description": "Tells the browser where to open the link. Only used when `href` is defined.",
590
+ "values": [
591
+ {
592
+ "name": "_blank"
593
+ },
594
+ {
595
+ "name": "_parent"
596
+ },
597
+ {
598
+ "name": "_self"
599
+ },
600
+ {
601
+ "name": "_top"
602
+ }
603
+ ]
604
+ },
605
+ {
606
+ "name": "download",
607
+ "description": "Tells the browser to download the linked file as this filename. Only used when `href` is defined.",
608
+ "values": []
609
+ },
610
+ {
611
+ "name": "current",
612
+ "description": "Indicates that the navigation item is currently selected. The aria-current attribute is set to \"page\" on the host if true.",
613
+ "values": []
614
+ },
615
+ {
616
+ "name": "disabled",
617
+ "description": "Disables the navigation item.",
618
+ "values": []
619
+ },
620
+ {
621
+ "name": "size",
622
+ "description": "The navigation item's font size.",
623
+ "values": [
624
+ {
625
+ "name": "base"
626
+ },
627
+ {
628
+ "name": "lg"
629
+ },
630
+ {
631
+ "name": "sm"
632
+ }
633
+ ]
634
+ },
635
+ {
636
+ "name": "vertical",
637
+ "description": "The navigation item's orientation. If false, properties below this point are not used.",
638
+ "values": []
639
+ },
640
+ {
641
+ "name": "chevron",
642
+ "description": "Appends a chevron to the right side of a navigation item. Only used if `vertical` is true.",
643
+ "values": []
644
+ },
645
+ {
646
+ "name": "indented",
647
+ "description": "Adds additional padding to navigation item's left side. Only used if `vertical` is true.",
648
+ "values": []
649
+ },
650
+ {
651
+ "name": "relaxed",
652
+ "description": "Adds additional padding to navigation item's left and right sides. Only used if `vertical` is true.",
653
+ "values": []
654
+ },
655
+ {
656
+ "name": "divider",
657
+ "description": "Adds additional padding to navigation item's left and right sides. Only used if `vertical` is true.",
658
+ "values": []
659
+ },
660
+ {
661
+ "name": "open",
662
+ "description": "Reflects HTML details element state and allows control from parent. Only used if `vertical` is true, no `href`is undefined, and `children` is defined.",
663
+ "values": []
664
+ }
665
+ ],
666
+ "references": []
667
+ },
578
668
  {
579
669
  "name": "sd-popup",
580
670
  "description": "Popup is a utility that lets you declaratively anchor \"popup\" containers to another element.\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-reposition** - Emitted when the popup is repositioned. This event can fire a lot, so avoid putting expensive operations in your listener or consider debouncing it.\n\n### **Methods:**\n - **reposition()** - Forces the popup to recalculate and reposition itself.\n\n### **Slots:**\n - _default_ - The popup's content.\n- **anchor** - The element the popup will be anchored to. If the anchor lives outside of the popup, you can use the `anchor` attribute or property instead.\n\n### **CSS Properties:**\n - **--arrow-size** - The size of the arrow. Note that an arrow won't be shown unless the `arrow` attribute is used. _(default: 6px)_\n- **--arrow-color** - The color of the arrow. _(default: var(--sd-color-neutral-0))_\n- **--auto-size-available-width** - A read-only custom property that determines the amount of width the popup can be before overflowing. Useful for positioning child elements that need to overflow. This property is only available when using `auto-size`. _(default: undefined)_\n- **--auto-size-available-height** - A read-only custom property that determines the amount of height the popup can be before overflowing. Useful for positioning child elements that need to overflow. This property is only available when using `auto-size`. _(default: undefined)_\n\n### **CSS Parts:**\n - **arrow** - The arrow's container. Avoid setting `top|bottom|left|right` properties, as these values are assigned dynamically as the popup moves. This is most useful for applying a background color to match the popup, and maybe a border or box shadow.\n- **popup** - The popup's container. Useful for setting a background color, box shadow, etc.",
@@ -921,7 +1011,7 @@
921
1011
  "references": []
922
1012
  },
923
1013
  {
924
- "name": "sd-1-14-3-accordion-group",
1014
+ "name": "sd-1-15-0-accordion-group",
925
1015
  "description": "Short summary of the component's intended use.\n\n\n---\n\n\n\n\n### **Slots:**\n - _default_ - The default slot where `<sd-accordion>` elements are placed.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
926
1016
  "attributes": [
927
1017
  {
@@ -933,7 +1023,7 @@
933
1023
  "references": []
934
1024
  },
935
1025
  {
936
- "name": "sd-1-14-3-accordion",
1026
+ "name": "sd-1-15-0-accordion",
937
1027
  "description": "Accordion shows a brief summary and expands to show additional content.\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-show** - Emitted when the accordion opens.\n- **sd-after-show** - Emitted after the accordion opens and all animations are complete.\n- **sd-hide** - Emitted when the accordion closes.\n- **sd-after-hide** - Emitted after the accordion closes and all animations are complete.\n\n### **Methods:**\n - **show()** - Shows the accordion.\n- **hide()** - Hides the accordion\n\n### **Slots:**\n - _default_ - The accordion main content.\n- **summary** - The accordion summary. Alternatively, you can use the `summary` attribute.\n- **expand-icon** - Optional expand icon to use instead of the default. Works best with `<sd-icon>`.\n- **collapse-icon** - Optional collapse icon to use instead of the default. Works best with `<sd-icon>`.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **header** - The header that wraps both the summary and the expand/collapse icon.\n- **summary** - The container that wraps the summary.\n- **summary-icon** - The container that wraps the expand/collapse icons.\n- **content** - The accordion content.",
938
1028
  "attributes": [
939
1029
  {
@@ -950,7 +1040,7 @@
950
1040
  "references": []
951
1041
  },
952
1042
  {
953
- "name": "sd-1-14-3-badge",
1043
+ "name": "sd-1-15-0-badge",
954
1044
  "description": "Badges are used to draw attention and display statuses or counts.\n\n\n---\n\n\n\n\n### **Slots:**\n - _default_ - The badge's content.\n\n### **CSS Parts:**\n - **base** - The badge's base wrapper.\n- **content** - The badge's main content.",
955
1045
  "attributes": [
956
1046
  {
@@ -992,7 +1082,7 @@
992
1082
  "references": []
993
1083
  },
994
1084
  {
995
- "name": "sd-1-14-3-brandshape",
1085
+ "name": "sd-1-15-0-brandshape",
996
1086
  "description": "The Brandshape highlights a piece of content.\n\n\n---\n\n\n\n\n### **Slots:**\n - _default_ - The content inside the brandshape.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **content** - Middle content wrapper.\n- **shape-top** - Top shape.\n- **shape-middle** - Middle shape.\n- **shape-bottom** - Bottom shape.",
997
1087
  "attributes": [
998
1088
  {
@@ -1029,7 +1119,7 @@
1029
1119
  "references": []
1030
1120
  },
1031
1121
  {
1032
- "name": "sd-1-14-3-button",
1122
+ "name": "sd-1-15-0-button",
1033
1123
  "description": "Buttons represent actions that are available to the user.\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-blur** - Emitted when the button loses focus.\n- **sd-focus** - Emitted when the button gains focus.\n\n### **Methods:**\n - **click()** - Simulates a click on the button.\n- **focus(options: _FocusOptions_)** - Sets focus on the button.\n- **blur()** - Removes focus from the button.\n- **checkValidity()** - Checks for validity but does not show the browser's validation message.\n- **reportValidity()** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **setCustomValidity(message: _string_)** - Sets a custom validation message. Pass an empty string to restore validity.\n\n### **Slots:**\n - _default_ - The button's label.\n- **icon-left** - A prefix icon or similar element.\n- **icon-right** - A suffix icon or similar element.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **icon-left** - The container that wraps the left icon area.\n- **label** - The button's label.\n- **icon-right** - The container that wraps the right icon area.",
1034
1124
  "attributes": [
1035
1125
  {
@@ -1201,7 +1291,7 @@
1201
1291
  "references": []
1202
1292
  },
1203
1293
  {
1204
- "name": "sd-1-14-3-divider",
1294
+ "name": "sd-1-15-0-divider",
1205
1295
  "description": "Dividers are used to visually separate or group elements.\n\n\n---\n\n\n",
1206
1296
  "attributes": [
1207
1297
  {
@@ -1225,7 +1315,7 @@
1225
1315
  "references": []
1226
1316
  },
1227
1317
  {
1228
- "name": "sd-1-14-3-drawer",
1318
+ "name": "sd-1-15-0-drawer",
1229
1319
  "description": "Drawers slide in from a container to expose additional options and information.\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-show** - Emitted when the drawer opens.\n- **sd-after-show** - Emitted after the drawer opens and all animations are complete.\n- **sd-hide** - Emitted when the drawer closes.\n- **sd-after-hide** - Emitted after the drawer closes and all animations are complete.\n- **sd-initial-focus** - Emitted when the drawer opens and is ready to receive focus. Calling `event.preventDefault()` will prevent focusing and allow you to set it on a different element, such as an input.\n- **sd-request-close** - Emitted when the user attempts to close the drawer by clicking the close button, clicking the overlay, or pressing escape. Calling `event.preventDefault()` will keep the drawer open. Avoid using this unless closing the drawer will result in destructive behavior such as data loss.\n\n### **Methods:**\n - **show()** - Shows the drawer.\n- **hide()** - Hides the drawer\n\n### **Slots:**\n - _default_ - The drawer's main content.\n- **header** - The drawer's header, usually a title.\n- **footer** - The drawer's footer, usually one or more buttons representing various options.\n\n### **CSS Properties:**\n - **--width** - The preferred width of the drawer. depending on its `placement`. Note that the drawer will shrink to accommodate smaller screens. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **overlay** - The overlay that covers the screen behind the drawer.\n- **panel** - The drawer's panel (where the drawer and its content are rendered).\n- **header** - The drawer's header. This element wraps the title and the close-button.\n- **title** - The drawer's title.\n- **close-button** - The close button, an `<sd-button>`.\n- **body** - The drawer's body.\n- **footer** - The drawer's footer.",
1230
1320
  "attributes": [
1231
1321
  {
@@ -1264,7 +1354,7 @@
1264
1354
  "references": []
1265
1355
  },
1266
1356
  {
1267
- "name": "sd-1-14-3-dropdown",
1357
+ "name": "sd-1-15-0-dropdown",
1268
1358
  "description": "Dropdowns expose additional content that \"drops down\" in a panel.\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-show** - Emitted when the dropdown opens.\n- **sd-after-show** - Emitted after the dropdown opens and all animations are complete.\n- **sd-hide** - Emitted when the dropdown closes.\n- **sd-after-hide** - Emitted after the dropdown closes and all animations are complete.\n\n### **Methods:**\n - **show()** - Shows the dropdown panel.\n- **hide()** - Hides the dropdown panel\n- **reposition()** - Instructs the dropdown menu to reposition. Useful when the position or size of the trigger changes when the menu\nis activated.\n\n### **Slots:**\n - _default_ - The dropdown's main content.\n- **trigger** - The dropdown's trigger, usually a `<sd-button>` element.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **trigger** - The container that wraps the trigger.\n- **panel** - The panel that gets shown when the dropdown is open.",
1269
1359
  "attributes": [
1270
1360
  {
@@ -1361,7 +1451,7 @@
1361
1451
  "references": []
1362
1452
  },
1363
1453
  {
1364
- "name": "sd-1-14-3-icon",
1454
+ "name": "sd-1-15-0-icon",
1365
1455
  "description": "Icons are symbols that can be used to represent various options within an application.\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-load** - Emitted when the icon has loaded.\n- **sd-error** - Emitted when the icon fails to load due to an error.",
1366
1456
  "attributes": [
1367
1457
  {
@@ -1403,7 +1493,7 @@
1403
1493
  "references": []
1404
1494
  },
1405
1495
  {
1406
- "name": "sd-1-14-3-include",
1496
+ "name": "sd-1-15-0-include",
1407
1497
  "description": "Includes give you the power to embed external HTML files into the page.\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-load** - Emitted when the included file is loaded.\n- **sd-error** - Emitted when the included file fails to load due to an error.",
1408
1498
  "attributes": [
1409
1499
  {
@@ -1435,7 +1525,7 @@
1435
1525
  "references": []
1436
1526
  },
1437
1527
  {
1438
- "name": "sd-1-14-3-link",
1528
+ "name": "sd-1-15-0-link",
1439
1529
  "description": "A link component.\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-blur** - Emitted when the link loses focus.\n- **sd-focus** - Emitted when the link gains focus.\n\n### **Methods:**\n - **focus(options: _FocusOptions_)** - Sets focus on the button.\n- **blur()** - Removes focus from the button.\n\n### **Slots:**\n - _default_ - The default slot.\n- **icon-left** - The icon to display on the left side of the link.\n- **icon-right** - The icon to display on the right side of the link.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **icon-left** - The container that wraps the left icon area.\n- **label** - The link's label.\n- **icon-right** - The container that wraps the right icon area.",
1440
1530
  "attributes": [
1441
1531
  {
@@ -1495,7 +1585,97 @@
1495
1585
  "references": []
1496
1586
  },
1497
1587
  {
1498
- "name": "sd-1-14-3-popup",
1588
+ "name": "sd-1-15-0-navigation-item",
1589
+ "description": "Flexible button / link component that can be used to quickly build navigations. Takes one of 3 forms: link (overrides all other if 'href' is provided), button (default), or accordion (if 'children' slot defined).\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-show** - Emitted when the navigation item has has children, no href, and is clicked while HTML details are hidden.\n- **sd-hide** - Emitted when the navigation item has has children, no href, and is clicked while HTML details are shown.\n\n### **Slots:**\n - _default_ - The navigation item's label.\n- **description** - *Vertical only: Slot used to provide a description for the navigation item.\n- **children** - Slot used to provide nested child navigation elements. If provided, details and summary elements will be used. A chevron will be shown on the right side regardless of the chevron property.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper including children.\n- **content** - The component's content excluding children.\n- **chevron** - The container that wraps the chevron.\n- **description** - The component's description area below its main content.\n- **divider** - The component's optional top divider.",
1590
+ "attributes": [
1591
+ {
1592
+ "name": "href",
1593
+ "description": "The navigation item's href target. If provided, the navigation item will use an anchor tag otherwise it will use a button tag. The 'children' slot and accordion behavior will be ignored if an 'href' is provided.",
1594
+ "values": []
1595
+ },
1596
+ {
1597
+ "name": "target",
1598
+ "description": "Tells the browser where to open the link. Only used when `href` is defined.",
1599
+ "values": [
1600
+ {
1601
+ "name": "_blank"
1602
+ },
1603
+ {
1604
+ "name": "_parent"
1605
+ },
1606
+ {
1607
+ "name": "_self"
1608
+ },
1609
+ {
1610
+ "name": "_top"
1611
+ }
1612
+ ]
1613
+ },
1614
+ {
1615
+ "name": "download",
1616
+ "description": "Tells the browser to download the linked file as this filename. Only used when `href` is defined.",
1617
+ "values": []
1618
+ },
1619
+ {
1620
+ "name": "current",
1621
+ "description": "Indicates that the navigation item is currently selected. The aria-current attribute is set to \"page\" on the host if true.",
1622
+ "values": []
1623
+ },
1624
+ {
1625
+ "name": "disabled",
1626
+ "description": "Disables the navigation item.",
1627
+ "values": []
1628
+ },
1629
+ {
1630
+ "name": "size",
1631
+ "description": "The navigation item's font size.",
1632
+ "values": [
1633
+ {
1634
+ "name": "base"
1635
+ },
1636
+ {
1637
+ "name": "lg"
1638
+ },
1639
+ {
1640
+ "name": "sm"
1641
+ }
1642
+ ]
1643
+ },
1644
+ {
1645
+ "name": "vertical",
1646
+ "description": "The navigation item's orientation. If false, properties below this point are not used.",
1647
+ "values": []
1648
+ },
1649
+ {
1650
+ "name": "chevron",
1651
+ "description": "Appends a chevron to the right side of a navigation item. Only used if `vertical` is true.",
1652
+ "values": []
1653
+ },
1654
+ {
1655
+ "name": "indented",
1656
+ "description": "Adds additional padding to navigation item's left side. Only used if `vertical` is true.",
1657
+ "values": []
1658
+ },
1659
+ {
1660
+ "name": "relaxed",
1661
+ "description": "Adds additional padding to navigation item's left and right sides. Only used if `vertical` is true.",
1662
+ "values": []
1663
+ },
1664
+ {
1665
+ "name": "divider",
1666
+ "description": "Adds additional padding to navigation item's left and right sides. Only used if `vertical` is true.",
1667
+ "values": []
1668
+ },
1669
+ {
1670
+ "name": "open",
1671
+ "description": "Reflects HTML details element state and allows control from parent. Only used if `vertical` is true, no `href`is undefined, and `children` is defined.",
1672
+ "values": []
1673
+ }
1674
+ ],
1675
+ "references": []
1676
+ },
1677
+ {
1678
+ "name": "sd-1-15-0-popup",
1499
1679
  "description": "Popup is a utility that lets you declaratively anchor \"popup\" containers to another element.\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-reposition** - Emitted when the popup is repositioned. This event can fire a lot, so avoid putting expensive operations in your listener or consider debouncing it.\n\n### **Methods:**\n - **reposition()** - Forces the popup to recalculate and reposition itself.\n\n### **Slots:**\n - _default_ - The popup's content.\n- **anchor** - The element the popup will be anchored to. If the anchor lives outside of the popup, you can use the `anchor` attribute or property instead.\n\n### **CSS Properties:**\n - **--arrow-size** - The size of the arrow. Note that an arrow won't be shown unless the `arrow` attribute is used. _(default: 6px)_\n- **--arrow-color** - The color of the arrow. _(default: var(--sd-color-neutral-0))_\n- **--auto-size-available-width** - A read-only custom property that determines the amount of width the popup can be before overflowing. Useful for positioning child elements that need to overflow. This property is only available when using `auto-size`. _(default: undefined)_\n- **--auto-size-available-height** - A read-only custom property that determines the amount of height the popup can be before overflowing. Useful for positioning child elements that need to overflow. This property is only available when using `auto-size`. _(default: undefined)_\n\n### **CSS Parts:**\n - **arrow** - The arrow's container. Avoid setting `top|bottom|left|right` properties, as these values are assigned dynamically as the popup moves. This is most useful for applying a background color to match the popup, and maybe a border or box shadow.\n- **popup** - The popup's container. Useful for setting a background color, box shadow, etc.",
1500
1680
  "attributes": [
1501
1681
  {
@@ -1719,7 +1899,7 @@
1719
1899
  "references": []
1720
1900
  },
1721
1901
  {
1722
- "name": "sd-1-14-3-spinner",
1902
+ "name": "sd-1-15-0-spinner",
1723
1903
  "description": "Spinners are used to show the progress of an indeterminate operation.\n\n\n---\n\n\n",
1724
1904
  "attributes": [
1725
1905
  {
@@ -1741,7 +1921,7 @@
1741
1921
  "references": []
1742
1922
  },
1743
1923
  {
1744
- "name": "sd-1-14-3-tag",
1924
+ "name": "sd-1-15-0-tag",
1745
1925
  "description": "Tags are used as labels to organize things or to indicate a selection.\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-blur** - Emitted when the tag loses focus.\n- **sd-focus** - Emitted when the tag gains focus.\n\n### **Methods:**\n - **click()** - Simulates a click on the tag.\n- **focus(options: _FocusOptions_)** - Sets focus on the tag.\n- **blur()** - Removes focus from the tag.\n\n### **Slots:**\n - _default_ - The tag's content.\n- **removable-indicator** - The tag's removability indicator.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **content** - The tag's content.\n- **removable-indicator** - The tag's removability indicator.",
1746
1926
  "attributes": [
1747
1927
  {
@@ -1803,7 +1983,7 @@
1803
1983
  "references": []
1804
1984
  },
1805
1985
  {
1806
- "name": "sd-1-14-3-teaser",
1986
+ "name": "sd-1-15-0-teaser",
1807
1987
  "description": "Teasers group information into flexible containers so users can browse a collection of related items and actions.\n\n\n---\n\n\n\n\n### **Slots:**\n - _default_ - An optional main content slot.\n- **media** - An optional media slot.\n- **meta** - An optional meta slot.\n- **headline** - headline slot.\n\n### **CSS Properties:**\n - **--distribution-media** - The distribution ratio of the media. _(default: undefined)_\n- **--distribution-content** - The distribution ratio of the content. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **media** - The container that wraps the media.\n- **content** - The container that wraps the content.\n- **meta** - The container that wraps the meta.\n- **headline** - The container that wraps the headline.\n- **main** - The container that wraps the main content.",
1808
1988
  "attributes": [
1809
1989
  {