@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
@@ -2,7 +2,7 @@
2
2
  import { UniversalInputProps } from "../uds/dist/tokens/types.cjs";
3
3
  import { IconSlotType } from "./IconSlot.cjs";
4
4
  import { SizeProps } from "../types.cjs";
5
- import * as react11 from "react";
5
+ import * as react16 from "react";
6
6
  import { Ref } from "react";
7
7
  import { TextInput, TextInputProps } from "react-native";
8
8
 
@@ -33,7 +33,7 @@ interface InputProps extends Omit<UniversalInputProps<IconSlotType>, 'width'>, O
33
33
  *
34
34
  * @see The {@link https://uds.build/docs/components/input Input Docs} for more info
35
35
  */
36
- declare const Input: react11.NamedExoticComponent<InputProps>;
36
+ declare const Input: react16.NamedExoticComponent<InputProps>;
37
37
  //#endregion
38
38
  export { Input, type InputProps };
39
39
  //# sourceMappingURL=Input.d.cts.map
@@ -2,7 +2,7 @@
2
2
  import { UniversalInputProps } from "../uds/dist/tokens/types.mjs";
3
3
  import { IconSlotType } from "./IconSlot.mjs";
4
4
  import { SizeProps } from "../types.mjs";
5
- import * as react12 from "react";
5
+ import * as react9 from "react";
6
6
  import { Ref } from "react";
7
7
  import { TextInput, TextInputProps } from "react-native";
8
8
 
@@ -33,7 +33,7 @@ interface InputProps extends Omit<UniversalInputProps<IconSlotType>, 'width'>, O
33
33
  *
34
34
  * @see The {@link https://uds.build/docs/components/input Input Docs} for more info
35
35
  */
36
- declare const Input: react12.NamedExoticComponent<InputProps>;
36
+ declare const Input: react9.NamedExoticComponent<InputProps>;
37
37
  //#endregion
38
38
  export { Input, type InputProps };
39
39
  //# sourceMappingURL=Input.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Input.d.mts","names":[],"sources":["../../src/components/Input.tsx"],"sourcesContent":[],"mappings":";;;;;;;;;UAmBU,UAAA,SAEN,KAAK,oBAAoB,yBACzB,KAAK,uCACL,KAAK;QACD,IAAI;AAdmC;;;;;;;;;;;AAavC;;;;;;;;;;;;;cA+BF,OAAK,OAAA,CAAA,qBAAA"}
1
+ {"version":3,"file":"Input.d.mts","names":[],"sources":["../../src/components/Input.tsx"],"sourcesContent":[],"mappings":";;;;;;;;;UAmBU,UAAA,SAEN,KAAK,oBAAoB,yBACzB,KAAK,uCACL,KAAK;QACD,IAAI;AAdmC;;;;;;;;;;;AAavC;;;;;;;;;;;;;cA+BF,OAAK,MAAA,CAAA,qBAAA"}
@@ -3,7 +3,7 @@ import { UniversalLinkProps } from "../uds/dist/tokens/types.cjs";
3
3
  import "../uds/dist/index.cjs";
4
4
  import { IconSlotType } from "./IconSlot.cjs";
5
5
  import { TextProps as TextProps$1 } from "./Text.cjs";
6
- import * as react12 from "react";
6
+ import * as react11 from "react";
7
7
  import { ReactNode, Ref } from "react";
8
8
  import { Text, TextStyle } from "react-native";
9
9
 
@@ -39,7 +39,7 @@ interface LinkProps extends UniversalLinkProps<IconSlotType> {
39
39
  *
40
40
  * @see The {@link https://uds.build/docs/components/link Link Docs} for more info
41
41
  */
42
- declare const Link: react12.NamedExoticComponent<LinkProps>;
42
+ declare const Link: react11.NamedExoticComponent<LinkProps>;
43
43
  //#endregion
44
44
  export { Link, type LinkProps };
45
45
  //# sourceMappingURL=Link.d.cts.map
@@ -3,7 +3,7 @@ import { UniversalLinkProps } from "../uds/dist/tokens/types.mjs";
3
3
  import "../uds/dist/index.mjs";
4
4
  import { IconSlotType } from "./IconSlot.mjs";
5
5
  import { TextProps as TextProps$1 } from "./Text.mjs";
6
- import * as react3 from "react";
6
+ import * as react8 from "react";
7
7
  import { ReactNode, Ref } from "react";
8
8
  import { Text, TextStyle } from "react-native";
9
9
 
@@ -39,7 +39,7 @@ interface LinkProps extends UniversalLinkProps<IconSlotType> {
39
39
  *
40
40
  * @see The {@link https://uds.build/docs/components/link Link Docs} for more info
41
41
  */
42
- declare const Link: react3.NamedExoticComponent<LinkProps>;
42
+ declare const Link: react8.NamedExoticComponent<LinkProps>;
43
43
  //#endregion
44
44
  export { Link, type LinkProps };
45
45
  //# sourceMappingURL=Link.d.mts.map
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { SizeProps } from "../types.mjs";
3
- import * as react6 from "react";
3
+ import * as react14 from "react";
4
4
  import { Ref } from "react";
5
5
  import { PressableProps as PressableProps$1, View } from "react-native";
6
6
  import { StyleProps } from "../../generated/styles";
@@ -83,8 +83,8 @@ interface PressableProps extends PressableProps$1, SizeProps {
83
83
  *
84
84
  * @see The {@link https://uds.build/docs/components/pressable Pressable Docs} for more info
85
85
  */
86
- declare const Pressable: react6.NamedExoticComponent<PressableProps>;
87
- declare const AnimatedPressable: react6.FunctionComponent<react_native_reanimated0.AnimatedProps<PressableProps>>;
86
+ declare const Pressable: react14.NamedExoticComponent<PressableProps>;
87
+ declare const AnimatedPressable: react14.FunctionComponent<react_native_reanimated0.AnimatedProps<PressableProps>>;
88
88
  //#endregion
89
89
  export { AnimatedPressable, Pressable, type PressableProps };
90
90
  //# sourceMappingURL=Pressable.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Pressable.d.mts","names":[],"sources":["../../src/components/Pressable.tsx"],"sourcesContent":[],"mappings":";;;;;;;;;UAgBU,cAAA,SAAuB,kBAAkB;QAC3C,IAAI;oBAEQ;iBAEH;EALP,oBAAe,CAAA,EAMA,UANA,CAAA,sBAAA,CAAA;EACb,kBAAA,CAAA,EAMW,UANX,CAAA,oBAAA,CAAA;EAAJ,uBAAA,CAAA,EAOoB,UAPpB,CAAA,yBAAA,CAAA;EAEY,qBAAA,CAAA,EAMM,UANN,CAAA,uBAAA,CAAA;EAEH,WAAA,CAAA,EAKD,UALC,CAAA,aAAA,CAAA;EACQ,gBAAA,CAAA,EAKJ,UALI,CAAA,kBAAA,CAAA;EACF,cAAA,CAAA,EAKJ,UALI,CAAA,gBAAA,CAAA;EACK,cAAA,CAAA,EAKT,UALS,CAAA,gBAAA,CAAA;EACF,iBAAA,CAAA,EAKJ,UALI,CAAA,mBAAA,CAAA;EACV,WAAA,CAAA,EAKA,UALA,CAAA,aAAA,CAAA;EACK,mBAAA,CAAA,EAKG,UALH,CAAA,qBAAA,CAAA;EACF,qBAAA,CAAA,EAKO,UALP,CAAA,uBAAA,CAAA;EACA,gBAAA,CAAA,EAKE,UALF,CAAA,kBAAA,CAAA;EACG,cAAA,CAAA,EAKH,UALG,CAAA,gBAAA,CAAA;EACN,cAAA,CAAA,EAKG,UALH,CAAA,gBAAA,CAAA;EACQ,iBAAA,CAAA,EAKF,UALE,CAAA,mBAAA,CAAA;EACE,YAAA,CAAA,EAMT,UANS,CAAA,cAAA,CAAA;EACL,UAAA,CAAA,EAMN,UANM,CAAA,YAAA,CAAA;EACF,SAAA,CAAA,EAML,UANK,CAAA,WAAA,CAAA;EACA,IAAA,CAAA,EAMV,UANU,CAAA,MAAA,CAAA;EACG,aAAA,CAAA,EAMJ,UANI,CAAA,eAAA,CAAA;EAEL,QAAA,CAAA,EAKJ,UALI,CAAA,UAAA,CAAA;EACF,UAAA,CAAA,EAKA,UALA,CAAA,YAAA,CAAA;EACD,QAAA,CAAA,EAKD,UALC,CAAA,UAAA,CAAA;EACL,cAAA,CAAA,EAKU,UALV,CAAA,gBAAA,CAAA;EACS,OAAA,CAAA,EAMN,UANM,CAAA,SAAA,CAAA;EACL,QAAA,CAAA,EAMA,UANA,CAAA,UAAA,CAAA;EACE,OAAA,CAAA,EAOH,UAPG,CAAA,SAAA,CAAA;EACF,iBAAA,CAAA,EAOS,UAPT,CAAA,mBAAA,CAAA;EACM,eAAA,CAAA,EAOC,UAPD,CAAA,iBAAA,CAAA;EAEP,aAAA,CAAA,EAMM,UANN,CAAA,eAAA,CAAA;EACC,UAAA,CAAA,EAME,UANF,CAAA,YAAA,CAAA;EAED,YAAA,CAAA,EAKK,UALL,CAAA,cAAA,CAAA;EACU,UAAA,CAAA,EAKP,UALO,CAAA,YAAA,CAAA;EACF,MAAA,CAAA,EAMT,UANS,CAAA,QAAA,CAAA;EACF,cAAA,CAAA,EAMC,UAND,CAAA,gBAAA,CAAA;EACH,gBAAA,CAAA,EAMM,UANN,CAAA,kBAAA,CAAA;EACE,YAAA,CAAA,EAMA,UANA,CAAA,cAAA,CAAA;EACF,SAAA,CAAA,EAMD,UANC,CAAA,WAAA,CAAA;EAEJ,WAAA,CAAA,EAKK,UALL,CAAA,aAAA,CAAA;EACQ,SAAA,CAAA,EAKL,UALK,CAAA,WAAA,CAAA;EACE,SAAA,CAAA,EAMP,UANO,CAAA,WAAA,CAAA;EACJ,MAAA,CAAA,EAMN,UANM,CAAA,QAAA,CAAA;EACH,OAAA,CAAA,EAAA,MAAA;;;;;;;;AAhD8C;AAqF7C;;;;;;;;;;;;;;;;;;;;cAAT,WAAS,MAAA,CAAA,qBAAA;cAoJT,mBAAiB,MAAA,CAAA,kBAAA,wBAAA,CAAA,cAAA"}
1
+ {"version":3,"file":"Pressable.d.mts","names":[],"sources":["../../src/components/Pressable.tsx"],"sourcesContent":[],"mappings":";;;;;;;;;UAgBU,cAAA,SAAuB,kBAAkB;QAC3C,IAAI;oBAEQ;iBAEH;EALP,oBAAe,CAAA,EAMA,UANA,CAAA,sBAAA,CAAA;EACb,kBAAA,CAAA,EAMW,UANX,CAAA,oBAAA,CAAA;EAAJ,uBAAA,CAAA,EAOoB,UAPpB,CAAA,yBAAA,CAAA;EAEY,qBAAA,CAAA,EAMM,UANN,CAAA,uBAAA,CAAA;EAEH,WAAA,CAAA,EAKD,UALC,CAAA,aAAA,CAAA;EACQ,gBAAA,CAAA,EAKJ,UALI,CAAA,kBAAA,CAAA;EACF,cAAA,CAAA,EAKJ,UALI,CAAA,gBAAA,CAAA;EACK,cAAA,CAAA,EAKT,UALS,CAAA,gBAAA,CAAA;EACF,iBAAA,CAAA,EAKJ,UALI,CAAA,mBAAA,CAAA;EACV,WAAA,CAAA,EAKA,UALA,CAAA,aAAA,CAAA;EACK,mBAAA,CAAA,EAKG,UALH,CAAA,qBAAA,CAAA;EACF,qBAAA,CAAA,EAKO,UALP,CAAA,uBAAA,CAAA;EACA,gBAAA,CAAA,EAKE,UALF,CAAA,kBAAA,CAAA;EACG,cAAA,CAAA,EAKH,UALG,CAAA,gBAAA,CAAA;EACN,cAAA,CAAA,EAKG,UALH,CAAA,gBAAA,CAAA;EACQ,iBAAA,CAAA,EAKF,UALE,CAAA,mBAAA,CAAA;EACE,YAAA,CAAA,EAMT,UANS,CAAA,cAAA,CAAA;EACL,UAAA,CAAA,EAMN,UANM,CAAA,YAAA,CAAA;EACF,SAAA,CAAA,EAML,UANK,CAAA,WAAA,CAAA;EACA,IAAA,CAAA,EAMV,UANU,CAAA,MAAA,CAAA;EACG,aAAA,CAAA,EAMJ,UANI,CAAA,eAAA,CAAA;EAEL,QAAA,CAAA,EAKJ,UALI,CAAA,UAAA,CAAA;EACF,UAAA,CAAA,EAKA,UALA,CAAA,YAAA,CAAA;EACD,QAAA,CAAA,EAKD,UALC,CAAA,UAAA,CAAA;EACL,cAAA,CAAA,EAKU,UALV,CAAA,gBAAA,CAAA;EACS,OAAA,CAAA,EAMN,UANM,CAAA,SAAA,CAAA;EACL,QAAA,CAAA,EAMA,UANA,CAAA,UAAA,CAAA;EACE,OAAA,CAAA,EAOH,UAPG,CAAA,SAAA,CAAA;EACF,iBAAA,CAAA,EAOS,UAPT,CAAA,mBAAA,CAAA;EACM,eAAA,CAAA,EAOC,UAPD,CAAA,iBAAA,CAAA;EAEP,aAAA,CAAA,EAMM,UANN,CAAA,eAAA,CAAA;EACC,UAAA,CAAA,EAME,UANF,CAAA,YAAA,CAAA;EAED,YAAA,CAAA,EAKK,UALL,CAAA,cAAA,CAAA;EACU,UAAA,CAAA,EAKP,UALO,CAAA,YAAA,CAAA;EACF,MAAA,CAAA,EAMT,UANS,CAAA,QAAA,CAAA;EACF,cAAA,CAAA,EAMC,UAND,CAAA,gBAAA,CAAA;EACH,gBAAA,CAAA,EAMM,UANN,CAAA,kBAAA,CAAA;EACE,YAAA,CAAA,EAMA,UANA,CAAA,cAAA,CAAA;EACF,SAAA,CAAA,EAMD,UANC,CAAA,WAAA,CAAA;EAEJ,WAAA,CAAA,EAKK,UALL,CAAA,aAAA,CAAA;EACQ,SAAA,CAAA,EAKL,UALK,CAAA,WAAA,CAAA;EACE,SAAA,CAAA,EAMP,UANO,CAAA,WAAA,CAAA;EACJ,MAAA,CAAA,EAMN,UANM,CAAA,QAAA,CAAA;EACH,OAAA,CAAA,EAAA,MAAA;;;;;;;;AAhD8C;AAqF7C;;;;;;;;;;;;;;;;;;;;cAAT,WAAS,OAAA,CAAA,qBAAA;cAoJT,mBAAiB,OAAA,CAAA,kBAAA,wBAAA,CAAA,cAAA"}
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { UniversalRadioProps } from "../uds/dist/tokens/types.cjs";
3
- import * as react16 from "react";
3
+ import * as react18 from "react";
4
4
  import { Ref } from "react";
5
5
  import { View, ViewProps } from "react-native";
6
6
 
@@ -40,7 +40,7 @@ interface RadioProps extends Omit<ViewProps, 'style'>, UniversalRadioProps {
40
40
  *
41
41
  * @see The {@link https://uds.build/docs/components/radio Radio Docs} for more info
42
42
  */
43
- declare const Radio: react16.NamedExoticComponent<RadioProps>;
43
+ declare const Radio: react18.NamedExoticComponent<RadioProps>;
44
44
  //#endregion
45
45
  export { Radio, type RadioProps };
46
46
  //# sourceMappingURL=Radio.d.cts.map
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { UniversalRadioProps } from "../uds/dist/tokens/types.mjs";
3
- import * as react8 from "react";
3
+ import * as react10 from "react";
4
4
  import { Ref } from "react";
5
5
  import { View, ViewProps } from "react-native";
6
6
 
@@ -40,7 +40,7 @@ interface RadioProps extends Omit<ViewProps, 'style'>, UniversalRadioProps {
40
40
  *
41
41
  * @see The {@link https://uds.build/docs/components/radio Radio Docs} for more info
42
42
  */
43
- declare const Radio: react8.NamedExoticComponent<RadioProps>;
43
+ declare const Radio: react10.NamedExoticComponent<RadioProps>;
44
44
  //#endregion
45
45
  export { Radio, type RadioProps };
46
46
  //# sourceMappingURL=Radio.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Radio.d.mts","names":[],"sources":["../../src/components/Radio.tsx"],"sourcesContent":[],"mappings":";;;;;;;UAwBU,UAAA,SAAmB,KAAK,qBAAqB;QAC/C,IAAI;;EADF,cAAW,CAAA,EAAA,OAAA;EAAa;EACtB,QAAA,CAAA,EAAA,OAAA;EAAJ;EADqB,QAAA,CAAA,EAAA,OAAA;EAA0B;EAAmB,QAAA,CAAA,EAAA,CAAA,OAAA,EAAA,OAAA,EAAA,GAAA,IAAA;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;cAoDpE,OAAK,MAAA,CAAA,qBAAA"}
1
+ {"version":3,"file":"Radio.d.mts","names":[],"sources":["../../src/components/Radio.tsx"],"sourcesContent":[],"mappings":";;;;;;;UAwBU,UAAA,SAAmB,KAAK,qBAAqB;QAC/C,IAAI;;EADF,cAAW,CAAA,EAAA,OAAA;EAAa;EACtB,QAAA,CAAA,EAAA,OAAA;EAAJ;EADqB,QAAA,CAAA,EAAA,OAAA;EAA0B;EAAmB,QAAA,CAAA,EAAA,CAAA,OAAA,EAAA,OAAA,EAAA,GAAA,IAAA;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;cAoDpE,OAAK,OAAA,CAAA,qBAAA"}
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { HStackProps } from "./HStack.cjs";
3
- import * as react15 from "react";
3
+ import * as react17 from "react";
4
4
  import { ReactNode, Ref } from "react";
5
5
  import { ScrollView, ScrollViewProps } from "react-native";
6
6
  import { StyleProps } from "../../generated/styles";
@@ -47,7 +47,7 @@ interface ScreenProps extends ScrollViewProps {
47
47
  *
48
48
  * @see The {@link https://uds.build/docs/components/screen Screen Docs} for more info
49
49
  */
50
- declare const Screen: react15.NamedExoticComponent<ScreenProps>;
50
+ declare const Screen: react17.NamedExoticComponent<ScreenProps>;
51
51
  //#endregion
52
52
  export { Screen, type ScreenProps };
53
53
  //# sourceMappingURL=Screen.d.cts.map
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { HStackProps } from "./HStack.mjs";
3
- import * as react15 from "react";
3
+ import * as react5 from "react";
4
4
  import { ReactNode, Ref } from "react";
5
5
  import { ScrollView, ScrollViewProps } from "react-native";
6
6
  import { StyleProps } from "../../generated/styles";
@@ -47,7 +47,7 @@ interface ScreenProps extends ScrollViewProps {
47
47
  *
48
48
  * @see The {@link https://uds.build/docs/components/screen Screen Docs} for more info
49
49
  */
50
- declare const Screen: react15.NamedExoticComponent<ScreenProps>;
50
+ declare const Screen: react5.NamedExoticComponent<ScreenProps>;
51
51
  //#endregion
52
52
  export { Screen, type ScreenProps };
53
53
  //# sourceMappingURL=Screen.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Screen.d.mts","names":[],"sources":["../../src/components/Screen.tsx"],"sourcesContent":[],"mappings":";;;;;;;;UAYU,WAAA,SAAoB;QACtB,IAAI;EADF,eAAY,CAAA,EAGF,UAHE,CAAA,iBAAA,CAAA;EACV,iBAAA,CAAA,EAIU,UAJV,CAAA,mBAAA,CAAA;EAAJ,UAAA,CAAA,EAKO,UALP,CAAA,YAAA,CAAA;EAEY,GAAA,CAAA,EAIZ,UAJY,CAAA,WAAA,CAAA;EAEE,YAAA,CAAA,EAIL,SAJK;EACP,iBAAA,CAAA,EAIO,WAJP;;;;;;AAN8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA6CvC,QAAM,OAAA,CAAA,qBAAA"}
1
+ {"version":3,"file":"Screen.d.mts","names":[],"sources":["../../src/components/Screen.tsx"],"sourcesContent":[],"mappings":";;;;;;;;UAYU,WAAA,SAAoB;QACtB,IAAI;EADF,eAAY,CAAA,EAGF,UAHE,CAAA,iBAAA,CAAA;EACV,iBAAA,CAAA,EAIU,UAJV,CAAA,mBAAA,CAAA;EAAJ,UAAA,CAAA,EAKO,UALP,CAAA,YAAA,CAAA;EAEY,GAAA,CAAA,EAIZ,UAJY,CAAA,WAAA,CAAA;EAEE,YAAA,CAAA,EAIL,SAJK;EACP,iBAAA,CAAA,EAIO,WAJP;;;;;;AAN8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA6CvC,QAAM,MAAA,CAAA,qBAAA"}
@@ -1,7 +1,7 @@
1
1
 
2
2
  import { UniversalSwitchProps } from "../uds/dist/tokens/types.cjs";
3
3
  import { IconSlotType } from "./IconSlot.cjs";
4
- import * as react17 from "react";
4
+ import * as react2 from "react";
5
5
  import { Ref } from "react";
6
6
  import { AccessibilityProps, View } from "react-native";
7
7
 
@@ -36,7 +36,7 @@ interface SwitchProps extends UniversalSwitchProps<IconSlotType> {
36
36
  *
37
37
  * @see The {@link https://uds.build/docs/components/switch Switch Docs} for more info
38
38
  */
39
- declare const Switch: react17.NamedExoticComponent<SwitchProps>;
39
+ declare const Switch: react2.NamedExoticComponent<SwitchProps>;
40
40
  //#endregion
41
41
  export { Switch, type SwitchProps };
42
42
  //# sourceMappingURL=Switch.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Switch.d.cts","names":[],"sources":["../../src/components/Switch.tsx"],"sourcesContent":[],"mappings":";;;;;;;;UAeU,WAAA,SAAoB,qBAAqB;;QAE3C,IAAI;EAFF;EAAyC,QAAA,CAAA,EAAA,CAAA,KAAA,EAAA,OAAA,EAAA,GAAA,IAAA;EAEvC;EAAJ,QAAA,CAAA,EAAA,OAAA;EAQc;EAVQ,QAAA,CAAA,EAAA,OAAA;EAAoB;EAsC5C,iBA8IJ,CAAA,EA1KoB,kBA4BV,CAAA,mBAAA,CAAA;;;;;;;;;;;;;;;;;;;;cAAN,QAAM,OAAA,CAAA,qBAAA"}
1
+ {"version":3,"file":"Switch.d.cts","names":[],"sources":["../../src/components/Switch.tsx"],"sourcesContent":[],"mappings":";;;;;;;;UAeU,WAAA,SAAoB,qBAAqB;;QAE3C,IAAI;EAFF;EAAyC,QAAA,CAAA,EAAA,CAAA,KAAA,EAAA,OAAA,EAAA,GAAA,IAAA;EAEvC;EAAJ,QAAA,CAAA,EAAA,OAAA;EAQc;EAVQ,QAAA,CAAA,EAAA,OAAA;EAAoB;EAsC5C,iBA8IJ,CAAA,EA1KoB,kBA4BV,CAAA,mBAAA,CAAA;;;;;;;;;;;;;;;;;;;;cAAN,QAAM,MAAA,CAAA,qBAAA"}
@@ -1,7 +1,7 @@
1
1
 
2
2
  import { UniversalSwitchProps } from "../uds/dist/tokens/types.mjs";
3
3
  import { IconSlotType } from "./IconSlot.mjs";
4
- import * as react10 from "react";
4
+ import * as react6 from "react";
5
5
  import { Ref } from "react";
6
6
  import { AccessibilityProps, View } from "react-native";
7
7
 
@@ -36,7 +36,7 @@ interface SwitchProps extends UniversalSwitchProps<IconSlotType> {
36
36
  *
37
37
  * @see The {@link https://uds.build/docs/components/switch Switch Docs} for more info
38
38
  */
39
- declare const Switch: react10.NamedExoticComponent<SwitchProps>;
39
+ declare const Switch: react6.NamedExoticComponent<SwitchProps>;
40
40
  //#endregion
41
41
  export { Switch, type SwitchProps };
42
42
  //# sourceMappingURL=Switch.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Switch.d.mts","names":[],"sources":["../../src/components/Switch.tsx"],"sourcesContent":[],"mappings":";;;;;;;;UAeU,WAAA,SAAoB,qBAAqB;;QAE3C,IAAI;EAFF;EAAyC,QAAA,CAAA,EAAA,CAAA,KAAA,EAAA,OAAA,EAAA,GAAA,IAAA;EAEvC;EAAJ,QAAA,CAAA,EAAA,OAAA;EAQc;EAVQ,QAAA,CAAA,EAAA,OAAA;EAAoB;EAsC5C,iBA8IJ,CAAA,EA1KoB,kBA4BV,CAAA,mBAAA,CAAA;;;;;;;;;;;;;;;;;;;;cAAN,QAAM,OAAA,CAAA,qBAAA"}
1
+ {"version":3,"file":"Switch.d.mts","names":[],"sources":["../../src/components/Switch.tsx"],"sourcesContent":[],"mappings":";;;;;;;;UAeU,WAAA,SAAoB,qBAAqB;;QAE3C,IAAI;EAFF;EAAyC,QAAA,CAAA,EAAA,CAAA,KAAA,EAAA,OAAA,EAAA,GAAA,IAAA;EAEvC;EAAJ,QAAA,CAAA,EAAA,OAAA;EAQc;EAVQ,QAAA,CAAA,EAAA,OAAA;EAAoB;EAsC5C,iBA8IJ,CAAA,EA1KoB,kBA4BV,CAAA,mBAAA,CAAA;;;;;;;;;;;;;;;;;;;;cAAN,QAAM,MAAA,CAAA,qBAAA"}
@@ -1,5 +1,5 @@
1
1
 
2
- import * as react18 from "react";
2
+ import * as react15 from "react";
3
3
  import { Ref } from "react";
4
4
  import { Text as Text$1, TextProps as TextProps$1, TextStyle } from "react-native";
5
5
  import { StyleProps } from "../../generated/styles";
@@ -90,7 +90,7 @@ interface TextProps extends TextProps$1 {
90
90
  *
91
91
  * @see The {@link https://uds.build/docs/components/text Text Docs} for more info
92
92
  */
93
- declare const Text: react18.NamedExoticComponent<TextProps>;
93
+ declare const Text: react15.NamedExoticComponent<TextProps>;
94
94
  //#endregion
95
95
  export { Text, type TextProps };
96
96
  //# sourceMappingURL=Text.d.cts.map
@@ -1,5 +1,5 @@
1
1
 
2
- import * as react11 from "react";
2
+ import * as react18 from "react";
3
3
  import { Ref } from "react";
4
4
  import { Text as Text$1, TextProps as TextProps$1, TextStyle } from "react-native";
5
5
  import { StyleProps } from "../../generated/styles";
@@ -90,7 +90,7 @@ interface TextProps extends TextProps$1 {
90
90
  *
91
91
  * @see The {@link https://uds.build/docs/components/text Text Docs} for more info
92
92
  */
93
- declare const Text: react11.NamedExoticComponent<TextProps>;
93
+ declare const Text: react18.NamedExoticComponent<TextProps>;
94
94
  //#endregion
95
95
  export { Text, type TextProps };
96
96
  //# sourceMappingURL=Text.d.mts.map
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { BoxProps } from "./Box.mjs";
3
- import * as react14 from "react";
3
+ import * as react7 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 VStackProps extends Omit<BoxProps, 'ref'> {
35
35
  *
36
36
  * @related [HStack](https://uds.build/docs/components/h-stack), [Box](https://uds.build/docs/components/box)
37
37
  */
38
- declare const VStack: react14.NamedExoticComponent<VStackProps>;
38
+ declare const VStack: react7.NamedExoticComponent<VStackProps>;
39
39
  //#endregion
40
40
  export { VStack, type VStackProps };
41
41
  //# sourceMappingURL=VStack.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"VStack.d.mts","names":[],"sources":["../../src/components/VStack.tsx"],"sourcesContent":[],"mappings":";;;;;;;;UAQU,WAAA,SAAoB,KAAK;QAC3B;QACA,IAAI;AAL0B;;;;;;;AAGJ;;;;;;;;;;;;;;;;;;;cA8B5B,QAAM,OAAA,CAAA,qBAAA"}
1
+ {"version":3,"file":"VStack.d.mts","names":[],"sources":["../../src/components/VStack.tsx"],"sourcesContent":[],"mappings":";;;;;;;;UAQU,WAAA,SAAoB,KAAK;QAC3B;QACA,IAAI;AAL0B;;;;;;;AAGJ;;;;;;;;;;;;;;;;;;;cA8B5B,QAAM,MAAA,CAAA,qBAAA"}
@@ -3,7 +3,7 @@
3
3
 
4
4
  //#region generated/font/glyphMap.d.ts
5
5
 
6
- type GlyphName = typeof glyphNames[number];
6
+ type GlyphName = (typeof glyphNames)[number];
7
7
  declare const glyphNames: 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"];
8
8
  //#endregion
9
9
  export { GlyphName };
@@ -1 +1 @@
1
- {"version":3,"file":"glyphMap.d.cts","names":["IconPixelSize","GlyphName","glyphNames","GlyphVariant","GlyphKey","glyphMap","Record"],"sources":["../../../../icons/dist/glyphMap.d.ts"],"sourcesContent":["\nimport { IconPixelSize } from \"@yahoo/uds-icons/types\";\n\n//#region generated/font/glyphMap.d.ts\n\ntype GlyphName = typeof glyphNames[number];\ntype GlyphVariant = 'fill' | 'outline';\ntype GlyphKey = `${GlyphName}-${GlyphVariant}-${IconPixelSize}`;\ndeclare const glyphNames: 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\"];\ndeclare const glyphMap: Record<GlyphKey, string>;\n//#endregion\nexport { GlyphKey, GlyphName, GlyphVariant, glyphMap, glyphNames };"],"mappings":";;;;;KAKKC,SAAAA,UAAmBC;cAGVA"}
1
+ {"version":3,"file":"glyphMap.d.cts","names":["IconPixelSize","GlyphName","glyphNames","GlyphVariant","GlyphKey","glyphMap","Record"],"sources":["../../../../icons/dist/glyphMap.d.ts"],"sourcesContent":["\nimport { IconPixelSize } from \"@yahoo/uds-icons/types\";\n\n//#region generated/font/glyphMap.d.ts\n\ntype GlyphName = (typeof glyphNames)[number];\ntype GlyphVariant = 'fill' | 'outline';\ntype GlyphKey = `${GlyphName}-${GlyphVariant}-${IconPixelSize}`;\ndeclare const glyphNames: 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\"];\ndeclare const glyphMap: Record<GlyphKey, string>;\n//#endregion\nexport { GlyphKey, GlyphName, GlyphVariant, glyphMap, glyphNames };"],"mappings":";;;;;KAKKC,SAAAA,WAAoBC;cAGXA"}
@@ -3,7 +3,7 @@
3
3
 
4
4
  //#region generated/font/glyphMap.d.ts
5
5
 
6
- type GlyphName = typeof glyphNames[number];
6
+ type GlyphName = (typeof glyphNames)[number];
7
7
  declare const glyphNames: 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"];
8
8
  //#endregion
9
9
  export { GlyphName };
@@ -1 +1 @@
1
- {"version":3,"file":"glyphMap.d.mts","names":["IconPixelSize","GlyphName","glyphNames","GlyphVariant","GlyphKey","glyphMap","Record"],"sources":["../../../../icons/dist/glyphMap.d.ts"],"sourcesContent":["\nimport { IconPixelSize } from \"@yahoo/uds-icons/types\";\n\n//#region generated/font/glyphMap.d.ts\n\ntype GlyphName = typeof glyphNames[number];\ntype GlyphVariant = 'fill' | 'outline';\ntype GlyphKey = `${GlyphName}-${GlyphVariant}-${IconPixelSize}`;\ndeclare const glyphNames: 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\"];\ndeclare const glyphMap: Record<GlyphKey, string>;\n//#endregion\nexport { GlyphKey, GlyphName, GlyphVariant, glyphMap, glyphNames };"],"mappings":";;;;;KAKKC,SAAAA,UAAmBC;cAGVA"}
1
+ {"version":3,"file":"glyphMap.d.mts","names":["IconPixelSize","GlyphName","glyphNames","GlyphVariant","GlyphKey","glyphMap","Record"],"sources":["../../../../icons/dist/glyphMap.d.ts"],"sourcesContent":["\nimport { IconPixelSize } from \"@yahoo/uds-icons/types\";\n\n//#region generated/font/glyphMap.d.ts\n\ntype GlyphName = (typeof glyphNames)[number];\ntype GlyphVariant = 'fill' | 'outline';\ntype GlyphKey = `${GlyphName}-${GlyphVariant}-${IconPixelSize}`;\ndeclare const glyphNames: 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\"];\ndeclare const glyphMap: Record<GlyphKey, string>;\n//#endregion\nexport { GlyphKey, GlyphName, GlyphVariant, glyphMap, glyphNames };"],"mappings":";;;;;KAKKC,SAAAA,WAAoBC;cAGXA"}
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.mts","names":["IconPixelSize","IconSize","IconVariant","SvgIconProps","SvgIconWithStaticProps","SvgIconProps$1","React","FunctionComponent","SvgIcon"],"sources":["../../../../icons/dist/types.d.ts"],"sourcesContent":["\n//#region src/types.d.ts\ntype IconPixelSize = 12 | 16 | 24 | 32;\ntype IconSize = 'xs' | 'sm' | 'md' | 'lg';\ntype IconVariant = 'fill' | 'outline' | 'multicolor';\ninterface SvgIconProps {\n size?: IconSize;\n variant?: IconVariant;\n}\ninterface SvgIconWithStaticProps<SvgIconProps$1> extends React.FunctionComponent<SvgIconProps$1> {\n metadata: {\n /** Icon name */\n name: string;\n /** Whether this is an SVG icon */\n isSvgIcon: boolean;\n /** List of available variants for this icon */\n variants: IconVariant[];\n };\n}\ntype SvgIcon = SvgIconWithStaticProps<SvgIconProps>;\n//#endregion\nexport { type IconPixelSize, type IconSize, type IconVariant, type SvgIcon, type SvgIconProps, type SvgIconWithStaticProps };"],"mappings":";;;AAIgB,KADXC,QAAAA,GAEKE,IAAY,GAAA,IAAA,GAAA,IACbF,GAAAA,IAAAA;AACc,KAHlBC,WAAAA,GAKKE,MAAAA,GAAAA,SAAsBC,GAAAA,YAAAA;UAJtBF,YAAAA,CAIuEE;EAOnEH,IAAAA,CAAAA,EAVLD,QAUKC;EAP2CI,OAAMC,CAAAA,EAFnDL,WAEmDK;;AAAiB,UAAtEH,sBAU4BD,CAAAA,cAAvBC,CAAAA,SAV0CE,KAAAA,CAAMC,iBAU1B,CAV4CF,cAU5C,CAAA,CAAA;;;;;;;cAHvBH;;;KAGTM,OAAAA,GAAUJ,uBAAuBD"}
1
+ {"version":3,"file":"types.d.mts","names":["IconPixelSize","IconSize","IconVariant","SvgIconProps","SvgIconWithStaticProps","SvgIconProps$1","React","FunctionComponent","SvgIcon"],"sources":["../../../../icons/dist/types.d.ts"],"sourcesContent":["\n//#region src/types.d.ts\ntype IconPixelSize = 12 | 16 | 24 | 32;\ntype IconSize = 'xs' | 'sm' | 'md' | 'lg';\ntype IconVariant = 'fill' | 'outline' | 'multicolor';\ninterface SvgIconProps {\n size?: IconSize;\n variant?: IconVariant;\n}\ninterface SvgIconWithStaticProps<SvgIconProps$1> extends React.FunctionComponent<SvgIconProps$1> {\n metadata: {\n /** Icon name */\n name: string;\n /** Whether this is an SVG icon */\n isSvgIcon: boolean;\n /** List of available variants for this icon */\n variants: IconVariant[];\n };\n}\ntype SvgIcon = SvgIconWithStaticProps<SvgIconProps>;\n//#endregion\nexport { type IconPixelSize, type IconSize, type IconVariant, type SvgIcon, type SvgIconProps, type SvgIconWithStaticProps };"],"mappings":";;;AAIgB,KADXC,QAAAA,GAEKE,IAAY,GAAA,IAAA,GAAA,IACbF,GAAAA,IACGC;AAAW,KAHlBA,WAAAA,GAKKE,MAAAA,GAAAA,SAAsBC,GAAAA,YAAAA;UAJtBF,YAAAA,CAIuEE;EAOnEH,IAAAA,CAAAA,EAVLD,QAUKC;EAP2CI,OAAMC,CAAAA,EAFnDL,WAEmDK;;AAAiB,UAAtEH,sBAU4BD,CAAAA,cAAvBC,CAAAA,SAV0CE,KAAAA,CAAMC,iBAU1B,CAV4CF,cAU5C,CAAA,CAAA;;;;;;;cAHvBH;;;KAGTM,OAAAA,GAAUJ,uBAAuBD"}
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yahoo/uds-mobile",
3
- "version": "1.0.1",
3
+ "version": "1.1.0",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "uds-mobile": "./cli/uds-mobile.js"