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