@solid-design-system/components 1.14.4 → 1.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/es/accordion-group.js +1 -1
- package/dist/components/es/accordion.js +1 -1
- package/dist/components/es/badge.js +1 -1
- package/dist/components/es/brandshape.js +1 -1
- package/dist/components/es/button.js +1 -1
- package/dist/components/es/divider.js +1 -1
- package/dist/components/es/drawer.js +1 -1
- package/dist/components/es/dropdown.js +1 -1
- package/dist/components/es/icon.js +3 -3
- package/dist/components/es/include.js +1 -1
- package/dist/components/es/link.js +1 -1
- package/dist/components/es/navigation-item.js +6 -0
- package/dist/components/es/popup.js +1 -1
- package/dist/components/es/register-custom-element.js +1 -0
- package/dist/components/es/solid-components2.js +1 -1
- package/dist/components/es/solid-element.js +4 -4
- package/dist/components/es/spinner.js +1 -1
- package/dist/components/es/tag.js +1 -1
- package/dist/components/es/teaser.js +1 -1
- package/dist/components/umd/solid-components.js +17 -12
- package/dist/custom-elements.json +1 -1
- package/dist/package/components/navigation-item/navigation-item.d.ts +31 -0
- package/dist/package/components/navigation-item/navigation-item.js +166 -0
- package/dist/package/solid-components.d.ts +1 -0
- package/dist/package/solid-components.js +10 -8
- package/dist/package/styles/tailwind.css.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/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/icon.js +3 -3
- package/dist/versioned-components/es/include.js +1 -1
- package/dist/versioned-components/es/link.js +1 -1
- package/dist/versioned-components/es/navigation-item.js +6 -0
- package/dist/versioned-components/es/popup.js +1 -1
- package/dist/versioned-components/es/register-custom-element.js +1 -0
- package/dist/versioned-components/es/solid-components2.js +1 -1
- package/dist/versioned-components/es/solid-element.js +4 -4
- package/dist/versioned-components/es/spinner.js +1 -1
- package/dist/versioned-components/es/tag.js +1 -1
- package/dist/versioned-components/es/teaser.js +1 -1
- 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 +1 -1
- package/dist/versioned-package/components/button/button.js +4 -4
- 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 +31 -0
- package/dist/versioned-package/components/navigation-item/navigation-item.js +166 -0
- 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/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/internal/form.js +1 -1
- package/dist/versioned-package/solid-components.d.ts +1 -0
- package/dist/versioned-package/solid-components.js +10 -8
- package/dist/versioned-package/styles/tailwind.css.js +1 -1
- package/dist/versioned-styles/solid-styles.css +1 -1
- package/dist/vscode.html-custom-data.json +195 -15
- package/dist/web-types.json +466 -16
- package/package.json +3 -3
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.15.0",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework-config": {
|
|
7
7
|
"enable-when": {
|
|
@@ -1440,6 +1440,231 @@
|
|
|
1440
1440
|
}
|
|
1441
1441
|
]
|
|
1442
1442
|
},
|
|
1443
|
+
{
|
|
1444
|
+
"name": "sd-navigation-item",
|
|
1445
|
+
"description": "",
|
|
1446
|
+
"doc-url": "https://solid.union-investment.com/[storybook-link]/navigation-item",
|
|
1447
|
+
"js": {
|
|
1448
|
+
"properties": [
|
|
1449
|
+
{
|
|
1450
|
+
"name": "hasSlotController",
|
|
1451
|
+
"value": {}
|
|
1452
|
+
},
|
|
1453
|
+
{
|
|
1454
|
+
"name": "href",
|
|
1455
|
+
"description": "The navigation item's href target. If provided, the navigation item will use an anchor tag otherwise it will use a button tag. The 'children' slot and accordion behavior will be ignored if an 'href' is provided.",
|
|
1456
|
+
"value": {
|
|
1457
|
+
"type": "string"
|
|
1458
|
+
}
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
"name": "target",
|
|
1462
|
+
"description": "Tells the browser where to open the link. Only used when `href` is defined.",
|
|
1463
|
+
"value": {
|
|
1464
|
+
"type": "'_blank' | '_parent' | '_self' | '_top'"
|
|
1465
|
+
}
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
"name": "download",
|
|
1469
|
+
"description": "Tells the browser to download the linked file as this filename. Only used when `href` is defined.",
|
|
1470
|
+
"value": {
|
|
1471
|
+
"type": "string | undefined"
|
|
1472
|
+
}
|
|
1473
|
+
},
|
|
1474
|
+
{
|
|
1475
|
+
"name": "current",
|
|
1476
|
+
"description": "Indicates that the navigation item is currently selected. The aria-current attribute is set to \"page\" on the host if true.",
|
|
1477
|
+
"value": {
|
|
1478
|
+
"type": "boolean"
|
|
1479
|
+
}
|
|
1480
|
+
},
|
|
1481
|
+
{
|
|
1482
|
+
"name": "disabled",
|
|
1483
|
+
"description": "Disables the navigation item.",
|
|
1484
|
+
"value": {
|
|
1485
|
+
"type": "boolean"
|
|
1486
|
+
}
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
"name": "size",
|
|
1490
|
+
"description": "The navigation item's font size.",
|
|
1491
|
+
"value": {
|
|
1492
|
+
"type": "'base' | 'lg' | 'sm'"
|
|
1493
|
+
}
|
|
1494
|
+
},
|
|
1495
|
+
{
|
|
1496
|
+
"name": "vertical",
|
|
1497
|
+
"description": "The navigation item's orientation. If false, properties below this point are not used.",
|
|
1498
|
+
"value": {
|
|
1499
|
+
"type": "boolean"
|
|
1500
|
+
}
|
|
1501
|
+
},
|
|
1502
|
+
{
|
|
1503
|
+
"name": "chevron",
|
|
1504
|
+
"description": "Appends a chevron to the right side of a navigation item. Only used if `vertical` is true.",
|
|
1505
|
+
"value": {
|
|
1506
|
+
"type": "boolean"
|
|
1507
|
+
}
|
|
1508
|
+
},
|
|
1509
|
+
{
|
|
1510
|
+
"name": "indented",
|
|
1511
|
+
"description": "Adds additional padding to navigation item's left side. Only used if `vertical` is true.",
|
|
1512
|
+
"value": {
|
|
1513
|
+
"type": "boolean"
|
|
1514
|
+
}
|
|
1515
|
+
},
|
|
1516
|
+
{
|
|
1517
|
+
"name": "relaxed",
|
|
1518
|
+
"description": "Adds additional padding to navigation item's left and right sides. Only used if `vertical` is true.",
|
|
1519
|
+
"value": {
|
|
1520
|
+
"type": "boolean"
|
|
1521
|
+
}
|
|
1522
|
+
},
|
|
1523
|
+
{
|
|
1524
|
+
"name": "divider",
|
|
1525
|
+
"description": "Adds additional padding to navigation item's left and right sides. Only used if `vertical` is true.",
|
|
1526
|
+
"value": {
|
|
1527
|
+
"type": "boolean"
|
|
1528
|
+
}
|
|
1529
|
+
},
|
|
1530
|
+
{
|
|
1531
|
+
"name": "open",
|
|
1532
|
+
"description": "Reflects HTML details element state and allows control from parent. Only used if `vertical` is true, no `href`is undefined, and `children` is defined.",
|
|
1533
|
+
"value": {
|
|
1534
|
+
"type": "boolean"
|
|
1535
|
+
}
|
|
1536
|
+
},
|
|
1537
|
+
{
|
|
1538
|
+
"name": "isButton",
|
|
1539
|
+
"value": {}
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
"name": "isLink",
|
|
1543
|
+
"value": {}
|
|
1544
|
+
},
|
|
1545
|
+
{
|
|
1546
|
+
"name": "isAccordion",
|
|
1547
|
+
"value": {}
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
"name": "handleClickButton",
|
|
1551
|
+
"value": {}
|
|
1552
|
+
},
|
|
1553
|
+
{
|
|
1554
|
+
"name": "handleClickSummary",
|
|
1555
|
+
"value": {}
|
|
1556
|
+
},
|
|
1557
|
+
{
|
|
1558
|
+
"name": "hideDetails",
|
|
1559
|
+
"value": {}
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
"name": "showDetails",
|
|
1563
|
+
"value": {}
|
|
1564
|
+
},
|
|
1565
|
+
{
|
|
1566
|
+
"name": "calculatePaddingX",
|
|
1567
|
+
"value": {}
|
|
1568
|
+
}
|
|
1569
|
+
],
|
|
1570
|
+
"events": [
|
|
1571
|
+
{
|
|
1572
|
+
"name": "sd-show",
|
|
1573
|
+
"description": "Emitted when the navigation item has has children, no href, and is clicked while HTML details are hidden."
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
"name": "sd-hide",
|
|
1577
|
+
"description": "Emitted when the navigation item has has children, no href, and is clicked while HTML details are shown."
|
|
1578
|
+
}
|
|
1579
|
+
]
|
|
1580
|
+
},
|
|
1581
|
+
"attributes": [
|
|
1582
|
+
{
|
|
1583
|
+
"name": "href",
|
|
1584
|
+
"description": "The navigation item's href target. If provided, the navigation item will use an anchor tag otherwise it will use a button tag. The 'children' slot and accordion behavior will be ignored if an 'href' is provided.",
|
|
1585
|
+
"value": {
|
|
1586
|
+
"type": "string"
|
|
1587
|
+
}
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
"name": "target",
|
|
1591
|
+
"description": "Tells the browser where to open the link. Only used when `href` is defined.",
|
|
1592
|
+
"value": {
|
|
1593
|
+
"type": "'_blank' | '_parent' | '_self' | '_top'"
|
|
1594
|
+
}
|
|
1595
|
+
},
|
|
1596
|
+
{
|
|
1597
|
+
"name": "download",
|
|
1598
|
+
"description": "Tells the browser to download the linked file as this filename. Only used when `href` is defined.",
|
|
1599
|
+
"value": {
|
|
1600
|
+
"type": "string | undefined"
|
|
1601
|
+
}
|
|
1602
|
+
},
|
|
1603
|
+
{
|
|
1604
|
+
"name": "current",
|
|
1605
|
+
"description": "Indicates that the navigation item is currently selected. The aria-current attribute is set to \"page\" on the host if true.",
|
|
1606
|
+
"value": {
|
|
1607
|
+
"type": "boolean"
|
|
1608
|
+
}
|
|
1609
|
+
},
|
|
1610
|
+
{
|
|
1611
|
+
"name": "disabled",
|
|
1612
|
+
"description": "Disables the navigation item.",
|
|
1613
|
+
"value": {
|
|
1614
|
+
"type": "boolean"
|
|
1615
|
+
}
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
"name": "size",
|
|
1619
|
+
"description": "The navigation item's font size.",
|
|
1620
|
+
"value": {
|
|
1621
|
+
"type": "'base' | 'lg' | 'sm'"
|
|
1622
|
+
}
|
|
1623
|
+
},
|
|
1624
|
+
{
|
|
1625
|
+
"name": "vertical",
|
|
1626
|
+
"description": "The navigation item's orientation. If false, properties below this point are not used.",
|
|
1627
|
+
"value": {
|
|
1628
|
+
"type": "boolean"
|
|
1629
|
+
}
|
|
1630
|
+
},
|
|
1631
|
+
{
|
|
1632
|
+
"name": "chevron",
|
|
1633
|
+
"description": "Appends a chevron to the right side of a navigation item. Only used if `vertical` is true.",
|
|
1634
|
+
"value": {
|
|
1635
|
+
"type": "boolean"
|
|
1636
|
+
}
|
|
1637
|
+
},
|
|
1638
|
+
{
|
|
1639
|
+
"name": "indented",
|
|
1640
|
+
"description": "Adds additional padding to navigation item's left side. Only used if `vertical` is true.",
|
|
1641
|
+
"value": {
|
|
1642
|
+
"type": "boolean"
|
|
1643
|
+
}
|
|
1644
|
+
},
|
|
1645
|
+
{
|
|
1646
|
+
"name": "relaxed",
|
|
1647
|
+
"description": "Adds additional padding to navigation item's left and right sides. Only used if `vertical` is true.",
|
|
1648
|
+
"value": {
|
|
1649
|
+
"type": "boolean"
|
|
1650
|
+
}
|
|
1651
|
+
},
|
|
1652
|
+
{
|
|
1653
|
+
"name": "divider",
|
|
1654
|
+
"description": "Adds additional padding to navigation item's left and right sides. Only used if `vertical` is true.",
|
|
1655
|
+
"value": {
|
|
1656
|
+
"type": "boolean"
|
|
1657
|
+
}
|
|
1658
|
+
},
|
|
1659
|
+
{
|
|
1660
|
+
"name": "open",
|
|
1661
|
+
"description": "Reflects HTML details element state and allows control from parent. Only used if `vertical` is true, no `href`is undefined, and `children` is defined.",
|
|
1662
|
+
"value": {
|
|
1663
|
+
"type": "boolean"
|
|
1664
|
+
}
|
|
1665
|
+
}
|
|
1666
|
+
]
|
|
1667
|
+
},
|
|
1443
1668
|
{
|
|
1444
1669
|
"name": "sd-popup",
|
|
1445
1670
|
"description": "",
|
|
@@ -2023,7 +2248,7 @@
|
|
|
2023
2248
|
]
|
|
2024
2249
|
},
|
|
2025
2250
|
{
|
|
2026
|
-
"name": "sd-1-
|
|
2251
|
+
"name": "sd-1-15-0-accordion-group",
|
|
2027
2252
|
"description": "",
|
|
2028
2253
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/accordion-group",
|
|
2029
2254
|
"js": {
|
|
@@ -2053,7 +2278,7 @@
|
|
|
2053
2278
|
]
|
|
2054
2279
|
},
|
|
2055
2280
|
{
|
|
2056
|
-
"name": "sd-1-
|
|
2281
|
+
"name": "sd-1-15-0-accordion",
|
|
2057
2282
|
"description": "",
|
|
2058
2283
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/accordion",
|
|
2059
2284
|
"js": {
|
|
@@ -2136,7 +2361,7 @@
|
|
|
2136
2361
|
]
|
|
2137
2362
|
},
|
|
2138
2363
|
{
|
|
2139
|
-
"name": "sd-1-
|
|
2364
|
+
"name": "sd-1-15-0-badge",
|
|
2140
2365
|
"description": "",
|
|
2141
2366
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/badge",
|
|
2142
2367
|
"js": {
|
|
@@ -2190,7 +2415,7 @@
|
|
|
2190
2415
|
]
|
|
2191
2416
|
},
|
|
2192
2417
|
{
|
|
2193
|
-
"name": "sd-1-
|
|
2418
|
+
"name": "sd-1-15-0-brandshape",
|
|
2194
2419
|
"description": "",
|
|
2195
2420
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/brandshape",
|
|
2196
2421
|
"js": {
|
|
@@ -2279,7 +2504,7 @@
|
|
|
2279
2504
|
]
|
|
2280
2505
|
},
|
|
2281
2506
|
{
|
|
2282
|
-
"name": "sd-1-
|
|
2507
|
+
"name": "sd-1-15-0-button",
|
|
2283
2508
|
"description": "",
|
|
2284
2509
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/button",
|
|
2285
2510
|
"js": {
|
|
@@ -2618,7 +2843,7 @@
|
|
|
2618
2843
|
]
|
|
2619
2844
|
},
|
|
2620
2845
|
{
|
|
2621
|
-
"name": "sd-1-
|
|
2846
|
+
"name": "sd-1-15-0-divider",
|
|
2622
2847
|
"description": "",
|
|
2623
2848
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/divider",
|
|
2624
2849
|
"js": {
|
|
@@ -2658,7 +2883,7 @@
|
|
|
2658
2883
|
]
|
|
2659
2884
|
},
|
|
2660
2885
|
{
|
|
2661
|
-
"name": "sd-1-
|
|
2886
|
+
"name": "sd-1-15-0-drawer",
|
|
2662
2887
|
"description": "",
|
|
2663
2888
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/drawer",
|
|
2664
2889
|
"js": {
|
|
@@ -2811,7 +3036,7 @@
|
|
|
2811
3036
|
]
|
|
2812
3037
|
},
|
|
2813
3038
|
{
|
|
2814
|
-
"name": "sd-1-
|
|
3039
|
+
"name": "sd-1-15-0-dropdown",
|
|
2815
3040
|
"description": "",
|
|
2816
3041
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/dropdown",
|
|
2817
3042
|
"js": {
|
|
@@ -3065,7 +3290,7 @@
|
|
|
3065
3290
|
]
|
|
3066
3291
|
},
|
|
3067
3292
|
{
|
|
3068
|
-
"name": "sd-1-
|
|
3293
|
+
"name": "sd-1-15-0-icon",
|
|
3069
3294
|
"description": "",
|
|
3070
3295
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/icon",
|
|
3071
3296
|
"js": {
|
|
@@ -3174,7 +3399,7 @@
|
|
|
3174
3399
|
]
|
|
3175
3400
|
},
|
|
3176
3401
|
{
|
|
3177
|
-
"name": "sd-1-
|
|
3402
|
+
"name": "sd-1-15-0-include",
|
|
3178
3403
|
"description": "",
|
|
3179
3404
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/include",
|
|
3180
3405
|
"js": {
|
|
@@ -3245,7 +3470,7 @@
|
|
|
3245
3470
|
]
|
|
3246
3471
|
},
|
|
3247
3472
|
{
|
|
3248
|
-
"name": "sd-1-
|
|
3473
|
+
"name": "sd-1-15-0-link",
|
|
3249
3474
|
"description": "",
|
|
3250
3475
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/link",
|
|
3251
3476
|
"js": {
|
|
@@ -3372,7 +3597,232 @@
|
|
|
3372
3597
|
]
|
|
3373
3598
|
},
|
|
3374
3599
|
{
|
|
3375
|
-
"name": "sd-1-
|
|
3600
|
+
"name": "sd-1-15-0-navigation-item",
|
|
3601
|
+
"description": "",
|
|
3602
|
+
"doc-url": "https://solid.union-investment.com/[storybook-link]/navigation-item",
|
|
3603
|
+
"js": {
|
|
3604
|
+
"properties": [
|
|
3605
|
+
{
|
|
3606
|
+
"name": "hasSlotController",
|
|
3607
|
+
"value": {}
|
|
3608
|
+
},
|
|
3609
|
+
{
|
|
3610
|
+
"name": "href",
|
|
3611
|
+
"description": "The navigation item's href target. If provided, the navigation item will use an anchor tag otherwise it will use a button tag. The 'children' slot and accordion behavior will be ignored if an 'href' is provided.",
|
|
3612
|
+
"value": {
|
|
3613
|
+
"type": "string"
|
|
3614
|
+
}
|
|
3615
|
+
},
|
|
3616
|
+
{
|
|
3617
|
+
"name": "target",
|
|
3618
|
+
"description": "Tells the browser where to open the link. Only used when `href` is defined.",
|
|
3619
|
+
"value": {
|
|
3620
|
+
"type": "'_blank' | '_parent' | '_self' | '_top'"
|
|
3621
|
+
}
|
|
3622
|
+
},
|
|
3623
|
+
{
|
|
3624
|
+
"name": "download",
|
|
3625
|
+
"description": "Tells the browser to download the linked file as this filename. Only used when `href` is defined.",
|
|
3626
|
+
"value": {
|
|
3627
|
+
"type": "string | undefined"
|
|
3628
|
+
}
|
|
3629
|
+
},
|
|
3630
|
+
{
|
|
3631
|
+
"name": "current",
|
|
3632
|
+
"description": "Indicates that the navigation item is currently selected. The aria-current attribute is set to \"page\" on the host if true.",
|
|
3633
|
+
"value": {
|
|
3634
|
+
"type": "boolean"
|
|
3635
|
+
}
|
|
3636
|
+
},
|
|
3637
|
+
{
|
|
3638
|
+
"name": "disabled",
|
|
3639
|
+
"description": "Disables the navigation item.",
|
|
3640
|
+
"value": {
|
|
3641
|
+
"type": "boolean"
|
|
3642
|
+
}
|
|
3643
|
+
},
|
|
3644
|
+
{
|
|
3645
|
+
"name": "size",
|
|
3646
|
+
"description": "The navigation item's font size.",
|
|
3647
|
+
"value": {
|
|
3648
|
+
"type": "'base' | 'lg' | 'sm'"
|
|
3649
|
+
}
|
|
3650
|
+
},
|
|
3651
|
+
{
|
|
3652
|
+
"name": "vertical",
|
|
3653
|
+
"description": "The navigation item's orientation. If false, properties below this point are not used.",
|
|
3654
|
+
"value": {
|
|
3655
|
+
"type": "boolean"
|
|
3656
|
+
}
|
|
3657
|
+
},
|
|
3658
|
+
{
|
|
3659
|
+
"name": "chevron",
|
|
3660
|
+
"description": "Appends a chevron to the right side of a navigation item. Only used if `vertical` is true.",
|
|
3661
|
+
"value": {
|
|
3662
|
+
"type": "boolean"
|
|
3663
|
+
}
|
|
3664
|
+
},
|
|
3665
|
+
{
|
|
3666
|
+
"name": "indented",
|
|
3667
|
+
"description": "Adds additional padding to navigation item's left side. Only used if `vertical` is true.",
|
|
3668
|
+
"value": {
|
|
3669
|
+
"type": "boolean"
|
|
3670
|
+
}
|
|
3671
|
+
},
|
|
3672
|
+
{
|
|
3673
|
+
"name": "relaxed",
|
|
3674
|
+
"description": "Adds additional padding to navigation item's left and right sides. Only used if `vertical` is true.",
|
|
3675
|
+
"value": {
|
|
3676
|
+
"type": "boolean"
|
|
3677
|
+
}
|
|
3678
|
+
},
|
|
3679
|
+
{
|
|
3680
|
+
"name": "divider",
|
|
3681
|
+
"description": "Adds additional padding to navigation item's left and right sides. Only used if `vertical` is true.",
|
|
3682
|
+
"value": {
|
|
3683
|
+
"type": "boolean"
|
|
3684
|
+
}
|
|
3685
|
+
},
|
|
3686
|
+
{
|
|
3687
|
+
"name": "open",
|
|
3688
|
+
"description": "Reflects HTML details element state and allows control from parent. Only used if `vertical` is true, no `href`is undefined, and `children` is defined.",
|
|
3689
|
+
"value": {
|
|
3690
|
+
"type": "boolean"
|
|
3691
|
+
}
|
|
3692
|
+
},
|
|
3693
|
+
{
|
|
3694
|
+
"name": "isButton",
|
|
3695
|
+
"value": {}
|
|
3696
|
+
},
|
|
3697
|
+
{
|
|
3698
|
+
"name": "isLink",
|
|
3699
|
+
"value": {}
|
|
3700
|
+
},
|
|
3701
|
+
{
|
|
3702
|
+
"name": "isAccordion",
|
|
3703
|
+
"value": {}
|
|
3704
|
+
},
|
|
3705
|
+
{
|
|
3706
|
+
"name": "handleClickButton",
|
|
3707
|
+
"value": {}
|
|
3708
|
+
},
|
|
3709
|
+
{
|
|
3710
|
+
"name": "handleClickSummary",
|
|
3711
|
+
"value": {}
|
|
3712
|
+
},
|
|
3713
|
+
{
|
|
3714
|
+
"name": "hideDetails",
|
|
3715
|
+
"value": {}
|
|
3716
|
+
},
|
|
3717
|
+
{
|
|
3718
|
+
"name": "showDetails",
|
|
3719
|
+
"value": {}
|
|
3720
|
+
},
|
|
3721
|
+
{
|
|
3722
|
+
"name": "calculatePaddingX",
|
|
3723
|
+
"value": {}
|
|
3724
|
+
}
|
|
3725
|
+
],
|
|
3726
|
+
"events": [
|
|
3727
|
+
{
|
|
3728
|
+
"name": "sd-show",
|
|
3729
|
+
"description": "Emitted when the navigation item has has children, no href, and is clicked while HTML details are hidden."
|
|
3730
|
+
},
|
|
3731
|
+
{
|
|
3732
|
+
"name": "sd-hide",
|
|
3733
|
+
"description": "Emitted when the navigation item has has children, no href, and is clicked while HTML details are shown."
|
|
3734
|
+
}
|
|
3735
|
+
]
|
|
3736
|
+
},
|
|
3737
|
+
"attributes": [
|
|
3738
|
+
{
|
|
3739
|
+
"name": "href",
|
|
3740
|
+
"description": "The navigation item's href target. If provided, the navigation item will use an anchor tag otherwise it will use a button tag. The 'children' slot and accordion behavior will be ignored if an 'href' is provided.",
|
|
3741
|
+
"value": {
|
|
3742
|
+
"type": "string"
|
|
3743
|
+
}
|
|
3744
|
+
},
|
|
3745
|
+
{
|
|
3746
|
+
"name": "target",
|
|
3747
|
+
"description": "Tells the browser where to open the link. Only used when `href` is defined.",
|
|
3748
|
+
"value": {
|
|
3749
|
+
"type": "'_blank' | '_parent' | '_self' | '_top'"
|
|
3750
|
+
}
|
|
3751
|
+
},
|
|
3752
|
+
{
|
|
3753
|
+
"name": "download",
|
|
3754
|
+
"description": "Tells the browser to download the linked file as this filename. Only used when `href` is defined.",
|
|
3755
|
+
"value": {
|
|
3756
|
+
"type": "string | undefined"
|
|
3757
|
+
}
|
|
3758
|
+
},
|
|
3759
|
+
{
|
|
3760
|
+
"name": "current",
|
|
3761
|
+
"description": "Indicates that the navigation item is currently selected. The aria-current attribute is set to \"page\" on the host if true.",
|
|
3762
|
+
"value": {
|
|
3763
|
+
"type": "boolean"
|
|
3764
|
+
}
|
|
3765
|
+
},
|
|
3766
|
+
{
|
|
3767
|
+
"name": "disabled",
|
|
3768
|
+
"description": "Disables the navigation item.",
|
|
3769
|
+
"value": {
|
|
3770
|
+
"type": "boolean"
|
|
3771
|
+
}
|
|
3772
|
+
},
|
|
3773
|
+
{
|
|
3774
|
+
"name": "size",
|
|
3775
|
+
"description": "The navigation item's font size.",
|
|
3776
|
+
"value": {
|
|
3777
|
+
"type": "'base' | 'lg' | 'sm'"
|
|
3778
|
+
}
|
|
3779
|
+
},
|
|
3780
|
+
{
|
|
3781
|
+
"name": "vertical",
|
|
3782
|
+
"description": "The navigation item's orientation. If false, properties below this point are not used.",
|
|
3783
|
+
"value": {
|
|
3784
|
+
"type": "boolean"
|
|
3785
|
+
}
|
|
3786
|
+
},
|
|
3787
|
+
{
|
|
3788
|
+
"name": "chevron",
|
|
3789
|
+
"description": "Appends a chevron to the right side of a navigation item. Only used if `vertical` is true.",
|
|
3790
|
+
"value": {
|
|
3791
|
+
"type": "boolean"
|
|
3792
|
+
}
|
|
3793
|
+
},
|
|
3794
|
+
{
|
|
3795
|
+
"name": "indented",
|
|
3796
|
+
"description": "Adds additional padding to navigation item's left side. Only used if `vertical` is true.",
|
|
3797
|
+
"value": {
|
|
3798
|
+
"type": "boolean"
|
|
3799
|
+
}
|
|
3800
|
+
},
|
|
3801
|
+
{
|
|
3802
|
+
"name": "relaxed",
|
|
3803
|
+
"description": "Adds additional padding to navigation item's left and right sides. Only used if `vertical` is true.",
|
|
3804
|
+
"value": {
|
|
3805
|
+
"type": "boolean"
|
|
3806
|
+
}
|
|
3807
|
+
},
|
|
3808
|
+
{
|
|
3809
|
+
"name": "divider",
|
|
3810
|
+
"description": "Adds additional padding to navigation item's left and right sides. Only used if `vertical` is true.",
|
|
3811
|
+
"value": {
|
|
3812
|
+
"type": "boolean"
|
|
3813
|
+
}
|
|
3814
|
+
},
|
|
3815
|
+
{
|
|
3816
|
+
"name": "open",
|
|
3817
|
+
"description": "Reflects HTML details element state and allows control from parent. Only used if `vertical` is true, no `href`is undefined, and `children` is defined.",
|
|
3818
|
+
"value": {
|
|
3819
|
+
"type": "boolean"
|
|
3820
|
+
}
|
|
3821
|
+
}
|
|
3822
|
+
]
|
|
3823
|
+
},
|
|
3824
|
+
{
|
|
3825
|
+
"name": "sd-1-15-0-popup",
|
|
3376
3826
|
"description": "",
|
|
3377
3827
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/popup",
|
|
3378
3828
|
"js": {
|
|
@@ -3706,7 +4156,7 @@
|
|
|
3706
4156
|
]
|
|
3707
4157
|
},
|
|
3708
4158
|
{
|
|
3709
|
-
"name": "sd-1-
|
|
4159
|
+
"name": "sd-1-15-0-spinner",
|
|
3710
4160
|
"description": "",
|
|
3711
4161
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/spinner",
|
|
3712
4162
|
"js": {
|
|
@@ -3736,7 +4186,7 @@
|
|
|
3736
4186
|
]
|
|
3737
4187
|
},
|
|
3738
4188
|
{
|
|
3739
|
-
"name": "sd-1-
|
|
4189
|
+
"name": "sd-1-15-0-tag",
|
|
3740
4190
|
"description": "",
|
|
3741
4191
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/tag",
|
|
3742
4192
|
"js": {
|
|
@@ -3882,7 +4332,7 @@
|
|
|
3882
4332
|
]
|
|
3883
4333
|
},
|
|
3884
4334
|
{
|
|
3885
|
-
"name": "sd-1-
|
|
4335
|
+
"name": "sd-1-15-0-teaser",
|
|
3886
4336
|
"description": "",
|
|
3887
4337
|
"doc-url": "https://solid.union-investment.com/[storybook-link]/teaser",
|
|
3888
4338
|
"js": {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solid-design-system/components",
|
|
3
3
|
"description": "Solid Design System: Components",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.15.0",
|
|
5
5
|
"homepage": "https://solid-design-system.fe.union-investment.de/x.x.x/storybook/",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Union Investment"
|
|
@@ -182,8 +182,8 @@
|
|
|
182
182
|
"readme": "README.md",
|
|
183
183
|
"meta": {
|
|
184
184
|
"bundleSizeInKb": {
|
|
185
|
-
"uncompressed":
|
|
186
|
-
"gzip":
|
|
185
|
+
"uncompressed": 128,
|
|
186
|
+
"gzip": 35
|
|
187
187
|
}
|
|
188
188
|
}
|
|
189
189
|
}
|