@yahoo/uds-mobile 1.0.1 → 1.1.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.
Files changed (58) hide show
  1. package/README.md +9 -4
  2. package/dist/bin/uds/dist/tokens/consts/fontDeclarationsMap.mjs +7 -22
  3. package/dist/components/Avatar.d.cts +2 -2
  4. package/dist/components/Avatar.d.mts +2 -2
  5. package/dist/components/Badge.d.cts +2 -2
  6. package/dist/components/Badge.d.mts +2 -2
  7. package/dist/components/Badge.d.mts.map +1 -1
  8. package/dist/components/Box.d.cts +2 -2
  9. package/dist/components/Box.d.mts +2 -2
  10. package/dist/components/Button.d.cts +2 -2
  11. package/dist/components/Button.d.mts +2 -2
  12. package/dist/components/Checkbox.d.cts +2 -2
  13. package/dist/components/Checkbox.d.mts +2 -2
  14. package/dist/components/Chip.d.cts +2 -2
  15. package/dist/components/Chip.d.mts +2 -2
  16. package/dist/components/HStack.d.cts +2 -2
  17. package/dist/components/HStack.d.mts +2 -2
  18. package/dist/components/Icon.d.cts +2 -2
  19. package/dist/components/Icon.d.mts +2 -2
  20. package/dist/components/Icon.d.mts.map +1 -1
  21. package/dist/components/IconButton.d.cts +2 -2
  22. package/dist/components/IconButton.d.cts.map +1 -1
  23. package/dist/components/IconButton.d.mts +2 -2
  24. package/dist/components/IconButton.d.mts.map +1 -1
  25. package/dist/components/IconSlot.d.cts +2 -2
  26. package/dist/components/IconSlot.d.mts +2 -2
  27. package/dist/components/IconSlot.d.mts.map +1 -1
  28. package/dist/components/Image.d.cts +2 -2
  29. package/dist/components/Image.d.mts +2 -2
  30. package/dist/components/Image.d.mts.map +1 -1
  31. package/dist/components/Input.d.cts +2 -2
  32. package/dist/components/Input.d.mts +2 -2
  33. package/dist/components/Input.d.mts.map +1 -1
  34. package/dist/components/Link.d.cts +2 -2
  35. package/dist/components/Link.d.mts +2 -2
  36. package/dist/components/Pressable.d.mts +3 -3
  37. package/dist/components/Pressable.d.mts.map +1 -1
  38. package/dist/components/Radio.d.cts +2 -2
  39. package/dist/components/Radio.d.mts +2 -2
  40. package/dist/components/Radio.d.mts.map +1 -1
  41. package/dist/components/Screen.d.cts +2 -2
  42. package/dist/components/Screen.d.mts +2 -2
  43. package/dist/components/Screen.d.mts.map +1 -1
  44. package/dist/components/Switch.d.cts +2 -2
  45. package/dist/components/Switch.d.cts.map +1 -1
  46. package/dist/components/Switch.d.mts +2 -2
  47. package/dist/components/Switch.d.mts.map +1 -1
  48. package/dist/components/Text.d.cts +2 -2
  49. package/dist/components/Text.d.mts +2 -2
  50. package/dist/components/VStack.d.mts +2 -2
  51. package/dist/components/VStack.d.mts.map +1 -1
  52. package/dist/icons/dist/glyphMap.d.cts +1 -1
  53. package/dist/icons/dist/glyphMap.d.cts.map +1 -1
  54. package/dist/icons/dist/glyphMap.d.mts +1 -1
  55. package/dist/icons/dist/glyphMap.d.mts.map +1 -1
  56. package/dist/icons/dist/types.d.mts.map +1 -1
  57. package/fonts/uds-icons.ttf +0 -0
  58. package/package.json +1 -1
package/README.md CHANGED
@@ -50,7 +50,8 @@ npm install @yahoo/uds-mobile
50
50
  | react-native-unistyles | ≥ 3.0.20 |
51
51
  | react-native-reanimated | ~4.1.x |
52
52
 
53
- > **Note**: This package is tested against Expo SDK 54. While it may work with other versions, we cannot guarantee compatibility. If you encounter issues on a different Expo SDK version, please check for peer dependency conflicts.
53
+ > [!NOTE]
54
+ > This package is tested against Expo SDK 54. While it may work with other versions, we cannot guarantee compatibility. If you encounter issues on a different Expo SDK version, please check for peer dependency conflicts.
54
55
 
55
56
  ### Peer Dependencies
56
57
 
@@ -83,7 +84,8 @@ export default {
83
84
  };
84
85
  ```
85
86
 
86
- > **⚠️ Development Build Required**: `react-native-unistyles` uses native modules and does not work with Expo Go. You must use a [development build](https://docs.expo.dev/develop/development-builds/introduction/) or prebuild your app. See the [Unistyles setup guide](https://www.unistyl.es/v3/start/setup) for detailed instructions.
87
+ > [!WARNING]
88
+ > **Development Build Required**: `react-native-unistyles` uses native modules and does not work with Expo Go. You must use a [development build](https://docs.expo.dev/develop/development-builds/introduction/) or prebuild your app. See the [Unistyles setup guide](https://www.unistyl.es/v3/start/setup) for detailed instructions.
87
89
 
88
90
  ## Quick Start
89
91
 
@@ -157,6 +159,7 @@ import './lib/unistyles'; // Must be first!
157
159
  // ... your app's existing entry code
158
160
  ```
159
161
 
162
+ > [!NOTE]
160
163
  > **Why?** Unistyles must be configured before any `StyleSheet.create()` calls execute. Since UDS Mobile components use Unistyles internally, the configuration must happen before any component imports.
161
164
 
162
165
  ### 4. Rebuild Your App
@@ -222,7 +225,8 @@ function ThemeToggle() {
222
225
 
223
226
  If you configured `adaptiveThemes: true`, the theme automatically follows the system preference. Calling `UnistylesRuntime.setTheme()` will override this until the app restarts.
224
227
 
225
- > **⚠️ Performance Note**: Using `useUnistyles()` causes component re-renders on theme changes, which negates Unistyles' performance benefits. For theme-aware styles, prefer `StyleSheet.create` with a dynamic function instead:
228
+ > [!WARNING]
229
+ > **Performance**: Using `useUnistyles()` causes component re-renders on theme changes, which negates Unistyles' performance benefits. For theme-aware styles, prefer `StyleSheet.create` with a dynamic function instead:
226
230
  >
227
231
  > ```tsx
228
232
  > // ✅ Preferred: No re-renders, styles update automatically
@@ -249,7 +253,8 @@ React Native DevTools includes a feature to highlight components when they re-re
249
253
 
250
254
  Components will flash with a colored border when they re-render. This makes it easy to spot unnecessary re-renders caused by `useUnistyles()` or other state changes.
251
255
 
252
- > **💡 Testing your setup**: A good way to verify Unistyles is configured correctly is to toggle light/dark mode with highlighting enabled. If set up properly, only the theme toggle button should re-render — not the rest of your app. If you see the entire screen flash, you likely have `useUnistyles()` calls in components that should be using `StyleSheet.create` with dynamic functions instead.
256
+ > [!TIP]
257
+ > **Testing your setup**: A good way to verify Unistyles is configured correctly is to toggle light/dark mode with highlighting enabled. If set up properly, only the theme toggle button should re-render — not the rest of your app. If you see the entire screen flash, you likely have `useUnistyles()` calls in components that should be using `StyleSheet.create` with dynamic functions instead.
253
258
 
254
259
  See the [React Native DevTools docs](https://reactnative.dev/docs/react-native-devtools#react-components) for more debugging features.
255
260
 
@@ -274,27 +274,11 @@ const FONT_DECLARATIONS_MAP = {
274
274
  type: "sans",
275
275
  fontFamily: "YA Sans VF",
276
276
  isVariableFont: true,
277
- fontSlants: [{
278
- label: "None",
279
- value: 0
280
- }, {
281
- label: "Italic",
282
- value: 1
277
+ fontSlants: void 0,
278
+ fontWidths: [{
279
+ label: "Normal",
280
+ value: 100
283
281
  }],
284
- fontWidths: [
285
- {
286
- label: "Condensed",
287
- value: 75
288
- },
289
- {
290
- label: "Normal",
291
- value: 100
292
- },
293
- {
294
- label: "Extended",
295
- value: 125
296
- }
297
- ],
298
282
  fontWeights: [
299
283
  {
300
284
  label: "Light",
@@ -322,13 +306,14 @@ const FONT_DECLARATIONS_MAP = {
322
306
  }
323
307
  ],
324
308
  defaults: {
325
- fontSlant: 0,
309
+ fontSlant: void 0,
326
310
  fontWidth: 100,
327
311
  fontWeight: 400
328
312
  },
329
313
  declarations: [{
314
+ fontStyle: "normal",
330
315
  fontWeight: "1 1000",
331
- src: `${UDS_FONTS_CDN_PREFIX}/yas-vf.woff2`
316
+ src: `${UDS_FONTS_CDN_PREFIX}/yas-normal-no-italic-vf.woff2`
332
317
  }]
333
318
  },
334
319
  inter: {
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { IconSlotType } from "./IconSlot.cjs";
3
- import * as react0 from "react";
3
+ import * as react9 from "react";
4
4
  import { View, ViewProps } from "react-native";
5
5
 
6
6
  //#region src/components/Avatar.d.ts
@@ -54,7 +54,7 @@ interface AvatarProps extends ViewProps {
54
54
  *
55
55
  * @see The {@link https://uds.build/docs/components/avatar Avatar Docs} for more info
56
56
  */
57
- declare const Avatar: react0.ForwardRefExoticComponent<AvatarProps & react0.RefAttributes<View>>;
57
+ declare const Avatar: react9.ForwardRefExoticComponent<AvatarProps & react9.RefAttributes<View>>;
58
58
  //#endregion
59
59
  export { Avatar, type AvatarProps };
60
60
  //# sourceMappingURL=Avatar.d.cts.map
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { IconSlotType } from "./IconSlot.mjs";
3
- import * as react4 from "react";
3
+ import * as react0 from "react";
4
4
  import { View, ViewProps } from "react-native";
5
5
 
6
6
  //#region src/components/Avatar.d.ts
@@ -54,7 +54,7 @@ interface AvatarProps extends ViewProps {
54
54
  *
55
55
  * @see The {@link https://uds.build/docs/components/avatar Avatar Docs} for more info
56
56
  */
57
- declare const Avatar: react4.ForwardRefExoticComponent<AvatarProps & react4.RefAttributes<View>>;
57
+ declare const Avatar: react0.ForwardRefExoticComponent<AvatarProps & react0.RefAttributes<View>>;
58
58
  //#endregion
59
59
  export { Avatar, type AvatarProps };
60
60
  //# sourceMappingURL=Avatar.d.mts.map
@@ -1,7 +1,7 @@
1
1
 
2
2
  import { BadgeSize, BadgeVariant } from "../uds/dist/tokens/types.cjs";
3
3
  import { IconSlotType } from "./IconSlot.cjs";
4
- import * as react1 from "react";
4
+ import * as react4 from "react";
5
5
  import { Ref } from "react";
6
6
  import { View, ViewProps } from "react-native";
7
7
 
@@ -37,7 +37,7 @@ interface BadgeProps extends ViewProps {
37
37
  * <Badge variant="alert" startIcon="Warning">Error</Badge>
38
38
  * ```
39
39
  */
40
- declare const Badge: react1.NamedExoticComponent<BadgeProps>;
40
+ declare const Badge: react4.NamedExoticComponent<BadgeProps>;
41
41
  //#endregion
42
42
  export { Badge, type BadgeProps };
43
43
  //# sourceMappingURL=Badge.d.cts.map
@@ -1,7 +1,7 @@
1
1
 
2
2
  import { BadgeSize, BadgeVariant } from "../uds/dist/tokens/types.mjs";
3
3
  import { IconSlotType } from "./IconSlot.mjs";
4
- import * as react13 from "react";
4
+ import * as react1 from "react";
5
5
  import { Ref } from "react";
6
6
  import { View, ViewProps } from "react-native";
7
7
 
@@ -37,7 +37,7 @@ interface BadgeProps extends ViewProps {
37
37
  * <Badge variant="alert" startIcon="Warning">Error</Badge>
38
38
  * ```
39
39
  */
40
- declare const Badge: react13.NamedExoticComponent<BadgeProps>;
40
+ declare const Badge: react1.NamedExoticComponent<BadgeProps>;
41
41
  //#endregion
42
42
  export { Badge, type BadgeProps };
43
43
  //# sourceMappingURL=Badge.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Badge.d.mts","names":[],"sources":["../../src/components/Badge.tsx"],"sourcesContent":[],"mappings":";;;;;;;;UAWU,UAAA,SAAmB;;YAEjB;EAFF;EAEE,IAAA,CAAA,EAEH,SAFG;EAEH,QAAA,CAAA,EAAA,MAAA;EAIK;EACF,QAAA,CAAA,EAAA,MAAA;EAKA,SAAA,CAAA,EANE,YAMF;EAAJ,OAAA,CAAA,EALI,YAKJ;EAdqB,6BAAA,CAAA,EAAA,MAAA;EAAS,mBAAA,CAAA,EAAA,MAAA;EAgChC,yBAAK,CAAA,EAAA,MAAA;;QAlBH,IAAI;;;;;;;;;;;;;;;;;cAkBN,OAAK,OAAA,CAAA,qBAAA"}
1
+ {"version":3,"file":"Badge.d.mts","names":[],"sources":["../../src/components/Badge.tsx"],"sourcesContent":[],"mappings":";;;;;;;;UAWU,UAAA,SAAmB;;YAEjB;EAFF;EAEE,IAAA,CAAA,EAEH,SAFG;EAEH,QAAA,CAAA,EAAA,MAAA;EAIK;EACF,QAAA,CAAA,EAAA,MAAA;EAKA,SAAA,CAAA,EANE,YAMF;EAAJ,OAAA,CAAA,EALI,YAKJ;EAdqB,6BAAA,CAAA,EAAA,MAAA;EAAS,mBAAA,CAAA,EAAA,MAAA;EAgChC,yBAAK,CAAA,EAAA,MAAA;;QAlBH,IAAI;;;;;;;;;;;;;;;;;cAkBN,OAAK,MAAA,CAAA,qBAAA"}
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { SizeProps } from "../types.cjs";
3
- import * as react2 from "react";
3
+ import * as react6 from "react";
4
4
  import { Ref } from "react";
5
5
  import { View, ViewProps } from "react-native";
6
6
  import { StyleProps } from "../../generated/styles";
@@ -81,7 +81,7 @@ interface BoxProps extends ViewProps, SizeProps {
81
81
  *
82
82
  * @related [HStack](https://uds.build/docs/components/h-stack), [VStack](https://uds.build/docs/components/v-stack)
83
83
  */
84
- declare const Box: react2.NamedExoticComponent<BoxProps>;
84
+ declare const Box: react6.NamedExoticComponent<BoxProps>;
85
85
  //#endregion
86
86
  export { Box, type BoxProps };
87
87
  //# sourceMappingURL=Box.d.cts.map
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { SizeProps } from "../types.mjs";
3
- import * as react9 from "react";
3
+ import * as react2 from "react";
4
4
  import { Ref } from "react";
5
5
  import { View, ViewProps } from "react-native";
6
6
  import { StyleProps } from "../../generated/styles";
@@ -81,7 +81,7 @@ interface BoxProps extends ViewProps, SizeProps {
81
81
  *
82
82
  * @related [HStack](https://uds.build/docs/components/h-stack), [VStack](https://uds.build/docs/components/v-stack)
83
83
  */
84
- declare const Box: react9.NamedExoticComponent<BoxProps>;
84
+ declare const Box: react2.NamedExoticComponent<BoxProps>;
85
85
  //#endregion
86
86
  export { Box, type BoxProps };
87
87
  //# sourceMappingURL=Box.d.mts.map
@@ -3,7 +3,7 @@ import { IconVariant } from "../icons/dist/types.cjs";
3
3
  import { ButtonSize, ButtonVariantFlat } from "../uds/dist/tokens/types.cjs";
4
4
  import { IconSlotType } from "./IconSlot.cjs";
5
5
  import { PressableProps as PressableProps$1 } from "./Pressable.cjs";
6
- import * as react3 from "react";
6
+ import * as react8 from "react";
7
7
  import { Ref } from "react";
8
8
  import { View } from "react-native";
9
9
 
@@ -50,7 +50,7 @@ interface ButtonProps extends Omit<PressableProps$1, 'children' | 'disabled'> {
50
50
  *
51
51
  * @see The {@link https://uds.build/docs/components/button Button Docs} for more info
52
52
  */
53
- declare const Button: react3.NamedExoticComponent<ButtonProps>;
53
+ declare const Button: react8.NamedExoticComponent<ButtonProps>;
54
54
  //#endregion
55
55
  export { Button, type ButtonProps };
56
56
  //# sourceMappingURL=Button.d.cts.map
@@ -3,7 +3,7 @@ import { IconVariant } from "../icons/dist/types.mjs";
3
3
  import { ButtonSize, ButtonVariantFlat } from "../uds/dist/tokens/types.mjs";
4
4
  import { IconSlotType } from "./IconSlot.mjs";
5
5
  import { PressableProps as PressableProps$1 } from "./Pressable.mjs";
6
- import * as react17 from "react";
6
+ import * as react12 from "react";
7
7
  import { Ref } from "react";
8
8
  import { View } from "react-native";
9
9
 
@@ -50,7 +50,7 @@ interface ButtonProps extends Omit<PressableProps$1, 'children' | 'disabled'> {
50
50
  *
51
51
  * @see The {@link https://uds.build/docs/components/button Button Docs} for more info
52
52
  */
53
- declare const Button: react17.NamedExoticComponent<ButtonProps>;
53
+ declare const Button: react12.NamedExoticComponent<ButtonProps>;
54
54
  //#endregion
55
55
  export { Button, type ButtonProps };
56
56
  //# sourceMappingURL=Button.d.mts.map
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { UniversalCheckboxProps } from "../uds/dist/tokens/types.cjs";
3
- import * as react5 from "react";
3
+ import * as react0 from "react";
4
4
  import { Ref } from "react";
5
5
  import { View, ViewProps } from "react-native";
6
6
 
@@ -42,7 +42,7 @@ interface CheckboxProps extends Omit<ViewProps, 'style'>, UniversalCheckboxProps
42
42
  *
43
43
  * @see The {@link https://uds.build/docs/components/checkbox Checkbox Docs} for more info
44
44
  */
45
- declare const Checkbox: react5.NamedExoticComponent<CheckboxProps>;
45
+ declare const Checkbox: react0.NamedExoticComponent<CheckboxProps>;
46
46
  //#endregion
47
47
  export { Checkbox, type CheckboxProps };
48
48
  //# sourceMappingURL=Checkbox.d.cts.map
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { UniversalCheckboxProps } from "../uds/dist/tokens/types.mjs";
3
- import * as react16 from "react";
3
+ import * as react13 from "react";
4
4
  import { Ref } from "react";
5
5
  import { View, ViewProps } from "react-native";
6
6
 
@@ -42,7 +42,7 @@ interface CheckboxProps extends Omit<ViewProps, 'style'>, UniversalCheckboxProps
42
42
  *
43
43
  * @see The {@link https://uds.build/docs/components/checkbox Checkbox Docs} for more info
44
44
  */
45
- declare const Checkbox: react16.NamedExoticComponent<CheckboxProps>;
45
+ declare const Checkbox: react13.NamedExoticComponent<CheckboxProps>;
46
46
  //#endregion
47
47
  export { Checkbox, type CheckboxProps };
48
48
  //# sourceMappingURL=Checkbox.d.mts.map
@@ -1,7 +1,7 @@
1
1
 
2
2
  import { ChipSize, ChipVariant } from "../uds/dist/tokens/types.cjs";
3
3
  import { IconSlotType } from "./IconSlot.cjs";
4
- import * as react4 from "react";
4
+ import * as react7 from "react";
5
5
  import { Ref } from "react";
6
6
  import { View, ViewProps } from "react-native";
7
7
 
@@ -54,7 +54,7 @@ interface ChipProps extends Omit<ViewProps, 'children'> {
54
54
  * <Chip startIcon="Star" variant="brand">Favorite</Chip>
55
55
  * ```
56
56
  */
57
- declare const Chip: react4.NamedExoticComponent<ChipProps>;
57
+ declare const Chip: react7.NamedExoticComponent<ChipProps>;
58
58
  //#endregion
59
59
  export { Chip, type ChipProps };
60
60
  //# sourceMappingURL=Chip.d.cts.map
@@ -1,7 +1,7 @@
1
1
 
2
2
  import { ChipSize, ChipVariant } from "../uds/dist/tokens/types.mjs";
3
3
  import { IconSlotType } from "./IconSlot.mjs";
4
- import * as react18 from "react";
4
+ import * as react11 from "react";
5
5
  import { Ref } from "react";
6
6
  import { View, ViewProps } from "react-native";
7
7
 
@@ -54,7 +54,7 @@ interface ChipProps extends Omit<ViewProps, 'children'> {
54
54
  * <Chip startIcon="Star" variant="brand">Favorite</Chip>
55
55
  * ```
56
56
  */
57
- declare const Chip: react18.NamedExoticComponent<ChipProps>;
57
+ declare const Chip: react11.NamedExoticComponent<ChipProps>;
58
58
  //#endregion
59
59
  export { Chip, type ChipProps };
60
60
  //# sourceMappingURL=Chip.d.mts.map
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { BoxProps } from "./Box.cjs";
3
- import * as react6 from "react";
3
+ import * as react3 from "react";
4
4
  import { Ref } from "react";
5
5
  import { View } from "react-native";
6
6
  import { StyleProps } from "../../generated/styles";
@@ -35,7 +35,7 @@ interface HStackProps extends Omit<BoxProps, 'ref'> {
35
35
  *
36
36
  * @related [VStack](https://uds.build/docs/components/v-stack), [Box](https://uds.build/docs/components/box)
37
37
  */
38
- declare const HStack: react6.NamedExoticComponent<HStackProps>;
38
+ declare const HStack: react3.NamedExoticComponent<HStackProps>;
39
39
  //#endregion
40
40
  export { HStack, type HStackProps };
41
41
  //# sourceMappingURL=HStack.d.cts.map
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { BoxProps } from "./Box.mjs";
3
- import * as react0 from "react";
3
+ import * as react3 from "react";
4
4
  import { Ref } from "react";
5
5
  import { View } from "react-native";
6
6
  import { StyleProps } from "../../generated/styles";
@@ -35,7 +35,7 @@ interface HStackProps extends Omit<BoxProps, 'ref'> {
35
35
  *
36
36
  * @related [VStack](https://uds.build/docs/components/v-stack), [Box](https://uds.build/docs/components/box)
37
37
  */
38
- declare const HStack: react0.NamedExoticComponent<HStackProps>;
38
+ declare const HStack: react3.NamedExoticComponent<HStackProps>;
39
39
  //#endregion
40
40
  export { HStack, type HStackProps };
41
41
  //# sourceMappingURL=HStack.d.mts.map
@@ -3,7 +3,7 @@ import { IconSize, IconVariant } from "../icons/dist/types.cjs";
3
3
  import "../uds/dist/index.cjs";
4
4
  import { GlyphName } from "../icons/dist/glyphMap.cjs";
5
5
  import { SvgGlyphName } from "../icons/dist/svgMap.cjs";
6
- import * as react7 from "react";
6
+ import * as react1 from "react";
7
7
  import { Ref } from "react";
8
8
  import { StyleProp, Text, TextProps, TextStyle } from "react-native";
9
9
  import { StyleProps } from "../../generated/styles";
@@ -82,7 +82,7 @@ interface IconProps extends Omit<TextProps, 'style'> {
82
82
  *
83
83
  * @see The {@link https://uds.build/docs/components/icon Icon Docs} for more info
84
84
  */
85
- declare const Icon: react7.NamedExoticComponent<IconProps>;
85
+ declare const Icon: react1.NamedExoticComponent<IconProps>;
86
86
  declare const iconNames: readonly ["A11Y", "Accessible", "AccountRecover", "AccountRefresh", "AccountSwitchAlt", "AccountSwitcher", "AcousticGuitar", "Add", "AddBell", "AddCalendar", "AddCheckCircle", "AddCircle", "AddContactCard", "AddDocument", "AddFace", "AddFolder", "AddPaperPlane", "AddPeople", "AddQuestion", "AddSearch", "AddSquare", "AffiliateLink", "AirQuality", "Airplane", "AirplaneLanding", "AirplaneTakeOff", "AngledSquareOnSquare", "AnyFile", "AppSwitcher", "AquariusAstrology", "Archive", "AriesAstrology", "ArrowDown", "ArrowDownCircle", "ArrowLeft", "ArrowLineDown", "ArrowLineUp", "ArrowRight", "ArrowUp", "Article", "ArtisticGymnastics", "Ascender", "AudioFile", "Authenticator", "AutoDownload", "AutoSaveOffline", "AutoSaveSync", "AutoSaveUpload", "AutoSaveUploadFail", "AutoSaved", "BabyBottle", "BackTimeTen", "Badge", "Balance", "BallInWater", "Barometer", "BaseBallBat", "Baseball", "Basketball", "BasketballHoop", "BeachUmbrella", "Bed", "Bell", "Below", "BigDownArrow", "BigLeftArrow", "BigRightArrow", "BigRightStraightArrow", "BigUpArrow", "Bike", "Bingo", "Binoculars", "BlackJack", "Bold", "Bolt", "Bookmark", "BottomLine", "BowAndArrow", "BoxCircle", "BoxFront", "BoxOnBox", "BoxingGlove", "Browser", "BubbleZone", "Building", "BulletPointContainer", "BulletPoints", "Bullseye", "BusFront", "BusinessBag", "Cake", "Calendar", "CalendarClock", "CalendarConfirm", "CalendarFile", "CalendarICSFile", "CalendarRightArrow", "Camera", "CancerAstrology", "Canoe", "CapriconAstrology", "Car", "CardsCheck", "Cash", "CelebrityStar", "CenterAlignment", "ChatAi", "Check", "CheckBookmark", "CheckBox", "CheckCircle", "CheckDocuments", "CheckEnvelope", "CheckPeople", "CheckSpeechBubble", "CheckVoteBallot", "Checklist", "ChevronDown", "ChevronLeft", "ChevronLeftPeople", "ChevronRight", "ChevronRightPeople", "ChevronUp", "Circle", "ClearText", "Clipboard", "Clock", "Clone", "ClosedCaption", "Cloud", "CloudDay", "CloudNight", "Cocktails", "Coffee", "CoffeeTakeout", "Cog", "Coin", "CollapseColumn", "Command", "Compass", "ComputerChip", "Connection", "ConnectionScreen", "ContactBook", "ContactCard", "Convert", "ConvertAlt", "ConvertLeft", "ConvertRight", "Cookies", "Coupon", "CreditCard", "CreditCardPayment", "CrescentMoon", "Cricket", "Cross", "CrossCircle", "CrossEnvelope", "CrossPeople", "CrossShield", "Crossword", "Cycling", "DOCFile", "DailyFantasy", "DaisyFlower", "Dandelion", "DataBook", "DataCloud", "DataSilo", "DataStorage", "Debug", "DeleteTab", "DeliveryPackage", "Dense", "DenyCircle", "Descender", "Desktop", "DiagonalKey", "DiagonalLeftDown", "DiagonalLeftUp", "DiagonalRightDown", "DiagonalRightUp", "Diamond", "Dice", "Dining", "Direction", "DiscoBall", "Document", "DocumentImageRectangle", "DocumentImageSquare", "DocumentRectangle", "DollarCircleArrows", "DotEnvelope", "DotTwoRings", "DoubleBigLeftArrow", "DoubleChevronLeft", "DoubleChevronRight", "DownCurveArrow", "Download", "DownloadCircle", "DownloadComplete", "DownloadInProgressCircle", "DraftDocument", "DragVertical", "Dusk", "Easel", "Eclipse", "Edit", "EmailVerification", "Emails", "Embed", "EntertainmentTv", "Envelope", "Error", "ExpandArrowLeft", "ExpandArrowRight", "ExpandColumn", "Eye", "EyeSearch", "EyeShut", "FaceID", "FallLeaf", "Family", "FastForward", "FencingEpee", "FilmReel", "FilmRoll", "FingerPointLeftArrow", "FingerPointRightArrow", "FingerPointSelect", "FingerPrint", "Fire", "FirstAidKit", "FirstQuarter", "FiveCircles", "Flag", "FlameTorch", "Fog", "FogDay", "Folder", "Font", "Football", "FootballHelmet", "ForestTree", "FourBoxes", "FourCorners", "FourCornersMagnifyingGlass", "FourCornersMusicNote", "FourLinesSpread", "FourThreeRatio", "FullMoon", "GIF", "GeminiAstrology", "GiftBox", "GolfTee", "GraduationHat", "Graph", "Gymnastics", "HalfStar", "HalfSun", "HappyFace", "HazeDay", "HazeNight", "Heading2", "Heading3", "Headline1", "HeadlineDocumentSquare", "Headphone", "HeadphonesMic", "Heart", "HeartArrow", "HeartPulse", "HeavyRain", "HeavyRainDay", "HeavyRainLightning", "HeavyRainLightningDay", "HeavyRainLightningNight", "HeavyRainNight", "Help", "Highlighter", "History", "HockeyWithPuck", "Home", "HorseHeadBridle", "HotTub", "Hurricane", "Ice", "Id", "Image", "ImageFile", "ImageGallery", "Inbox", "InboxDownArrow", "InboxUpArrow", "IndentRight", "Infinity", "Info", "InstitutionalWesternBank", "Italics", "JoyfulFace", "JudoUniform", "Keyboard", "KeylineShapes", "Kick", "KnightChessPiece", "Laptop", "LaptopWithPhone", "Laurel", "LaurelLeft", "LaurelRight", "LayoutBottom", "LayoutDefault", "LayoutFourColumn", "LayoutGrid", "LayoutPerfectGrid", "LayoutRight", "LayoutThreeColumn", "LayoutThreeRows", "LayoutTwoColumn", "LeftAlign", "LeftCurveArrow", "LeftPageArrow", "LeoAstrology", "Letter", "LetterColor", "LetterSize", "LibraAstrology", "LifeRing", "Lightbulb", "Lightning", "LightningDay", "LightningNight", "Link", "LiquidDrop", "Live", "Livestream", "Location", "LocationCircle", "LocationMap", "Lock", "LogIn", "LogOut", "Lollipop", "LoveEnvelope", "LoyaltyCard", "MagicWand", "MagnifyingGlass", "Mahjong", "MakeupBeauty", "Mannequin", "Medal", "MedicineBottle", "MedicinePill", "Megaphone", "Microphone", "Microscope", "Minus", "MinusBox", "MinusCircle", "MinusPeople", "MinusSearch", "MmaGlove", "MmaRing", "MobileNumber", "MobilePhone", "More", "MoreVertical", "NeutralFace", "NewMoon", "Newsletter", "Night", "NineSixteenRatio", "NoBell", "NoConnectionScreen", "NoEye", "NoHeart", "NoImage", "NoPeople", "NoShield", "NoSmoking", "NoSquare", "NoStar", "NoVideoCamera", "NoWifi", "NotificationBell", "Null", "NumberedList", "OnTop", "OneOneRatio", "OpenBook", "OpenEnvelope", "OrderedList", "OutdentLeft", "PDF", "PPT", "PaperPlane", "PaperPlaneDiagonal", "Paperclip", "Paragraph", "ParagraphLeftIdent", "ParagraphRightIdent", "Parking", "ParkingSquare", "PassKey", "Password", "Pause", "Payments", "Payphone", "PayphoneFace", "Pencil", "PencilLines", "People", "Person", "PersonClimbing", "PersonShield", "Pets", "Phone", "PieChart", "Pin", "PingPong", "PiscesAstrology", "PlainText", "Play", "PlayCircle", "Pool", "PowerSwitch", "Preferences", "PreferencesAlt", "Printer", "Priority", "Profile", "Progress", "ProgressWithCheck", "Pulse", "PuzzlePiece", "QrCode", "QuestionBubble", "QuoteCircle", "QuoteSquare", "RAW", "RTF", "RTFOff", "RacingFlag", "Radar", "RadioCircle", "RainDay", "RainNight", "Receipt", "Receipts", "RedoPencil", "Refresh", "Restaurant", "RetailTag", "RightAlign", "RightCurveArrow", "RightPageArrow", "RobotHead", "Running", "SadFace", "SadderFace", "SagittariusAstrology", "SailBoat", "Satellite", "ScaleDown", "ScanQrCode", "Scissors", "ScorpioAstrology", "SearchConfirm", "SearchEnvelope", "SearchWorldWithLines", "SecurityKey", "SendToSelf", "Server", "SettingsAlt", "SettingsCogPeople", "Shapes", "Share", "Shield", "ShieldCheck", "ShieldSlash", "ShockedFace", "ShoppingBag", "ShoppingBasket", "ShoppingCart", "Shuttlecock", "SixteenNineRatio", "Skateboard", "SkipTimeTen", "Skull", "Slideshow", "SmallSquareInsideBigSquare", "SmartWatch", "SmileFace", "SmileFaceLife", "Sms", "SmsVerificationCode", "Sneaker", "SneakerAlt", "Snippet", "Snow", "SnowDay", "SnowNight", "Snowflake", "Soccer", "Solitaire", "SoundLow", "SoundOff", "SoundOn", "Spa", "Sparkle", "SparkleFootballBall", "SparkleTennisBall", "SpecialCharacter", "SpeechBubble", "SpeechBubbleStar", "SportsBook", "SportsSparkle", "SprinkleDay", "SprinkleNight", "Square", "Stadium", "Star", "StarArticle", "StarMedal", "StarTrophy", "StatePrivacyControls", "StockTrends", "Stopwatch", "Store", "Strikethrough", "Sun", "Sunrise", "Sunset", "SurfboardOnSand", "Swimming", "Sync", "Tab", "Tablet", "TaurusAstrology", "TechnicalRoute", "Television", "TennisBall", "TennisRacketBall", "ThirdQuarter", "ThreeCircles", "ThreeFourRatio", "ThreeLines", "ThreeLinesSpread", "ThumbsDown", "ThumbsUp", "Thumbtack", "ThumbtackDiagonal", "TimePaperPlane", "Tornado", "Trading", "TrafficSignRightTurn", "Trampoline", "Transactions", "Trash", "Trending", "TrendingCircle", "Trophy", "TruckRight", "Tshirt", "Tsunami", "Tub", "TwoArrowsDiagonalInwards", "TwoArrowsDiagonalOutwards", "TwoCorners", "TwoHorizontalRectangles", "TwoLinesContainer", "TwoMasks", "TwoRectangles", "TwoSparkles", "TwoSquares", "TwoThirdsColumn", "Underline", "Unlock", "UnorderedList", "UpCurveArrow", "UpDownChevron", "UpDownShortArrows", "UpFolder", "Upload", "Verification", "VideoCamera", "VideoFile", "VirgoAstrology", "Virus", "Volleyball", "Walking", "Wallet", "WaningCrescent", "WaningGibbous", "Warning", "WaxingCrescent", "WaxingGibbous", "Web", "Weights", "Wifi", "Wind", "WindCloud", "WindCloudDay", "WindCloudNight", "Wine", "WorldWithLines", "Wrench", "WrestlingHeadGear", "WritingAi", "XLSFile", "YEP", "ZIP"];
87
87
  declare const multicolorIconNames: readonly ["Cloud", "CloudDay", "CloudNight", "Cold", "Dreary", "Dusk", "Eclipse", "FirstQuarter", "Fog", "FogDay", "FogNight", "FullMoon", "HalfSun", "HazeDay", "HazeNight", "HeavyRain", "HeavyRainDay", "HeavyRainLightning", "HeavyRainLightningDay", "HeavyRainLightningNight", "HeavyRainNight", "Hot", "Hurricane", "Ice", "IntermittentCloudsNight", "IntermittentCloudsSunny", "Lightning", "LightningDay", "LightningNight", "MostlyNightFlurries", "Night", "PartlyCloudyNight", "PartlyFlurries", "PartlyNightFlurries", "PartlySunny", "Rain", "RainDay", "RainNight", "Sleet", "Snow", "SnowDay", "Snowflake", "SprinkleDay", "SprinkleNight", "Sun", "Sunrise", "Sunset", "ThirdQuarter", "Tornado", "WaningCrescent", "WaningGibbous", "WaxingCrescent", "WaxingGibbous", "Wind", "WindCloud", "WindCloudDay", "WindCloudNight"];
88
88
  //#endregion
@@ -3,7 +3,7 @@ import { IconSize, IconVariant } from "../icons/dist/types.mjs";
3
3
  import "../uds/dist/index.mjs";
4
4
  import { GlyphName } from "../icons/dist/glyphMap.mjs";
5
5
  import { SvgGlyphName } from "../icons/dist/svgMap.mjs";
6
- import * as react19 from "react";
6
+ import * as react4 from "react";
7
7
  import { Ref } from "react";
8
8
  import { StyleProp, Text, TextProps, TextStyle } from "react-native";
9
9
  import { StyleProps } from "../../generated/styles";
@@ -82,7 +82,7 @@ interface IconProps extends Omit<TextProps, 'style'> {
82
82
  *
83
83
  * @see The {@link https://uds.build/docs/components/icon Icon Docs} for more info
84
84
  */
85
- declare const Icon: react19.NamedExoticComponent<IconProps>;
85
+ declare const Icon: react4.NamedExoticComponent<IconProps>;
86
86
  declare const iconNames: readonly ["A11Y", "Accessible", "AccountRecover", "AccountRefresh", "AccountSwitchAlt", "AccountSwitcher", "AcousticGuitar", "Add", "AddBell", "AddCalendar", "AddCheckCircle", "AddCircle", "AddContactCard", "AddDocument", "AddFace", "AddFolder", "AddPaperPlane", "AddPeople", "AddQuestion", "AddSearch", "AddSquare", "AffiliateLink", "AirQuality", "Airplane", "AirplaneLanding", "AirplaneTakeOff", "AngledSquareOnSquare", "AnyFile", "AppSwitcher", "AquariusAstrology", "Archive", "AriesAstrology", "ArrowDown", "ArrowDownCircle", "ArrowLeft", "ArrowLineDown", "ArrowLineUp", "ArrowRight", "ArrowUp", "Article", "ArtisticGymnastics", "Ascender", "AudioFile", "Authenticator", "AutoDownload", "AutoSaveOffline", "AutoSaveSync", "AutoSaveUpload", "AutoSaveUploadFail", "AutoSaved", "BabyBottle", "BackTimeTen", "Badge", "Balance", "BallInWater", "Barometer", "BaseBallBat", "Baseball", "Basketball", "BasketballHoop", "BeachUmbrella", "Bed", "Bell", "Below", "BigDownArrow", "BigLeftArrow", "BigRightArrow", "BigRightStraightArrow", "BigUpArrow", "Bike", "Bingo", "Binoculars", "BlackJack", "Bold", "Bolt", "Bookmark", "BottomLine", "BowAndArrow", "BoxCircle", "BoxFront", "BoxOnBox", "BoxingGlove", "Browser", "BubbleZone", "Building", "BulletPointContainer", "BulletPoints", "Bullseye", "BusFront", "BusinessBag", "Cake", "Calendar", "CalendarClock", "CalendarConfirm", "CalendarFile", "CalendarICSFile", "CalendarRightArrow", "Camera", "CancerAstrology", "Canoe", "CapriconAstrology", "Car", "CardsCheck", "Cash", "CelebrityStar", "CenterAlignment", "ChatAi", "Check", "CheckBookmark", "CheckBox", "CheckCircle", "CheckDocuments", "CheckEnvelope", "CheckPeople", "CheckSpeechBubble", "CheckVoteBallot", "Checklist", "ChevronDown", "ChevronLeft", "ChevronLeftPeople", "ChevronRight", "ChevronRightPeople", "ChevronUp", "Circle", "ClearText", "Clipboard", "Clock", "Clone", "ClosedCaption", "Cloud", "CloudDay", "CloudNight", "Cocktails", "Coffee", "CoffeeTakeout", "Cog", "Coin", "CollapseColumn", "Command", "Compass", "ComputerChip", "Connection", "ConnectionScreen", "ContactBook", "ContactCard", "Convert", "ConvertAlt", "ConvertLeft", "ConvertRight", "Cookies", "Coupon", "CreditCard", "CreditCardPayment", "CrescentMoon", "Cricket", "Cross", "CrossCircle", "CrossEnvelope", "CrossPeople", "CrossShield", "Crossword", "Cycling", "DOCFile", "DailyFantasy", "DaisyFlower", "Dandelion", "DataBook", "DataCloud", "DataSilo", "DataStorage", "Debug", "DeleteTab", "DeliveryPackage", "Dense", "DenyCircle", "Descender", "Desktop", "DiagonalKey", "DiagonalLeftDown", "DiagonalLeftUp", "DiagonalRightDown", "DiagonalRightUp", "Diamond", "Dice", "Dining", "Direction", "DiscoBall", "Document", "DocumentImageRectangle", "DocumentImageSquare", "DocumentRectangle", "DollarCircleArrows", "DotEnvelope", "DotTwoRings", "DoubleBigLeftArrow", "DoubleChevronLeft", "DoubleChevronRight", "DownCurveArrow", "Download", "DownloadCircle", "DownloadComplete", "DownloadInProgressCircle", "DraftDocument", "DragVertical", "Dusk", "Easel", "Eclipse", "Edit", "EmailVerification", "Emails", "Embed", "EntertainmentTv", "Envelope", "Error", "ExpandArrowLeft", "ExpandArrowRight", "ExpandColumn", "Eye", "EyeSearch", "EyeShut", "FaceID", "FallLeaf", "Family", "FastForward", "FencingEpee", "FilmReel", "FilmRoll", "FingerPointLeftArrow", "FingerPointRightArrow", "FingerPointSelect", "FingerPrint", "Fire", "FirstAidKit", "FirstQuarter", "FiveCircles", "Flag", "FlameTorch", "Fog", "FogDay", "Folder", "Font", "Football", "FootballHelmet", "ForestTree", "FourBoxes", "FourCorners", "FourCornersMagnifyingGlass", "FourCornersMusicNote", "FourLinesSpread", "FourThreeRatio", "FullMoon", "GIF", "GeminiAstrology", "GiftBox", "GolfTee", "GraduationHat", "Graph", "Gymnastics", "HalfStar", "HalfSun", "HappyFace", "HazeDay", "HazeNight", "Heading2", "Heading3", "Headline1", "HeadlineDocumentSquare", "Headphone", "HeadphonesMic", "Heart", "HeartArrow", "HeartPulse", "HeavyRain", "HeavyRainDay", "HeavyRainLightning", "HeavyRainLightningDay", "HeavyRainLightningNight", "HeavyRainNight", "Help", "Highlighter", "History", "HockeyWithPuck", "Home", "HorseHeadBridle", "HotTub", "Hurricane", "Ice", "Id", "Image", "ImageFile", "ImageGallery", "Inbox", "InboxDownArrow", "InboxUpArrow", "IndentRight", "Infinity", "Info", "InstitutionalWesternBank", "Italics", "JoyfulFace", "JudoUniform", "Keyboard", "KeylineShapes", "Kick", "KnightChessPiece", "Laptop", "LaptopWithPhone", "Laurel", "LaurelLeft", "LaurelRight", "LayoutBottom", "LayoutDefault", "LayoutFourColumn", "LayoutGrid", "LayoutPerfectGrid", "LayoutRight", "LayoutThreeColumn", "LayoutThreeRows", "LayoutTwoColumn", "LeftAlign", "LeftCurveArrow", "LeftPageArrow", "LeoAstrology", "Letter", "LetterColor", "LetterSize", "LibraAstrology", "LifeRing", "Lightbulb", "Lightning", "LightningDay", "LightningNight", "Link", "LiquidDrop", "Live", "Livestream", "Location", "LocationCircle", "LocationMap", "Lock", "LogIn", "LogOut", "Lollipop", "LoveEnvelope", "LoyaltyCard", "MagicWand", "MagnifyingGlass", "Mahjong", "MakeupBeauty", "Mannequin", "Medal", "MedicineBottle", "MedicinePill", "Megaphone", "Microphone", "Microscope", "Minus", "MinusBox", "MinusCircle", "MinusPeople", "MinusSearch", "MmaGlove", "MmaRing", "MobileNumber", "MobilePhone", "More", "MoreVertical", "NeutralFace", "NewMoon", "Newsletter", "Night", "NineSixteenRatio", "NoBell", "NoConnectionScreen", "NoEye", "NoHeart", "NoImage", "NoPeople", "NoShield", "NoSmoking", "NoSquare", "NoStar", "NoVideoCamera", "NoWifi", "NotificationBell", "Null", "NumberedList", "OnTop", "OneOneRatio", "OpenBook", "OpenEnvelope", "OrderedList", "OutdentLeft", "PDF", "PPT", "PaperPlane", "PaperPlaneDiagonal", "Paperclip", "Paragraph", "ParagraphLeftIdent", "ParagraphRightIdent", "Parking", "ParkingSquare", "PassKey", "Password", "Pause", "Payments", "Payphone", "PayphoneFace", "Pencil", "PencilLines", "People", "Person", "PersonClimbing", "PersonShield", "Pets", "Phone", "PieChart", "Pin", "PingPong", "PiscesAstrology", "PlainText", "Play", "PlayCircle", "Pool", "PowerSwitch", "Preferences", "PreferencesAlt", "Printer", "Priority", "Profile", "Progress", "ProgressWithCheck", "Pulse", "PuzzlePiece", "QrCode", "QuestionBubble", "QuoteCircle", "QuoteSquare", "RAW", "RTF", "RTFOff", "RacingFlag", "Radar", "RadioCircle", "RainDay", "RainNight", "Receipt", "Receipts", "RedoPencil", "Refresh", "Restaurant", "RetailTag", "RightAlign", "RightCurveArrow", "RightPageArrow", "RobotHead", "Running", "SadFace", "SadderFace", "SagittariusAstrology", "SailBoat", "Satellite", "ScaleDown", "ScanQrCode", "Scissors", "ScorpioAstrology", "SearchConfirm", "SearchEnvelope", "SearchWorldWithLines", "SecurityKey", "SendToSelf", "Server", "SettingsAlt", "SettingsCogPeople", "Shapes", "Share", "Shield", "ShieldCheck", "ShieldSlash", "ShockedFace", "ShoppingBag", "ShoppingBasket", "ShoppingCart", "Shuttlecock", "SixteenNineRatio", "Skateboard", "SkipTimeTen", "Skull", "Slideshow", "SmallSquareInsideBigSquare", "SmartWatch", "SmileFace", "SmileFaceLife", "Sms", "SmsVerificationCode", "Sneaker", "SneakerAlt", "Snippet", "Snow", "SnowDay", "SnowNight", "Snowflake", "Soccer", "Solitaire", "SoundLow", "SoundOff", "SoundOn", "Spa", "Sparkle", "SparkleFootballBall", "SparkleTennisBall", "SpecialCharacter", "SpeechBubble", "SpeechBubbleStar", "SportsBook", "SportsSparkle", "SprinkleDay", "SprinkleNight", "Square", "Stadium", "Star", "StarArticle", "StarMedal", "StarTrophy", "StatePrivacyControls", "StockTrends", "Stopwatch", "Store", "Strikethrough", "Sun", "Sunrise", "Sunset", "SurfboardOnSand", "Swimming", "Sync", "Tab", "Tablet", "TaurusAstrology", "TechnicalRoute", "Television", "TennisBall", "TennisRacketBall", "ThirdQuarter", "ThreeCircles", "ThreeFourRatio", "ThreeLines", "ThreeLinesSpread", "ThumbsDown", "ThumbsUp", "Thumbtack", "ThumbtackDiagonal", "TimePaperPlane", "Tornado", "Trading", "TrafficSignRightTurn", "Trampoline", "Transactions", "Trash", "Trending", "TrendingCircle", "Trophy", "TruckRight", "Tshirt", "Tsunami", "Tub", "TwoArrowsDiagonalInwards", "TwoArrowsDiagonalOutwards", "TwoCorners", "TwoHorizontalRectangles", "TwoLinesContainer", "TwoMasks", "TwoRectangles", "TwoSparkles", "TwoSquares", "TwoThirdsColumn", "Underline", "Unlock", "UnorderedList", "UpCurveArrow", "UpDownChevron", "UpDownShortArrows", "UpFolder", "Upload", "Verification", "VideoCamera", "VideoFile", "VirgoAstrology", "Virus", "Volleyball", "Walking", "Wallet", "WaningCrescent", "WaningGibbous", "Warning", "WaxingCrescent", "WaxingGibbous", "Web", "Weights", "Wifi", "Wind", "WindCloud", "WindCloudDay", "WindCloudNight", "Wine", "WorldWithLines", "Wrench", "WrestlingHeadGear", "WritingAi", "XLSFile", "YEP", "ZIP"];
87
87
  declare const multicolorIconNames: readonly ["Cloud", "CloudDay", "CloudNight", "Cold", "Dreary", "Dusk", "Eclipse", "FirstQuarter", "Fog", "FogDay", "FogNight", "FullMoon", "HalfSun", "HazeDay", "HazeNight", "HeavyRain", "HeavyRainDay", "HeavyRainLightning", "HeavyRainLightningDay", "HeavyRainLightningNight", "HeavyRainNight", "Hot", "Hurricane", "Ice", "IntermittentCloudsNight", "IntermittentCloudsSunny", "Lightning", "LightningDay", "LightningNight", "MostlyNightFlurries", "Night", "PartlyCloudyNight", "PartlyFlurries", "PartlyNightFlurries", "PartlySunny", "Rain", "RainDay", "RainNight", "Sleet", "Snow", "SnowDay", "Snowflake", "SprinkleDay", "SprinkleNight", "Sun", "Sunrise", "Sunset", "ThirdQuarter", "Tornado", "WaningCrescent", "WaningGibbous", "WaxingCrescent", "WaxingGibbous", "Wind", "WindCloud", "WindCloudDay", "WindCloudNight"];
88
88
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"Icon.d.mts","names":[],"sources":["../../src/components/Icon.tsx"],"sourcesContent":[],"mappings":";;;;;;;;;;;KAkCK,QAAA,GAAW,YAAY;UAElB,SAAA,SAAkB,KAAK;QACzB,IAAI;;EAHP,IAAA,EAKG,QALK;EAEH;EAAuB,IAAA,CAAA,EAKxB,QALwB;EACrB;EAAJ,KAAA,CAAA,EAME,UANF,CAAA,OAAA,CAAA;EAEA;EAEC,OAAA,CAAA,EAIG,WAJH;EAEC,eAAA,CAAA,EAIU,UAJV,CAAA,iBAAA,CAAA;EAEE,YAAA,CAAA,EAIK,UAJL,CAAA,cAAA,CAAA;EAEQ,oBAAA,CAAA,EAGK,UAHL,CAAA,sBAAA,CAAA;EAEH,kBAAA,CAAA,EAEM,UAFN,CAAA,oBAAA,CAAA;EACQ,uBAAA,CAAA,EAEG,UAFH,CAAA,yBAAA,CAAA;EACF,qBAAA,CAAA,EAEG,UAFH,CAAA,uBAAA,CAAA;EACK,WAAA,CAAA,EAEZ,UAFY,CAAA,aAAA,CAAA;EACF,gBAAA,CAAA,EAEL,UAFK,CAAA,kBAAA,CAAA;EACV,cAAA,CAAA,EAEG,UAFH,CAAA,gBAAA,CAAA;EACK,cAAA,CAAA,EAEF,UAFE,CAAA,gBAAA,CAAA;EACF,iBAAA,CAAA,EAEG,UAFH,CAAA,mBAAA,CAAA;EACA,WAAA,CAAA,EAEH,UAFG,CAAA,aAAA,CAAA;EACG,mBAAA,CAAA,EAEE,UAFF,CAAA,qBAAA,CAAA;EACN,qBAAA,CAAA,EAEU,UAFV,CAAA,uBAAA,CAAA;EACQ,gBAAA,CAAA,EAEH,UAFG,CAAA,kBAAA,CAAA;EACE,cAAA,CAAA,EAEP,UAFO,CAAA,gBAAA,CAAA;EACL,cAAA,CAAA,EAEF,UAFE,CAAA,gBAAA,CAAA;EACF,iBAAA,CAAA,EAEG,UAFH,CAAA,mBAAA,CAAA;EACA,UAAA,CAAA,EAGJ,UAHI,CAAA,YAAA,CAAA;EACG,YAAA,CAAA,EAIL,UAJK,CAAA,cAAA,CAAA;EAEP,UAAA,CAAA,EAGA,UAHA,CAAA,YAAA,CAAA;EAEE,UAAA,CAAA,EAEF,UAFE,CAAA,YAAA,CAAA;EACF,aAAA,CAAA,EAEG,UAFH,CAAA,eAAA,CAAA;EACA,iBAAA,CAAA,EAEO,UAFP,CAAA,mBAAA,CAAA;EACG,eAAA,CAAA,EAEE,UAFF,CAAA,iBAAA,CAAA;EACI,OAAA,CAAA,EAEV,UAFU,CAAA,SAAA,CAAA;EACF,WAAA,CAAA,EAGJ,UAHI,CAAA,aAAA,CAAA;EACR,SAAA,CAAA,EAGE,UAHF,CAAA,WAAA,CAAA;EAEI,SAAA,CAAA,EAEF,UAFE,CAAA,WAAA,CAAA;EACF,YAAA,CAAA,EAEG,UAFH,CAAA,cAAA,CAAA;EACA,gBAAA,CAAA,EAEO,UAFP,CAAA,kBAAA,CAAA;EACG,cAAA,CAAA,EAEE,UAFF,CAAA,gBAAA,CAAA;EACI,MAAA,CAAA,EAEV,UAFU,CAAA,QAAA,CAAA;EACF;EACR,mBAAA,CAAA,EAAA,MAAA;EAMS;EAAV,kBAAA,CAAA,EAAA,MAAA;EArDkB;EAAI,KAAA,CAAA,EAqDtB,SArDsB,CAqDZ,SArDY,CAAA;AAAA;AAuQhC;AACA;;;;;;;;;;;;;;;;;;;;;cAdM,MAAI,OAAA,CAAA,qBAAA;cAaG;cACA"}
1
+ {"version":3,"file":"Icon.d.mts","names":[],"sources":["../../src/components/Icon.tsx"],"sourcesContent":[],"mappings":";;;;;;;;;;;KAkCK,QAAA,GAAW,YAAY;UAElB,SAAA,SAAkB,KAAK;QACzB,IAAI;;EAHP,IAAA,EAKG,QALK;EAEH;EAAuB,IAAA,CAAA,EAKxB,QALwB;EACrB;EAAJ,KAAA,CAAA,EAME,UANF,CAAA,OAAA,CAAA;EAEA;EAEC,OAAA,CAAA,EAIG,WAJH;EAEC,eAAA,CAAA,EAIU,UAJV,CAAA,iBAAA,CAAA;EAEE,YAAA,CAAA,EAIK,UAJL,CAAA,cAAA,CAAA;EAEQ,oBAAA,CAAA,EAGK,UAHL,CAAA,sBAAA,CAAA;EAEH,kBAAA,CAAA,EAEM,UAFN,CAAA,oBAAA,CAAA;EACQ,uBAAA,CAAA,EAEG,UAFH,CAAA,yBAAA,CAAA;EACF,qBAAA,CAAA,EAEG,UAFH,CAAA,uBAAA,CAAA;EACK,WAAA,CAAA,EAEZ,UAFY,CAAA,aAAA,CAAA;EACF,gBAAA,CAAA,EAEL,UAFK,CAAA,kBAAA,CAAA;EACV,cAAA,CAAA,EAEG,UAFH,CAAA,gBAAA,CAAA;EACK,cAAA,CAAA,EAEF,UAFE,CAAA,gBAAA,CAAA;EACF,iBAAA,CAAA,EAEG,UAFH,CAAA,mBAAA,CAAA;EACA,WAAA,CAAA,EAEH,UAFG,CAAA,aAAA,CAAA;EACG,mBAAA,CAAA,EAEE,UAFF,CAAA,qBAAA,CAAA;EACN,qBAAA,CAAA,EAEU,UAFV,CAAA,uBAAA,CAAA;EACQ,gBAAA,CAAA,EAEH,UAFG,CAAA,kBAAA,CAAA;EACE,cAAA,CAAA,EAEP,UAFO,CAAA,gBAAA,CAAA;EACL,cAAA,CAAA,EAEF,UAFE,CAAA,gBAAA,CAAA;EACF,iBAAA,CAAA,EAEG,UAFH,CAAA,mBAAA,CAAA;EACA,UAAA,CAAA,EAGJ,UAHI,CAAA,YAAA,CAAA;EACG,YAAA,CAAA,EAIL,UAJK,CAAA,cAAA,CAAA;EAEP,UAAA,CAAA,EAGA,UAHA,CAAA,YAAA,CAAA;EAEE,UAAA,CAAA,EAEF,UAFE,CAAA,YAAA,CAAA;EACF,aAAA,CAAA,EAEG,UAFH,CAAA,eAAA,CAAA;EACA,iBAAA,CAAA,EAEO,UAFP,CAAA,mBAAA,CAAA;EACG,eAAA,CAAA,EAEE,UAFF,CAAA,iBAAA,CAAA;EACI,OAAA,CAAA,EAEV,UAFU,CAAA,SAAA,CAAA;EACF,WAAA,CAAA,EAGJ,UAHI,CAAA,aAAA,CAAA;EACR,SAAA,CAAA,EAGE,UAHF,CAAA,WAAA,CAAA;EAEI,SAAA,CAAA,EAEF,UAFE,CAAA,WAAA,CAAA;EACF,YAAA,CAAA,EAEG,UAFH,CAAA,cAAA,CAAA;EACA,gBAAA,CAAA,EAEO,UAFP,CAAA,kBAAA,CAAA;EACG,cAAA,CAAA,EAEE,UAFF,CAAA,gBAAA,CAAA;EACI,MAAA,CAAA,EAEV,UAFU,CAAA,QAAA,CAAA;EACF;EACR,mBAAA,CAAA,EAAA,MAAA;EAMS;EAAV,kBAAA,CAAA,EAAA,MAAA;EArDkB;EAAI,KAAA,CAAA,EAqDtB,SArDsB,CAqDZ,SArDY,CAAA;AAAA;AAuQhC;AACA;;;;;;;;;;;;;;;;;;;;;cAdM,MAAI,MAAA,CAAA,qBAAA;cAaG;cACA"}
@@ -3,7 +3,7 @@ import { IconVariant } from "../icons/dist/types.cjs";
3
3
  import { ButtonVariantFlat, IconButtonSize } from "../uds/dist/tokens/types.cjs";
4
4
  import { IconName } from "./Icon.cjs";
5
5
  import { PressableProps as PressableProps$1 } from "./Pressable.cjs";
6
- import * as react8 from "react";
6
+ import * as react0 from "react";
7
7
  import { Ref } from "react";
8
8
  import { View } from "react-native";
9
9
 
@@ -40,7 +40,7 @@ interface IconButtonProps extends Omit<PressableProps$1, 'children'> {
40
40
  * <IconButton name="Settings" loading />
41
41
  * ```
42
42
  */
43
- declare const IconButton: react8.NamedExoticComponent<IconButtonProps>;
43
+ declare const IconButton: react0.NamedExoticComponent<IconButtonProps>;
44
44
  //#endregion
45
45
  export { IconButton, type IconButtonProps };
46
46
  //# sourceMappingURL=IconButton.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"IconButton.d.cts","names":[],"sources":["../../src/components/IconButton.tsx"],"sourcesContent":[],"mappings":";;;;;;;;;;UA6CU,eAAA,SAAwB,KAAK;;QAE/B;;EAFE,OAAA,CAAA,EAIE,iBAJc;EAAa;EAE/B,IAAA,CAAA,EAIC,cAJD;EAEI;EAEH,WAAA,CAAA,EAEO,WAFP;EAEO,OAAA,CAAA,EAAA,OAAA;EAOJ;;;;EAsBN,cA0HJ,CAAA,EAAA,OAAA;QAhJM,IAAI;;;;;;;;;;;;;;;;;cAsBN,YAAU,MAAA,CAAA,qBAAA"}
1
+ {"version":3,"file":"IconButton.d.cts","names":[],"sources":["../../src/components/IconButton.tsx"],"sourcesContent":[],"mappings":";;;;;;;;;;UA6CU,eAAA,SAAwB,KAAK;;QAE/B;;EAFE,OAAA,CAAA,EAIE,iBAJc;EAAa;EAE/B,IAAA,CAAA,EAIC,cAJD;EAEI;EAEH,WAAA,CAAA,EAEO,WAFP;EAEO,OAAA,CAAA,EAAA,OAAA;EAOJ;;;;EAsBN,cA0HJ,CAAA,EAAA,OA1Hc;QAtBR,IAAI;;;;;;;;;;;;;;;;;cAsBN,YAAU,MAAA,CAAA,qBAAA"}
@@ -3,7 +3,7 @@ import { IconVariant } from "../icons/dist/types.mjs";
3
3
  import { ButtonVariantFlat, IconButtonSize } from "../uds/dist/tokens/types.mjs";
4
4
  import { IconName } from "./Icon.mjs";
5
5
  import { PressableProps as PressableProps$1 } from "./Pressable.mjs";
6
- import * as react1 from "react";
6
+ import * as react17 from "react";
7
7
  import { Ref } from "react";
8
8
  import { View } from "react-native";
9
9
 
@@ -40,7 +40,7 @@ interface IconButtonProps extends Omit<PressableProps$1, 'children'> {
40
40
  * <IconButton name="Settings" loading />
41
41
  * ```
42
42
  */
43
- declare const IconButton: react1.NamedExoticComponent<IconButtonProps>;
43
+ declare const IconButton: react17.NamedExoticComponent<IconButtonProps>;
44
44
  //#endregion
45
45
  export { IconButton, type IconButtonProps };
46
46
  //# sourceMappingURL=IconButton.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"IconButton.d.mts","names":[],"sources":["../../src/components/IconButton.tsx"],"sourcesContent":[],"mappings":";;;;;;;;;;UA6CU,eAAA,SAAwB,KAAK;;QAE/B;;EAFE,OAAA,CAAA,EAIE,iBAJc;EAAa;EAE/B,IAAA,CAAA,EAIC,cAJD;EAEI;EAEH,WAAA,CAAA,EAEO,WAFP;EAEO,OAAA,CAAA,EAAA,OAAA;EAOJ;;;;EAsBN,cA0HJ,CAAA,EAAA,OAAA;QAhJM,IAAI;;;;;;;;;;;;;;;;;cAsBN,YAAU,MAAA,CAAA,qBAAA"}
1
+ {"version":3,"file":"IconButton.d.mts","names":[],"sources":["../../src/components/IconButton.tsx"],"sourcesContent":[],"mappings":";;;;;;;;;;UA6CU,eAAA,SAAwB,KAAK;;QAE/B;;EAFE,OAAA,CAAA,EAIE,iBAJc;EAAa;EAE/B,IAAA,CAAA,EAIC,cAJD;EAEI;EAEH,WAAA,CAAA,EAEO,WAFP;EAEO,OAAA,CAAA,EAAA,OAAA;EAOJ;;;;EAsBN,cA0HJ,CAAA,EAAA,OAAA;QAhJM,IAAI;;;;;;;;;;;;;;;;;cAsBN,YAAU,OAAA,CAAA,qBAAA"}
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { IconName, IconProps } from "./Icon.cjs";
3
- import * as react9 from "react";
3
+ import * as react5 from "react";
4
4
  import { ReactElement, Ref } from "react";
5
5
  import { Text } from "react-native";
6
6
 
@@ -39,7 +39,7 @@ interface IconSlotProps extends IconPropsWithoutName {
39
39
  * - Pass Icon component for custom props
40
40
  * - Pass function for dynamic rendering
41
41
  */
42
- declare const IconSlot: react9.NamedExoticComponent<IconSlotProps>;
42
+ declare const IconSlot: react5.NamedExoticComponent<IconSlotProps>;
43
43
  //#endregion
44
44
  export { IconSlot, type IconSlotProps, type IconSlotType };
45
45
  //# sourceMappingURL=IconSlot.d.cts.map
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { IconName, IconProps } from "./Icon.mjs";
3
- import * as react0 from "react";
3
+ import * as react16 from "react";
4
4
  import { ReactElement, Ref } from "react";
5
5
  import { Text } from "react-native";
6
6
 
@@ -39,7 +39,7 @@ interface IconSlotProps extends IconPropsWithoutName {
39
39
  * - Pass Icon component for custom props
40
40
  * - Pass function for dynamic rendering
41
41
  */
42
- declare const IconSlot: react0.NamedExoticComponent<IconSlotProps>;
42
+ declare const IconSlot: react16.NamedExoticComponent<IconSlotProps>;
43
43
  //#endregion
44
44
  export { IconSlot, type IconSlotProps, type IconSlotType };
45
45
  //# sourceMappingURL=IconSlot.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"IconSlot.d.mts","names":[],"sources":["../../src/components/IconSlot.tsx"],"sourcesContent":[],"mappings":";;;;;;;KAOK,oBAAA,GAAuB,KAAK;KAE5B,YAAA,GACD,WACA,aAAa,0BACA,yBAAyB,aAAa;UAE7C,aAAA,SAAsB;EAP3B,GAAA,CAAA,EAQG,GARH,CAQO,IARP,CAAA;EAEA;EACD,IAAA,CAAA,EAOK,YAPL;;;;;;;AAEkD;;;;;;AAEF;;;;;;;;;;;;;;;;cAkC9C,UAAQ,MAAA,CAAA,qBAAA"}
1
+ {"version":3,"file":"IconSlot.d.mts","names":[],"sources":["../../src/components/IconSlot.tsx"],"sourcesContent":[],"mappings":";;;;;;;KAOK,oBAAA,GAAuB,KAAK;KAE5B,YAAA,GACD,WACA,aAAa,0BACA,yBAAyB,aAAa;UAE7C,aAAA,SAAsB;EAP3B,GAAA,CAAA,EAQG,GARH,CAQO,IARP,CAAA;EAEA;EACD,IAAA,CAAA,EAOK,YAPL;;;;;;;AAEkD;;;;;;AAEF;;;;;;;;;;;;;;;;cAkC9C,UAAQ,OAAA,CAAA,qBAAA"}
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { UniversalImageProps } from "../uds/dist/tokens/types.cjs";
3
- import * as react10 from "react";
3
+ import * as react12 from "react";
4
4
  import { Ref } from "react";
5
5
  import { Image as Image$1, ImageProps as ImageProps$1 } from "react-native";
6
6
  import { StyleProps } from "../../generated/styles";
@@ -79,7 +79,7 @@ interface ImageProps extends Omit<ImageProps$1, 'source' | 'src' | 'width' | 'he
79
79
  * <Image src={require('./local-image.png')} contentFit="cover" borderRadius="md" />
80
80
  * ```
81
81
  */
82
- declare const Image: react10.NamedExoticComponent<ImageProps>;
82
+ declare const Image: react12.NamedExoticComponent<ImageProps>;
83
83
  //#endregion
84
84
  export { Image, type ImageProps };
85
85
  //# sourceMappingURL=Image.d.cts.map
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { UniversalImageProps } from "../uds/dist/tokens/types.mjs";
3
- import * as react2 from "react";
3
+ import * as react19 from "react";
4
4
  import { Ref } from "react";
5
5
  import { Image as Image$1, ImageProps as ImageProps$1 } from "react-native";
6
6
  import { StyleProps } from "../../generated/styles";
@@ -79,7 +79,7 @@ interface ImageProps extends Omit<ImageProps$1, 'source' | 'src' | 'width' | 'he
79
79
  * <Image src={require('./local-image.png')} contentFit="cover" borderRadius="md" />
80
80
  * ```
81
81
  */
82
- declare const Image: react2.NamedExoticComponent<ImageProps>;
82
+ declare const Image: react19.NamedExoticComponent<ImageProps>;
83
83
  //#endregion
84
84
  export { Image, type ImageProps };
85
85
  //# sourceMappingURL=Image.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Image.d.mts","names":[],"sources":["../../src/components/Image.tsx"],"sourcesContent":[],"mappings":"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"}
1
+ {"version":3,"file":"Image.d.mts","names":[],"sources":["../../src/components/Image.tsx"],"sourcesContent":[],"mappings":"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"}