@yahoo/uds 3.116.1 → 3.116.2
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/client/BottomSheet/BottomSheet.cjs +37 -8
- package/dist/components/client/BottomSheet/BottomSheet.js +38 -9
- package/dist/components/client/BottomSheet/BottomSheetContent.cjs +4 -2
- package/dist/components/client/BottomSheet/BottomSheetContent.js +4 -2
- package/dist/components/client/BottomSheet/BottomSheetInternalContext.cjs +15 -0
- package/dist/components/client/BottomSheet/BottomSheetInternalContext.d.cts +12 -0
- package/dist/components/client/BottomSheet/BottomSheetInternalContext.d.ts +12 -0
- package/dist/components/client/BottomSheet/BottomSheetInternalContext.js +12 -0
- package/dist/styles/styler.d.cts +44 -44
- package/dist/styles/styler.d.ts +44 -44
- package/dist/tailwind/dist/css/generate.cjs +6 -0
- package/dist/tailwind/dist/css/generate.helpers.cjs +5 -1
- package/dist/tailwind/dist/css/generate.helpers.js +5 -1
- package/dist/tailwind/dist/css/generate.js +6 -0
- package/dist/tailwind/dist/css/nodeUtils.cjs +2 -1
- package/dist/tailwind/dist/css/nodeUtils.js +2 -1
- package/dist/tailwind/dist/purger/optimized/ast/expressions.cjs +103 -1
- package/dist/tailwind/dist/purger/optimized/ast/expressions.js +102 -2
- package/dist/tailwind/dist/purger/optimized/ast/jsx.cjs +7 -1
- package/dist/tailwind/dist/purger/optimized/ast/jsx.js +7 -1
- package/dist/tailwind/dist/purger/optimized/purgeFromCode.cjs +18 -13
- package/dist/tailwind/dist/purger/optimized/purgeFromCode.js +18 -13
- package/dist/tailwind/dist/purger/optimized/utils/componentAnalyzer.cjs +2 -1
- package/dist/tailwind/dist/purger/optimized/utils/componentAnalyzer.js +2 -1
- package/dist/uds/generated/componentData.cjs +79 -60
- package/dist/uds/generated/componentData.js +74 -61
- package/dist/uds/generated/tailwindPurge.cjs +7 -7
- package/dist/uds/generated/tailwindPurge.js +7 -7
- package/generated/componentData.json +97 -82
- package/generated/tailwindPurge.ts +2 -2
- package/package.json +1 -1
|
@@ -54,6 +54,10 @@ const resolveComponentInfo = (name) => {
|
|
|
54
54
|
const getModuleSpecifierValue = (importDecl) => {
|
|
55
55
|
return importDecl.getModuleSpecifierValue() ?? importDecl.getModuleSpecifier().getText().replace(/^['"]|['"]$/g, "");
|
|
56
56
|
};
|
|
57
|
+
const isTypeOnlyNamedImport = (importDecl, importName) => {
|
|
58
|
+
if (importDecl.isTypeOnly()) return true;
|
|
59
|
+
return importDecl.getNamedImports().find((namedImport) => namedImport.getName() === importName)?.isTypeOnly() ?? false;
|
|
60
|
+
};
|
|
57
61
|
const isUdsComponentModule = (moduleSpecifier) => {
|
|
58
62
|
const cleaned = moduleSpecifier.replace(/^['"]|['"]$/g, "");
|
|
59
63
|
return cleaned === "@yahoo/uds" || cleaned.startsWith("@yahoo/uds/");
|
|
@@ -122,7 +126,7 @@ const purgeFromCodeOptimized = async (code, options) => {
|
|
|
122
126
|
componentNameLookup = buildComponentNameLookup(componentData);
|
|
123
127
|
}
|
|
124
128
|
const startTime = performance.now();
|
|
125
|
-
const sourceFile = new ts_morph.Project({ useInMemoryFileSystem: true }).createSourceFile("input.tsx", code);
|
|
129
|
+
const sourceFile = new ts_morph.Project({ useInMemoryFileSystem: true }).createSourceFile(options.filePath ?? "input.tsx", code, { overwrite: true });
|
|
126
130
|
const stats = {
|
|
127
131
|
filesScanned: 1,
|
|
128
132
|
timeMs: 0,
|
|
@@ -132,7 +136,9 @@ const purgeFromCodeOptimized = async (code, options) => {
|
|
|
132
136
|
};
|
|
133
137
|
const imports = [];
|
|
134
138
|
sourceFile.getImportDeclarations().forEach((importDecl) => {
|
|
135
|
-
if (isUdsComponentModule(getModuleSpecifierValue(importDecl))) importDecl.getNamedImports().forEach((namedImport) =>
|
|
139
|
+
if (isUdsComponentModule(getModuleSpecifierValue(importDecl))) importDecl.getNamedImports().forEach((namedImport) => {
|
|
140
|
+
if (!namedImport.isTypeOnly() && !importDecl.isTypeOnly()) imports.push(namedImport.getName());
|
|
141
|
+
});
|
|
136
142
|
});
|
|
137
143
|
const componentProps = /* @__PURE__ */ new Map();
|
|
138
144
|
const referencedComponents = /* @__PURE__ */ new Set();
|
|
@@ -282,17 +288,16 @@ const findComponentReferences = (sourceFile, componentName) => {
|
|
|
282
288
|
sourceFile.getImportDeclarations().forEach((importDecl) => {
|
|
283
289
|
if (!isUdsComponentModule(getModuleSpecifierValue(importDecl))) return;
|
|
284
290
|
importDecl.getNamedImports().forEach((namedImport) => {
|
|
285
|
-
if (namedImport.getName()
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
}
|
|
291
|
+
if (namedImport.getName() !== componentName || isTypeOnlyNamedImport(importDecl, componentName)) return;
|
|
292
|
+
const localName = namedImport.getAliasNode()?.getText() ?? componentName;
|
|
293
|
+
require_jsx.findJsxReferences(namedImport.getFirstDescendantByKindOrThrow(ts_morph.ts.SyntaxKind.Identifier)).forEach((reference) => {
|
|
294
|
+
const key = `${reference.getTagNameNode().getText()}:${reference.getStart()}`;
|
|
295
|
+
if (!seenTags.has(key)) {
|
|
296
|
+
seenTags.add(key);
|
|
297
|
+
references.push(reference);
|
|
298
|
+
}
|
|
299
|
+
});
|
|
300
|
+
collectMatchingTags(localName);
|
|
296
301
|
});
|
|
297
302
|
});
|
|
298
303
|
return references;
|
|
@@ -53,6 +53,10 @@ const resolveComponentInfo = (name) => {
|
|
|
53
53
|
const getModuleSpecifierValue = (importDecl) => {
|
|
54
54
|
return importDecl.getModuleSpecifierValue() ?? importDecl.getModuleSpecifier().getText().replace(/^['"]|['"]$/g, "");
|
|
55
55
|
};
|
|
56
|
+
const isTypeOnlyNamedImport = (importDecl, importName) => {
|
|
57
|
+
if (importDecl.isTypeOnly()) return true;
|
|
58
|
+
return importDecl.getNamedImports().find((namedImport) => namedImport.getName() === importName)?.isTypeOnly() ?? false;
|
|
59
|
+
};
|
|
56
60
|
const isUdsComponentModule = (moduleSpecifier) => {
|
|
57
61
|
const cleaned = moduleSpecifier.replace(/^['"]|['"]$/g, "");
|
|
58
62
|
return cleaned === "@yahoo/uds" || cleaned.startsWith("@yahoo/uds/");
|
|
@@ -121,7 +125,7 @@ const purgeFromCodeOptimized = async (code, options) => {
|
|
|
121
125
|
componentNameLookup = buildComponentNameLookup(componentData);
|
|
122
126
|
}
|
|
123
127
|
const startTime = performance.now();
|
|
124
|
-
const sourceFile = new Project({ useInMemoryFileSystem: true }).createSourceFile("input.tsx", code);
|
|
128
|
+
const sourceFile = new Project({ useInMemoryFileSystem: true }).createSourceFile(options.filePath ?? "input.tsx", code, { overwrite: true });
|
|
125
129
|
const stats = {
|
|
126
130
|
filesScanned: 1,
|
|
127
131
|
timeMs: 0,
|
|
@@ -131,7 +135,9 @@ const purgeFromCodeOptimized = async (code, options) => {
|
|
|
131
135
|
};
|
|
132
136
|
const imports = [];
|
|
133
137
|
sourceFile.getImportDeclarations().forEach((importDecl) => {
|
|
134
|
-
if (isUdsComponentModule(getModuleSpecifierValue(importDecl))) importDecl.getNamedImports().forEach((namedImport) =>
|
|
138
|
+
if (isUdsComponentModule(getModuleSpecifierValue(importDecl))) importDecl.getNamedImports().forEach((namedImport) => {
|
|
139
|
+
if (!namedImport.isTypeOnly() && !importDecl.isTypeOnly()) imports.push(namedImport.getName());
|
|
140
|
+
});
|
|
135
141
|
});
|
|
136
142
|
const componentProps = /* @__PURE__ */ new Map();
|
|
137
143
|
const referencedComponents = /* @__PURE__ */ new Set();
|
|
@@ -281,17 +287,16 @@ const findComponentReferences = (sourceFile, componentName) => {
|
|
|
281
287
|
sourceFile.getImportDeclarations().forEach((importDecl) => {
|
|
282
288
|
if (!isUdsComponentModule(getModuleSpecifierValue(importDecl))) return;
|
|
283
289
|
importDecl.getNamedImports().forEach((namedImport) => {
|
|
284
|
-
if (namedImport.getName()
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
}
|
|
290
|
+
if (namedImport.getName() !== componentName || isTypeOnlyNamedImport(importDecl, componentName)) return;
|
|
291
|
+
const localName = namedImport.getAliasNode()?.getText() ?? componentName;
|
|
292
|
+
findJsxReferences(namedImport.getFirstDescendantByKindOrThrow(ts.SyntaxKind.Identifier)).forEach((reference) => {
|
|
293
|
+
const key = `${reference.getTagNameNode().getText()}:${reference.getStart()}`;
|
|
294
|
+
if (!seenTags.has(key)) {
|
|
295
|
+
seenTags.add(key);
|
|
296
|
+
references.push(reference);
|
|
297
|
+
}
|
|
298
|
+
});
|
|
299
|
+
collectMatchingTags(localName);
|
|
295
300
|
});
|
|
296
301
|
});
|
|
297
302
|
return references;
|
|
@@ -20,6 +20,7 @@ let knownComponents = null;
|
|
|
20
20
|
*/
|
|
21
21
|
let componentPaths = null;
|
|
22
22
|
let scannedComponentsDir = null;
|
|
23
|
+
const hasImportQuery = (moduleSpecifier) => moduleSpecifier.includes("?");
|
|
23
24
|
const scanComponentFilePaths = async (componentsDir) => (0, fast_glob.default)(require_entryPoints.getAllowedEntryFileGlobPatterns(), {
|
|
24
25
|
cwd: componentsDir,
|
|
25
26
|
absolute: true
|
|
@@ -474,7 +475,7 @@ const resolveImportedIdentifier = (identifier) => {
|
|
|
474
475
|
if (resolvedImport) return resolvedImport;
|
|
475
476
|
if (!importDecl.getNamedImports().find((n) => n.getName() === name)) return;
|
|
476
477
|
const moduleSpec = importDecl.getModuleSpecifierValue();
|
|
477
|
-
if (!moduleSpec.startsWith(".")) return;
|
|
478
|
+
if (!moduleSpec.startsWith(".") || hasImportQuery(moduleSpec)) return;
|
|
478
479
|
const resolvedBase = node_path.default.resolve(baseDir, moduleSpec);
|
|
479
480
|
return [
|
|
480
481
|
resolvedBase,
|
|
@@ -17,6 +17,7 @@ let knownComponents = null;
|
|
|
17
17
|
*/
|
|
18
18
|
let componentPaths = null;
|
|
19
19
|
let scannedComponentsDir = null;
|
|
20
|
+
const hasImportQuery = (moduleSpecifier) => moduleSpecifier.includes("?");
|
|
20
21
|
const scanComponentFilePaths = async (componentsDir) => fg(getAllowedEntryFileGlobPatterns(), {
|
|
21
22
|
cwd: componentsDir,
|
|
22
23
|
absolute: true
|
|
@@ -471,7 +472,7 @@ const resolveImportedIdentifier = (identifier) => {
|
|
|
471
472
|
if (resolvedImport) return resolvedImport;
|
|
472
473
|
if (!importDecl.getNamedImports().find((n) => n.getName() === name)) return;
|
|
473
474
|
const moduleSpec = importDecl.getModuleSpecifierValue();
|
|
474
|
-
if (!moduleSpec.startsWith(".")) return;
|
|
475
|
+
if (!moduleSpec.startsWith(".") || hasImportQuery(moduleSpec)) return;
|
|
475
476
|
const resolvedBase = path.resolve(baseDir, moduleSpec);
|
|
476
477
|
return [
|
|
477
478
|
resolvedBase,
|
|
@@ -170,6 +170,59 @@ var Image = {
|
|
|
170
170
|
"propToVariantKeys": {},
|
|
171
171
|
"motionVarPrefixes": []
|
|
172
172
|
};
|
|
173
|
+
var DividerCore = {
|
|
174
|
+
"name": "DividerCore",
|
|
175
|
+
"defaultProps": { "contentPosition": "center" },
|
|
176
|
+
"getStylesLiterals": {},
|
|
177
|
+
"cxLiterals": [],
|
|
178
|
+
"internalComponents": [
|
|
179
|
+
"Box",
|
|
180
|
+
"Line",
|
|
181
|
+
"InternalComponent",
|
|
182
|
+
"Text"
|
|
183
|
+
],
|
|
184
|
+
"internalComponentProps": {
|
|
185
|
+
"Box": {
|
|
186
|
+
"flex": ["1", "none"],
|
|
187
|
+
"display": ["flex"]
|
|
188
|
+
},
|
|
189
|
+
"InternalComponent": {
|
|
190
|
+
"flex": ["1"],
|
|
191
|
+
"alignItems": ["center"]
|
|
192
|
+
},
|
|
193
|
+
"Text": {
|
|
194
|
+
"as": ["span"],
|
|
195
|
+
"color": ["inherit"],
|
|
196
|
+
"variant": ["inherit"]
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
"propToVariantKeys": {},
|
|
200
|
+
"motionVarPrefixes": []
|
|
201
|
+
};
|
|
202
|
+
var DividerInternal = {
|
|
203
|
+
"name": "DividerInternal",
|
|
204
|
+
"defaultProps": { "variant": "primary" },
|
|
205
|
+
"getStylesLiterals": {},
|
|
206
|
+
"cxLiterals": ["inherit"],
|
|
207
|
+
"internalComponents": ["DividerCore"],
|
|
208
|
+
"internalComponentProps": {},
|
|
209
|
+
"propToVariantKeys": { "variant": [
|
|
210
|
+
"dividerVariantRoot",
|
|
211
|
+
"dividerVariantLabel",
|
|
212
|
+
"dividerVariantLine"
|
|
213
|
+
] },
|
|
214
|
+
"motionVarPrefixes": []
|
|
215
|
+
};
|
|
216
|
+
var Divider = {
|
|
217
|
+
"name": "Divider",
|
|
218
|
+
"defaultProps": {},
|
|
219
|
+
"getStylesLiterals": {},
|
|
220
|
+
"cxLiterals": [],
|
|
221
|
+
"internalComponents": ["DividerInternal"],
|
|
222
|
+
"internalComponentProps": {},
|
|
223
|
+
"propToVariantKeys": {},
|
|
224
|
+
"motionVarPrefixes": []
|
|
225
|
+
};
|
|
173
226
|
var Table_mocks = {
|
|
174
227
|
"name": "Table.mocks",
|
|
175
228
|
"defaultProps": {},
|
|
@@ -229,59 +282,6 @@ var Spinner = {
|
|
|
229
282
|
"propToVariantKeys": {},
|
|
230
283
|
"motionVarPrefixes": []
|
|
231
284
|
};
|
|
232
|
-
var DividerCore = {
|
|
233
|
-
"name": "DividerCore",
|
|
234
|
-
"defaultProps": { "contentPosition": "center" },
|
|
235
|
-
"getStylesLiterals": {},
|
|
236
|
-
"cxLiterals": [],
|
|
237
|
-
"internalComponents": [
|
|
238
|
-
"Box",
|
|
239
|
-
"Line",
|
|
240
|
-
"InternalComponent",
|
|
241
|
-
"Text"
|
|
242
|
-
],
|
|
243
|
-
"internalComponentProps": {
|
|
244
|
-
"Box": {
|
|
245
|
-
"flex": ["1", "none"],
|
|
246
|
-
"display": ["flex"]
|
|
247
|
-
},
|
|
248
|
-
"InternalComponent": {
|
|
249
|
-
"flex": ["1"],
|
|
250
|
-
"alignItems": ["center"]
|
|
251
|
-
},
|
|
252
|
-
"Text": {
|
|
253
|
-
"as": ["span"],
|
|
254
|
-
"color": ["inherit"],
|
|
255
|
-
"variant": ["inherit"]
|
|
256
|
-
}
|
|
257
|
-
},
|
|
258
|
-
"propToVariantKeys": {},
|
|
259
|
-
"motionVarPrefixes": []
|
|
260
|
-
};
|
|
261
|
-
var DividerInternal = {
|
|
262
|
-
"name": "DividerInternal",
|
|
263
|
-
"defaultProps": { "variant": "primary" },
|
|
264
|
-
"getStylesLiterals": {},
|
|
265
|
-
"cxLiterals": ["inherit"],
|
|
266
|
-
"internalComponents": ["DividerCore"],
|
|
267
|
-
"internalComponentProps": {},
|
|
268
|
-
"propToVariantKeys": { "variant": [
|
|
269
|
-
"dividerVariantRoot",
|
|
270
|
-
"dividerVariantLabel",
|
|
271
|
-
"dividerVariantLine"
|
|
272
|
-
] },
|
|
273
|
-
"motionVarPrefixes": []
|
|
274
|
-
};
|
|
275
|
-
var Divider = {
|
|
276
|
-
"name": "Divider",
|
|
277
|
-
"defaultProps": {},
|
|
278
|
-
"getStylesLiterals": {},
|
|
279
|
-
"cxLiterals": [],
|
|
280
|
-
"internalComponents": ["DividerInternal"],
|
|
281
|
-
"internalComponentProps": {},
|
|
282
|
-
"propToVariantKeys": {},
|
|
283
|
-
"motionVarPrefixes": []
|
|
284
|
-
};
|
|
285
285
|
var Button = {
|
|
286
286
|
"name": "Button",
|
|
287
287
|
"defaultProps": { "type": "button" },
|
|
@@ -1019,7 +1019,6 @@ var BottomSheetContent = {
|
|
|
1019
1019
|
"internalComponentProps": {
|
|
1020
1020
|
"Box": {
|
|
1021
1021
|
"display": ["block"],
|
|
1022
|
-
"overflowY": ["auto"],
|
|
1023
1022
|
"flex": ["1"]
|
|
1024
1023
|
},
|
|
1025
1024
|
"VStack": { "className": ["pb-[calc(env(safe-area-inset-bottom))]"] }
|
|
@@ -1063,14 +1062,17 @@ var BottomSheet = {
|
|
|
1063
1062
|
"Scrim",
|
|
1064
1063
|
"BottomSheetHandle",
|
|
1065
1064
|
"Dialog",
|
|
1066
|
-
"Box"
|
|
1065
|
+
"Box",
|
|
1066
|
+
"BottomSheetInternalContext.Provider"
|
|
1067
1067
|
],
|
|
1068
1068
|
"internalComponentProps": {
|
|
1069
1069
|
"BottomSheetHandle": { "ariaLabel": ["Resize sheet"] },
|
|
1070
1070
|
"Dialog": { "data-testid": ["bottom-sheet"] },
|
|
1071
1071
|
"Box": {
|
|
1072
|
-
"display": ["block"],
|
|
1073
|
-
"position": ["absolute"]
|
|
1072
|
+
"display": ["block", "flex"],
|
|
1073
|
+
"position": ["absolute"],
|
|
1074
|
+
"flexDirection": ["column"],
|
|
1075
|
+
"className": ["absolute inset-0 min-h-0 p-[inherit]"]
|
|
1074
1076
|
}
|
|
1075
1077
|
},
|
|
1076
1078
|
"propToVariantKeys": { "variant": ["bottomsheetVariantRoot"] },
|
|
@@ -1105,6 +1107,16 @@ var BottomSheetHandle = {
|
|
|
1105
1107
|
"propToVariantKeys": {},
|
|
1106
1108
|
"motionVarPrefixes": []
|
|
1107
1109
|
};
|
|
1110
|
+
var BottomSheetInternalContext = {
|
|
1111
|
+
"name": "BottomSheetInternalContext",
|
|
1112
|
+
"defaultProps": {},
|
|
1113
|
+
"getStylesLiterals": {},
|
|
1114
|
+
"cxLiterals": [],
|
|
1115
|
+
"internalComponents": [],
|
|
1116
|
+
"internalComponentProps": {},
|
|
1117
|
+
"propToVariantKeys": {},
|
|
1118
|
+
"motionVarPrefixes": []
|
|
1119
|
+
};
|
|
1108
1120
|
var BottomSheetHeader = {
|
|
1109
1121
|
"name": "BottomSheetHeader",
|
|
1110
1122
|
"defaultProps": { "variant": "default" },
|
|
@@ -1892,12 +1904,12 @@ var componentData_default = {
|
|
|
1892
1904
|
IconSlot,
|
|
1893
1905
|
HStack,
|
|
1894
1906
|
Image,
|
|
1895
|
-
"Table.mocks": Table_mocks,
|
|
1896
|
-
Table,
|
|
1897
|
-
Spinner,
|
|
1898
1907
|
DividerCore,
|
|
1899
1908
|
DividerInternal,
|
|
1900
1909
|
Divider,
|
|
1910
|
+
"Table.mocks": Table_mocks,
|
|
1911
|
+
Table,
|
|
1912
|
+
Spinner,
|
|
1901
1913
|
Button,
|
|
1902
1914
|
Checkbox,
|
|
1903
1915
|
SpringMotionConfig,
|
|
@@ -1921,6 +1933,7 @@ var componentData_default = {
|
|
|
1921
1933
|
BottomSheetDismiss,
|
|
1922
1934
|
BottomSheet,
|
|
1923
1935
|
BottomSheetHandle,
|
|
1936
|
+
BottomSheetInternalContext,
|
|
1924
1937
|
BottomSheetHeader,
|
|
1925
1938
|
BottomSheetTrigger,
|
|
1926
1939
|
BottomSheetProvider,
|
|
@@ -2037,6 +2050,12 @@ Object.defineProperty(exports, 'BottomSheetHeader', {
|
|
|
2037
2050
|
return BottomSheetHeader;
|
|
2038
2051
|
}
|
|
2039
2052
|
});
|
|
2053
|
+
Object.defineProperty(exports, 'BottomSheetInternalContext', {
|
|
2054
|
+
enumerable: true,
|
|
2055
|
+
get: function () {
|
|
2056
|
+
return BottomSheetInternalContext;
|
|
2057
|
+
}
|
|
2058
|
+
});
|
|
2040
2059
|
Object.defineProperty(exports, 'BottomSheetProvider', {
|
|
2041
2060
|
enumerable: true,
|
|
2042
2061
|
get: function () {
|
|
@@ -169,6 +169,59 @@ var Image = {
|
|
|
169
169
|
"propToVariantKeys": {},
|
|
170
170
|
"motionVarPrefixes": []
|
|
171
171
|
};
|
|
172
|
+
var DividerCore = {
|
|
173
|
+
"name": "DividerCore",
|
|
174
|
+
"defaultProps": { "contentPosition": "center" },
|
|
175
|
+
"getStylesLiterals": {},
|
|
176
|
+
"cxLiterals": [],
|
|
177
|
+
"internalComponents": [
|
|
178
|
+
"Box",
|
|
179
|
+
"Line",
|
|
180
|
+
"InternalComponent",
|
|
181
|
+
"Text"
|
|
182
|
+
],
|
|
183
|
+
"internalComponentProps": {
|
|
184
|
+
"Box": {
|
|
185
|
+
"flex": ["1", "none"],
|
|
186
|
+
"display": ["flex"]
|
|
187
|
+
},
|
|
188
|
+
"InternalComponent": {
|
|
189
|
+
"flex": ["1"],
|
|
190
|
+
"alignItems": ["center"]
|
|
191
|
+
},
|
|
192
|
+
"Text": {
|
|
193
|
+
"as": ["span"],
|
|
194
|
+
"color": ["inherit"],
|
|
195
|
+
"variant": ["inherit"]
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
"propToVariantKeys": {},
|
|
199
|
+
"motionVarPrefixes": []
|
|
200
|
+
};
|
|
201
|
+
var DividerInternal = {
|
|
202
|
+
"name": "DividerInternal",
|
|
203
|
+
"defaultProps": { "variant": "primary" },
|
|
204
|
+
"getStylesLiterals": {},
|
|
205
|
+
"cxLiterals": ["inherit"],
|
|
206
|
+
"internalComponents": ["DividerCore"],
|
|
207
|
+
"internalComponentProps": {},
|
|
208
|
+
"propToVariantKeys": { "variant": [
|
|
209
|
+
"dividerVariantRoot",
|
|
210
|
+
"dividerVariantLabel",
|
|
211
|
+
"dividerVariantLine"
|
|
212
|
+
] },
|
|
213
|
+
"motionVarPrefixes": []
|
|
214
|
+
};
|
|
215
|
+
var Divider = {
|
|
216
|
+
"name": "Divider",
|
|
217
|
+
"defaultProps": {},
|
|
218
|
+
"getStylesLiterals": {},
|
|
219
|
+
"cxLiterals": [],
|
|
220
|
+
"internalComponents": ["DividerInternal"],
|
|
221
|
+
"internalComponentProps": {},
|
|
222
|
+
"propToVariantKeys": {},
|
|
223
|
+
"motionVarPrefixes": []
|
|
224
|
+
};
|
|
172
225
|
var Table_mocks = {
|
|
173
226
|
"name": "Table.mocks",
|
|
174
227
|
"defaultProps": {},
|
|
@@ -228,59 +281,6 @@ var Spinner = {
|
|
|
228
281
|
"propToVariantKeys": {},
|
|
229
282
|
"motionVarPrefixes": []
|
|
230
283
|
};
|
|
231
|
-
var DividerCore = {
|
|
232
|
-
"name": "DividerCore",
|
|
233
|
-
"defaultProps": { "contentPosition": "center" },
|
|
234
|
-
"getStylesLiterals": {},
|
|
235
|
-
"cxLiterals": [],
|
|
236
|
-
"internalComponents": [
|
|
237
|
-
"Box",
|
|
238
|
-
"Line",
|
|
239
|
-
"InternalComponent",
|
|
240
|
-
"Text"
|
|
241
|
-
],
|
|
242
|
-
"internalComponentProps": {
|
|
243
|
-
"Box": {
|
|
244
|
-
"flex": ["1", "none"],
|
|
245
|
-
"display": ["flex"]
|
|
246
|
-
},
|
|
247
|
-
"InternalComponent": {
|
|
248
|
-
"flex": ["1"],
|
|
249
|
-
"alignItems": ["center"]
|
|
250
|
-
},
|
|
251
|
-
"Text": {
|
|
252
|
-
"as": ["span"],
|
|
253
|
-
"color": ["inherit"],
|
|
254
|
-
"variant": ["inherit"]
|
|
255
|
-
}
|
|
256
|
-
},
|
|
257
|
-
"propToVariantKeys": {},
|
|
258
|
-
"motionVarPrefixes": []
|
|
259
|
-
};
|
|
260
|
-
var DividerInternal = {
|
|
261
|
-
"name": "DividerInternal",
|
|
262
|
-
"defaultProps": { "variant": "primary" },
|
|
263
|
-
"getStylesLiterals": {},
|
|
264
|
-
"cxLiterals": ["inherit"],
|
|
265
|
-
"internalComponents": ["DividerCore"],
|
|
266
|
-
"internalComponentProps": {},
|
|
267
|
-
"propToVariantKeys": { "variant": [
|
|
268
|
-
"dividerVariantRoot",
|
|
269
|
-
"dividerVariantLabel",
|
|
270
|
-
"dividerVariantLine"
|
|
271
|
-
] },
|
|
272
|
-
"motionVarPrefixes": []
|
|
273
|
-
};
|
|
274
|
-
var Divider = {
|
|
275
|
-
"name": "Divider",
|
|
276
|
-
"defaultProps": {},
|
|
277
|
-
"getStylesLiterals": {},
|
|
278
|
-
"cxLiterals": [],
|
|
279
|
-
"internalComponents": ["DividerInternal"],
|
|
280
|
-
"internalComponentProps": {},
|
|
281
|
-
"propToVariantKeys": {},
|
|
282
|
-
"motionVarPrefixes": []
|
|
283
|
-
};
|
|
284
284
|
var Button = {
|
|
285
285
|
"name": "Button",
|
|
286
286
|
"defaultProps": { "type": "button" },
|
|
@@ -1018,7 +1018,6 @@ var BottomSheetContent = {
|
|
|
1018
1018
|
"internalComponentProps": {
|
|
1019
1019
|
"Box": {
|
|
1020
1020
|
"display": ["block"],
|
|
1021
|
-
"overflowY": ["auto"],
|
|
1022
1021
|
"flex": ["1"]
|
|
1023
1022
|
},
|
|
1024
1023
|
"VStack": { "className": ["pb-[calc(env(safe-area-inset-bottom))]"] }
|
|
@@ -1062,14 +1061,17 @@ var BottomSheet = {
|
|
|
1062
1061
|
"Scrim",
|
|
1063
1062
|
"BottomSheetHandle",
|
|
1064
1063
|
"Dialog",
|
|
1065
|
-
"Box"
|
|
1064
|
+
"Box",
|
|
1065
|
+
"BottomSheetInternalContext.Provider"
|
|
1066
1066
|
],
|
|
1067
1067
|
"internalComponentProps": {
|
|
1068
1068
|
"BottomSheetHandle": { "ariaLabel": ["Resize sheet"] },
|
|
1069
1069
|
"Dialog": { "data-testid": ["bottom-sheet"] },
|
|
1070
1070
|
"Box": {
|
|
1071
|
-
"display": ["block"],
|
|
1072
|
-
"position": ["absolute"]
|
|
1071
|
+
"display": ["block", "flex"],
|
|
1072
|
+
"position": ["absolute"],
|
|
1073
|
+
"flexDirection": ["column"],
|
|
1074
|
+
"className": ["absolute inset-0 min-h-0 p-[inherit]"]
|
|
1073
1075
|
}
|
|
1074
1076
|
},
|
|
1075
1077
|
"propToVariantKeys": { "variant": ["bottomsheetVariantRoot"] },
|
|
@@ -1104,6 +1106,16 @@ var BottomSheetHandle = {
|
|
|
1104
1106
|
"propToVariantKeys": {},
|
|
1105
1107
|
"motionVarPrefixes": []
|
|
1106
1108
|
};
|
|
1109
|
+
var BottomSheetInternalContext = {
|
|
1110
|
+
"name": "BottomSheetInternalContext",
|
|
1111
|
+
"defaultProps": {},
|
|
1112
|
+
"getStylesLiterals": {},
|
|
1113
|
+
"cxLiterals": [],
|
|
1114
|
+
"internalComponents": [],
|
|
1115
|
+
"internalComponentProps": {},
|
|
1116
|
+
"propToVariantKeys": {},
|
|
1117
|
+
"motionVarPrefixes": []
|
|
1118
|
+
};
|
|
1107
1119
|
var BottomSheetHeader = {
|
|
1108
1120
|
"name": "BottomSheetHeader",
|
|
1109
1121
|
"defaultProps": { "variant": "default" },
|
|
@@ -1891,12 +1903,12 @@ var componentData_default = {
|
|
|
1891
1903
|
IconSlot,
|
|
1892
1904
|
HStack,
|
|
1893
1905
|
Image,
|
|
1894
|
-
"Table.mocks": Table_mocks,
|
|
1895
|
-
Table,
|
|
1896
|
-
Spinner,
|
|
1897
1906
|
DividerCore,
|
|
1898
1907
|
DividerInternal,
|
|
1899
1908
|
Divider,
|
|
1909
|
+
"Table.mocks": Table_mocks,
|
|
1910
|
+
Table,
|
|
1911
|
+
Spinner,
|
|
1900
1912
|
Button,
|
|
1901
1913
|
Checkbox,
|
|
1902
1914
|
SpringMotionConfig,
|
|
@@ -1920,6 +1932,7 @@ var componentData_default = {
|
|
|
1920
1932
|
BottomSheetDismiss,
|
|
1921
1933
|
BottomSheet,
|
|
1922
1934
|
BottomSheetHandle,
|
|
1935
|
+
BottomSheetInternalContext,
|
|
1923
1936
|
BottomSheetHeader,
|
|
1924
1937
|
BottomSheetTrigger,
|
|
1925
1938
|
BottomSheetProvider,
|
|
@@ -1958,4 +1971,4 @@ var componentData_default = {
|
|
|
1958
1971
|
};
|
|
1959
1972
|
|
|
1960
1973
|
//#endregion
|
|
1961
|
-
export { Accordion, AnimateHeightChange, Avatar, AvatarIcon, AvatarImage, AvatarText, AvoidMotionLibraryProvider, Badge, BottomSheet, BottomSheetContent, BottomSheetDismiss, BottomSheetHandle, BottomSheetHeader, BottomSheetProvider, BottomSheetTrigger, Box, Button, Checkbox, Chip, ChipBase, ChipButton, ChipDismissible, ChipLink, ChipToggle, Divider, DividerCore, DividerInternal, FormLabel, HStack, Icon, IconButton, IconSlot, Image, Input, InputHelpText, InputHelpTextInternal, Link, Menu, Menu_Content as "Menu.Content", Menu_Divider as "Menu.Divider", Menu_Item as "Menu.Item", Menu_ItemBase as "Menu.ItemBase", Menu_ItemCheckbox as "Menu.ItemCheckbox", Menu_Provider as "Menu.Provider", Menu_Trigger as "Menu.Trigger", Menu_index as "Menu.index", Modal, Popover, Pressable, Radio, RadioGroupProvider, RadioGroupStore, Scrim, SegmentedControl, Spinner, SpringMotionConfig, Switch, SwitchV2, Table, Table_mocks as "Table.mocks", Tabs, Text, Toast, ToastContainer, ToastPortal, Tooltip, TooltipContent, TooltipTrigger, UDSBottomSheetConfigProvider, UDSBreakpointsConfigProvider, UDSConfigProvider, UDSToastConfigProvider, UDSTooltipConfigProvider, VStack, componentData_default as default };
|
|
1974
|
+
export { Accordion, AnimateHeightChange, Avatar, AvatarIcon, AvatarImage, AvatarText, AvoidMotionLibraryProvider, Badge, BottomSheet, BottomSheetContent, BottomSheetDismiss, BottomSheetHandle, BottomSheetHeader, BottomSheetInternalContext, BottomSheetProvider, BottomSheetTrigger, Box, Button, Checkbox, Chip, ChipBase, ChipButton, ChipDismissible, ChipLink, ChipToggle, Divider, DividerCore, DividerInternal, FormLabel, HStack, Icon, IconButton, IconSlot, Image, Input, InputHelpText, InputHelpTextInternal, Link, Menu, Menu_Content as "Menu.Content", Menu_Divider as "Menu.Divider", Menu_Item as "Menu.Item", Menu_ItemBase as "Menu.ItemBase", Menu_ItemCheckbox as "Menu.ItemCheckbox", Menu_Provider as "Menu.Provider", Menu_Trigger as "Menu.Trigger", Menu_index as "Menu.index", Modal, Popover, Pressable, Radio, RadioGroupProvider, RadioGroupStore, Scrim, SegmentedControl, Spinner, SpringMotionConfig, Switch, SwitchV2, Table, Table_mocks as "Table.mocks", Tabs, Text, Toast, ToastContainer, ToastPortal, Tooltip, TooltipContent, TooltipTrigger, UDSBottomSheetConfigProvider, UDSBreakpointsConfigProvider, UDSConfigProvider, UDSToastConfigProvider, UDSTooltipConfigProvider, VStack, componentData_default as default };
|
|
@@ -415,8 +415,8 @@ const componentToVariants = {
|
|
|
415
415
|
"sticky"
|
|
416
416
|
]],
|
|
417
417
|
["overflow", [
|
|
418
|
-
"auto",
|
|
419
418
|
"hidden",
|
|
419
|
+
"auto",
|
|
420
420
|
"clip",
|
|
421
421
|
"visible",
|
|
422
422
|
"scroll"
|
|
@@ -4310,12 +4310,12 @@ const componentToTwClasses = {
|
|
|
4310
4310
|
"AvatarImage": "uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator inline-flex contents h-full w-full shrink-0 items-center justify-center overflow-hidden object-cover text-center uds-bgBlurFillFallback uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator uds-bgBlurFillFallback uds-avatar-icon-variant-default-root uds-avatar-icon-variant-primary-root uds-avatar-icon-variant-secondary-root uds-avatar-image-variant-default-root uds-avatar-image-variant-primary-root uds-avatar-image-variant-secondary-root uds-avatar-size-default-icon uds-avatar-size-lg-icon uds-avatar-size-md-icon uds-avatar-size-sm-icon uds-avatar-size-xl-icon uds-avatar-size-xs-icon uds-avatar-size-default-root uds-avatar-size-lg-root uds-avatar-size-md-root uds-avatar-size-sm-root uds-avatar-size-xl-root uds-avatar-size-xs-root uds-avatar-text-variant-default-root uds-avatar-text-variant-primary-root uds-avatar-text-variant-secondary-root",
|
|
4311
4311
|
"AvatarText": "uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator inline-flex contents h-full w-full shrink-0 items-center justify-center overflow-hidden truncate text-center uds-bgBlurFillFallback uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator uds-bgBlurFillFallback uds-avatar-icon-variant-default-root uds-avatar-icon-variant-primary-root uds-avatar-icon-variant-secondary-root uds-avatar-image-variant-default-root uds-avatar-image-variant-primary-root uds-avatar-image-variant-secondary-root uds-avatar-size-default-icon uds-avatar-size-lg-icon uds-avatar-size-md-icon uds-avatar-size-sm-icon uds-avatar-size-xl-icon uds-avatar-size-xs-icon uds-avatar-size-default-root uds-avatar-size-lg-root uds-avatar-size-md-root uds-avatar-size-sm-root uds-avatar-size-xl-root uds-avatar-size-xs-root uds-avatar-text-variant-default-root uds-avatar-text-variant-primary-root uds-avatar-text-variant-secondary-root",
|
|
4312
4312
|
"Badge": "uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator inline-flex flex-1 truncate whitespace-nowrap text-center uds-bgBlurFillFallback uds-badge-size-default-icon uds-badge-size-lg-icon uds-badge-size-md-icon uds-badge-size-sm-icon uds-badge-size-xs-icon uds-badge-size-default-root uds-badge-size-lg-root uds-badge-size-md-root uds-badge-size-sm-root uds-badge-size-xs-root uds-badge-variant-alert-icon uds-badge-variant-alert-secondary-icon uds-badge-variant-brand-icon uds-badge-variant-brand-secondary-icon uds-badge-variant-default-icon uds-badge-variant-info-icon uds-badge-variant-info-secondary-icon uds-badge-variant-positive-icon uds-badge-variant-positive-secondary-icon uds-badge-variant-primary-icon uds-badge-variant-secondary-icon uds-badge-variant-warning-icon uds-badge-variant-warning-secondary-icon uds-badge-variant-alert-root uds-badge-variant-alert-secondary-root uds-badge-variant-brand-root uds-badge-variant-brand-secondary-root uds-badge-variant-default-root uds-badge-variant-info-root uds-badge-variant-info-secondary-root uds-badge-variant-positive-root uds-badge-variant-positive-secondary-root uds-badge-variant-primary-root uds-badge-variant-secondary-root uds-badge-variant-warning-root uds-badge-variant-warning-secondary-root",
|
|
4313
|
-
"BottomSheet": "uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator visible fixed absolute inset-x-0 bottom-0 top-\\[-4px\\] z-50 z-\\[1\\] block inline transform touch-none touch-pan-y overflow-hidden transition transition-transform duration-500 ease-\\[cubic-bezier\\(0\\.32\\2c 0\\.72\\2c 0\\2c 1\\)\\] uds-bgBlurFillFallback \\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-hidden-translate\\)\\2c 0\\)\\] \\[will-change\\:transform\\] data-\\[enter\\]\\:\\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-visible-translate\\)\\2c 0\\)\\][data-enter] uds-bottomsheet-variant-default-header uds-bottomsheet-variant-default-root",
|
|
4314
|
-
"BottomSheetContent": "container uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator block flex min-h-0 shrink touch-none touch-pan-y pb-\\[calc\\(env\\(safe-area-inset-bottom\\)\\)\\] uds-bgBlurFillFallback uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator visible fixed absolute inset-x-0 bottom-0 top-\\[-4px\\] z-50 z-\\[1\\] block inline transform touch-none touch-pan-y overflow-hidden transition transition-transform duration-500 ease-\\[cubic-bezier\\(0\\.32\\2c 0\\.72\\2c 0\\2c 1\\)\\] uds-bgBlurFillFallback \\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-hidden-translate\\)\\2c 0\\)\\] \\[will-change\\:transform\\] data-\\[enter\\]\\:\\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-visible-translate\\)\\2c 0\\)\\][data-enter] uds-bottomsheet-variant-default-header uds-bottomsheet-variant-default-root",
|
|
4315
|
-
"BottomSheetDismiss": "uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator uds-bgBlurFillFallback uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator visible fixed absolute inset-x-0 bottom-0 top-\\[-4px\\] z-50 z-\\[1\\] block inline transform touch-none touch-pan-y overflow-hidden transition transition-transform duration-500 ease-\\[cubic-bezier\\(0\\.32\\2c 0\\.72\\2c 0\\2c 1\\)\\] uds-bgBlurFillFallback \\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-hidden-translate\\)\\2c 0\\)\\] \\[will-change\\:transform\\] data-\\[enter\\]\\:\\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-visible-translate\\)\\2c 0\\)\\][data-enter] uds-bottomsheet-variant-default-header uds-bottomsheet-variant-default-root",
|
|
4316
|
-
"BottomSheetHeader": "uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator pointer-events-none mt-2 flex grid h-10 min-h-10 w-10 w-full grid-cols-\\[40px_1fr_40px\\] items-center opacity-0 uds-bgBlurFillFallback uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator visible fixed absolute inset-x-0 bottom-0 top-\\[-4px\\] z-50 z-\\[1\\] block inline transform touch-none touch-pan-y overflow-hidden transition transition-transform duration-500 ease-\\[cubic-bezier\\(0\\.32\\2c 0\\.72\\2c 0\\2c 1\\)\\] uds-bgBlurFillFallback \\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-hidden-translate\\)\\2c 0\\)\\] \\[will-change\\:transform\\] data-\\[enter\\]\\:\\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-visible-translate\\)\\2c 0\\)\\][data-enter] uds-bottomsheet-variant-default-header uds-bottomsheet-variant-default-root",
|
|
4317
|
-
"BottomSheetProvider": "uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator uds-bgBlurFillFallback uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator visible fixed absolute inset-x-0 bottom-0 top-\\[-4px\\] z-50 z-\\[1\\] block inline transform touch-none touch-pan-y overflow-hidden transition transition-transform duration-500 ease-\\[cubic-bezier\\(0\\.32\\2c 0\\.72\\2c 0\\2c 1\\)\\] uds-bgBlurFillFallback \\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-hidden-translate\\)\\2c 0\\)\\] \\[will-change\\:transform\\] data-\\[enter\\]\\:\\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-visible-translate\\)\\2c 0\\)\\][data-enter] uds-bottomsheet-variant-default-header uds-bottomsheet-variant-default-root",
|
|
4318
|
-
"BottomSheetTrigger": "uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator uds-bgBlurFillFallback uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator visible fixed absolute inset-x-0 bottom-0 top-\\[-4px\\] z-50 z-\\[1\\] block inline transform touch-none touch-pan-y overflow-hidden transition transition-transform duration-500 ease-\\[cubic-bezier\\(0\\.32\\2c 0\\.72\\2c 0\\2c 1\\)\\] uds-bgBlurFillFallback \\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-hidden-translate\\)\\2c 0\\)\\] \\[will-change\\:transform\\] data-\\[enter\\]\\:\\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-visible-translate\\)\\2c 0\\)\\][data-enter] uds-bottomsheet-variant-default-header uds-bottomsheet-variant-default-root",
|
|
4313
|
+
"BottomSheet": "uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator visible fixed absolute inset-0 inset-x-0 bottom-0 top-\\[-4px\\] z-50 z-\\[1\\] block inline flex min-h-0 transform touch-none touch-pan-y overflow-hidden p-\\[inherit\\] transition transition-transform duration-500 ease-\\[cubic-bezier\\(0\\.32\\2c 0\\.72\\2c 0\\2c 1\\)\\] uds-bgBlurFillFallback \\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-hidden-translate\\)\\2c 0\\)\\] \\[will-change\\:transform\\] data-\\[enter\\]\\:\\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-visible-translate\\)\\2c 0\\)\\][data-enter] uds-bottomsheet-variant-default-header uds-bottomsheet-variant-default-root",
|
|
4314
|
+
"BottomSheetContent": "container uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator block flex hidden min-h-0 shrink touch-none touch-pan-y pb-\\[calc\\(env\\(safe-area-inset-bottom\\)\\)\\] uds-bgBlurFillFallback uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator visible fixed absolute inset-0 inset-x-0 bottom-0 top-\\[-4px\\] z-50 z-\\[1\\] block inline flex min-h-0 transform touch-none touch-pan-y overflow-hidden p-\\[inherit\\] transition transition-transform duration-500 ease-\\[cubic-bezier\\(0\\.32\\2c 0\\.72\\2c 0\\2c 1\\)\\] uds-bgBlurFillFallback \\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-hidden-translate\\)\\2c 0\\)\\] \\[will-change\\:transform\\] data-\\[enter\\]\\:\\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-visible-translate\\)\\2c 0\\)\\][data-enter] uds-bottomsheet-variant-default-header uds-bottomsheet-variant-default-root",
|
|
4315
|
+
"BottomSheetDismiss": "uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator uds-bgBlurFillFallback uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator visible fixed absolute inset-0 inset-x-0 bottom-0 top-\\[-4px\\] z-50 z-\\[1\\] block inline flex min-h-0 transform touch-none touch-pan-y overflow-hidden p-\\[inherit\\] transition transition-transform duration-500 ease-\\[cubic-bezier\\(0\\.32\\2c 0\\.72\\2c 0\\2c 1\\)\\] uds-bgBlurFillFallback \\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-hidden-translate\\)\\2c 0\\)\\] \\[will-change\\:transform\\] data-\\[enter\\]\\:\\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-visible-translate\\)\\2c 0\\)\\][data-enter] uds-bottomsheet-variant-default-header uds-bottomsheet-variant-default-root",
|
|
4316
|
+
"BottomSheetHeader": "uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator pointer-events-none mt-2 flex grid h-10 min-h-10 w-10 w-full grid-cols-\\[40px_1fr_40px\\] items-center opacity-0 uds-bgBlurFillFallback uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator visible fixed absolute inset-0 inset-x-0 bottom-0 top-\\[-4px\\] z-50 z-\\[1\\] block inline flex min-h-0 transform touch-none touch-pan-y overflow-hidden p-\\[inherit\\] transition transition-transform duration-500 ease-\\[cubic-bezier\\(0\\.32\\2c 0\\.72\\2c 0\\2c 1\\)\\] uds-bgBlurFillFallback \\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-hidden-translate\\)\\2c 0\\)\\] \\[will-change\\:transform\\] data-\\[enter\\]\\:\\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-visible-translate\\)\\2c 0\\)\\][data-enter] uds-bottomsheet-variant-default-header uds-bottomsheet-variant-default-root",
|
|
4317
|
+
"BottomSheetProvider": "uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator uds-bgBlurFillFallback uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator visible fixed absolute inset-0 inset-x-0 bottom-0 top-\\[-4px\\] z-50 z-\\[1\\] block inline flex min-h-0 transform touch-none touch-pan-y overflow-hidden p-\\[inherit\\] transition transition-transform duration-500 ease-\\[cubic-bezier\\(0\\.32\\2c 0\\.72\\2c 0\\2c 1\\)\\] uds-bgBlurFillFallback \\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-hidden-translate\\)\\2c 0\\)\\] \\[will-change\\:transform\\] data-\\[enter\\]\\:\\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-visible-translate\\)\\2c 0\\)\\][data-enter] uds-bottomsheet-variant-default-header uds-bottomsheet-variant-default-root",
|
|
4318
|
+
"BottomSheetTrigger": "uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator uds-bgBlurFillFallback uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator visible fixed absolute inset-0 inset-x-0 bottom-0 top-\\[-4px\\] z-50 z-\\[1\\] block inline flex min-h-0 transform touch-none touch-pan-y overflow-hidden p-\\[inherit\\] transition transition-transform duration-500 ease-\\[cubic-bezier\\(0\\.32\\2c 0\\.72\\2c 0\\2c 1\\)\\] uds-bgBlurFillFallback \\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-hidden-translate\\)\\2c 0\\)\\] \\[will-change\\:transform\\] data-\\[enter\\]\\:\\[transform\\:translate3d\\(0\\2c var\\(--uds-bottomsheet-visible-translate\\)\\2c 0\\)\\][data-enter] uds-bottomsheet-variant-default-header uds-bottomsheet-variant-default-root",
|
|
4319
4319
|
"Box": "container uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator flex border shadow uds-bgBlurFillFallback ",
|
|
4320
4320
|
"Button": "uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator flex inline-flex animate-spin cursor-not-allowed select-none items-center justify-center overflow-hidden overflow-clip truncate whitespace-nowrap ring transition uds-bgBlurFillFallback \\[backface-visibility\\:hidden\\] \\[transform-origin\\:center\\] \\[transition-duration\\:220ms\\] \\[transition-property\\:color\\2c background-color\\2c border-color\\2c box-shadow\\2c text-decoration-color\\2c fill\\2c stroke\\] \\[transition-timing-function\\:cubic-bezier\\(0\\2c 0\\2c 0\\.2\\2c 1\\)\\] uds-button-size-default-icon uds-button-size-lg-icon uds-button-size-md-icon uds-button-size-sm-icon uds-button-size-xs-icon uds-button-size-default-root uds-button-size-lg-root uds-button-size-md-root uds-button-size-sm-root uds-button-size-xs-root uds-button-variant-alert-icon uds-button-variant-alert-secondary-icon uds-button-variant-alert-tertiary-icon uds-button-variant-brand-icon uds-button-variant-brand-secondary-icon uds-button-variant-brand-tertiary-icon uds-button-variant-contrast-high-icon uds-button-variant-contrast-low-icon uds-button-variant-contrast-medium-icon uds-button-variant-default-icon uds-button-variant-info-icon uds-button-variant-info-secondary-icon uds-button-variant-info-tertiary-icon uds-button-variant-positive-icon uds-button-variant-positive-secondary-icon uds-button-variant-positive-tertiary-icon uds-button-variant-primary-icon uds-button-variant-secondary-icon uds-button-variant-tertiary-icon uds-button-variant-warning-icon uds-button-variant-warning-secondary-icon uds-button-variant-warning-tertiary-icon uds-button-variant-alert-root uds-button-variant-alert-secondary-root uds-button-variant-alert-tertiary-root uds-button-variant-brand-root uds-button-variant-brand-secondary-root uds-button-variant-brand-tertiary-root uds-button-variant-contrast-high-root uds-button-variant-contrast-low-root uds-button-variant-contrast-medium-root uds-button-variant-default-root uds-button-variant-info-root uds-button-variant-info-secondary-root uds-button-variant-info-tertiary-root uds-button-variant-positive-root uds-button-variant-positive-secondary-root uds-button-variant-positive-tertiary-root uds-button-variant-primary-root uds-button-variant-secondary-root uds-button-variant-tertiary-root uds-button-variant-warning-root uds-button-variant-warning-secondary-root uds-button-variant-warning-tertiary-root",
|
|
4321
4321
|
"Checkbox": "container uds-hit-target uds-ring:focus-visible:not(:disabled) focused .uds-ring:not(:disabled) uds-ring.uds-ring-within:has(:focus-visible):not(:disabled) uds-input[list]::-webkit-calendar-picker-indicator uds-input::-webkit-datetime-edit uds-input::-webkit-calendar-picker-indicator pointer-events-none invisible absolute relative left-1\\/2 top-1\\/2 flex h-\\[calc\\(100\\%\\+2px\\)\\] w-\\[calc\\(100\\%\\+2px\\)\\] translate-x-\\[-50\\%\\] translate-y-\\[-50\\%\\] transform cursor-\\[inherit\\] cursor-default cursor-pointer text-start text-end opacity-0 opacity-100 opacity-50 opacity-55 ring transition-\\[background-color\\2c border-color\\2c box-shadow\\] transition-opacity duration-0 uds-bgBlurFillFallback uds-checkbox-size-default-checkbox uds-checkbox-size-md-checkbox uds-checkbox-size-sm-checkbox uds-checkbox-size-default-root uds-checkbox-size-md-root uds-checkbox-size-sm-root uds-checkbox-variant-alert-checkbox uds-checkbox-variant-alert-secondary-checkbox uds-checkbox-variant-default-checkbox uds-checkbox-variant-primary-checkbox uds-checkbox-variant-secondary-checkbox uds-checkbox-variant-alert-checkboxicon uds-checkbox-variant-alert-secondary-checkboxicon uds-checkbox-variant-default-checkboxicon uds-checkbox-variant-primary-checkboxicon uds-checkbox-variant-secondary-checkboxicon uds-checkbox-variant-alert-root uds-checkbox-variant-alert-secondary-root uds-checkbox-variant-default-root uds-checkbox-variant-primary-root uds-checkbox-variant-secondary-root uds-checkbox-variant-value-checked-checkbox uds-checkbox-variant-value-indeterminate-checkbox uds-checkbox-variant-value-unchecked-checkbox uds-checkbox-variant-value-checked-checkboxicon uds-checkbox-variant-value-indeterminate-checkboxicon uds-checkbox-variant-value-unchecked-checkboxicon uds-checkbox-variant-value-checked-root uds-checkbox-variant-value-indeterminate-root uds-checkbox-variant-value-unchecked-root",
|