@yahoo/uds 3.164.0 → 3.165.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/cli/commands/sync.cjs +8 -0
- package/dist/cli/commands/sync.js +8 -0
- package/dist/components/client/Button/Button.cjs +5 -6
- package/dist/components/client/Button/Button.js +5 -6
- package/dist/components/client/Button/ButtonBase.cjs +4 -0
- package/dist/components/client/Button/ButtonBase.d.cts +2 -1
- package/dist/components/client/Button/ButtonBase.d.ts +2 -1
- package/dist/components/client/Button/ButtonBase.js +4 -0
- package/dist/components/client/Button/UDSButtonConfigProvider.cjs +45 -0
- package/dist/components/client/Button/UDSButtonConfigProvider.d.cts +33 -0
- package/dist/components/client/Button/UDSButtonConfigProvider.d.ts +34 -0
- package/dist/components/client/Button/UDSButtonConfigProvider.js +42 -0
- package/dist/components/client/Button/buttonConstants.cjs +1 -1
- package/dist/components/client/Button/buttonConstants.d.cts +3 -3
- package/dist/components/client/Button/buttonConstants.d.ts +3 -3
- package/dist/components/client/Button/buttonConstants.js +1 -1
- package/dist/components/client/Button/index.cjs +3 -0
- package/dist/components/client/Button/index.d.cts +2 -1
- package/dist/components/client/Button/index.d.ts +2 -1
- package/dist/components/client/Button/index.js +2 -1
- package/dist/components/client/IconButton/IconButton.cjs +3 -4
- package/dist/components/client/IconButton/IconButton.js +3 -4
- package/dist/components/client/IconButton/IconButtonBase.cjs +3 -0
- package/dist/components/client/IconButton/IconButtonBase.d.cts +2 -0
- package/dist/components/client/IconButton/IconButtonBase.d.ts +2 -0
- package/dist/components/client/IconButton/IconButtonBase.js +3 -0
- package/dist/components/client/IconButton/UDSIconButtonConfigProvider.cjs +46 -0
- package/dist/components/client/IconButton/UDSIconButtonConfigProvider.d.cts +34 -0
- package/dist/components/client/IconButton/UDSIconButtonConfigProvider.d.ts +35 -0
- package/dist/components/client/IconButton/UDSIconButtonConfigProvider.js +43 -0
- package/dist/components/client/IconButton/index.cjs +3 -0
- package/dist/components/client/IconButton/index.d.cts +2 -1
- package/dist/components/client/IconButton/index.d.ts +2 -1
- package/dist/components/client/IconButton/index.js +2 -1
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.cts +1 -1
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.ts +1 -1
- package/dist/components/client/index.cjs +6 -0
- package/dist/components/client/index.d.cts +3 -1
- package/dist/components/client/index.d.ts +3 -1
- package/dist/components/client/index.js +3 -1
- package/dist/components/client/providers/UDSConfigProvider.cjs +18 -10
- package/dist/components/client/providers/UDSConfigProvider.d.cts +2 -0
- package/dist/components/client/providers/UDSConfigProvider.d.ts +2 -0
- package/dist/components/client/providers/UDSConfigProvider.js +18 -10
- package/dist/components/index.cjs +6 -0
- package/dist/components/index.d.cts +3 -1
- package/dist/components/index.d.ts +3 -1
- package/dist/components/index.js +3 -1
- package/dist/config/dist/index.cjs +51 -142
- package/dist/config/dist/index.js +51 -142
- package/dist/css/dist/css/utils.cjs +12 -0
- package/dist/css/dist/css/utils.js +12 -0
- package/dist/css/dist/packages/config/dist/index.cjs +51 -142
- package/dist/css/dist/packages/config/dist/index.js +51 -142
- package/dist/css/dist/runtimeConfig/hookMetadata.cjs +67 -0
- package/dist/css/dist/runtimeConfig/hookMetadata.js +67 -0
- package/dist/css-animation/Button/Button.cjs +5 -6
- package/dist/css-animation/Button/Button.js +5 -6
- package/dist/css-animation/IconButton/IconButton.cjs +3 -4
- package/dist/css-animation/IconButton/IconButton.js +3 -4
- package/dist/index.cjs +10 -0
- package/dist/index.d.cts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +5 -1
- package/dist/runtime/buttonConfig.cjs +17 -0
- package/dist/runtime/buttonConfig.d.cts +13 -0
- package/dist/runtime/buttonConfig.d.ts +13 -0
- package/dist/runtime/buttonConfig.js +16 -0
- package/dist/runtime/iconButtonConfig.cjs +18 -0
- package/dist/runtime/iconButtonConfig.d.cts +13 -0
- package/dist/runtime/iconButtonConfig.d.ts +13 -0
- package/dist/runtime/iconButtonConfig.js +17 -0
- package/dist/runtime/index.cjs +4 -0
- package/dist/runtime/index.d.cts +3 -1
- package/dist/runtime/index.d.ts +3 -1
- package/dist/runtime/index.js +3 -1
- package/dist/runtime/udsConfig.cjs +4 -0
- package/dist/runtime/udsConfig.d.cts +4 -0
- package/dist/runtime/udsConfig.d.ts +4 -0
- package/dist/runtime/udsConfig.js +4 -0
- package/dist/styles/styler.d.cts +10 -10
- package/dist/styles/styler.d.ts +10 -10
- package/dist/tailwind-internal/dist/packages/config/dist/index.cjs +51 -142
- package/dist/tailwind-internal/dist/packages/config/dist/index.js +51 -142
- package/dist/uds/generated/componentData.cjs +251 -223
- package/dist/uds/generated/componentData.js +251 -223
- package/dist/uds/generated/tailwindPurge.cjs +9 -1
- package/dist/uds/generated/tailwindPurge.js +9 -1
- package/generated/componentData.json +491 -455
- package/generated/tailwindPurge.ts +3 -3
- package/package.json +1 -1
|
@@ -1289,6 +1289,136 @@ var componentData_default = {
|
|
|
1289
1289
|
"runtimeConfigInternalComponentProps": {},
|
|
1290
1290
|
"motionVarPrefixes": []
|
|
1291
1291
|
},
|
|
1292
|
+
ChipButton: {
|
|
1293
|
+
"name": "ChipButton",
|
|
1294
|
+
"defaultProps": { "variant": "primary" },
|
|
1295
|
+
"getStylesLiterals": {},
|
|
1296
|
+
"cxLiterals": ["uds-ring"],
|
|
1297
|
+
"internalComponents": ["ChipBase"],
|
|
1298
|
+
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1299
|
+
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1300
|
+
"runtimeConfigDefaultProps": {},
|
|
1301
|
+
"runtimeConfigGetStyles": {},
|
|
1302
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1303
|
+
"motionVarPrefixes": []
|
|
1304
|
+
},
|
|
1305
|
+
ChipDismissible: {
|
|
1306
|
+
"name": "ChipDismissible",
|
|
1307
|
+
"defaultProps": { "variant": "primary" },
|
|
1308
|
+
"getStylesLiterals": {},
|
|
1309
|
+
"cxLiterals": [
|
|
1310
|
+
"uds-chip-dismissible-button",
|
|
1311
|
+
"uds-hit-target",
|
|
1312
|
+
"uds-ring",
|
|
1313
|
+
"rounded-full"
|
|
1314
|
+
],
|
|
1315
|
+
"internalComponents": [
|
|
1316
|
+
"ChipBase",
|
|
1317
|
+
"IconSlot",
|
|
1318
|
+
"Pressable"
|
|
1319
|
+
],
|
|
1320
|
+
"internalComponentProps": {},
|
|
1321
|
+
"propToVariantKeys": {
|
|
1322
|
+
"variant": ["chipDismissibleVariantRoot", "chipDismissibleVariantIcon"],
|
|
1323
|
+
"dismissButtonAriaLabel": ["aria-label"]
|
|
1324
|
+
},
|
|
1325
|
+
"runtimeConfigDefaultProps": {},
|
|
1326
|
+
"runtimeConfigGetStyles": {},
|
|
1327
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1328
|
+
"motionVarPrefixes": []
|
|
1329
|
+
},
|
|
1330
|
+
ChipLink: {
|
|
1331
|
+
"name": "ChipLink",
|
|
1332
|
+
"defaultProps": { "variant": "primary" },
|
|
1333
|
+
"getStylesLiterals": {},
|
|
1334
|
+
"cxLiterals": ["uds-ring"],
|
|
1335
|
+
"internalComponents": ["ChipBase"],
|
|
1336
|
+
"internalComponentProps": { "ChipBase": { "as": ["a"] } },
|
|
1337
|
+
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1338
|
+
"runtimeConfigDefaultProps": {},
|
|
1339
|
+
"runtimeConfigGetStyles": {},
|
|
1340
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1341
|
+
"motionVarPrefixes": []
|
|
1342
|
+
},
|
|
1343
|
+
Chip: {
|
|
1344
|
+
"name": "Chip",
|
|
1345
|
+
"defaultProps": {},
|
|
1346
|
+
"getStylesLiterals": {},
|
|
1347
|
+
"cxLiterals": [],
|
|
1348
|
+
"internalComponents": [
|
|
1349
|
+
"ChipDismissible",
|
|
1350
|
+
"ChipToggle",
|
|
1351
|
+
"ChipLink",
|
|
1352
|
+
"ChipButton"
|
|
1353
|
+
],
|
|
1354
|
+
"internalComponentProps": {},
|
|
1355
|
+
"propToVariantKeys": {},
|
|
1356
|
+
"runtimeConfigDefaultProps": {},
|
|
1357
|
+
"runtimeConfigGetStyles": {},
|
|
1358
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1359
|
+
"motionVarPrefixes": []
|
|
1360
|
+
},
|
|
1361
|
+
ChipToggle: {
|
|
1362
|
+
"name": "ChipToggle",
|
|
1363
|
+
"defaultProps": {
|
|
1364
|
+
"variant": "primary",
|
|
1365
|
+
"role": "checkbox"
|
|
1366
|
+
},
|
|
1367
|
+
"getStylesLiterals": {
|
|
1368
|
+
"chipToggleVariantActiveRoot": "on",
|
|
1369
|
+
"chipToggleVariantActiveRoot:1": "off"
|
|
1370
|
+
},
|
|
1371
|
+
"cxLiterals": ["uds-ring"],
|
|
1372
|
+
"internalComponents": ["ChipBase"],
|
|
1373
|
+
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1374
|
+
"propToVariantKeys": { "variant": ["chipToggleVariantRoot", "chipToggleVariantIcon"] },
|
|
1375
|
+
"runtimeConfigDefaultProps": {},
|
|
1376
|
+
"runtimeConfigGetStyles": {},
|
|
1377
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1378
|
+
"motionVarPrefixes": []
|
|
1379
|
+
},
|
|
1380
|
+
ChipBase: {
|
|
1381
|
+
"name": "ChipBase",
|
|
1382
|
+
"defaultProps": {
|
|
1383
|
+
"size": "md",
|
|
1384
|
+
"as": "div"
|
|
1385
|
+
},
|
|
1386
|
+
"getStylesLiterals": {},
|
|
1387
|
+
"cxLiterals": [
|
|
1388
|
+
"pointer-events-none",
|
|
1389
|
+
"cursor-default",
|
|
1390
|
+
"opacity-50",
|
|
1391
|
+
"inline-flex",
|
|
1392
|
+
"items-center",
|
|
1393
|
+
"transition-[background-color,outline-color,box-shadow]",
|
|
1394
|
+
"truncate",
|
|
1395
|
+
"whitespace-nowrap",
|
|
1396
|
+
"text-center",
|
|
1397
|
+
"flex-1",
|
|
1398
|
+
"md",
|
|
1399
|
+
"primary"
|
|
1400
|
+
],
|
|
1401
|
+
"internalComponents": [
|
|
1402
|
+
"IconSlot",
|
|
1403
|
+
"HStack",
|
|
1404
|
+
"As",
|
|
1405
|
+
"Text"
|
|
1406
|
+
],
|
|
1407
|
+
"internalComponentProps": { "Text": {
|
|
1408
|
+
"as": ["span"],
|
|
1409
|
+
"color": ["current"],
|
|
1410
|
+
"variant": ["inherit"]
|
|
1411
|
+
} },
|
|
1412
|
+
"propToVariantKeys": {
|
|
1413
|
+
"size": ["chipSizeRoot", "chipSizeIcon"],
|
|
1414
|
+
"startIcon": ["icon"],
|
|
1415
|
+
"endIcon": ["icon"]
|
|
1416
|
+
},
|
|
1417
|
+
"runtimeConfigDefaultProps": {},
|
|
1418
|
+
"runtimeConfigGetStyles": {},
|
|
1419
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1420
|
+
"motionVarPrefixes": []
|
|
1421
|
+
},
|
|
1292
1422
|
SwitchBase: {
|
|
1293
1423
|
"name": "SwitchBase",
|
|
1294
1424
|
"defaultProps": {
|
|
@@ -1436,7 +1566,7 @@ var componentData_default = {
|
|
|
1436
1566
|
"size": ["buttonSizeRoot", "buttonSizeIcon"],
|
|
1437
1567
|
"variant": ["buttonVariantRoot", "buttonVariantIcon"]
|
|
1438
1568
|
},
|
|
1439
|
-
"runtimeConfigDefaultProps": {},
|
|
1569
|
+
"runtimeConfigDefaultProps": { "size": "button.defaultSize" },
|
|
1440
1570
|
"runtimeConfigGetStyles": {},
|
|
1441
1571
|
"runtimeConfigInternalComponentProps": {},
|
|
1442
1572
|
"motionVarPrefixes": []
|
|
@@ -1471,6 +1601,19 @@ var componentData_default = {
|
|
|
1471
1601
|
"runtimeConfigInternalComponentProps": {},
|
|
1472
1602
|
"motionVarPrefixes": ["--uds-motion-subtle-3-", "--uds-motion-smooth-3-"]
|
|
1473
1603
|
},
|
|
1604
|
+
UDSButtonConfigProvider: {
|
|
1605
|
+
"name": "UDSButtonConfigProvider",
|
|
1606
|
+
"defaultProps": {},
|
|
1607
|
+
"getStylesLiterals": {},
|
|
1608
|
+
"cxLiterals": [],
|
|
1609
|
+
"internalComponents": ["ButtonContext.Provider"],
|
|
1610
|
+
"internalComponentProps": {},
|
|
1611
|
+
"propToVariantKeys": {},
|
|
1612
|
+
"runtimeConfigDefaultProps": {},
|
|
1613
|
+
"runtimeConfigGetStyles": {},
|
|
1614
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1615
|
+
"motionVarPrefixes": []
|
|
1616
|
+
},
|
|
1474
1617
|
PaddleNavContent: {
|
|
1475
1618
|
"name": "PaddleNavContent",
|
|
1476
1619
|
"defaultProps": {},
|
|
@@ -1610,136 +1753,6 @@ var componentData_default = {
|
|
|
1610
1753
|
"runtimeConfigInternalComponentProps": {},
|
|
1611
1754
|
"motionVarPrefixes": []
|
|
1612
1755
|
},
|
|
1613
|
-
ChipButton: {
|
|
1614
|
-
"name": "ChipButton",
|
|
1615
|
-
"defaultProps": { "variant": "primary" },
|
|
1616
|
-
"getStylesLiterals": {},
|
|
1617
|
-
"cxLiterals": ["uds-ring"],
|
|
1618
|
-
"internalComponents": ["ChipBase"],
|
|
1619
|
-
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1620
|
-
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1621
|
-
"runtimeConfigDefaultProps": {},
|
|
1622
|
-
"runtimeConfigGetStyles": {},
|
|
1623
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1624
|
-
"motionVarPrefixes": []
|
|
1625
|
-
},
|
|
1626
|
-
ChipDismissible: {
|
|
1627
|
-
"name": "ChipDismissible",
|
|
1628
|
-
"defaultProps": { "variant": "primary" },
|
|
1629
|
-
"getStylesLiterals": {},
|
|
1630
|
-
"cxLiterals": [
|
|
1631
|
-
"uds-chip-dismissible-button",
|
|
1632
|
-
"uds-hit-target",
|
|
1633
|
-
"uds-ring",
|
|
1634
|
-
"rounded-full"
|
|
1635
|
-
],
|
|
1636
|
-
"internalComponents": [
|
|
1637
|
-
"ChipBase",
|
|
1638
|
-
"IconSlot",
|
|
1639
|
-
"Pressable"
|
|
1640
|
-
],
|
|
1641
|
-
"internalComponentProps": {},
|
|
1642
|
-
"propToVariantKeys": {
|
|
1643
|
-
"variant": ["chipDismissibleVariantRoot", "chipDismissibleVariantIcon"],
|
|
1644
|
-
"dismissButtonAriaLabel": ["aria-label"]
|
|
1645
|
-
},
|
|
1646
|
-
"runtimeConfigDefaultProps": {},
|
|
1647
|
-
"runtimeConfigGetStyles": {},
|
|
1648
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1649
|
-
"motionVarPrefixes": []
|
|
1650
|
-
},
|
|
1651
|
-
ChipLink: {
|
|
1652
|
-
"name": "ChipLink",
|
|
1653
|
-
"defaultProps": { "variant": "primary" },
|
|
1654
|
-
"getStylesLiterals": {},
|
|
1655
|
-
"cxLiterals": ["uds-ring"],
|
|
1656
|
-
"internalComponents": ["ChipBase"],
|
|
1657
|
-
"internalComponentProps": { "ChipBase": { "as": ["a"] } },
|
|
1658
|
-
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1659
|
-
"runtimeConfigDefaultProps": {},
|
|
1660
|
-
"runtimeConfigGetStyles": {},
|
|
1661
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1662
|
-
"motionVarPrefixes": []
|
|
1663
|
-
},
|
|
1664
|
-
Chip: {
|
|
1665
|
-
"name": "Chip",
|
|
1666
|
-
"defaultProps": {},
|
|
1667
|
-
"getStylesLiterals": {},
|
|
1668
|
-
"cxLiterals": [],
|
|
1669
|
-
"internalComponents": [
|
|
1670
|
-
"ChipDismissible",
|
|
1671
|
-
"ChipToggle",
|
|
1672
|
-
"ChipLink",
|
|
1673
|
-
"ChipButton"
|
|
1674
|
-
],
|
|
1675
|
-
"internalComponentProps": {},
|
|
1676
|
-
"propToVariantKeys": {},
|
|
1677
|
-
"runtimeConfigDefaultProps": {},
|
|
1678
|
-
"runtimeConfigGetStyles": {},
|
|
1679
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1680
|
-
"motionVarPrefixes": []
|
|
1681
|
-
},
|
|
1682
|
-
ChipToggle: {
|
|
1683
|
-
"name": "ChipToggle",
|
|
1684
|
-
"defaultProps": {
|
|
1685
|
-
"variant": "primary",
|
|
1686
|
-
"role": "checkbox"
|
|
1687
|
-
},
|
|
1688
|
-
"getStylesLiterals": {
|
|
1689
|
-
"chipToggleVariantActiveRoot": "on",
|
|
1690
|
-
"chipToggleVariantActiveRoot:1": "off"
|
|
1691
|
-
},
|
|
1692
|
-
"cxLiterals": ["uds-ring"],
|
|
1693
|
-
"internalComponents": ["ChipBase"],
|
|
1694
|
-
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1695
|
-
"propToVariantKeys": { "variant": ["chipToggleVariantRoot", "chipToggleVariantIcon"] },
|
|
1696
|
-
"runtimeConfigDefaultProps": {},
|
|
1697
|
-
"runtimeConfigGetStyles": {},
|
|
1698
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1699
|
-
"motionVarPrefixes": []
|
|
1700
|
-
},
|
|
1701
|
-
ChipBase: {
|
|
1702
|
-
"name": "ChipBase",
|
|
1703
|
-
"defaultProps": {
|
|
1704
|
-
"size": "md",
|
|
1705
|
-
"as": "div"
|
|
1706
|
-
},
|
|
1707
|
-
"getStylesLiterals": {},
|
|
1708
|
-
"cxLiterals": [
|
|
1709
|
-
"pointer-events-none",
|
|
1710
|
-
"cursor-default",
|
|
1711
|
-
"opacity-50",
|
|
1712
|
-
"inline-flex",
|
|
1713
|
-
"items-center",
|
|
1714
|
-
"transition-[background-color,outline-color,box-shadow]",
|
|
1715
|
-
"truncate",
|
|
1716
|
-
"whitespace-nowrap",
|
|
1717
|
-
"text-center",
|
|
1718
|
-
"flex-1",
|
|
1719
|
-
"md",
|
|
1720
|
-
"primary"
|
|
1721
|
-
],
|
|
1722
|
-
"internalComponents": [
|
|
1723
|
-
"IconSlot",
|
|
1724
|
-
"HStack",
|
|
1725
|
-
"As",
|
|
1726
|
-
"Text"
|
|
1727
|
-
],
|
|
1728
|
-
"internalComponentProps": { "Text": {
|
|
1729
|
-
"as": ["span"],
|
|
1730
|
-
"color": ["current"],
|
|
1731
|
-
"variant": ["inherit"]
|
|
1732
|
-
} },
|
|
1733
|
-
"propToVariantKeys": {
|
|
1734
|
-
"size": ["chipSizeRoot", "chipSizeIcon"],
|
|
1735
|
-
"startIcon": ["icon"],
|
|
1736
|
-
"endIcon": ["icon"]
|
|
1737
|
-
},
|
|
1738
|
-
"runtimeConfigDefaultProps": {},
|
|
1739
|
-
"runtimeConfigGetStyles": {},
|
|
1740
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1741
|
-
"motionVarPrefixes": []
|
|
1742
|
-
},
|
|
1743
1756
|
IconButtonBase: {
|
|
1744
1757
|
"name": "IconButtonBase",
|
|
1745
1758
|
"defaultProps": { "type": "button" },
|
|
@@ -1767,7 +1780,7 @@ var componentData_default = {
|
|
|
1767
1780
|
"size": ["iconbuttonSizeRoot", "iconbuttonSizeIcon"],
|
|
1768
1781
|
"variant": ["buttonVariantRoot", "buttonVariantIcon"]
|
|
1769
1782
|
},
|
|
1770
|
-
"runtimeConfigDefaultProps": {},
|
|
1783
|
+
"runtimeConfigDefaultProps": { "size": "iconButton.defaultSize" },
|
|
1771
1784
|
"runtimeConfigGetStyles": {},
|
|
1772
1785
|
"runtimeConfigInternalComponentProps": {},
|
|
1773
1786
|
"motionVarPrefixes": []
|
|
@@ -1802,6 +1815,19 @@ var componentData_default = {
|
|
|
1802
1815
|
"runtimeConfigInternalComponentProps": {},
|
|
1803
1816
|
"motionVarPrefixes": ["--uds-motion-subtle-3-", "--uds-motion-smooth-3-"]
|
|
1804
1817
|
},
|
|
1818
|
+
UDSIconButtonConfigProvider: {
|
|
1819
|
+
"name": "UDSIconButtonConfigProvider",
|
|
1820
|
+
"defaultProps": {},
|
|
1821
|
+
"getStylesLiterals": {},
|
|
1822
|
+
"cxLiterals": [],
|
|
1823
|
+
"internalComponents": ["IconButtonContext.Provider"],
|
|
1824
|
+
"internalComponentProps": {},
|
|
1825
|
+
"propToVariantKeys": {},
|
|
1826
|
+
"runtimeConfigDefaultProps": {},
|
|
1827
|
+
"runtimeConfigGetStyles": {},
|
|
1828
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1829
|
+
"motionVarPrefixes": []
|
|
1830
|
+
},
|
|
1805
1831
|
CheckboxBase: {
|
|
1806
1832
|
"name": "CheckboxBase",
|
|
1807
1833
|
"defaultProps": {
|
|
@@ -2304,6 +2330,97 @@ var componentData_default = {
|
|
|
2304
2330
|
"runtimeConfigInternalComponentProps": {},
|
|
2305
2331
|
"motionVarPrefixes": []
|
|
2306
2332
|
},
|
|
2333
|
+
UDSTooltipConfigProvider: {
|
|
2334
|
+
"name": "UDSTooltipConfigProvider",
|
|
2335
|
+
"defaultProps": {},
|
|
2336
|
+
"getStylesLiterals": {},
|
|
2337
|
+
"cxLiterals": [],
|
|
2338
|
+
"internalComponents": ["TooltipContext.Provider"],
|
|
2339
|
+
"internalComponentProps": {},
|
|
2340
|
+
"propToVariantKeys": {},
|
|
2341
|
+
"runtimeConfigDefaultProps": {},
|
|
2342
|
+
"runtimeConfigGetStyles": {},
|
|
2343
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2344
|
+
"motionVarPrefixes": []
|
|
2345
|
+
},
|
|
2346
|
+
TooltipTrigger: {
|
|
2347
|
+
"name": "TooltipTrigger",
|
|
2348
|
+
"defaultProps": {},
|
|
2349
|
+
"getStylesLiterals": {},
|
|
2350
|
+
"cxLiterals": [],
|
|
2351
|
+
"internalComponents": ["TooltipAnchor"],
|
|
2352
|
+
"internalComponentProps": { "TooltipAnchor": { "className": ["inline"] } },
|
|
2353
|
+
"propToVariantKeys": { "children": ["render"] },
|
|
2354
|
+
"runtimeConfigDefaultProps": {},
|
|
2355
|
+
"runtimeConfigGetStyles": {},
|
|
2356
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2357
|
+
"motionVarPrefixes": []
|
|
2358
|
+
},
|
|
2359
|
+
TooltipContent: {
|
|
2360
|
+
"name": "TooltipContent",
|
|
2361
|
+
"defaultProps": {},
|
|
2362
|
+
"getStylesLiterals": {
|
|
2363
|
+
"tooltipSizeRoot": "default",
|
|
2364
|
+
"tooltipVariantRoot": "default",
|
|
2365
|
+
"tooltipSizeSvg": "default",
|
|
2366
|
+
"tooltipVariantSvg": "default",
|
|
2367
|
+
"tooltipVariantBlur": "default",
|
|
2368
|
+
"position": "absolute",
|
|
2369
|
+
"width": "full",
|
|
2370
|
+
"height": "full",
|
|
2371
|
+
"tooltipSizeTitle": "default",
|
|
2372
|
+
"tooltipSizeBody": "default",
|
|
2373
|
+
"tooltipSizeEndContent": "default",
|
|
2374
|
+
"tooltipSizeIcon": "default",
|
|
2375
|
+
"tooltipVariantIcon": "default"
|
|
2376
|
+
},
|
|
2377
|
+
"cxLiterals": [
|
|
2378
|
+
"max-w-lg",
|
|
2379
|
+
"flex",
|
|
2380
|
+
"z-[9999]",
|
|
2381
|
+
"uds-bgBlurFillFallback",
|
|
2382
|
+
"uds-bgBlurFallback",
|
|
2383
|
+
"top-0",
|
|
2384
|
+
"left-0",
|
|
2385
|
+
"z-[1]"
|
|
2386
|
+
],
|
|
2387
|
+
"internalComponents": [
|
|
2388
|
+
"IconSlot",
|
|
2389
|
+
"TooltipArrow",
|
|
2390
|
+
"Tooltip",
|
|
2391
|
+
"SvgFloatingOverlay",
|
|
2392
|
+
"VStack",
|
|
2393
|
+
"Box",
|
|
2394
|
+
"Text"
|
|
2395
|
+
],
|
|
2396
|
+
"internalComponentProps": {
|
|
2397
|
+
"SvgFloatingOverlay": { "contentOverflow": ["visible"] },
|
|
2398
|
+
"VStack": { "className": ["gap-[inherit]"] },
|
|
2399
|
+
"Box": {
|
|
2400
|
+
"alignItems": ["center"],
|
|
2401
|
+
"columnGap": ["1", "1.5"]
|
|
2402
|
+
},
|
|
2403
|
+
"Text": { "color": ["inherit"] }
|
|
2404
|
+
},
|
|
2405
|
+
"propToVariantKeys": { "startTitleIcon": ["icon"] },
|
|
2406
|
+
"runtimeConfigDefaultProps": {},
|
|
2407
|
+
"runtimeConfigGetStyles": {},
|
|
2408
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2409
|
+
"motionVarPrefixes": []
|
|
2410
|
+
},
|
|
2411
|
+
Tooltip: {
|
|
2412
|
+
"name": "Tooltip",
|
|
2413
|
+
"defaultProps": {},
|
|
2414
|
+
"getStylesLiterals": {},
|
|
2415
|
+
"cxLiterals": [],
|
|
2416
|
+
"internalComponents": ["TooltipInternalContext.Provider", "TooltipProvider"],
|
|
2417
|
+
"internalComponentProps": {},
|
|
2418
|
+
"propToVariantKeys": {},
|
|
2419
|
+
"runtimeConfigDefaultProps": {},
|
|
2420
|
+
"runtimeConfigGetStyles": {},
|
|
2421
|
+
"runtimeConfigInternalComponentProps": { "TooltipProvider": { "animated": ["tooltip.animationDuration"] } },
|
|
2422
|
+
"motionVarPrefixes": []
|
|
2423
|
+
},
|
|
2307
2424
|
PaginationEllipsis: {
|
|
2308
2425
|
"name": "PaginationEllipsis",
|
|
2309
2426
|
"defaultProps": {},
|
|
@@ -2684,97 +2801,6 @@ var componentData_default = {
|
|
|
2684
2801
|
"runtimeConfigInternalComponentProps": {},
|
|
2685
2802
|
"motionVarPrefixes": []
|
|
2686
2803
|
},
|
|
2687
|
-
UDSTooltipConfigProvider: {
|
|
2688
|
-
"name": "UDSTooltipConfigProvider",
|
|
2689
|
-
"defaultProps": {},
|
|
2690
|
-
"getStylesLiterals": {},
|
|
2691
|
-
"cxLiterals": [],
|
|
2692
|
-
"internalComponents": ["TooltipContext.Provider"],
|
|
2693
|
-
"internalComponentProps": {},
|
|
2694
|
-
"propToVariantKeys": {},
|
|
2695
|
-
"runtimeConfigDefaultProps": {},
|
|
2696
|
-
"runtimeConfigGetStyles": {},
|
|
2697
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2698
|
-
"motionVarPrefixes": []
|
|
2699
|
-
},
|
|
2700
|
-
TooltipTrigger: {
|
|
2701
|
-
"name": "TooltipTrigger",
|
|
2702
|
-
"defaultProps": {},
|
|
2703
|
-
"getStylesLiterals": {},
|
|
2704
|
-
"cxLiterals": [],
|
|
2705
|
-
"internalComponents": ["TooltipAnchor"],
|
|
2706
|
-
"internalComponentProps": { "TooltipAnchor": { "className": ["inline"] } },
|
|
2707
|
-
"propToVariantKeys": { "children": ["render"] },
|
|
2708
|
-
"runtimeConfigDefaultProps": {},
|
|
2709
|
-
"runtimeConfigGetStyles": {},
|
|
2710
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2711
|
-
"motionVarPrefixes": []
|
|
2712
|
-
},
|
|
2713
|
-
TooltipContent: {
|
|
2714
|
-
"name": "TooltipContent",
|
|
2715
|
-
"defaultProps": {},
|
|
2716
|
-
"getStylesLiterals": {
|
|
2717
|
-
"tooltipSizeRoot": "default",
|
|
2718
|
-
"tooltipVariantRoot": "default",
|
|
2719
|
-
"tooltipSizeSvg": "default",
|
|
2720
|
-
"tooltipVariantSvg": "default",
|
|
2721
|
-
"tooltipVariantBlur": "default",
|
|
2722
|
-
"position": "absolute",
|
|
2723
|
-
"width": "full",
|
|
2724
|
-
"height": "full",
|
|
2725
|
-
"tooltipSizeTitle": "default",
|
|
2726
|
-
"tooltipSizeBody": "default",
|
|
2727
|
-
"tooltipSizeEndContent": "default",
|
|
2728
|
-
"tooltipSizeIcon": "default",
|
|
2729
|
-
"tooltipVariantIcon": "default"
|
|
2730
|
-
},
|
|
2731
|
-
"cxLiterals": [
|
|
2732
|
-
"max-w-lg",
|
|
2733
|
-
"flex",
|
|
2734
|
-
"z-[9999]",
|
|
2735
|
-
"uds-bgBlurFillFallback",
|
|
2736
|
-
"uds-bgBlurFallback",
|
|
2737
|
-
"top-0",
|
|
2738
|
-
"left-0",
|
|
2739
|
-
"z-[1]"
|
|
2740
|
-
],
|
|
2741
|
-
"internalComponents": [
|
|
2742
|
-
"IconSlot",
|
|
2743
|
-
"TooltipArrow",
|
|
2744
|
-
"Tooltip",
|
|
2745
|
-
"SvgFloatingOverlay",
|
|
2746
|
-
"VStack",
|
|
2747
|
-
"Box",
|
|
2748
|
-
"Text"
|
|
2749
|
-
],
|
|
2750
|
-
"internalComponentProps": {
|
|
2751
|
-
"SvgFloatingOverlay": { "contentOverflow": ["visible"] },
|
|
2752
|
-
"VStack": { "className": ["gap-[inherit]"] },
|
|
2753
|
-
"Box": {
|
|
2754
|
-
"alignItems": ["center"],
|
|
2755
|
-
"columnGap": ["1", "1.5"]
|
|
2756
|
-
},
|
|
2757
|
-
"Text": { "color": ["inherit"] }
|
|
2758
|
-
},
|
|
2759
|
-
"propToVariantKeys": { "startTitleIcon": ["icon"] },
|
|
2760
|
-
"runtimeConfigDefaultProps": {},
|
|
2761
|
-
"runtimeConfigGetStyles": {},
|
|
2762
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2763
|
-
"motionVarPrefixes": []
|
|
2764
|
-
},
|
|
2765
|
-
Tooltip: {
|
|
2766
|
-
"name": "Tooltip",
|
|
2767
|
-
"defaultProps": {},
|
|
2768
|
-
"getStylesLiterals": {},
|
|
2769
|
-
"cxLiterals": [],
|
|
2770
|
-
"internalComponents": ["TooltipInternalContext.Provider", "TooltipProvider"],
|
|
2771
|
-
"internalComponentProps": {},
|
|
2772
|
-
"propToVariantKeys": {},
|
|
2773
|
-
"runtimeConfigDefaultProps": {},
|
|
2774
|
-
"runtimeConfigGetStyles": {},
|
|
2775
|
-
"runtimeConfigInternalComponentProps": { "TooltipProvider": { "animated": ["tooltip.animationDuration"] } },
|
|
2776
|
-
"motionVarPrefixes": []
|
|
2777
|
-
},
|
|
2778
2804
|
UDSBreakpointsConfigProvider: {
|
|
2779
2805
|
"name": "UDSBreakpointsConfigProvider",
|
|
2780
2806
|
"defaultProps": {},
|
|
@@ -2796,6 +2822,8 @@ var componentData_default = {
|
|
|
2796
2822
|
"internalComponents": [
|
|
2797
2823
|
"UDSBreakpointsConfigProvider",
|
|
2798
2824
|
"UDSBottomSheetConfigProvider",
|
|
2825
|
+
"UDSButtonConfigProvider",
|
|
2826
|
+
"UDSIconButtonConfigProvider",
|
|
2799
2827
|
"UDSToastConfigProvider",
|
|
2800
2828
|
"UDSTooltipConfigProvider",
|
|
2801
2829
|
"UDSPopoverConfigProvider",
|