@yahoo/uds-mobile 1.2.0-beta.1 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Avatar.d.cts +2 -2
- package/dist/components/Badge.d.mts +2 -2
- package/dist/components/Box.d.cts +2 -2
- package/dist/components/Box.d.cts.map +1 -1
- package/dist/components/Box.d.mts +2 -2
- package/dist/components/Button.d.cts +2 -2
- package/dist/components/Button.d.mts +2 -2
- package/dist/components/Checkbox.d.cts +2 -2
- package/dist/components/Checkbox.d.mts +2 -2
- package/dist/components/Chip.d.cts +2 -2
- package/dist/components/Chip.d.cts.map +1 -1
- package/dist/components/HStack.d.cts +2 -2
- package/dist/components/HStack.d.mts +2 -2
- package/dist/components/HStack.d.mts.map +1 -1
- package/dist/components/Icon.d.cts +2 -2
- package/dist/components/Icon.d.cts.map +1 -1
- package/dist/components/Icon.d.mts +2 -2
- package/dist/components/IconButton.d.cts +2 -2
- package/dist/components/IconButton.d.mts +2 -2
- package/dist/components/IconSlot.d.cts +2 -2
- package/dist/components/IconSlot.d.cts.map +1 -1
- package/dist/components/IconSlot.d.mts +2 -2
- package/dist/components/Image.d.cts +2 -2
- package/dist/components/Image.d.cts.map +1 -1
- package/dist/components/Image.d.mts +2 -2
- package/dist/components/Image.d.mts.map +1 -1
- package/dist/components/Input.d.cts +2 -2
- package/dist/components/Input.d.mts +2 -2
- package/dist/components/Link.d.cts +2 -2
- package/dist/components/Link.d.cts.map +1 -1
- package/dist/components/Link.d.mts +2 -2
- package/dist/components/Pressable.d.cts +3 -3
- package/dist/components/Pressable.d.mts +3 -3
- package/dist/components/Radio.d.cts +2 -2
- package/dist/components/Radio.d.mts +2 -2
- package/dist/components/Screen.d.cts +2 -2
- package/dist/components/Screen.d.cts.map +1 -1
- package/dist/components/Screen.d.mts +2 -2
- package/dist/components/Switch.d.cts +2 -2
- package/dist/components/Switch.d.mts +2 -2
- package/dist/components/Text.d.cts +2 -2
- package/dist/components/Text.d.cts.map +1 -1
- package/dist/components/VStack.d.cts +2 -2
- package/dist/components/VStack.d.mts +2 -2
- package/fonts/index.cjs +205 -205
- package/fonts/index.mjs +205 -205
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
import { UniversalRadioProps } from "../types/dist/index.cjs";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react16 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:
|
|
43
|
+
declare const Radio: react16.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 "../types/dist/index.mjs";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react13 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:
|
|
43
|
+
declare const Radio: react13.NamedExoticComponent<RadioProps>;
|
|
44
44
|
//#endregion
|
|
45
45
|
export { Radio, type RadioProps };
|
|
46
46
|
//# sourceMappingURL=Radio.d.mts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
import { HStackProps } from "./HStack.cjs";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react7 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:
|
|
50
|
+
declare const Screen: react7.NamedExoticComponent<ScreenProps>;
|
|
51
51
|
//#endregion
|
|
52
52
|
export { Screen, type ScreenProps };
|
|
53
53
|
//# sourceMappingURL=Screen.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Screen.d.cts","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,
|
|
1
|
+
{"version":3,"file":"Screen.d.cts","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,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
import { HStackProps } from "./HStack.mjs";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react16 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:
|
|
50
|
+
declare const Screen: react16.NamedExoticComponent<ScreenProps>;
|
|
51
51
|
//#endregion
|
|
52
52
|
export { Screen, type ScreenProps };
|
|
53
53
|
//# sourceMappingURL=Screen.d.mts.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import { UniversalSwitchProps } from "../types/dist/index.cjs";
|
|
3
3
|
import { IconSlotType } from "./IconSlot.cjs";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react15 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:
|
|
39
|
+
declare const Switch: react15.NamedExoticComponent<SwitchProps>;
|
|
40
40
|
//#endregion
|
|
41
41
|
export { Switch, type SwitchProps };
|
|
42
42
|
//# sourceMappingURL=Switch.d.cts.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import { UniversalSwitchProps } from "../types/dist/index.mjs";
|
|
3
3
|
import { IconSlotType } from "./IconSlot.mjs";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react17 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:
|
|
39
|
+
declare const Switch: react17.NamedExoticComponent<SwitchProps>;
|
|
40
40
|
//#endregion
|
|
41
41
|
export { Switch, type SwitchProps };
|
|
42
42
|
//# sourceMappingURL=Switch.d.mts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
import * as
|
|
2
|
+
import * as react9 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:
|
|
93
|
+
declare const Text: react9.NamedExoticComponent<TextProps>;
|
|
94
94
|
//#endregion
|
|
95
95
|
export { Text, type TextProps };
|
|
96
96
|
//# sourceMappingURL=Text.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Text.d.cts","names":[],"sources":["../../src/components/Text.tsx"],"sourcesContent":[],"mappings":";;;;;;;KASK,WAAA,GAAc,QACjB;KAMG,kBAAA;AAXoD,UAa/C,SAAA,SAAkB,WAR1B,CAAA;EAMG,GAAA,CAAA,EAGG,GAHH,CAGO,MAHP,CAAA;EAEK,KAAA,CAAA,EAGA,UAHU,CAAA,OAAA,CAAA;EACR;EAAJ,OAAA,CAAA,EAII,WAJJ;EAEE;EAEE,UAAA,CAAA,EAEG,UAFH,CAAA,YAAA,CAAA;EAEG;EAEF,QAAA,CAAA,EAAA,UAAA,CAAA,UAAA,CAAA;EAEE;EAEA,UAAA,CAAA,EAFA,UAEA,CAAA,YAAA,CAAA;EAEG;EACJ,UAAA,CAAA,EAHC,UAGD,CAAA,YAAA,CAAA;EAEI;EAEK,aAAA,CAAA,EALL,UAKK,CAAA,eAAA,CAAA;EAEH,SAAA,CAAA,EANN,UAMM,CAAA,WAAA,CAAA;EAEH;EACQ,aAAA,CAAA,EAPP,UAOO,CAAA,eAAA,CAAA;EACF;EACK,kBAAA,CAAA,EAPL,kBAOK;EACF,eAAA,CAAA,EANN,UAMM,CAAA,iBAAA,CAAA;EACV,YAAA,CAAA,EALC,UAKD,CAAA,cAAA,CAAA;EACK,oBAAA,CAAA,EALI,UAKJ,CAAA,sBAAA,CAAA;EACF,kBAAA,CAAA,EALI,UAKJ,CAAA,oBAAA,CAAA;EACA,uBAAA,CAAA,EALS,UAKT,CAAA,yBAAA,CAAA;EACG,qBAAA,CAAA,EALI,UAKJ,CAAA,uBAAA,CAAA;EACN,WAAA,CAAA,EALA,UAKA,CAAA,aAAA,CAAA;EACQ,gBAAA,CAAA,EALH,UAKG,CAAA,kBAAA,CAAA;EACE,cAAA,CAAA,EALP,UAKO,CAAA,gBAAA,CAAA;EACL,cAAA,CAAA,EALF,UAKE,CAAA,gBAAA,CAAA;EACF,iBAAA,CAAA,EALG,UAKH,CAAA,mBAAA,CAAA;EACA,WAAA,CAAA,EALH,UAKG,CAAA,aAAA,CAAA;EACG,mBAAA,CAAA,EALE,UAKF,CAAA,qBAAA,CAAA;EAEV,qBAAA,CAAA,EANc,UAMd,CAAA,uBAAA,CAAA;EACU,gBAAA,CAAA,EAND,UAMC,CAAA,kBAAA,CAAA;EACF,cAAA,CAAA,EAND,UAMC,CAAA,gBAAA,CAAA;EACF,cAAA,CAAA,EANC,UAMD,CAAA,gBAAA,CAAA;EACH,iBAAA,CAAA,EANO,UAMP,CAAA,mBAAA,CAAA;EACE,OAAA,CAAA,EALL,UAKK,CAAA,SAAA,CAAA;EACF,iBAAA,CAAA,EALO,UAKP,CAAA,mBAAA,CAAA;EAEJ,eAAA,CAAA,EANS,UAMT,CAAA,iBAAA,CAAA;EACQ,aAAA,CAAA,EAND,UAMC,CAAA,eAAA,CAAA;EACE,UAAA,CAAA,EANN,UAMM,CAAA,YAAA,CAAA;EACJ,YAAA,CAAA,EANA,UAMA,CAAA,cAAA,CAAA;EACH,UAAA,CAAA,EANC,UAMD,CAAA,YAAA,CAAA;EACE,MAAA,CAAA,EALL,UAKK,CAAA,QAAA,CAAA;EACF,cAAA,CAAA,EALK,UAKL,CAAA,gBAAA,CAAA;EAEC,gBAAA,CAAA,EANM,UAMN,CAAA,kBAAA,CAAA;EAEG,YAAA,CAAA,EAPD,UAOC,CAAA,cAAA,CAAA;EA5DU,SAAA,CAAA,EAsDd,UAtDc,CAAA,WAAA,CAAA;EAAW,WAAA,CAAA,EAuDvB,UAvDuB,CAAA,aAAA,CAAA;EA6FjC,SAmJJ,CAAA,EAxLY,UAqCJ,CAAA,WAAA,CAAA;eAnCK;kBAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAiCZ,MAAI,
|
|
1
|
+
{"version":3,"file":"Text.d.cts","names":[],"sources":["../../src/components/Text.tsx"],"sourcesContent":[],"mappings":";;;;;;;KASK,WAAA,GAAc,QACjB;KAMG,kBAAA;AAXoD,UAa/C,SAAA,SAAkB,WAR1B,CAAA;EAMG,GAAA,CAAA,EAGG,GAHH,CAGO,MAHP,CAAA;EAEK,KAAA,CAAA,EAGA,UAHU,CAAA,OAAA,CAAA;EACR;EAAJ,OAAA,CAAA,EAII,WAJJ;EAEE;EAEE,UAAA,CAAA,EAEG,UAFH,CAAA,YAAA,CAAA;EAEG;EAEF,QAAA,CAAA,EAAA,UAAA,CAAA,UAAA,CAAA;EAEE;EAEA,UAAA,CAAA,EAFA,UAEA,CAAA,YAAA,CAAA;EAEG;EACJ,UAAA,CAAA,EAHC,UAGD,CAAA,YAAA,CAAA;EAEI;EAEK,aAAA,CAAA,EALL,UAKK,CAAA,eAAA,CAAA;EAEH,SAAA,CAAA,EANN,UAMM,CAAA,WAAA,CAAA;EAEH;EACQ,aAAA,CAAA,EAPP,UAOO,CAAA,eAAA,CAAA;EACF;EACK,kBAAA,CAAA,EAPL,kBAOK;EACF,eAAA,CAAA,EANN,UAMM,CAAA,iBAAA,CAAA;EACV,YAAA,CAAA,EALC,UAKD,CAAA,cAAA,CAAA;EACK,oBAAA,CAAA,EALI,UAKJ,CAAA,sBAAA,CAAA;EACF,kBAAA,CAAA,EALI,UAKJ,CAAA,oBAAA,CAAA;EACA,uBAAA,CAAA,EALS,UAKT,CAAA,yBAAA,CAAA;EACG,qBAAA,CAAA,EALI,UAKJ,CAAA,uBAAA,CAAA;EACN,WAAA,CAAA,EALA,UAKA,CAAA,aAAA,CAAA;EACQ,gBAAA,CAAA,EALH,UAKG,CAAA,kBAAA,CAAA;EACE,cAAA,CAAA,EALP,UAKO,CAAA,gBAAA,CAAA;EACL,cAAA,CAAA,EALF,UAKE,CAAA,gBAAA,CAAA;EACF,iBAAA,CAAA,EALG,UAKH,CAAA,mBAAA,CAAA;EACA,WAAA,CAAA,EALH,UAKG,CAAA,aAAA,CAAA;EACG,mBAAA,CAAA,EALE,UAKF,CAAA,qBAAA,CAAA;EAEV,qBAAA,CAAA,EANc,UAMd,CAAA,uBAAA,CAAA;EACU,gBAAA,CAAA,EAND,UAMC,CAAA,kBAAA,CAAA;EACF,cAAA,CAAA,EAND,UAMC,CAAA,gBAAA,CAAA;EACF,cAAA,CAAA,EANC,UAMD,CAAA,gBAAA,CAAA;EACH,iBAAA,CAAA,EANO,UAMP,CAAA,mBAAA,CAAA;EACE,OAAA,CAAA,EALL,UAKK,CAAA,SAAA,CAAA;EACF,iBAAA,CAAA,EALO,UAKP,CAAA,mBAAA,CAAA;EAEJ,eAAA,CAAA,EANS,UAMT,CAAA,iBAAA,CAAA;EACQ,aAAA,CAAA,EAND,UAMC,CAAA,eAAA,CAAA;EACE,UAAA,CAAA,EANN,UAMM,CAAA,YAAA,CAAA;EACJ,YAAA,CAAA,EANA,UAMA,CAAA,cAAA,CAAA;EACH,UAAA,CAAA,EANC,UAMD,CAAA,YAAA,CAAA;EACE,MAAA,CAAA,EALL,UAKK,CAAA,QAAA,CAAA;EACF,cAAA,CAAA,EALK,UAKL,CAAA,gBAAA,CAAA;EAEC,gBAAA,CAAA,EANM,UAMN,CAAA,kBAAA,CAAA;EAEG,YAAA,CAAA,EAPD,UAOC,CAAA,cAAA,CAAA;EA5DU,SAAA,CAAA,EAsDd,UAtDc,CAAA,WAAA,CAAA;EAAW,WAAA,CAAA,EAuDvB,UAvDuB,CAAA,aAAA,CAAA;EA6FjC,SAmJJ,CAAA,EAxLY,UAqCJ,CAAA,WAAA,CAAA;eAnCK;kBAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAiCZ,MAAI,MAAA,CAAA,qBAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
import { BoxProps } from "./Box.cjs";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react14 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:
|
|
38
|
+
declare const VStack: react14.NamedExoticComponent<VStackProps>;
|
|
39
39
|
//#endregion
|
|
40
40
|
export { VStack, type VStackProps };
|
|
41
41
|
//# sourceMappingURL=VStack.d.cts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
import { BoxProps } from "./Box.mjs";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react18 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:
|
|
38
|
+
declare const VStack: react18.NamedExoticComponent<VStackProps>;
|
|
39
39
|
//#endregion
|
|
40
40
|
export { VStack, type VStackProps };
|
|
41
41
|
//# sourceMappingURL=VStack.d.mts.map
|