@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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "name": "@solid-design-system/components",
4
- "version": "1.18.1",
4
+ "version": "1.20.0",
5
5
  "description-markup": "markdown",
6
6
  "framework-config": {
7
7
  "enable-when": {
@@ -411,9 +411,19 @@
411
411
  "name": "formTarget",
412
412
  "description": "Used to override the form owner's `target` attribute.",
413
413
  "value": {
414
- "type": "'_self' | '_blank' | '_parent' | '_top' | string"
414
+ "type": "'_self' | '_blank' | '_parent' | '_top'"
415
415
  }
416
416
  },
417
+ {
418
+ "name": "validity",
419
+ "description": "Gets the validity state object",
420
+ "value": {}
421
+ },
422
+ {
423
+ "name": "validationMessage",
424
+ "description": "Gets the validation message",
425
+ "value": {}
426
+ },
417
427
  {
418
428
  "name": "handleBlur",
419
429
  "value": {}
@@ -426,6 +436,10 @@
426
436
  "name": "handleClick",
427
437
  "value": {}
428
438
  },
439
+ {
440
+ "name": "handleInvalid",
441
+ "value": {}
442
+ },
429
443
  {
430
444
  "name": "isButton",
431
445
  "value": {}
@@ -455,7 +469,12 @@
455
469
  },
456
470
  {
457
471
  "name": "checkValidity",
458
- "description": "Checks for validity but does not show the browser's validation message.",
472
+ "description": "Checks for validity but does not show the browser's validation message. Returns `true` when valid and `false` when invalid.",
473
+ "value": {}
474
+ },
475
+ {
476
+ "name": "getForm",
477
+ "description": "Gets the associated form, if one exists.",
459
478
  "value": {}
460
479
  },
461
480
  {
@@ -477,6 +496,10 @@
477
496
  {
478
497
  "name": "sd-focus",
479
498
  "description": "Emitted when the button gains focus."
499
+ },
500
+ {
501
+ "name": "sd-invalid",
502
+ "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
480
503
  }
481
504
  ]
482
505
  },
@@ -603,7 +626,7 @@
603
626
  "name": "formtarget",
604
627
  "description": "Used to override the form owner's `target` attribute.",
605
628
  "value": {
606
- "type": "'_self' | '_blank' | '_parent' | '_top' | string"
629
+ "type": "'_self' | '_blank' | '_parent' | '_top'"
607
630
  }
608
631
  }
609
632
  ]
@@ -2385,268 +2408,391 @@
2385
2408
  ]
2386
2409
  },
2387
2410
  {
2388
- "name": "sd-spinner",
2411
+ "name": "sd-radio-group",
2389
2412
  "description": "",
2390
- "doc-url": "https://solid.union-investment.com/[storybook-link]/spinner",
2413
+ "doc-url": "https://solid.union-investment.com/[storybook-link]/radio-group",
2391
2414
  "js": {
2392
2415
  "properties": [
2393
2416
  {
2394
- "name": "color",
2395
- "description": "The color color of the spinner.",
2417
+ "name": "dependencies",
2396
2418
  "value": {
2397
- "type": "'primary' | 'white' | 'currentColor'"
2419
+ "type": "object"
2398
2420
  }
2399
2421
  },
2400
2422
  {
2401
- "name": "localize",
2423
+ "name": "formControlController",
2402
2424
  "value": {}
2403
- }
2404
- ],
2405
- "events": []
2406
- },
2407
- "attributes": [
2408
- {
2409
- "name": "color",
2410
- "description": "The color color of the spinner.",
2411
- "value": {
2412
- "type": "'primary' | 'white' | 'currentColor'"
2413
- }
2414
- }
2415
- ]
2416
- },
2417
- {
2418
- "name": "sd-tag",
2419
- "description": "",
2420
- "doc-url": "https://solid.union-investment.com/[storybook-link]/tag",
2421
- "js": {
2422
- "properties": [
2425
+ },
2423
2426
  {
2424
- "name": "size",
2425
- "description": "The tag's size.",
2427
+ "name": "hasSlotController",
2428
+ "value": {}
2429
+ },
2430
+ {
2431
+ "name": "customValidityMessage",
2426
2432
  "value": {
2427
- "type": "'lg' | 'sm'"
2433
+ "type": "string"
2428
2434
  }
2429
2435
  },
2430
2436
  {
2431
- "name": "selected",
2432
- "description": "Displays the tag in a selected state.",
2437
+ "name": "validationTimeout",
2433
2438
  "value": {
2434
- "type": "boolean"
2439
+ "type": "number"
2435
2440
  }
2436
2441
  },
2437
2442
  {
2438
- "name": "removable",
2439
- "description": "Displays the tag with a removability indicator.",
2443
+ "name": "hasButtonGroup",
2440
2444
  "value": {
2441
2445
  "type": "boolean"
2442
2446
  }
2443
2447
  },
2444
2448
  {
2445
- "name": "disabled",
2446
- "description": "Displays the tag in a disabled state.",
2449
+ "name": "defaultValue",
2450
+ "value": {
2451
+ "type": "string"
2452
+ }
2453
+ },
2454
+ {
2455
+ "name": "invalid",
2456
+ "description": "A Boolean attribute which, if present, marks the radio valid or invalid. Please note that 'invalid' can only be used in conjunction with 'this.required'.",
2447
2457
  "value": {
2448
2458
  "type": "boolean"
2449
2459
  }
2450
2460
  },
2451
2461
  {
2452
- "name": "href",
2453
- "description": "When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.",
2462
+ "name": "errorText",
2463
+ "description": "The radio groups's error text. Use to display an error message below the component. Please note that 'error-text' can only be used in conjunction with 'this.required' and 'this.invalid'.",
2454
2464
  "value": {
2455
2465
  "type": "string"
2456
2466
  }
2457
2467
  },
2458
2468
  {
2459
- "name": "target",
2460
- "description": "Tells the browser where to open the link. Only used when `href` is present.",
2469
+ "name": "label",
2470
+ "description": "The radio group's label. Required for proper accessibility. If you need to display HTML, use the `label` slot\ninstead.",
2461
2471
  "value": {
2462
- "type": "'_blank' | '_parent' | '_self' | '_top'"
2472
+ "type": "string"
2463
2473
  }
2464
2474
  },
2465
2475
  {
2466
- "name": "download",
2467
- "description": "Tells the browser to download the linked file as this filename. Only used when `href` is present.",
2476
+ "name": "name",
2477
+ "description": "The name of the radio group, submitted as a name/value pair with form data.",
2468
2478
  "value": {
2469
- "type": "string | undefined"
2479
+ "type": "string"
2470
2480
  }
2471
2481
  },
2472
2482
  {
2473
- "name": "handleBlur",
2483
+ "name": "value",
2484
+ "description": "The current value of the radio group, submitted as a name/value pair with form data.",
2485
+ "value": {
2486
+ "type": "string"
2487
+ }
2488
+ },
2489
+ {
2490
+ "name": "size",
2491
+ "description": "The radio group's size. This size will be applied to the label, all child radios and radio buttons.",
2492
+ "value": {
2493
+ "type": "'lg' | 'sm'"
2494
+ }
2495
+ },
2496
+ {
2497
+ "name": "form",
2498
+ "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.",
2499
+ "value": {
2500
+ "type": "string"
2501
+ }
2502
+ },
2503
+ {
2504
+ "name": "required",
2505
+ "description": "Ensures a child radio is checked before allowing the containing form to submit.",
2506
+ "value": {
2507
+ "type": "boolean"
2508
+ }
2509
+ },
2510
+ {
2511
+ "name": "orientation",
2512
+ "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.",
2513
+ "value": {
2514
+ "type": "'horizontal' | 'vertical'"
2515
+ }
2516
+ },
2517
+ {
2518
+ "name": "validity",
2519
+ "description": "Gets the validity state object",
2474
2520
  "value": {}
2475
2521
  },
2476
2522
  {
2477
- "name": "handleFocus",
2523
+ "name": "validationMessage",
2524
+ "description": "Gets the validation message",
2478
2525
  "value": {}
2479
2526
  },
2480
2527
  {
2481
- "name": "isLink",
2528
+ "name": "getAllRadios",
2482
2529
  "value": {}
2483
2530
  },
2484
2531
  {
2485
- "name": "click",
2486
- "description": "Simulates a click on the tag.",
2532
+ "name": "handleRadioClick",
2487
2533
  "value": {}
2488
2534
  },
2489
2535
  {
2490
- "name": "focus",
2491
- "description": "Sets focus on the tag.",
2536
+ "name": "handleKeyDown",
2492
2537
  "value": {}
2493
2538
  },
2494
2539
  {
2495
- "name": "blur",
2496
- "description": "Removes focus from the tag.",
2540
+ "name": "handleLabelClick",
2541
+ "value": {}
2542
+ },
2543
+ {
2544
+ "name": "handleInvalid",
2545
+ "value": {}
2546
+ },
2547
+ {
2548
+ "name": "syncRadioElements",
2549
+ "value": {}
2550
+ },
2551
+ {
2552
+ "name": "syncRadios",
2553
+ "value": {}
2554
+ },
2555
+ {
2556
+ "name": "updateCheckedRadio",
2557
+ "value": {}
2558
+ },
2559
+ {
2560
+ "name": "handleSizeChange",
2561
+ "value": {}
2562
+ },
2563
+ {
2564
+ "name": "handleInvalidChange",
2565
+ "value": {}
2566
+ },
2567
+ {
2568
+ "name": "handleValueChange",
2569
+ "value": {}
2570
+ },
2571
+ {
2572
+ "name": "checkValidity",
2573
+ "description": "Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid.",
2574
+ "value": {}
2575
+ },
2576
+ {
2577
+ "name": "getForm",
2578
+ "description": "Gets the associated form, if one exists.",
2579
+ "value": {}
2580
+ },
2581
+ {
2582
+ "name": "reportValidity",
2583
+ "description": "Checks for validity and shows the browser's validation message if the control is invalid.",
2584
+ "value": {}
2585
+ },
2586
+ {
2587
+ "name": "setCustomValidity",
2588
+ "description": "Sets a custom validation message. Pass an empty string to restore validity.",
2497
2589
  "value": {}
2498
2590
  }
2499
2591
  ],
2500
2592
  "events": [
2501
2593
  {
2502
- "name": "sd-blur",
2503
- "description": "Emitted when the tag loses focus."
2594
+ "name": "sd-change",
2595
+ "description": "Emitted when the radio group's selected value changes."
2504
2596
  },
2505
2597
  {
2506
- "name": "sd-focus",
2507
- "description": "Emitted when the tag gains focus."
2598
+ "name": "sd-input",
2599
+ "description": "Emitted when the radio group receives user input."
2600
+ },
2601
+ {
2602
+ "name": "sd-invalid",
2603
+ "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
2508
2604
  }
2509
2605
  ]
2510
2606
  },
2511
2607
  "attributes": [
2512
2608
  {
2513
- "name": "size",
2514
- "description": "The tag's size.",
2609
+ "name": "label",
2610
+ "description": "The radio group's label. Required for proper accessibility. If you need to display HTML, use the `label` slot\ninstead.",
2515
2611
  "value": {
2516
- "type": "'lg' | 'sm'"
2612
+ "type": "string"
2517
2613
  }
2518
2614
  },
2519
2615
  {
2520
- "name": "selected",
2521
- "description": "Displays the tag in a selected state.",
2616
+ "name": "name",
2617
+ "description": "The name of the radio group, submitted as a name/value pair with form data.",
2522
2618
  "value": {
2523
- "type": "boolean"
2619
+ "type": "string"
2524
2620
  }
2525
2621
  },
2526
2622
  {
2527
- "name": "removable",
2528
- "description": "Displays the tag with a removability indicator.",
2623
+ "name": "value",
2624
+ "description": "The current value of the radio group, submitted as a name/value pair with form data.",
2529
2625
  "value": {
2530
- "type": "boolean"
2626
+ "type": "string"
2531
2627
  }
2532
2628
  },
2533
2629
  {
2534
- "name": "disabled",
2535
- "description": "Displays the tag in a disabled state.",
2630
+ "name": "size",
2631
+ "description": "The radio group's size. This size will be applied to the label, all child radios and radio buttons.",
2536
2632
  "value": {
2537
- "type": "boolean"
2633
+ "type": "'lg' | 'sm'"
2538
2634
  }
2539
2635
  },
2540
2636
  {
2541
- "name": "href",
2542
- "description": "When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.",
2637
+ "name": "form",
2638
+ "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.",
2543
2639
  "value": {
2544
2640
  "type": "string"
2545
2641
  }
2546
2642
  },
2547
2643
  {
2548
- "name": "target",
2549
- "description": "Tells the browser where to open the link. Only used when `href` is present.",
2644
+ "name": "required",
2645
+ "description": "Ensures a child radio is checked before allowing the containing form to submit.",
2550
2646
  "value": {
2551
- "type": "'_blank' | '_parent' | '_self' | '_top'"
2647
+ "type": "boolean"
2552
2648
  }
2553
2649
  },
2554
2650
  {
2555
- "name": "download",
2556
- "description": "Tells the browser to download the linked file as this filename. Only used when `href` is present.",
2651
+ "name": "orientation",
2652
+ "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.",
2557
2653
  "value": {
2558
- "type": "string | undefined"
2654
+ "type": "'horizontal' | 'vertical'"
2559
2655
  }
2560
2656
  }
2561
2657
  ]
2562
2658
  },
2563
2659
  {
2564
- "name": "sd-teaser",
2660
+ "name": "sd-radio",
2565
2661
  "description": "",
2566
- "doc-url": "https://solid.union-investment.com/[storybook-link]/teaser",
2662
+ "doc-url": "https://solid.union-investment.com/[storybook-link]/radio",
2567
2663
  "js": {
2568
2664
  "properties": [
2569
2665
  {
2570
- "name": "variant",
2666
+ "name": "checked",
2667
+ "description": "A Boolean attribute which, if present, indicates that this radio button is the default check one in the group.",
2571
2668
  "value": {
2572
- "type": "'white' | 'white border-neutral-300' | 'neutral-100' | 'primary' | 'primary-100'"
2669
+ "type": "boolean"
2573
2670
  }
2574
2671
  },
2575
2672
  {
2576
- "name": "breakpoint",
2577
- "description": "Breakpoint where the teaser switches from `vertical` to `horizontal`. `0` is always `horizontal`, `9999` is always `vertical`.",
2673
+ "name": "hasFocus",
2578
2674
  "value": {
2579
- "type": "number"
2675
+ "type": "boolean"
2580
2676
  }
2581
2677
  },
2582
2678
  {
2583
- "name": "inset",
2584
- "description": "The teaser's inner padding. This is always set in `white border-neutral-300`.",
2679
+ "name": "size",
2680
+ "description": "The radio's size.",
2585
2681
  "value": {
2586
- "type": "boolean"
2682
+ "type": "'lg' | 'sm'"
2587
2683
  }
2588
2684
  },
2589
2685
  {
2590
- "name": "_orientation",
2686
+ "name": "invalid",
2687
+ "description": "A Boolean attribute which, if present, marks the radio Button valid or invalid",
2591
2688
  "value": {
2592
- "type": "'vertical' | 'horizontal'"
2689
+ "type": "boolean"
2593
2690
  }
2594
2691
  },
2595
2692
  {
2596
- "name": "hasSlotController",
2597
- "value": {}
2693
+ "name": "disabled",
2694
+ "description": "A Boolean attribute which, if present, disables the radio.",
2695
+ "value": {
2696
+ "type": "boolean"
2697
+ }
2598
2698
  },
2599
2699
  {
2600
- "name": "resizeObserver",
2700
+ "name": "value",
2701
+ "description": "The radio's value. When selected, the radio group will receive this value.",
2601
2702
  "value": {
2602
- "type": "ResizeObserver"
2703
+ "type": "string"
2603
2704
  }
2604
2705
  },
2605
2706
  {
2606
- "name": "updateOrientation",
2707
+ "name": "addEventListeners",
2708
+ "value": {}
2709
+ },
2710
+ {
2711
+ "name": "removeEventListeners",
2712
+ "value": {}
2713
+ },
2714
+ {
2715
+ "name": "handleBlur",
2716
+ "value": {}
2717
+ },
2718
+ {
2719
+ "name": "handleClick",
2720
+ "value": {}
2721
+ },
2722
+ {
2723
+ "name": "handleFocus",
2724
+ "value": {}
2725
+ },
2726
+ {
2727
+ "name": "setInitialAttributes",
2728
+ "value": {}
2729
+ },
2730
+ {
2731
+ "name": "handleCheckedChange",
2732
+ "value": {}
2733
+ },
2734
+ {
2735
+ "name": "handleDisabledChange",
2607
2736
  "value": {}
2608
2737
  }
2609
2738
  ],
2610
- "events": []
2739
+ "events": [
2740
+ {
2741
+ "name": "sd-blur",
2742
+ "description": "Emitted when the control loses focus."
2743
+ },
2744
+ {
2745
+ "name": "sd-focus",
2746
+ "description": "Emitted when the control gains focus."
2747
+ }
2748
+ ]
2611
2749
  },
2612
2750
  "attributes": [
2613
2751
  {
2614
- "name": "variant",
2752
+ "name": "size",
2753
+ "description": "The radio's size.",
2615
2754
  "value": {
2616
- "type": "'white' | 'white border-neutral-300' | 'neutral-100' | 'primary' | 'primary-100'"
2755
+ "type": "'lg' | 'sm'"
2617
2756
  }
2618
2757
  },
2619
2758
  {
2620
- "name": "breakpoint",
2621
- "description": "Breakpoint where the teaser switches from `vertical` to `horizontal`. `0` is always `horizontal`, `9999` is always `vertical`.",
2759
+ "name": "invalid",
2760
+ "description": "A Boolean attribute which, if present, marks the radio Button valid or invalid",
2622
2761
  "value": {
2623
- "type": "number"
2762
+ "type": "boolean"
2624
2763
  }
2625
2764
  },
2626
2765
  {
2627
- "name": "inset",
2628
- "description": "The teaser's inner padding. This is always set in `white border-neutral-300`.",
2766
+ "name": "disabled",
2767
+ "description": "A Boolean attribute which, if present, disables the radio.",
2629
2768
  "value": {
2630
2769
  "type": "boolean"
2631
2770
  }
2771
+ },
2772
+ {
2773
+ "name": "value",
2774
+ "description": "The radio's value. When selected, the radio group will receive this value.",
2775
+ "value": {
2776
+ "type": "string"
2777
+ }
2632
2778
  }
2633
2779
  ]
2634
2780
  },
2635
2781
  {
2636
- "name": "sd-1-18-1-accordion-group",
2782
+ "name": "sd-spinner",
2637
2783
  "description": "",
2638
- "doc-url": "https://solid.union-investment.com/[storybook-link]/accordion-group",
2784
+ "doc-url": "https://solid.union-investment.com/[storybook-link]/spinner",
2639
2785
  "js": {
2640
2786
  "properties": [
2641
2787
  {
2642
- "name": "closeOthers",
2643
- "description": "Closes other accordions.",
2788
+ "name": "color",
2789
+ "description": "The color color of the spinner.",
2644
2790
  "value": {
2645
- "type": "boolean"
2791
+ "type": "'primary' | 'white' | 'currentColor'"
2646
2792
  }
2647
2793
  },
2648
2794
  {
2649
- "name": "handleAccordionShow",
2795
+ "name": "localize",
2650
2796
  "value": {}
2651
2797
  }
2652
2798
  ],
@@ -2654,123 +2800,205 @@
2654
2800
  },
2655
2801
  "attributes": [
2656
2802
  {
2657
- "name": "close-others",
2658
- "description": "Closes other accordions.",
2803
+ "name": "color",
2804
+ "description": "The color color of the spinner.",
2659
2805
  "value": {
2660
- "type": "boolean"
2806
+ "type": "'primary' | 'white' | 'currentColor'"
2661
2807
  }
2662
2808
  }
2663
2809
  ]
2664
2810
  },
2665
2811
  {
2666
- "name": "sd-1-18-1-accordion",
2812
+ "name": "sd-tag",
2667
2813
  "description": "",
2668
- "doc-url": "https://solid.union-investment.com/[storybook-link]/accordion",
2814
+ "doc-url": "https://solid.union-investment.com/[storybook-link]/tag",
2669
2815
  "js": {
2670
2816
  "properties": [
2671
2817
  {
2672
- "name": "localize",
2673
- "value": {}
2818
+ "name": "size",
2819
+ "description": "The tag's size.",
2820
+ "value": {
2821
+ "type": "'lg' | 'sm'"
2822
+ }
2674
2823
  },
2675
2824
  {
2676
- "name": "open",
2677
- "description": "Indicates whether or not the accordion is open. You can toggle this attribute to show and hide the accordion, or you\ncan use the `show()` and `hide()` methods and this attribute will reflect the accordion' open state.",
2825
+ "name": "selected",
2826
+ "description": "Displays the tag in a selected state.",
2678
2827
  "value": {
2679
2828
  "type": "boolean"
2680
2829
  }
2681
2830
  },
2682
2831
  {
2683
- "name": "summary",
2684
- "description": "The summary to show in the header. If you need to display HTML, use the `summary` slot instead.",
2832
+ "name": "removable",
2833
+ "description": "Displays the tag with a removability indicator.",
2834
+ "value": {
2835
+ "type": "boolean"
2836
+ }
2837
+ },
2838
+ {
2839
+ "name": "disabled",
2840
+ "description": "Displays the tag in a disabled state.",
2841
+ "value": {
2842
+ "type": "boolean"
2843
+ }
2844
+ },
2845
+ {
2846
+ "name": "href",
2847
+ "description": "When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.",
2685
2848
  "value": {
2686
2849
  "type": "string"
2687
2850
  }
2688
2851
  },
2689
2852
  {
2690
- "name": "handleSummaryClick",
2853
+ "name": "target",
2854
+ "description": "Tells the browser where to open the link. Only used when `href` is present.",
2855
+ "value": {
2856
+ "type": "'_blank' | '_parent' | '_self' | '_top'"
2857
+ }
2858
+ },
2859
+ {
2860
+ "name": "download",
2861
+ "description": "Tells the browser to download the linked file as this filename. Only used when `href` is present.",
2862
+ "value": {
2863
+ "type": "string | undefined"
2864
+ }
2865
+ },
2866
+ {
2867
+ "name": "handleBlur",
2691
2868
  "value": {}
2692
2869
  },
2693
2870
  {
2694
- "name": "handleSummaryKeyDown",
2871
+ "name": "handleFocus",
2695
2872
  "value": {}
2696
2873
  },
2697
2874
  {
2698
- "name": "handleOpenChange",
2875
+ "name": "isLink",
2699
2876
  "value": {}
2700
2877
  },
2701
2878
  {
2702
- "name": "show",
2703
- "description": "Shows the accordion.",
2879
+ "name": "click",
2880
+ "description": "Simulates a click on the tag.",
2704
2881
  "value": {}
2705
2882
  },
2706
2883
  {
2707
- "name": "hide",
2708
- "description": "Hides the accordion",
2884
+ "name": "focus",
2885
+ "description": "Sets focus on the tag.",
2886
+ "value": {}
2887
+ },
2888
+ {
2889
+ "name": "blur",
2890
+ "description": "Removes focus from the tag.",
2709
2891
  "value": {}
2710
2892
  }
2711
2893
  ],
2712
2894
  "events": [
2713
2895
  {
2714
- "name": "sd-show",
2715
- "description": "Emitted when the accordion opens."
2716
- },
2717
- {
2718
- "name": "sd-after-show",
2719
- "description": "Emitted after the accordion opens and all animations are complete."
2720
- },
2721
- {
2722
- "name": "sd-hide",
2723
- "description": "Emitted when the accordion closes."
2896
+ "name": "sd-blur",
2897
+ "description": "Emitted when the tag loses focus."
2724
2898
  },
2725
2899
  {
2726
- "name": "sd-after-hide",
2727
- "description": "Emitted after the accordion closes and all animations are complete."
2900
+ "name": "sd-focus",
2901
+ "description": "Emitted when the tag gains focus."
2728
2902
  }
2729
2903
  ]
2730
2904
  },
2731
2905
  "attributes": [
2732
2906
  {
2733
- "name": "open",
2734
- "description": "Indicates whether or not the accordion is open. You can toggle this attribute to show and hide the accordion, or you\ncan use the `show()` and `hide()` methods and this attribute will reflect the accordion' open state.",
2907
+ "name": "size",
2908
+ "description": "The tag's size.",
2909
+ "value": {
2910
+ "type": "'lg' | 'sm'"
2911
+ }
2912
+ },
2913
+ {
2914
+ "name": "selected",
2915
+ "description": "Displays the tag in a selected state.",
2735
2916
  "value": {
2736
2917
  "type": "boolean"
2737
2918
  }
2738
2919
  },
2739
2920
  {
2740
- "name": "summary",
2741
- "description": "The summary to show in the header. If you need to display HTML, use the `summary` slot instead.",
2921
+ "name": "removable",
2922
+ "description": "Displays the tag with a removability indicator.",
2923
+ "value": {
2924
+ "type": "boolean"
2925
+ }
2926
+ },
2927
+ {
2928
+ "name": "disabled",
2929
+ "description": "Displays the tag in a disabled state.",
2930
+ "value": {
2931
+ "type": "boolean"
2932
+ }
2933
+ },
2934
+ {
2935
+ "name": "href",
2936
+ "description": "When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.",
2742
2937
  "value": {
2743
2938
  "type": "string"
2744
2939
  }
2940
+ },
2941
+ {
2942
+ "name": "target",
2943
+ "description": "Tells the browser where to open the link. Only used when `href` is present.",
2944
+ "value": {
2945
+ "type": "'_blank' | '_parent' | '_self' | '_top'"
2946
+ }
2947
+ },
2948
+ {
2949
+ "name": "download",
2950
+ "description": "Tells the browser to download the linked file as this filename. Only used when `href` is present.",
2951
+ "value": {
2952
+ "type": "string | undefined"
2953
+ }
2745
2954
  }
2746
2955
  ]
2747
2956
  },
2748
2957
  {
2749
- "name": "sd-1-18-1-badge",
2958
+ "name": "sd-teaser",
2750
2959
  "description": "",
2751
- "doc-url": "https://solid.union-investment.com/[storybook-link]/badge",
2960
+ "doc-url": "https://solid.union-investment.com/[storybook-link]/teaser",
2752
2961
  "js": {
2753
2962
  "properties": [
2754
2963
  {
2755
2964
  "name": "variant",
2756
- "description": "The badge's theme variant.",
2757
2965
  "value": {
2758
- "type": "'default' | 'success' | 'error'"
2966
+ "type": "'white' | 'white border-neutral-300' | 'neutral-100' | 'primary' | 'primary-100'"
2759
2967
  }
2760
2968
  },
2761
2969
  {
2762
- "name": "size",
2763
- "description": "The badge's size.",
2970
+ "name": "breakpoint",
2971
+ "description": "Breakpoint where the teaser switches from `vertical` to `horizontal`. `0` is always `horizontal`, `9999` is always `vertical`.",
2764
2972
  "value": {
2765
- "type": "'lg' | 'md' | 'sm'"
2973
+ "type": "number"
2766
2974
  }
2767
2975
  },
2768
2976
  {
2769
- "name": "inverted",
2770
- "description": "Inverts the badge.",
2977
+ "name": "inset",
2978
+ "description": "The teaser's inner padding. This is always set in `white border-neutral-300`.",
2771
2979
  "value": {
2772
2980
  "type": "boolean"
2773
2981
  }
2982
+ },
2983
+ {
2984
+ "name": "_orientation",
2985
+ "value": {
2986
+ "type": "'vertical' | 'horizontal'"
2987
+ }
2988
+ },
2989
+ {
2990
+ "name": "hasSlotController",
2991
+ "value": {}
2992
+ },
2993
+ {
2994
+ "name": "resizeObserver",
2995
+ "value": {
2996
+ "type": "ResizeObserver"
2997
+ }
2998
+ },
2999
+ {
3000
+ "name": "updateOrientation",
3001
+ "value": {}
2774
3002
  }
2775
3003
  ],
2776
3004
  "events": []
@@ -2778,21 +3006,20 @@
2778
3006
  "attributes": [
2779
3007
  {
2780
3008
  "name": "variant",
2781
- "description": "The badge's theme variant.",
2782
3009
  "value": {
2783
- "type": "'default' | 'success' | 'error'"
3010
+ "type": "'white' | 'white border-neutral-300' | 'neutral-100' | 'primary' | 'primary-100'"
2784
3011
  }
2785
3012
  },
2786
3013
  {
2787
- "name": "size",
2788
- "description": "The badge's size.",
3014
+ "name": "breakpoint",
3015
+ "description": "Breakpoint where the teaser switches from `vertical` to `horizontal`. `0` is always `horizontal`, `9999` is always `vertical`.",
2789
3016
  "value": {
2790
- "type": "'lg' | 'md' | 'sm'"
3017
+ "type": "number"
2791
3018
  }
2792
3019
  },
2793
3020
  {
2794
- "name": "inverted",
2795
- "description": "Inverts the badge.",
3021
+ "name": "inset",
3022
+ "description": "The teaser's inner padding. This is always set in `white border-neutral-300`.",
2796
3023
  "value": {
2797
3024
  "type": "boolean"
2798
3025
  }
@@ -2800,29 +3027,30 @@
2800
3027
  ]
2801
3028
  },
2802
3029
  {
2803
- "name": "sd-1-18-1-brandshape",
3030
+ "name": "sd-video",
2804
3031
  "description": "",
2805
- "doc-url": "https://solid.union-investment.com/[storybook-link]/brandshape",
3032
+ "doc-url": "https://solid.union-investment.com/[storybook-link]/video",
2806
3033
  "js": {
2807
3034
  "properties": [
2808
3035
  {
2809
- "name": "variant",
2810
- "description": "The brandshape's theme variant.",
3036
+ "name": "playing",
3037
+ "description": "Set to `true` to hide the play icon and the overlay.",
2811
3038
  "value": {
2812
- "type": "'neutral-100' | 'primary' | 'white'"
3039
+ "type": "boolean"
2813
3040
  }
2814
3041
  },
2815
3042
  {
2816
- "name": "shapes",
2817
- "description": "Defines which shapes of the brandshape should be displayed.",
3043
+ "name": "overlay",
3044
+ "description": "Set to `true` to show a dark overlay. Only used when `playing` is `false`.",
2818
3045
  "value": {
2819
- "type": "('top' | 'middle' | 'bottom')[]"
3046
+ "type": "boolean"
2820
3047
  }
2821
3048
  },
2822
3049
  {
2823
- "name": "componentBreakpoint",
3050
+ "name": "isBelowBreakpoint",
3051
+ "description": "Reactive property to trigger breakpoint re-renders.",
2824
3052
  "value": {
2825
- "type": "Breakpoints"
3053
+ "type": "boolean"
2826
3054
  }
2827
3055
  },
2828
3056
  {
@@ -2832,66 +3060,333 @@
2832
3060
  }
2833
3061
  },
2834
3062
  {
2835
- "name": "getSvg",
2836
- "value": {}
2837
- },
2838
- {
2839
- "name": "largeSvg",
2840
- "value": {}
2841
- },
2842
- {
2843
- "name": "mediumSvg",
3063
+ "name": "hasSlotController",
2844
3064
  "value": {}
2845
3065
  },
2846
3066
  {
2847
- "name": "smallSvg",
2848
- "value": {}
3067
+ "name": "poster",
3068
+ "description": "Getter for optional poster slot.",
3069
+ "value": {
3070
+ "type": "Element | null"
3071
+ }
2849
3072
  },
2850
3073
  {
2851
- "name": "setBreakpoint",
3074
+ "name": "fadeoutPoster",
3075
+ "description": "Fade out poster after initial play.",
2852
3076
  "value": {}
2853
3077
  },
2854
3078
  {
2855
- "name": "renderTopBrandshape",
3079
+ "name": "hidePoster",
3080
+ "description": "Hide poster after initial play & fadeout.",
2856
3081
  "value": {}
2857
3082
  },
2858
3083
  {
2859
- "name": "renderMiddleBrandshape",
3084
+ "name": "play",
3085
+ "description": "Utility function to group play behaviors.",
2860
3086
  "value": {}
2861
3087
  },
2862
3088
  {
2863
- "name": "renderBottomBrandshape",
3089
+ "name": "handleKeydown",
3090
+ "description": "Restrict keydown control to enter and space bar to mimic the native video tag behavior. If a KeyboardEvent is used, refocus on the native video element to give the user seamless keyboard control.",
2864
3091
  "value": {}
2865
3092
  },
2866
3093
  {
2867
- "name": "renderWhitespaceFix",
2868
- "description": "Renders a small line to prevent whitespace between the svg and the div of the middle brandshape.",
3094
+ "name": "handleButtonResize",
3095
+ "description": "Resize the play-button-bg when passing host element width breakpoint 414px.",
2869
3096
  "value": {}
2870
3097
  }
2871
3098
  ],
2872
- "events": []
3099
+ "events": [
3100
+ {
3101
+ "name": "sd-play",
3102
+ "description": "Event emitted when clicking the `play-icon`. Listen for this event and use it to play the wrapped video."
3103
+ }
3104
+ ]
2873
3105
  },
2874
3106
  "attributes": [
2875
3107
  {
2876
- "name": "variant",
2877
- "description": "The brandshape's theme variant.",
3108
+ "name": "playing",
3109
+ "description": "Set to `true` to hide the play icon and the overlay.",
2878
3110
  "value": {
2879
- "type": "'neutral-100' | 'primary' | 'white'"
3111
+ "type": "boolean"
2880
3112
  }
2881
3113
  },
2882
3114
  {
2883
- "name": "shapes",
2884
- "description": "Defines which shapes of the brandshape should be displayed.",
3115
+ "name": "overlay",
3116
+ "description": "Set to `true` to show a dark overlay. Only used when `playing` is `false`.",
2885
3117
  "value": {
2886
- "type": "('top' | 'middle' | 'bottom')[]"
3118
+ "type": "boolean"
3119
+ }
3120
+ },
3121
+ {
3122
+ "name": "isBelowBreakpoint",
3123
+ "description": "Reactive property to trigger breakpoint re-renders.",
3124
+ "value": {
3125
+ "type": "boolean"
2887
3126
  }
2888
3127
  }
2889
3128
  ]
2890
3129
  },
2891
3130
  {
2892
- "name": "sd-1-18-1-button",
3131
+ "name": "sd-1-20-0-accordion-group",
2893
3132
  "description": "",
2894
- "doc-url": "https://solid.union-investment.com/[storybook-link]/button",
3133
+ "doc-url": "https://solid.union-investment.com/[storybook-link]/accordion-group",
3134
+ "js": {
3135
+ "properties": [
3136
+ {
3137
+ "name": "closeOthers",
3138
+ "description": "Closes other accordions.",
3139
+ "value": {
3140
+ "type": "boolean"
3141
+ }
3142
+ },
3143
+ {
3144
+ "name": "handleAccordionShow",
3145
+ "value": {}
3146
+ }
3147
+ ],
3148
+ "events": []
3149
+ },
3150
+ "attributes": [
3151
+ {
3152
+ "name": "close-others",
3153
+ "description": "Closes other accordions.",
3154
+ "value": {
3155
+ "type": "boolean"
3156
+ }
3157
+ }
3158
+ ]
3159
+ },
3160
+ {
3161
+ "name": "sd-1-20-0-accordion",
3162
+ "description": "",
3163
+ "doc-url": "https://solid.union-investment.com/[storybook-link]/accordion",
3164
+ "js": {
3165
+ "properties": [
3166
+ {
3167
+ "name": "localize",
3168
+ "value": {}
3169
+ },
3170
+ {
3171
+ "name": "open",
3172
+ "description": "Indicates whether or not the accordion is open. You can toggle this attribute to show and hide the accordion, or you\ncan use the `show()` and `hide()` methods and this attribute will reflect the accordion' open state.",
3173
+ "value": {
3174
+ "type": "boolean"
3175
+ }
3176
+ },
3177
+ {
3178
+ "name": "summary",
3179
+ "description": "The summary to show in the header. If you need to display HTML, use the `summary` slot instead.",
3180
+ "value": {
3181
+ "type": "string"
3182
+ }
3183
+ },
3184
+ {
3185
+ "name": "handleSummaryClick",
3186
+ "value": {}
3187
+ },
3188
+ {
3189
+ "name": "handleSummaryKeyDown",
3190
+ "value": {}
3191
+ },
3192
+ {
3193
+ "name": "handleOpenChange",
3194
+ "value": {}
3195
+ },
3196
+ {
3197
+ "name": "show",
3198
+ "description": "Shows the accordion.",
3199
+ "value": {}
3200
+ },
3201
+ {
3202
+ "name": "hide",
3203
+ "description": "Hides the accordion",
3204
+ "value": {}
3205
+ }
3206
+ ],
3207
+ "events": [
3208
+ {
3209
+ "name": "sd-show",
3210
+ "description": "Emitted when the accordion opens."
3211
+ },
3212
+ {
3213
+ "name": "sd-after-show",
3214
+ "description": "Emitted after the accordion opens and all animations are complete."
3215
+ },
3216
+ {
3217
+ "name": "sd-hide",
3218
+ "description": "Emitted when the accordion closes."
3219
+ },
3220
+ {
3221
+ "name": "sd-after-hide",
3222
+ "description": "Emitted after the accordion closes and all animations are complete."
3223
+ }
3224
+ ]
3225
+ },
3226
+ "attributes": [
3227
+ {
3228
+ "name": "open",
3229
+ "description": "Indicates whether or not the accordion is open. You can toggle this attribute to show and hide the accordion, or you\ncan use the `show()` and `hide()` methods and this attribute will reflect the accordion' open state.",
3230
+ "value": {
3231
+ "type": "boolean"
3232
+ }
3233
+ },
3234
+ {
3235
+ "name": "summary",
3236
+ "description": "The summary to show in the header. If you need to display HTML, use the `summary` slot instead.",
3237
+ "value": {
3238
+ "type": "string"
3239
+ }
3240
+ }
3241
+ ]
3242
+ },
3243
+ {
3244
+ "name": "sd-1-20-0-badge",
3245
+ "description": "",
3246
+ "doc-url": "https://solid.union-investment.com/[storybook-link]/badge",
3247
+ "js": {
3248
+ "properties": [
3249
+ {
3250
+ "name": "variant",
3251
+ "description": "The badge's theme variant.",
3252
+ "value": {
3253
+ "type": "'default' | 'success' | 'error'"
3254
+ }
3255
+ },
3256
+ {
3257
+ "name": "size",
3258
+ "description": "The badge's size.",
3259
+ "value": {
3260
+ "type": "'lg' | 'md' | 'sm'"
3261
+ }
3262
+ },
3263
+ {
3264
+ "name": "inverted",
3265
+ "description": "Inverts the badge.",
3266
+ "value": {
3267
+ "type": "boolean"
3268
+ }
3269
+ }
3270
+ ],
3271
+ "events": []
3272
+ },
3273
+ "attributes": [
3274
+ {
3275
+ "name": "variant",
3276
+ "description": "The badge's theme variant.",
3277
+ "value": {
3278
+ "type": "'default' | 'success' | 'error'"
3279
+ }
3280
+ },
3281
+ {
3282
+ "name": "size",
3283
+ "description": "The badge's size.",
3284
+ "value": {
3285
+ "type": "'lg' | 'md' | 'sm'"
3286
+ }
3287
+ },
3288
+ {
3289
+ "name": "inverted",
3290
+ "description": "Inverts the badge.",
3291
+ "value": {
3292
+ "type": "boolean"
3293
+ }
3294
+ }
3295
+ ]
3296
+ },
3297
+ {
3298
+ "name": "sd-1-20-0-brandshape",
3299
+ "description": "",
3300
+ "doc-url": "https://solid.union-investment.com/[storybook-link]/brandshape",
3301
+ "js": {
3302
+ "properties": [
3303
+ {
3304
+ "name": "variant",
3305
+ "description": "The brandshape's theme variant.",
3306
+ "value": {
3307
+ "type": "'neutral-100' | 'primary' | 'white'"
3308
+ }
3309
+ },
3310
+ {
3311
+ "name": "shapes",
3312
+ "description": "Defines which shapes of the brandshape should be displayed.",
3313
+ "value": {
3314
+ "type": "('top' | 'middle' | 'bottom')[]"
3315
+ }
3316
+ },
3317
+ {
3318
+ "name": "componentBreakpoint",
3319
+ "value": {
3320
+ "type": "Breakpoints"
3321
+ }
3322
+ },
3323
+ {
3324
+ "name": "resizeObserver",
3325
+ "value": {
3326
+ "type": "ResizeObserver"
3327
+ }
3328
+ },
3329
+ {
3330
+ "name": "getSvg",
3331
+ "value": {}
3332
+ },
3333
+ {
3334
+ "name": "largeSvg",
3335
+ "value": {}
3336
+ },
3337
+ {
3338
+ "name": "mediumSvg",
3339
+ "value": {}
3340
+ },
3341
+ {
3342
+ "name": "smallSvg",
3343
+ "value": {}
3344
+ },
3345
+ {
3346
+ "name": "setBreakpoint",
3347
+ "value": {}
3348
+ },
3349
+ {
3350
+ "name": "renderTopBrandshape",
3351
+ "value": {}
3352
+ },
3353
+ {
3354
+ "name": "renderMiddleBrandshape",
3355
+ "value": {}
3356
+ },
3357
+ {
3358
+ "name": "renderBottomBrandshape",
3359
+ "value": {}
3360
+ },
3361
+ {
3362
+ "name": "renderWhitespaceFix",
3363
+ "description": "Renders a small line to prevent whitespace between the svg and the div of the middle brandshape.",
3364
+ "value": {}
3365
+ }
3366
+ ],
3367
+ "events": []
3368
+ },
3369
+ "attributes": [
3370
+ {
3371
+ "name": "variant",
3372
+ "description": "The brandshape's theme variant.",
3373
+ "value": {
3374
+ "type": "'neutral-100' | 'primary' | 'white'"
3375
+ }
3376
+ },
3377
+ {
3378
+ "name": "shapes",
3379
+ "description": "Defines which shapes of the brandshape should be displayed.",
3380
+ "value": {
3381
+ "type": "('top' | 'middle' | 'bottom')[]"
3382
+ }
3383
+ }
3384
+ ]
3385
+ },
3386
+ {
3387
+ "name": "sd-1-20-0-button",
3388
+ "description": "",
3389
+ "doc-url": "https://solid.union-investment.com/[storybook-link]/button",
2895
3390
  "js": {
2896
3391
  "properties": [
2897
3392
  {
@@ -3030,19 +3525,33 @@
3030
3525
  "name": "formTarget",
3031
3526
  "description": "Used to override the form owner's `target` attribute.",
3032
3527
  "value": {
3033
- "type": "'_self' | '_blank' | '_parent' | '_top' | string"
3528
+ "type": "'_self' | '_blank' | '_parent' | '_top'"
3034
3529
  }
3035
3530
  },
3036
3531
  {
3037
- "name": "handleBlur",
3532
+ "name": "validity",
3533
+ "description": "Gets the validity state object",
3038
3534
  "value": {}
3039
3535
  },
3040
3536
  {
3041
- "name": "handleFocus",
3537
+ "name": "validationMessage",
3538
+ "description": "Gets the validation message",
3042
3539
  "value": {}
3043
3540
  },
3044
3541
  {
3045
- "name": "handleClick",
3542
+ "name": "handleBlur",
3543
+ "value": {}
3544
+ },
3545
+ {
3546
+ "name": "handleFocus",
3547
+ "value": {}
3548
+ },
3549
+ {
3550
+ "name": "handleClick",
3551
+ "value": {}
3552
+ },
3553
+ {
3554
+ "name": "handleInvalid",
3046
3555
  "value": {}
3047
3556
  },
3048
3557
  {
@@ -3074,7 +3583,12 @@
3074
3583
  },
3075
3584
  {
3076
3585
  "name": "checkValidity",
3077
- "description": "Checks for validity but does not show the browser's validation message.",
3586
+ "description": "Checks for validity but does not show the browser's validation message. Returns `true` when valid and `false` when invalid.",
3587
+ "value": {}
3588
+ },
3589
+ {
3590
+ "name": "getForm",
3591
+ "description": "Gets the associated form, if one exists.",
3078
3592
  "value": {}
3079
3593
  },
3080
3594
  {
@@ -3096,6 +3610,10 @@
3096
3610
  {
3097
3611
  "name": "sd-focus",
3098
3612
  "description": "Emitted when the button gains focus."
3613
+ },
3614
+ {
3615
+ "name": "sd-invalid",
3616
+ "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
3099
3617
  }
3100
3618
  ]
3101
3619
  },
@@ -3222,13 +3740,13 @@
3222
3740
  "name": "formtarget",
3223
3741
  "description": "Used to override the form owner's `target` attribute.",
3224
3742
  "value": {
3225
- "type": "'_self' | '_blank' | '_parent' | '_top' | string"
3743
+ "type": "'_self' | '_blank' | '_parent' | '_top'"
3226
3744
  }
3227
3745
  }
3228
3746
  ]
3229
3747
  },
3230
3748
  {
3231
- "name": "sd-1-18-1-carousel-item",
3749
+ "name": "sd-1-20-0-carousel-item",
3232
3750
  "description": "",
3233
3751
  "doc-url": "https://solid.union-investment.com/[storybook-link]/carousel-item",
3234
3752
  "js": {
@@ -3243,7 +3761,7 @@
3243
3761
  "attributes": []
3244
3762
  },
3245
3763
  {
3246
- "name": "sd-1-18-1-carousel",
3764
+ "name": "sd-1-20-0-carousel",
3247
3765
  "description": "",
3248
3766
  "doc-url": "https://solid.union-investment.com/[storybook-link]/carousel",
3249
3767
  "js": {
@@ -3447,7 +3965,7 @@
3447
3965
  ]
3448
3966
  },
3449
3967
  {
3450
- "name": "sd-1-18-1-divider",
3968
+ "name": "sd-1-20-0-divider",
3451
3969
  "description": "",
3452
3970
  "doc-url": "https://solid.union-investment.com/[storybook-link]/divider",
3453
3971
  "js": {
@@ -3487,7 +4005,7 @@
3487
4005
  ]
3488
4006
  },
3489
4007
  {
3490
- "name": "sd-1-18-1-drawer",
4008
+ "name": "sd-1-20-0-drawer",
3491
4009
  "description": "",
3492
4010
  "doc-url": "https://solid.union-investment.com/[storybook-link]/drawer",
3493
4011
  "js": {
@@ -3640,7 +4158,7 @@
3640
4158
  ]
3641
4159
  },
3642
4160
  {
3643
- "name": "sd-1-18-1-dropdown",
4161
+ "name": "sd-1-20-0-dropdown",
3644
4162
  "description": "",
3645
4163
  "doc-url": "https://solid.union-investment.com/[storybook-link]/dropdown",
3646
4164
  "js": {
@@ -3894,7 +4412,7 @@
3894
4412
  ]
3895
4413
  },
3896
4414
  {
3897
- "name": "sd-1-18-1-icon",
4415
+ "name": "sd-1-20-0-icon",
3898
4416
  "description": "",
3899
4417
  "doc-url": "https://solid.union-investment.com/[storybook-link]/icon",
3900
4418
  "js": {
@@ -4003,7 +4521,7 @@
4003
4521
  ]
4004
4522
  },
4005
4523
  {
4006
- "name": "sd-1-18-1-include",
4524
+ "name": "sd-1-20-0-include",
4007
4525
  "description": "",
4008
4526
  "doc-url": "https://solid.union-investment.com/[storybook-link]/include",
4009
4527
  "js": {
@@ -4074,7 +4592,7 @@
4074
4592
  ]
4075
4593
  },
4076
4594
  {
4077
- "name": "sd-1-18-1-link",
4595
+ "name": "sd-1-20-0-link",
4078
4596
  "description": "",
4079
4597
  "doc-url": "https://solid.union-investment.com/[storybook-link]/link",
4080
4598
  "js": {
@@ -4201,7 +4719,7 @@
4201
4719
  ]
4202
4720
  },
4203
4721
  {
4204
- "name": "sd-1-18-1-navigation-item",
4722
+ "name": "sd-1-20-0-navigation-item",
4205
4723
  "description": "",
4206
4724
  "doc-url": "https://solid.union-investment.com/[storybook-link]/navigation-item",
4207
4725
  "js": {
@@ -4426,7 +4944,7 @@
4426
4944
  ]
4427
4945
  },
4428
4946
  {
4429
- "name": "sd-1-18-1-popup",
4947
+ "name": "sd-1-20-0-popup",
4430
4948
  "description": "",
4431
4949
  "doc-url": "https://solid.union-investment.com/[storybook-link]/popup",
4432
4950
  "js": {
@@ -4536,231 +5054,602 @@
4536
5054
  }
4537
5055
  },
4538
5056
  {
4539
- "name": "shift",
4540
- "description": "Moves the popup along the axis to keep it in view when clipped.",
5057
+ "name": "shift",
5058
+ "description": "Moves the popup along the axis to keep it in view when clipped.",
5059
+ "value": {
5060
+ "type": "boolean"
5061
+ }
5062
+ },
5063
+ {
5064
+ "name": "shiftBoundary",
5065
+ "description": "The shift boundary describes clipping element(s) that overflow will be checked relative to when shifting. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
5066
+ "value": {
5067
+ "type": "Element | Element[]"
5068
+ }
5069
+ },
5070
+ {
5071
+ "name": "shiftPadding",
5072
+ "description": "The amount of padding, in pixels, to exceed before the shift behavior will occur.",
5073
+ "value": {
5074
+ "type": "number"
5075
+ }
5076
+ },
5077
+ {
5078
+ "name": "autoSize",
5079
+ "description": "When set, this will cause the popup to automatically resize itself to prevent it from overflowing.",
5080
+ "value": {
5081
+ "type": "'horizontal' | 'vertical' | 'both'"
5082
+ }
5083
+ },
5084
+ {
5085
+ "name": "sync",
5086
+ "description": "Syncs the popup's width or height to that of the anchor element.",
5087
+ "value": {
5088
+ "type": "'width' | 'height' | 'both'"
5089
+ }
5090
+ },
5091
+ {
5092
+ "name": "autoSizeBoundary",
5093
+ "description": "The auto-size boundary describes clipping element(s) that overflow will be checked relative to when resizing. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
5094
+ "value": {
5095
+ "type": "Element | Element[]"
5096
+ }
5097
+ },
5098
+ {
5099
+ "name": "autoSizePadding",
5100
+ "description": "The amount of padding, in pixels, to exceed before the auto-size behavior will occur.",
5101
+ "value": {
5102
+ "type": "number"
5103
+ }
5104
+ },
5105
+ {
5106
+ "name": "handleAnchorChange",
5107
+ "value": {}
5108
+ },
5109
+ {
5110
+ "name": "start",
5111
+ "value": {}
5112
+ },
5113
+ {
5114
+ "name": "stop",
5115
+ "value": {}
5116
+ },
5117
+ {
5118
+ "name": "reposition",
5119
+ "description": "Forces the popup to recalculate and reposition itself.",
5120
+ "value": {}
5121
+ }
5122
+ ],
5123
+ "events": [
5124
+ {
5125
+ "name": "sd-reposition",
5126
+ "description": "Emitted when the popup is repositioned. This event can fire a lot, so avoid putting expensive operations in your listener or consider debouncing it."
5127
+ }
5128
+ ]
5129
+ },
5130
+ "attributes": [
5131
+ {
5132
+ "name": "anchor",
5133
+ "description": "The element the popup will be anchored to. If the anchor lives outside of the popup, you can provide its `id` or a\nreference to it here. If the anchor lives inside the popup, use the `anchor` slot instead.",
5134
+ "value": {
5135
+ "type": "Element | string"
5136
+ }
5137
+ },
5138
+ {
5139
+ "name": "active",
5140
+ "description": "Activates the positioning logic and shows the popup. When this attribute is removed, the positioning logic is torn\ndown and the popup will be hidden.",
5141
+ "value": {
5142
+ "type": "boolean"
5143
+ }
5144
+ },
5145
+ {
5146
+ "name": "placement",
5147
+ "description": "The preferred placement of the popup. Note that the actual placement will vary as configured to keep the\npanel inside of the viewport.",
5148
+ "value": {
5149
+ "type": "| 'top'\n | 'top-start'\n | 'top-end'\n | 'bottom'\n | 'bottom-start'\n | 'bottom-end'\n | 'right'\n | 'right-start'\n | 'right-end'\n | 'left'\n | 'left-start'\n | 'left-end'"
5150
+ }
5151
+ },
5152
+ {
5153
+ "name": "strategy",
5154
+ "description": "Determines how the popup is positioned. The `absolute` strategy works well in most cases, but if\noverflow is clipped, using a `fixed` position strategy can often workaround it.",
5155
+ "value": {
5156
+ "type": "'absolute' | 'fixed'"
5157
+ }
5158
+ },
5159
+ {
5160
+ "name": "distance",
5161
+ "description": "The distance in pixels from which to offset the panel away from its anchor.",
5162
+ "value": {
5163
+ "type": "number"
5164
+ }
5165
+ },
5166
+ {
5167
+ "name": "skidding",
5168
+ "description": "The distance in pixels from which to offset the panel along its anchor.",
5169
+ "value": {
5170
+ "type": "number"
5171
+ }
5172
+ },
5173
+ {
5174
+ "name": "arrow",
5175
+ "description": "Attaches an arrow to the popup. The arrow's size and color can be customized using the `--arrow-size` and\n`--arrow-color` custom properties. For additional customizations, you can also target the arrow using\n`::part(arrow)` in your stylesheet.",
5176
+ "value": {
5177
+ "type": "boolean"
5178
+ }
5179
+ },
5180
+ {
5181
+ "name": "arrow-placement",
5182
+ "description": "The placement of the arrow. The default is `anchor`, which will align the arrow as close to the center of the\nanchor as possible, considering available space and `arrow-padding`. A value of `start`, `end`, or `center` will\nalign the arrow to the start, end, or center of the popover instead.",
5183
+ "value": {
5184
+ "type": "'start' | 'end' | 'center' | 'anchor'"
5185
+ }
5186
+ },
5187
+ {
5188
+ "name": "arrow-padding",
5189
+ "description": "The amount of padding between the arrow and the edges of the popup. If the popup has a border-radius, for example,\nthis will prevent it from overflowing the corners.",
5190
+ "value": {
5191
+ "type": "number"
5192
+ }
5193
+ },
5194
+ {
5195
+ "name": "flip",
5196
+ "description": "When set, placement of the popup will flip to the opposite site to keep it in view. You can use\n`flipFallbackPlacements` to further configure how the fallback placement is determined.",
5197
+ "value": {
5198
+ "type": "boolean"
5199
+ }
5200
+ },
5201
+ {
5202
+ "name": "flip-fallback-placements",
5203
+ "description": "If the preferred placement doesn't fit, popup will be tested in these fallback placements until one fits. Must be a\nstring of any number of placements separated by a space, e.g. \"top bottom left\". If no placement fits, the flip\nfallback strategy will be used instead.",
5204
+ "value": {
5205
+ "type": "string"
5206
+ }
5207
+ },
5208
+ {
5209
+ "name": "flip-fallback-strategy",
5210
+ "description": "When neither the preferred placement nor the fallback placements fit, this value will be used to determine whether\nthe popup should be positioned using the best available fit based on available space or as it was initially\npreferred.",
5211
+ "value": {
5212
+ "type": "'best-fit' | 'initial'"
5213
+ }
5214
+ },
5215
+ {
5216
+ "name": "flipBoundary",
5217
+ "description": "The flip boundary describes clipping element(s) that overflow will be checked relative to when flipping. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
5218
+ "value": {
5219
+ "type": "Element | Element[]"
5220
+ }
5221
+ },
5222
+ {
5223
+ "name": "flip-padding",
5224
+ "description": "The amount of padding, in pixels, to exceed before the flip behavior will occur.",
5225
+ "value": {
5226
+ "type": "number"
5227
+ }
5228
+ },
5229
+ {
5230
+ "name": "shift",
5231
+ "description": "Moves the popup along the axis to keep it in view when clipped.",
5232
+ "value": {
5233
+ "type": "boolean"
5234
+ }
5235
+ },
5236
+ {
5237
+ "name": "shiftBoundary",
5238
+ "description": "The shift boundary describes clipping element(s) that overflow will be checked relative to when shifting. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
5239
+ "value": {
5240
+ "type": "Element | Element[]"
5241
+ }
5242
+ },
5243
+ {
5244
+ "name": "shift-padding",
5245
+ "description": "The amount of padding, in pixels, to exceed before the shift behavior will occur.",
5246
+ "value": {
5247
+ "type": "number"
5248
+ }
5249
+ },
5250
+ {
5251
+ "name": "auto-size",
5252
+ "description": "When set, this will cause the popup to automatically resize itself to prevent it from overflowing.",
5253
+ "value": {
5254
+ "type": "'horizontal' | 'vertical' | 'both'"
5255
+ }
5256
+ },
5257
+ {
5258
+ "name": "sync",
5259
+ "description": "Syncs the popup's width or height to that of the anchor element.",
5260
+ "value": {
5261
+ "type": "'width' | 'height' | 'both'"
5262
+ }
5263
+ },
5264
+ {
5265
+ "name": "autoSizeBoundary",
5266
+ "description": "The auto-size boundary describes clipping element(s) that overflow will be checked relative to when resizing. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
5267
+ "value": {
5268
+ "type": "Element | Element[]"
5269
+ }
5270
+ },
5271
+ {
5272
+ "name": "auto-size-padding",
5273
+ "description": "The amount of padding, in pixels, to exceed before the auto-size behavior will occur.",
5274
+ "value": {
5275
+ "type": "number"
5276
+ }
5277
+ }
5278
+ ]
5279
+ },
5280
+ {
5281
+ "name": "sd-1-20-0-radio-group",
5282
+ "description": "",
5283
+ "doc-url": "https://solid.union-investment.com/[storybook-link]/radio-group",
5284
+ "js": {
5285
+ "properties": [
5286
+ {
5287
+ "name": "dependencies",
5288
+ "value": {
5289
+ "type": "object"
5290
+ }
5291
+ },
5292
+ {
5293
+ "name": "formControlController",
5294
+ "value": {}
5295
+ },
5296
+ {
5297
+ "name": "hasSlotController",
5298
+ "value": {}
5299
+ },
5300
+ {
5301
+ "name": "customValidityMessage",
5302
+ "value": {
5303
+ "type": "string"
5304
+ }
5305
+ },
5306
+ {
5307
+ "name": "validationTimeout",
5308
+ "value": {
5309
+ "type": "number"
5310
+ }
5311
+ },
5312
+ {
5313
+ "name": "hasButtonGroup",
5314
+ "value": {
5315
+ "type": "boolean"
5316
+ }
5317
+ },
5318
+ {
5319
+ "name": "defaultValue",
5320
+ "value": {
5321
+ "type": "string"
5322
+ }
5323
+ },
5324
+ {
5325
+ "name": "invalid",
5326
+ "description": "A Boolean attribute which, if present, marks the radio valid or invalid. Please note that 'invalid' can only be used in conjunction with 'this.required'.",
5327
+ "value": {
5328
+ "type": "boolean"
5329
+ }
5330
+ },
5331
+ {
5332
+ "name": "errorText",
5333
+ "description": "The radio groups's error text. Use to display an error message below the component. Please note that 'error-text' can only be used in conjunction with 'this.required' and 'this.invalid'.",
5334
+ "value": {
5335
+ "type": "string"
5336
+ }
5337
+ },
5338
+ {
5339
+ "name": "label",
5340
+ "description": "The radio group's label. Required for proper accessibility. If you need to display HTML, use the `label` slot\ninstead.",
5341
+ "value": {
5342
+ "type": "string"
5343
+ }
5344
+ },
5345
+ {
5346
+ "name": "name",
5347
+ "description": "The name of the radio group, submitted as a name/value pair with form data.",
5348
+ "value": {
5349
+ "type": "string"
5350
+ }
5351
+ },
5352
+ {
5353
+ "name": "value",
5354
+ "description": "The current value of the radio group, submitted as a name/value pair with form data.",
5355
+ "value": {
5356
+ "type": "string"
5357
+ }
5358
+ },
5359
+ {
5360
+ "name": "size",
5361
+ "description": "The radio group's size. This size will be applied to the label, all child radios and radio buttons.",
5362
+ "value": {
5363
+ "type": "'lg' | 'sm'"
5364
+ }
5365
+ },
5366
+ {
5367
+ "name": "form",
5368
+ "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.",
5369
+ "value": {
5370
+ "type": "string"
5371
+ }
5372
+ },
5373
+ {
5374
+ "name": "required",
5375
+ "description": "Ensures a child radio is checked before allowing the containing form to submit.",
5376
+ "value": {
5377
+ "type": "boolean"
5378
+ }
5379
+ },
5380
+ {
5381
+ "name": "orientation",
5382
+ "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.",
5383
+ "value": {
5384
+ "type": "'horizontal' | 'vertical'"
5385
+ }
5386
+ },
5387
+ {
5388
+ "name": "validity",
5389
+ "description": "Gets the validity state object",
5390
+ "value": {}
5391
+ },
5392
+ {
5393
+ "name": "validationMessage",
5394
+ "description": "Gets the validation message",
5395
+ "value": {}
5396
+ },
5397
+ {
5398
+ "name": "getAllRadios",
5399
+ "value": {}
5400
+ },
5401
+ {
5402
+ "name": "handleRadioClick",
5403
+ "value": {}
5404
+ },
5405
+ {
5406
+ "name": "handleKeyDown",
5407
+ "value": {}
5408
+ },
5409
+ {
5410
+ "name": "handleLabelClick",
5411
+ "value": {}
5412
+ },
5413
+ {
5414
+ "name": "handleInvalid",
5415
+ "value": {}
5416
+ },
5417
+ {
5418
+ "name": "syncRadioElements",
5419
+ "value": {}
5420
+ },
5421
+ {
5422
+ "name": "syncRadios",
5423
+ "value": {}
5424
+ },
5425
+ {
5426
+ "name": "updateCheckedRadio",
5427
+ "value": {}
5428
+ },
5429
+ {
5430
+ "name": "handleSizeChange",
5431
+ "value": {}
5432
+ },
5433
+ {
5434
+ "name": "handleInvalidChange",
5435
+ "value": {}
5436
+ },
5437
+ {
5438
+ "name": "handleValueChange",
5439
+ "value": {}
5440
+ },
5441
+ {
5442
+ "name": "checkValidity",
5443
+ "description": "Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid.",
5444
+ "value": {}
5445
+ },
5446
+ {
5447
+ "name": "getForm",
5448
+ "description": "Gets the associated form, if one exists.",
5449
+ "value": {}
5450
+ },
5451
+ {
5452
+ "name": "reportValidity",
5453
+ "description": "Checks for validity and shows the browser's validation message if the control is invalid.",
5454
+ "value": {}
5455
+ },
5456
+ {
5457
+ "name": "setCustomValidity",
5458
+ "description": "Sets a custom validation message. Pass an empty string to restore validity.",
5459
+ "value": {}
5460
+ }
5461
+ ],
5462
+ "events": [
5463
+ {
5464
+ "name": "sd-change",
5465
+ "description": "Emitted when the radio group's selected value changes."
5466
+ },
5467
+ {
5468
+ "name": "sd-input",
5469
+ "description": "Emitted when the radio group receives user input."
5470
+ },
5471
+ {
5472
+ "name": "sd-invalid",
5473
+ "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
5474
+ }
5475
+ ]
5476
+ },
5477
+ "attributes": [
5478
+ {
5479
+ "name": "label",
5480
+ "description": "The radio group's label. Required for proper accessibility. If you need to display HTML, use the `label` slot\ninstead.",
5481
+ "value": {
5482
+ "type": "string"
5483
+ }
5484
+ },
5485
+ {
5486
+ "name": "name",
5487
+ "description": "The name of the radio group, submitted as a name/value pair with form data.",
5488
+ "value": {
5489
+ "type": "string"
5490
+ }
5491
+ },
5492
+ {
5493
+ "name": "value",
5494
+ "description": "The current value of the radio group, submitted as a name/value pair with form data.",
5495
+ "value": {
5496
+ "type": "string"
5497
+ }
5498
+ },
5499
+ {
5500
+ "name": "size",
5501
+ "description": "The radio group's size. This size will be applied to the label, all child radios and radio buttons.",
5502
+ "value": {
5503
+ "type": "'lg' | 'sm'"
5504
+ }
5505
+ },
5506
+ {
5507
+ "name": "form",
5508
+ "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.",
5509
+ "value": {
5510
+ "type": "string"
5511
+ }
5512
+ },
5513
+ {
5514
+ "name": "required",
5515
+ "description": "Ensures a child radio is checked before allowing the containing form to submit.",
5516
+ "value": {
5517
+ "type": "boolean"
5518
+ }
5519
+ },
5520
+ {
5521
+ "name": "orientation",
5522
+ "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.",
5523
+ "value": {
5524
+ "type": "'horizontal' | 'vertical'"
5525
+ }
5526
+ }
5527
+ ]
5528
+ },
5529
+ {
5530
+ "name": "sd-1-20-0-radio",
5531
+ "description": "",
5532
+ "doc-url": "https://solid.union-investment.com/[storybook-link]/radio",
5533
+ "js": {
5534
+ "properties": [
5535
+ {
5536
+ "name": "checked",
5537
+ "description": "A Boolean attribute which, if present, indicates that this radio button is the default check one in the group.",
5538
+ "value": {
5539
+ "type": "boolean"
5540
+ }
5541
+ },
5542
+ {
5543
+ "name": "hasFocus",
5544
+ "value": {
5545
+ "type": "boolean"
5546
+ }
5547
+ },
5548
+ {
5549
+ "name": "size",
5550
+ "description": "The radio's size.",
5551
+ "value": {
5552
+ "type": "'lg' | 'sm'"
5553
+ }
5554
+ },
5555
+ {
5556
+ "name": "invalid",
5557
+ "description": "A Boolean attribute which, if present, marks the radio Button valid or invalid",
4541
5558
  "value": {
4542
5559
  "type": "boolean"
4543
5560
  }
4544
5561
  },
4545
5562
  {
4546
- "name": "shiftBoundary",
4547
- "description": "The shift boundary describes clipping element(s) that overflow will be checked relative to when shifting. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
5563
+ "name": "disabled",
5564
+ "description": "A Boolean attribute which, if present, disables the radio.",
4548
5565
  "value": {
4549
- "type": "Element | Element[]"
5566
+ "type": "boolean"
4550
5567
  }
4551
5568
  },
4552
5569
  {
4553
- "name": "shiftPadding",
4554
- "description": "The amount of padding, in pixels, to exceed before the shift behavior will occur.",
5570
+ "name": "value",
5571
+ "description": "The radio's value. When selected, the radio group will receive this value.",
4555
5572
  "value": {
4556
- "type": "number"
5573
+ "type": "string"
4557
5574
  }
4558
5575
  },
4559
5576
  {
4560
- "name": "autoSize",
4561
- "description": "When set, this will cause the popup to automatically resize itself to prevent it from overflowing.",
4562
- "value": {
4563
- "type": "'horizontal' | 'vertical' | 'both'"
4564
- }
5577
+ "name": "addEventListeners",
5578
+ "value": {}
4565
5579
  },
4566
5580
  {
4567
- "name": "sync",
4568
- "description": "Syncs the popup's width or height to that of the anchor element.",
4569
- "value": {
4570
- "type": "'width' | 'height' | 'both'"
4571
- }
5581
+ "name": "removeEventListeners",
5582
+ "value": {}
4572
5583
  },
4573
5584
  {
4574
- "name": "autoSizeBoundary",
4575
- "description": "The auto-size boundary describes clipping element(s) that overflow will be checked relative to when resizing. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
4576
- "value": {
4577
- "type": "Element | Element[]"
4578
- }
5585
+ "name": "handleBlur",
5586
+ "value": {}
4579
5587
  },
4580
5588
  {
4581
- "name": "autoSizePadding",
4582
- "description": "The amount of padding, in pixels, to exceed before the auto-size behavior will occur.",
4583
- "value": {
4584
- "type": "number"
4585
- }
5589
+ "name": "handleClick",
5590
+ "value": {}
4586
5591
  },
4587
5592
  {
4588
- "name": "handleAnchorChange",
5593
+ "name": "handleFocus",
4589
5594
  "value": {}
4590
5595
  },
4591
5596
  {
4592
- "name": "start",
5597
+ "name": "setInitialAttributes",
4593
5598
  "value": {}
4594
5599
  },
4595
5600
  {
4596
- "name": "stop",
5601
+ "name": "handleCheckedChange",
4597
5602
  "value": {}
4598
5603
  },
4599
5604
  {
4600
- "name": "reposition",
4601
- "description": "Forces the popup to recalculate and reposition itself.",
5605
+ "name": "handleDisabledChange",
4602
5606
  "value": {}
4603
5607
  }
4604
5608
  ],
4605
5609
  "events": [
4606
5610
  {
4607
- "name": "sd-reposition",
4608
- "description": "Emitted when the popup is repositioned. This event can fire a lot, so avoid putting expensive operations in your listener or consider debouncing it."
5611
+ "name": "sd-blur",
5612
+ "description": "Emitted when the control loses focus."
5613
+ },
5614
+ {
5615
+ "name": "sd-focus",
5616
+ "description": "Emitted when the control gains focus."
4609
5617
  }
4610
5618
  ]
4611
5619
  },
4612
5620
  "attributes": [
4613
5621
  {
4614
- "name": "anchor",
4615
- "description": "The element the popup will be anchored to. If the anchor lives outside of the popup, you can provide its `id` or a\nreference to it here. If the anchor lives inside the popup, use the `anchor` slot instead.",
4616
- "value": {
4617
- "type": "Element | string"
4618
- }
4619
- },
4620
- {
4621
- "name": "active",
4622
- "description": "Activates the positioning logic and shows the popup. When this attribute is removed, the positioning logic is torn\ndown and the popup will be hidden.",
4623
- "value": {
4624
- "type": "boolean"
4625
- }
4626
- },
4627
- {
4628
- "name": "placement",
4629
- "description": "The preferred placement of the popup. Note that the actual placement will vary as configured to keep the\npanel inside of the viewport.",
4630
- "value": {
4631
- "type": "| 'top'\n | 'top-start'\n | 'top-end'\n | 'bottom'\n | 'bottom-start'\n | 'bottom-end'\n | 'right'\n | 'right-start'\n | 'right-end'\n | 'left'\n | 'left-start'\n | 'left-end'"
4632
- }
4633
- },
4634
- {
4635
- "name": "strategy",
4636
- "description": "Determines how the popup is positioned. The `absolute` strategy works well in most cases, but if\noverflow is clipped, using a `fixed` position strategy can often workaround it.",
4637
- "value": {
4638
- "type": "'absolute' | 'fixed'"
4639
- }
4640
- },
4641
- {
4642
- "name": "distance",
4643
- "description": "The distance in pixels from which to offset the panel away from its anchor.",
4644
- "value": {
4645
- "type": "number"
4646
- }
4647
- },
4648
- {
4649
- "name": "skidding",
4650
- "description": "The distance in pixels from which to offset the panel along its anchor.",
5622
+ "name": "size",
5623
+ "description": "The radio's size.",
4651
5624
  "value": {
4652
- "type": "number"
5625
+ "type": "'lg' | 'sm'"
4653
5626
  }
4654
5627
  },
4655
5628
  {
4656
- "name": "arrow",
4657
- "description": "Attaches an arrow to the popup. The arrow's size and color can be customized using the `--arrow-size` and\n`--arrow-color` custom properties. For additional customizations, you can also target the arrow using\n`::part(arrow)` in your stylesheet.",
5629
+ "name": "invalid",
5630
+ "description": "A Boolean attribute which, if present, marks the radio Button valid or invalid",
4658
5631
  "value": {
4659
5632
  "type": "boolean"
4660
5633
  }
4661
5634
  },
4662
5635
  {
4663
- "name": "arrow-placement",
4664
- "description": "The placement of the arrow. The default is `anchor`, which will align the arrow as close to the center of the\nanchor as possible, considering available space and `arrow-padding`. A value of `start`, `end`, or `center` will\nalign the arrow to the start, end, or center of the popover instead.",
4665
- "value": {
4666
- "type": "'start' | 'end' | 'center' | 'anchor'"
4667
- }
4668
- },
4669
- {
4670
- "name": "arrow-padding",
4671
- "description": "The amount of padding between the arrow and the edges of the popup. If the popup has a border-radius, for example,\nthis will prevent it from overflowing the corners.",
4672
- "value": {
4673
- "type": "number"
4674
- }
4675
- },
4676
- {
4677
- "name": "flip",
4678
- "description": "When set, placement of the popup will flip to the opposite site to keep it in view. You can use\n`flipFallbackPlacements` to further configure how the fallback placement is determined.",
5636
+ "name": "disabled",
5637
+ "description": "A Boolean attribute which, if present, disables the radio.",
4679
5638
  "value": {
4680
5639
  "type": "boolean"
4681
5640
  }
4682
5641
  },
4683
5642
  {
4684
- "name": "flip-fallback-placements",
4685
- "description": "If the preferred placement doesn't fit, popup will be tested in these fallback placements until one fits. Must be a\nstring of any number of placements separated by a space, e.g. \"top bottom left\". If no placement fits, the flip\nfallback strategy will be used instead.",
5643
+ "name": "value",
5644
+ "description": "The radio's value. When selected, the radio group will receive this value.",
4686
5645
  "value": {
4687
5646
  "type": "string"
4688
5647
  }
4689
- },
4690
- {
4691
- "name": "flip-fallback-strategy",
4692
- "description": "When neither the preferred placement nor the fallback placements fit, this value will be used to determine whether\nthe popup should be positioned using the best available fit based on available space or as it was initially\npreferred.",
4693
- "value": {
4694
- "type": "'best-fit' | 'initial'"
4695
- }
4696
- },
4697
- {
4698
- "name": "flipBoundary",
4699
- "description": "The flip boundary describes clipping element(s) that overflow will be checked relative to when flipping. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
4700
- "value": {
4701
- "type": "Element | Element[]"
4702
- }
4703
- },
4704
- {
4705
- "name": "flip-padding",
4706
- "description": "The amount of padding, in pixels, to exceed before the flip behavior will occur.",
4707
- "value": {
4708
- "type": "number"
4709
- }
4710
- },
4711
- {
4712
- "name": "shift",
4713
- "description": "Moves the popup along the axis to keep it in view when clipped.",
4714
- "value": {
4715
- "type": "boolean"
4716
- }
4717
- },
4718
- {
4719
- "name": "shiftBoundary",
4720
- "description": "The shift boundary describes clipping element(s) that overflow will be checked relative to when shifting. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
4721
- "value": {
4722
- "type": "Element | Element[]"
4723
- }
4724
- },
4725
- {
4726
- "name": "shift-padding",
4727
- "description": "The amount of padding, in pixels, to exceed before the shift behavior will occur.",
4728
- "value": {
4729
- "type": "number"
4730
- }
4731
- },
4732
- {
4733
- "name": "auto-size",
4734
- "description": "When set, this will cause the popup to automatically resize itself to prevent it from overflowing.",
4735
- "value": {
4736
- "type": "'horizontal' | 'vertical' | 'both'"
4737
- }
4738
- },
4739
- {
4740
- "name": "sync",
4741
- "description": "Syncs the popup's width or height to that of the anchor element.",
4742
- "value": {
4743
- "type": "'width' | 'height' | 'both'"
4744
- }
4745
- },
4746
- {
4747
- "name": "autoSizeBoundary",
4748
- "description": "The auto-size boundary describes clipping element(s) that overflow will be checked relative to when resizing. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
4749
- "value": {
4750
- "type": "Element | Element[]"
4751
- }
4752
- },
4753
- {
4754
- "name": "auto-size-padding",
4755
- "description": "The amount of padding, in pixels, to exceed before the auto-size behavior will occur.",
4756
- "value": {
4757
- "type": "number"
4758
- }
4759
5648
  }
4760
5649
  ]
4761
5650
  },
4762
5651
  {
4763
- "name": "sd-1-18-1-spinner",
5652
+ "name": "sd-1-20-0-spinner",
4764
5653
  "description": "",
4765
5654
  "doc-url": "https://solid.union-investment.com/[storybook-link]/spinner",
4766
5655
  "js": {
@@ -4790,7 +5679,7 @@
4790
5679
  ]
4791
5680
  },
4792
5681
  {
4793
- "name": "sd-1-18-1-tag",
5682
+ "name": "sd-1-20-0-tag",
4794
5683
  "description": "",
4795
5684
  "doc-url": "https://solid.union-investment.com/[storybook-link]/tag",
4796
5685
  "js": {
@@ -4936,7 +5825,7 @@
4936
5825
  ]
4937
5826
  },
4938
5827
  {
4939
- "name": "sd-1-18-1-teaser",
5828
+ "name": "sd-1-20-0-teaser",
4940
5829
  "description": "",
4941
5830
  "doc-url": "https://solid.union-investment.com/[storybook-link]/teaser",
4942
5831
  "js": {
@@ -5006,6 +5895,107 @@
5006
5895
  }
5007
5896
  }
5008
5897
  ]
5898
+ },
5899
+ {
5900
+ "name": "sd-1-20-0-video",
5901
+ "description": "",
5902
+ "doc-url": "https://solid.union-investment.com/[storybook-link]/video",
5903
+ "js": {
5904
+ "properties": [
5905
+ {
5906
+ "name": "playing",
5907
+ "description": "Set to `true` to hide the play icon and the overlay.",
5908
+ "value": {
5909
+ "type": "boolean"
5910
+ }
5911
+ },
5912
+ {
5913
+ "name": "overlay",
5914
+ "description": "Set to `true` to show a dark overlay. Only used when `playing` is `false`.",
5915
+ "value": {
5916
+ "type": "boolean"
5917
+ }
5918
+ },
5919
+ {
5920
+ "name": "isBelowBreakpoint",
5921
+ "description": "Reactive property to trigger breakpoint re-renders.",
5922
+ "value": {
5923
+ "type": "boolean"
5924
+ }
5925
+ },
5926
+ {
5927
+ "name": "resizeObserver",
5928
+ "value": {
5929
+ "type": "ResizeObserver"
5930
+ }
5931
+ },
5932
+ {
5933
+ "name": "hasSlotController",
5934
+ "value": {}
5935
+ },
5936
+ {
5937
+ "name": "poster",
5938
+ "description": "Getter for optional poster slot.",
5939
+ "value": {
5940
+ "type": "Element | null"
5941
+ }
5942
+ },
5943
+ {
5944
+ "name": "fadeoutPoster",
5945
+ "description": "Fade out poster after initial play.",
5946
+ "value": {}
5947
+ },
5948
+ {
5949
+ "name": "hidePoster",
5950
+ "description": "Hide poster after initial play & fadeout.",
5951
+ "value": {}
5952
+ },
5953
+ {
5954
+ "name": "play",
5955
+ "description": "Utility function to group play behaviors.",
5956
+ "value": {}
5957
+ },
5958
+ {
5959
+ "name": "handleKeydown",
5960
+ "description": "Restrict keydown control to enter and space bar to mimic the native video tag behavior. If a KeyboardEvent is used, refocus on the native video element to give the user seamless keyboard control.",
5961
+ "value": {}
5962
+ },
5963
+ {
5964
+ "name": "handleButtonResize",
5965
+ "description": "Resize the play-button-bg when passing host element width breakpoint 414px.",
5966
+ "value": {}
5967
+ }
5968
+ ],
5969
+ "events": [
5970
+ {
5971
+ "name": "sd-play",
5972
+ "description": "Event emitted when clicking the `play-icon`. Listen for this event and use it to play the wrapped video."
5973
+ }
5974
+ ]
5975
+ },
5976
+ "attributes": [
5977
+ {
5978
+ "name": "playing",
5979
+ "description": "Set to `true` to hide the play icon and the overlay.",
5980
+ "value": {
5981
+ "type": "boolean"
5982
+ }
5983
+ },
5984
+ {
5985
+ "name": "overlay",
5986
+ "description": "Set to `true` to show a dark overlay. Only used when `playing` is `false`.",
5987
+ "value": {
5988
+ "type": "boolean"
5989
+ }
5990
+ },
5991
+ {
5992
+ "name": "isBelowBreakpoint",
5993
+ "description": "Reactive property to trigger breakpoint re-renders.",
5994
+ "value": {
5995
+ "type": "boolean"
5996
+ }
5997
+ }
5998
+ ]
5009
5999
  }
5010
6000
  ]
5011
6001
  }