@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
|
@@ -64,6 +64,30 @@ var Box = {
|
|
|
64
64
|
] },
|
|
65
65
|
"motionVarPrefixes": []
|
|
66
66
|
};
|
|
67
|
+
var Scrim = {
|
|
68
|
+
"name": "Scrim",
|
|
69
|
+
"defaultProps": {
|
|
70
|
+
"variant": "default",
|
|
71
|
+
"position": "fixed"
|
|
72
|
+
},
|
|
73
|
+
"getStylesLiterals": {},
|
|
74
|
+
"cxLiterals": [
|
|
75
|
+
"fixed",
|
|
76
|
+
"absolute",
|
|
77
|
+
"inset-0",
|
|
78
|
+
"z-40",
|
|
79
|
+
"transition-opacity",
|
|
80
|
+
"duration-150",
|
|
81
|
+
"data-[enter]:opacity-100",
|
|
82
|
+
"[&:not([data-enter])]:opacity-0",
|
|
83
|
+
"opacity-100",
|
|
84
|
+
"uds-bgBlurFallback"
|
|
85
|
+
],
|
|
86
|
+
"internalComponents": ["Box"],
|
|
87
|
+
"internalComponentProps": { "Box": { "display": ["block"] } },
|
|
88
|
+
"propToVariantKeys": { "variant": ["scrimVariantRoot"] },
|
|
89
|
+
"motionVarPrefixes": []
|
|
90
|
+
};
|
|
67
91
|
var Icon = {
|
|
68
92
|
"name": "Icon",
|
|
69
93
|
"defaultProps": {
|
|
@@ -986,6 +1010,159 @@ var AvatarIcon = {
|
|
|
986
1010
|
"propToVariantKeys": { "size": ["avatarSizeIcon"] },
|
|
987
1011
|
"motionVarPrefixes": []
|
|
988
1012
|
};
|
|
1013
|
+
var BottomSheetContent = {
|
|
1014
|
+
"name": "BottomSheetContent",
|
|
1015
|
+
"defaultProps": {},
|
|
1016
|
+
"getStylesLiterals": {},
|
|
1017
|
+
"cxLiterals": ["min-h-0", "touch-pan-y"],
|
|
1018
|
+
"internalComponents": ["Box", "VStack"],
|
|
1019
|
+
"internalComponentProps": {
|
|
1020
|
+
"Box": {
|
|
1021
|
+
"display": ["block"],
|
|
1022
|
+
"overflowY": ["auto"],
|
|
1023
|
+
"flex": ["1"]
|
|
1024
|
+
},
|
|
1025
|
+
"VStack": { "className": ["pb-[calc(env(safe-area-inset-bottom))]"] }
|
|
1026
|
+
},
|
|
1027
|
+
"propToVariantKeys": {},
|
|
1028
|
+
"motionVarPrefixes": []
|
|
1029
|
+
};
|
|
1030
|
+
var BottomSheetDismiss = {
|
|
1031
|
+
"name": "BottomSheetDismiss",
|
|
1032
|
+
"defaultProps": {},
|
|
1033
|
+
"getStylesLiterals": {},
|
|
1034
|
+
"cxLiterals": [],
|
|
1035
|
+
"internalComponents": ["AriakitDialogDismiss"],
|
|
1036
|
+
"internalComponentProps": {},
|
|
1037
|
+
"propToVariantKeys": {},
|
|
1038
|
+
"motionVarPrefixes": []
|
|
1039
|
+
};
|
|
1040
|
+
var BottomSheet = {
|
|
1041
|
+
"name": "BottomSheet",
|
|
1042
|
+
"defaultProps": { "variant": "default" },
|
|
1043
|
+
"getStylesLiterals": {},
|
|
1044
|
+
"cxLiterals": [
|
|
1045
|
+
"fixed",
|
|
1046
|
+
"overflow-hidden",
|
|
1047
|
+
"inset-x-0",
|
|
1048
|
+
"bottom-0",
|
|
1049
|
+
"z-50",
|
|
1050
|
+
"[will-change:transform]",
|
|
1051
|
+
"touch-none",
|
|
1052
|
+
"[transform:translate3d(0,var(--uds-bottomsheet-hidden-translate),0)]",
|
|
1053
|
+
"data-[enter]:[transform:translate3d(0,var(--uds-bottomsheet-visible-translate),0)]",
|
|
1054
|
+
"transition-transform",
|
|
1055
|
+
"duration-500",
|
|
1056
|
+
"ease-[cubic-bezier(0.32,0.72,0,1)]",
|
|
1057
|
+
"motion-reduce:transition-none",
|
|
1058
|
+
"top-[-4px]",
|
|
1059
|
+
"z-[1]",
|
|
1060
|
+
"touch-pan-y"
|
|
1061
|
+
],
|
|
1062
|
+
"internalComponents": [
|
|
1063
|
+
"Scrim",
|
|
1064
|
+
"BottomSheetHandle",
|
|
1065
|
+
"Dialog",
|
|
1066
|
+
"Box"
|
|
1067
|
+
],
|
|
1068
|
+
"internalComponentProps": {
|
|
1069
|
+
"BottomSheetHandle": { "ariaLabel": ["Resize sheet"] },
|
|
1070
|
+
"Dialog": { "data-testid": ["bottom-sheet"] },
|
|
1071
|
+
"Box": {
|
|
1072
|
+
"display": ["block"],
|
|
1073
|
+
"position": ["absolute"]
|
|
1074
|
+
}
|
|
1075
|
+
},
|
|
1076
|
+
"propToVariantKeys": { "variant": ["bottomsheetVariantRoot"] },
|
|
1077
|
+
"motionVarPrefixes": []
|
|
1078
|
+
};
|
|
1079
|
+
var BottomSheetHandle = {
|
|
1080
|
+
"name": "BottomSheetHandle",
|
|
1081
|
+
"defaultProps": {},
|
|
1082
|
+
"getStylesLiterals": {},
|
|
1083
|
+
"cxLiterals": [
|
|
1084
|
+
"relative",
|
|
1085
|
+
"h-5",
|
|
1086
|
+
"w-16",
|
|
1087
|
+
"outline-none",
|
|
1088
|
+
"focus-visible:outline-none",
|
|
1089
|
+
"[touch-action:pan-y]",
|
|
1090
|
+
"absolute",
|
|
1091
|
+
"left-1/2",
|
|
1092
|
+
"top-1/2",
|
|
1093
|
+
"-translate-x-1/2",
|
|
1094
|
+
"-translate-y-1/2",
|
|
1095
|
+
"h-1",
|
|
1096
|
+
"w-8",
|
|
1097
|
+
"rounded-full",
|
|
1098
|
+
"bg-accent"
|
|
1099
|
+
],
|
|
1100
|
+
"internalComponents": ["Box"],
|
|
1101
|
+
"internalComponentProps": { "Box": {
|
|
1102
|
+
"display": ["block", "flex"],
|
|
1103
|
+
"justifyContent": ["center"]
|
|
1104
|
+
} },
|
|
1105
|
+
"propToVariantKeys": {},
|
|
1106
|
+
"motionVarPrefixes": []
|
|
1107
|
+
};
|
|
1108
|
+
var BottomSheetHeader = {
|
|
1109
|
+
"name": "BottomSheetHeader",
|
|
1110
|
+
"defaultProps": { "variant": "default" },
|
|
1111
|
+
"getStylesLiterals": {},
|
|
1112
|
+
"cxLiterals": [
|
|
1113
|
+
"grid-cols-[40px_1fr_40px]",
|
|
1114
|
+
"items-center",
|
|
1115
|
+
"w-full",
|
|
1116
|
+
"min-h-10",
|
|
1117
|
+
"mt-2"
|
|
1118
|
+
],
|
|
1119
|
+
"internalComponents": ["Box", "Text"],
|
|
1120
|
+
"internalComponentProps": {
|
|
1121
|
+
"Box": {
|
|
1122
|
+
"className": ["h-10 w-10 opacity-0 pointer-events-none"],
|
|
1123
|
+
"display": ["grid", "flex"],
|
|
1124
|
+
"justifyContent": ["flex-start", "flex-end"]
|
|
1125
|
+
},
|
|
1126
|
+
"Text": {
|
|
1127
|
+
"variant": ["inherit"],
|
|
1128
|
+
"color": ["inherit"],
|
|
1129
|
+
"textAlign": ["center"],
|
|
1130
|
+
"className": ["w-full"]
|
|
1131
|
+
}
|
|
1132
|
+
},
|
|
1133
|
+
"propToVariantKeys": { "variant": ["bottomsheetVariantHeader"] },
|
|
1134
|
+
"motionVarPrefixes": []
|
|
1135
|
+
};
|
|
1136
|
+
var BottomSheetTrigger = {
|
|
1137
|
+
"name": "BottomSheetTrigger",
|
|
1138
|
+
"defaultProps": {},
|
|
1139
|
+
"getStylesLiterals": {},
|
|
1140
|
+
"cxLiterals": [],
|
|
1141
|
+
"internalComponents": ["AriakitDialogDisclosure"],
|
|
1142
|
+
"internalComponentProps": {},
|
|
1143
|
+
"propToVariantKeys": {},
|
|
1144
|
+
"motionVarPrefixes": []
|
|
1145
|
+
};
|
|
1146
|
+
var BottomSheetProvider = {
|
|
1147
|
+
"name": "BottomSheetProvider",
|
|
1148
|
+
"defaultProps": {},
|
|
1149
|
+
"getStylesLiterals": {},
|
|
1150
|
+
"cxLiterals": [],
|
|
1151
|
+
"internalComponents": ["AriakitDialogProvider"],
|
|
1152
|
+
"internalComponentProps": {},
|
|
1153
|
+
"propToVariantKeys": {},
|
|
1154
|
+
"motionVarPrefixes": []
|
|
1155
|
+
};
|
|
1156
|
+
var UDSBottomSheetConfigProvider = {
|
|
1157
|
+
"name": "UDSBottomSheetConfigProvider",
|
|
1158
|
+
"defaultProps": {},
|
|
1159
|
+
"getStylesLiterals": {},
|
|
1160
|
+
"cxLiterals": [],
|
|
1161
|
+
"internalComponents": ["BottomSheetContext.Provider"],
|
|
1162
|
+
"internalComponentProps": {},
|
|
1163
|
+
"propToVariantKeys": {},
|
|
1164
|
+
"motionVarPrefixes": []
|
|
1165
|
+
};
|
|
989
1166
|
var UDSToastConfigProvider = {
|
|
990
1167
|
"name": "UDSToastConfigProvider",
|
|
991
1168
|
"defaultProps": {},
|
|
@@ -1387,6 +1564,7 @@ var UDSConfigProvider = {
|
|
|
1387
1564
|
"cxLiterals": [],
|
|
1388
1565
|
"internalComponents": [
|
|
1389
1566
|
"UDSBreakpointsConfigProvider",
|
|
1567
|
+
"UDSBottomSheetConfigProvider",
|
|
1390
1568
|
"UDSToastConfigProvider",
|
|
1391
1569
|
"UDSTooltipConfigProvider"
|
|
1392
1570
|
],
|
|
@@ -1404,6 +1582,116 @@ var UDSBreakpointsConfigProvider = {
|
|
|
1404
1582
|
"propToVariantKeys": {},
|
|
1405
1583
|
"motionVarPrefixes": []
|
|
1406
1584
|
};
|
|
1585
|
+
var ChipLink = {
|
|
1586
|
+
"name": "ChipLink",
|
|
1587
|
+
"defaultProps": { "variant": "primary" },
|
|
1588
|
+
"getStylesLiterals": {},
|
|
1589
|
+
"cxLiterals": ["uds-ring"],
|
|
1590
|
+
"internalComponents": ["ChipBase"],
|
|
1591
|
+
"internalComponentProps": { "ChipBase": { "as": ["a"] } },
|
|
1592
|
+
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1593
|
+
"motionVarPrefixes": []
|
|
1594
|
+
};
|
|
1595
|
+
var ChipDismissible = {
|
|
1596
|
+
"name": "ChipDismissible",
|
|
1597
|
+
"defaultProps": { "variant": "primary" },
|
|
1598
|
+
"getStylesLiterals": {},
|
|
1599
|
+
"cxLiterals": [
|
|
1600
|
+
"uds-chip-dismissible-button",
|
|
1601
|
+
"uds-hit-target",
|
|
1602
|
+
"uds-ring",
|
|
1603
|
+
"rounded-full"
|
|
1604
|
+
],
|
|
1605
|
+
"internalComponents": [
|
|
1606
|
+
"ChipBase",
|
|
1607
|
+
"IconSlot",
|
|
1608
|
+
"Pressable"
|
|
1609
|
+
],
|
|
1610
|
+
"internalComponentProps": {},
|
|
1611
|
+
"propToVariantKeys": {
|
|
1612
|
+
"variant": ["chipDismissibleVariantRoot", "chipDismissibleVariantIcon"],
|
|
1613
|
+
"dismissButtonAriaLabel": ["aria-label"]
|
|
1614
|
+
},
|
|
1615
|
+
"motionVarPrefixes": []
|
|
1616
|
+
};
|
|
1617
|
+
var ChipToggle = {
|
|
1618
|
+
"name": "ChipToggle",
|
|
1619
|
+
"defaultProps": {
|
|
1620
|
+
"variant": "primary",
|
|
1621
|
+
"role": "checkbox"
|
|
1622
|
+
},
|
|
1623
|
+
"getStylesLiterals": {
|
|
1624
|
+
"chipToggleVariantActiveRoot": "on",
|
|
1625
|
+
"chipToggleVariantActiveRoot:1": "off"
|
|
1626
|
+
},
|
|
1627
|
+
"cxLiterals": ["uds-ring"],
|
|
1628
|
+
"internalComponents": ["ChipBase"],
|
|
1629
|
+
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1630
|
+
"propToVariantKeys": { "variant": ["chipToggleVariantRoot", "chipToggleVariantIcon"] },
|
|
1631
|
+
"motionVarPrefixes": []
|
|
1632
|
+
};
|
|
1633
|
+
var Chip = {
|
|
1634
|
+
"name": "Chip",
|
|
1635
|
+
"defaultProps": {},
|
|
1636
|
+
"getStylesLiterals": {},
|
|
1637
|
+
"cxLiterals": [],
|
|
1638
|
+
"internalComponents": [
|
|
1639
|
+
"ChipDismissible",
|
|
1640
|
+
"ChipToggle",
|
|
1641
|
+
"ChipLink",
|
|
1642
|
+
"ChipButton"
|
|
1643
|
+
],
|
|
1644
|
+
"internalComponentProps": {},
|
|
1645
|
+
"propToVariantKeys": {},
|
|
1646
|
+
"motionVarPrefixes": []
|
|
1647
|
+
};
|
|
1648
|
+
var ChipBase = {
|
|
1649
|
+
"name": "ChipBase",
|
|
1650
|
+
"defaultProps": {
|
|
1651
|
+
"size": "md",
|
|
1652
|
+
"as": "div"
|
|
1653
|
+
},
|
|
1654
|
+
"getStylesLiterals": {},
|
|
1655
|
+
"cxLiterals": [
|
|
1656
|
+
"pointer-events-none",
|
|
1657
|
+
"cursor-default",
|
|
1658
|
+
"opacity-50",
|
|
1659
|
+
"inline-flex",
|
|
1660
|
+
"items-center",
|
|
1661
|
+
"transition-[background-color,outline-color,box-shadow]",
|
|
1662
|
+
"truncate",
|
|
1663
|
+
"whitespace-nowrap",
|
|
1664
|
+
"text-center",
|
|
1665
|
+
"flex-1"
|
|
1666
|
+
],
|
|
1667
|
+
"internalComponents": [
|
|
1668
|
+
"IconSlot",
|
|
1669
|
+
"HStack",
|
|
1670
|
+
"As",
|
|
1671
|
+
"Text"
|
|
1672
|
+
],
|
|
1673
|
+
"internalComponentProps": { "Text": {
|
|
1674
|
+
"as": ["span"],
|
|
1675
|
+
"color": ["current"],
|
|
1676
|
+
"variant": ["inherit"]
|
|
1677
|
+
} },
|
|
1678
|
+
"propToVariantKeys": {
|
|
1679
|
+
"size": ["chipSizeRoot", "chipSizeIcon"],
|
|
1680
|
+
"startIcon": ["icon"],
|
|
1681
|
+
"endIcon": ["icon"]
|
|
1682
|
+
},
|
|
1683
|
+
"motionVarPrefixes": []
|
|
1684
|
+
};
|
|
1685
|
+
var ChipButton = {
|
|
1686
|
+
"name": "ChipButton",
|
|
1687
|
+
"defaultProps": { "variant": "primary" },
|
|
1688
|
+
"getStylesLiterals": {},
|
|
1689
|
+
"cxLiterals": ["uds-ring"],
|
|
1690
|
+
"internalComponents": ["ChipBase"],
|
|
1691
|
+
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1692
|
+
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1693
|
+
"motionVarPrefixes": []
|
|
1694
|
+
};
|
|
1407
1695
|
var Menu_Item = {
|
|
1408
1696
|
"name": "Menu.Item",
|
|
1409
1697
|
"defaultProps": {},
|
|
@@ -1583,120 +1871,11 @@ var Menu_ItemCheckbox = {
|
|
|
1583
1871
|
"propToVariantKeys": {},
|
|
1584
1872
|
"motionVarPrefixes": []
|
|
1585
1873
|
};
|
|
1586
|
-
var ChipLink = {
|
|
1587
|
-
"name": "ChipLink",
|
|
1588
|
-
"defaultProps": { "variant": "primary" },
|
|
1589
|
-
"getStylesLiterals": {},
|
|
1590
|
-
"cxLiterals": ["uds-ring"],
|
|
1591
|
-
"internalComponents": ["ChipBase"],
|
|
1592
|
-
"internalComponentProps": { "ChipBase": { "as": ["a"] } },
|
|
1593
|
-
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1594
|
-
"motionVarPrefixes": []
|
|
1595
|
-
};
|
|
1596
|
-
var ChipDismissible = {
|
|
1597
|
-
"name": "ChipDismissible",
|
|
1598
|
-
"defaultProps": { "variant": "primary" },
|
|
1599
|
-
"getStylesLiterals": {},
|
|
1600
|
-
"cxLiterals": [
|
|
1601
|
-
"uds-chip-dismissible-button",
|
|
1602
|
-
"uds-hit-target",
|
|
1603
|
-
"uds-ring",
|
|
1604
|
-
"rounded-full"
|
|
1605
|
-
],
|
|
1606
|
-
"internalComponents": [
|
|
1607
|
-
"ChipBase",
|
|
1608
|
-
"IconSlot",
|
|
1609
|
-
"Pressable"
|
|
1610
|
-
],
|
|
1611
|
-
"internalComponentProps": {},
|
|
1612
|
-
"propToVariantKeys": {
|
|
1613
|
-
"variant": ["chipDismissibleVariantRoot", "chipDismissibleVariantIcon"],
|
|
1614
|
-
"dismissButtonAriaLabel": ["aria-label"]
|
|
1615
|
-
},
|
|
1616
|
-
"motionVarPrefixes": []
|
|
1617
|
-
};
|
|
1618
|
-
var ChipToggle = {
|
|
1619
|
-
"name": "ChipToggle",
|
|
1620
|
-
"defaultProps": {
|
|
1621
|
-
"variant": "primary",
|
|
1622
|
-
"role": "checkbox"
|
|
1623
|
-
},
|
|
1624
|
-
"getStylesLiterals": {
|
|
1625
|
-
"chipToggleVariantActiveRoot": "on",
|
|
1626
|
-
"chipToggleVariantActiveRoot:1": "off"
|
|
1627
|
-
},
|
|
1628
|
-
"cxLiterals": ["uds-ring"],
|
|
1629
|
-
"internalComponents": ["ChipBase"],
|
|
1630
|
-
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1631
|
-
"propToVariantKeys": { "variant": ["chipToggleVariantRoot", "chipToggleVariantIcon"] },
|
|
1632
|
-
"motionVarPrefixes": []
|
|
1633
|
-
};
|
|
1634
|
-
var Chip = {
|
|
1635
|
-
"name": "Chip",
|
|
1636
|
-
"defaultProps": {},
|
|
1637
|
-
"getStylesLiterals": {},
|
|
1638
|
-
"cxLiterals": [],
|
|
1639
|
-
"internalComponents": [
|
|
1640
|
-
"ChipDismissible",
|
|
1641
|
-
"ChipToggle",
|
|
1642
|
-
"ChipLink",
|
|
1643
|
-
"ChipButton"
|
|
1644
|
-
],
|
|
1645
|
-
"internalComponentProps": {},
|
|
1646
|
-
"propToVariantKeys": {},
|
|
1647
|
-
"motionVarPrefixes": []
|
|
1648
|
-
};
|
|
1649
|
-
var ChipBase = {
|
|
1650
|
-
"name": "ChipBase",
|
|
1651
|
-
"defaultProps": {
|
|
1652
|
-
"size": "md",
|
|
1653
|
-
"as": "div"
|
|
1654
|
-
},
|
|
1655
|
-
"getStylesLiterals": {},
|
|
1656
|
-
"cxLiterals": [
|
|
1657
|
-
"pointer-events-none",
|
|
1658
|
-
"cursor-default",
|
|
1659
|
-
"opacity-50",
|
|
1660
|
-
"inline-flex",
|
|
1661
|
-
"items-center",
|
|
1662
|
-
"transition-[background-color,outline-color,box-shadow]",
|
|
1663
|
-
"truncate",
|
|
1664
|
-
"whitespace-nowrap",
|
|
1665
|
-
"text-center",
|
|
1666
|
-
"flex-1"
|
|
1667
|
-
],
|
|
1668
|
-
"internalComponents": [
|
|
1669
|
-
"IconSlot",
|
|
1670
|
-
"HStack",
|
|
1671
|
-
"As",
|
|
1672
|
-
"Text"
|
|
1673
|
-
],
|
|
1674
|
-
"internalComponentProps": { "Text": {
|
|
1675
|
-
"as": ["span"],
|
|
1676
|
-
"color": ["current"],
|
|
1677
|
-
"variant": ["inherit"]
|
|
1678
|
-
} },
|
|
1679
|
-
"propToVariantKeys": {
|
|
1680
|
-
"size": ["chipSizeRoot", "chipSizeIcon"],
|
|
1681
|
-
"startIcon": ["icon"],
|
|
1682
|
-
"endIcon": ["icon"]
|
|
1683
|
-
},
|
|
1684
|
-
"motionVarPrefixes": []
|
|
1685
|
-
};
|
|
1686
|
-
var ChipButton = {
|
|
1687
|
-
"name": "ChipButton",
|
|
1688
|
-
"defaultProps": { "variant": "primary" },
|
|
1689
|
-
"getStylesLiterals": {},
|
|
1690
|
-
"cxLiterals": ["uds-ring"],
|
|
1691
|
-
"internalComponents": ["ChipBase"],
|
|
1692
|
-
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1693
|
-
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1694
|
-
"motionVarPrefixes": []
|
|
1695
|
-
};
|
|
1696
1874
|
var componentData_default = {
|
|
1697
1875
|
Link,
|
|
1698
1876
|
VStack,
|
|
1699
1877
|
Box,
|
|
1878
|
+
Scrim,
|
|
1700
1879
|
Icon,
|
|
1701
1880
|
FormLabel,
|
|
1702
1881
|
Text,
|
|
@@ -1728,6 +1907,14 @@ var componentData_default = {
|
|
|
1728
1907
|
AvatarText,
|
|
1729
1908
|
Avatar,
|
|
1730
1909
|
AvatarIcon,
|
|
1910
|
+
BottomSheetContent,
|
|
1911
|
+
BottomSheetDismiss,
|
|
1912
|
+
BottomSheet,
|
|
1913
|
+
BottomSheetHandle,
|
|
1914
|
+
BottomSheetHeader,
|
|
1915
|
+
BottomSheetTrigger,
|
|
1916
|
+
BottomSheetProvider,
|
|
1917
|
+
UDSBottomSheetConfigProvider,
|
|
1731
1918
|
UDSToastConfigProvider,
|
|
1732
1919
|
Toast,
|
|
1733
1920
|
ToastContainer,
|
|
@@ -1744,6 +1931,12 @@ var componentData_default = {
|
|
|
1744
1931
|
InputHelpTextInternal,
|
|
1745
1932
|
UDSConfigProvider,
|
|
1746
1933
|
UDSBreakpointsConfigProvider,
|
|
1934
|
+
ChipLink,
|
|
1935
|
+
ChipDismissible,
|
|
1936
|
+
ChipToggle,
|
|
1937
|
+
Chip,
|
|
1938
|
+
ChipBase,
|
|
1939
|
+
ChipButton,
|
|
1747
1940
|
"Menu.Item": Menu_Item,
|
|
1748
1941
|
"Menu.Provider": Menu_Provider,
|
|
1749
1942
|
"Menu.ItemBase": Menu_ItemBase,
|
|
@@ -1751,13 +1944,7 @@ var componentData_default = {
|
|
|
1751
1944
|
"Menu.Content": Menu_Content,
|
|
1752
1945
|
"Menu.Divider": Menu_Divider,
|
|
1753
1946
|
Menu,
|
|
1754
|
-
"Menu.ItemCheckbox": Menu_ItemCheckbox
|
|
1755
|
-
ChipLink,
|
|
1756
|
-
ChipDismissible,
|
|
1757
|
-
ChipToggle,
|
|
1758
|
-
Chip,
|
|
1759
|
-
ChipBase,
|
|
1760
|
-
ChipButton
|
|
1947
|
+
"Menu.ItemCheckbox": Menu_ItemCheckbox
|
|
1761
1948
|
};
|
|
1762
1949
|
|
|
1763
1950
|
//#endregion
|
|
@@ -1809,6 +1996,48 @@ Object.defineProperty(exports, 'Badge', {
|
|
|
1809
1996
|
return Badge;
|
|
1810
1997
|
}
|
|
1811
1998
|
});
|
|
1999
|
+
Object.defineProperty(exports, 'BottomSheet', {
|
|
2000
|
+
enumerable: true,
|
|
2001
|
+
get: function () {
|
|
2002
|
+
return BottomSheet;
|
|
2003
|
+
}
|
|
2004
|
+
});
|
|
2005
|
+
Object.defineProperty(exports, 'BottomSheetContent', {
|
|
2006
|
+
enumerable: true,
|
|
2007
|
+
get: function () {
|
|
2008
|
+
return BottomSheetContent;
|
|
2009
|
+
}
|
|
2010
|
+
});
|
|
2011
|
+
Object.defineProperty(exports, 'BottomSheetDismiss', {
|
|
2012
|
+
enumerable: true,
|
|
2013
|
+
get: function () {
|
|
2014
|
+
return BottomSheetDismiss;
|
|
2015
|
+
}
|
|
2016
|
+
});
|
|
2017
|
+
Object.defineProperty(exports, 'BottomSheetHandle', {
|
|
2018
|
+
enumerable: true,
|
|
2019
|
+
get: function () {
|
|
2020
|
+
return BottomSheetHandle;
|
|
2021
|
+
}
|
|
2022
|
+
});
|
|
2023
|
+
Object.defineProperty(exports, 'BottomSheetHeader', {
|
|
2024
|
+
enumerable: true,
|
|
2025
|
+
get: function () {
|
|
2026
|
+
return BottomSheetHeader;
|
|
2027
|
+
}
|
|
2028
|
+
});
|
|
2029
|
+
Object.defineProperty(exports, 'BottomSheetProvider', {
|
|
2030
|
+
enumerable: true,
|
|
2031
|
+
get: function () {
|
|
2032
|
+
return BottomSheetProvider;
|
|
2033
|
+
}
|
|
2034
|
+
});
|
|
2035
|
+
Object.defineProperty(exports, 'BottomSheetTrigger', {
|
|
2036
|
+
enumerable: true,
|
|
2037
|
+
get: function () {
|
|
2038
|
+
return BottomSheetTrigger;
|
|
2039
|
+
}
|
|
2040
|
+
});
|
|
1812
2041
|
Object.defineProperty(exports, 'Box', {
|
|
1813
2042
|
enumerable: true,
|
|
1814
2043
|
get: function () {
|
|
@@ -2025,6 +2254,12 @@ Object.defineProperty(exports, 'RadioGroupStore', {
|
|
|
2025
2254
|
return RadioGroupStore;
|
|
2026
2255
|
}
|
|
2027
2256
|
});
|
|
2257
|
+
Object.defineProperty(exports, 'Scrim', {
|
|
2258
|
+
enumerable: true,
|
|
2259
|
+
get: function () {
|
|
2260
|
+
return Scrim;
|
|
2261
|
+
}
|
|
2262
|
+
});
|
|
2028
2263
|
Object.defineProperty(exports, 'SegmentedControl', {
|
|
2029
2264
|
enumerable: true,
|
|
2030
2265
|
get: function () {
|
|
@@ -2115,6 +2350,12 @@ Object.defineProperty(exports, 'TooltipTrigger', {
|
|
|
2115
2350
|
return TooltipTrigger;
|
|
2116
2351
|
}
|
|
2117
2352
|
});
|
|
2353
|
+
Object.defineProperty(exports, 'UDSBottomSheetConfigProvider', {
|
|
2354
|
+
enumerable: true,
|
|
2355
|
+
get: function () {
|
|
2356
|
+
return UDSBottomSheetConfigProvider;
|
|
2357
|
+
}
|
|
2358
|
+
});
|
|
2118
2359
|
Object.defineProperty(exports, 'UDSBreakpointsConfigProvider', {
|
|
2119
2360
|
enumerable: true,
|
|
2120
2361
|
get: function () {
|