@yahoo/uds 3.122.2 → 3.123.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/components/experimental/client/SegmentedControl.d.cts +2 -1
- package/dist/styles/styler.d.cts +12 -12
- package/dist/styles/styler.d.ts +12 -12
- package/dist/tailwind/dist/commands/css.cjs +17 -3
- package/dist/tailwind/dist/commands/css.d.cts.map +1 -1
- package/dist/tailwind/dist/commands/css.d.ts.map +1 -1
- package/dist/tailwind/dist/commands/css.helpers.cjs +2 -1
- package/dist/tailwind/dist/commands/css.helpers.js +2 -1
- package/dist/tailwind/dist/commands/css.helpers.js.map +1 -1
- package/dist/tailwind/dist/commands/css.js +17 -3
- package/dist/tailwind/dist/commands/css.js.map +1 -1
- package/dist/tailwind/dist/css/generate.cjs +3 -0
- package/dist/tailwind/dist/css/generate.helpers.cjs +14 -6
- package/dist/tailwind/dist/css/generate.helpers.js +15 -7
- package/dist/tailwind/dist/css/generate.helpers.js.map +1 -1
- package/dist/tailwind/dist/css/generate.js +3 -0
- package/dist/tailwind/dist/css/generate.js.map +1 -1
- package/dist/tailwind/dist/css/nodeUtils.cjs +91 -20
- package/dist/tailwind/dist/css/nodeUtils.js +90 -21
- package/dist/tailwind/dist/css/nodeUtils.js.map +1 -1
- package/dist/tailwind/dist/css/postcss.cjs +22 -1
- package/dist/tailwind/dist/css/postcss.helpers.cjs +12 -1
- package/dist/tailwind/dist/css/postcss.helpers.js +11 -1
- package/dist/tailwind/dist/css/postcss.helpers.js.map +1 -1
- package/dist/tailwind/dist/css/postcss.js +22 -2
- package/dist/tailwind/dist/css/postcss.js.map +1 -1
- package/dist/tailwind/dist/css/runner.cjs +171 -20
- package/dist/tailwind/dist/css/runner.helpers.cjs +58 -6
- package/dist/tailwind/dist/css/runner.helpers.js +54 -7
- package/dist/tailwind/dist/css/runner.helpers.js.map +1 -1
- package/dist/tailwind/dist/css/runner.js +172 -20
- package/dist/tailwind/dist/css/runner.js.map +1 -1
- package/dist/tailwind/dist/css/theme.d.cts +11 -0
- package/dist/tailwind/dist/css/theme.d.cts.map +1 -1
- package/dist/tailwind/dist/css/theme.d.ts +11 -0
- package/dist/tailwind/dist/css/theme.d.ts.map +1 -1
- package/dist/tailwind/dist/css/theme.js.map +1 -1
- package/dist/tailwind/dist/purger/optimized/ast/expressions.cjs +26 -3
- package/dist/tailwind/dist/purger/optimized/ast/expressions.js +26 -3
- package/dist/tailwind/dist/purger/optimized/ast/expressions.js.map +1 -1
- package/dist/uds/dist/automated-config/dist/generated/universalTokensConfigAuto.d.cts +2 -0
- package/dist/uds/dist/automated-config/dist/properties.d.cts +5 -0
- package/dist/uds/dist/automated-config/dist/types/ComponentConfig.d.cts +3 -0
- package/dist/uds/dist/automated-config/dist/types/ComponentStyles.d.cts +2 -0
- package/dist/uds/dist/automated-config/dist/types/ConfigSchema.d.cts +2 -0
- package/dist/uds/dist/automated-config/dist/utils/buildConfigSchema.d.cts +7 -0
- package/dist/uds/dist/automated-config/dist/utils/coalesceConfigVariant.d.cts +2 -0
- package/dist/uds/dist/automated-config/dist/utils/defaults.d.cts +2 -0
- package/dist/uds/dist/automated-config/dist/utils/getConfigVariantComponentStatesMatrix.d.cts +2 -0
- package/dist/uds/dist/automated-config/dist/utils/getConfigVariantProperties.d.cts +3 -0
- package/dist/uds/dist/automated-config/dist/utils/getConfigVariantPseudoStates.d.cts +3 -0
- package/dist/uds/dist/automated-config/dist/utils/getConfigVariants.d.cts +2 -0
- package/dist/uds/dist/automated-config/dist/utils/index.d.cts +12 -0
- package/dist/uds/dist/automated-config/dist/utils/subcomponents.d.cts +2 -0
- package/dist/uds/dist/components/Box.d.cts +4 -0
- package/dist/uds/dist/components/Divider/Divider.d.cts +3 -0
- package/dist/uds/dist/components/Divider/DividerCore.d.cts +5 -0
- package/dist/uds/dist/components/Divider/DividerInternal.d.cts +5 -0
- package/dist/uds/dist/components/Divider/index.d.cts +2 -0
- package/dist/uds/dist/components/FormLabel.d.cts +4 -0
- package/dist/uds/dist/components/HStack.d.cts +5 -0
- package/dist/uds/dist/components/Icon.d.cts +4 -0
- package/dist/uds/dist/components/Image.d.cts +3 -0
- package/dist/uds/dist/components/Link.d.cts +4 -0
- package/dist/uds/dist/components/Scrim.d.cts +3 -0
- package/dist/uds/dist/components/Text.d.cts +4 -0
- package/dist/uds/dist/components/VStack.d.cts +5 -0
- package/dist/uds/dist/components/client/Avatar/Avatar.d.cts +2 -0
- package/dist/uds/dist/components/client/Avatar/AvatarIcon.d.cts +4 -0
- package/dist/uds/dist/components/client/Avatar/AvatarImage.d.cts +6 -0
- package/dist/uds/dist/components/client/Avatar/AvatarText.d.cts +4 -0
- package/dist/uds/dist/components/client/Avatar/index.d.cts +5 -0
- package/dist/uds/dist/components/client/Badge.d.cts +4 -0
- package/dist/uds/dist/components/client/BottomSheet/BottomSheet.d.cts +5 -0
- package/dist/uds/dist/components/client/BottomSheet/BottomSheetContent.d.cts +2 -0
- package/dist/uds/dist/components/client/BottomSheet/BottomSheetHeader.d.cts +2 -0
- package/dist/uds/dist/components/client/BottomSheet/BottomSheetProvider.d.cts +3 -0
- package/dist/uds/dist/components/client/BottomSheet/UDSBottomSheetConfigProvider.d.cts +3 -0
- package/dist/uds/dist/components/client/BottomSheet/index.d.cts +7 -0
- package/dist/uds/dist/components/client/BottomSheet/useBottomSheetStore.d.cts +2 -0
- package/dist/uds/dist/components/client/Button.d.cts +5 -0
- package/dist/uds/dist/components/client/Checkbox.d.cts +4 -0
- package/dist/uds/dist/components/client/Chip/Chip.d.cts +5 -0
- package/dist/uds/dist/components/client/Chip/ChipBase.d.cts +6 -0
- package/dist/uds/dist/components/client/Chip/ChipButton.d.cts +5 -0
- package/dist/uds/dist/components/client/Chip/ChipDismissible.d.cts +5 -0
- package/dist/uds/dist/components/client/Chip/ChipLink.d.cts +5 -0
- package/dist/uds/dist/components/client/Chip/ChipToggle.d.cts +5 -0
- package/dist/uds/dist/components/client/Chip/index.d.cts +6 -0
- package/dist/uds/dist/components/client/IconButton.d.cts +5 -0
- package/dist/uds/dist/components/client/Input/Input.d.cts +7 -0
- package/dist/uds/dist/components/client/Input/InputHelpText.d.cts +2 -0
- package/dist/uds/dist/components/client/Input/InputHelpTextInternal.d.cts +6 -0
- package/dist/uds/dist/components/client/Input/index.d.cts +3 -0
- package/dist/uds/dist/components/client/Menu/Menu.Content.d.cts +6 -0
- package/dist/uds/dist/components/client/Menu/Menu.Divider.d.cts +3 -0
- package/dist/uds/dist/components/client/Menu/Menu.Item.d.cts +6 -0
- package/dist/uds/dist/components/client/Menu/Menu.ItemCheckbox.d.cts +6 -0
- package/dist/uds/dist/components/client/Menu/Menu.Provider.d.cts +3 -0
- package/dist/uds/dist/components/client/Menu/Menu.Trigger.d.cts +5 -0
- package/dist/uds/dist/components/client/Menu/Menu.d.cts +2 -0
- package/dist/uds/dist/components/client/Menu/Menu.index.d.cts +9 -0
- package/dist/uds/dist/components/client/Menu/index.d.cts +9 -0
- package/dist/uds/dist/components/client/Popover/Popover.d.cts +2 -0
- package/dist/uds/dist/components/client/Popover/PopoverContent.d.cts +5 -0
- package/dist/uds/dist/components/client/Popover/PopoverTrigger.d.cts +2 -0
- package/dist/uds/dist/components/client/Popover/UDSPopoverConfigProvider.d.cts +4 -0
- package/dist/uds/dist/components/client/Popover/index.d.cts +6 -0
- package/dist/uds/dist/components/client/Pressable.d.cts +4 -0
- package/dist/uds/dist/components/client/Radio/Radio.d.cts +4 -0
- package/dist/uds/dist/components/client/Radio/RadioGroupProvider.d.cts +4 -0
- package/dist/uds/dist/components/client/Radio/index.d.cts +3 -0
- package/dist/uds/dist/components/client/SpringMotionConfig.d.cts +5 -0
- package/dist/uds/dist/components/client/Switch.d.cts +4 -0
- package/dist/uds/dist/components/client/Toast/Toast.d.cts +8 -0
- package/dist/uds/dist/components/client/Toast/ToastContainer.d.cts +6 -0
- package/dist/uds/dist/components/client/Toast/ToastPortal.d.cts +3 -0
- package/dist/uds/dist/components/client/Toast/UDSToastConfigProvider.d.cts +5 -0
- package/dist/uds/dist/components/client/Toast/createToast.d.cts +6 -0
- package/dist/uds/dist/components/client/Toast/index.d.cts +6 -0
- package/dist/uds/dist/components/client/Tooltip/Tooltip.d.cts +2 -0
- package/dist/uds/dist/components/client/Tooltip/TooltipContent.d.cts +3 -0
- package/dist/uds/dist/components/client/Tooltip/TooltipTrigger.d.cts +2 -0
- package/dist/uds/dist/components/client/Tooltip/UDSTooltipConfigProvider.d.cts +5 -0
- package/dist/uds/dist/components/client/Tooltip/index.d.cts +6 -0
- package/dist/uds/dist/components/client/index.d.cts +59 -0
- package/dist/uds/dist/components/client/providers/UDSBreakpointsConfigProvider.d.cts +4 -0
- package/dist/uds/dist/components/client/providers/UDSConfigProvider.d.cts +3 -0
- package/dist/uds/dist/components/index.d.cts +61 -0
- package/dist/uds/dist/config/dist/index.d.cts +4 -0
- package/dist/uds/dist/css-tokens/dist/index.d.cts +2 -0
- package/dist/uds/dist/fixtures/dist/index.d.cts +2 -0
- package/dist/uds/dist/fonts/dist/index.d.cts +2 -0
- package/dist/uds/dist/index.d.cts +93 -0
- package/dist/uds/dist/modes/dist/index.d.cts +2 -0
- package/dist/uds/dist/runtime/bottomSheetConfig.d.cts +3 -0
- package/dist/uds/dist/runtime/breakpointsConfig.d.cts +4 -0
- package/dist/uds/dist/runtime/index.d.cts +7 -0
- package/dist/uds/dist/runtime/popoverConfig.d.cts +5 -0
- package/dist/uds/dist/runtime/toastConfig.d.cts +4 -0
- package/dist/uds/dist/runtime/tooltipConfig.d.cts +5 -0
- package/dist/uds/dist/runtime/udsConfig.d.cts +8 -0
- package/dist/uds/dist/styles/styler.d.cts +2 -0
- package/dist/uds/dist/styles/stylerTypes.d.cts +3 -0
- package/dist/uds/dist/tailwind/dist/config/dist/index.d.cts +2 -0
- package/dist/uds/dist/tailwind/dist/index.d.cts +3 -0
- package/dist/uds/dist/tailwind/dist/tailwind/components/getResponsiveTextStyles.d.cts +2 -0
- package/dist/uds/dist/tailwind/dist/utils/parseTokens.d.cts +2 -0
- package/dist/uds/dist/tokens/automation/index.d.cts +10 -0
- package/dist/uds/dist/tokens/configs/shadow.d.cts +3 -0
- package/dist/uds/dist/tokens/consts/cssTokens.d.cts +2 -0
- package/dist/uds/dist/tokens/consts/defaultModes.d.cts +2 -0
- package/dist/uds/dist/tokens/consts/fontDeclarationsMap.d.cts +2 -0
- package/dist/uds/dist/tokens/index.d.cts +28 -0
- package/dist/uds/dist/tokens/parseButtonVariants.d.cts +3 -0
- package/dist/uds/dist/tokens/types.d.cts +9 -0
- package/dist/uds/dist/tokens/utils/getFontUrls.d.cts +4 -0
- package/dist/uds/dist/tokens/utils/spectrum.d.cts +3 -0
- package/dist/uds/dist/types/dist/index.d.cts +11 -0
- package/dist/uds/dist/types.d.cts +2 -0
- package/dist/uds/generated/componentData.cjs +131 -131
- package/dist/uds/generated/componentData.js +131 -131
- package/generated/componentData.json +183 -183
- package/package.json +1 -1
|
@@ -1409,6 +1409,189 @@
|
|
|
1409
1409
|
"runtimeConfigInternalComponentProps": {},
|
|
1410
1410
|
"motionVarPrefixes": []
|
|
1411
1411
|
},
|
|
1412
|
+
"Input": {
|
|
1413
|
+
"name": "Input",
|
|
1414
|
+
"defaultProps": {
|
|
1415
|
+
"type": "text",
|
|
1416
|
+
"size": "md",
|
|
1417
|
+
"width": "full"
|
|
1418
|
+
},
|
|
1419
|
+
"getStylesLiterals": {
|
|
1420
|
+
"inputVariantRoot": "default",
|
|
1421
|
+
"inputVariantValueRoot": "empty",
|
|
1422
|
+
"inputVariantValueRoot:1": "filled",
|
|
1423
|
+
"inputVariantInputWrapper": "default",
|
|
1424
|
+
"inputVariantValueInputWrapper": "empty",
|
|
1425
|
+
"inputVariantValueInputWrapper:1": "filled",
|
|
1426
|
+
"inputVariantInput": "default",
|
|
1427
|
+
"inputVariantValueInput": "empty",
|
|
1428
|
+
"inputVariantValueInput:1": "filled",
|
|
1429
|
+
"inputVariantInputPlaceholder": "default",
|
|
1430
|
+
"inputVariantValueInputPlaceholder": "empty",
|
|
1431
|
+
"inputVariantValueInputPlaceholder:1": "filled",
|
|
1432
|
+
"inputVariantLabel": "default",
|
|
1433
|
+
"inputVariantValueLabel": "empty",
|
|
1434
|
+
"inputVariantValueLabel:1": "filled",
|
|
1435
|
+
"inputVariantLabelRequired": "default",
|
|
1436
|
+
"inputVariantValueLabelRequired": "empty",
|
|
1437
|
+
"inputVariantValueLabelRequired:1": "filled",
|
|
1438
|
+
"inputVariantStartIcon": "default",
|
|
1439
|
+
"inputVariantValueStartIcon": "empty",
|
|
1440
|
+
"inputVariantValueStartIcon:1": "filled",
|
|
1441
|
+
"inputVariantEndIcon": "default",
|
|
1442
|
+
"inputVariantValueEndIcon": "empty",
|
|
1443
|
+
"inputVariantValueEndIcon:1": "filled"
|
|
1444
|
+
},
|
|
1445
|
+
"cxLiterals": [
|
|
1446
|
+
"opacity-50",
|
|
1447
|
+
"min-w-[200px]",
|
|
1448
|
+
"grow",
|
|
1449
|
+
"uds-hit-target",
|
|
1450
|
+
"bg-clip-text",
|
|
1451
|
+
"focus:outline-none",
|
|
1452
|
+
"cursor-text",
|
|
1453
|
+
"cursor-not-allowed"
|
|
1454
|
+
],
|
|
1455
|
+
"internalComponents": [
|
|
1456
|
+
"IconSlot",
|
|
1457
|
+
"StartIcon",
|
|
1458
|
+
"EndIcon",
|
|
1459
|
+
"HelpTextContent",
|
|
1460
|
+
"Box",
|
|
1461
|
+
"InputHelpTextInternal",
|
|
1462
|
+
"VStack",
|
|
1463
|
+
"HStack",
|
|
1464
|
+
"AnimateHeightChange"
|
|
1465
|
+
],
|
|
1466
|
+
"internalComponentProps": {
|
|
1467
|
+
"HelpTextContent": {
|
|
1468
|
+
"spacingTop": [
|
|
1469
|
+
"2"
|
|
1470
|
+
]
|
|
1471
|
+
},
|
|
1472
|
+
"Box": {
|
|
1473
|
+
"spacingBottom": [
|
|
1474
|
+
"2"
|
|
1475
|
+
],
|
|
1476
|
+
"columnGap": [
|
|
1477
|
+
"0.5"
|
|
1478
|
+
],
|
|
1479
|
+
"alignItems": [
|
|
1480
|
+
"flex-end",
|
|
1481
|
+
"center"
|
|
1482
|
+
],
|
|
1483
|
+
"position": [
|
|
1484
|
+
"relative"
|
|
1485
|
+
]
|
|
1486
|
+
},
|
|
1487
|
+
"HStack": {
|
|
1488
|
+
"alignItems": [
|
|
1489
|
+
"center"
|
|
1490
|
+
],
|
|
1491
|
+
"gap": [
|
|
1492
|
+
"1"
|
|
1493
|
+
]
|
|
1494
|
+
}
|
|
1495
|
+
},
|
|
1496
|
+
"propToVariantKeys": {
|
|
1497
|
+
"size": [
|
|
1498
|
+
"inputSizeRoot",
|
|
1499
|
+
"inputSizeInputWrapper",
|
|
1500
|
+
"inputSizeInput",
|
|
1501
|
+
"inputSizeLabel",
|
|
1502
|
+
"inputSizeStartIcon",
|
|
1503
|
+
"inputSizeEndIcon"
|
|
1504
|
+
],
|
|
1505
|
+
"startIcon": [
|
|
1506
|
+
"icon"
|
|
1507
|
+
],
|
|
1508
|
+
"endIcon": [
|
|
1509
|
+
"icon"
|
|
1510
|
+
],
|
|
1511
|
+
"helperTextIcon": [
|
|
1512
|
+
"startIcon"
|
|
1513
|
+
]
|
|
1514
|
+
},
|
|
1515
|
+
"runtimeConfigDefaultProps": {},
|
|
1516
|
+
"runtimeConfigGetStyles": {},
|
|
1517
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1518
|
+
"motionVarPrefixes": []
|
|
1519
|
+
},
|
|
1520
|
+
"InputHelpText": {
|
|
1521
|
+
"name": "InputHelpText",
|
|
1522
|
+
"defaultProps": {
|
|
1523
|
+
"size": "md"
|
|
1524
|
+
},
|
|
1525
|
+
"getStylesLiterals": {
|
|
1526
|
+
"inputVariantRoot": "default",
|
|
1527
|
+
"inputVariantValueRoot": "empty",
|
|
1528
|
+
"inputVariantValueRoot:1": "filled"
|
|
1529
|
+
},
|
|
1530
|
+
"cxLiterals": [],
|
|
1531
|
+
"internalComponents": [
|
|
1532
|
+
"InputHelpTextInternal",
|
|
1533
|
+
"Box"
|
|
1534
|
+
],
|
|
1535
|
+
"internalComponentProps": {
|
|
1536
|
+
"Box": {
|
|
1537
|
+
"spacingTop": [
|
|
1538
|
+
"2"
|
|
1539
|
+
]
|
|
1540
|
+
}
|
|
1541
|
+
},
|
|
1542
|
+
"propToVariantKeys": {
|
|
1543
|
+
"size": [
|
|
1544
|
+
"inputSizeRoot"
|
|
1545
|
+
]
|
|
1546
|
+
},
|
|
1547
|
+
"runtimeConfigDefaultProps": {},
|
|
1548
|
+
"runtimeConfigGetStyles": {},
|
|
1549
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1550
|
+
"motionVarPrefixes": []
|
|
1551
|
+
},
|
|
1552
|
+
"InputHelpTextInternal": {
|
|
1553
|
+
"name": "InputHelpTextInternal",
|
|
1554
|
+
"defaultProps": {},
|
|
1555
|
+
"getStylesLiterals": {
|
|
1556
|
+
"inputVariantHelperText": "default",
|
|
1557
|
+
"inputVariantValueHelperText": "empty",
|
|
1558
|
+
"inputVariantValueHelperText:1": "filled",
|
|
1559
|
+
"inputVariantHelperIcon": "default",
|
|
1560
|
+
"inputVariantValueHelperIcon": "empty",
|
|
1561
|
+
"inputVariantValueHelperIcon:1": "filled"
|
|
1562
|
+
},
|
|
1563
|
+
"cxLiterals": [],
|
|
1564
|
+
"internalComponents": [
|
|
1565
|
+
"IconSlot",
|
|
1566
|
+
"HStack"
|
|
1567
|
+
],
|
|
1568
|
+
"internalComponentProps": {
|
|
1569
|
+
"HStack": {
|
|
1570
|
+
"gap": [
|
|
1571
|
+
"1"
|
|
1572
|
+
],
|
|
1573
|
+
"alignItems": [
|
|
1574
|
+
"center"
|
|
1575
|
+
]
|
|
1576
|
+
}
|
|
1577
|
+
},
|
|
1578
|
+
"propToVariantKeys": {
|
|
1579
|
+
"size": [
|
|
1580
|
+
"inputSizeHelperText",
|
|
1581
|
+
"inputSizeHelperIcon"
|
|
1582
|
+
],
|
|
1583
|
+
"startIcon": [
|
|
1584
|
+
"icon"
|
|
1585
|
+
],
|
|
1586
|
+
"endIcon": [
|
|
1587
|
+
"icon"
|
|
1588
|
+
]
|
|
1589
|
+
},
|
|
1590
|
+
"runtimeConfigDefaultProps": {},
|
|
1591
|
+
"runtimeConfigGetStyles": {},
|
|
1592
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1593
|
+
"motionVarPrefixes": []
|
|
1594
|
+
},
|
|
1412
1595
|
"Chip": {
|
|
1413
1596
|
"name": "Chip",
|
|
1414
1597
|
"defaultProps": {},
|
|
@@ -1608,189 +1791,6 @@
|
|
|
1608
1791
|
"runtimeConfigInternalComponentProps": {},
|
|
1609
1792
|
"motionVarPrefixes": []
|
|
1610
1793
|
},
|
|
1611
|
-
"Input": {
|
|
1612
|
-
"name": "Input",
|
|
1613
|
-
"defaultProps": {
|
|
1614
|
-
"type": "text",
|
|
1615
|
-
"size": "md",
|
|
1616
|
-
"width": "full"
|
|
1617
|
-
},
|
|
1618
|
-
"getStylesLiterals": {
|
|
1619
|
-
"inputVariantRoot": "default",
|
|
1620
|
-
"inputVariantValueRoot": "empty",
|
|
1621
|
-
"inputVariantValueRoot:1": "filled",
|
|
1622
|
-
"inputVariantInputWrapper": "default",
|
|
1623
|
-
"inputVariantValueInputWrapper": "empty",
|
|
1624
|
-
"inputVariantValueInputWrapper:1": "filled",
|
|
1625
|
-
"inputVariantInput": "default",
|
|
1626
|
-
"inputVariantValueInput": "empty",
|
|
1627
|
-
"inputVariantValueInput:1": "filled",
|
|
1628
|
-
"inputVariantInputPlaceholder": "default",
|
|
1629
|
-
"inputVariantValueInputPlaceholder": "empty",
|
|
1630
|
-
"inputVariantValueInputPlaceholder:1": "filled",
|
|
1631
|
-
"inputVariantLabel": "default",
|
|
1632
|
-
"inputVariantValueLabel": "empty",
|
|
1633
|
-
"inputVariantValueLabel:1": "filled",
|
|
1634
|
-
"inputVariantLabelRequired": "default",
|
|
1635
|
-
"inputVariantValueLabelRequired": "empty",
|
|
1636
|
-
"inputVariantValueLabelRequired:1": "filled",
|
|
1637
|
-
"inputVariantStartIcon": "default",
|
|
1638
|
-
"inputVariantValueStartIcon": "empty",
|
|
1639
|
-
"inputVariantValueStartIcon:1": "filled",
|
|
1640
|
-
"inputVariantEndIcon": "default",
|
|
1641
|
-
"inputVariantValueEndIcon": "empty",
|
|
1642
|
-
"inputVariantValueEndIcon:1": "filled"
|
|
1643
|
-
},
|
|
1644
|
-
"cxLiterals": [
|
|
1645
|
-
"opacity-50",
|
|
1646
|
-
"min-w-[200px]",
|
|
1647
|
-
"grow",
|
|
1648
|
-
"uds-hit-target",
|
|
1649
|
-
"bg-clip-text",
|
|
1650
|
-
"focus:outline-none",
|
|
1651
|
-
"cursor-text",
|
|
1652
|
-
"cursor-not-allowed"
|
|
1653
|
-
],
|
|
1654
|
-
"internalComponents": [
|
|
1655
|
-
"IconSlot",
|
|
1656
|
-
"StartIcon",
|
|
1657
|
-
"EndIcon",
|
|
1658
|
-
"HelpTextContent",
|
|
1659
|
-
"Box",
|
|
1660
|
-
"InputHelpTextInternal",
|
|
1661
|
-
"VStack",
|
|
1662
|
-
"HStack",
|
|
1663
|
-
"AnimateHeightChange"
|
|
1664
|
-
],
|
|
1665
|
-
"internalComponentProps": {
|
|
1666
|
-
"HelpTextContent": {
|
|
1667
|
-
"spacingTop": [
|
|
1668
|
-
"2"
|
|
1669
|
-
]
|
|
1670
|
-
},
|
|
1671
|
-
"Box": {
|
|
1672
|
-
"spacingBottom": [
|
|
1673
|
-
"2"
|
|
1674
|
-
],
|
|
1675
|
-
"columnGap": [
|
|
1676
|
-
"0.5"
|
|
1677
|
-
],
|
|
1678
|
-
"alignItems": [
|
|
1679
|
-
"flex-end",
|
|
1680
|
-
"center"
|
|
1681
|
-
],
|
|
1682
|
-
"position": [
|
|
1683
|
-
"relative"
|
|
1684
|
-
]
|
|
1685
|
-
},
|
|
1686
|
-
"HStack": {
|
|
1687
|
-
"alignItems": [
|
|
1688
|
-
"center"
|
|
1689
|
-
],
|
|
1690
|
-
"gap": [
|
|
1691
|
-
"1"
|
|
1692
|
-
]
|
|
1693
|
-
}
|
|
1694
|
-
},
|
|
1695
|
-
"propToVariantKeys": {
|
|
1696
|
-
"size": [
|
|
1697
|
-
"inputSizeRoot",
|
|
1698
|
-
"inputSizeInputWrapper",
|
|
1699
|
-
"inputSizeInput",
|
|
1700
|
-
"inputSizeLabel",
|
|
1701
|
-
"inputSizeStartIcon",
|
|
1702
|
-
"inputSizeEndIcon"
|
|
1703
|
-
],
|
|
1704
|
-
"startIcon": [
|
|
1705
|
-
"icon"
|
|
1706
|
-
],
|
|
1707
|
-
"endIcon": [
|
|
1708
|
-
"icon"
|
|
1709
|
-
],
|
|
1710
|
-
"helperTextIcon": [
|
|
1711
|
-
"startIcon"
|
|
1712
|
-
]
|
|
1713
|
-
},
|
|
1714
|
-
"runtimeConfigDefaultProps": {},
|
|
1715
|
-
"runtimeConfigGetStyles": {},
|
|
1716
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1717
|
-
"motionVarPrefixes": []
|
|
1718
|
-
},
|
|
1719
|
-
"InputHelpText": {
|
|
1720
|
-
"name": "InputHelpText",
|
|
1721
|
-
"defaultProps": {
|
|
1722
|
-
"size": "md"
|
|
1723
|
-
},
|
|
1724
|
-
"getStylesLiterals": {
|
|
1725
|
-
"inputVariantRoot": "default",
|
|
1726
|
-
"inputVariantValueRoot": "empty",
|
|
1727
|
-
"inputVariantValueRoot:1": "filled"
|
|
1728
|
-
},
|
|
1729
|
-
"cxLiterals": [],
|
|
1730
|
-
"internalComponents": [
|
|
1731
|
-
"InputHelpTextInternal",
|
|
1732
|
-
"Box"
|
|
1733
|
-
],
|
|
1734
|
-
"internalComponentProps": {
|
|
1735
|
-
"Box": {
|
|
1736
|
-
"spacingTop": [
|
|
1737
|
-
"2"
|
|
1738
|
-
]
|
|
1739
|
-
}
|
|
1740
|
-
},
|
|
1741
|
-
"propToVariantKeys": {
|
|
1742
|
-
"size": [
|
|
1743
|
-
"inputSizeRoot"
|
|
1744
|
-
]
|
|
1745
|
-
},
|
|
1746
|
-
"runtimeConfigDefaultProps": {},
|
|
1747
|
-
"runtimeConfigGetStyles": {},
|
|
1748
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1749
|
-
"motionVarPrefixes": []
|
|
1750
|
-
},
|
|
1751
|
-
"InputHelpTextInternal": {
|
|
1752
|
-
"name": "InputHelpTextInternal",
|
|
1753
|
-
"defaultProps": {},
|
|
1754
|
-
"getStylesLiterals": {
|
|
1755
|
-
"inputVariantHelperText": "default",
|
|
1756
|
-
"inputVariantValueHelperText": "empty",
|
|
1757
|
-
"inputVariantValueHelperText:1": "filled",
|
|
1758
|
-
"inputVariantHelperIcon": "default",
|
|
1759
|
-
"inputVariantValueHelperIcon": "empty",
|
|
1760
|
-
"inputVariantValueHelperIcon:1": "filled"
|
|
1761
|
-
},
|
|
1762
|
-
"cxLiterals": [],
|
|
1763
|
-
"internalComponents": [
|
|
1764
|
-
"IconSlot",
|
|
1765
|
-
"HStack"
|
|
1766
|
-
],
|
|
1767
|
-
"internalComponentProps": {
|
|
1768
|
-
"HStack": {
|
|
1769
|
-
"gap": [
|
|
1770
|
-
"1"
|
|
1771
|
-
],
|
|
1772
|
-
"alignItems": [
|
|
1773
|
-
"center"
|
|
1774
|
-
]
|
|
1775
|
-
}
|
|
1776
|
-
},
|
|
1777
|
-
"propToVariantKeys": {
|
|
1778
|
-
"size": [
|
|
1779
|
-
"inputSizeHelperText",
|
|
1780
|
-
"inputSizeHelperIcon"
|
|
1781
|
-
],
|
|
1782
|
-
"startIcon": [
|
|
1783
|
-
"icon"
|
|
1784
|
-
],
|
|
1785
|
-
"endIcon": [
|
|
1786
|
-
"icon"
|
|
1787
|
-
]
|
|
1788
|
-
},
|
|
1789
|
-
"runtimeConfigDefaultProps": {},
|
|
1790
|
-
"runtimeConfigGetStyles": {},
|
|
1791
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1792
|
-
"motionVarPrefixes": []
|
|
1793
|
-
},
|
|
1794
1794
|
"Menu.Content": {
|
|
1795
1795
|
"name": "Menu.Content",
|
|
1796
1796
|
"defaultProps": {
|