@ds-autonomie/react-native 0.1.0 → 0.3.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 (65) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/dist/chunks/chunk.3QXPJAHY.js +22 -0
  3. package/dist/chunks/chunk.4MPJJ7EN.js +65 -0
  4. package/dist/chunks/chunk.4SSEOHVB.js +41 -0
  5. package/dist/chunks/chunk.4ZX27FCY.js +21 -0
  6. package/dist/chunks/chunk.6DY4BFMZ.js +22 -0
  7. package/dist/chunks/chunk.73S52VD6.js +94 -0
  8. package/dist/chunks/chunk.7H4YRP4X.js +70 -0
  9. package/dist/chunks/{chunk.NNC6C337.js → chunk.B2JV2E47.js} +3 -3
  10. package/dist/chunks/chunk.CIHQLL6Y.js +93 -0
  11. package/dist/chunks/chunk.DMHRBYRF.js +69 -0
  12. package/dist/chunks/chunk.H2AL2E3A.js +47 -0
  13. package/dist/chunks/chunk.INEDXDER.js +51 -0
  14. package/dist/chunks/chunk.KVGKM2JI.js +73 -0
  15. package/dist/chunks/chunk.KVXJ2L2C.js +22 -0
  16. package/dist/chunks/chunk.LN5IVTGU.js +60 -0
  17. package/dist/chunks/{chunk.4EJ4MEUR.js → chunk.OQSCGAEY.js} +4 -2
  18. package/dist/chunks/chunk.RNOZ5AW4.js +71 -0
  19. package/dist/chunks/chunk.SZJKAIPC.js +20 -0
  20. package/dist/chunks/chunk.XCMNSIIN.js +72 -0
  21. package/dist/chunks/chunk.YWEWQ2LT.js +39 -0
  22. package/dist/components/button/Button.d.ts +65 -0
  23. package/dist/components/button/Button.js +8 -0
  24. package/dist/components/button/Button.styles.d.ts +38 -0
  25. package/dist/components/button/Button.styles.js +14 -0
  26. package/dist/components/checkbox/Checkbox.d.ts +55 -0
  27. package/dist/components/checkbox/Checkbox.js +8 -0
  28. package/dist/components/checkbox/Checkbox.styles.d.ts +38 -0
  29. package/dist/components/checkbox/Checkbox.styles.js +8 -0
  30. package/dist/components/divider/Divider.d.ts +7 -0
  31. package/dist/components/divider/Divider.js +24 -0
  32. package/dist/components/divider/Divider.styles.d.ts +13 -0
  33. package/dist/components/divider/Divider.styles.js +6 -0
  34. package/dist/components/icon/Icon.d.ts +10 -4
  35. package/dist/components/icon/Icon.js +1 -1
  36. package/dist/components/listCaption/ListCaption.d.ts +7 -0
  37. package/dist/components/listCaption/ListCaption.js +8 -0
  38. package/dist/components/listCaption/ListCaption.styles.d.ts +14 -0
  39. package/dist/components/listCaption/ListCaption.styles.js +7 -0
  40. package/dist/components/listItem/ListItem.d.ts +34 -0
  41. package/dist/components/listItem/ListItem.js +9 -0
  42. package/dist/components/listItem/ListItem.styles.d.ts +48 -0
  43. package/dist/components/listItem/ListItem.styles.js +7 -0
  44. package/dist/components/listTitle/ListTitle.d.ts +7 -0
  45. package/dist/components/listTitle/ListTitle.js +8 -0
  46. package/dist/components/listTitle/ListTitle.styles.d.ts +15 -0
  47. package/dist/components/listTitle/ListTitle.styles.js +7 -0
  48. package/dist/components/radio/Radio.d.ts +55 -0
  49. package/dist/components/radio/Radio.js +7 -0
  50. package/dist/components/radio/Radio.styles.d.ts +30 -0
  51. package/dist/components/radio/Radio.styles.js +8 -0
  52. package/dist/components/searchField/SearchField.d.ts +14 -0
  53. package/dist/components/searchField/SearchField.js +7 -0
  54. package/dist/components/searchField/SearchField.styles.d.ts +42 -0
  55. package/dist/components/searchField/SearchField.styles.js +10 -0
  56. package/dist/components/textInput/TextInput.d.ts +54 -0
  57. package/dist/components/textInput/TextInput.js +9 -0
  58. package/dist/components/textInput/TextInput.styles.d.ts +94 -0
  59. package/dist/components/textInput/TextInput.styles.js +11 -0
  60. package/dist/components/toggle/Toggle.js +2 -2
  61. package/dist/index.d.ts +10 -1
  62. package/dist/index.js +46 -2
  63. package/dist/styles/fonts.d.ts +35 -0
  64. package/dist/utils/device.d.ts +2 -0
  65. package/package.json +1 -1
@@ -1,7 +1,13 @@
1
1
  import React from 'react';
2
- export interface IconProps {
2
+ import { IconProps as MaterialIconProps } from 'react-native-vector-icons/Icon';
3
+ import MaterialIcons from 'react-native-vector-icons/MaterialIcons';
4
+ export type IconProps = {
3
5
  name: string;
4
6
  size?: number;
5
- color: string;
6
- }
7
- export declare function Icon({ size, ...restProps }: IconProps): React.JSX.Element;
7
+ color?: string;
8
+ } & MaterialIconProps;
9
+ export declare const Icon: React.ForwardRefExoticComponent<{
10
+ name: string;
11
+ size?: number | undefined;
12
+ color?: string | undefined;
13
+ } & MaterialIconProps & React.RefAttributes<MaterialIcons>>;
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  Icon
3
- } from "../../chunks/chunk.4EJ4MEUR.js";
3
+ } from "../../chunks/chunk.OQSCGAEY.js";
4
4
  export {
5
5
  Icon
6
6
  };
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { View, ViewProps } from 'react-native';
3
+ type OmittedProps = 'accessible' | 'accessibleRole';
4
+ export declare const ListCaption: React.ForwardRefExoticComponent<{
5
+ children: React.ReactNode;
6
+ } & Omit<ViewProps, OmittedProps> & React.RefAttributes<View>>;
7
+ export {};
@@ -0,0 +1,8 @@
1
+ import {
2
+ ListCaption
3
+ } from "../../chunks/chunk.KVXJ2L2C.js";
4
+ import "../../chunks/chunk.4ZX27FCY.js";
5
+ import "../../chunks/chunk.4SSEOHVB.js";
6
+ export {
7
+ ListCaption
8
+ };
@@ -0,0 +1,14 @@
1
+ export declare const listCaptionStyles: {
2
+ container: {
3
+ paddingHorizontal: 16;
4
+ paddingTop: 12;
5
+ };
6
+ text: {
7
+ paddingHorizontal: 16;
8
+ fontSize: number;
9
+ fontWeight: "500";
10
+ lineHeight: number;
11
+ fontFamily: string;
12
+ letterSpacing: number;
13
+ };
14
+ };
@@ -0,0 +1,7 @@
1
+ import {
2
+ listCaptionStyles
3
+ } from "../../chunks/chunk.4ZX27FCY.js";
4
+ import "../../chunks/chunk.4SSEOHVB.js";
5
+ export {
6
+ listCaptionStyles
7
+ };
@@ -0,0 +1,34 @@
1
+ import React from 'react';
2
+ import { PressableProps, ViewStyle, StyleProp } from 'react-native';
3
+ type OmittedProps = 'accessibilityLabel' | 'accessible' | 'children' | 'style';
4
+ type InsetListItemProps = {
5
+ inset: true;
6
+ isLast: boolean;
7
+ isFirst: boolean;
8
+ };
9
+ type RegularListItemProps = {
10
+ inset: false;
11
+ isLast: boolean;
12
+ isFirst?: undefined;
13
+ };
14
+ type CommonListItemProps = {
15
+ label: string;
16
+ subtitle?: string;
17
+ prefix?: React.ReactNode;
18
+ suffix?: React.ReactNode;
19
+ /**
20
+ * If `style` is defined, it will extend the container style.
21
+ * If a similar property is defined, the new property will overwrite the old one.
22
+ * */
23
+ style?: StyleProp<ViewStyle>;
24
+ };
25
+ type ListItemProps = (InsetListItemProps | RegularListItemProps) & CommonListItemProps & Omit<PressableProps, OmittedProps>;
26
+ interface ListItemSubComponents {
27
+ ChevronSuffix?: typeof ChevronSuffix;
28
+ }
29
+ export declare const ListItem: React.ForwardRefExoticComponent<ListItemProps> & ListItemSubComponents;
30
+ type ChevronSuffixProps = {
31
+ title: string;
32
+ };
33
+ declare const ChevronSuffix: ({ title }: ChevronSuffixProps) => React.JSX.Element;
34
+ export {};
@@ -0,0 +1,9 @@
1
+ import {
2
+ ListItem
3
+ } from "../../chunks/chunk.4MPJJ7EN.js";
4
+ import "../../chunks/chunk.INEDXDER.js";
5
+ import "../../chunks/chunk.4SSEOHVB.js";
6
+ import "../../chunks/chunk.OQSCGAEY.js";
7
+ export {
8
+ ListItem
9
+ };
@@ -0,0 +1,48 @@
1
+ export declare const styles: {
2
+ container: {
3
+ borderBottomWidth: number;
4
+ borderBottomColor: "#e7e7e7ff";
5
+ backgroundColor: "#ffffffff";
6
+ paddingHorizontal: 16;
7
+ paddingVertical: 8;
8
+ display: "flex";
9
+ height: "auto";
10
+ flexDirection: "row";
11
+ alignItems: "center";
12
+ gap: 16;
13
+ };
14
+ large: {
15
+ minHeight: number;
16
+ };
17
+ lastItem: {
18
+ borderBottomWidth: number;
19
+ paddingBottom: number;
20
+ };
21
+ title: {
22
+ color: "#252625ff";
23
+ fontSize: number;
24
+ fontFamily: string;
25
+ fontWeight: "400";
26
+ lineHeight: number;
27
+ letterSpacing: number;
28
+ };
29
+ subtitle: {
30
+ color: "#666666ff";
31
+ fontSize: number;
32
+ fontWeight: "400";
33
+ lineHeight: number;
34
+ fontFamily: string;
35
+ letterSpacing: number;
36
+ };
37
+ inset: {
38
+ marginHorizontal: 16;
39
+ };
40
+ insetFirst: {
41
+ borderTopRightRadius: 8;
42
+ borderTopLeftRadius: 8;
43
+ };
44
+ insetLast: {
45
+ borderBottomRightRadius: 8;
46
+ borderBottomLeftRadius: 8;
47
+ };
48
+ };
@@ -0,0 +1,7 @@
1
+ import {
2
+ styles
3
+ } from "../../chunks/chunk.INEDXDER.js";
4
+ import "../../chunks/chunk.4SSEOHVB.js";
5
+ export {
6
+ styles
7
+ };
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { View, ViewProps } from 'react-native';
3
+ type OmittedProps = 'accessible' | 'accessibleRole';
4
+ export declare const ListTitle: React.ForwardRefExoticComponent<{
5
+ children: React.ReactNode;
6
+ } & Omit<ViewProps, OmittedProps> & React.RefAttributes<View>>;
7
+ export {};
@@ -0,0 +1,8 @@
1
+ import {
2
+ ListTitle
3
+ } from "../../chunks/chunk.6DY4BFMZ.js";
4
+ import "../../chunks/chunk.3QXPJAHY.js";
5
+ import "../../chunks/chunk.4SSEOHVB.js";
6
+ export {
7
+ ListTitle
8
+ };
@@ -0,0 +1,15 @@
1
+ export declare const listTitleStyles: {
2
+ container: {
3
+ paddingHorizontal: 16;
4
+ paddingTop: 8;
5
+ paddingBottom: 12;
6
+ };
7
+ text: {
8
+ paddingHorizontal: 16;
9
+ fontSize: number;
10
+ fontWeight: "500";
11
+ lineHeight: number;
12
+ fontFamily: string;
13
+ letterSpacing: number;
14
+ };
15
+ };
@@ -0,0 +1,7 @@
1
+ import {
2
+ listTitleStyles
3
+ } from "../../chunks/chunk.3QXPJAHY.js";
4
+ import "../../chunks/chunk.4SSEOHVB.js";
5
+ export {
6
+ listTitleStyles
7
+ };
@@ -0,0 +1,55 @@
1
+ import React from 'react';
2
+ import { View } from 'react-native';
3
+ import { PressableProps, StyleProp, ViewStyle } from 'react-native/types';
4
+ type OmittedPressableProps = 'accessibilityLabel' | 'accessibilityRole' | 'accessibilityState' | 'accessible' | 'aria-checked' | 'aria-invalid' | 'aria-disabled' | 'aria-pressed' | 'style' | 'onPress' | 'children' | 'role';
5
+ export type RadioProps = {
6
+ /**
7
+ * When set to `true`, component is checked.
8
+ */
9
+ value?: boolean;
10
+ /**
11
+ * When set to `true`, component is in error.
12
+ */
13
+ error?: boolean;
14
+ /**
15
+ * When set to `true`, component is disabled.
16
+ */
17
+ disabled?: boolean;
18
+ /**
19
+ * Callback when component is checked.
20
+ *
21
+ * @param {boolean} value
22
+ */
23
+ onValueChange?: (value: boolean) => void;
24
+ /**
25
+ * If `style` is defined, it will extend the container style.
26
+ * If a similar property is defined, the new property will overwrite the old one.
27
+ * */
28
+ style?: StyleProp<ViewStyle>;
29
+ } & Omit<PressableProps, OmittedPressableProps>;
30
+ export declare const Radio: React.ForwardRefExoticComponent<{
31
+ /**
32
+ * When set to `true`, component is checked.
33
+ */
34
+ value?: boolean | undefined;
35
+ /**
36
+ * When set to `true`, component is in error.
37
+ */
38
+ error?: boolean | undefined;
39
+ /**
40
+ * When set to `true`, component is disabled.
41
+ */
42
+ disabled?: boolean | undefined;
43
+ /**
44
+ * Callback when component is checked.
45
+ *
46
+ * @param {boolean} value
47
+ */
48
+ onValueChange?: ((value: boolean) => void) | undefined;
49
+ /**
50
+ * If `style` is defined, it will extend the container style.
51
+ * If a similar property is defined, the new property will overwrite the old one.
52
+ * */
53
+ style?: StyleProp<ViewStyle>;
54
+ } & Omit<PressableProps, OmittedPressableProps> & React.RefAttributes<View>>;
55
+ export {};
@@ -0,0 +1,7 @@
1
+ import {
2
+ Radio
3
+ } from "../../chunks/chunk.LN5IVTGU.js";
4
+ import "../../chunks/chunk.YWEWQ2LT.js";
5
+ export {
6
+ Radio
7
+ };
@@ -0,0 +1,30 @@
1
+ export declare const radioContainerStyles: {
2
+ default: {
3
+ width: number;
4
+ height: number;
5
+ borderWidth: number;
6
+ borderRadius: number;
7
+ alignItems: "center";
8
+ justifyContent: "center";
9
+ borderColor: "#666666ff";
10
+ };
11
+ active: {
12
+ borderColor: "#540abdff";
13
+ };
14
+ disabled: {
15
+ borderColor: "#d7d7d7ff";
16
+ };
17
+ };
18
+ export declare const radioDotStyles: {
19
+ default: {
20
+ width: number;
21
+ height: number;
22
+ borderRadius: number;
23
+ };
24
+ disabled: {
25
+ backgroundColor: "#d7d7d7ff";
26
+ };
27
+ active: {
28
+ backgroundColor: "#540abdff";
29
+ };
30
+ };
@@ -0,0 +1,8 @@
1
+ import {
2
+ radioContainerStyles,
3
+ radioDotStyles
4
+ } from "../../chunks/chunk.YWEWQ2LT.js";
5
+ export {
6
+ radioContainerStyles,
7
+ radioDotStyles
8
+ };
@@ -0,0 +1,14 @@
1
+ import React from 'react';
2
+ import { TextInput, TextInputProps, StyleProp, ViewProps } from 'react-native';
3
+ type OmittedTextInputProps = Omit<TextInputProps, 'accessibilityLabel' | 'accessibilityRole' | 'editable' | 'returnKeyType' | 'style'>;
4
+ export declare const SearchField: React.ForwardRefExoticComponent<{
5
+ /**
6
+ * If `disabled` is `true`, the component is not editable.
7
+ */
8
+ disabled?: boolean | undefined;
9
+ /**
10
+ * If `style` is defined, it will extend the container style.
11
+ */
12
+ style?: StyleProp<ViewProps>;
13
+ } & OmittedTextInputProps & React.RefAttributes<TextInput>>;
14
+ export {};
@@ -0,0 +1,7 @@
1
+ import {
2
+ SearchField
3
+ } from "../../chunks/chunk.KVGKM2JI.js";
4
+ import "../../chunks/chunk.7H4YRP4X.js";
5
+ export {
6
+ SearchField
7
+ };
@@ -0,0 +1,42 @@
1
+ import { IconProps } from 'react-native-vector-icons/Icon';
2
+ export declare const placeholderTextColor = "#3C3C4399";
3
+ export declare const styles: {
4
+ container: {
5
+ flexDirection: "row";
6
+ alignItems: "center";
7
+ borderRadius: number;
8
+ backgroundColor: string;
9
+ padding: 8;
10
+ paddingLeft: number;
11
+ };
12
+ iOScontainer: {
13
+ padding: number;
14
+ paddingLeft: number;
15
+ };
16
+ disabledContainer: {
17
+ backgroundColor: "#f7f7f7ff";
18
+ };
19
+ input: {
20
+ flex: number;
21
+ };
22
+ icon: {
23
+ position: "absolute";
24
+ left: 8;
25
+ };
26
+ iOSInput: {
27
+ paddingLeft: number;
28
+ };
29
+ androidInput: {
30
+ paddingLeft: number;
31
+ };
32
+ iosIcon: {
33
+ top: number;
34
+ width: number;
35
+ height: number;
36
+ marginLeft: 8;
37
+ };
38
+ androidIcon: {
39
+ marginLeft: 12;
40
+ };
41
+ };
42
+ export declare const plateformStyles: Pick<IconProps, "size" | "color" | "style">;
@@ -0,0 +1,10 @@
1
+ import {
2
+ placeholderTextColor,
3
+ plateformStyles,
4
+ styles
5
+ } from "../../chunks/chunk.7H4YRP4X.js";
6
+ export {
7
+ placeholderTextColor,
8
+ plateformStyles,
9
+ styles
10
+ };
@@ -0,0 +1,54 @@
1
+ import React, { ReactNode } from 'react';
2
+ import { TextInput as NativeTextInput, TextInputProps as NativeTextInputProps, ViewStyle, StyleProp } from 'react-native';
3
+ export type TextInputProps = {
4
+ /** The input's label. */
5
+ label?: string;
6
+ /** Makes the input a required field. */
7
+ required?: boolean;
8
+ /** Indicates whether the input should be in error state. */
9
+ error?: boolean;
10
+ /** The input's error text. A string or Text component. */
11
+ errorText?: ReactNode;
12
+ /** Disables the input. */
13
+ disabled?: boolean;
14
+ /** Makes the input readonly. */
15
+ readOnly?: boolean;
16
+ /** The input's help text. A string or Text component. */
17
+ helpText?: ReactNode;
18
+ /** Stylise the outer view of the input. */
19
+ style?: StyleProp<ViewStyle>;
20
+ /**
21
+ * The value to show for the text input. TextInput is a controlled component,
22
+ * which means the native value will be forced to match this value prop if provided.
23
+ * For most uses this works great, but in some cases this may cause flickering - one common cause is preventing edits by keeping value the same.
24
+ * In addition to simply setting the same value, either set editable={false},
25
+ * or set/update maxLength to prevent unwanted edits without flicker.
26
+ */
27
+ value: string;
28
+ } & Omit<NativeTextInputProps, 'style' | 'editable' | 'value'>;
29
+ export declare const TextInput: React.ForwardRefExoticComponent<{
30
+ /** The input's label. */
31
+ label?: string | undefined;
32
+ /** Makes the input a required field. */
33
+ required?: boolean | undefined;
34
+ /** Indicates whether the input should be in error state. */
35
+ error?: boolean | undefined;
36
+ /** The input's error text. A string or Text component. */
37
+ errorText?: ReactNode;
38
+ /** Disables the input. */
39
+ disabled?: boolean | undefined;
40
+ /** Makes the input readonly. */
41
+ readOnly?: boolean | undefined;
42
+ /** The input's help text. A string or Text component. */
43
+ helpText?: ReactNode;
44
+ /** Stylise the outer view of the input. */
45
+ style?: StyleProp<ViewStyle>;
46
+ /**
47
+ * The value to show for the text input. TextInput is a controlled component,
48
+ * which means the native value will be forced to match this value prop if provided.
49
+ * For most uses this works great, but in some cases this may cause flickering - one common cause is preventing edits by keeping value the same.
50
+ * In addition to simply setting the same value, either set editable={false},
51
+ * or set/update maxLength to prevent unwanted edits without flicker.
52
+ */
53
+ value: string;
54
+ } & Omit<NativeTextInputProps, "style" | "value" | "editable"> & React.RefAttributes<NativeTextInput>>;
@@ -0,0 +1,9 @@
1
+ import {
2
+ TextInput
3
+ } from "../../chunks/chunk.73S52VD6.js";
4
+ import "../../chunks/chunk.CIHQLL6Y.js";
5
+ import "../../chunks/chunk.4SSEOHVB.js";
6
+ import "../../chunks/chunk.OQSCGAEY.js";
7
+ export {
8
+ TextInput
9
+ };
@@ -0,0 +1,94 @@
1
+ export declare const styles: {
2
+ container: {
3
+ display: "flex";
4
+ flex: number;
5
+ };
6
+ header: {
7
+ marginBottom: 8;
8
+ display: "flex";
9
+ flexDirection: "row";
10
+ };
11
+ label: {
12
+ color: "#666666ff";
13
+ fontSize: number;
14
+ fontFamily: string;
15
+ fontWeight: "400";
16
+ lineHeight: number;
17
+ letterSpacing: number;
18
+ };
19
+ counter: {
20
+ color: "#666666ff";
21
+ fontSize: number;
22
+ fontFamily: string;
23
+ fontWeight: "400";
24
+ lineHeight: number;
25
+ letterSpacing: number;
26
+ marginLeft: "auto";
27
+ };
28
+ labelRequired: {
29
+ color: "#dd1708ff";
30
+ };
31
+ input: {
32
+ fontSize: number;
33
+ fontFamily: string;
34
+ fontWeight: "400";
35
+ lineHeight: number;
36
+ letterSpacing: number;
37
+ paddingTop: 16;
38
+ paddingBottom: 16;
39
+ paddingRight: 16;
40
+ paddingLeft: 16;
41
+ borderRadius: 8;
42
+ };
43
+ bottomMessage: {
44
+ marginTop: 8;
45
+ display: "flex";
46
+ flexDirection: "row";
47
+ };
48
+ errorText: {
49
+ color: "#dd1708ff";
50
+ };
51
+ errorIcon: {
52
+ color: "#dd1708ff";
53
+ marginTop: number;
54
+ marginRight: 4;
55
+ fontSize: number;
56
+ fontWeight: "400";
57
+ lineHeight: number;
58
+ fontFamily: string;
59
+ letterSpacing: number;
60
+ };
61
+ helpText: {
62
+ color: "#252625ff";
63
+ };
64
+ };
65
+ export declare const inputWrapperStyles: {
66
+ default: {
67
+ backgroundColor: "#ffffffff";
68
+ borderColor: "#e7e7e7ff";
69
+ borderWidth: number;
70
+ borderRadius: 8;
71
+ };
72
+ focused: {
73
+ borderColor: "#540abdff";
74
+ };
75
+ error: {
76
+ borderColor: "#dd1708ff";
77
+ backgroundColor: "#fff5f5ff";
78
+ color: "#252625ff";
79
+ };
80
+ readonly: {
81
+ borderColor: "#e7e7e7ff";
82
+ backgroundColor: "#d7d7d7ff";
83
+ color: "#252625ff";
84
+ };
85
+ disabled: {
86
+ borderColor: "#e7e7e7ff";
87
+ backgroundColor: "#f7f7f7ff";
88
+ color: "#8a8c8aff";
89
+ };
90
+ };
91
+ export declare function getCursorColors(error: boolean): {
92
+ cursorColor: "#540abdff" | "#dd1708ff";
93
+ selectionColor: "#540abdff" | "#dd1708ff";
94
+ };
@@ -0,0 +1,11 @@
1
+ import {
2
+ getCursorColors,
3
+ inputWrapperStyles,
4
+ styles
5
+ } from "../../chunks/chunk.CIHQLL6Y.js";
6
+ import "../../chunks/chunk.4SSEOHVB.js";
7
+ export {
8
+ getCursorColors,
9
+ inputWrapperStyles,
10
+ styles
11
+ };
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  Toggle
3
- } from "../../chunks/chunk.NNC6C337.js";
4
- import "../../chunks/chunk.4EJ4MEUR.js";
3
+ } from "../../chunks/chunk.B2JV2E47.js";
5
4
  import "../../chunks/chunk.CZ5Y2AVH.js";
5
+ import "../../chunks/chunk.OQSCGAEY.js";
6
6
  export {
7
7
  Toggle
8
8
  };
package/dist/index.d.ts CHANGED
@@ -1,2 +1,11 @@
1
- export { Toggle } from './components/toggle/Toggle';
1
+ export * from './components/button/Button';
2
+ export * from './components/checkbox/Checkbox';
3
+ export * from './components/icon/Icon';
4
+ export * from './components/listCaption/ListCaption';
5
+ export * from './components/listItem/ListItem';
6
+ export * from './components/listTitle/ListTitle';
7
+ export * from './components/radio/Radio';
8
+ export * from './components/searchField/SearchField';
9
+ export * from './components/toggle/Toggle';
10
+ export * from './components/textInput/TextInput';
2
11
  export * from './utils';
package/dist/index.js CHANGED
@@ -1,8 +1,43 @@
1
+ import {
2
+ SearchField
3
+ } from "./chunks/chunk.KVGKM2JI.js";
4
+ import "./chunks/chunk.7H4YRP4X.js";
5
+ import {
6
+ TextInput
7
+ } from "./chunks/chunk.73S52VD6.js";
8
+ import "./chunks/chunk.CIHQLL6Y.js";
1
9
  import {
2
10
  Toggle
3
- } from "./chunks/chunk.NNC6C337.js";
4
- import "./chunks/chunk.4EJ4MEUR.js";
11
+ } from "./chunks/chunk.B2JV2E47.js";
5
12
  import "./chunks/chunk.CZ5Y2AVH.js";
13
+ import {
14
+ ListCaption
15
+ } from "./chunks/chunk.KVXJ2L2C.js";
16
+ import "./chunks/chunk.4ZX27FCY.js";
17
+ import {
18
+ ListItem
19
+ } from "./chunks/chunk.4MPJJ7EN.js";
20
+ import "./chunks/chunk.INEDXDER.js";
21
+ import {
22
+ ListTitle
23
+ } from "./chunks/chunk.6DY4BFMZ.js";
24
+ import "./chunks/chunk.3QXPJAHY.js";
25
+ import "./chunks/chunk.4SSEOHVB.js";
26
+ import {
27
+ Radio
28
+ } from "./chunks/chunk.LN5IVTGU.js";
29
+ import "./chunks/chunk.YWEWQ2LT.js";
30
+ import {
31
+ Button
32
+ } from "./chunks/chunk.DMHRBYRF.js";
33
+ import "./chunks/chunk.RNOZ5AW4.js";
34
+ import {
35
+ Checkbox
36
+ } from "./chunks/chunk.XCMNSIIN.js";
37
+ import "./chunks/chunk.H2AL2E3A.js";
38
+ import {
39
+ Icon
40
+ } from "./chunks/chunk.OQSCGAEY.js";
6
41
 
7
42
  // src/utils/useFonts.ts
8
43
  import { useFonts as useExpoFonts } from "expo-font";
@@ -10,6 +45,15 @@ function useFonts(map) {
10
45
  return useExpoFonts(map);
11
46
  }
12
47
  export {
48
+ Button,
49
+ Checkbox,
50
+ Icon,
51
+ ListCaption,
52
+ ListItem,
53
+ ListTitle,
54
+ Radio,
55
+ SearchField,
56
+ TextInput,
13
57
  Toggle,
14
58
  useFonts
15
59
  };