@yahoo/uds 3.159.1 → 3.159.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/Text.cjs +4 -2
- package/dist/components/Text.js +4 -2
- package/dist/components/client/Pressable.cjs +3 -1
- package/dist/components/client/Pressable.js +3 -1
- package/dist/uds/generated/componentData.cjs +64 -64
- package/dist/uds/generated/componentData.js +64 -64
- package/generated/componentData.json +86 -86
- package/package.json +1 -1
package/dist/components/Text.cjs
CHANGED
|
@@ -82,7 +82,7 @@ const asMap = {
|
|
|
82
82
|
*
|
|
83
83
|
* @see The {@link https://uds.build/docs/components/text Text Docs} for more info
|
|
84
84
|
*/
|
|
85
|
-
const Text = (0, react.forwardRef)(function Text({ className, asChild, color = "primary", variant = "body1", as = asMap[variant], italic, tabularNumbers, fontFamily, fontSize, fontWeight, lineHeight, textTransform, textAlign, letterSpacing, backgroundColor, borderRadius, borderTopStartRadius, borderTopEndRadius, borderBottomStartRadius, borderBottomEndRadius, borderColor, borderStartColor, borderEndColor, borderTopColor, borderBottomColor, borderWidth, borderVerticalWidth, borderHorizontalWidth, borderStartWidth, borderEndWidth, borderTopWidth, borderBottomWidth, alignContent, alignItems, alignSelf, flex, flexDirection, flexGrow, flexShrink, flexWrap, justifyContent, flexBasis, display, overflow, overflowX, overflowY, position, spacing, spacingHorizontal, spacingVertical, spacingBottom, spacingEnd, spacingStart, spacingTop, offset, offsetVertical, offsetHorizontal, offsetBottom, offsetEnd, offsetStart, offsetTop, columnGap, rowGap, ...props }, ref) {
|
|
85
|
+
const Text = (0, react.forwardRef)(function Text({ className, asChild, color = "primary", variant = "body1", as = asMap[variant], italic, tabularNumbers, fontFamily, fontSize, fontWeight, lineHeight, textTransform, textAlign, letterSpacing, backgroundColor, borderRadius, borderTopStartRadius, borderTopEndRadius, borderBottomStartRadius, borderBottomEndRadius, borderColor, borderStartColor, borderEndColor, borderTopColor, borderBottomColor, borderWidth, borderVerticalWidth, borderHorizontalWidth, borderStartWidth, borderEndWidth, borderTopWidth, borderBottomWidth, alignContent, alignItems, alignSelf, flex, flexDirection, flexGrow, flexShrink, flexWrap, justifyContent, flexBasis, display, overflow, overflowX, overflowY, position, spacing, spacingHorizontal, spacingVertical, spacingBottom, spacingEnd, spacingStart, spacingTop, offset, offsetVertical, offsetHorizontal, offsetBottom, offsetEnd, offsetStart, offsetTop, columnGap, rowGap, width, height, ...props }, ref) {
|
|
86
86
|
const classNames = require_styles_styler.getStyles({
|
|
87
87
|
className,
|
|
88
88
|
...color && color !== "inherit" ? { color } : {},
|
|
@@ -143,7 +143,9 @@ const Text = (0, react.forwardRef)(function Text({ className, asChild, color = "
|
|
|
143
143
|
offsetStart,
|
|
144
144
|
offsetTop,
|
|
145
145
|
columnGap,
|
|
146
|
-
rowGap
|
|
146
|
+
rowGap,
|
|
147
|
+
width,
|
|
148
|
+
height
|
|
147
149
|
});
|
|
148
150
|
const Comp = asChild ? Slot : as;
|
|
149
151
|
const additionalStyles = {
|
package/dist/components/Text.js
CHANGED
|
@@ -80,7 +80,7 @@ const asMap = {
|
|
|
80
80
|
*
|
|
81
81
|
* @see The {@link https://uds.build/docs/components/text Text Docs} for more info
|
|
82
82
|
*/
|
|
83
|
-
const Text = forwardRef(function Text({ className, asChild, color = "primary", variant = "body1", as = asMap[variant], italic, tabularNumbers, fontFamily, fontSize, fontWeight, lineHeight, textTransform, textAlign, letterSpacing, backgroundColor, borderRadius, borderTopStartRadius, borderTopEndRadius, borderBottomStartRadius, borderBottomEndRadius, borderColor, borderStartColor, borderEndColor, borderTopColor, borderBottomColor, borderWidth, borderVerticalWidth, borderHorizontalWidth, borderStartWidth, borderEndWidth, borderTopWidth, borderBottomWidth, alignContent, alignItems, alignSelf, flex, flexDirection, flexGrow, flexShrink, flexWrap, justifyContent, flexBasis, display, overflow, overflowX, overflowY, position, spacing, spacingHorizontal, spacingVertical, spacingBottom, spacingEnd, spacingStart, spacingTop, offset, offsetVertical, offsetHorizontal, offsetBottom, offsetEnd, offsetStart, offsetTop, columnGap, rowGap, ...props }, ref) {
|
|
83
|
+
const Text = forwardRef(function Text({ className, asChild, color = "primary", variant = "body1", as = asMap[variant], italic, tabularNumbers, fontFamily, fontSize, fontWeight, lineHeight, textTransform, textAlign, letterSpacing, backgroundColor, borderRadius, borderTopStartRadius, borderTopEndRadius, borderBottomStartRadius, borderBottomEndRadius, borderColor, borderStartColor, borderEndColor, borderTopColor, borderBottomColor, borderWidth, borderVerticalWidth, borderHorizontalWidth, borderStartWidth, borderEndWidth, borderTopWidth, borderBottomWidth, alignContent, alignItems, alignSelf, flex, flexDirection, flexGrow, flexShrink, flexWrap, justifyContent, flexBasis, display, overflow, overflowX, overflowY, position, spacing, spacingHorizontal, spacingVertical, spacingBottom, spacingEnd, spacingStart, spacingTop, offset, offsetVertical, offsetHorizontal, offsetBottom, offsetEnd, offsetStart, offsetTop, columnGap, rowGap, width, height, ...props }, ref) {
|
|
84
84
|
const classNames = getStyles({
|
|
85
85
|
className,
|
|
86
86
|
...color && color !== "inherit" ? { color } : {},
|
|
@@ -141,7 +141,9 @@ const Text = forwardRef(function Text({ className, asChild, color = "primary", v
|
|
|
141
141
|
offsetStart,
|
|
142
142
|
offsetTop,
|
|
143
143
|
columnGap,
|
|
144
|
-
rowGap
|
|
144
|
+
rowGap,
|
|
145
|
+
width,
|
|
146
|
+
height
|
|
145
147
|
});
|
|
146
148
|
const Comp = asChild ? Slot : as;
|
|
147
149
|
const additionalStyles = {
|
|
@@ -43,7 +43,7 @@ const Slot = require_utils_createSlot.createSlot();
|
|
|
43
43
|
* @related [Button](https://uds.build/docs/components/button), [IconButton](https://uds.build/docs/components/icon-button)
|
|
44
44
|
*
|
|
45
45
|
*/
|
|
46
|
-
const Pressable = (0, react.forwardRef)(function Pressable({ className, asChild, onPress, onClick, backgroundColor, borderRadius, borderTopStartRadius, borderTopEndRadius, borderBottomStartRadius, borderBottomEndRadius, borderColor, borderStartColor, borderEndColor, borderTopColor, borderBottomColor, borderWidth, borderVerticalWidth, borderHorizontalWidth, borderStartWidth, borderEndWidth, borderTopWidth, borderBottomWidth, alignContent, alignItems, alignSelf, flex, flexDirection, flexGrow, flexShrink, flexWrap, justifyContent, flexBasis, display, overflow, overflowX, overflowY, position, spacing, spacingHorizontal, spacingVertical, spacingBottom, spacingEnd, spacingStart, spacingTop, offset, offsetVertical, offsetHorizontal, offsetBottom, offsetEnd, offsetStart, offsetTop, columnGap, rowGap, dropShadow, insetShadow, ...props }, ref) {
|
|
46
|
+
const Pressable = (0, react.forwardRef)(function Pressable({ className, asChild, onPress, onClick, backgroundColor, borderRadius, borderTopStartRadius, borderTopEndRadius, borderBottomStartRadius, borderBottomEndRadius, borderColor, borderStartColor, borderEndColor, borderTopColor, borderBottomColor, borderWidth, borderVerticalWidth, borderHorizontalWidth, borderStartWidth, borderEndWidth, borderTopWidth, borderBottomWidth, alignContent, alignItems, alignSelf, flex, flexDirection, flexGrow, flexShrink, flexWrap, justifyContent, flexBasis, display, overflow, overflowX, overflowY, position, spacing, spacingHorizontal, spacingVertical, spacingBottom, spacingEnd, spacingStart, spacingTop, offset, offsetVertical, offsetHorizontal, offsetBottom, offsetEnd, offsetStart, offsetTop, columnGap, rowGap, width, height, dropShadow, insetShadow, ...props }, ref) {
|
|
47
47
|
const handleClick = onPress || onClick ? (e) => {
|
|
48
48
|
onClick?.(e);
|
|
49
49
|
onPress?.();
|
|
@@ -98,6 +98,8 @@ const Pressable = (0, react.forwardRef)(function Pressable({ className, asChild,
|
|
|
98
98
|
offsetTop,
|
|
99
99
|
columnGap,
|
|
100
100
|
rowGap,
|
|
101
|
+
width,
|
|
102
|
+
height,
|
|
101
103
|
dropShadow,
|
|
102
104
|
insetShadow,
|
|
103
105
|
className
|
|
@@ -41,7 +41,7 @@ const Slot = createSlot();
|
|
|
41
41
|
* @related [Button](https://uds.build/docs/components/button), [IconButton](https://uds.build/docs/components/icon-button)
|
|
42
42
|
*
|
|
43
43
|
*/
|
|
44
|
-
const Pressable = forwardRef(function Pressable({ className, asChild, onPress, onClick, backgroundColor, borderRadius, borderTopStartRadius, borderTopEndRadius, borderBottomStartRadius, borderBottomEndRadius, borderColor, borderStartColor, borderEndColor, borderTopColor, borderBottomColor, borderWidth, borderVerticalWidth, borderHorizontalWidth, borderStartWidth, borderEndWidth, borderTopWidth, borderBottomWidth, alignContent, alignItems, alignSelf, flex, flexDirection, flexGrow, flexShrink, flexWrap, justifyContent, flexBasis, display, overflow, overflowX, overflowY, position, spacing, spacingHorizontal, spacingVertical, spacingBottom, spacingEnd, spacingStart, spacingTop, offset, offsetVertical, offsetHorizontal, offsetBottom, offsetEnd, offsetStart, offsetTop, columnGap, rowGap, dropShadow, insetShadow, ...props }, ref) {
|
|
44
|
+
const Pressable = forwardRef(function Pressable({ className, asChild, onPress, onClick, backgroundColor, borderRadius, borderTopStartRadius, borderTopEndRadius, borderBottomStartRadius, borderBottomEndRadius, borderColor, borderStartColor, borderEndColor, borderTopColor, borderBottomColor, borderWidth, borderVerticalWidth, borderHorizontalWidth, borderStartWidth, borderEndWidth, borderTopWidth, borderBottomWidth, alignContent, alignItems, alignSelf, flex, flexDirection, flexGrow, flexShrink, flexWrap, justifyContent, flexBasis, display, overflow, overflowX, overflowY, position, spacing, spacingHorizontal, spacingVertical, spacingBottom, spacingEnd, spacingStart, spacingTop, offset, offsetVertical, offsetHorizontal, offsetBottom, offsetEnd, offsetStart, offsetTop, columnGap, rowGap, width, height, dropShadow, insetShadow, ...props }, ref) {
|
|
45
45
|
const handleClick = onPress || onClick ? (e) => {
|
|
46
46
|
onClick?.(e);
|
|
47
47
|
onPress?.();
|
|
@@ -96,6 +96,8 @@ const Pressable = forwardRef(function Pressable({ className, asChild, onPress, o
|
|
|
96
96
|
offsetTop,
|
|
97
97
|
columnGap,
|
|
98
98
|
rowGap,
|
|
99
|
+
width,
|
|
100
|
+
height,
|
|
99
101
|
dropShadow,
|
|
100
102
|
insetShadow,
|
|
101
103
|
className
|
|
@@ -236,70 +236,6 @@ var componentData_default = {
|
|
|
236
236
|
"runtimeConfigInternalComponentProps": {},
|
|
237
237
|
"motionVarPrefixes": []
|
|
238
238
|
},
|
|
239
|
-
Divider: {
|
|
240
|
-
"name": "Divider",
|
|
241
|
-
"defaultProps": {
|
|
242
|
-
"variant": "primary",
|
|
243
|
-
"contentPosition": "center"
|
|
244
|
-
},
|
|
245
|
-
"getStylesLiterals": {},
|
|
246
|
-
"cxLiterals": ["inherit"],
|
|
247
|
-
"internalComponents": [
|
|
248
|
-
"DividerLine",
|
|
249
|
-
"DividerLabel",
|
|
250
|
-
"InternalComponent",
|
|
251
|
-
"Box"
|
|
252
|
-
],
|
|
253
|
-
"internalComponentProps": {
|
|
254
|
-
"InternalComponent": {
|
|
255
|
-
"alignItems": ["center"],
|
|
256
|
-
"flex": ["1"]
|
|
257
|
-
},
|
|
258
|
-
"Box": {
|
|
259
|
-
"display": ["flex"],
|
|
260
|
-
"flex": ["none"]
|
|
261
|
-
}
|
|
262
|
-
},
|
|
263
|
-
"propToVariantKeys": { "variant": ["dividerVariantRoot"] },
|
|
264
|
-
"runtimeConfigDefaultProps": {},
|
|
265
|
-
"runtimeConfigGetStyles": {},
|
|
266
|
-
"runtimeConfigInternalComponentProps": {},
|
|
267
|
-
"motionVarPrefixes": []
|
|
268
|
-
},
|
|
269
|
-
DividerLabel: {
|
|
270
|
-
"name": "DividerLabel",
|
|
271
|
-
"defaultProps": {
|
|
272
|
-
"variant": "primary",
|
|
273
|
-
"textVariant": "inherit",
|
|
274
|
-
"color": "inherit",
|
|
275
|
-
"as": "span"
|
|
276
|
-
},
|
|
277
|
-
"getStylesLiterals": {},
|
|
278
|
-
"cxLiterals": ["inherit"],
|
|
279
|
-
"internalComponents": ["Text"],
|
|
280
|
-
"internalComponentProps": {},
|
|
281
|
-
"propToVariantKeys": {
|
|
282
|
-
"variant": ["dividerVariantLabel"],
|
|
283
|
-
"textVariant": ["variant"]
|
|
284
|
-
},
|
|
285
|
-
"runtimeConfigDefaultProps": {},
|
|
286
|
-
"runtimeConfigGetStyles": {},
|
|
287
|
-
"runtimeConfigInternalComponentProps": {},
|
|
288
|
-
"motionVarPrefixes": []
|
|
289
|
-
},
|
|
290
|
-
DividerLine: {
|
|
291
|
-
"name": "DividerLine",
|
|
292
|
-
"defaultProps": { "variant": "primary" },
|
|
293
|
-
"getStylesLiterals": {},
|
|
294
|
-
"cxLiterals": ["inherit"],
|
|
295
|
-
"internalComponents": ["Box"],
|
|
296
|
-
"internalComponentProps": { "Box": { "flex": ["1"] } },
|
|
297
|
-
"propToVariantKeys": { "variant": ["dividerVariantLine"] },
|
|
298
|
-
"runtimeConfigDefaultProps": {},
|
|
299
|
-
"runtimeConfigGetStyles": {},
|
|
300
|
-
"runtimeConfigInternalComponentProps": {},
|
|
301
|
-
"motionVarPrefixes": []
|
|
302
|
-
},
|
|
303
239
|
"Table.mocks": {
|
|
304
240
|
"name": "Table.mocks",
|
|
305
241
|
"defaultProps": {},
|
|
@@ -368,6 +304,70 @@ var componentData_default = {
|
|
|
368
304
|
"runtimeConfigInternalComponentProps": {},
|
|
369
305
|
"motionVarPrefixes": []
|
|
370
306
|
},
|
|
307
|
+
Divider: {
|
|
308
|
+
"name": "Divider",
|
|
309
|
+
"defaultProps": {
|
|
310
|
+
"variant": "primary",
|
|
311
|
+
"contentPosition": "center"
|
|
312
|
+
},
|
|
313
|
+
"getStylesLiterals": {},
|
|
314
|
+
"cxLiterals": ["inherit"],
|
|
315
|
+
"internalComponents": [
|
|
316
|
+
"DividerLine",
|
|
317
|
+
"DividerLabel",
|
|
318
|
+
"InternalComponent",
|
|
319
|
+
"Box"
|
|
320
|
+
],
|
|
321
|
+
"internalComponentProps": {
|
|
322
|
+
"InternalComponent": {
|
|
323
|
+
"alignItems": ["center"],
|
|
324
|
+
"flex": ["1"]
|
|
325
|
+
},
|
|
326
|
+
"Box": {
|
|
327
|
+
"display": ["flex"],
|
|
328
|
+
"flex": ["none"]
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
"propToVariantKeys": { "variant": ["dividerVariantRoot"] },
|
|
332
|
+
"runtimeConfigDefaultProps": {},
|
|
333
|
+
"runtimeConfigGetStyles": {},
|
|
334
|
+
"runtimeConfigInternalComponentProps": {},
|
|
335
|
+
"motionVarPrefixes": []
|
|
336
|
+
},
|
|
337
|
+
DividerLabel: {
|
|
338
|
+
"name": "DividerLabel",
|
|
339
|
+
"defaultProps": {
|
|
340
|
+
"variant": "primary",
|
|
341
|
+
"textVariant": "inherit",
|
|
342
|
+
"color": "inherit",
|
|
343
|
+
"as": "span"
|
|
344
|
+
},
|
|
345
|
+
"getStylesLiterals": {},
|
|
346
|
+
"cxLiterals": ["inherit"],
|
|
347
|
+
"internalComponents": ["Text"],
|
|
348
|
+
"internalComponentProps": {},
|
|
349
|
+
"propToVariantKeys": {
|
|
350
|
+
"variant": ["dividerVariantLabel"],
|
|
351
|
+
"textVariant": ["variant"]
|
|
352
|
+
},
|
|
353
|
+
"runtimeConfigDefaultProps": {},
|
|
354
|
+
"runtimeConfigGetStyles": {},
|
|
355
|
+
"runtimeConfigInternalComponentProps": {},
|
|
356
|
+
"motionVarPrefixes": []
|
|
357
|
+
},
|
|
358
|
+
DividerLine: {
|
|
359
|
+
"name": "DividerLine",
|
|
360
|
+
"defaultProps": { "variant": "primary" },
|
|
361
|
+
"getStylesLiterals": {},
|
|
362
|
+
"cxLiterals": ["inherit"],
|
|
363
|
+
"internalComponents": ["Box"],
|
|
364
|
+
"internalComponentProps": { "Box": { "flex": ["1"] } },
|
|
365
|
+
"propToVariantKeys": { "variant": ["dividerVariantLine"] },
|
|
366
|
+
"runtimeConfigDefaultProps": {},
|
|
367
|
+
"runtimeConfigGetStyles": {},
|
|
368
|
+
"runtimeConfigInternalComponentProps": {},
|
|
369
|
+
"motionVarPrefixes": []
|
|
370
|
+
},
|
|
371
371
|
BannerContent: {
|
|
372
372
|
"name": "BannerContent",
|
|
373
373
|
"defaultProps": {},
|
|
@@ -236,70 +236,6 @@ var componentData_default = {
|
|
|
236
236
|
"runtimeConfigInternalComponentProps": {},
|
|
237
237
|
"motionVarPrefixes": []
|
|
238
238
|
},
|
|
239
|
-
Divider: {
|
|
240
|
-
"name": "Divider",
|
|
241
|
-
"defaultProps": {
|
|
242
|
-
"variant": "primary",
|
|
243
|
-
"contentPosition": "center"
|
|
244
|
-
},
|
|
245
|
-
"getStylesLiterals": {},
|
|
246
|
-
"cxLiterals": ["inherit"],
|
|
247
|
-
"internalComponents": [
|
|
248
|
-
"DividerLine",
|
|
249
|
-
"DividerLabel",
|
|
250
|
-
"InternalComponent",
|
|
251
|
-
"Box"
|
|
252
|
-
],
|
|
253
|
-
"internalComponentProps": {
|
|
254
|
-
"InternalComponent": {
|
|
255
|
-
"alignItems": ["center"],
|
|
256
|
-
"flex": ["1"]
|
|
257
|
-
},
|
|
258
|
-
"Box": {
|
|
259
|
-
"display": ["flex"],
|
|
260
|
-
"flex": ["none"]
|
|
261
|
-
}
|
|
262
|
-
},
|
|
263
|
-
"propToVariantKeys": { "variant": ["dividerVariantRoot"] },
|
|
264
|
-
"runtimeConfigDefaultProps": {},
|
|
265
|
-
"runtimeConfigGetStyles": {},
|
|
266
|
-
"runtimeConfigInternalComponentProps": {},
|
|
267
|
-
"motionVarPrefixes": []
|
|
268
|
-
},
|
|
269
|
-
DividerLabel: {
|
|
270
|
-
"name": "DividerLabel",
|
|
271
|
-
"defaultProps": {
|
|
272
|
-
"variant": "primary",
|
|
273
|
-
"textVariant": "inherit",
|
|
274
|
-
"color": "inherit",
|
|
275
|
-
"as": "span"
|
|
276
|
-
},
|
|
277
|
-
"getStylesLiterals": {},
|
|
278
|
-
"cxLiterals": ["inherit"],
|
|
279
|
-
"internalComponents": ["Text"],
|
|
280
|
-
"internalComponentProps": {},
|
|
281
|
-
"propToVariantKeys": {
|
|
282
|
-
"variant": ["dividerVariantLabel"],
|
|
283
|
-
"textVariant": ["variant"]
|
|
284
|
-
},
|
|
285
|
-
"runtimeConfigDefaultProps": {},
|
|
286
|
-
"runtimeConfigGetStyles": {},
|
|
287
|
-
"runtimeConfigInternalComponentProps": {},
|
|
288
|
-
"motionVarPrefixes": []
|
|
289
|
-
},
|
|
290
|
-
DividerLine: {
|
|
291
|
-
"name": "DividerLine",
|
|
292
|
-
"defaultProps": { "variant": "primary" },
|
|
293
|
-
"getStylesLiterals": {},
|
|
294
|
-
"cxLiterals": ["inherit"],
|
|
295
|
-
"internalComponents": ["Box"],
|
|
296
|
-
"internalComponentProps": { "Box": { "flex": ["1"] } },
|
|
297
|
-
"propToVariantKeys": { "variant": ["dividerVariantLine"] },
|
|
298
|
-
"runtimeConfigDefaultProps": {},
|
|
299
|
-
"runtimeConfigGetStyles": {},
|
|
300
|
-
"runtimeConfigInternalComponentProps": {},
|
|
301
|
-
"motionVarPrefixes": []
|
|
302
|
-
},
|
|
303
239
|
"Table.mocks": {
|
|
304
240
|
"name": "Table.mocks",
|
|
305
241
|
"defaultProps": {},
|
|
@@ -368,6 +304,70 @@ var componentData_default = {
|
|
|
368
304
|
"runtimeConfigInternalComponentProps": {},
|
|
369
305
|
"motionVarPrefixes": []
|
|
370
306
|
},
|
|
307
|
+
Divider: {
|
|
308
|
+
"name": "Divider",
|
|
309
|
+
"defaultProps": {
|
|
310
|
+
"variant": "primary",
|
|
311
|
+
"contentPosition": "center"
|
|
312
|
+
},
|
|
313
|
+
"getStylesLiterals": {},
|
|
314
|
+
"cxLiterals": ["inherit"],
|
|
315
|
+
"internalComponents": [
|
|
316
|
+
"DividerLine",
|
|
317
|
+
"DividerLabel",
|
|
318
|
+
"InternalComponent",
|
|
319
|
+
"Box"
|
|
320
|
+
],
|
|
321
|
+
"internalComponentProps": {
|
|
322
|
+
"InternalComponent": {
|
|
323
|
+
"alignItems": ["center"],
|
|
324
|
+
"flex": ["1"]
|
|
325
|
+
},
|
|
326
|
+
"Box": {
|
|
327
|
+
"display": ["flex"],
|
|
328
|
+
"flex": ["none"]
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
"propToVariantKeys": { "variant": ["dividerVariantRoot"] },
|
|
332
|
+
"runtimeConfigDefaultProps": {},
|
|
333
|
+
"runtimeConfigGetStyles": {},
|
|
334
|
+
"runtimeConfigInternalComponentProps": {},
|
|
335
|
+
"motionVarPrefixes": []
|
|
336
|
+
},
|
|
337
|
+
DividerLabel: {
|
|
338
|
+
"name": "DividerLabel",
|
|
339
|
+
"defaultProps": {
|
|
340
|
+
"variant": "primary",
|
|
341
|
+
"textVariant": "inherit",
|
|
342
|
+
"color": "inherit",
|
|
343
|
+
"as": "span"
|
|
344
|
+
},
|
|
345
|
+
"getStylesLiterals": {},
|
|
346
|
+
"cxLiterals": ["inherit"],
|
|
347
|
+
"internalComponents": ["Text"],
|
|
348
|
+
"internalComponentProps": {},
|
|
349
|
+
"propToVariantKeys": {
|
|
350
|
+
"variant": ["dividerVariantLabel"],
|
|
351
|
+
"textVariant": ["variant"]
|
|
352
|
+
},
|
|
353
|
+
"runtimeConfigDefaultProps": {},
|
|
354
|
+
"runtimeConfigGetStyles": {},
|
|
355
|
+
"runtimeConfigInternalComponentProps": {},
|
|
356
|
+
"motionVarPrefixes": []
|
|
357
|
+
},
|
|
358
|
+
DividerLine: {
|
|
359
|
+
"name": "DividerLine",
|
|
360
|
+
"defaultProps": { "variant": "primary" },
|
|
361
|
+
"getStylesLiterals": {},
|
|
362
|
+
"cxLiterals": ["inherit"],
|
|
363
|
+
"internalComponents": ["Box"],
|
|
364
|
+
"internalComponentProps": { "Box": { "flex": ["1"] } },
|
|
365
|
+
"propToVariantKeys": { "variant": ["dividerVariantLine"] },
|
|
366
|
+
"runtimeConfigDefaultProps": {},
|
|
367
|
+
"runtimeConfigGetStyles": {},
|
|
368
|
+
"runtimeConfigInternalComponentProps": {},
|
|
369
|
+
"motionVarPrefixes": []
|
|
370
|
+
},
|
|
371
371
|
BannerContent: {
|
|
372
372
|
"name": "BannerContent",
|
|
373
373
|
"defaultProps": {},
|
|
@@ -336,6 +336,92 @@
|
|
|
336
336
|
"runtimeConfigInternalComponentProps": {},
|
|
337
337
|
"motionVarPrefixes": []
|
|
338
338
|
},
|
|
339
|
+
"Table.mocks": {
|
|
340
|
+
"name": "Table.mocks",
|
|
341
|
+
"defaultProps": {},
|
|
342
|
+
"getStylesLiterals": {},
|
|
343
|
+
"cxLiterals": [],
|
|
344
|
+
"internalComponents": [],
|
|
345
|
+
"internalComponentProps": {},
|
|
346
|
+
"propToVariantKeys": {},
|
|
347
|
+
"runtimeConfigDefaultProps": {},
|
|
348
|
+
"runtimeConfigGetStyles": {},
|
|
349
|
+
"runtimeConfigInternalComponentProps": {},
|
|
350
|
+
"motionVarPrefixes": []
|
|
351
|
+
},
|
|
352
|
+
"Spinner": {
|
|
353
|
+
"name": "Spinner",
|
|
354
|
+
"defaultProps": {
|
|
355
|
+
"color": "primary",
|
|
356
|
+
"size": "lg"
|
|
357
|
+
},
|
|
358
|
+
"getStylesLiterals": {},
|
|
359
|
+
"cxLiterals": [
|
|
360
|
+
"self-center",
|
|
361
|
+
"relative",
|
|
362
|
+
"sr-only"
|
|
363
|
+
],
|
|
364
|
+
"internalComponents": [
|
|
365
|
+
"Icon"
|
|
366
|
+
],
|
|
367
|
+
"internalComponentProps": {
|
|
368
|
+
"Icon": {
|
|
369
|
+
"role": [
|
|
370
|
+
"img"
|
|
371
|
+
],
|
|
372
|
+
"className": [
|
|
373
|
+
"animate-spin"
|
|
374
|
+
],
|
|
375
|
+
"aria-hidden": [
|
|
376
|
+
"true"
|
|
377
|
+
]
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
"propToVariantKeys": {},
|
|
381
|
+
"runtimeConfigDefaultProps": {},
|
|
382
|
+
"runtimeConfigGetStyles": {},
|
|
383
|
+
"runtimeConfigInternalComponentProps": {},
|
|
384
|
+
"motionVarPrefixes": []
|
|
385
|
+
},
|
|
386
|
+
"Table": {
|
|
387
|
+
"name": "Table",
|
|
388
|
+
"defaultProps": {
|
|
389
|
+
"display": "table-cell",
|
|
390
|
+
"overflow": "hidden",
|
|
391
|
+
"borderColor": "muted",
|
|
392
|
+
"borderRadius": "md",
|
|
393
|
+
"spacing": "3",
|
|
394
|
+
"borderBottomColor": "muted",
|
|
395
|
+
"borderBottomWidth": "thin",
|
|
396
|
+
"color": "primary"
|
|
397
|
+
},
|
|
398
|
+
"getStylesLiterals": {
|
|
399
|
+
"textAlign": "start"
|
|
400
|
+
},
|
|
401
|
+
"cxLiterals": [],
|
|
402
|
+
"internalComponents": [
|
|
403
|
+
"CellComponent",
|
|
404
|
+
"Box",
|
|
405
|
+
"Text",
|
|
406
|
+
"Table.Root",
|
|
407
|
+
"Table.Header",
|
|
408
|
+
"Table.Row",
|
|
409
|
+
"Table.Cell",
|
|
410
|
+
"Table.Body"
|
|
411
|
+
],
|
|
412
|
+
"internalComponentProps": {
|
|
413
|
+
"Table.Cell": {
|
|
414
|
+
"asHeaderCell": [
|
|
415
|
+
"column"
|
|
416
|
+
]
|
|
417
|
+
}
|
|
418
|
+
},
|
|
419
|
+
"propToVariantKeys": {},
|
|
420
|
+
"runtimeConfigDefaultProps": {},
|
|
421
|
+
"runtimeConfigGetStyles": {},
|
|
422
|
+
"runtimeConfigInternalComponentProps": {},
|
|
423
|
+
"motionVarPrefixes": []
|
|
424
|
+
},
|
|
339
425
|
"Divider": {
|
|
340
426
|
"name": "Divider",
|
|
341
427
|
"defaultProps": {
|
|
@@ -438,92 +524,6 @@
|
|
|
438
524
|
"runtimeConfigInternalComponentProps": {},
|
|
439
525
|
"motionVarPrefixes": []
|
|
440
526
|
},
|
|
441
|
-
"Table.mocks": {
|
|
442
|
-
"name": "Table.mocks",
|
|
443
|
-
"defaultProps": {},
|
|
444
|
-
"getStylesLiterals": {},
|
|
445
|
-
"cxLiterals": [],
|
|
446
|
-
"internalComponents": [],
|
|
447
|
-
"internalComponentProps": {},
|
|
448
|
-
"propToVariantKeys": {},
|
|
449
|
-
"runtimeConfigDefaultProps": {},
|
|
450
|
-
"runtimeConfigGetStyles": {},
|
|
451
|
-
"runtimeConfigInternalComponentProps": {},
|
|
452
|
-
"motionVarPrefixes": []
|
|
453
|
-
},
|
|
454
|
-
"Spinner": {
|
|
455
|
-
"name": "Spinner",
|
|
456
|
-
"defaultProps": {
|
|
457
|
-
"color": "primary",
|
|
458
|
-
"size": "lg"
|
|
459
|
-
},
|
|
460
|
-
"getStylesLiterals": {},
|
|
461
|
-
"cxLiterals": [
|
|
462
|
-
"self-center",
|
|
463
|
-
"relative",
|
|
464
|
-
"sr-only"
|
|
465
|
-
],
|
|
466
|
-
"internalComponents": [
|
|
467
|
-
"Icon"
|
|
468
|
-
],
|
|
469
|
-
"internalComponentProps": {
|
|
470
|
-
"Icon": {
|
|
471
|
-
"role": [
|
|
472
|
-
"img"
|
|
473
|
-
],
|
|
474
|
-
"className": [
|
|
475
|
-
"animate-spin"
|
|
476
|
-
],
|
|
477
|
-
"aria-hidden": [
|
|
478
|
-
"true"
|
|
479
|
-
]
|
|
480
|
-
}
|
|
481
|
-
},
|
|
482
|
-
"propToVariantKeys": {},
|
|
483
|
-
"runtimeConfigDefaultProps": {},
|
|
484
|
-
"runtimeConfigGetStyles": {},
|
|
485
|
-
"runtimeConfigInternalComponentProps": {},
|
|
486
|
-
"motionVarPrefixes": []
|
|
487
|
-
},
|
|
488
|
-
"Table": {
|
|
489
|
-
"name": "Table",
|
|
490
|
-
"defaultProps": {
|
|
491
|
-
"display": "table-cell",
|
|
492
|
-
"overflow": "hidden",
|
|
493
|
-
"borderColor": "muted",
|
|
494
|
-
"borderRadius": "md",
|
|
495
|
-
"spacing": "3",
|
|
496
|
-
"borderBottomColor": "muted",
|
|
497
|
-
"borderBottomWidth": "thin",
|
|
498
|
-
"color": "primary"
|
|
499
|
-
},
|
|
500
|
-
"getStylesLiterals": {
|
|
501
|
-
"textAlign": "start"
|
|
502
|
-
},
|
|
503
|
-
"cxLiterals": [],
|
|
504
|
-
"internalComponents": [
|
|
505
|
-
"CellComponent",
|
|
506
|
-
"Box",
|
|
507
|
-
"Text",
|
|
508
|
-
"Table.Root",
|
|
509
|
-
"Table.Header",
|
|
510
|
-
"Table.Row",
|
|
511
|
-
"Table.Cell",
|
|
512
|
-
"Table.Body"
|
|
513
|
-
],
|
|
514
|
-
"internalComponentProps": {
|
|
515
|
-
"Table.Cell": {
|
|
516
|
-
"asHeaderCell": [
|
|
517
|
-
"column"
|
|
518
|
-
]
|
|
519
|
-
}
|
|
520
|
-
},
|
|
521
|
-
"propToVariantKeys": {},
|
|
522
|
-
"runtimeConfigDefaultProps": {},
|
|
523
|
-
"runtimeConfigGetStyles": {},
|
|
524
|
-
"runtimeConfigInternalComponentProps": {},
|
|
525
|
-
"motionVarPrefixes": []
|
|
526
|
-
},
|
|
527
527
|
"BannerContent": {
|
|
528
528
|
"name": "BannerContent",
|
|
529
529
|
"defaultProps": {},
|