@solid-design-system/components 1.18.1 → 1.20.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 (107) hide show
  1. package/dist/components/es/button.js +1 -1
  2. package/dist/components/es/drawer.js +1 -1
  3. package/dist/components/es/form.js +1 -0
  4. package/dist/components/es/radio-group.js +1 -0
  5. package/dist/components/es/radio.js +1 -0
  6. package/dist/components/es/solid-components2.js +1 -1
  7. package/dist/components/es/solid-element.js +4 -4
  8. package/dist/components/es/video.js +1 -0
  9. package/dist/components/umd/solid-components.js +17 -17
  10. package/dist/custom-elements.json +1 -1
  11. package/dist/package/_components/button-group/button-group.d.ts +19 -0
  12. package/dist/package/_components/button-group/button-group.js +76 -0
  13. package/dist/package/_components/button-group/button-group.styles.d.ts +2 -0
  14. package/dist/package/_components/button-group/button-group.styles.js +6 -0
  15. package/dist/package/components/button/button.d.ts +5 -1
  16. package/dist/package/components/button/button.js +25 -3
  17. package/dist/package/components/radio/radio.d.ts +27 -0
  18. package/dist/package/components/radio/radio.js +130 -0
  19. package/dist/package/components/radio-group/radio-group.d.ts +52 -0
  20. package/dist/package/components/radio-group/radio-group.js +321 -0
  21. package/dist/package/components/video/video.d.ts +24 -0
  22. package/dist/package/components/video/video.js +117 -0
  23. package/dist/package/internal/form.d.ts +9 -3
  24. package/dist/package/internal/form.js +110 -49
  25. package/dist/package/internal/solid-element.d.ts +2 -0
  26. package/dist/package/solid-components.d.ts +3 -0
  27. package/dist/package/solid-components.js +12 -6
  28. package/dist/package/styles/tailwind.css.js +1 -1
  29. package/dist/versioned-components/es/accordion-group.js +1 -1
  30. package/dist/versioned-components/es/accordion.js +1 -1
  31. package/dist/versioned-components/es/badge.js +1 -1
  32. package/dist/versioned-components/es/brandshape.js +1 -1
  33. package/dist/versioned-components/es/button.js +1 -1
  34. package/dist/versioned-components/es/carousel-item.js +1 -1
  35. package/dist/versioned-components/es/carousel.js +3 -3
  36. package/dist/versioned-components/es/divider.js +1 -1
  37. package/dist/versioned-components/es/drawer.js +1 -1
  38. package/dist/versioned-components/es/dropdown.js +1 -1
  39. package/dist/versioned-components/es/form.js +1 -0
  40. package/dist/versioned-components/es/icon.js +1 -1
  41. package/dist/versioned-components/es/include.js +1 -1
  42. package/dist/versioned-components/es/link.js +1 -1
  43. package/dist/versioned-components/es/navigation-item.js +1 -1
  44. package/dist/versioned-components/es/popup.js +1 -1
  45. package/dist/versioned-components/es/radio-group.js +1 -0
  46. package/dist/versioned-components/es/radio.js +1 -0
  47. package/dist/versioned-components/es/solid-components2.js +1 -1
  48. package/dist/versioned-components/es/solid-element.js +4 -4
  49. package/dist/versioned-components/es/spinner.js +1 -1
  50. package/dist/versioned-components/es/tag.js +1 -1
  51. package/dist/versioned-components/es/teaser.js +1 -1
  52. package/dist/versioned-components/es/video.js +1 -0
  53. package/dist/versioned-package/_components/button-group/button-group.d.ts +19 -0
  54. package/dist/versioned-package/_components/button-group/button-group.js +76 -0
  55. package/dist/versioned-package/_components/button-group/button-group.styles.d.ts +2 -0
  56. package/dist/versioned-package/_components/button-group/button-group.styles.js +6 -0
  57. package/dist/versioned-package/components/accordion/accordion.d.ts +1 -1
  58. package/dist/versioned-package/components/accordion/accordion.js +2 -2
  59. package/dist/versioned-package/components/accordion-group/accordion-group.d.ts +1 -1
  60. package/dist/versioned-package/components/accordion-group/accordion-group.js +3 -3
  61. package/dist/versioned-package/components/badge/badge.d.ts +1 -1
  62. package/dist/versioned-package/components/badge/badge.js +1 -1
  63. package/dist/versioned-package/components/brandshape/brandshape.d.ts +1 -1
  64. package/dist/versioned-package/components/brandshape/brandshape.js +1 -1
  65. package/dist/versioned-package/components/button/button.d.ts +6 -2
  66. package/dist/versioned-package/components/button/button.js +29 -7
  67. package/dist/versioned-package/components/carousel/carousel.d.ts +1 -1
  68. package/dist/versioned-package/components/carousel/carousel.js +6 -6
  69. package/dist/versioned-package/components/carousel-item/carousel-item.d.ts +1 -1
  70. package/dist/versioned-package/components/carousel-item/carousel-item.js +1 -1
  71. package/dist/versioned-package/components/divider/divider.d.ts +1 -1
  72. package/dist/versioned-package/components/divider/divider.js +2 -2
  73. package/dist/versioned-package/components/drawer/drawer.d.ts +1 -1
  74. package/dist/versioned-package/components/drawer/drawer.js +2 -2
  75. package/dist/versioned-package/components/dropdown/dropdown.d.ts +1 -1
  76. package/dist/versioned-package/components/dropdown/dropdown.js +6 -6
  77. package/dist/versioned-package/components/icon/icon.d.ts +1 -1
  78. package/dist/versioned-package/components/icon/icon.js +1 -1
  79. package/dist/versioned-package/components/include/include.d.ts +1 -1
  80. package/dist/versioned-package/components/include/include.js +1 -1
  81. package/dist/versioned-package/components/link/link.d.ts +1 -1
  82. package/dist/versioned-package/components/link/link.js +2 -2
  83. package/dist/versioned-package/components/navigation-item/navigation-item.d.ts +1 -1
  84. package/dist/versioned-package/components/navigation-item/navigation-item.js +3 -3
  85. package/dist/versioned-package/components/popup/popup.d.ts +1 -1
  86. package/dist/versioned-package/components/popup/popup.js +1 -1
  87. package/dist/versioned-package/components/radio/radio.d.ts +27 -0
  88. package/dist/versioned-package/components/radio/radio.js +130 -0
  89. package/dist/versioned-package/components/radio-group/radio-group.d.ts +52 -0
  90. package/dist/versioned-package/components/radio-group/radio-group.js +321 -0
  91. package/dist/versioned-package/components/spinner/spinner.d.ts +1 -1
  92. package/dist/versioned-package/components/spinner/spinner.js +1 -1
  93. package/dist/versioned-package/components/tag/tag.d.ts +1 -1
  94. package/dist/versioned-package/components/tag/tag.js +2 -2
  95. package/dist/versioned-package/components/teaser/teaser.js +1 -1
  96. package/dist/versioned-package/components/video/video.d.ts +24 -0
  97. package/dist/versioned-package/components/video/video.js +117 -0
  98. package/dist/versioned-package/internal/form.d.ts +9 -3
  99. package/dist/versioned-package/internal/form.js +110 -49
  100. package/dist/versioned-package/internal/solid-element.d.ts +2 -0
  101. package/dist/versioned-package/solid-components.d.ts +3 -0
  102. package/dist/versioned-package/solid-components.js +12 -6
  103. package/dist/versioned-package/styles/tailwind.css.js +1 -1
  104. package/dist/versioned-styles/solid-styles.css +1 -1
  105. package/dist/vscode.html-custom-data.json +244 -20
  106. package/dist/web-types.json +1370 -380
  107. package/package.json +16 -9
@@ -111,7 +111,7 @@
111
111
  },
112
112
  {
113
113
  "name": "sd-button",
114
- "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.",
114
+ "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- **sd-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\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. Returns `true` when valid and `false` when invalid.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\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.",
115
115
  "attributes": [
116
116
  {
117
117
  "name": "title",
@@ -939,6 +939,96 @@
939
939
  ],
940
940
  "references": []
941
941
  },
942
+ {
943
+ "name": "sd-radio-group",
944
+ "description": "Radio groups are used to group multiple [radios](/components/radio) or [radio buttons](/components/radio-button) so they function as a single form control.\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-change** - Emitted when the radio group's selected value changes.\n- **sd-input** - Emitted when the radio group receives user input.\n- **sd-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n\n### **Methods:**\n - **checkValidity()** - Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\n- **reportValidity(): _boolean_** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **setCustomValidity(message)** - Sets a custom validation message. Pass an empty string to restore validity.\n\n### **Slots:**\n - _default_ - The default slot where `<sd-radio>` or `<sd-radio-button>` elements are placed.\n- **label** - The radio group's label. Required for proper accessibility. Alternatively, you can use the `label` attribute.\n\n### **CSS Parts:**\n - **form-control** - The form control that wraps the label, input, and error text.\n- **form-control-label** - The label's wrapper.\n- **form-control-input** - The input's wrapper.",
945
+ "attributes": [
946
+ {
947
+ "name": "label",
948
+ "description": "The radio group's label. Required for proper accessibility. If you need to display HTML, use the `label` slot\ninstead.",
949
+ "values": []
950
+ },
951
+ {
952
+ "name": "name",
953
+ "description": "The name of the radio group, submitted as a name/value pair with form data.",
954
+ "values": []
955
+ },
956
+ {
957
+ "name": "value",
958
+ "description": "The current value of the radio group, submitted as a name/value pair with form data.",
959
+ "values": []
960
+ },
961
+ {
962
+ "name": "size",
963
+ "description": "The radio group's size. This size will be applied to the label, all child radios and radio buttons.",
964
+ "values": [
965
+ {
966
+ "name": "lg"
967
+ },
968
+ {
969
+ "name": "sm"
970
+ }
971
+ ]
972
+ },
973
+ {
974
+ "name": "form",
975
+ "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
976
+ "values": []
977
+ },
978
+ {
979
+ "name": "required",
980
+ "description": "Ensures a child radio is checked before allowing the containing form to submit.",
981
+ "values": []
982
+ },
983
+ {
984
+ "name": "orientation",
985
+ "description": "The orientation property determines the alignment of the component's content or elements. It accepts two possible\nvalues: 'horizontal' and 'vertical'. The default value is 'vertical'.\nThis property allows you to control the visual layout and arrangement of elements within the component, providing\nflexibility in how the component is displayed based on your specific design needs.",
986
+ "values": [
987
+ {
988
+ "name": "horizontal"
989
+ },
990
+ {
991
+ "name": "vertical"
992
+ }
993
+ ]
994
+ }
995
+ ],
996
+ "references": []
997
+ },
998
+ {
999
+ "name": "sd-radio",
1000
+ "description": "A radio allows to select only one value from a set of options. Clicking on an unchecked radio will deselect the other one(s).\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-blur** - Emitted when the control loses focus.\n- **sd-focus** - Emitted when the control gains focus.\n\n### **Slots:**\n - _default_ - The radio's label.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **control--unchecked** - The radio control when the radio is unchecked.\n- **control--checked** - The radio control when the radio is checked.\n- **checked** - The dot inside the radio component when the radio is checked.\n- **label** - The container that wraps the radio's label.",
1001
+ "attributes": [
1002
+ {
1003
+ "name": "size",
1004
+ "description": "The radio's size.",
1005
+ "values": [
1006
+ {
1007
+ "name": "lg"
1008
+ },
1009
+ {
1010
+ "name": "sm"
1011
+ }
1012
+ ]
1013
+ },
1014
+ {
1015
+ "name": "invalid",
1016
+ "description": "A Boolean attribute which, if present, marks the radio Button valid or invalid",
1017
+ "values": []
1018
+ },
1019
+ {
1020
+ "name": "disabled",
1021
+ "description": "A Boolean attribute which, if present, disables the radio.",
1022
+ "values": []
1023
+ },
1024
+ {
1025
+ "name": "value",
1026
+ "description": "The radio's value. When selected, the radio group will receive this value.",
1027
+ "values": []
1028
+ }
1029
+ ],
1030
+ "references": []
1031
+ },
942
1032
  {
943
1033
  "name": "sd-spinner",
944
1034
  "description": "Spinners are used to show the progress of an indeterminate operation.\n\n\n---\n\n\n",
@@ -1061,7 +1151,29 @@
1061
1151
  "references": []
1062
1152
  },
1063
1153
  {
1064
- "name": "sd-1-18-1-accordion-group",
1154
+ "name": "sd-video",
1155
+ "description": "Used to wrap external video elements (e. g. from Moving Image or bare <video>-Tags) and provide some basic styling for Union Investment.\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-play** - Event emitted when clicking the `play-icon`. Listen for this event and use it to play the wrapped video.\n\n### **Slots:**\n - _default_ - The default slot used to pass a video player element.\n- **play-icon** - The video's play icon.\n- **poster** - Specifies an image to be shown before initial play of the wrapped video. Acts like the `poster` attribute on the native video tag.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **play-button** - The `<button>` element wrapper around the play-icon slot (full screen to field all click events).\n- **play-button-bg** - The `<div>` element wrapper around the play-button that defines the circular background.\n- **overlay** - The `<div>` element styled as an absolutely positioned transparent overlay.",
1156
+ "attributes": [
1157
+ {
1158
+ "name": "playing",
1159
+ "description": "Set to `true` to hide the play icon and the overlay.",
1160
+ "values": []
1161
+ },
1162
+ {
1163
+ "name": "overlay",
1164
+ "description": "Set to `true` to show a dark overlay. Only used when `playing` is `false`.",
1165
+ "values": []
1166
+ },
1167
+ {
1168
+ "name": "isBelowBreakpoint",
1169
+ "description": "Reactive property to trigger breakpoint re-renders.",
1170
+ "values": []
1171
+ }
1172
+ ],
1173
+ "references": []
1174
+ },
1175
+ {
1176
+ "name": "sd-1-20-0-accordion-group",
1065
1177
  "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.",
1066
1178
  "attributes": [
1067
1179
  {
@@ -1073,7 +1185,7 @@
1073
1185
  "references": []
1074
1186
  },
1075
1187
  {
1076
- "name": "sd-1-18-1-accordion",
1188
+ "name": "sd-1-20-0-accordion",
1077
1189
  "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 container that wraps the accordion content slot.\n- **content__slot** - The accordion content slot.",
1078
1190
  "attributes": [
1079
1191
  {
@@ -1090,7 +1202,7 @@
1090
1202
  "references": []
1091
1203
  },
1092
1204
  {
1093
- "name": "sd-1-18-1-badge",
1205
+ "name": "sd-1-20-0-badge",
1094
1206
  "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.",
1095
1207
  "attributes": [
1096
1208
  {
@@ -1132,7 +1244,7 @@
1132
1244
  "references": []
1133
1245
  },
1134
1246
  {
1135
- "name": "sd-1-18-1-brandshape",
1247
+ "name": "sd-1-20-0-brandshape",
1136
1248
  "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.",
1137
1249
  "attributes": [
1138
1250
  {
@@ -1169,8 +1281,8 @@
1169
1281
  "references": []
1170
1282
  },
1171
1283
  {
1172
- "name": "sd-1-18-1-button",
1173
- "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.",
1284
+ "name": "sd-1-20-0-button",
1285
+ "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- **sd-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\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. Returns `true` when valid and `false` when invalid.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\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.",
1174
1286
  "attributes": [
1175
1287
  {
1176
1288
  "name": "title",
@@ -1341,13 +1453,13 @@
1341
1453
  "references": []
1342
1454
  },
1343
1455
  {
1344
- "name": "sd-1-18-1-carousel-item",
1456
+ "name": "sd-1-20-0-carousel-item",
1345
1457
  "description": "A carousel item represent a slide within a [carousel](/components/carousel).\n\n\n---\n\n\n\n\n### **Slots:**\n - _default_ - The carousel item's content.",
1346
1458
  "attributes": [],
1347
1459
  "references": []
1348
1460
  },
1349
1461
  {
1350
- "name": "sd-1-18-1-carousel",
1462
+ "name": "sd-1-20-0-carousel",
1351
1463
  "description": "Carousels display an arbitrary number of content slides along a horizontal axis.\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-slide-change** - Emitted when the active slide changes.\n\n### **Methods:**\n - **previous(behavior: _ScrollBehavior_)** - Move the carousel backward by `slides-per-move` slides.\n- **next(behavior: _ScrollBehavior_)** - Move the carousel forward by `slides-per-move` slides.\n- **goToSlide(index: _number_, behavior: _ScrollBehavior_)** - Scrolls the carousel to the slide specified by `index`.\n\n### **Slots:**\n - _default_ - The carousel's main content, one or more `<sd-carousel-item>` elements.\n- **next-icon** - Optional next icon to use instead of the default. Works best with `<sd-icon>`.\n- **previous-icon** - Optional previous icon to use instead of the default. Works best with `<sd-icon>`.\n- **autoplay-start** - Optional start icon to use instead of the default. Works best with `<sd-icon>`.\n- **autoplay-pause** - Optional pause icon to use instead of the default. Works best with `<sd-icon>`.\n\n### **CSS Properties:**\n - **--slide-gap** - The space between each slide. _(default: undefined)_\n- **--scroll-hint** - The amount of padding to apply to the scroll area, allowing adjacent slides to become partially visible as a scroll hint. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The carousel's internal wrapper.\n- **scroll-container** - The scroll container that wraps the slides.\n- **controls** - A wrapper for the navigation and autoplay controller buttons.\n- **pagination-dot** - The pagination indicator in dot format.\n- **pagination-number** - The pagination indicator in number format.\n- **pagination-item** - The pagination indicator.\n- **pagination-item--active** - Applied when the item is active.\n- **navigation** - The navigation wrapper.\n- **navigation-button** - The navigation button.\n- **navigation-button--previous** - Applied to the previous button.\n- **navigation-button--next** - Applied to the next button.\n- **autoplay-controls** - A wrapper for pause/start button.",
1352
1464
  "attributes": [
1353
1465
  {
@@ -1391,7 +1503,7 @@
1391
1503
  "references": []
1392
1504
  },
1393
1505
  {
1394
- "name": "sd-1-18-1-divider",
1506
+ "name": "sd-1-20-0-divider",
1395
1507
  "description": "Dividers are used to visually separate or group elements.\n\n\n---\n\n\n",
1396
1508
  "attributes": [
1397
1509
  {
@@ -1415,7 +1527,7 @@
1415
1527
  "references": []
1416
1528
  },
1417
1529
  {
1418
- "name": "sd-1-18-1-drawer",
1530
+ "name": "sd-1-20-0-drawer",
1419
1531
  "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.",
1420
1532
  "attributes": [
1421
1533
  {
@@ -1454,7 +1566,7 @@
1454
1566
  "references": []
1455
1567
  },
1456
1568
  {
1457
- "name": "sd-1-18-1-dropdown",
1569
+ "name": "sd-1-20-0-dropdown",
1458
1570
  "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.",
1459
1571
  "attributes": [
1460
1572
  {
@@ -1551,7 +1663,7 @@
1551
1663
  "references": []
1552
1664
  },
1553
1665
  {
1554
- "name": "sd-1-18-1-icon",
1666
+ "name": "sd-1-20-0-icon",
1555
1667
  "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.",
1556
1668
  "attributes": [
1557
1669
  {
@@ -1593,7 +1705,7 @@
1593
1705
  "references": []
1594
1706
  },
1595
1707
  {
1596
- "name": "sd-1-18-1-include",
1708
+ "name": "sd-1-20-0-include",
1597
1709
  "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.",
1598
1710
  "attributes": [
1599
1711
  {
@@ -1625,7 +1737,7 @@
1625
1737
  "references": []
1626
1738
  },
1627
1739
  {
1628
- "name": "sd-1-18-1-link",
1740
+ "name": "sd-1-20-0-link",
1629
1741
  "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.",
1630
1742
  "attributes": [
1631
1743
  {
@@ -1685,7 +1797,7 @@
1685
1797
  "references": []
1686
1798
  },
1687
1799
  {
1688
- "name": "sd-1-18-1-navigation-item",
1800
+ "name": "sd-1-20-0-navigation-item",
1689
1801
  "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.",
1690
1802
  "attributes": [
1691
1803
  {
@@ -1775,7 +1887,7 @@
1775
1887
  "references": []
1776
1888
  },
1777
1889
  {
1778
- "name": "sd-1-18-1-popup",
1890
+ "name": "sd-1-20-0-popup",
1779
1891
  "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.",
1780
1892
  "attributes": [
1781
1893
  {
@@ -1999,7 +2111,97 @@
1999
2111
  "references": []
2000
2112
  },
2001
2113
  {
2002
- "name": "sd-1-18-1-spinner",
2114
+ "name": "sd-1-20-0-radio-group",
2115
+ "description": "Radio groups are used to group multiple [radios](/components/radio) or [radio buttons](/components/radio-button) so they function as a single form control.\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-change** - Emitted when the radio group's selected value changes.\n- **sd-input** - Emitted when the radio group receives user input.\n- **sd-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n\n### **Methods:**\n - **checkValidity()** - Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\n- **reportValidity(): _boolean_** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **setCustomValidity(message)** - Sets a custom validation message. Pass an empty string to restore validity.\n\n### **Slots:**\n - _default_ - The default slot where `<sd-radio>` or `<sd-radio-button>` elements are placed.\n- **label** - The radio group's label. Required for proper accessibility. Alternatively, you can use the `label` attribute.\n\n### **CSS Parts:**\n - **form-control** - The form control that wraps the label, input, and error text.\n- **form-control-label** - The label's wrapper.\n- **form-control-input** - The input's wrapper.",
2116
+ "attributes": [
2117
+ {
2118
+ "name": "label",
2119
+ "description": "The radio group's label. Required for proper accessibility. If you need to display HTML, use the `label` slot\ninstead.",
2120
+ "values": []
2121
+ },
2122
+ {
2123
+ "name": "name",
2124
+ "description": "The name of the radio group, submitted as a name/value pair with form data.",
2125
+ "values": []
2126
+ },
2127
+ {
2128
+ "name": "value",
2129
+ "description": "The current value of the radio group, submitted as a name/value pair with form data.",
2130
+ "values": []
2131
+ },
2132
+ {
2133
+ "name": "size",
2134
+ "description": "The radio group's size. This size will be applied to the label, all child radios and radio buttons.",
2135
+ "values": [
2136
+ {
2137
+ "name": "lg"
2138
+ },
2139
+ {
2140
+ "name": "sm"
2141
+ }
2142
+ ]
2143
+ },
2144
+ {
2145
+ "name": "form",
2146
+ "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
2147
+ "values": []
2148
+ },
2149
+ {
2150
+ "name": "required",
2151
+ "description": "Ensures a child radio is checked before allowing the containing form to submit.",
2152
+ "values": []
2153
+ },
2154
+ {
2155
+ "name": "orientation",
2156
+ "description": "The orientation property determines the alignment of the component's content or elements. It accepts two possible\nvalues: 'horizontal' and 'vertical'. The default value is 'vertical'.\nThis property allows you to control the visual layout and arrangement of elements within the component, providing\nflexibility in how the component is displayed based on your specific design needs.",
2157
+ "values": [
2158
+ {
2159
+ "name": "horizontal"
2160
+ },
2161
+ {
2162
+ "name": "vertical"
2163
+ }
2164
+ ]
2165
+ }
2166
+ ],
2167
+ "references": []
2168
+ },
2169
+ {
2170
+ "name": "sd-1-20-0-radio",
2171
+ "description": "A radio allows to select only one value from a set of options. Clicking on an unchecked radio will deselect the other one(s).\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-blur** - Emitted when the control loses focus.\n- **sd-focus** - Emitted when the control gains focus.\n\n### **Slots:**\n - _default_ - The radio's label.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **control--unchecked** - The radio control when the radio is unchecked.\n- **control--checked** - The radio control when the radio is checked.\n- **checked** - The dot inside the radio component when the radio is checked.\n- **label** - The container that wraps the radio's label.",
2172
+ "attributes": [
2173
+ {
2174
+ "name": "size",
2175
+ "description": "The radio's size.",
2176
+ "values": [
2177
+ {
2178
+ "name": "lg"
2179
+ },
2180
+ {
2181
+ "name": "sm"
2182
+ }
2183
+ ]
2184
+ },
2185
+ {
2186
+ "name": "invalid",
2187
+ "description": "A Boolean attribute which, if present, marks the radio Button valid or invalid",
2188
+ "values": []
2189
+ },
2190
+ {
2191
+ "name": "disabled",
2192
+ "description": "A Boolean attribute which, if present, disables the radio.",
2193
+ "values": []
2194
+ },
2195
+ {
2196
+ "name": "value",
2197
+ "description": "The radio's value. When selected, the radio group will receive this value.",
2198
+ "values": []
2199
+ }
2200
+ ],
2201
+ "references": []
2202
+ },
2203
+ {
2204
+ "name": "sd-1-20-0-spinner",
2003
2205
  "description": "Spinners are used to show the progress of an indeterminate operation.\n\n\n---\n\n\n",
2004
2206
  "attributes": [
2005
2207
  {
@@ -2021,7 +2223,7 @@
2021
2223
  "references": []
2022
2224
  },
2023
2225
  {
2024
- "name": "sd-1-18-1-tag",
2226
+ "name": "sd-1-20-0-tag",
2025
2227
  "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.",
2026
2228
  "attributes": [
2027
2229
  {
@@ -2083,7 +2285,7 @@
2083
2285
  "references": []
2084
2286
  },
2085
2287
  {
2086
- "name": "sd-1-18-1-teaser",
2288
+ "name": "sd-1-20-0-teaser",
2087
2289
  "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.",
2088
2290
  "attributes": [
2089
2291
  {
@@ -2118,6 +2320,28 @@
2118
2320
  }
2119
2321
  ],
2120
2322
  "references": []
2323
+ },
2324
+ {
2325
+ "name": "sd-1-20-0-video",
2326
+ "description": "Used to wrap external video elements (e. g. from Moving Image or bare <video>-Tags) and provide some basic styling for Union Investment.\n\n\n---\n\n\n\n\n### **Events:**\n - **sd-play** - Event emitted when clicking the `play-icon`. Listen for this event and use it to play the wrapped video.\n\n### **Slots:**\n - _default_ - The default slot used to pass a video player element.\n- **play-icon** - The video's play icon.\n- **poster** - Specifies an image to be shown before initial play of the wrapped video. Acts like the `poster` attribute on the native video tag.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **play-button** - The `<button>` element wrapper around the play-icon slot (full screen to field all click events).\n- **play-button-bg** - The `<div>` element wrapper around the play-button that defines the circular background.\n- **overlay** - The `<div>` element styled as an absolutely positioned transparent overlay.",
2327
+ "attributes": [
2328
+ {
2329
+ "name": "playing",
2330
+ "description": "Set to `true` to hide the play icon and the overlay.",
2331
+ "values": []
2332
+ },
2333
+ {
2334
+ "name": "overlay",
2335
+ "description": "Set to `true` to show a dark overlay. Only used when `playing` is `false`.",
2336
+ "values": []
2337
+ },
2338
+ {
2339
+ "name": "isBelowBreakpoint",
2340
+ "description": "Reactive property to trigger breakpoint re-renders.",
2341
+ "values": []
2342
+ }
2343
+ ],
2344
+ "references": []
2121
2345
  }
2122
2346
  ]
2123
2347
  }