@yahoo/uds 3.157.1 → 3.158.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/automated-config/dist/generated/autoVariants.cjs +26 -0
- package/dist/automated-config/dist/generated/autoVariants.d.cts +17 -0
- package/dist/automated-config/dist/generated/autoVariants.d.ts +17 -0
- package/dist/automated-config/dist/generated/autoVariants.js +26 -0
- package/dist/automated-config/dist/generated/generatedConfigs.cjs +3220 -545
- package/dist/automated-config/dist/generated/generatedConfigs.d.cts +335 -11
- package/dist/automated-config/dist/generated/generatedConfigs.d.ts +335 -11
- package/dist/automated-config/dist/generated/generatedConfigs.js +3218 -546
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.cjs +275 -44
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.cts +4 -1
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.ts +4 -1
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.js +275 -44
- package/dist/automated-config/dist/types/ComponentConfig.d.cts +3 -1
- package/dist/automated-config/dist/types/ComponentConfig.d.ts +3 -1
- package/dist/automated-config/dist/utils/buildConfigSchema.cjs +43 -35
- package/dist/automated-config/dist/utils/buildConfigSchema.d.cts +4 -1
- package/dist/automated-config/dist/utils/buildConfigSchema.d.ts +4 -1
- package/dist/automated-config/dist/utils/buildConfigSchema.js +44 -36
- package/dist/automated-config/dist/utils/componentStatePseudoStates.cjs +4 -0
- package/dist/automated-config/dist/utils/componentStatePseudoStates.js +4 -1
- package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.cjs +5 -2
- package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.js +6 -3
- package/dist/automated-config/dist/utils/index.cjs +21 -5
- package/dist/automated-config/dist/utils/index.d.cts +1 -0
- package/dist/automated-config/dist/utils/index.d.ts +1 -0
- package/dist/automated-config/dist/utils/index.js +22 -6
- package/dist/automated-config/dist/utils/pseudoStateSelectors.cjs +6 -3
- package/dist/automated-config/dist/utils/pseudoStateSelectors.d.cts +1 -1
- package/dist/automated-config/dist/utils/pseudoStateSelectors.d.ts +1 -1
- package/dist/automated-config/dist/utils/pseudoStateSelectors.js +6 -3
- package/dist/components/client/Input/Input.cjs +1 -1
- package/dist/components/client/Input/Input.js +1 -1
- package/dist/components/client/Menu/Menu.Item.cjs +1 -0
- package/dist/components/client/Menu/Menu.Item.js +1 -0
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.cts +1 -1
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.ts +1 -1
- package/dist/components/client/Select/Select.cjs +179 -0
- package/dist/components/client/Select/Select.d.cts +55 -0
- package/dist/components/client/Select/Select.d.ts +56 -0
- package/dist/components/client/Select/Select.js +176 -0
- package/dist/components/client/Select/SelectContent.cjs +75 -0
- package/dist/components/client/Select/SelectContent.d.cts +44 -0
- package/dist/components/client/Select/SelectContent.d.ts +45 -0
- package/dist/components/client/Select/SelectContent.js +73 -0
- package/dist/components/client/Select/SelectDivider.cjs +63 -0
- package/dist/components/client/Select/SelectDivider.d.cts +44 -0
- package/dist/components/client/Select/SelectDivider.d.ts +45 -0
- package/dist/components/client/Select/SelectDivider.js +61 -0
- package/dist/components/client/Select/SelectHelpText.cjs +51 -0
- package/dist/components/client/Select/SelectHelpText.d.cts +27 -0
- package/dist/components/client/Select/SelectHelpText.d.ts +28 -0
- package/dist/components/client/Select/SelectHelpText.js +48 -0
- package/dist/components/client/Select/SelectItem.cjs +172 -0
- package/dist/components/client/Select/SelectItem.d.cts +29 -0
- package/dist/components/client/Select/SelectItem.d.ts +30 -0
- package/dist/components/client/Select/SelectItem.js +170 -0
- package/dist/components/client/Select/SelectTrigger.cjs +138 -0
- package/dist/components/client/Select/SelectTrigger.d.cts +27 -0
- package/dist/components/client/Select/SelectTrigger.d.ts +28 -0
- package/dist/components/client/Select/SelectTrigger.js +136 -0
- package/dist/components/client/Select/SelectValue.cjs +28 -0
- package/dist/components/client/Select/SelectValue.d.cts +19 -0
- package/dist/components/client/Select/SelectValue.d.ts +20 -0
- package/dist/components/client/Select/SelectValue.js +26 -0
- package/dist/components/client/Select/index.cjs +11 -0
- package/dist/components/client/Select/index.d.cts +6 -0
- package/dist/components/client/Select/index.d.ts +7 -0
- package/dist/components/client/Select/index.js +7 -0
- package/dist/components/client/Select/selectContext.cjs +20 -0
- package/dist/components/client/Select/selectContext.d.cts +23 -0
- package/dist/components/client/Select/selectContext.d.ts +24 -0
- package/dist/components/client/Select/selectContext.js +16 -0
- package/dist/components/client/Select/selectFieldStyles.cjs +85 -0
- package/dist/components/client/Select/selectFieldStyles.d.cts +37 -0
- package/dist/components/client/Select/selectFieldStyles.d.ts +38 -0
- package/dist/components/client/Select/selectFieldStyles.js +75 -0
- package/dist/components/client/index.cjs +8 -0
- package/dist/components/client/index.d.cts +5 -1
- package/dist/components/client/index.d.ts +5 -1
- package/dist/components/client/index.js +5 -1
- package/dist/components/index.cjs +8 -0
- package/dist/components/index.d.cts +5 -1
- package/dist/components/index.d.ts +5 -1
- package/dist/components/index.js +5 -1
- package/dist/config/dist/index.cjs +380 -70
- package/dist/config/dist/index.js +380 -70
- package/dist/css/dist/css/utils.cjs +3 -0
- package/dist/css/dist/css/utils.js +3 -0
- package/dist/css/dist/packages/config/dist/index.cjs +380 -70
- package/dist/css/dist/packages/config/dist/index.js +380 -70
- package/dist/index.cjs +11 -0
- package/dist/index.d.cts +7 -3
- package/dist/index.d.ts +7 -3
- package/dist/index.js +6 -2
- package/dist/styles/styler.d.cts +17 -0
- package/dist/styles/styler.d.ts +17 -0
- package/dist/styles/variants.d.cts +54 -0
- package/dist/styles/variants.d.ts +54 -0
- package/dist/tailwind/utils/index.cjs +3 -0
- package/dist/tailwind/utils/index.d.cts +2 -1
- package/dist/tailwind/utils/index.d.ts +2 -1
- package/dist/tailwind/utils/index.js +2 -1
- package/dist/tailwind-internal/dist/base/addColorModeVars.cjs +1 -1
- package/dist/tailwind-internal/dist/base/addColorModeVars.js +1 -1
- package/dist/tailwind-internal/dist/base/addColorModeVarsV2.cjs +1 -1
- package/dist/tailwind-internal/dist/base/addColorModeVarsV2.js +1 -1
- package/dist/tailwind-internal/dist/components/getFocusRingStyles.cjs +74 -6
- package/dist/tailwind-internal/dist/components/getFocusRingStyles.d.cts +14 -0
- package/dist/tailwind-internal/dist/components/getFocusRingStyles.d.ts +14 -0
- package/dist/tailwind-internal/dist/components/getFocusRingStyles.js +74 -7
- package/dist/tailwind-internal/dist/components/getResponsiveTextStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/components/getResponsiveTextStyles.js +1 -1
- package/dist/tailwind-internal/dist/index.d.cts +1 -0
- package/dist/tailwind-internal/dist/index.d.ts +1 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/generated/generatedConfigs.cjs +3220 -545
- package/dist/tailwind-internal/dist/packages/automated-config/dist/generated/generatedConfigs.js +3218 -546
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/componentStatePseudoStates.cjs +4 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/componentStatePseudoStates.js +4 -1
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.cjs +21 -5
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.js +22 -6
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/pseudoStateSelectors.cjs +6 -3
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/pseudoStateSelectors.js +6 -3
- package/dist/tailwind-internal/dist/packages/config/dist/index.cjs +380 -70
- package/dist/tailwind-internal/dist/packages/config/dist/index.js +380 -70
- package/dist/tailwind-internal/dist/packages/css-tokens/dist/index.cjs +10 -10
- package/dist/tailwind-internal/dist/packages/css-tokens/dist/index.js +1 -1
- package/dist/tailwind-internal/dist/plugins/a11y.cjs +6 -2
- package/dist/tailwind-internal/dist/plugins/a11y.js +6 -2
- package/dist/tailwind-internal/dist/plugins/blurBgFallback.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/blurBgFallback.js +1 -1
- package/dist/tailwind-internal/dist/plugins/borderRadius.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/borderRadius.js +1 -1
- package/dist/tailwind-internal/dist/plugins/borderWidth.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/borderWidth.js +1 -1
- package/dist/tailwind-internal/dist/plugins/colors.cjs +2 -2
- package/dist/tailwind-internal/dist/plugins/colors.js +2 -2
- package/dist/tailwind-internal/dist/plugins/components.cjs +4 -1
- package/dist/tailwind-internal/dist/plugins/components.js +5 -2
- package/dist/tailwind-internal/dist/plugins/elevation.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/elevation.js +1 -1
- package/dist/tailwind-internal/dist/plugins/shadows.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/shadows.js +1 -1
- package/dist/tailwind-internal/dist/plugins/typography.cjs +2 -2
- package/dist/tailwind-internal/dist/plugins/typography.js +2 -2
- package/dist/tailwind-internal/dist/utils/getElevationStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getElevationStyles.js +1 -1
- package/dist/tailwind-internal/dist/utils/getFontStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getFontStyles.js +1 -1
- package/dist/tailwind-internal/dist/utils/getMotionStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getMotionStyles.js +1 -1
- package/dist/tailwind-internal/dist/utils/getShadowPresetValues.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getShadowPresetValues.js +1 -1
- package/dist/tailwind-internal/dist/utils/getShadowStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getShadowStyles.js +1 -1
- package/dist/tailwind-internal/dist/utils/parseTokens.cjs +2 -2
- package/dist/tailwind-internal/dist/utils/parseTokens.js +2 -2
- package/dist/tokens/automation/configs/index.cjs +3 -0
- package/dist/tokens/automation/configs/index.d.cts +2 -2
- package/dist/tokens/automation/configs/index.d.ts +2 -2
- package/dist/tokens/automation/configs/index.js +2 -2
- package/dist/tokens/automation/index.cjs +3 -0
- package/dist/tokens/automation/index.d.cts +2 -2
- package/dist/tokens/automation/index.d.ts +2 -2
- package/dist/tokens/automation/index.js +2 -2
- package/dist/tokens/index.cjs +3 -0
- package/dist/tokens/index.d.cts +3 -3
- package/dist/tokens/index.d.ts +3 -3
- package/dist/tokens/index.js +2 -2
- package/dist/tokens/types.d.cts +2 -2
- package/dist/tokens/types.d.ts +2 -2
- package/dist/types/dist/index.d.cts +36 -1
- package/dist/types/dist/index.d.ts +36 -1
- package/dist/uds/generated/componentData.cjs +407 -0
- package/dist/uds/generated/componentData.js +407 -0
- package/dist/uds/generated/migrationSchemaVersion.cjs +1 -1
- package/dist/uds/generated/migrationSchemaVersion.js +1 -1
- package/dist/uds/generated/tailwindPurge.cjs +1501 -315
- package/dist/uds/generated/tailwindPurge.js +1501 -315
- package/generated/componentData.json +496 -0
- package/generated/migrationSchemaVersion.ts +1 -1
- package/generated/tailwindPurge.ts +4 -4
- package/package.json +1 -1
|
@@ -1530,6 +1530,7 @@
|
|
|
1530
1530
|
"menuitemItemVariantRoot": "default",
|
|
1531
1531
|
"menuitemItemVariantActiveRoot": "on",
|
|
1532
1532
|
"menuitemItemVariantActiveRoot:1": "off",
|
|
1533
|
+
"menuitemSizeText": "default",
|
|
1533
1534
|
"menuitemItemVariantText": "default",
|
|
1534
1535
|
"menuitemItemVariantActiveText": "on",
|
|
1535
1536
|
"menuitemItemVariantActiveText:1": "off",
|
|
@@ -2256,6 +2257,499 @@
|
|
|
2256
2257
|
"runtimeConfigInternalComponentProps": {},
|
|
2257
2258
|
"motionVarPrefixes": []
|
|
2258
2259
|
},
|
|
2260
|
+
"Select": {
|
|
2261
|
+
"name": "Select",
|
|
2262
|
+
"defaultProps": {
|
|
2263
|
+
"size": "md",
|
|
2264
|
+
"width": "full",
|
|
2265
|
+
"defaultValue": ""
|
|
2266
|
+
},
|
|
2267
|
+
"getStylesLiterals": {
|
|
2268
|
+
"inputVariantRoot": "default",
|
|
2269
|
+
"inputVariantValueRoot": "empty",
|
|
2270
|
+
"inputVariantValueRoot:1": "filled",
|
|
2271
|
+
"inputVariantLabel": "default",
|
|
2272
|
+
"inputVariantValueLabel": "empty",
|
|
2273
|
+
"inputVariantValueLabel:1": "filled",
|
|
2274
|
+
"inputVariantLabelRequired": "default",
|
|
2275
|
+
"inputVariantValueLabelRequired": "empty",
|
|
2276
|
+
"inputVariantValueLabelRequired:1": "filled",
|
|
2277
|
+
"inputVariantInputWrapper": "default",
|
|
2278
|
+
"inputVariantValueInputWrapper": "empty",
|
|
2279
|
+
"inputVariantValueInputWrapper:1": "filled",
|
|
2280
|
+
"inputVariantInput": "default",
|
|
2281
|
+
"inputVariantValueInput": "empty",
|
|
2282
|
+
"inputVariantValueInput:1": "filled",
|
|
2283
|
+
"inputVariantInputPlaceholder": "default",
|
|
2284
|
+
"inputVariantValueInputPlaceholder": "empty",
|
|
2285
|
+
"inputVariantValueInputPlaceholder:1": "filled",
|
|
2286
|
+
"inputVariantStartIcon": "default",
|
|
2287
|
+
"inputVariantValueStartIcon": "empty",
|
|
2288
|
+
"inputVariantValueStartIcon:1": "filled",
|
|
2289
|
+
"inputVariantEndIcon": "default",
|
|
2290
|
+
"inputVariantValueEndIcon": "empty",
|
|
2291
|
+
"inputVariantValueEndIcon:1": "filled",
|
|
2292
|
+
"inputVariantHelperText": "default",
|
|
2293
|
+
"inputVariantValueHelperText": "empty",
|
|
2294
|
+
"inputVariantValueHelperText:1": "filled",
|
|
2295
|
+
"inputVariantHelperIcon": "default",
|
|
2296
|
+
"inputVariantValueHelperIcon": "empty",
|
|
2297
|
+
"inputVariantValueHelperIcon:1": "filled"
|
|
2298
|
+
},
|
|
2299
|
+
"cxLiterals": [
|
|
2300
|
+
"opacity-50",
|
|
2301
|
+
"flex",
|
|
2302
|
+
"w-full",
|
|
2303
|
+
"items-center",
|
|
2304
|
+
"min-w-[200px]",
|
|
2305
|
+
"uds-ring-shadow",
|
|
2306
|
+
"uds-ring-within",
|
|
2307
|
+
"uds-select-field-trigger",
|
|
2308
|
+
"grow",
|
|
2309
|
+
"bg-transparent",
|
|
2310
|
+
"bg-clip-text",
|
|
2311
|
+
"text-left",
|
|
2312
|
+
"focus-visible:outline-none",
|
|
2313
|
+
"cursor-not-allowed",
|
|
2314
|
+
"cursor-pointer",
|
|
2315
|
+
"text-muted"
|
|
2316
|
+
],
|
|
2317
|
+
"internalComponents": [
|
|
2318
|
+
"SelectTrigger",
|
|
2319
|
+
"SelectHelpText",
|
|
2320
|
+
"SelectFieldContext.Provider",
|
|
2321
|
+
"VStack",
|
|
2322
|
+
"Box",
|
|
2323
|
+
"SpringMotionConfig",
|
|
2324
|
+
"AriakitSelectProvider",
|
|
2325
|
+
"SelectRoot"
|
|
2326
|
+
],
|
|
2327
|
+
"internalComponentProps": {
|
|
2328
|
+
"Box": {
|
|
2329
|
+
"spacingBottom": [
|
|
2330
|
+
"2"
|
|
2331
|
+
],
|
|
2332
|
+
"columnGap": [
|
|
2333
|
+
"0.5"
|
|
2334
|
+
],
|
|
2335
|
+
"alignItems": [
|
|
2336
|
+
"flex-end"
|
|
2337
|
+
]
|
|
2338
|
+
},
|
|
2339
|
+
"SpringMotionConfig": {
|
|
2340
|
+
"reducedMotion": [
|
|
2341
|
+
"user"
|
|
2342
|
+
]
|
|
2343
|
+
}
|
|
2344
|
+
},
|
|
2345
|
+
"propToVariantKeys": {
|
|
2346
|
+
"size": [
|
|
2347
|
+
"inputSizeRoot",
|
|
2348
|
+
"inputSizeLabel",
|
|
2349
|
+
"inputSizeInputWrapperStatic",
|
|
2350
|
+
"inputSizeInputWrapperDynamic",
|
|
2351
|
+
"inputSizeInput",
|
|
2352
|
+
"inputSizeStartIcon",
|
|
2353
|
+
"inputSizeEndIcon",
|
|
2354
|
+
"inputSizeHelperText",
|
|
2355
|
+
"inputSizeHelperIcon"
|
|
2356
|
+
]
|
|
2357
|
+
},
|
|
2358
|
+
"runtimeConfigDefaultProps": {},
|
|
2359
|
+
"runtimeConfigGetStyles": {},
|
|
2360
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2361
|
+
"motionVarPrefixes": [
|
|
2362
|
+
"--uds-motion-subtle-3-",
|
|
2363
|
+
"--uds-motion-smooth-3-"
|
|
2364
|
+
]
|
|
2365
|
+
},
|
|
2366
|
+
"SelectContent": {
|
|
2367
|
+
"name": "SelectContent",
|
|
2368
|
+
"defaultProps": {
|
|
2369
|
+
"size": "default",
|
|
2370
|
+
"variant": "default"
|
|
2371
|
+
},
|
|
2372
|
+
"getStylesLiterals": {},
|
|
2373
|
+
"cxLiterals": [
|
|
2374
|
+
"z-50",
|
|
2375
|
+
"focus:outline-none"
|
|
2376
|
+
],
|
|
2377
|
+
"internalComponents": [
|
|
2378
|
+
"SelectPopover",
|
|
2379
|
+
"VStack"
|
|
2380
|
+
],
|
|
2381
|
+
"internalComponentProps": {
|
|
2382
|
+
"VStack": {
|
|
2383
|
+
"elevation": [
|
|
2384
|
+
"3"
|
|
2385
|
+
],
|
|
2386
|
+
"overflow": [
|
|
2387
|
+
"auto"
|
|
2388
|
+
],
|
|
2389
|
+
"borderRadius": [
|
|
2390
|
+
"md"
|
|
2391
|
+
]
|
|
2392
|
+
}
|
|
2393
|
+
},
|
|
2394
|
+
"propToVariantKeys": {
|
|
2395
|
+
"size": [
|
|
2396
|
+
"selectcontentSizeRoot"
|
|
2397
|
+
],
|
|
2398
|
+
"variant": [
|
|
2399
|
+
"selectcontentVariantRoot"
|
|
2400
|
+
]
|
|
2401
|
+
},
|
|
2402
|
+
"runtimeConfigDefaultProps": {},
|
|
2403
|
+
"runtimeConfigGetStyles": {},
|
|
2404
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2405
|
+
"motionVarPrefixes": []
|
|
2406
|
+
},
|
|
2407
|
+
"SelectHelpText": {
|
|
2408
|
+
"name": "SelectHelpText",
|
|
2409
|
+
"defaultProps": {},
|
|
2410
|
+
"getStylesLiterals": {
|
|
2411
|
+
"inputVariantRoot": "default",
|
|
2412
|
+
"inputVariantValueRoot": "empty",
|
|
2413
|
+
"inputVariantValueRoot:1": "filled",
|
|
2414
|
+
"inputVariantLabel": "default",
|
|
2415
|
+
"inputVariantValueLabel": "empty",
|
|
2416
|
+
"inputVariantValueLabel:1": "filled",
|
|
2417
|
+
"inputVariantLabelRequired": "default",
|
|
2418
|
+
"inputVariantValueLabelRequired": "empty",
|
|
2419
|
+
"inputVariantValueLabelRequired:1": "filled",
|
|
2420
|
+
"inputVariantInputWrapper": "default",
|
|
2421
|
+
"inputVariantValueInputWrapper": "empty",
|
|
2422
|
+
"inputVariantValueInputWrapper:1": "filled",
|
|
2423
|
+
"inputVariantInput": "default",
|
|
2424
|
+
"inputVariantValueInput": "empty",
|
|
2425
|
+
"inputVariantValueInput:1": "filled",
|
|
2426
|
+
"inputVariantInputPlaceholder": "default",
|
|
2427
|
+
"inputVariantValueInputPlaceholder": "empty",
|
|
2428
|
+
"inputVariantValueInputPlaceholder:1": "filled",
|
|
2429
|
+
"inputVariantStartIcon": "default",
|
|
2430
|
+
"inputVariantValueStartIcon": "empty",
|
|
2431
|
+
"inputVariantValueStartIcon:1": "filled",
|
|
2432
|
+
"inputVariantEndIcon": "default",
|
|
2433
|
+
"inputVariantValueEndIcon": "empty",
|
|
2434
|
+
"inputVariantValueEndIcon:1": "filled",
|
|
2435
|
+
"inputVariantHelperText": "default",
|
|
2436
|
+
"inputVariantValueHelperText": "empty",
|
|
2437
|
+
"inputVariantValueHelperText:1": "filled",
|
|
2438
|
+
"inputVariantHelperIcon": "default",
|
|
2439
|
+
"inputVariantValueHelperIcon": "empty",
|
|
2440
|
+
"inputVariantValueHelperIcon:1": "filled"
|
|
2441
|
+
},
|
|
2442
|
+
"cxLiterals": [
|
|
2443
|
+
"opacity-50",
|
|
2444
|
+
"flex",
|
|
2445
|
+
"w-full",
|
|
2446
|
+
"items-center",
|
|
2447
|
+
"min-w-[200px]",
|
|
2448
|
+
"uds-ring-shadow",
|
|
2449
|
+
"uds-ring-within",
|
|
2450
|
+
"uds-select-field-trigger",
|
|
2451
|
+
"grow",
|
|
2452
|
+
"bg-transparent",
|
|
2453
|
+
"bg-clip-text",
|
|
2454
|
+
"text-left",
|
|
2455
|
+
"focus-visible:outline-none",
|
|
2456
|
+
"cursor-not-allowed",
|
|
2457
|
+
"cursor-pointer",
|
|
2458
|
+
"text-muted"
|
|
2459
|
+
],
|
|
2460
|
+
"internalComponents": [
|
|
2461
|
+
"IconSlot",
|
|
2462
|
+
"AnimateHeightChange",
|
|
2463
|
+
"HStack"
|
|
2464
|
+
],
|
|
2465
|
+
"internalComponentProps": {
|
|
2466
|
+
"AnimateHeightChange": {
|
|
2467
|
+
"layoutVariant": [
|
|
2468
|
+
"bouncy"
|
|
2469
|
+
]
|
|
2470
|
+
},
|
|
2471
|
+
"HStack": {
|
|
2472
|
+
"gap": [
|
|
2473
|
+
"1"
|
|
2474
|
+
],
|
|
2475
|
+
"alignItems": [
|
|
2476
|
+
"center"
|
|
2477
|
+
],
|
|
2478
|
+
"spacingTop": [
|
|
2479
|
+
"2"
|
|
2480
|
+
]
|
|
2481
|
+
}
|
|
2482
|
+
},
|
|
2483
|
+
"propToVariantKeys": {
|
|
2484
|
+
"size": [
|
|
2485
|
+
"inputSizeRoot",
|
|
2486
|
+
"inputSizeLabel",
|
|
2487
|
+
"inputSizeInputWrapperStatic",
|
|
2488
|
+
"inputSizeInputWrapperDynamic",
|
|
2489
|
+
"inputSizeInput",
|
|
2490
|
+
"inputSizeStartIcon",
|
|
2491
|
+
"inputSizeEndIcon",
|
|
2492
|
+
"inputSizeHelperText",
|
|
2493
|
+
"inputSizeHelperIcon"
|
|
2494
|
+
],
|
|
2495
|
+
"helperTextIcon": [
|
|
2496
|
+
"icon"
|
|
2497
|
+
]
|
|
2498
|
+
},
|
|
2499
|
+
"runtimeConfigDefaultProps": {},
|
|
2500
|
+
"runtimeConfigGetStyles": {},
|
|
2501
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2502
|
+
"motionVarPrefixes": []
|
|
2503
|
+
},
|
|
2504
|
+
"SelectValue": {
|
|
2505
|
+
"name": "SelectValue",
|
|
2506
|
+
"defaultProps": {},
|
|
2507
|
+
"getStylesLiterals": {},
|
|
2508
|
+
"cxLiterals": [],
|
|
2509
|
+
"internalComponents": [
|
|
2510
|
+
"AriakitSelectValue"
|
|
2511
|
+
],
|
|
2512
|
+
"internalComponentProps": {},
|
|
2513
|
+
"propToVariantKeys": {},
|
|
2514
|
+
"runtimeConfigDefaultProps": {},
|
|
2515
|
+
"runtimeConfigGetStyles": {},
|
|
2516
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2517
|
+
"motionVarPrefixes": []
|
|
2518
|
+
},
|
|
2519
|
+
"SelectTrigger": {
|
|
2520
|
+
"name": "SelectTrigger",
|
|
2521
|
+
"defaultProps": {},
|
|
2522
|
+
"getStylesLiterals": {
|
|
2523
|
+
"inputVariantRoot": "default",
|
|
2524
|
+
"inputVariantValueRoot": "empty",
|
|
2525
|
+
"inputVariantValueRoot:1": "filled",
|
|
2526
|
+
"inputVariantLabel": "default",
|
|
2527
|
+
"inputVariantValueLabel": "empty",
|
|
2528
|
+
"inputVariantValueLabel:1": "filled",
|
|
2529
|
+
"inputVariantLabelRequired": "default",
|
|
2530
|
+
"inputVariantValueLabelRequired": "empty",
|
|
2531
|
+
"inputVariantValueLabelRequired:1": "filled",
|
|
2532
|
+
"inputVariantInputWrapper": "default",
|
|
2533
|
+
"inputVariantValueInputWrapper": "empty",
|
|
2534
|
+
"inputVariantValueInputWrapper:1": "filled",
|
|
2535
|
+
"inputVariantInput": "default",
|
|
2536
|
+
"inputVariantValueInput": "empty",
|
|
2537
|
+
"inputVariantValueInput:1": "filled",
|
|
2538
|
+
"inputVariantInputPlaceholder": "default",
|
|
2539
|
+
"inputVariantValueInputPlaceholder": "empty",
|
|
2540
|
+
"inputVariantValueInputPlaceholder:1": "filled",
|
|
2541
|
+
"inputVariantStartIcon": "default",
|
|
2542
|
+
"inputVariantValueStartIcon": "empty",
|
|
2543
|
+
"inputVariantValueStartIcon:1": "filled",
|
|
2544
|
+
"inputVariantEndIcon": "default",
|
|
2545
|
+
"inputVariantValueEndIcon": "empty",
|
|
2546
|
+
"inputVariantValueEndIcon:1": "filled",
|
|
2547
|
+
"inputVariantHelperText": "default",
|
|
2548
|
+
"inputVariantValueHelperText": "empty",
|
|
2549
|
+
"inputVariantValueHelperText:1": "filled",
|
|
2550
|
+
"inputVariantHelperIcon": "default",
|
|
2551
|
+
"inputVariantValueHelperIcon": "empty",
|
|
2552
|
+
"inputVariantValueHelperIcon:1": "filled"
|
|
2553
|
+
},
|
|
2554
|
+
"cxLiterals": [
|
|
2555
|
+
"flex",
|
|
2556
|
+
"w-full",
|
|
2557
|
+
"min-w-0",
|
|
2558
|
+
"items-center",
|
|
2559
|
+
"border-0",
|
|
2560
|
+
"bg-transparent",
|
|
2561
|
+
"rounded-[inherit]",
|
|
2562
|
+
"outline-none",
|
|
2563
|
+
"shadow-none",
|
|
2564
|
+
"uds-hit-target",
|
|
2565
|
+
"cursor-not-allowed",
|
|
2566
|
+
"cursor-pointer",
|
|
2567
|
+
"self-stretch",
|
|
2568
|
+
"truncate",
|
|
2569
|
+
"text-left",
|
|
2570
|
+
"opacity-50",
|
|
2571
|
+
"min-w-[200px]",
|
|
2572
|
+
"uds-ring-shadow",
|
|
2573
|
+
"uds-ring-within",
|
|
2574
|
+
"uds-select-field-trigger",
|
|
2575
|
+
"grow",
|
|
2576
|
+
"bg-clip-text",
|
|
2577
|
+
"focus-visible:outline-none",
|
|
2578
|
+
"text-muted"
|
|
2579
|
+
],
|
|
2580
|
+
"internalComponents": [
|
|
2581
|
+
"IconSlot",
|
|
2582
|
+
"StartIcon",
|
|
2583
|
+
"SelectValue",
|
|
2584
|
+
"EndIcon",
|
|
2585
|
+
"Box",
|
|
2586
|
+
"AriakitSelect",
|
|
2587
|
+
"HStack"
|
|
2588
|
+
],
|
|
2589
|
+
"internalComponentProps": {
|
|
2590
|
+
"Box": {
|
|
2591
|
+
"position": [
|
|
2592
|
+
"relative"
|
|
2593
|
+
],
|
|
2594
|
+
"display": [
|
|
2595
|
+
"flex"
|
|
2596
|
+
],
|
|
2597
|
+
"alignItems": [
|
|
2598
|
+
"center"
|
|
2599
|
+
],
|
|
2600
|
+
"width": [
|
|
2601
|
+
"full"
|
|
2602
|
+
]
|
|
2603
|
+
},
|
|
2604
|
+
"HStack": {
|
|
2605
|
+
"alignItems": [
|
|
2606
|
+
"center"
|
|
2607
|
+
],
|
|
2608
|
+
"gap": [
|
|
2609
|
+
"1"
|
|
2610
|
+
],
|
|
2611
|
+
"className": [
|
|
2612
|
+
"shrink-0"
|
|
2613
|
+
]
|
|
2614
|
+
}
|
|
2615
|
+
},
|
|
2616
|
+
"propToVariantKeys": {
|
|
2617
|
+
"size": [
|
|
2618
|
+
"inputSizeRoot",
|
|
2619
|
+
"inputSizeLabel",
|
|
2620
|
+
"inputSizeInputWrapperStatic",
|
|
2621
|
+
"inputSizeInputWrapperDynamic",
|
|
2622
|
+
"inputSizeInput",
|
|
2623
|
+
"inputSizeStartIcon",
|
|
2624
|
+
"inputSizeEndIcon",
|
|
2625
|
+
"inputSizeHelperText",
|
|
2626
|
+
"inputSizeHelperIcon"
|
|
2627
|
+
],
|
|
2628
|
+
"startIcon": [
|
|
2629
|
+
"icon"
|
|
2630
|
+
],
|
|
2631
|
+
"placeholder": [
|
|
2632
|
+
"fallback"
|
|
2633
|
+
],
|
|
2634
|
+
"endIcon": [
|
|
2635
|
+
"icon"
|
|
2636
|
+
]
|
|
2637
|
+
},
|
|
2638
|
+
"runtimeConfigDefaultProps": {},
|
|
2639
|
+
"runtimeConfigGetStyles": {},
|
|
2640
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2641
|
+
"motionVarPrefixes": []
|
|
2642
|
+
},
|
|
2643
|
+
"SelectItem": {
|
|
2644
|
+
"name": "SelectItem",
|
|
2645
|
+
"defaultProps": {},
|
|
2646
|
+
"getStylesLiterals": {
|
|
2647
|
+
"selectitemItemVariantRoot": "default",
|
|
2648
|
+
"selectitemItemVariantActiveRoot": "on",
|
|
2649
|
+
"selectitemItemVariantActiveRoot:1": "off",
|
|
2650
|
+
"selectitemSizeText": "default",
|
|
2651
|
+
"selectitemItemVariantText": "default",
|
|
2652
|
+
"selectitemItemVariantActiveText": "on",
|
|
2653
|
+
"selectitemItemVariantActiveText:1": "off",
|
|
2654
|
+
"selectitemItemVariantIcon": "default",
|
|
2655
|
+
"selectitemItemVariantActiveIcon": "on",
|
|
2656
|
+
"selectitemItemVariantActiveIcon:1": "off",
|
|
2657
|
+
"textAlign": "start",
|
|
2658
|
+
"selectitemSizeRoot": "default",
|
|
2659
|
+
"flexDirection": "row",
|
|
2660
|
+
"spacing": "0",
|
|
2661
|
+
"spacingHorizontal": "4",
|
|
2662
|
+
"spacingVertical": "3.5",
|
|
2663
|
+
"columnGap": "2",
|
|
2664
|
+
"alignItems": "center",
|
|
2665
|
+
"justifyContent": "space-between",
|
|
2666
|
+
"width": "full",
|
|
2667
|
+
"selectitemSizeStartIcon": "default",
|
|
2668
|
+
"selectitemSizeEndIcon": "default"
|
|
2669
|
+
},
|
|
2670
|
+
"cxLiterals": [
|
|
2671
|
+
"uds-select-item",
|
|
2672
|
+
"flex",
|
|
2673
|
+
"cursor-pointer",
|
|
2674
|
+
"outline-none",
|
|
2675
|
+
"data-[active-item]:z-10",
|
|
2676
|
+
"uds-ring",
|
|
2677
|
+
"!-outline-offset-2",
|
|
2678
|
+
"duration-20",
|
|
2679
|
+
"transition-[font-variation-settings]",
|
|
2680
|
+
"ease-in-out",
|
|
2681
|
+
"z-0",
|
|
2682
|
+
"opacity-50",
|
|
2683
|
+
"cursor-not-allowed",
|
|
2684
|
+
"truncate",
|
|
2685
|
+
"uds-start-icon",
|
|
2686
|
+
"inline-flex",
|
|
2687
|
+
"shrink-0",
|
|
2688
|
+
"items-center",
|
|
2689
|
+
"uds-end-icon"
|
|
2690
|
+
],
|
|
2691
|
+
"internalComponents": [
|
|
2692
|
+
"IconSlot",
|
|
2693
|
+
"AriakitSelectItem",
|
|
2694
|
+
"HStack",
|
|
2695
|
+
"AnimatePresence"
|
|
2696
|
+
],
|
|
2697
|
+
"internalComponentProps": {
|
|
2698
|
+
"HStack": {
|
|
2699
|
+
"gap": [
|
|
2700
|
+
"2"
|
|
2701
|
+
],
|
|
2702
|
+
"alignItems": [
|
|
2703
|
+
"center"
|
|
2704
|
+
],
|
|
2705
|
+
"width": [
|
|
2706
|
+
"full"
|
|
2707
|
+
]
|
|
2708
|
+
},
|
|
2709
|
+
"AnimatePresence": {
|
|
2710
|
+
"mode": [
|
|
2711
|
+
"popLayout"
|
|
2712
|
+
]
|
|
2713
|
+
}
|
|
2714
|
+
},
|
|
2715
|
+
"propToVariantKeys": {
|
|
2716
|
+
"startIcon": [
|
|
2717
|
+
"icon"
|
|
2718
|
+
]
|
|
2719
|
+
},
|
|
2720
|
+
"runtimeConfigDefaultProps": {},
|
|
2721
|
+
"runtimeConfigGetStyles": {},
|
|
2722
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2723
|
+
"motionVarPrefixes": []
|
|
2724
|
+
},
|
|
2725
|
+
"SelectDivider": {
|
|
2726
|
+
"name": "SelectDivider",
|
|
2727
|
+
"defaultProps": {
|
|
2728
|
+
"contentPosition": "start",
|
|
2729
|
+
"gap": "4"
|
|
2730
|
+
},
|
|
2731
|
+
"getStylesLiterals": {
|
|
2732
|
+
"selectitemDividerVariantRoot": "default",
|
|
2733
|
+
"selectitemDividerVariantText": "default",
|
|
2734
|
+
"selectitemDividerVariantLine": "default"
|
|
2735
|
+
},
|
|
2736
|
+
"cxLiterals": [],
|
|
2737
|
+
"internalComponents": [
|
|
2738
|
+
"Divider"
|
|
2739
|
+
],
|
|
2740
|
+
"internalComponentProps": {
|
|
2741
|
+
"Divider": {
|
|
2742
|
+
"variant": [
|
|
2743
|
+
"inherit"
|
|
2744
|
+
]
|
|
2745
|
+
}
|
|
2746
|
+
},
|
|
2747
|
+
"propToVariantKeys": {},
|
|
2748
|
+
"runtimeConfigDefaultProps": {},
|
|
2749
|
+
"runtimeConfigGetStyles": {},
|
|
2750
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2751
|
+
"motionVarPrefixes": []
|
|
2752
|
+
},
|
|
2259
2753
|
"UDSConfigProvider": {
|
|
2260
2754
|
"name": "UDSConfigProvider",
|
|
2261
2755
|
"defaultProps": {},
|
|
@@ -3236,6 +3730,8 @@
|
|
|
3236
3730
|
"cxLiterals": [
|
|
3237
3731
|
"opacity-50",
|
|
3238
3732
|
"min-w-[200px]",
|
|
3733
|
+
"uds-ring-shadow",
|
|
3734
|
+
"uds-ring-within",
|
|
3239
3735
|
"grow",
|
|
3240
3736
|
"uds-hit-target",
|
|
3241
3737
|
"bg-transparent",
|
|
@@ -4,4 +4,4 @@
|
|
|
4
4
|
// was produced. The CLI sends this to the configurator's
|
|
5
5
|
// /api/config/for-package-version endpoint so the server applies the precise
|
|
6
6
|
// down-migration chain rather than relying on the legacy npm-version map.
|
|
7
|
-
export const MIGRATION_SCHEMA_VERSION = 'v0.
|
|
7
|
+
export const MIGRATION_SCHEMA_VERSION = 'v0.100.0' as const;
|