@yahoo/uds 3.100.0 → 3.101.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.
Files changed (156) hide show
  1. package/dist/automated-config/dist/generated/autoVariants.cjs +11 -1
  2. package/dist/automated-config/dist/generated/autoVariants.d.cts +10 -0
  3. package/dist/automated-config/dist/generated/autoVariants.d.ts +10 -0
  4. package/dist/automated-config/dist/generated/autoVariants.js +11 -1
  5. package/dist/automated-config/dist/generated/generatedConfigs.cjs +1695 -1
  6. package/dist/automated-config/dist/generated/generatedConfigs.d.cts +419 -189
  7. package/dist/automated-config/dist/generated/generatedConfigs.d.ts +419 -189
  8. package/dist/automated-config/dist/generated/generatedConfigs.js +1694 -1
  9. package/dist/automated-config/dist/generated/universalTokensConfigAuto.cjs +99 -0
  10. package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.cts +2 -1
  11. package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.ts +2 -1
  12. package/dist/automated-config/dist/generated/universalTokensConfigAuto.js +99 -0
  13. package/dist/automated-config/dist/properties.cjs +152 -89
  14. package/dist/automated-config/dist/properties.d.cts +25 -4
  15. package/dist/automated-config/dist/properties.d.ts +25 -4
  16. package/dist/automated-config/dist/properties.js +153 -90
  17. package/dist/automated-config/dist/utils/buildConfigSchema.cjs +5 -1
  18. package/dist/automated-config/dist/utils/buildConfigSchema.d.cts +2 -1
  19. package/dist/automated-config/dist/utils/buildConfigSchema.d.ts +2 -1
  20. package/dist/automated-config/dist/utils/buildConfigSchema.js +5 -1
  21. package/dist/automated-config/dist/utils/getConfigVariantProperties.d.cts +2 -2
  22. package/dist/automated-config/dist/utils/getConfigVariantProperties.d.ts +2 -2
  23. package/dist/automated-config/dist/utils/index.cjs +4 -4
  24. package/dist/automated-config/dist/utils/index.d.cts +6 -1
  25. package/dist/automated-config/dist/utils/index.d.ts +6 -1
  26. package/dist/automated-config/dist/utils/index.js +4 -4
  27. package/dist/cli/commands/sync.cjs +5 -1
  28. package/dist/cli/commands/sync.js +5 -1
  29. package/dist/components/client/Button.js +2 -2
  30. package/dist/components/client/Toast/Toast.cjs +1 -1
  31. package/dist/components/client/Toast/Toast.d.cts +1 -1
  32. package/dist/components/client/Toast/Toast.d.ts +1 -1
  33. package/dist/components/client/Toast/Toast.js +1 -1
  34. package/dist/components/client/Tooltip/Tooltip.cjs +65 -0
  35. package/dist/components/client/Tooltip/Tooltip.d.cts +45 -0
  36. package/dist/components/client/Tooltip/Tooltip.d.ts +45 -0
  37. package/dist/components/client/Tooltip/Tooltip.js +63 -0
  38. package/dist/components/client/Tooltip/TooltipContent.cjs +188 -0
  39. package/dist/components/client/Tooltip/TooltipContent.d.cts +8 -0
  40. package/dist/components/client/Tooltip/TooltipContent.d.ts +8 -0
  41. package/dist/components/client/Tooltip/TooltipContent.js +186 -0
  42. package/dist/components/client/Tooltip/TooltipTrigger.cjs +20 -0
  43. package/dist/components/client/Tooltip/TooltipTrigger.d.cts +14 -0
  44. package/dist/components/client/Tooltip/TooltipTrigger.d.ts +14 -0
  45. package/dist/components/client/Tooltip/TooltipTrigger.js +18 -0
  46. package/dist/components/client/Tooltip/UDSTooltipConfigProvider.cjs +40 -0
  47. package/dist/components/client/Tooltip/UDSTooltipConfigProvider.d.cts +28 -0
  48. package/dist/components/client/Tooltip/UDSTooltipConfigProvider.d.ts +28 -0
  49. package/dist/components/client/Tooltip/UDSTooltipConfigProvider.js +37 -0
  50. package/dist/components/client/Tooltip/index.cjs +12 -0
  51. package/dist/components/client/Tooltip/index.d.cts +7 -0
  52. package/dist/components/client/Tooltip/index.d.ts +7 -0
  53. package/dist/components/client/Tooltip/index.js +8 -0
  54. package/dist/components/client/Tooltip/tooltipContext.cjs +12 -0
  55. package/dist/components/client/Tooltip/tooltipContext.d.cts +12 -0
  56. package/dist/components/client/Tooltip/tooltipContext.d.ts +12 -0
  57. package/dist/components/client/Tooltip/tooltipContext.js +10 -0
  58. package/dist/components/client/Tooltip/useTooltipContent.cjs +186 -0
  59. package/dist/components/client/Tooltip/useTooltipContent.d.cts +66 -0
  60. package/dist/components/client/Tooltip/useTooltipContent.d.ts +66 -0
  61. package/dist/components/client/Tooltip/useTooltipContent.js +184 -0
  62. package/dist/components/client/Tooltip/util.cjs +248 -0
  63. package/dist/components/client/Tooltip/util.d.cts +118 -0
  64. package/dist/components/client/Tooltip/util.d.ts +118 -0
  65. package/dist/components/client/Tooltip/util.js +240 -0
  66. package/dist/components/client/index.cjs +8 -0
  67. package/dist/components/client/index.d.cts +7 -1
  68. package/dist/components/client/index.d.ts +7 -1
  69. package/dist/components/client/index.js +5 -1
  70. package/dist/components/client/providers/UDSConfigProvider.cjs +6 -2
  71. package/dist/components/client/providers/UDSConfigProvider.d.cts +2 -1
  72. package/dist/components/client/providers/UDSConfigProvider.d.ts +2 -1
  73. package/dist/components/client/providers/UDSConfigProvider.js +6 -2
  74. package/dist/components/index.cjs +12 -0
  75. package/dist/components/index.d.cts +6 -1
  76. package/dist/components/index.d.ts +6 -1
  77. package/dist/components/index.js +9 -1
  78. package/dist/config/dist/index.cjs +100 -1
  79. package/dist/config/dist/index.d.cts +148 -1
  80. package/dist/config/dist/index.d.ts +148 -1
  81. package/dist/config/dist/index.js +100 -1
  82. package/dist/css-tokens/dist/index.cjs +2 -0
  83. package/dist/css-tokens/dist/index.d.cts +2 -1
  84. package/dist/css-tokens/dist/index.d.ts +2 -1
  85. package/dist/css-tokens/dist/index.js +2 -1
  86. package/dist/fixtures/dist/arbitrary.d.cts +11 -0
  87. package/dist/fixtures/dist/arbitrary.d.ts +11 -0
  88. package/dist/fixtures/dist/index.cjs +27 -1
  89. package/dist/fixtures/dist/index.d.cts +17 -3
  90. package/dist/fixtures/dist/index.d.ts +17 -3
  91. package/dist/fixtures/dist/index.js +26 -2
  92. package/dist/fixtures/index.cjs +6 -1
  93. package/dist/fixtures/index.d.cts +4 -2
  94. package/dist/fixtures/index.d.ts +4 -2
  95. package/dist/fixtures/index.js +3 -2
  96. package/dist/fixtures/src/arbitrary.cjs +23 -0
  97. package/dist/fixtures/src/arbitrary.d.cts +15 -0
  98. package/dist/fixtures/src/arbitrary.d.ts +15 -0
  99. package/dist/fixtures/src/arbitrary.js +18 -0
  100. package/dist/fixtures/src/util.cjs +26 -0
  101. package/dist/fixtures/src/util.d.cts +9 -0
  102. package/dist/fixtures/src/util.d.ts +9 -0
  103. package/dist/fixtures/src/util.js +25 -0
  104. package/dist/index.cjs +15 -3
  105. package/dist/index.d.cts +9 -4
  106. package/dist/index.d.ts +9 -4
  107. package/dist/index.js +11 -6
  108. package/dist/runtime/index.cjs +2 -0
  109. package/dist/runtime/index.d.cts +2 -1
  110. package/dist/runtime/index.d.ts +2 -1
  111. package/dist/runtime/index.js +2 -1
  112. package/dist/runtime/tooltipConfig.cjs +33 -0
  113. package/dist/runtime/tooltipConfig.d.cts +20 -0
  114. package/dist/runtime/tooltipConfig.d.ts +20 -0
  115. package/dist/runtime/tooltipConfig.js +32 -0
  116. package/dist/runtime/udsConfig.cjs +3 -1
  117. package/dist/runtime/udsConfig.d.cts +2 -0
  118. package/dist/runtime/udsConfig.d.ts +2 -0
  119. package/dist/runtime/udsConfig.js +3 -1
  120. package/dist/styles/styler.d.cts +59 -49
  121. package/dist/styles/styler.d.ts +59 -49
  122. package/dist/styles/variants.d.cts +30 -0
  123. package/dist/styles/variants.d.ts +30 -0
  124. package/dist/tailwind/dist/plugin.cjs +2 -1
  125. package/dist/tailwind/dist/plugin.js +2 -1
  126. package/dist/tailwind/dist/tailwind/plugins/blurBgFallback.cjs +30 -0
  127. package/dist/tailwind/dist/tailwind/plugins/blurBgFallback.js +28 -0
  128. package/dist/tailwind/dist/tailwind/plugins/components.cjs +1 -0
  129. package/dist/tailwind/dist/tailwind/plugins/components.js +2 -1
  130. package/dist/tokens/automation/configs/index.cjs +2 -1
  131. package/dist/tokens/automation/configs/index.d.cts +2 -2
  132. package/dist/tokens/automation/configs/index.d.ts +2 -2
  133. package/dist/tokens/automation/configs/index.js +2 -2
  134. package/dist/tokens/automation/index.cjs +1 -0
  135. package/dist/tokens/automation/index.d.cts +2 -2
  136. package/dist/tokens/automation/index.d.ts +2 -2
  137. package/dist/tokens/automation/index.js +2 -2
  138. package/dist/tokens/automation/properties.d.cts +2 -2
  139. package/dist/tokens/automation/properties.d.ts +2 -2
  140. package/dist/tokens/consts/cssTokens.cjs +1 -0
  141. package/dist/tokens/consts/cssTokens.d.cts +2 -2
  142. package/dist/tokens/consts/cssTokens.d.ts +2 -2
  143. package/dist/tokens/consts/cssTokens.js +2 -2
  144. package/dist/tokens/index.cjs +2 -0
  145. package/dist/tokens/index.d.cts +4 -4
  146. package/dist/tokens/index.d.ts +4 -4
  147. package/dist/tokens/index.js +3 -3
  148. package/dist/tokens/types.d.cts +2 -2
  149. package/dist/tokens/types.d.ts +2 -2
  150. package/dist/types/dist/index.d.cts +37 -2
  151. package/dist/types/dist/index.d.ts +37 -2
  152. package/dist/uds/generated/tailwindPurge.cjs +32 -2
  153. package/dist/uds/generated/tailwindPurge.js +32 -2
  154. package/dist/uds/package.cjs +1 -0
  155. package/dist/uds/package.js +1 -0
  156. package/package.json +2 -1
@@ -29,6 +29,7 @@ import { InputHelpText } from "./client/Input/InputHelpText.js";
29
29
  import { Menu_index_exports } from "./client/Menu/Menu.index.js";
30
30
  import { UDSBreakpointsConfigProvider, useBreakpointsConfig } from "./client/providers/UDSBreakpointsConfigProvider.js";
31
31
  import { UDSToastConfigProvider, useToastConfig } from "./client/Toast/UDSToastConfigProvider.js";
32
+ import { UDSTooltipConfigProvider } from "./client/Tooltip/UDSTooltipConfigProvider.js";
32
33
  import { UDSConfigProvider } from "./client/providers/UDSConfigProvider.js";
33
34
  import { Radio } from "./client/Radio/Radio.js";
34
35
  import { RadioGroupProvider } from "./client/Radio/RadioGroupProvider.js";
@@ -37,6 +38,9 @@ import { ToastContainer } from "./client/Toast/ToastContainer.js";
37
38
  import { Toast } from "./client/Toast/Toast.js";
38
39
  import { createToast } from "./client/Toast/createToast.js";
39
40
  import { ToastPortal } from "./client/Toast/ToastPortal.js";
41
+ import { Tooltip } from "./client/Tooltip/Tooltip.js";
42
+ import { TooltipContent } from "./client/Tooltip/TooltipContent.js";
43
+ import { TooltipTrigger } from "./client/Tooltip/TooltipTrigger.js";
40
44
 
41
45
  //#region src/components/index.ts
42
46
  var components_exports = /* @__PURE__ */ __exportAll({
@@ -72,9 +76,13 @@ var components_exports = /* @__PURE__ */ __exportAll({
72
76
  Toast: () => Toast,
73
77
  ToastContainer: () => ToastContainer,
74
78
  ToastPortal: () => ToastPortal,
79
+ Tooltip: () => Tooltip,
80
+ TooltipContent: () => TooltipContent,
81
+ TooltipTrigger: () => TooltipTrigger,
75
82
  UDSBreakpointsConfigProvider: () => UDSBreakpointsConfigProvider,
76
83
  UDSConfigProvider: () => UDSConfigProvider,
77
84
  UDSToastConfigProvider: () => UDSToastConfigProvider,
85
+ UDSTooltipConfigProvider: () => UDSTooltipConfigProvider,
78
86
  VStack: () => VStack,
79
87
  createToast: () => createToast,
80
88
  useBreakpointsConfig: () => useBreakpointsConfig,
@@ -82,4 +90,4 @@ var components_exports = /* @__PURE__ */ __exportAll({
82
90
  });
83
91
 
84
92
  //#endregion
85
- export { Avatar, AvatarIcon, AvatarImage, AvatarText, Badge, Box, Button, Checkbox, Chip, ChipButton, ChipDismissible, ChipLink, ChipToggle, Divider, FormLabel, HStack, Icon, IconButton, Image, Input, InputHelpText, Link, Menu_index_exports as Menu, Pressable, Radio, RadioGroupProvider, SpringMotionConfig, Switch, Text, Toast, ToastContainer, ToastPortal, UDSBreakpointsConfigProvider, UDSConfigProvider, UDSToastConfigProvider, VStack, components_exports, createToast, useBreakpointsConfig, useToastConfig };
93
+ export { Avatar, AvatarIcon, AvatarImage, AvatarText, Badge, Box, Button, Checkbox, Chip, ChipButton, ChipDismissible, ChipLink, ChipToggle, Divider, FormLabel, HStack, Icon, IconButton, Image, Input, InputHelpText, Link, Menu_index_exports as Menu, Pressable, Radio, RadioGroupProvider, SpringMotionConfig, Switch, Text, Toast, ToastContainer, ToastPortal, Tooltip, TooltipContent, TooltipTrigger, UDSBreakpointsConfigProvider, UDSConfigProvider, UDSToastConfigProvider, UDSTooltipConfigProvider, VStack, components_exports, createToast, useBreakpointsConfig, useToastConfig };
@@ -3,6 +3,105 @@
3
3
  //#region ../config/dist/index.js
4
4
  /*! © 2026 Yahoo, Inc. UDS Default Config v0.0.0-development */
5
5
  const yosConfig = {
6
+ tooltip: {
7
+ variables: {
8
+ "size/default/root": {
9
+ shadow: { rest: {
10
+ type: "elevationAliases",
11
+ valueType: "alias",
12
+ value: "elevation-0"
13
+ } },
14
+ spacingHorizontal: { rest: {
15
+ type: "spacingAliases",
16
+ valueType: "alias",
17
+ value: "3"
18
+ } },
19
+ spacingVertical: { rest: {
20
+ type: "spacingAliases",
21
+ valueType: "alias",
22
+ value: "2"
23
+ } },
24
+ gap: { rest: {
25
+ type: "spacingAliases",
26
+ valueType: "alias",
27
+ value: "1"
28
+ } }
29
+ },
30
+ "size/default/svg": {
31
+ borderRadius: { rest: {
32
+ type: "borderRadii",
33
+ valueType: "alias",
34
+ value: "md"
35
+ } },
36
+ strokeWidth: { rest: {
37
+ type: "borderWidths",
38
+ valueType: "alias",
39
+ value: "thin"
40
+ } }
41
+ },
42
+ "size/default/title": { textVariant: { rest: {
43
+ type: "textVariants",
44
+ valueType: "alias",
45
+ value: "ui1/emphasized"
46
+ } } },
47
+ "size/default/body": { textVariant: { rest: {
48
+ type: "textVariants",
49
+ valueType: "alias",
50
+ value: "ui3/emphasized"
51
+ } } },
52
+ "size/default/endContent": { textVariant: { rest: {
53
+ type: "textVariants",
54
+ valueType: "alias",
55
+ value: "caption1"
56
+ } } },
57
+ "size/default/icon": { size: { rest: {
58
+ type: "iconSizes",
59
+ valueType: "alias",
60
+ value: "xs"
61
+ } } },
62
+ "variant/default/root": { color: { rest: {
63
+ type: "foregroundPaletteColors",
64
+ valueType: "alias",
65
+ value: "primary"
66
+ } } },
67
+ "variant/default/svg": {
68
+ backgroundColor: { rest: {
69
+ type: "elevationAliases",
70
+ valueType: "alias",
71
+ value: "elevation-0"
72
+ } },
73
+ blurBackgroundColorFallback: { rest: {
74
+ type: "elevationAliases",
75
+ valueType: "alias",
76
+ value: "elevation-0"
77
+ } },
78
+ fillOpacity: { rest: {
79
+ type: "opacitySteps",
80
+ valueType: "alias",
81
+ value: "100"
82
+ } },
83
+ stroke: { rest: {
84
+ type: "elevationAliases",
85
+ valueType: "alias",
86
+ value: "elevation-0"
87
+ } }
88
+ },
89
+ "variant/default/blur": { backdropBlur: { rest: {
90
+ type: "positiveIntegers",
91
+ valueType: "custom",
92
+ value: 0
93
+ } } },
94
+ "variant/default/icon": { color: { rest: {
95
+ type: "foregroundPaletteColors",
96
+ valueType: "alias",
97
+ value: "primary"
98
+ } } }
99
+ },
100
+ defaults: {
101
+ size: "default",
102
+ variant: "default"
103
+ }
104
+ },
6
105
  toast: {
7
106
  variables: {
8
107
  "variant/success/root": {
@@ -19843,7 +19942,7 @@ const yosConfig = {
19843
19942
  } }
19844
19943
  }
19845
19944
  },
19846
- version: "v0.77.0",
19945
+ version: "v0.79.0",
19847
19946
  colorMode: {
19848
19947
  light: {
19849
19948
  palette: {
@@ -11,6 +11,153 @@ interface UniversalTokensConfig extends Omit<UniversalTokensConfigGeneric<Univer
11
11
  //#endregion
12
12
  //#region src/yosConfig.d.ts
13
13
  declare const yosConfig: {
14
+ readonly tooltip: {
15
+ readonly variables: {
16
+ readonly 'size/default/root': {
17
+ readonly shadow: {
18
+ readonly rest: {
19
+ readonly type: "elevationAliases";
20
+ readonly valueType: "alias";
21
+ readonly value: "elevation-0";
22
+ };
23
+ };
24
+ readonly spacingHorizontal: {
25
+ readonly rest: {
26
+ readonly type: "spacingAliases";
27
+ readonly valueType: "alias";
28
+ readonly value: "3";
29
+ };
30
+ };
31
+ readonly spacingVertical: {
32
+ readonly rest: {
33
+ readonly type: "spacingAliases";
34
+ readonly valueType: "alias";
35
+ readonly value: "2";
36
+ };
37
+ };
38
+ readonly gap: {
39
+ readonly rest: {
40
+ readonly type: "spacingAliases";
41
+ readonly valueType: "alias";
42
+ readonly value: "1";
43
+ };
44
+ };
45
+ };
46
+ readonly 'size/default/svg': {
47
+ readonly borderRadius: {
48
+ readonly rest: {
49
+ readonly type: "borderRadii";
50
+ readonly valueType: "alias";
51
+ readonly value: "md";
52
+ };
53
+ };
54
+ readonly strokeWidth: {
55
+ readonly rest: {
56
+ readonly type: "borderWidths";
57
+ readonly valueType: "alias";
58
+ readonly value: "thin";
59
+ };
60
+ };
61
+ };
62
+ readonly 'size/default/title': {
63
+ readonly textVariant: {
64
+ readonly rest: {
65
+ readonly type: "textVariants";
66
+ readonly valueType: "alias";
67
+ readonly value: "ui1/emphasized";
68
+ };
69
+ };
70
+ };
71
+ readonly 'size/default/body': {
72
+ readonly textVariant: {
73
+ readonly rest: {
74
+ readonly type: "textVariants";
75
+ readonly valueType: "alias";
76
+ readonly value: "ui3/emphasized";
77
+ };
78
+ };
79
+ };
80
+ readonly 'size/default/endContent': {
81
+ readonly textVariant: {
82
+ readonly rest: {
83
+ readonly type: "textVariants";
84
+ readonly valueType: "alias";
85
+ readonly value: "caption1";
86
+ };
87
+ };
88
+ };
89
+ readonly 'size/default/icon': {
90
+ readonly size: {
91
+ readonly rest: {
92
+ readonly type: "iconSizes";
93
+ readonly valueType: "alias";
94
+ readonly value: "xs";
95
+ };
96
+ };
97
+ };
98
+ readonly 'variant/default/root': {
99
+ readonly color: {
100
+ readonly rest: {
101
+ readonly type: "foregroundPaletteColors";
102
+ readonly valueType: "alias";
103
+ readonly value: "primary";
104
+ };
105
+ };
106
+ };
107
+ readonly 'variant/default/svg': {
108
+ readonly backgroundColor: {
109
+ readonly rest: {
110
+ readonly type: "elevationAliases";
111
+ readonly valueType: "alias";
112
+ readonly value: "elevation-0";
113
+ };
114
+ };
115
+ readonly blurBackgroundColorFallback: {
116
+ readonly rest: {
117
+ readonly type: "elevationAliases";
118
+ readonly valueType: "alias";
119
+ readonly value: "elevation-0";
120
+ };
121
+ };
122
+ readonly fillOpacity: {
123
+ readonly rest: {
124
+ readonly type: "opacitySteps";
125
+ readonly valueType: "alias";
126
+ readonly value: "100";
127
+ };
128
+ };
129
+ readonly stroke: {
130
+ readonly rest: {
131
+ readonly type: "elevationAliases";
132
+ readonly valueType: "alias";
133
+ readonly value: "elevation-0";
134
+ };
135
+ };
136
+ };
137
+ readonly 'variant/default/blur': {
138
+ readonly backdropBlur: {
139
+ readonly rest: {
140
+ readonly type: "positiveIntegers";
141
+ readonly valueType: "custom";
142
+ readonly value: 0;
143
+ };
144
+ };
145
+ };
146
+ readonly 'variant/default/icon': {
147
+ readonly color: {
148
+ readonly rest: {
149
+ readonly type: "foregroundPaletteColors";
150
+ readonly valueType: "alias";
151
+ readonly value: "primary";
152
+ };
153
+ };
154
+ };
155
+ };
156
+ readonly defaults: {
157
+ readonly size: "default";
158
+ readonly variant: "default";
159
+ };
160
+ };
14
161
  readonly toast: {
15
162
  readonly variables: {
16
163
  readonly 'variant/success/root': {
@@ -21015,7 +21162,7 @@ declare const yosConfig: {
21015
21162
  };
21016
21163
  };
21017
21164
  };
21018
- readonly version: "v0.77.0";
21165
+ readonly version: "v0.79.0";
21019
21166
  readonly colorMode: {
21020
21167
  readonly light: {
21021
21168
  readonly palette: {
@@ -11,6 +11,153 @@ interface UniversalTokensConfig extends Omit<UniversalTokensConfigGeneric<Univer
11
11
  //#endregion
12
12
  //#region src/yosConfig.d.ts
13
13
  declare const yosConfig: {
14
+ readonly tooltip: {
15
+ readonly variables: {
16
+ readonly 'size/default/root': {
17
+ readonly shadow: {
18
+ readonly rest: {
19
+ readonly type: "elevationAliases";
20
+ readonly valueType: "alias";
21
+ readonly value: "elevation-0";
22
+ };
23
+ };
24
+ readonly spacingHorizontal: {
25
+ readonly rest: {
26
+ readonly type: "spacingAliases";
27
+ readonly valueType: "alias";
28
+ readonly value: "3";
29
+ };
30
+ };
31
+ readonly spacingVertical: {
32
+ readonly rest: {
33
+ readonly type: "spacingAliases";
34
+ readonly valueType: "alias";
35
+ readonly value: "2";
36
+ };
37
+ };
38
+ readonly gap: {
39
+ readonly rest: {
40
+ readonly type: "spacingAliases";
41
+ readonly valueType: "alias";
42
+ readonly value: "1";
43
+ };
44
+ };
45
+ };
46
+ readonly 'size/default/svg': {
47
+ readonly borderRadius: {
48
+ readonly rest: {
49
+ readonly type: "borderRadii";
50
+ readonly valueType: "alias";
51
+ readonly value: "md";
52
+ };
53
+ };
54
+ readonly strokeWidth: {
55
+ readonly rest: {
56
+ readonly type: "borderWidths";
57
+ readonly valueType: "alias";
58
+ readonly value: "thin";
59
+ };
60
+ };
61
+ };
62
+ readonly 'size/default/title': {
63
+ readonly textVariant: {
64
+ readonly rest: {
65
+ readonly type: "textVariants";
66
+ readonly valueType: "alias";
67
+ readonly value: "ui1/emphasized";
68
+ };
69
+ };
70
+ };
71
+ readonly 'size/default/body': {
72
+ readonly textVariant: {
73
+ readonly rest: {
74
+ readonly type: "textVariants";
75
+ readonly valueType: "alias";
76
+ readonly value: "ui3/emphasized";
77
+ };
78
+ };
79
+ };
80
+ readonly 'size/default/endContent': {
81
+ readonly textVariant: {
82
+ readonly rest: {
83
+ readonly type: "textVariants";
84
+ readonly valueType: "alias";
85
+ readonly value: "caption1";
86
+ };
87
+ };
88
+ };
89
+ readonly 'size/default/icon': {
90
+ readonly size: {
91
+ readonly rest: {
92
+ readonly type: "iconSizes";
93
+ readonly valueType: "alias";
94
+ readonly value: "xs";
95
+ };
96
+ };
97
+ };
98
+ readonly 'variant/default/root': {
99
+ readonly color: {
100
+ readonly rest: {
101
+ readonly type: "foregroundPaletteColors";
102
+ readonly valueType: "alias";
103
+ readonly value: "primary";
104
+ };
105
+ };
106
+ };
107
+ readonly 'variant/default/svg': {
108
+ readonly backgroundColor: {
109
+ readonly rest: {
110
+ readonly type: "elevationAliases";
111
+ readonly valueType: "alias";
112
+ readonly value: "elevation-0";
113
+ };
114
+ };
115
+ readonly blurBackgroundColorFallback: {
116
+ readonly rest: {
117
+ readonly type: "elevationAliases";
118
+ readonly valueType: "alias";
119
+ readonly value: "elevation-0";
120
+ };
121
+ };
122
+ readonly fillOpacity: {
123
+ readonly rest: {
124
+ readonly type: "opacitySteps";
125
+ readonly valueType: "alias";
126
+ readonly value: "100";
127
+ };
128
+ };
129
+ readonly stroke: {
130
+ readonly rest: {
131
+ readonly type: "elevationAliases";
132
+ readonly valueType: "alias";
133
+ readonly value: "elevation-0";
134
+ };
135
+ };
136
+ };
137
+ readonly 'variant/default/blur': {
138
+ readonly backdropBlur: {
139
+ readonly rest: {
140
+ readonly type: "positiveIntegers";
141
+ readonly valueType: "custom";
142
+ readonly value: 0;
143
+ };
144
+ };
145
+ };
146
+ readonly 'variant/default/icon': {
147
+ readonly color: {
148
+ readonly rest: {
149
+ readonly type: "foregroundPaletteColors";
150
+ readonly valueType: "alias";
151
+ readonly value: "primary";
152
+ };
153
+ };
154
+ };
155
+ };
156
+ readonly defaults: {
157
+ readonly size: "default";
158
+ readonly variant: "default";
159
+ };
160
+ };
14
161
  readonly toast: {
15
162
  readonly variables: {
16
163
  readonly 'variant/success/root': {
@@ -21015,7 +21162,7 @@ declare const yosConfig: {
21015
21162
  };
21016
21163
  };
21017
21164
  };
21018
- readonly version: "v0.77.0";
21165
+ readonly version: "v0.79.0";
21019
21166
  readonly colorMode: {
21020
21167
  readonly light: {
21021
21168
  readonly palette: {
@@ -2,6 +2,105 @@
2
2
  //#region ../config/dist/index.js
3
3
  /*! © 2026 Yahoo, Inc. UDS Default Config v0.0.0-development */
4
4
  const yosConfig = {
5
+ tooltip: {
6
+ variables: {
7
+ "size/default/root": {
8
+ shadow: { rest: {
9
+ type: "elevationAliases",
10
+ valueType: "alias",
11
+ value: "elevation-0"
12
+ } },
13
+ spacingHorizontal: { rest: {
14
+ type: "spacingAliases",
15
+ valueType: "alias",
16
+ value: "3"
17
+ } },
18
+ spacingVertical: { rest: {
19
+ type: "spacingAliases",
20
+ valueType: "alias",
21
+ value: "2"
22
+ } },
23
+ gap: { rest: {
24
+ type: "spacingAliases",
25
+ valueType: "alias",
26
+ value: "1"
27
+ } }
28
+ },
29
+ "size/default/svg": {
30
+ borderRadius: { rest: {
31
+ type: "borderRadii",
32
+ valueType: "alias",
33
+ value: "md"
34
+ } },
35
+ strokeWidth: { rest: {
36
+ type: "borderWidths",
37
+ valueType: "alias",
38
+ value: "thin"
39
+ } }
40
+ },
41
+ "size/default/title": { textVariant: { rest: {
42
+ type: "textVariants",
43
+ valueType: "alias",
44
+ value: "ui1/emphasized"
45
+ } } },
46
+ "size/default/body": { textVariant: { rest: {
47
+ type: "textVariants",
48
+ valueType: "alias",
49
+ value: "ui3/emphasized"
50
+ } } },
51
+ "size/default/endContent": { textVariant: { rest: {
52
+ type: "textVariants",
53
+ valueType: "alias",
54
+ value: "caption1"
55
+ } } },
56
+ "size/default/icon": { size: { rest: {
57
+ type: "iconSizes",
58
+ valueType: "alias",
59
+ value: "xs"
60
+ } } },
61
+ "variant/default/root": { color: { rest: {
62
+ type: "foregroundPaletteColors",
63
+ valueType: "alias",
64
+ value: "primary"
65
+ } } },
66
+ "variant/default/svg": {
67
+ backgroundColor: { rest: {
68
+ type: "elevationAliases",
69
+ valueType: "alias",
70
+ value: "elevation-0"
71
+ } },
72
+ blurBackgroundColorFallback: { rest: {
73
+ type: "elevationAliases",
74
+ valueType: "alias",
75
+ value: "elevation-0"
76
+ } },
77
+ fillOpacity: { rest: {
78
+ type: "opacitySteps",
79
+ valueType: "alias",
80
+ value: "100"
81
+ } },
82
+ stroke: { rest: {
83
+ type: "elevationAliases",
84
+ valueType: "alias",
85
+ value: "elevation-0"
86
+ } }
87
+ },
88
+ "variant/default/blur": { backdropBlur: { rest: {
89
+ type: "positiveIntegers",
90
+ valueType: "custom",
91
+ value: 0
92
+ } } },
93
+ "variant/default/icon": { color: { rest: {
94
+ type: "foregroundPaletteColors",
95
+ valueType: "alias",
96
+ value: "primary"
97
+ } } }
98
+ },
99
+ defaults: {
100
+ size: "default",
101
+ variant: "default"
102
+ }
103
+ },
5
104
  toast: {
6
105
  variables: {
7
106
  "variant/success/root": {
@@ -19842,7 +19941,7 @@ const yosConfig = {
19842
19941
  } }
19843
19942
  }
19844
19943
  },
19845
- version: "v0.77.0",
19944
+ version: "v0.79.0",
19846
19945
  colorMode: {
19847
19946
  light: {
19848
19947
  palette: {
@@ -11,6 +11,7 @@ const BORDER_RADIUS_PREFIX = `${UDS_PREFIX}-border-radius`;
11
11
  const BORDER_WIDTH_PREFIX = `${UDS_PREFIX}-border-width`;
12
12
  const DROP_SHADOW_PREFIX = `${UDS_PREFIX}-drop-shadow`;
13
13
  const BACKGROUND_BLUR_RADIUS_PREFIX = `${UDS_PREFIX}-background-blur-radius`;
14
+ const BACKGROUND_BLUR_COLOR_PREFIX = `${UDS_PREFIX}-background-blur-color`;
14
15
  const BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX = `${UDS_PREFIX}-background-blur-fallback-color`;
15
16
  const FONT_FAMILY_PREFIX = `${UDS_PREFIX}-font`;
16
17
  const FONT_SIZE_PREFIX = `${UDS_PREFIX}-font-size`;
@@ -124,6 +125,7 @@ function getMotionVar({ variant, speed, control }) {
124
125
 
125
126
  //#endregion
126
127
  exports.AVATAR_SIZE_PREFIX = AVATAR_SIZE_PREFIX;
128
+ exports.BACKGROUND_BLUR_COLOR_PREFIX = BACKGROUND_BLUR_COLOR_PREFIX;
127
129
  exports.BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX = BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX;
128
130
  exports.BACKGROUND_BLUR_RADIUS_PREFIX = BACKGROUND_BLUR_RADIUS_PREFIX;
129
131
  exports.BACKGROUND_COLOR_PREFIX = BACKGROUND_COLOR_PREFIX;
@@ -10,6 +10,7 @@ declare const BORDER_RADIUS_PREFIX = "uds-border-radius";
10
10
  declare const BORDER_WIDTH_PREFIX = "uds-border-width";
11
11
  declare const DROP_SHADOW_PREFIX = "uds-drop-shadow";
12
12
  declare const BACKGROUND_BLUR_RADIUS_PREFIX = "uds-background-blur-radius";
13
+ declare const BACKGROUND_BLUR_COLOR_PREFIX = "uds-background-blur-color";
13
14
  declare const BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX = "uds-background-blur-fallback-color";
14
15
  declare const FONT_FAMILY_PREFIX = "uds-font";
15
16
  declare const FONT_SIZE_PREFIX = "uds-font-size";
@@ -89,4 +90,4 @@ declare function getMotionVar({
89
90
  control
90
91
  }: GetMotionVarParams): string; //#endregion
91
92
  //#endregion
92
- export { AVATAR_SIZE_PREFIX, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_SCALE_MODE_CLASSNAME, DROP_SHADOW_PREFIX, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, GetMotionVarParams, ICON_SIZE_PREFIX, INVERT_COLOR_MODE_CLASSNAME, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, PSEUDO_STYLE_SELECTOR_MAP, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SYSTEM_COLOR_MODE_CLASSNAME, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, UDS_PREFIX, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, getMotionVar, getShadowLayerValue, textVariantsSafe };
93
+ export { AVATAR_SIZE_PREFIX, BACKGROUND_BLUR_COLOR_PREFIX, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_SCALE_MODE_CLASSNAME, DROP_SHADOW_PREFIX, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, GetMotionVarParams, ICON_SIZE_PREFIX, INVERT_COLOR_MODE_CLASSNAME, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, PSEUDO_STYLE_SELECTOR_MAP, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SYSTEM_COLOR_MODE_CLASSNAME, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, UDS_PREFIX, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, getMotionVar, getShadowLayerValue, textVariantsSafe };
@@ -10,6 +10,7 @@ declare const BORDER_RADIUS_PREFIX = "uds-border-radius";
10
10
  declare const BORDER_WIDTH_PREFIX = "uds-border-width";
11
11
  declare const DROP_SHADOW_PREFIX = "uds-drop-shadow";
12
12
  declare const BACKGROUND_BLUR_RADIUS_PREFIX = "uds-background-blur-radius";
13
+ declare const BACKGROUND_BLUR_COLOR_PREFIX = "uds-background-blur-color";
13
14
  declare const BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX = "uds-background-blur-fallback-color";
14
15
  declare const FONT_FAMILY_PREFIX = "uds-font";
15
16
  declare const FONT_SIZE_PREFIX = "uds-font-size";
@@ -89,4 +90,4 @@ declare function getMotionVar({
89
90
  control
90
91
  }: GetMotionVarParams): string; //#endregion
91
92
  //#endregion
92
- export { AVATAR_SIZE_PREFIX, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_SCALE_MODE_CLASSNAME, DROP_SHADOW_PREFIX, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, GetMotionVarParams, ICON_SIZE_PREFIX, INVERT_COLOR_MODE_CLASSNAME, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, PSEUDO_STYLE_SELECTOR_MAP, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SYSTEM_COLOR_MODE_CLASSNAME, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, UDS_PREFIX, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, getMotionVar, getShadowLayerValue, textVariantsSafe };
93
+ export { AVATAR_SIZE_PREFIX, BACKGROUND_BLUR_COLOR_PREFIX, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_SCALE_MODE_CLASSNAME, DROP_SHADOW_PREFIX, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, GetMotionVarParams, ICON_SIZE_PREFIX, INVERT_COLOR_MODE_CLASSNAME, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, PSEUDO_STYLE_SELECTOR_MAP, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SYSTEM_COLOR_MODE_CLASSNAME, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, UDS_PREFIX, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, getMotionVar, getShadowLayerValue, textVariantsSafe };
@@ -11,6 +11,7 @@ const BORDER_RADIUS_PREFIX = `${UDS_PREFIX}-border-radius`;
11
11
  const BORDER_WIDTH_PREFIX = `${UDS_PREFIX}-border-width`;
12
12
  const DROP_SHADOW_PREFIX = `${UDS_PREFIX}-drop-shadow`;
13
13
  const BACKGROUND_BLUR_RADIUS_PREFIX = `${UDS_PREFIX}-background-blur-radius`;
14
+ const BACKGROUND_BLUR_COLOR_PREFIX = `${UDS_PREFIX}-background-blur-color`;
14
15
  const BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX = `${UDS_PREFIX}-background-blur-fallback-color`;
15
16
  const FONT_FAMILY_PREFIX = `${UDS_PREFIX}-font`;
16
17
  const FONT_SIZE_PREFIX = `${UDS_PREFIX}-font-size`;
@@ -123,4 +124,4 @@ function getMotionVar({ variant, speed, control }) {
123
124
  }
124
125
 
125
126
  //#endregion
126
- export { AVATAR_SIZE_PREFIX, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_SCALE_MODE_CLASSNAME, DROP_SHADOW_PREFIX, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, ICON_SIZE_PREFIX, INVERT_COLOR_MODE_CLASSNAME, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, PSEUDO_STYLE_SELECTOR_MAP, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SYSTEM_COLOR_MODE_CLASSNAME, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, UDS_PREFIX, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, getMotionVar, getShadowLayerValue, textVariantsSafe };
127
+ export { AVATAR_SIZE_PREFIX, BACKGROUND_BLUR_COLOR_PREFIX, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_SCALE_MODE_CLASSNAME, DROP_SHADOW_PREFIX, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, ICON_SIZE_PREFIX, INVERT_COLOR_MODE_CLASSNAME, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, PSEUDO_STYLE_SELECTOR_MAP, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SYSTEM_COLOR_MODE_CLASSNAME, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, UDS_PREFIX, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, getMotionVar, getShadowLayerValue, textVariantsSafe };
@@ -0,0 +1,11 @@
1
+
2
+ //#region ../fixtures/dist/arbitrary.d.mts
3
+ /** Integer >= 0 (e.g., blur radius) */
4
+ declare const positiveIntegers: {
5
+ type: "arbitraryFixture";
6
+ valueType: "integer";
7
+ min: number;
8
+ step: number;
9
+ }; //#endregion
10
+ //#endregion
11
+ export { positiveIntegers };
@@ -0,0 +1,11 @@
1
+
2
+ //#region ../fixtures/dist/arbitrary.d.mts
3
+ /** Integer >= 0 (e.g., blur radius) */
4
+ declare const positiveIntegers: {
5
+ type: "arbitraryFixture";
6
+ valueType: "integer";
7
+ min: number;
8
+ step: number;
9
+ }; //#endregion
10
+ //#endregion
11
+ export { positiveIntegers };