@umituz/react-native-design-system 1.13.0 → 1.14.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.
- package/package.json +1 -1
- package/src/index.ts +36 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-design-system",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"description": "Universal design system for React Native apps - Domain-Driven Design architecture with Material Design 3 components",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
package/src/index.ts
CHANGED
|
@@ -33,7 +33,43 @@ export {
|
|
|
33
33
|
AtomicCard,
|
|
34
34
|
AtomicFab,
|
|
35
35
|
AtomicSearchBar,
|
|
36
|
+
AtomicSwitch,
|
|
37
|
+
AtomicTextArea,
|
|
38
|
+
AtomicImage,
|
|
39
|
+
AtomicBadge,
|
|
40
|
+
AtomicFormError,
|
|
41
|
+
AtomicAvatar,
|
|
42
|
+
AtomicChip,
|
|
43
|
+
AtomicDivider,
|
|
44
|
+
AtomicProgress,
|
|
45
|
+
AtomicAvatarGroup,
|
|
46
|
+
AtomicFilter,
|
|
47
|
+
AtomicTouchable,
|
|
48
|
+
AtomicNumberInput,
|
|
49
|
+
AtomicPicker,
|
|
50
|
+
AtomicDatePicker,
|
|
51
|
+
AtomicSort,
|
|
36
52
|
type IconName,
|
|
53
|
+
type AtomicSwitchProps,
|
|
54
|
+
type AtomicTextAreaProps,
|
|
55
|
+
type AtomicImageProps,
|
|
56
|
+
type AtomicBadgeProps,
|
|
57
|
+
type AtomicFormErrorProps,
|
|
58
|
+
type AtomicAvatarProps,
|
|
59
|
+
type AtomicChipProps,
|
|
60
|
+
type AtomicDividerProps,
|
|
61
|
+
type AtomicProgressProps,
|
|
62
|
+
type AtomicAvatarGroupProps,
|
|
63
|
+
type AtomicFilterProps,
|
|
64
|
+
type FilterOption,
|
|
65
|
+
type AtomicTouchableProps,
|
|
66
|
+
type AtomicNumberInputProps,
|
|
67
|
+
type AtomicPickerProps,
|
|
68
|
+
type PickerOption,
|
|
69
|
+
type AtomicDatePickerProps,
|
|
70
|
+
type AtomicSortProps,
|
|
71
|
+
type SortOption,
|
|
72
|
+
type SortDirection,
|
|
37
73
|
} from '@umituz/react-native-design-system-atoms';
|
|
38
74
|
|
|
39
75
|
export {
|