@yahoo/uds 3.114.0-beta.3 → 3.115.0-beta.1
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/automated-config/dist/generated/autoVariants.cjs +3 -0
- package/dist/automated-config/dist/generated/autoVariants.d.cts +3 -0
- package/dist/automated-config/dist/generated/autoVariants.d.ts +3 -0
- package/dist/automated-config/dist/generated/autoVariants.js +3 -0
- package/dist/automated-config/dist/generated/generatedConfigs.cjs +1883 -0
- package/dist/automated-config/dist/generated/generatedConfigs.d.cts +175 -1
- package/dist/automated-config/dist/generated/generatedConfigs.d.ts +175 -1
- package/dist/automated-config/dist/generated/generatedConfigs.js +1882 -1
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.cjs +84 -0
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.cts +3 -1
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.ts +3 -1
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.js +84 -0
- package/dist/automated-config/dist/properties.cjs +57 -11
- package/dist/automated-config/dist/properties.d.cts +8 -0
- package/dist/automated-config/dist/properties.d.ts +8 -0
- package/dist/automated-config/dist/properties.js +57 -11
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.cts +2 -2
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.ts +2 -2
- package/dist/cli/commands/sync.cjs +4 -0
- package/dist/cli/commands/sync.js +4 -0
- package/dist/components/Scrim.cjs +28 -0
- package/dist/components/Scrim.d.cts +14 -0
- package/dist/components/Scrim.d.ts +14 -0
- package/dist/components/Scrim.js +26 -0
- package/dist/components/client/BottomSheet/BottomSheet.cjs +209 -0
- package/dist/components/client/BottomSheet/BottomSheet.d.cts +77 -0
- package/dist/components/client/BottomSheet/BottomSheet.d.ts +77 -0
- package/dist/components/client/BottomSheet/BottomSheet.js +207 -0
- package/dist/components/client/BottomSheet/BottomSheetContent.cjs +26 -0
- package/dist/components/client/BottomSheet/BottomSheetContent.d.cts +15 -0
- package/dist/components/client/BottomSheet/BottomSheetContent.d.ts +15 -0
- package/dist/components/client/BottomSheet/BottomSheetContent.js +24 -0
- package/dist/components/client/BottomSheet/BottomSheetDismiss.cjs +15 -0
- package/dist/components/client/BottomSheet/BottomSheetDismiss.d.cts +12 -0
- package/dist/components/client/BottomSheet/BottomSheetDismiss.d.ts +12 -0
- package/dist/components/client/BottomSheet/BottomSheetDismiss.js +13 -0
- package/dist/components/client/BottomSheet/BottomSheetHandle.cjs +30 -0
- package/dist/components/client/BottomSheet/BottomSheetHandle.d.cts +19 -0
- package/dist/components/client/BottomSheet/BottomSheetHandle.d.ts +19 -0
- package/dist/components/client/BottomSheet/BottomSheetHandle.js +28 -0
- package/dist/components/client/BottomSheet/BottomSheetHeader.cjs +42 -0
- package/dist/components/client/BottomSheet/BottomSheetHeader.d.cts +18 -0
- package/dist/components/client/BottomSheet/BottomSheetHeader.d.ts +18 -0
- package/dist/components/client/BottomSheet/BottomSheetHeader.js +40 -0
- package/dist/components/client/BottomSheet/BottomSheetProvider.cjs +21 -0
- package/dist/components/client/BottomSheet/BottomSheetProvider.d.cts +19 -0
- package/dist/components/client/BottomSheet/BottomSheetProvider.d.ts +19 -0
- package/dist/components/client/BottomSheet/BottomSheetProvider.js +19 -0
- package/dist/components/client/BottomSheet/BottomSheetTrigger.cjs +15 -0
- package/dist/components/client/BottomSheet/BottomSheetTrigger.d.cts +12 -0
- package/dist/components/client/BottomSheet/BottomSheetTrigger.d.ts +12 -0
- package/dist/components/client/BottomSheet/BottomSheetTrigger.js +13 -0
- package/dist/components/client/BottomSheet/UDSBottomSheetConfigProvider.cjs +32 -0
- package/dist/components/client/BottomSheet/UDSBottomSheetConfigProvider.d.cts +22 -0
- package/dist/components/client/BottomSheet/UDSBottomSheetConfigProvider.d.ts +22 -0
- package/dist/components/client/BottomSheet/UDSBottomSheetConfigProvider.js +29 -0
- package/dist/components/client/BottomSheet/index.cjs +22 -0
- package/dist/components/client/BottomSheet/index.d.cts +10 -0
- package/dist/components/client/BottomSheet/index.d.ts +10 -0
- package/dist/components/client/BottomSheet/index.js +12 -0
- package/dist/components/client/BottomSheet/useBottomSheetDrag.cjs +188 -0
- package/dist/components/client/BottomSheet/useBottomSheetDrag.d.cts +44 -0
- package/dist/components/client/BottomSheet/useBottomSheetDrag.d.ts +44 -0
- package/dist/components/client/BottomSheet/useBottomSheetDrag.js +185 -0
- package/dist/components/client/BottomSheet/useBottomSheetSnapModel.cjs +138 -0
- package/dist/components/client/BottomSheet/useBottomSheetSnapModel.d.cts +46 -0
- package/dist/components/client/BottomSheet/useBottomSheetSnapModel.d.ts +46 -0
- package/dist/components/client/BottomSheet/useBottomSheetSnapModel.js +135 -0
- package/dist/components/client/BottomSheet/useBottomSheetStore.cjs +34 -0
- package/dist/components/client/BottomSheet/useBottomSheetStore.d.cts +38 -0
- package/dist/components/client/BottomSheet/useBottomSheetStore.d.ts +38 -0
- package/dist/components/client/BottomSheet/useBottomSheetStore.js +31 -0
- package/dist/components/client/BottomSheet/useBottomSheetStoreInternal.cjs +17 -0
- package/dist/components/client/BottomSheet/useBottomSheetStoreInternal.d.cts +13 -0
- package/dist/components/client/BottomSheet/useBottomSheetStoreInternal.d.ts +13 -0
- package/dist/components/client/BottomSheet/useBottomSheetStoreInternal.js +15 -0
- package/dist/components/client/BottomSheet/useExpansionMargins.cjs +89 -0
- package/dist/components/client/BottomSheet/useExpansionMargins.d.cts +34 -0
- package/dist/components/client/BottomSheet/useExpansionMargins.d.ts +34 -0
- package/dist/components/client/BottomSheet/useExpansionMargins.js +87 -0
- package/dist/components/client/BottomSheet/useViewportHeight.cjs +32 -0
- package/dist/components/client/BottomSheet/useViewportHeight.d.cts +9 -0
- package/dist/components/client/BottomSheet/useViewportHeight.d.ts +9 -0
- package/dist/components/client/BottomSheet/useViewportHeight.js +30 -0
- package/dist/components/client/BottomSheet/useVirtualKeyboard.cjs +48 -0
- package/dist/components/client/BottomSheet/useVirtualKeyboard.d.cts +10 -0
- package/dist/components/client/BottomSheet/useVirtualKeyboard.d.ts +10 -0
- package/dist/components/client/BottomSheet/useVirtualKeyboard.js +46 -0
- package/dist/components/client/BottomSheet/utils.cjs +128 -0
- package/dist/components/client/BottomSheet/utils.d.cts +61 -0
- package/dist/components/client/BottomSheet/utils.d.ts +61 -0
- package/dist/components/client/BottomSheet/utils.js +118 -0
- package/dist/components/client/Menu/Menu.Content.cjs +1 -1
- package/dist/components/client/Menu/Menu.Content.js +1 -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/Menu/Menu.index.d.cts +1 -1
- package/dist/components/client/index.cjs +16 -0
- package/dist/components/client/index.d.cts +10 -1
- package/dist/components/client/index.d.ts +10 -1
- package/dist/components/client/index.js +9 -1
- package/dist/components/client/providers/UDSConfigProvider.cjs +10 -6
- package/dist/components/client/providers/UDSConfigProvider.d.cts +1 -0
- package/dist/components/client/providers/UDSConfigProvider.d.ts +1 -0
- package/dist/components/client/providers/UDSConfigProvider.js +10 -6
- package/dist/components/index.cjs +24 -0
- package/dist/components/index.d.cts +9 -1
- package/dist/components/index.d.ts +9 -1
- package/dist/components/index.js +17 -1
- package/dist/config/dist/index.cjs +110 -2
- package/dist/config/dist/index.js +110 -2
- package/dist/fixtures/dist/index.cjs +103 -0
- package/dist/fixtures/dist/index.d.cts +3 -2
- package/dist/fixtures/dist/index.d.ts +3 -2
- package/dist/fixtures/dist/index.js +103 -1
- package/dist/fixtures/index.cjs +1 -0
- package/dist/fixtures/index.d.cts +2 -2
- package/dist/fixtures/index.d.ts +2 -2
- package/dist/fixtures/index.js +2 -2
- package/dist/index.cjs +20 -0
- package/dist/index.d.cts +12 -3
- package/dist/index.d.ts +12 -3
- package/dist/index.js +11 -2
- package/dist/runtime/bottomSheetConfig.cjs +11 -0
- package/dist/runtime/bottomSheetConfig.d.cts +15 -0
- package/dist/runtime/bottomSheetConfig.d.ts +15 -0
- package/dist/runtime/bottomSheetConfig.js +9 -0
- package/dist/runtime/index.cjs +2 -0
- package/dist/runtime/index.d.cts +2 -1
- package/dist/runtime/index.d.ts +2 -1
- package/dist/runtime/index.js +2 -1
- package/dist/runtime/udsConfig.cjs +2 -0
- package/dist/runtime/udsConfig.d.cts +2 -0
- package/dist/runtime/udsConfig.d.ts +2 -0
- package/dist/runtime/udsConfig.js +2 -0
- package/dist/styles/styler.d.cts +47 -44
- package/dist/styles/styler.d.ts +51 -48
- package/dist/styles/variants.d.cts +9 -0
- package/dist/styles/variants.d.ts +9 -0
- package/dist/tailwind/dist/tailwind/plugins/components.cjs +2 -0
- package/dist/tailwind/dist/tailwind/plugins/components.js +3 -1
- package/dist/tailwind/dist/tailwind/utils/getFontStyles.d.cts +1 -1
- package/dist/tailwind/dist/tailwind/utils/getFontStyles.d.ts +1 -1
- package/dist/tailwind/dist/tailwind/utils/getShadowStyles.d.cts +4 -4
- package/dist/tailwind/dist/tailwind/utils/getShadowStyles.d.ts +4 -4
- package/dist/tokens/automation/configs/index.cjs +2 -0
- package/dist/tokens/automation/configs/index.d.cts +2 -2
- package/dist/tokens/automation/configs/index.d.ts +2 -2
- package/dist/tokens/automation/configs/index.js +2 -2
- package/dist/tokens/automation/index.cjs +2 -0
- package/dist/tokens/automation/index.d.cts +2 -2
- package/dist/tokens/automation/index.d.ts +2 -2
- package/dist/tokens/automation/index.js +2 -2
- package/dist/tokens/index.cjs +2 -0
- package/dist/tokens/index.d.cts +3 -3
- package/dist/tokens/index.d.ts +3 -3
- package/dist/tokens/index.js +2 -2
- package/dist/tokens/types.d.cts +2 -2
- package/dist/tokens/types.d.ts +2 -2
- package/dist/types/dist/index.d.cts +76 -1
- package/dist/types/dist/index.d.ts +76 -1
- package/dist/uds/generated/componentData.cjs +358 -117
- package/dist/uds/generated/componentData.js +305 -118
- package/dist/uds/generated/tailwindPurge.cjs +57 -29
- package/dist/uds/generated/tailwindPurge.js +57 -29
- package/generated/componentData.json +475 -209
- package/generated/tailwindPurge.ts +39 -8
- package/package.json +1 -1
|
@@ -94,6 +94,42 @@
|
|
|
94
94
|
},
|
|
95
95
|
"motionVarPrefixes": []
|
|
96
96
|
},
|
|
97
|
+
"Scrim": {
|
|
98
|
+
"name": "Scrim",
|
|
99
|
+
"defaultProps": {
|
|
100
|
+
"variant": "default",
|
|
101
|
+
"position": "fixed"
|
|
102
|
+
},
|
|
103
|
+
"getStylesLiterals": {},
|
|
104
|
+
"cxLiterals": [
|
|
105
|
+
"fixed",
|
|
106
|
+
"absolute",
|
|
107
|
+
"inset-0",
|
|
108
|
+
"z-40",
|
|
109
|
+
"transition-opacity",
|
|
110
|
+
"duration-150",
|
|
111
|
+
"data-[enter]:opacity-100",
|
|
112
|
+
"[&:not([data-enter])]:opacity-0",
|
|
113
|
+
"opacity-100",
|
|
114
|
+
"uds-bgBlurFallback"
|
|
115
|
+
],
|
|
116
|
+
"internalComponents": [
|
|
117
|
+
"Box"
|
|
118
|
+
],
|
|
119
|
+
"internalComponentProps": {
|
|
120
|
+
"Box": {
|
|
121
|
+
"display": [
|
|
122
|
+
"block"
|
|
123
|
+
]
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
"propToVariantKeys": {
|
|
127
|
+
"variant": [
|
|
128
|
+
"scrimVariantRoot"
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
"motionVarPrefixes": []
|
|
132
|
+
},
|
|
97
133
|
"Icon": {
|
|
98
134
|
"name": "Icon",
|
|
99
135
|
"defaultProps": {
|
|
@@ -1431,6 +1467,235 @@
|
|
|
1431
1467
|
},
|
|
1432
1468
|
"motionVarPrefixes": []
|
|
1433
1469
|
},
|
|
1470
|
+
"BottomSheetContent": {
|
|
1471
|
+
"name": "BottomSheetContent",
|
|
1472
|
+
"defaultProps": {},
|
|
1473
|
+
"getStylesLiterals": {},
|
|
1474
|
+
"cxLiterals": [
|
|
1475
|
+
"min-h-0",
|
|
1476
|
+
"touch-pan-y"
|
|
1477
|
+
],
|
|
1478
|
+
"internalComponents": [
|
|
1479
|
+
"Box",
|
|
1480
|
+
"VStack"
|
|
1481
|
+
],
|
|
1482
|
+
"internalComponentProps": {
|
|
1483
|
+
"Box": {
|
|
1484
|
+
"display": [
|
|
1485
|
+
"block"
|
|
1486
|
+
],
|
|
1487
|
+
"overflowY": [
|
|
1488
|
+
"auto"
|
|
1489
|
+
],
|
|
1490
|
+
"flex": [
|
|
1491
|
+
"1"
|
|
1492
|
+
]
|
|
1493
|
+
},
|
|
1494
|
+
"VStack": {
|
|
1495
|
+
"className": [
|
|
1496
|
+
"pb-[calc(env(safe-area-inset-bottom))]"
|
|
1497
|
+
]
|
|
1498
|
+
}
|
|
1499
|
+
},
|
|
1500
|
+
"propToVariantKeys": {},
|
|
1501
|
+
"motionVarPrefixes": []
|
|
1502
|
+
},
|
|
1503
|
+
"BottomSheetDismiss": {
|
|
1504
|
+
"name": "BottomSheetDismiss",
|
|
1505
|
+
"defaultProps": {},
|
|
1506
|
+
"getStylesLiterals": {},
|
|
1507
|
+
"cxLiterals": [],
|
|
1508
|
+
"internalComponents": [
|
|
1509
|
+
"AriakitDialogDismiss"
|
|
1510
|
+
],
|
|
1511
|
+
"internalComponentProps": {},
|
|
1512
|
+
"propToVariantKeys": {},
|
|
1513
|
+
"motionVarPrefixes": []
|
|
1514
|
+
},
|
|
1515
|
+
"BottomSheet": {
|
|
1516
|
+
"name": "BottomSheet",
|
|
1517
|
+
"defaultProps": {
|
|
1518
|
+
"variant": "default"
|
|
1519
|
+
},
|
|
1520
|
+
"getStylesLiterals": {},
|
|
1521
|
+
"cxLiterals": [
|
|
1522
|
+
"fixed",
|
|
1523
|
+
"overflow-hidden",
|
|
1524
|
+
"inset-x-0",
|
|
1525
|
+
"bottom-0",
|
|
1526
|
+
"z-50",
|
|
1527
|
+
"[will-change:transform]",
|
|
1528
|
+
"touch-none",
|
|
1529
|
+
"[transform:translate3d(0,var(--uds-bottomsheet-hidden-translate),0)]",
|
|
1530
|
+
"data-[enter]:[transform:translate3d(0,var(--uds-bottomsheet-visible-translate),0)]",
|
|
1531
|
+
"transition-transform",
|
|
1532
|
+
"duration-500",
|
|
1533
|
+
"ease-[cubic-bezier(0.32,0.72,0,1)]",
|
|
1534
|
+
"motion-reduce:transition-none",
|
|
1535
|
+
"top-[-4px]",
|
|
1536
|
+
"z-[1]",
|
|
1537
|
+
"touch-pan-y"
|
|
1538
|
+
],
|
|
1539
|
+
"internalComponents": [
|
|
1540
|
+
"Scrim",
|
|
1541
|
+
"BottomSheetHandle",
|
|
1542
|
+
"Dialog",
|
|
1543
|
+
"Box"
|
|
1544
|
+
],
|
|
1545
|
+
"internalComponentProps": {
|
|
1546
|
+
"BottomSheetHandle": {
|
|
1547
|
+
"ariaLabel": [
|
|
1548
|
+
"Resize sheet"
|
|
1549
|
+
]
|
|
1550
|
+
},
|
|
1551
|
+
"Dialog": {
|
|
1552
|
+
"data-testid": [
|
|
1553
|
+
"bottom-sheet"
|
|
1554
|
+
]
|
|
1555
|
+
},
|
|
1556
|
+
"Box": {
|
|
1557
|
+
"display": [
|
|
1558
|
+
"block"
|
|
1559
|
+
],
|
|
1560
|
+
"position": [
|
|
1561
|
+
"absolute"
|
|
1562
|
+
]
|
|
1563
|
+
}
|
|
1564
|
+
},
|
|
1565
|
+
"propToVariantKeys": {
|
|
1566
|
+
"variant": [
|
|
1567
|
+
"bottomsheetVariantRoot"
|
|
1568
|
+
]
|
|
1569
|
+
},
|
|
1570
|
+
"motionVarPrefixes": []
|
|
1571
|
+
},
|
|
1572
|
+
"BottomSheetHandle": {
|
|
1573
|
+
"name": "BottomSheetHandle",
|
|
1574
|
+
"defaultProps": {},
|
|
1575
|
+
"getStylesLiterals": {},
|
|
1576
|
+
"cxLiterals": [
|
|
1577
|
+
"relative",
|
|
1578
|
+
"h-5",
|
|
1579
|
+
"w-16",
|
|
1580
|
+
"outline-none",
|
|
1581
|
+
"focus-visible:outline-none",
|
|
1582
|
+
"[touch-action:pan-y]",
|
|
1583
|
+
"absolute",
|
|
1584
|
+
"left-1/2",
|
|
1585
|
+
"top-1/2",
|
|
1586
|
+
"-translate-x-1/2",
|
|
1587
|
+
"-translate-y-1/2",
|
|
1588
|
+
"h-1",
|
|
1589
|
+
"w-8",
|
|
1590
|
+
"rounded-full",
|
|
1591
|
+
"bg-accent"
|
|
1592
|
+
],
|
|
1593
|
+
"internalComponents": [
|
|
1594
|
+
"Box"
|
|
1595
|
+
],
|
|
1596
|
+
"internalComponentProps": {
|
|
1597
|
+
"Box": {
|
|
1598
|
+
"display": [
|
|
1599
|
+
"block",
|
|
1600
|
+
"flex"
|
|
1601
|
+
],
|
|
1602
|
+
"justifyContent": [
|
|
1603
|
+
"center"
|
|
1604
|
+
]
|
|
1605
|
+
}
|
|
1606
|
+
},
|
|
1607
|
+
"propToVariantKeys": {},
|
|
1608
|
+
"motionVarPrefixes": []
|
|
1609
|
+
},
|
|
1610
|
+
"BottomSheetHeader": {
|
|
1611
|
+
"name": "BottomSheetHeader",
|
|
1612
|
+
"defaultProps": {
|
|
1613
|
+
"variant": "default"
|
|
1614
|
+
},
|
|
1615
|
+
"getStylesLiterals": {},
|
|
1616
|
+
"cxLiterals": [
|
|
1617
|
+
"grid-cols-[40px_1fr_40px]",
|
|
1618
|
+
"items-center",
|
|
1619
|
+
"w-full",
|
|
1620
|
+
"min-h-10",
|
|
1621
|
+
"mt-2"
|
|
1622
|
+
],
|
|
1623
|
+
"internalComponents": [
|
|
1624
|
+
"Box",
|
|
1625
|
+
"Text"
|
|
1626
|
+
],
|
|
1627
|
+
"internalComponentProps": {
|
|
1628
|
+
"Box": {
|
|
1629
|
+
"className": [
|
|
1630
|
+
"h-10 w-10 opacity-0 pointer-events-none"
|
|
1631
|
+
],
|
|
1632
|
+
"display": [
|
|
1633
|
+
"grid",
|
|
1634
|
+
"flex"
|
|
1635
|
+
],
|
|
1636
|
+
"justifyContent": [
|
|
1637
|
+
"flex-start",
|
|
1638
|
+
"flex-end"
|
|
1639
|
+
]
|
|
1640
|
+
},
|
|
1641
|
+
"Text": {
|
|
1642
|
+
"variant": [
|
|
1643
|
+
"inherit"
|
|
1644
|
+
],
|
|
1645
|
+
"color": [
|
|
1646
|
+
"inherit"
|
|
1647
|
+
],
|
|
1648
|
+
"textAlign": [
|
|
1649
|
+
"center"
|
|
1650
|
+
],
|
|
1651
|
+
"className": [
|
|
1652
|
+
"w-full"
|
|
1653
|
+
]
|
|
1654
|
+
}
|
|
1655
|
+
},
|
|
1656
|
+
"propToVariantKeys": {
|
|
1657
|
+
"variant": [
|
|
1658
|
+
"bottomsheetVariantHeader"
|
|
1659
|
+
]
|
|
1660
|
+
},
|
|
1661
|
+
"motionVarPrefixes": []
|
|
1662
|
+
},
|
|
1663
|
+
"BottomSheetTrigger": {
|
|
1664
|
+
"name": "BottomSheetTrigger",
|
|
1665
|
+
"defaultProps": {},
|
|
1666
|
+
"getStylesLiterals": {},
|
|
1667
|
+
"cxLiterals": [],
|
|
1668
|
+
"internalComponents": [
|
|
1669
|
+
"AriakitDialogDisclosure"
|
|
1670
|
+
],
|
|
1671
|
+
"internalComponentProps": {},
|
|
1672
|
+
"propToVariantKeys": {},
|
|
1673
|
+
"motionVarPrefixes": []
|
|
1674
|
+
},
|
|
1675
|
+
"BottomSheetProvider": {
|
|
1676
|
+
"name": "BottomSheetProvider",
|
|
1677
|
+
"defaultProps": {},
|
|
1678
|
+
"getStylesLiterals": {},
|
|
1679
|
+
"cxLiterals": [],
|
|
1680
|
+
"internalComponents": [
|
|
1681
|
+
"AriakitDialogProvider"
|
|
1682
|
+
],
|
|
1683
|
+
"internalComponentProps": {},
|
|
1684
|
+
"propToVariantKeys": {},
|
|
1685
|
+
"motionVarPrefixes": []
|
|
1686
|
+
},
|
|
1687
|
+
"UDSBottomSheetConfigProvider": {
|
|
1688
|
+
"name": "UDSBottomSheetConfigProvider",
|
|
1689
|
+
"defaultProps": {},
|
|
1690
|
+
"getStylesLiterals": {},
|
|
1691
|
+
"cxLiterals": [],
|
|
1692
|
+
"internalComponents": [
|
|
1693
|
+
"BottomSheetContext.Provider"
|
|
1694
|
+
],
|
|
1695
|
+
"internalComponentProps": {},
|
|
1696
|
+
"propToVariantKeys": {},
|
|
1697
|
+
"motionVarPrefixes": []
|
|
1698
|
+
},
|
|
1434
1699
|
"UDSToastConfigProvider": {
|
|
1435
1700
|
"name": "UDSToastConfigProvider",
|
|
1436
1701
|
"defaultProps": {},
|
|
@@ -1986,6 +2251,7 @@
|
|
|
1986
2251
|
"cxLiterals": [],
|
|
1987
2252
|
"internalComponents": [
|
|
1988
2253
|
"UDSBreakpointsConfigProvider",
|
|
2254
|
+
"UDSBottomSheetConfigProvider",
|
|
1989
2255
|
"UDSToastConfigProvider",
|
|
1990
2256
|
"UDSTooltipConfigProvider"
|
|
1991
2257
|
],
|
|
@@ -2005,43 +2271,224 @@
|
|
|
2005
2271
|
"propToVariantKeys": {},
|
|
2006
2272
|
"motionVarPrefixes": []
|
|
2007
2273
|
},
|
|
2008
|
-
"
|
|
2009
|
-
"name": "
|
|
2010
|
-
"defaultProps": {
|
|
2011
|
-
|
|
2012
|
-
"menuitemItemVariantRoot": "default",
|
|
2013
|
-
"menuitemItemVariantActiveRoot": "on",
|
|
2014
|
-
"menuitemItemVariantActiveRoot:1": "off",
|
|
2015
|
-
"menuitemItemVariantText": "default",
|
|
2016
|
-
"menuitemItemVariantActiveText": "on",
|
|
2017
|
-
"menuitemItemVariantActiveText:1": "off",
|
|
2018
|
-
"menuitemItemVariantIcon": "default",
|
|
2019
|
-
"menuitemItemVariantActiveIcon": "on",
|
|
2020
|
-
"menuitemItemVariantActiveIcon:1": "off"
|
|
2274
|
+
"ChipLink": {
|
|
2275
|
+
"name": "ChipLink",
|
|
2276
|
+
"defaultProps": {
|
|
2277
|
+
"variant": "primary"
|
|
2021
2278
|
},
|
|
2022
|
-
"
|
|
2279
|
+
"getStylesLiterals": {},
|
|
2280
|
+
"cxLiterals": [
|
|
2281
|
+
"uds-ring"
|
|
2282
|
+
],
|
|
2023
2283
|
"internalComponents": [
|
|
2024
|
-
"
|
|
2284
|
+
"ChipBase"
|
|
2025
2285
|
],
|
|
2026
|
-
"internalComponentProps": {
|
|
2027
|
-
|
|
2286
|
+
"internalComponentProps": {
|
|
2287
|
+
"ChipBase": {
|
|
2288
|
+
"as": [
|
|
2289
|
+
"a"
|
|
2290
|
+
]
|
|
2291
|
+
}
|
|
2292
|
+
},
|
|
2293
|
+
"propToVariantKeys": {
|
|
2294
|
+
"variant": [
|
|
2295
|
+
"chipLinkVariantRoot",
|
|
2296
|
+
"chipLinkVariantIcon"
|
|
2297
|
+
]
|
|
2298
|
+
},
|
|
2028
2299
|
"motionVarPrefixes": []
|
|
2029
2300
|
},
|
|
2030
|
-
"
|
|
2031
|
-
"name": "
|
|
2032
|
-
"defaultProps": {
|
|
2301
|
+
"ChipDismissible": {
|
|
2302
|
+
"name": "ChipDismissible",
|
|
2303
|
+
"defaultProps": {
|
|
2304
|
+
"variant": "primary"
|
|
2305
|
+
},
|
|
2033
2306
|
"getStylesLiterals": {},
|
|
2034
|
-
"cxLiterals": [
|
|
2307
|
+
"cxLiterals": [
|
|
2308
|
+
"uds-chip-dismissible-button",
|
|
2309
|
+
"uds-hit-target",
|
|
2310
|
+
"uds-ring",
|
|
2311
|
+
"rounded-full"
|
|
2312
|
+
],
|
|
2035
2313
|
"internalComponents": [
|
|
2036
|
-
"
|
|
2037
|
-
"
|
|
2314
|
+
"ChipBase",
|
|
2315
|
+
"IconSlot",
|
|
2316
|
+
"Pressable"
|
|
2038
2317
|
],
|
|
2039
2318
|
"internalComponentProps": {},
|
|
2040
|
-
"propToVariantKeys": {
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2319
|
+
"propToVariantKeys": {
|
|
2320
|
+
"variant": [
|
|
2321
|
+
"chipDismissibleVariantRoot",
|
|
2322
|
+
"chipDismissibleVariantIcon"
|
|
2323
|
+
],
|
|
2324
|
+
"dismissButtonAriaLabel": [
|
|
2325
|
+
"aria-label"
|
|
2326
|
+
]
|
|
2327
|
+
},
|
|
2328
|
+
"motionVarPrefixes": []
|
|
2329
|
+
},
|
|
2330
|
+
"ChipToggle": {
|
|
2331
|
+
"name": "ChipToggle",
|
|
2332
|
+
"defaultProps": {
|
|
2333
|
+
"variant": "primary",
|
|
2334
|
+
"role": "checkbox"
|
|
2335
|
+
},
|
|
2336
|
+
"getStylesLiterals": {
|
|
2337
|
+
"chipToggleVariantActiveRoot": "on",
|
|
2338
|
+
"chipToggleVariantActiveRoot:1": "off"
|
|
2339
|
+
},
|
|
2340
|
+
"cxLiterals": [
|
|
2341
|
+
"uds-ring"
|
|
2342
|
+
],
|
|
2343
|
+
"internalComponents": [
|
|
2344
|
+
"ChipBase"
|
|
2345
|
+
],
|
|
2346
|
+
"internalComponentProps": {
|
|
2347
|
+
"ChipBase": {
|
|
2348
|
+
"as": [
|
|
2349
|
+
"button"
|
|
2350
|
+
]
|
|
2351
|
+
}
|
|
2352
|
+
},
|
|
2353
|
+
"propToVariantKeys": {
|
|
2354
|
+
"variant": [
|
|
2355
|
+
"chipToggleVariantRoot",
|
|
2356
|
+
"chipToggleVariantIcon"
|
|
2357
|
+
]
|
|
2358
|
+
},
|
|
2359
|
+
"motionVarPrefixes": []
|
|
2360
|
+
},
|
|
2361
|
+
"Chip": {
|
|
2362
|
+
"name": "Chip",
|
|
2363
|
+
"defaultProps": {},
|
|
2364
|
+
"getStylesLiterals": {},
|
|
2365
|
+
"cxLiterals": [],
|
|
2366
|
+
"internalComponents": [
|
|
2367
|
+
"ChipDismissible",
|
|
2368
|
+
"ChipToggle",
|
|
2369
|
+
"ChipLink",
|
|
2370
|
+
"ChipButton"
|
|
2371
|
+
],
|
|
2372
|
+
"internalComponentProps": {},
|
|
2373
|
+
"propToVariantKeys": {},
|
|
2374
|
+
"motionVarPrefixes": []
|
|
2375
|
+
},
|
|
2376
|
+
"ChipBase": {
|
|
2377
|
+
"name": "ChipBase",
|
|
2378
|
+
"defaultProps": {
|
|
2379
|
+
"size": "md",
|
|
2380
|
+
"as": "div"
|
|
2381
|
+
},
|
|
2382
|
+
"getStylesLiterals": {},
|
|
2383
|
+
"cxLiterals": [
|
|
2384
|
+
"pointer-events-none",
|
|
2385
|
+
"cursor-default",
|
|
2386
|
+
"opacity-50",
|
|
2387
|
+
"inline-flex",
|
|
2388
|
+
"items-center",
|
|
2389
|
+
"transition-[background-color,outline-color,box-shadow]",
|
|
2390
|
+
"truncate",
|
|
2391
|
+
"whitespace-nowrap",
|
|
2392
|
+
"text-center",
|
|
2393
|
+
"flex-1"
|
|
2394
|
+
],
|
|
2395
|
+
"internalComponents": [
|
|
2396
|
+
"IconSlot",
|
|
2397
|
+
"HStack",
|
|
2398
|
+
"As",
|
|
2399
|
+
"Text"
|
|
2400
|
+
],
|
|
2401
|
+
"internalComponentProps": {
|
|
2402
|
+
"Text": {
|
|
2403
|
+
"as": [
|
|
2404
|
+
"span"
|
|
2405
|
+
],
|
|
2406
|
+
"color": [
|
|
2407
|
+
"current"
|
|
2408
|
+
],
|
|
2409
|
+
"variant": [
|
|
2410
|
+
"inherit"
|
|
2411
|
+
]
|
|
2412
|
+
}
|
|
2413
|
+
},
|
|
2414
|
+
"propToVariantKeys": {
|
|
2415
|
+
"size": [
|
|
2416
|
+
"chipSizeRoot",
|
|
2417
|
+
"chipSizeIcon"
|
|
2418
|
+
],
|
|
2419
|
+
"startIcon": [
|
|
2420
|
+
"icon"
|
|
2421
|
+
],
|
|
2422
|
+
"endIcon": [
|
|
2423
|
+
"icon"
|
|
2424
|
+
]
|
|
2425
|
+
},
|
|
2426
|
+
"motionVarPrefixes": []
|
|
2427
|
+
},
|
|
2428
|
+
"ChipButton": {
|
|
2429
|
+
"name": "ChipButton",
|
|
2430
|
+
"defaultProps": {
|
|
2431
|
+
"variant": "primary"
|
|
2432
|
+
},
|
|
2433
|
+
"getStylesLiterals": {},
|
|
2434
|
+
"cxLiterals": [
|
|
2435
|
+
"uds-ring"
|
|
2436
|
+
],
|
|
2437
|
+
"internalComponents": [
|
|
2438
|
+
"ChipBase"
|
|
2439
|
+
],
|
|
2440
|
+
"internalComponentProps": {
|
|
2441
|
+
"ChipBase": {
|
|
2442
|
+
"as": [
|
|
2443
|
+
"button"
|
|
2444
|
+
]
|
|
2445
|
+
}
|
|
2446
|
+
},
|
|
2447
|
+
"propToVariantKeys": {
|
|
2448
|
+
"variant": [
|
|
2449
|
+
"chipLinkVariantRoot",
|
|
2450
|
+
"chipLinkVariantIcon"
|
|
2451
|
+
]
|
|
2452
|
+
},
|
|
2453
|
+
"motionVarPrefixes": []
|
|
2454
|
+
},
|
|
2455
|
+
"Menu.Item": {
|
|
2456
|
+
"name": "Menu.Item",
|
|
2457
|
+
"defaultProps": {},
|
|
2458
|
+
"getStylesLiterals": {
|
|
2459
|
+
"menuitemItemVariantRoot": "default",
|
|
2460
|
+
"menuitemItemVariantActiveRoot": "on",
|
|
2461
|
+
"menuitemItemVariantActiveRoot:1": "off",
|
|
2462
|
+
"menuitemItemVariantText": "default",
|
|
2463
|
+
"menuitemItemVariantActiveText": "on",
|
|
2464
|
+
"menuitemItemVariantActiveText:1": "off",
|
|
2465
|
+
"menuitemItemVariantIcon": "default",
|
|
2466
|
+
"menuitemItemVariantActiveIcon": "on",
|
|
2467
|
+
"menuitemItemVariantActiveIcon:1": "off"
|
|
2468
|
+
},
|
|
2469
|
+
"cxLiterals": [],
|
|
2470
|
+
"internalComponents": [
|
|
2471
|
+
"MenuItemBase"
|
|
2472
|
+
],
|
|
2473
|
+
"internalComponentProps": {},
|
|
2474
|
+
"propToVariantKeys": {},
|
|
2475
|
+
"motionVarPrefixes": []
|
|
2476
|
+
},
|
|
2477
|
+
"Menu.Provider": {
|
|
2478
|
+
"name": "Menu.Provider",
|
|
2479
|
+
"defaultProps": {},
|
|
2480
|
+
"getStylesLiterals": {},
|
|
2481
|
+
"cxLiterals": [],
|
|
2482
|
+
"internalComponents": [
|
|
2483
|
+
"AriakitMenuProvider",
|
|
2484
|
+
"SpringMotionConfig"
|
|
2485
|
+
],
|
|
2486
|
+
"internalComponentProps": {},
|
|
2487
|
+
"propToVariantKeys": {},
|
|
2488
|
+
"motionVarPrefixes": [
|
|
2489
|
+
"--uds-motion-subtle-3-",
|
|
2490
|
+
"--uds-motion-smooth-3-"
|
|
2491
|
+
]
|
|
2045
2492
|
},
|
|
2046
2493
|
"Menu.ItemBase": {
|
|
2047
2494
|
"name": "Menu.ItemBase",
|
|
@@ -2232,186 +2679,5 @@
|
|
|
2232
2679
|
"internalComponentProps": {},
|
|
2233
2680
|
"propToVariantKeys": {},
|
|
2234
2681
|
"motionVarPrefixes": []
|
|
2235
|
-
},
|
|
2236
|
-
"ChipLink": {
|
|
2237
|
-
"name": "ChipLink",
|
|
2238
|
-
"defaultProps": {
|
|
2239
|
-
"variant": "primary"
|
|
2240
|
-
},
|
|
2241
|
-
"getStylesLiterals": {},
|
|
2242
|
-
"cxLiterals": [
|
|
2243
|
-
"uds-ring"
|
|
2244
|
-
],
|
|
2245
|
-
"internalComponents": [
|
|
2246
|
-
"ChipBase"
|
|
2247
|
-
],
|
|
2248
|
-
"internalComponentProps": {
|
|
2249
|
-
"ChipBase": {
|
|
2250
|
-
"as": [
|
|
2251
|
-
"a"
|
|
2252
|
-
]
|
|
2253
|
-
}
|
|
2254
|
-
},
|
|
2255
|
-
"propToVariantKeys": {
|
|
2256
|
-
"variant": [
|
|
2257
|
-
"chipLinkVariantRoot",
|
|
2258
|
-
"chipLinkVariantIcon"
|
|
2259
|
-
]
|
|
2260
|
-
},
|
|
2261
|
-
"motionVarPrefixes": []
|
|
2262
|
-
},
|
|
2263
|
-
"ChipDismissible": {
|
|
2264
|
-
"name": "ChipDismissible",
|
|
2265
|
-
"defaultProps": {
|
|
2266
|
-
"variant": "primary"
|
|
2267
|
-
},
|
|
2268
|
-
"getStylesLiterals": {},
|
|
2269
|
-
"cxLiterals": [
|
|
2270
|
-
"uds-chip-dismissible-button",
|
|
2271
|
-
"uds-hit-target",
|
|
2272
|
-
"uds-ring",
|
|
2273
|
-
"rounded-full"
|
|
2274
|
-
],
|
|
2275
|
-
"internalComponents": [
|
|
2276
|
-
"ChipBase",
|
|
2277
|
-
"IconSlot",
|
|
2278
|
-
"Pressable"
|
|
2279
|
-
],
|
|
2280
|
-
"internalComponentProps": {},
|
|
2281
|
-
"propToVariantKeys": {
|
|
2282
|
-
"variant": [
|
|
2283
|
-
"chipDismissibleVariantRoot",
|
|
2284
|
-
"chipDismissibleVariantIcon"
|
|
2285
|
-
],
|
|
2286
|
-
"dismissButtonAriaLabel": [
|
|
2287
|
-
"aria-label"
|
|
2288
|
-
]
|
|
2289
|
-
},
|
|
2290
|
-
"motionVarPrefixes": []
|
|
2291
|
-
},
|
|
2292
|
-
"ChipToggle": {
|
|
2293
|
-
"name": "ChipToggle",
|
|
2294
|
-
"defaultProps": {
|
|
2295
|
-
"variant": "primary",
|
|
2296
|
-
"role": "checkbox"
|
|
2297
|
-
},
|
|
2298
|
-
"getStylesLiterals": {
|
|
2299
|
-
"chipToggleVariantActiveRoot": "on",
|
|
2300
|
-
"chipToggleVariantActiveRoot:1": "off"
|
|
2301
|
-
},
|
|
2302
|
-
"cxLiterals": [
|
|
2303
|
-
"uds-ring"
|
|
2304
|
-
],
|
|
2305
|
-
"internalComponents": [
|
|
2306
|
-
"ChipBase"
|
|
2307
|
-
],
|
|
2308
|
-
"internalComponentProps": {
|
|
2309
|
-
"ChipBase": {
|
|
2310
|
-
"as": [
|
|
2311
|
-
"button"
|
|
2312
|
-
]
|
|
2313
|
-
}
|
|
2314
|
-
},
|
|
2315
|
-
"propToVariantKeys": {
|
|
2316
|
-
"variant": [
|
|
2317
|
-
"chipToggleVariantRoot",
|
|
2318
|
-
"chipToggleVariantIcon"
|
|
2319
|
-
]
|
|
2320
|
-
},
|
|
2321
|
-
"motionVarPrefixes": []
|
|
2322
|
-
},
|
|
2323
|
-
"Chip": {
|
|
2324
|
-
"name": "Chip",
|
|
2325
|
-
"defaultProps": {},
|
|
2326
|
-
"getStylesLiterals": {},
|
|
2327
|
-
"cxLiterals": [],
|
|
2328
|
-
"internalComponents": [
|
|
2329
|
-
"ChipDismissible",
|
|
2330
|
-
"ChipToggle",
|
|
2331
|
-
"ChipLink",
|
|
2332
|
-
"ChipButton"
|
|
2333
|
-
],
|
|
2334
|
-
"internalComponentProps": {},
|
|
2335
|
-
"propToVariantKeys": {},
|
|
2336
|
-
"motionVarPrefixes": []
|
|
2337
|
-
},
|
|
2338
|
-
"ChipBase": {
|
|
2339
|
-
"name": "ChipBase",
|
|
2340
|
-
"defaultProps": {
|
|
2341
|
-
"size": "md",
|
|
2342
|
-
"as": "div"
|
|
2343
|
-
},
|
|
2344
|
-
"getStylesLiterals": {},
|
|
2345
|
-
"cxLiterals": [
|
|
2346
|
-
"pointer-events-none",
|
|
2347
|
-
"cursor-default",
|
|
2348
|
-
"opacity-50",
|
|
2349
|
-
"inline-flex",
|
|
2350
|
-
"items-center",
|
|
2351
|
-
"transition-[background-color,outline-color,box-shadow]",
|
|
2352
|
-
"truncate",
|
|
2353
|
-
"whitespace-nowrap",
|
|
2354
|
-
"text-center",
|
|
2355
|
-
"flex-1"
|
|
2356
|
-
],
|
|
2357
|
-
"internalComponents": [
|
|
2358
|
-
"IconSlot",
|
|
2359
|
-
"HStack",
|
|
2360
|
-
"As",
|
|
2361
|
-
"Text"
|
|
2362
|
-
],
|
|
2363
|
-
"internalComponentProps": {
|
|
2364
|
-
"Text": {
|
|
2365
|
-
"as": [
|
|
2366
|
-
"span"
|
|
2367
|
-
],
|
|
2368
|
-
"color": [
|
|
2369
|
-
"current"
|
|
2370
|
-
],
|
|
2371
|
-
"variant": [
|
|
2372
|
-
"inherit"
|
|
2373
|
-
]
|
|
2374
|
-
}
|
|
2375
|
-
},
|
|
2376
|
-
"propToVariantKeys": {
|
|
2377
|
-
"size": [
|
|
2378
|
-
"chipSizeRoot",
|
|
2379
|
-
"chipSizeIcon"
|
|
2380
|
-
],
|
|
2381
|
-
"startIcon": [
|
|
2382
|
-
"icon"
|
|
2383
|
-
],
|
|
2384
|
-
"endIcon": [
|
|
2385
|
-
"icon"
|
|
2386
|
-
]
|
|
2387
|
-
},
|
|
2388
|
-
"motionVarPrefixes": []
|
|
2389
|
-
},
|
|
2390
|
-
"ChipButton": {
|
|
2391
|
-
"name": "ChipButton",
|
|
2392
|
-
"defaultProps": {
|
|
2393
|
-
"variant": "primary"
|
|
2394
|
-
},
|
|
2395
|
-
"getStylesLiterals": {},
|
|
2396
|
-
"cxLiterals": [
|
|
2397
|
-
"uds-ring"
|
|
2398
|
-
],
|
|
2399
|
-
"internalComponents": [
|
|
2400
|
-
"ChipBase"
|
|
2401
|
-
],
|
|
2402
|
-
"internalComponentProps": {
|
|
2403
|
-
"ChipBase": {
|
|
2404
|
-
"as": [
|
|
2405
|
-
"button"
|
|
2406
|
-
]
|
|
2407
|
-
}
|
|
2408
|
-
},
|
|
2409
|
-
"propToVariantKeys": {
|
|
2410
|
-
"variant": [
|
|
2411
|
-
"chipLinkVariantRoot",
|
|
2412
|
-
"chipLinkVariantIcon"
|
|
2413
|
-
]
|
|
2414
|
-
},
|
|
2415
|
-
"motionVarPrefixes": []
|
|
2416
2682
|
}
|
|
2417
2683
|
}
|