@umituz/react-native-design-system 2.4.7 → 2.4.8
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 +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-design-system",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.8",
|
|
4
4
|
"description": "Universal design system for React Native apps - Consolidated package with atoms, molecules, organisms, theme, typography, responsive and safe area utilities",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
package/src/index.ts
CHANGED
|
@@ -192,6 +192,7 @@ export {
|
|
|
192
192
|
AtomicDatePicker,
|
|
193
193
|
AtomicSkeleton,
|
|
194
194
|
AtomicBadge,
|
|
195
|
+
AtomicSpinner,
|
|
195
196
|
type IconName,
|
|
196
197
|
type IconSize,
|
|
197
198
|
type IconColor,
|
|
@@ -224,6 +225,9 @@ export {
|
|
|
224
225
|
type AtomicBadgeProps,
|
|
225
226
|
type BadgeVariant,
|
|
226
227
|
type BadgeSize,
|
|
228
|
+
type AtomicSpinnerProps,
|
|
229
|
+
type SpinnerSize,
|
|
230
|
+
type SpinnerColor,
|
|
227
231
|
} from './atoms';
|
|
228
232
|
|
|
229
233
|
// =============================================================================
|