@solid-design-system/components 1.19.0 → 1.21.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.
- package/dist/components/es/accordion-group.js +1 -1
- package/dist/components/es/accordion.js +1 -1
- package/dist/components/es/brandshape.js +1 -1
- package/dist/components/es/button.js +1 -1
- package/dist/components/es/carousel.js +2 -2
- package/dist/components/es/drawer.js +1 -1
- package/dist/components/es/dropdown.js +1 -1
- package/dist/components/es/form.js +1 -0
- package/dist/components/es/icon.js +3 -3
- package/dist/components/es/if-defined.js +2 -2
- package/dist/components/es/link.js +1 -1
- package/dist/components/es/lit-element.js +4 -4
- package/dist/components/es/navigation-item.js +2 -2
- package/dist/components/es/popup.js +1 -1
- package/dist/components/es/query-assigned-elements.js +6 -0
- package/dist/components/es/query.js +7 -2
- package/dist/components/es/radio-group.js +1 -0
- package/dist/components/es/radio.js +1 -0
- package/dist/components/es/solid-components2.js +1 -1
- package/dist/components/es/solid-element.js +2 -12
- package/dist/components/es/state.js +1 -1
- package/dist/components/es/static.js +1 -1
- package/dist/components/es/tag.js +1 -1
- package/dist/components/es/teaser.js +1 -1
- package/dist/components/es/video.js +1 -1
- package/dist/components/umd/solid-components.js +18 -18
- package/dist/custom-elements.json +1 -1
- package/dist/package/_components/button-group/button-group.d.ts +19 -0
- package/dist/package/_components/button-group/button-group.js +76 -0
- package/dist/package/_components/button-group/button-group.styles.d.ts +2 -0
- package/dist/package/_components/button-group/button-group.styles.js +6 -0
- package/dist/package/components/button/button.d.ts +4 -0
- package/dist/package/components/button/button.js +25 -3
- package/dist/package/components/radio/radio.d.ts +27 -0
- package/dist/package/components/radio/radio.js +130 -0
- package/dist/package/components/radio-group/radio-group.d.ts +52 -0
- package/dist/package/components/radio-group/radio-group.js +321 -0
- package/dist/package/internal/form.d.ts +7 -1
- package/dist/package/internal/form.js +110 -49
- package/dist/package/internal/solid-element.d.ts +2 -0
- package/dist/package/node_modules/.pnpm/{@shoelace-style_localize@3.1.0 → @shoelace-style_localize@3.1.2}/node_modules/@shoelace-style/localize/dist/index.js +1 -1
- package/dist/package/solid-components.d.ts +2 -0
- package/dist/package/solid-components.js +12 -8
- package/dist/package/styles/tailwind.css.js +1 -1
- package/dist/package/translations/en.js +1 -1
- package/dist/package/utilities/localize.js +1 -1
- package/dist/versioned-components/es/accordion-group.js +1 -1
- package/dist/versioned-components/es/accordion.js +1 -1
- package/dist/versioned-components/es/badge.js +1 -1
- package/dist/versioned-components/es/brandshape.js +1 -1
- package/dist/versioned-components/es/button.js +1 -1
- package/dist/versioned-components/es/carousel-item.js +1 -1
- package/dist/versioned-components/es/carousel.js +3 -3
- package/dist/versioned-components/es/divider.js +1 -1
- package/dist/versioned-components/es/drawer.js +1 -1
- package/dist/versioned-components/es/dropdown.js +1 -1
- package/dist/versioned-components/es/form.js +1 -0
- package/dist/versioned-components/es/icon.js +3 -3
- package/dist/versioned-components/es/if-defined.js +2 -2
- package/dist/versioned-components/es/include.js +1 -1
- package/dist/versioned-components/es/link.js +1 -1
- package/dist/versioned-components/es/lit-element.js +4 -4
- package/dist/versioned-components/es/navigation-item.js +2 -2
- package/dist/versioned-components/es/popup.js +1 -1
- package/dist/versioned-components/es/query-assigned-elements.js +6 -0
- package/dist/versioned-components/es/query.js +7 -2
- package/dist/versioned-components/es/radio-group.js +1 -0
- package/dist/versioned-components/es/radio.js +1 -0
- package/dist/versioned-components/es/solid-components2.js +1 -1
- package/dist/versioned-components/es/solid-element.js +2 -12
- package/dist/versioned-components/es/spinner.js +1 -1
- package/dist/versioned-components/es/state.js +1 -1
- package/dist/versioned-components/es/static.js +1 -1
- package/dist/versioned-components/es/tag.js +1 -1
- package/dist/versioned-components/es/teaser.js +1 -1
- package/dist/versioned-components/es/video.js +1 -1
- package/dist/versioned-package/_components/button-group/button-group.d.ts +19 -0
- package/dist/versioned-package/_components/button-group/button-group.js +76 -0
- package/dist/versioned-package/_components/button-group/button-group.styles.d.ts +2 -0
- package/dist/versioned-package/_components/button-group/button-group.styles.js +6 -0
- package/dist/versioned-package/components/accordion/accordion.d.ts +1 -1
- package/dist/versioned-package/components/accordion/accordion.js +2 -2
- package/dist/versioned-package/components/accordion-group/accordion-group.d.ts +1 -1
- package/dist/versioned-package/components/accordion-group/accordion-group.js +3 -3
- package/dist/versioned-package/components/badge/badge.d.ts +1 -1
- package/dist/versioned-package/components/badge/badge.js +1 -1
- package/dist/versioned-package/components/brandshape/brandshape.d.ts +1 -1
- package/dist/versioned-package/components/brandshape/brandshape.js +1 -1
- package/dist/versioned-package/components/button/button.d.ts +5 -1
- package/dist/versioned-package/components/button/button.js +29 -7
- package/dist/versioned-package/components/carousel/carousel.d.ts +1 -1
- package/dist/versioned-package/components/carousel/carousel.js +6 -6
- package/dist/versioned-package/components/carousel-item/carousel-item.d.ts +1 -1
- package/dist/versioned-package/components/carousel-item/carousel-item.js +1 -1
- package/dist/versioned-package/components/divider/divider.d.ts +1 -1
- package/dist/versioned-package/components/divider/divider.js +2 -2
- package/dist/versioned-package/components/drawer/drawer.d.ts +1 -1
- package/dist/versioned-package/components/drawer/drawer.js +2 -2
- package/dist/versioned-package/components/dropdown/dropdown.d.ts +1 -1
- package/dist/versioned-package/components/dropdown/dropdown.js +6 -6
- package/dist/versioned-package/components/icon/icon.d.ts +1 -1
- package/dist/versioned-package/components/icon/icon.js +1 -1
- package/dist/versioned-package/components/include/include.d.ts +1 -1
- package/dist/versioned-package/components/include/include.js +1 -1
- package/dist/versioned-package/components/link/link.d.ts +1 -1
- package/dist/versioned-package/components/link/link.js +2 -2
- package/dist/versioned-package/components/navigation-item/navigation-item.d.ts +1 -1
- package/dist/versioned-package/components/navigation-item/navigation-item.js +3 -3
- package/dist/versioned-package/components/popup/popup.d.ts +1 -1
- package/dist/versioned-package/components/popup/popup.js +1 -1
- package/dist/versioned-package/components/radio/radio.d.ts +27 -0
- package/dist/versioned-package/components/radio/radio.js +130 -0
- package/dist/versioned-package/components/radio-group/radio-group.d.ts +52 -0
- package/dist/versioned-package/components/radio-group/radio-group.js +321 -0
- package/dist/versioned-package/components/spinner/spinner.d.ts +1 -1
- package/dist/versioned-package/components/spinner/spinner.js +1 -1
- package/dist/versioned-package/components/tag/tag.d.ts +1 -1
- package/dist/versioned-package/components/tag/tag.js +2 -2
- package/dist/versioned-package/components/teaser/teaser.js +1 -1
- package/dist/versioned-package/components/video/video.d.ts +1 -1
- package/dist/versioned-package/components/video/video.js +2 -2
- package/dist/versioned-package/internal/form.d.ts +7 -1
- package/dist/versioned-package/internal/form.js +110 -49
- package/dist/versioned-package/internal/solid-element.d.ts +2 -0
- package/dist/versioned-package/node_modules/.pnpm/{@shoelace-style_localize@3.1.0 → @shoelace-style_localize@3.1.2}/node_modules/@shoelace-style/localize/dist/index.js +1 -1
- package/dist/versioned-package/solid-components.d.ts +2 -0
- package/dist/versioned-package/solid-components.js +12 -8
- package/dist/versioned-package/styles/tailwind.css.js +1 -1
- package/dist/versioned-package/translations/en.js +1 -1
- package/dist/versioned-package/utilities/localize.js +1 -1
- package/dist/versioned-styles/solid-styles.css +1 -1
- package/dist/vscode.html-custom-data.json +201 -21
- package/dist/web-types.json +910 -122
- package/package.json +51 -56
package/dist/web-types.json
CHANGED
|
@@ -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.
|
|
4
|
+
"version": "1.21.0",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework-config": {
|
|
7
7
|
"enable-when": {
|
|
@@ -414,6 +414,16 @@
|
|
|
414
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
|
},
|
|
@@ -2385,233 +2408,604 @@
|
|
|
2385
2408
|
]
|
|
2386
2409
|
},
|
|
2387
2410
|
{
|
|
2388
|
-
"name": "sd-
|
|
2411
|
+
"name": "sd-radio-group",
|
|
2389
2412
|
"description": "",
|
|
2390
|
-
"doc-url": "https://solid.union-investment.com/[storybook-link]/
|
|
2413
|
+
"doc-url": "https://solid.union-investment.com/[storybook-link]/radio-group",
|
|
2391
2414
|
"js": {
|
|
2392
2415
|
"properties": [
|
|
2393
2416
|
{
|
|
2394
|
-
"name": "
|
|
2395
|
-
"description": "The color color of the spinner.",
|
|
2417
|
+
"name": "dependencies",
|
|
2396
2418
|
"value": {
|
|
2397
|
-
"type": "
|
|
2419
|
+
"type": "object"
|
|
2398
2420
|
}
|
|
2399
2421
|
},
|
|
2400
2422
|
{
|
|
2401
|
-
"name": "
|
|
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": "
|
|
2425
|
-
"
|
|
2427
|
+
"name": "hasSlotController",
|
|
2428
|
+
"value": {}
|
|
2429
|
+
},
|
|
2430
|
+
{
|
|
2431
|
+
"name": "customValidityMessage",
|
|
2426
2432
|
"value": {
|
|
2427
|
-
"type": "
|
|
2433
|
+
"type": "string"
|
|
2428
2434
|
}
|
|
2429
2435
|
},
|
|
2430
2436
|
{
|
|
2431
|
-
"name": "
|
|
2432
|
-
"description": "Displays the tag in a selected state.",
|
|
2437
|
+
"name": "validationTimeout",
|
|
2433
2438
|
"value": {
|
|
2434
|
-
"type": "
|
|
2439
|
+
"type": "number"
|
|
2435
2440
|
}
|
|
2436
2441
|
},
|
|
2437
2442
|
{
|
|
2438
|
-
"name": "
|
|
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": "
|
|
2446
|
-
"
|
|
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": "
|
|
2453
|
-
"description": "
|
|
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": "
|
|
2460
|
-
"description": "
|
|
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": "
|
|
2472
|
+
"type": "string"
|
|
2463
2473
|
}
|
|
2464
2474
|
},
|
|
2465
2475
|
{
|
|
2466
|
-
"name": "
|
|
2467
|
-
"description": "
|
|
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
|
|
2479
|
+
"type": "string"
|
|
2470
2480
|
}
|
|
2471
2481
|
},
|
|
2472
2482
|
{
|
|
2473
|
-
"name": "
|
|
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": "
|
|
2523
|
+
"name": "validationMessage",
|
|
2524
|
+
"description": "Gets the validation message",
|
|
2478
2525
|
"value": {}
|
|
2479
2526
|
},
|
|
2480
2527
|
{
|
|
2481
|
-
"name": "
|
|
2528
|
+
"name": "getAllRadios",
|
|
2482
2529
|
"value": {}
|
|
2483
2530
|
},
|
|
2484
2531
|
{
|
|
2485
|
-
"name": "
|
|
2486
|
-
"description": "Simulates a click on the tag.",
|
|
2532
|
+
"name": "handleRadioClick",
|
|
2487
2533
|
"value": {}
|
|
2488
2534
|
},
|
|
2489
2535
|
{
|
|
2490
|
-
"name": "
|
|
2491
|
-
"description": "Sets focus on the tag.",
|
|
2536
|
+
"name": "handleKeyDown",
|
|
2492
2537
|
"value": {}
|
|
2493
2538
|
},
|
|
2494
2539
|
{
|
|
2495
|
-
"name": "
|
|
2496
|
-
"
|
|
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-
|
|
2503
|
-
"description": "Emitted when the
|
|
2594
|
+
"name": "sd-change",
|
|
2595
|
+
"description": "Emitted when the radio group's selected value changes."
|
|
2504
2596
|
},
|
|
2505
2597
|
{
|
|
2506
|
-
"name": "sd-
|
|
2507
|
-
"description": "Emitted when the
|
|
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": "
|
|
2514
|
-
"description": "The
|
|
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": "
|
|
2612
|
+
"type": "string"
|
|
2517
2613
|
}
|
|
2518
2614
|
},
|
|
2519
2615
|
{
|
|
2520
|
-
"name": "
|
|
2521
|
-
"description": "
|
|
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": "
|
|
2619
|
+
"type": "string"
|
|
2524
2620
|
}
|
|
2525
2621
|
},
|
|
2526
2622
|
{
|
|
2527
|
-
"name": "
|
|
2528
|
-
"description": "
|
|
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": "
|
|
2626
|
+
"type": "string"
|
|
2531
2627
|
}
|
|
2532
2628
|
},
|
|
2533
2629
|
{
|
|
2534
|
-
"name": "
|
|
2535
|
-
"description": "
|
|
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": "
|
|
2633
|
+
"type": "'lg' | 'sm'"
|
|
2538
2634
|
}
|
|
2539
2635
|
},
|
|
2540
2636
|
{
|
|
2541
|
-
"name": "
|
|
2542
|
-
"description": "
|
|
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": "
|
|
2549
|
-
"description": "
|
|
2644
|
+
"name": "required",
|
|
2645
|
+
"description": "Ensures a child radio is checked before allowing the containing form to submit.",
|
|
2550
2646
|
"value": {
|
|
2551
|
-
"type": "
|
|
2647
|
+
"type": "boolean"
|
|
2552
2648
|
}
|
|
2553
2649
|
},
|
|
2554
2650
|
{
|
|
2555
|
-
"name": "
|
|
2556
|
-
"description": "
|
|
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": "
|
|
2654
|
+
"type": "'horizontal' | 'vertical'"
|
|
2559
2655
|
}
|
|
2560
2656
|
}
|
|
2561
2657
|
]
|
|
2562
2658
|
},
|
|
2563
2659
|
{
|
|
2564
|
-
"name": "sd-
|
|
2660
|
+
"name": "sd-radio",
|
|
2565
2661
|
"description": "",
|
|
2566
|
-
"doc-url": "https://solid.union-investment.com/[storybook-link]/
|
|
2662
|
+
"doc-url": "https://solid.union-investment.com/[storybook-link]/radio",
|
|
2567
2663
|
"js": {
|
|
2568
2664
|
"properties": [
|
|
2569
2665
|
{
|
|
2570
|
-
"name": "
|
|
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": "
|
|
2669
|
+
"type": "boolean"
|
|
2573
2670
|
}
|
|
2574
2671
|
},
|
|
2575
2672
|
{
|
|
2576
|
-
"name": "
|
|
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": "
|
|
2675
|
+
"type": "boolean"
|
|
2580
2676
|
}
|
|
2581
2677
|
},
|
|
2582
2678
|
{
|
|
2583
|
-
"name": "
|
|
2584
|
-
"description": "The
|
|
2679
|
+
"name": "size",
|
|
2680
|
+
"description": "The radio's size.",
|
|
2585
2681
|
"value": {
|
|
2586
|
-
"type": "
|
|
2682
|
+
"type": "'lg' | 'sm'"
|
|
2587
2683
|
}
|
|
2588
2684
|
},
|
|
2589
2685
|
{
|
|
2590
|
-
"name": "
|
|
2686
|
+
"name": "invalid",
|
|
2687
|
+
"description": "A Boolean attribute which, if present, marks the radio Button valid or invalid",
|
|
2591
2688
|
"value": {
|
|
2592
|
-
"type": "
|
|
2689
|
+
"type": "boolean"
|
|
2593
2690
|
}
|
|
2594
2691
|
},
|
|
2595
2692
|
{
|
|
2596
|
-
"name": "
|
|
2597
|
-
"
|
|
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": "
|
|
2700
|
+
"name": "value",
|
|
2701
|
+
"description": "The radio's value. When selected, the radio group will receive this value.",
|
|
2601
2702
|
"value": {
|
|
2602
|
-
"type": "
|
|
2703
|
+
"type": "string"
|
|
2603
2704
|
}
|
|
2604
2705
|
},
|
|
2605
2706
|
{
|
|
2606
|
-
"name": "
|
|
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": "
|
|
2752
|
+
"name": "size",
|
|
2753
|
+
"description": "The radio's size.",
|
|
2754
|
+
"value": {
|
|
2755
|
+
"type": "'lg' | 'sm'"
|
|
2756
|
+
}
|
|
2757
|
+
},
|
|
2758
|
+
{
|
|
2759
|
+
"name": "invalid",
|
|
2760
|
+
"description": "A Boolean attribute which, if present, marks the radio Button valid or invalid",
|
|
2761
|
+
"value": {
|
|
2762
|
+
"type": "boolean"
|
|
2763
|
+
}
|
|
2764
|
+
},
|
|
2765
|
+
{
|
|
2766
|
+
"name": "disabled",
|
|
2767
|
+
"description": "A Boolean attribute which, if present, disables the radio.",
|
|
2768
|
+
"value": {
|
|
2769
|
+
"type": "boolean"
|
|
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
|
+
}
|
|
2778
|
+
}
|
|
2779
|
+
]
|
|
2780
|
+
},
|
|
2781
|
+
{
|
|
2782
|
+
"name": "sd-spinner",
|
|
2783
|
+
"description": "",
|
|
2784
|
+
"doc-url": "https://solid.union-investment.com/[storybook-link]/spinner",
|
|
2785
|
+
"js": {
|
|
2786
|
+
"properties": [
|
|
2787
|
+
{
|
|
2788
|
+
"name": "color",
|
|
2789
|
+
"description": "The color color of the spinner.",
|
|
2790
|
+
"value": {
|
|
2791
|
+
"type": "'primary' | 'white' | 'currentColor'"
|
|
2792
|
+
}
|
|
2793
|
+
},
|
|
2794
|
+
{
|
|
2795
|
+
"name": "localize",
|
|
2796
|
+
"value": {}
|
|
2797
|
+
}
|
|
2798
|
+
],
|
|
2799
|
+
"events": []
|
|
2800
|
+
},
|
|
2801
|
+
"attributes": [
|
|
2802
|
+
{
|
|
2803
|
+
"name": "color",
|
|
2804
|
+
"description": "The color color of the spinner.",
|
|
2805
|
+
"value": {
|
|
2806
|
+
"type": "'primary' | 'white' | 'currentColor'"
|
|
2807
|
+
}
|
|
2808
|
+
}
|
|
2809
|
+
]
|
|
2810
|
+
},
|
|
2811
|
+
{
|
|
2812
|
+
"name": "sd-tag",
|
|
2813
|
+
"description": "",
|
|
2814
|
+
"doc-url": "https://solid.union-investment.com/[storybook-link]/tag",
|
|
2815
|
+
"js": {
|
|
2816
|
+
"properties": [
|
|
2817
|
+
{
|
|
2818
|
+
"name": "size",
|
|
2819
|
+
"description": "The tag's size.",
|
|
2820
|
+
"value": {
|
|
2821
|
+
"type": "'lg' | 'sm'"
|
|
2822
|
+
}
|
|
2823
|
+
},
|
|
2824
|
+
{
|
|
2825
|
+
"name": "selected",
|
|
2826
|
+
"description": "Displays the tag in a selected state.",
|
|
2827
|
+
"value": {
|
|
2828
|
+
"type": "boolean"
|
|
2829
|
+
}
|
|
2830
|
+
},
|
|
2831
|
+
{
|
|
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>`.",
|
|
2848
|
+
"value": {
|
|
2849
|
+
"type": "string"
|
|
2850
|
+
}
|
|
2851
|
+
},
|
|
2852
|
+
{
|
|
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",
|
|
2868
|
+
"value": {}
|
|
2869
|
+
},
|
|
2870
|
+
{
|
|
2871
|
+
"name": "handleFocus",
|
|
2872
|
+
"value": {}
|
|
2873
|
+
},
|
|
2874
|
+
{
|
|
2875
|
+
"name": "isLink",
|
|
2876
|
+
"value": {}
|
|
2877
|
+
},
|
|
2878
|
+
{
|
|
2879
|
+
"name": "click",
|
|
2880
|
+
"description": "Simulates a click on the tag.",
|
|
2881
|
+
"value": {}
|
|
2882
|
+
},
|
|
2883
|
+
{
|
|
2884
|
+
"name": "focus",
|
|
2885
|
+
"description": "Sets focus on the tag.",
|
|
2886
|
+
"value": {}
|
|
2887
|
+
},
|
|
2888
|
+
{
|
|
2889
|
+
"name": "blur",
|
|
2890
|
+
"description": "Removes focus from the tag.",
|
|
2891
|
+
"value": {}
|
|
2892
|
+
}
|
|
2893
|
+
],
|
|
2894
|
+
"events": [
|
|
2895
|
+
{
|
|
2896
|
+
"name": "sd-blur",
|
|
2897
|
+
"description": "Emitted when the tag loses focus."
|
|
2898
|
+
},
|
|
2899
|
+
{
|
|
2900
|
+
"name": "sd-focus",
|
|
2901
|
+
"description": "Emitted when the tag gains focus."
|
|
2902
|
+
}
|
|
2903
|
+
]
|
|
2904
|
+
},
|
|
2905
|
+
"attributes": [
|
|
2906
|
+
{
|
|
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.",
|
|
2916
|
+
"value": {
|
|
2917
|
+
"type": "boolean"
|
|
2918
|
+
}
|
|
2919
|
+
},
|
|
2920
|
+
{
|
|
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>`.",
|
|
2937
|
+
"value": {
|
|
2938
|
+
"type": "string"
|
|
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
|
+
}
|
|
2954
|
+
}
|
|
2955
|
+
]
|
|
2956
|
+
},
|
|
2957
|
+
{
|
|
2958
|
+
"name": "sd-teaser",
|
|
2959
|
+
"description": "",
|
|
2960
|
+
"doc-url": "https://solid.union-investment.com/[storybook-link]/teaser",
|
|
2961
|
+
"js": {
|
|
2962
|
+
"properties": [
|
|
2963
|
+
{
|
|
2964
|
+
"name": "variant",
|
|
2965
|
+
"value": {
|
|
2966
|
+
"type": "'white' | 'white border-neutral-300' | 'neutral-100' | 'primary' | 'primary-100'"
|
|
2967
|
+
}
|
|
2968
|
+
},
|
|
2969
|
+
{
|
|
2970
|
+
"name": "breakpoint",
|
|
2971
|
+
"description": "Breakpoint where the teaser switches from `vertical` to `horizontal`. `0` is always `horizontal`, `9999` is always `vertical`.",
|
|
2972
|
+
"value": {
|
|
2973
|
+
"type": "number"
|
|
2974
|
+
}
|
|
2975
|
+
},
|
|
2976
|
+
{
|
|
2977
|
+
"name": "inset",
|
|
2978
|
+
"description": "The teaser's inner padding. This is always set in `white border-neutral-300`.",
|
|
2979
|
+
"value": {
|
|
2980
|
+
"type": "boolean"
|
|
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": {}
|
|
3002
|
+
}
|
|
3003
|
+
],
|
|
3004
|
+
"events": []
|
|
3005
|
+
},
|
|
3006
|
+
"attributes": [
|
|
3007
|
+
{
|
|
3008
|
+
"name": "variant",
|
|
2615
3009
|
"value": {
|
|
2616
3010
|
"type": "'white' | 'white border-neutral-300' | 'neutral-100' | 'primary' | 'primary-100'"
|
|
2617
3011
|
}
|
|
@@ -2734,7 +3128,7 @@
|
|
|
2734
3128
|
]
|
|
2735
3129
|
},
|
|
2736
3130
|
{
|
|
2737
|
-
"name": "sd-1-
|
|
3131
|
+
"name": "sd-1-21-0-accordion-group",
|
|
2738
3132
|
"description": "",
|
|
2739
3133
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/accordion-group",
|
|
2740
3134
|
"js": {
|
|
@@ -2764,7 +3158,7 @@
|
|
|
2764
3158
|
]
|
|
2765
3159
|
},
|
|
2766
3160
|
{
|
|
2767
|
-
"name": "sd-1-
|
|
3161
|
+
"name": "sd-1-21-0-accordion",
|
|
2768
3162
|
"description": "",
|
|
2769
3163
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/accordion",
|
|
2770
3164
|
"js": {
|
|
@@ -2847,7 +3241,7 @@
|
|
|
2847
3241
|
]
|
|
2848
3242
|
},
|
|
2849
3243
|
{
|
|
2850
|
-
"name": "sd-1-
|
|
3244
|
+
"name": "sd-1-21-0-badge",
|
|
2851
3245
|
"description": "",
|
|
2852
3246
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/badge",
|
|
2853
3247
|
"js": {
|
|
@@ -2901,7 +3295,7 @@
|
|
|
2901
3295
|
]
|
|
2902
3296
|
},
|
|
2903
3297
|
{
|
|
2904
|
-
"name": "sd-1-
|
|
3298
|
+
"name": "sd-1-21-0-brandshape",
|
|
2905
3299
|
"description": "",
|
|
2906
3300
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/brandshape",
|
|
2907
3301
|
"js": {
|
|
@@ -2990,7 +3384,7 @@
|
|
|
2990
3384
|
]
|
|
2991
3385
|
},
|
|
2992
3386
|
{
|
|
2993
|
-
"name": "sd-1-
|
|
3387
|
+
"name": "sd-1-21-0-button",
|
|
2994
3388
|
"description": "",
|
|
2995
3389
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/button",
|
|
2996
3390
|
"js": {
|
|
@@ -3135,19 +3529,33 @@
|
|
|
3135
3529
|
}
|
|
3136
3530
|
},
|
|
3137
3531
|
{
|
|
3138
|
-
"name": "
|
|
3532
|
+
"name": "validity",
|
|
3533
|
+
"description": "Gets the validity state object",
|
|
3139
3534
|
"value": {}
|
|
3140
3535
|
},
|
|
3141
3536
|
{
|
|
3142
|
-
"name": "
|
|
3537
|
+
"name": "validationMessage",
|
|
3538
|
+
"description": "Gets the validation message",
|
|
3143
3539
|
"value": {}
|
|
3144
3540
|
},
|
|
3145
3541
|
{
|
|
3146
|
-
"name": "
|
|
3542
|
+
"name": "handleBlur",
|
|
3147
3543
|
"value": {}
|
|
3148
3544
|
},
|
|
3149
3545
|
{
|
|
3150
|
-
"name": "
|
|
3546
|
+
"name": "handleFocus",
|
|
3547
|
+
"value": {}
|
|
3548
|
+
},
|
|
3549
|
+
{
|
|
3550
|
+
"name": "handleClick",
|
|
3551
|
+
"value": {}
|
|
3552
|
+
},
|
|
3553
|
+
{
|
|
3554
|
+
"name": "handleInvalid",
|
|
3555
|
+
"value": {}
|
|
3556
|
+
},
|
|
3557
|
+
{
|
|
3558
|
+
"name": "isButton",
|
|
3151
3559
|
"value": {}
|
|
3152
3560
|
},
|
|
3153
3561
|
{
|
|
@@ -3175,7 +3583,12 @@
|
|
|
3175
3583
|
},
|
|
3176
3584
|
{
|
|
3177
3585
|
"name": "checkValidity",
|
|
3178
|
-
"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.",
|
|
3179
3592
|
"value": {}
|
|
3180
3593
|
},
|
|
3181
3594
|
{
|
|
@@ -3197,6 +3610,10 @@
|
|
|
3197
3610
|
{
|
|
3198
3611
|
"name": "sd-focus",
|
|
3199
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."
|
|
3200
3617
|
}
|
|
3201
3618
|
]
|
|
3202
3619
|
},
|
|
@@ -3329,7 +3746,7 @@
|
|
|
3329
3746
|
]
|
|
3330
3747
|
},
|
|
3331
3748
|
{
|
|
3332
|
-
"name": "sd-1-
|
|
3749
|
+
"name": "sd-1-21-0-carousel-item",
|
|
3333
3750
|
"description": "",
|
|
3334
3751
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/carousel-item",
|
|
3335
3752
|
"js": {
|
|
@@ -3344,7 +3761,7 @@
|
|
|
3344
3761
|
"attributes": []
|
|
3345
3762
|
},
|
|
3346
3763
|
{
|
|
3347
|
-
"name": "sd-1-
|
|
3764
|
+
"name": "sd-1-21-0-carousel",
|
|
3348
3765
|
"description": "",
|
|
3349
3766
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/carousel",
|
|
3350
3767
|
"js": {
|
|
@@ -3548,7 +3965,7 @@
|
|
|
3548
3965
|
]
|
|
3549
3966
|
},
|
|
3550
3967
|
{
|
|
3551
|
-
"name": "sd-1-
|
|
3968
|
+
"name": "sd-1-21-0-divider",
|
|
3552
3969
|
"description": "",
|
|
3553
3970
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/divider",
|
|
3554
3971
|
"js": {
|
|
@@ -3588,7 +4005,7 @@
|
|
|
3588
4005
|
]
|
|
3589
4006
|
},
|
|
3590
4007
|
{
|
|
3591
|
-
"name": "sd-1-
|
|
4008
|
+
"name": "sd-1-21-0-drawer",
|
|
3592
4009
|
"description": "",
|
|
3593
4010
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/drawer",
|
|
3594
4011
|
"js": {
|
|
@@ -3741,7 +4158,7 @@
|
|
|
3741
4158
|
]
|
|
3742
4159
|
},
|
|
3743
4160
|
{
|
|
3744
|
-
"name": "sd-1-
|
|
4161
|
+
"name": "sd-1-21-0-dropdown",
|
|
3745
4162
|
"description": "",
|
|
3746
4163
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/dropdown",
|
|
3747
4164
|
"js": {
|
|
@@ -3995,7 +4412,7 @@
|
|
|
3995
4412
|
]
|
|
3996
4413
|
},
|
|
3997
4414
|
{
|
|
3998
|
-
"name": "sd-1-
|
|
4415
|
+
"name": "sd-1-21-0-icon",
|
|
3999
4416
|
"description": "",
|
|
4000
4417
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/icon",
|
|
4001
4418
|
"js": {
|
|
@@ -4104,7 +4521,7 @@
|
|
|
4104
4521
|
]
|
|
4105
4522
|
},
|
|
4106
4523
|
{
|
|
4107
|
-
"name": "sd-1-
|
|
4524
|
+
"name": "sd-1-21-0-include",
|
|
4108
4525
|
"description": "",
|
|
4109
4526
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/include",
|
|
4110
4527
|
"js": {
|
|
@@ -4175,7 +4592,7 @@
|
|
|
4175
4592
|
]
|
|
4176
4593
|
},
|
|
4177
4594
|
{
|
|
4178
|
-
"name": "sd-1-
|
|
4595
|
+
"name": "sd-1-21-0-link",
|
|
4179
4596
|
"description": "",
|
|
4180
4597
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/link",
|
|
4181
4598
|
"js": {
|
|
@@ -4302,7 +4719,7 @@
|
|
|
4302
4719
|
]
|
|
4303
4720
|
},
|
|
4304
4721
|
{
|
|
4305
|
-
"name": "sd-1-
|
|
4722
|
+
"name": "sd-1-21-0-navigation-item",
|
|
4306
4723
|
"description": "",
|
|
4307
4724
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/navigation-item",
|
|
4308
4725
|
"js": {
|
|
@@ -4527,7 +4944,7 @@
|
|
|
4527
4944
|
]
|
|
4528
4945
|
},
|
|
4529
4946
|
{
|
|
4530
|
-
"name": "sd-1-
|
|
4947
|
+
"name": "sd-1-21-0-popup",
|
|
4531
4948
|
"description": "",
|
|
4532
4949
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/popup",
|
|
4533
4950
|
"js": {
|
|
@@ -4861,7 +5278,378 @@
|
|
|
4861
5278
|
]
|
|
4862
5279
|
},
|
|
4863
5280
|
{
|
|
4864
|
-
"name": "sd-1-
|
|
5281
|
+
"name": "sd-1-21-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-21-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",
|
|
5558
|
+
"value": {
|
|
5559
|
+
"type": "boolean"
|
|
5560
|
+
}
|
|
5561
|
+
},
|
|
5562
|
+
{
|
|
5563
|
+
"name": "disabled",
|
|
5564
|
+
"description": "A Boolean attribute which, if present, disables the radio.",
|
|
5565
|
+
"value": {
|
|
5566
|
+
"type": "boolean"
|
|
5567
|
+
}
|
|
5568
|
+
},
|
|
5569
|
+
{
|
|
5570
|
+
"name": "value",
|
|
5571
|
+
"description": "The radio's value. When selected, the radio group will receive this value.",
|
|
5572
|
+
"value": {
|
|
5573
|
+
"type": "string"
|
|
5574
|
+
}
|
|
5575
|
+
},
|
|
5576
|
+
{
|
|
5577
|
+
"name": "addEventListeners",
|
|
5578
|
+
"value": {}
|
|
5579
|
+
},
|
|
5580
|
+
{
|
|
5581
|
+
"name": "removeEventListeners",
|
|
5582
|
+
"value": {}
|
|
5583
|
+
},
|
|
5584
|
+
{
|
|
5585
|
+
"name": "handleBlur",
|
|
5586
|
+
"value": {}
|
|
5587
|
+
},
|
|
5588
|
+
{
|
|
5589
|
+
"name": "handleClick",
|
|
5590
|
+
"value": {}
|
|
5591
|
+
},
|
|
5592
|
+
{
|
|
5593
|
+
"name": "handleFocus",
|
|
5594
|
+
"value": {}
|
|
5595
|
+
},
|
|
5596
|
+
{
|
|
5597
|
+
"name": "setInitialAttributes",
|
|
5598
|
+
"value": {}
|
|
5599
|
+
},
|
|
5600
|
+
{
|
|
5601
|
+
"name": "handleCheckedChange",
|
|
5602
|
+
"value": {}
|
|
5603
|
+
},
|
|
5604
|
+
{
|
|
5605
|
+
"name": "handleDisabledChange",
|
|
5606
|
+
"value": {}
|
|
5607
|
+
}
|
|
5608
|
+
],
|
|
5609
|
+
"events": [
|
|
5610
|
+
{
|
|
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."
|
|
5617
|
+
}
|
|
5618
|
+
]
|
|
5619
|
+
},
|
|
5620
|
+
"attributes": [
|
|
5621
|
+
{
|
|
5622
|
+
"name": "size",
|
|
5623
|
+
"description": "The radio's size.",
|
|
5624
|
+
"value": {
|
|
5625
|
+
"type": "'lg' | 'sm'"
|
|
5626
|
+
}
|
|
5627
|
+
},
|
|
5628
|
+
{
|
|
5629
|
+
"name": "invalid",
|
|
5630
|
+
"description": "A Boolean attribute which, if present, marks the radio Button valid or invalid",
|
|
5631
|
+
"value": {
|
|
5632
|
+
"type": "boolean"
|
|
5633
|
+
}
|
|
5634
|
+
},
|
|
5635
|
+
{
|
|
5636
|
+
"name": "disabled",
|
|
5637
|
+
"description": "A Boolean attribute which, if present, disables the radio.",
|
|
5638
|
+
"value": {
|
|
5639
|
+
"type": "boolean"
|
|
5640
|
+
}
|
|
5641
|
+
},
|
|
5642
|
+
{
|
|
5643
|
+
"name": "value",
|
|
5644
|
+
"description": "The radio's value. When selected, the radio group will receive this value.",
|
|
5645
|
+
"value": {
|
|
5646
|
+
"type": "string"
|
|
5647
|
+
}
|
|
5648
|
+
}
|
|
5649
|
+
]
|
|
5650
|
+
},
|
|
5651
|
+
{
|
|
5652
|
+
"name": "sd-1-21-0-spinner",
|
|
4865
5653
|
"description": "",
|
|
4866
5654
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/spinner",
|
|
4867
5655
|
"js": {
|
|
@@ -4891,7 +5679,7 @@
|
|
|
4891
5679
|
]
|
|
4892
5680
|
},
|
|
4893
5681
|
{
|
|
4894
|
-
"name": "sd-1-
|
|
5682
|
+
"name": "sd-1-21-0-tag",
|
|
4895
5683
|
"description": "",
|
|
4896
5684
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/tag",
|
|
4897
5685
|
"js": {
|
|
@@ -5037,7 +5825,7 @@
|
|
|
5037
5825
|
]
|
|
5038
5826
|
},
|
|
5039
5827
|
{
|
|
5040
|
-
"name": "sd-1-
|
|
5828
|
+
"name": "sd-1-21-0-teaser",
|
|
5041
5829
|
"description": "",
|
|
5042
5830
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/teaser",
|
|
5043
5831
|
"js": {
|
|
@@ -5109,7 +5897,7 @@
|
|
|
5109
5897
|
]
|
|
5110
5898
|
},
|
|
5111
5899
|
{
|
|
5112
|
-
"name": "sd-1-
|
|
5900
|
+
"name": "sd-1-21-0-video",
|
|
5113
5901
|
"description": "",
|
|
5114
5902
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/video",
|
|
5115
5903
|
"js": {
|