@webority-technologies/mobile 0.0.15 → 0.0.21

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 (202) hide show
  1. package/lib/commonjs/components/Accordion/Accordion.js +60 -19
  2. package/lib/commonjs/components/AppBar/AppBar.js +29 -20
  3. package/lib/commonjs/components/Avatar/Avatar.js +38 -8
  4. package/lib/commonjs/components/Badge/Badge.js +66 -4
  5. package/lib/commonjs/components/Banner/Banner.js +146 -66
  6. package/lib/commonjs/components/BottomNavigation/BottomNavigation.js +37 -15
  7. package/lib/commonjs/components/BottomSheet/BottomSheet.js +78 -53
  8. package/lib/commonjs/components/Button/Button.js +12 -5
  9. package/lib/commonjs/components/Card/Card.js +106 -16
  10. package/lib/commonjs/components/Carousel/Carousel.js +66 -12
  11. package/lib/commonjs/components/Checkbox/Checkbox.js +11 -7
  12. package/lib/commonjs/components/Chip/Chip.js +44 -12
  13. package/lib/commonjs/components/DatePicker/DatePicker.js +185 -76
  14. package/lib/commonjs/components/DateRangePicker/DateRangePicker.js +133 -59
  15. package/lib/commonjs/components/Dialog/Dialog.js +16 -10
  16. package/lib/commonjs/components/Drawer/Drawer.js +13 -10
  17. package/lib/commonjs/components/FieldBase/FieldBase.js +494 -0
  18. package/lib/commonjs/components/FieldBase/index.js +32 -0
  19. package/lib/commonjs/components/FloatingActionButton/FloatingActionButton.js +69 -44
  20. package/lib/commonjs/components/ForceUpdateDialog/ForceUpdateDialog.js +8 -2
  21. package/lib/commonjs/components/FormField/FormField.js +3 -2
  22. package/lib/commonjs/components/ImageGallery/ImageGallery.js +132 -44
  23. package/lib/commonjs/components/Input/Input.js +144 -181
  24. package/lib/commonjs/components/ListItem/ListItem.js +90 -11
  25. package/lib/commonjs/components/Modal/Modal.js +55 -27
  26. package/lib/commonjs/components/NumberInput/NumberInput.js +60 -106
  27. package/lib/commonjs/components/OTPInput/OTPInput.js +65 -58
  28. package/lib/commonjs/components/PickerTrigger/PickerTrigger.js +185 -0
  29. package/lib/commonjs/components/{AppIcon → PickerTrigger}/index.js +4 -4
  30. package/lib/commonjs/components/ProgressBar/ProgressBar.js +19 -11
  31. package/lib/commonjs/components/Radio/Radio.js +11 -6
  32. package/lib/commonjs/components/Rating/Rating.js +85 -19
  33. package/lib/commonjs/components/SearchBar/SearchBar.js +90 -107
  34. package/lib/commonjs/components/SegmentedControl/SegmentedControl.js +22 -11
  35. package/lib/commonjs/components/Select/Select.js +62 -91
  36. package/lib/commonjs/components/Skeleton/Skeleton.js +131 -174
  37. package/lib/commonjs/components/Skeleton/SkeletonClock.js +117 -0
  38. package/lib/commonjs/components/Skeleton/SkeletonContent.js +164 -81
  39. package/lib/commonjs/components/Skeleton/SkeletonProvider.js +72 -10
  40. package/lib/commonjs/components/Skeleton/index.js +17 -16
  41. package/lib/commonjs/components/Slider/Slider.js +44 -25
  42. package/lib/commonjs/components/Stepper/Stepper.js +199 -29
  43. package/lib/commonjs/components/Swipeable/Swipeable.js +36 -19
  44. package/lib/commonjs/components/Switch/Switch.js +9 -2
  45. package/lib/commonjs/components/Tabs/Tabs.js +84 -21
  46. package/lib/commonjs/components/TimePicker/TimePicker.js +123 -45
  47. package/lib/commonjs/components/Toast/Toast.js +27 -16
  48. package/lib/commonjs/components/Tooltip/Tooltip.js +56 -32
  49. package/lib/commonjs/components/index.js +37 -37
  50. package/lib/commonjs/theme/tokens.js +55 -7
  51. package/lib/module/components/Accordion/Accordion.js +61 -20
  52. package/lib/module/components/AppBar/AppBar.js +29 -20
  53. package/lib/module/components/Avatar/Avatar.js +39 -9
  54. package/lib/module/components/Badge/Badge.js +67 -5
  55. package/lib/module/components/Banner/Banner.js +147 -67
  56. package/lib/module/components/BottomNavigation/BottomNavigation.js +37 -15
  57. package/lib/module/components/BottomSheet/BottomSheet.js +80 -55
  58. package/lib/module/components/Button/Button.js +12 -5
  59. package/lib/module/components/Card/Card.js +107 -17
  60. package/lib/module/components/Carousel/Carousel.js +67 -13
  61. package/lib/module/components/Checkbox/Checkbox.js +11 -7
  62. package/lib/module/components/Chip/Chip.js +45 -13
  63. package/lib/module/components/DatePicker/DatePicker.js +185 -76
  64. package/lib/module/components/DateRangePicker/DateRangePicker.js +134 -60
  65. package/lib/module/components/Dialog/Dialog.js +16 -10
  66. package/lib/module/components/Drawer/Drawer.js +13 -10
  67. package/lib/module/components/FieldBase/FieldBase.js +485 -0
  68. package/lib/module/components/FieldBase/index.js +4 -0
  69. package/lib/module/components/FloatingActionButton/FloatingActionButton.js +69 -44
  70. package/lib/module/components/ForceUpdateDialog/ForceUpdateDialog.js +8 -2
  71. package/lib/module/components/FormField/FormField.js +3 -2
  72. package/lib/module/components/ImageGallery/ImageGallery.js +128 -40
  73. package/lib/module/components/Input/Input.js +144 -179
  74. package/lib/module/components/ListItem/ListItem.js +91 -12
  75. package/lib/module/components/Modal/Modal.js +55 -27
  76. package/lib/module/components/NumberInput/NumberInput.js +60 -106
  77. package/lib/module/components/OTPInput/OTPInput.js +65 -58
  78. package/lib/module/components/PickerTrigger/PickerTrigger.js +181 -0
  79. package/lib/module/components/PickerTrigger/index.js +4 -0
  80. package/lib/module/components/ProgressBar/ProgressBar.js +19 -11
  81. package/lib/module/components/Radio/Radio.js +11 -6
  82. package/lib/module/components/Rating/Rating.js +86 -20
  83. package/lib/module/components/SearchBar/SearchBar.js +90 -107
  84. package/lib/module/components/SegmentedControl/SegmentedControl.js +22 -11
  85. package/lib/module/components/Select/Select.js +62 -91
  86. package/lib/module/components/Skeleton/Skeleton.js +135 -175
  87. package/lib/module/components/Skeleton/SkeletonClock.js +110 -0
  88. package/lib/module/components/Skeleton/SkeletonContent.js +167 -84
  89. package/lib/module/components/Skeleton/SkeletonProvider.js +71 -10
  90. package/lib/module/components/Skeleton/index.js +3 -2
  91. package/lib/module/components/Slider/Slider.js +44 -25
  92. package/lib/module/components/Stepper/Stepper.js +201 -31
  93. package/lib/module/components/Swipeable/Swipeable.js +36 -19
  94. package/lib/module/components/Switch/Switch.js +9 -2
  95. package/lib/module/components/Tabs/Tabs.js +84 -21
  96. package/lib/module/components/TimePicker/TimePicker.js +123 -45
  97. package/lib/module/components/Toast/Toast.js +27 -16
  98. package/lib/module/components/Tooltip/Tooltip.js +56 -32
  99. package/lib/module/components/index.js +2 -2
  100. package/lib/module/theme/tokens.js +55 -7
  101. package/lib/typescript/commonjs/components/Accordion/Accordion.d.ts +10 -5
  102. package/lib/typescript/commonjs/components/AppBar/AppBar.d.ts +8 -0
  103. package/lib/typescript/commonjs/components/Avatar/Avatar.d.ts +12 -6
  104. package/lib/typescript/commonjs/components/Badge/Badge.d.ts +7 -6
  105. package/lib/typescript/commonjs/components/Banner/Banner.d.ts +17 -6
  106. package/lib/typescript/commonjs/components/BottomSheet/BottomSheet.d.ts +7 -0
  107. package/lib/typescript/commonjs/components/Card/Card.d.ts +17 -6
  108. package/lib/typescript/commonjs/components/Carousel/Carousel.d.ts +7 -6
  109. package/lib/typescript/commonjs/components/Checkbox/Checkbox.d.ts +9 -1
  110. package/lib/typescript/commonjs/components/Chip/Chip.d.ts +13 -6
  111. package/lib/typescript/commonjs/components/DatePicker/DatePicker.d.ts +38 -3
  112. package/lib/typescript/commonjs/components/DateRangePicker/DateRangePicker.d.ts +36 -3
  113. package/lib/typescript/commonjs/components/Dialog/Dialog.d.ts +13 -1
  114. package/lib/typescript/commonjs/components/FieldBase/FieldBase.d.ts +172 -0
  115. package/lib/typescript/commonjs/components/FieldBase/index.d.ts +3 -0
  116. package/lib/typescript/commonjs/components/FloatingActionButton/FloatingActionButton.d.ts +8 -6
  117. package/lib/typescript/commonjs/components/FloatingActionButton/index.d.ts +1 -1
  118. package/lib/typescript/commonjs/components/ForceUpdateDialog/ForceUpdateDialog.d.ts +7 -0
  119. package/lib/typescript/commonjs/components/FormField/FormField.d.ts +7 -0
  120. package/lib/typescript/commonjs/components/ImageGallery/ImageGallery.d.ts +6 -4
  121. package/lib/typescript/commonjs/components/Input/Input.d.ts +7 -1
  122. package/lib/typescript/commonjs/components/ListItem/ListItem.d.ts +13 -6
  123. package/lib/typescript/commonjs/components/NumberInput/NumberInput.d.ts +3 -0
  124. package/lib/typescript/commonjs/components/PickerTrigger/PickerTrigger.d.ts +57 -0
  125. package/lib/typescript/commonjs/components/PickerTrigger/index.d.ts +3 -0
  126. package/lib/typescript/commonjs/components/ProgressBar/ProgressBar.d.ts +2 -0
  127. package/lib/typescript/commonjs/components/Radio/Radio.d.ts +3 -0
  128. package/lib/typescript/commonjs/components/Rating/Rating.d.ts +9 -6
  129. package/lib/typescript/commonjs/components/SegmentedControl/SegmentedControl.d.ts +3 -0
  130. package/lib/typescript/commonjs/components/Skeleton/Skeleton.d.ts +49 -20
  131. package/lib/typescript/commonjs/components/Skeleton/SkeletonClock.d.ts +60 -0
  132. package/lib/typescript/commonjs/components/Skeleton/SkeletonContent.d.ts +80 -19
  133. package/lib/typescript/commonjs/components/Skeleton/SkeletonProvider.d.ts +39 -5
  134. package/lib/typescript/commonjs/components/Skeleton/index.d.ts +6 -4
  135. package/lib/typescript/commonjs/components/Slider/Slider.d.ts +12 -1
  136. package/lib/typescript/commonjs/components/Stepper/Stepper.d.ts +18 -6
  137. package/lib/typescript/commonjs/components/Swipeable/Swipeable.d.ts +2 -0
  138. package/lib/typescript/commonjs/components/Switch/Switch.d.ts +1 -0
  139. package/lib/typescript/commonjs/components/Tabs/Tabs.d.ts +26 -2
  140. package/lib/typescript/commonjs/components/TimePicker/TimePicker.d.ts +36 -3
  141. package/lib/typescript/commonjs/components/Toast/Toast.d.ts +8 -0
  142. package/lib/typescript/commonjs/components/Tooltip/Tooltip.d.ts +7 -1
  143. package/lib/typescript/commonjs/components/index.d.ts +5 -5
  144. package/lib/typescript/commonjs/index.d.ts +1 -1
  145. package/lib/typescript/commonjs/theme/index.d.ts +1 -1
  146. package/lib/typescript/commonjs/theme/types.d.ts +578 -12
  147. package/lib/typescript/module/components/Accordion/Accordion.d.ts +10 -5
  148. package/lib/typescript/module/components/AppBar/AppBar.d.ts +8 -0
  149. package/lib/typescript/module/components/Avatar/Avatar.d.ts +12 -6
  150. package/lib/typescript/module/components/Badge/Badge.d.ts +7 -6
  151. package/lib/typescript/module/components/Banner/Banner.d.ts +17 -6
  152. package/lib/typescript/module/components/BottomSheet/BottomSheet.d.ts +7 -0
  153. package/lib/typescript/module/components/Card/Card.d.ts +17 -6
  154. package/lib/typescript/module/components/Carousel/Carousel.d.ts +7 -6
  155. package/lib/typescript/module/components/Checkbox/Checkbox.d.ts +9 -1
  156. package/lib/typescript/module/components/Chip/Chip.d.ts +13 -6
  157. package/lib/typescript/module/components/DatePicker/DatePicker.d.ts +38 -3
  158. package/lib/typescript/module/components/DateRangePicker/DateRangePicker.d.ts +36 -3
  159. package/lib/typescript/module/components/Dialog/Dialog.d.ts +13 -1
  160. package/lib/typescript/module/components/FieldBase/FieldBase.d.ts +172 -0
  161. package/lib/typescript/module/components/FieldBase/index.d.ts +3 -0
  162. package/lib/typescript/module/components/FloatingActionButton/FloatingActionButton.d.ts +8 -6
  163. package/lib/typescript/module/components/FloatingActionButton/index.d.ts +1 -1
  164. package/lib/typescript/module/components/ForceUpdateDialog/ForceUpdateDialog.d.ts +7 -0
  165. package/lib/typescript/module/components/FormField/FormField.d.ts +7 -0
  166. package/lib/typescript/module/components/ImageGallery/ImageGallery.d.ts +6 -4
  167. package/lib/typescript/module/components/Input/Input.d.ts +7 -1
  168. package/lib/typescript/module/components/ListItem/ListItem.d.ts +13 -6
  169. package/lib/typescript/module/components/NumberInput/NumberInput.d.ts +3 -0
  170. package/lib/typescript/module/components/PickerTrigger/PickerTrigger.d.ts +57 -0
  171. package/lib/typescript/module/components/PickerTrigger/index.d.ts +3 -0
  172. package/lib/typescript/module/components/ProgressBar/ProgressBar.d.ts +2 -0
  173. package/lib/typescript/module/components/Radio/Radio.d.ts +3 -0
  174. package/lib/typescript/module/components/Rating/Rating.d.ts +9 -6
  175. package/lib/typescript/module/components/SegmentedControl/SegmentedControl.d.ts +3 -0
  176. package/lib/typescript/module/components/Skeleton/Skeleton.d.ts +49 -20
  177. package/lib/typescript/module/components/Skeleton/SkeletonClock.d.ts +60 -0
  178. package/lib/typescript/module/components/Skeleton/SkeletonContent.d.ts +80 -19
  179. package/lib/typescript/module/components/Skeleton/SkeletonProvider.d.ts +39 -5
  180. package/lib/typescript/module/components/Skeleton/index.d.ts +6 -4
  181. package/lib/typescript/module/components/Slider/Slider.d.ts +12 -1
  182. package/lib/typescript/module/components/Stepper/Stepper.d.ts +18 -6
  183. package/lib/typescript/module/components/Swipeable/Swipeable.d.ts +2 -0
  184. package/lib/typescript/module/components/Switch/Switch.d.ts +1 -0
  185. package/lib/typescript/module/components/Tabs/Tabs.d.ts +26 -2
  186. package/lib/typescript/module/components/TimePicker/TimePicker.d.ts +36 -3
  187. package/lib/typescript/module/components/Toast/Toast.d.ts +8 -0
  188. package/lib/typescript/module/components/Tooltip/Tooltip.d.ts +7 -1
  189. package/lib/typescript/module/components/index.d.ts +5 -5
  190. package/lib/typescript/module/index.d.ts +1 -1
  191. package/lib/typescript/module/theme/index.d.ts +1 -1
  192. package/lib/typescript/module/theme/types.d.ts +578 -12
  193. package/package.json +2 -6
  194. package/lib/commonjs/components/AppIcon/AppIcon.js +0 -120
  195. package/lib/commonjs/types/vector-icons.d.js +0 -2
  196. package/lib/module/components/AppIcon/AppIcon.js +0 -111
  197. package/lib/module/components/AppIcon/index.js +0 -4
  198. package/lib/module/types/vector-icons.d.js +0 -2
  199. package/lib/typescript/commonjs/components/AppIcon/AppIcon.d.ts +0 -20
  200. package/lib/typescript/commonjs/components/AppIcon/index.d.ts +0 -3
  201. package/lib/typescript/module/components/AppIcon/AppIcon.d.ts +0 -20
  202. package/lib/typescript/module/components/AppIcon/index.d.ts +0 -3
@@ -1,10 +1,25 @@
1
+ /**
2
+ * SkeletonProvider — app-level defaults for every <Skeleton> below it.
3
+ *
4
+ * Two responsibilities:
5
+ * 1. Broadcasts the default variant / speed / colors / radius /
6
+ * placeholderCount so consumers don't repeat them per call site.
7
+ * 2. Mounts the shared `SkeletonClockProvider` (see SkeletonClock.tsx) so
8
+ * every primitive shares a single Animated.Value — synchronized shimmer
9
+ * across the whole subtree, one native-driver loop per provider.
10
+ *
11
+ * Also honors the OS "Reduce Motion" preference: when enabled, the clock is
12
+ * paused and skeletons render as static dim blocks. The detection is live —
13
+ * if the user toggles the setting while the app is open the skeletons stop
14
+ * shimmering immediately.
15
+ */
1
16
  import React from 'react';
2
17
  import type { ReactNode } from 'react';
3
18
  import type { SkeletonRadius, SkeletonSpeed, SkeletonVariant } from './Skeleton';
4
19
  /**
5
- * Per-instance color override for a skeleton. `background` is the resting tone
6
- * of the placeholder; `highlight` is the moving shimmer band (or pulse fade).
7
- * Either can be omitted — missing keys fall back to the active theme.
20
+ * Per-instance color override for a skeleton. `background` is the resting
21
+ * tone of the placeholder; `highlight` is the moving shimmer band (or pulse
22
+ * fade). Either can be omitted — missing keys fall back to the active theme.
8
23
  */
9
24
  export interface SkeletonColors {
10
25
  background?: string;
@@ -19,14 +34,33 @@ export interface SkeletonProviderDefaults {
19
34
  radius?: SkeletonRadius;
20
35
  /** App-wide colour overrides for the shimmer base + highlight. */
21
36
  colors?: SkeletonColors;
37
+ /**
38
+ * Fade duration in ms for the `loading → loaded` cross-fade inside
39
+ * `SkeletonContent`. Default `300`. Set to `0` to disable.
40
+ */
41
+ fadeDuration?: number;
42
+ /**
43
+ * Hard override for animation. `'auto'` (default) follows the OS
44
+ * "Reduce Motion" preference: shimmer when off, static when on. `'always'`
45
+ * forces shimmer regardless. `'never'` forces static — useful for tests or
46
+ * battery-sensitive screens.
47
+ */
48
+ animation?: 'auto' | 'always' | 'never';
22
49
  }
23
50
  export interface SkeletonProviderProps extends SkeletonProviderDefaults {
24
51
  children: ReactNode;
25
52
  }
26
53
  export declare const SkeletonProvider: React.FC<SkeletonProviderProps>;
27
54
  /**
28
- * Read the current SkeletonProvider defaults. Returns an empty object when no
29
- * provider is mounted, so the skeleton primitives still work outside of one.
55
+ * Read the current SkeletonProvider defaults. Returns an empty object when
56
+ * no provider is mounted, so the skeleton primitives still work outside of
57
+ * one — but without a shared clock or theme-coordinated colors.
30
58
  */
31
59
  export declare const useSkeletonDefaults: () => SkeletonProviderDefaults;
60
+ /**
61
+ * Subscribes to the OS "Reduce Motion" preference. Live — updates when the
62
+ * user toggles the setting while the app is open. Used internally by
63
+ * `SkeletonProvider`; exposed so consumer screens can branch on it too.
64
+ */
65
+ export declare const useReduceMotion: () => boolean;
32
66
  //# sourceMappingURL=SkeletonProvider.d.ts.map
@@ -1,11 +1,13 @@
1
- export { Skeleton, SkeletonCircle, SkeletonText, SkeletonAvatar, SkeletonCard, SkeletonListItem, default } from './Skeleton';
2
- export type { SkeletonProps, SkeletonCircleProps, SkeletonTextProps, SkeletonAvatarProps, SkeletonCardProps, SkeletonListItemProps, SkeletonVariant, SkeletonSpeed, SkeletonRadius, SkeletonWidth, SkeletonAvatarSize } from './Skeleton';
1
+ export { Skeleton, SkeletonCircle, SkeletonText, default } from './Skeleton';
2
+ export type { SkeletonProps, SkeletonCircleProps, SkeletonTextProps, SkeletonVariant, SkeletonSpeed, SkeletonShape, SkeletonRadius, SkeletonWidth } from './Skeleton';
3
3
  export { SkeletonContent } from './SkeletonContent';
4
- export type { SkeletonContentProps, SkeletonContentMode } from './SkeletonContent';
4
+ export type { SkeletonContentProps, SkeletonStaticOf } from './SkeletonContent';
5
5
  export { SkeletonList } from './SkeletonList';
6
6
  export type { SkeletonListProps } from './SkeletonList';
7
- export { SkeletonProvider, useSkeletonDefaults } from './SkeletonProvider';
7
+ export { SkeletonProvider, useSkeletonDefaults, useReduceMotion } from './SkeletonProvider';
8
8
  export type { SkeletonColors, SkeletonProviderDefaults, SkeletonProviderProps } from './SkeletonProvider';
9
+ export { SkeletonClockProvider, useSkeletonClock } from './SkeletonClock';
10
+ export type { SkeletonClockValue, SkeletonClockProviderProps } from './SkeletonClock';
9
11
  export { SkeletonSkip } from './SkeletonSkip';
10
12
  export type { SkeletonSkipProps } from './SkeletonSkip';
11
13
  //# sourceMappingURL=index.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { View } from 'react-native';
3
- import type { StyleProp, ViewStyle } from 'react-native';
3
+ import type { StyleProp, TextStyle, ViewStyle } from 'react-native';
4
4
  export type SliderTone = 'primary' | 'success' | 'warning' | 'error';
5
5
  export type SliderSize = 'sm' | 'md' | 'lg';
6
6
  interface SliderCommonProps {
@@ -14,6 +14,17 @@ interface SliderCommonProps {
14
14
  formatLabel?: (value: number) => string;
15
15
  accessibilityLabel?: string;
16
16
  style?: StyleProp<ViewStyle>;
17
+ containerStyle?: StyleProp<ViewStyle>;
18
+ trackStyle?: StyleProp<ViewStyle>;
19
+ fillStyle?: StyleProp<ViewStyle>;
20
+ thumbStyle?: StyleProp<ViewStyle>;
21
+ labelStyle?: StyleProp<TextStyle>;
22
+ /** Override the thumb press-scale target (default 1.1). */
23
+ thumbPressScale?: number;
24
+ /** Override the label fade duration (default theme.motion.duration.fast). */
25
+ labelShowDuration?: number;
26
+ /** Override the label final opacity when visible (default 1). */
27
+ labelOpacity?: number;
17
28
  testID?: string;
18
29
  }
19
30
  interface SliderSingleProps extends SliderCommonProps {
@@ -1,6 +1,5 @@
1
1
  import React from 'react';
2
- import { View } from 'react-native';
3
- import type { StyleProp, ViewStyle } from 'react-native';
2
+ import type { StyleProp, TextStyle, View as RNView, ViewStyle } from 'react-native';
4
3
  export type StepperVariant = 'horizontal' | 'vertical';
5
4
  export type StepperTone = 'primary' | 'success';
6
5
  export interface StepperStep {
@@ -13,19 +12,32 @@ export interface StepperProps {
13
12
  steps: StepperStep[];
14
13
  activeStep: number;
15
14
  onStepPress?: (index: number) => void;
15
+ /**
16
+ * Gate for tap-to-jump on completed steps. Default false — even when
17
+ * `onStepPress` is provided, taps are no-op unless this is true. Keeps
18
+ * progress-display use cases (the common case) from accidentally becoming
19
+ * navigable.
20
+ */
21
+ allowStepPress?: boolean;
16
22
  variant?: StepperVariant;
17
23
  tone?: StepperTone;
18
24
  /**
19
- * When true, renders the component as a skeleton placeholder via SkeletonContent's auto walker.
20
- * Component still renders its normal layout the walker replaces Text/Image/sized View leaves
21
- * with shimmer blocks. Use this when the data driving the component is still being fetched.
25
+ * When true, renders the component as its authored skeleton placeholder shape.
26
+ * The placeholder mirrors the real layout's footprint so the UI doesn't reflow
27
+ * when data arrives. Use this while the data driving the component is being fetched.
22
28
  */
23
29
  loading?: boolean;
24
30
  accessibilityLabel?: string;
25
31
  style?: StyleProp<ViewStyle>;
32
+ containerStyle?: StyleProp<ViewStyle>;
33
+ circleStyle?: StyleProp<ViewStyle>;
34
+ labelStyle?: StyleProp<TextStyle>;
35
+ connectorStyle?: StyleProp<ViewStyle>;
26
36
  testID?: string;
27
37
  }
28
- declare const Stepper: React.ForwardRefExoticComponent<StepperProps & React.RefAttributes<View>>;
38
+ declare const Stepper: React.ForwardRefExoticComponent<StepperProps & React.RefAttributes<RNView>> & {
39
+ Skeleton: React.FC<StepperProps>;
40
+ };
29
41
  export { Stepper };
30
42
  export default Stepper;
31
43
  //# sourceMappingURL=Stepper.d.ts.map
@@ -36,6 +36,8 @@ export interface SwipeableProps {
36
36
  onSwipeClose?: () => void;
37
37
  disabled?: boolean;
38
38
  containerStyle?: StyleProp<ViewStyle>;
39
+ contentStyle?: StyleProp<ViewStyle>;
40
+ actionStyle?: StyleProp<ViewStyle>;
39
41
  accessibilityLabel?: string;
40
42
  testID?: string;
41
43
  }
@@ -19,6 +19,7 @@ export interface SwitchProps extends Omit<PressableProps, 'style' | 'children' |
19
19
  */
20
20
  bounce?: boolean;
21
21
  style?: StyleProp<ViewStyle>;
22
+ containerStyle?: StyleProp<ViewStyle>;
22
23
  trackStyle?: StyleProp<ViewStyle>;
23
24
  thumbStyle?: StyleProp<ViewStyle>;
24
25
  testID?: string;
@@ -9,14 +9,16 @@
9
9
  * native driver does not support layout props.
10
10
  */
11
11
  import React from 'react';
12
- import { View } from 'react-native';
13
- import type { StyleProp, ViewStyle } from 'react-native';
12
+ import { Animated, View } from 'react-native';
13
+ import type { StyleProp, TextStyle, ViewStyle } from 'react-native';
14
14
  export type TabsVariant = 'underline' | 'pills';
15
15
  export type TabsAlign = 'left' | 'center';
16
16
  export interface TabItem {
17
17
  key: string;
18
18
  label: string;
19
19
  icon?: React.ReactNode;
20
+ /** Optional numeric/string badge — rendered inline after the label when provided. */
21
+ badge?: string | number;
20
22
  disabled?: boolean;
21
23
  }
22
24
  export interface TabsProps {
@@ -27,7 +29,29 @@ export interface TabsProps {
27
29
  scrollable?: boolean;
28
30
  align?: TabsAlign;
29
31
  style?: StyleProp<ViewStyle>;
32
+ /** Alias of `style`. Applied to the outer container View. Additive — both merge. */
33
+ containerStyle?: StyleProp<ViewStyle>;
30
34
  tabStyle?: StyleProp<ViewStyle>;
35
+ /** Style override applied to each tab label Text. */
36
+ tabLabelStyle?: StyleProp<TextStyle>;
37
+ /** Style override applied to the per-tab icon wrapper. */
38
+ tabIconStyle?: StyleProp<ViewStyle>;
39
+ /** Style override applied to the per-tab badge wrapper. */
40
+ tabBadgeStyle?: StyleProp<ViewStyle>;
41
+ /** Style override applied to the bottom divider line (underline variant only). */
42
+ dividerStyle?: StyleProp<ViewStyle>;
43
+ /** Style override applied to the animated indicator (underline or pill). */
44
+ indicatorStyle?: StyleProp<ViewStyle>;
45
+ /**
46
+ * Optional fractional active-index (0..tabs.length-1). When supplied and
47
+ * every tab has been measured, the indicator's translateX + width track
48
+ * this value via interpolation instead of springing on activeKey change.
49
+ * Wire it to a horizontal pager's `scrollX / pageWidth` to make the
50
+ * indicator follow drags in real time. Press-driven `onChange` still fires
51
+ * the same way; consumers typically scroll the pager in response so the
52
+ * progress value catches up.
53
+ */
54
+ progress?: Animated.AnimatedInterpolation<number> | Animated.Value;
31
55
  accessibilityLabel?: string;
32
56
  testID?: string;
33
57
  }
@@ -1,5 +1,6 @@
1
1
  import React from 'react';
2
2
  import type { StyleProp, ViewStyle } from 'react-native';
3
+ import type { FieldBaseSize, FieldBaseVariant } from '../FieldBase';
3
4
  export type TimeFormat = '12h' | '24h';
4
5
  export type Period = 'AM' | 'PM';
5
6
  export type MinuteStep = 1 | 5 | 15 | 30;
@@ -7,11 +8,23 @@ export interface TimeValue {
7
8
  hour: number;
8
9
  minute: number;
9
10
  }
11
+ /**
12
+ * TimePicker supports two modes:
13
+ *
14
+ * 1. Controlled-modal mode — pass `visible`, `onSelect`, `onClose`. The
15
+ * component renders only the modal sheet and the caller owns open/close
16
+ * state plus its own trigger UI.
17
+ * 2. Trigger mode — omit `visible`. The component renders a PickerTrigger
18
+ * field (label / value / placeholder / chevron / clear / helper / error)
19
+ * and manages its own modal open state. `onSelect` is still called on
20
+ * confirm.
21
+ */
10
22
  export interface TimePickerProps {
11
- visible: boolean;
23
+ /** Controlled-modal visibility. When omitted, the component enters trigger mode. */
24
+ visible?: boolean;
12
25
  value?: TimeValue | null;
13
- onSelect: (time: TimeValue) => void;
14
- onClose: () => void;
26
+ onSelect?: (time: TimeValue) => void;
27
+ onClose?: () => void;
15
28
  format?: TimeFormat;
16
29
  minuteStep?: MinuteStep;
17
30
  title?: string;
@@ -19,6 +32,26 @@ export interface TimePickerProps {
19
32
  cancelLabel?: string;
20
33
  testID?: string;
21
34
  style?: StyleProp<ViewStyle>;
35
+ /** Outer container style applied to the bottom sheet. */
36
+ containerStyle?: StyleProp<ViewStyle>;
37
+ /** Style override for the title text container. */
38
+ headerLabelStyle?: StyleProp<ViewStyle>;
39
+ /** Style override for the cancel/confirm footer buttons. */
40
+ footerButtonStyle?: StyleProp<ViewStyle>;
41
+ label?: string;
42
+ placeholder?: string;
43
+ helperText?: string;
44
+ error?: string;
45
+ required?: boolean;
46
+ disabled?: boolean;
47
+ size?: FieldBaseSize;
48
+ variant?: FieldBaseVariant;
49
+ clearable?: boolean;
50
+ onClear?: () => void;
51
+ /** Override the trigger field's value formatting. Defaults to `format`-aware h:mm/HH:mm. */
52
+ formatValue?: (time: TimeValue) => string;
53
+ /** Style passed through to the PickerTrigger field row. */
54
+ triggerStyle?: StyleProp<ViewStyle>;
22
55
  }
23
56
  declare const TimePicker: React.FC<TimePickerProps>;
24
57
  export { TimePicker };
@@ -18,8 +18,16 @@ export interface ToastOptions {
18
18
  icon?: React.ReactNode;
19
19
  /** Style applied to the toast container (override radius, padding, shadow per-toast). */
20
20
  style?: StyleProp<ViewStyle>;
21
+ /** Alias of `style`. Applied to the toast container (merged additively). */
22
+ containerStyle?: StyleProp<ViewStyle>;
21
23
  /** Style applied to the toast message Text. */
22
24
  textStyle?: StyleProp<TextStyle>;
25
+ /** Style applied to the leading icon circle wrapper. */
26
+ iconCircleStyle?: StyleProp<ViewStyle>;
27
+ /** Style applied to the message Text (alias-ish of `textStyle` but kept distinct for slot symmetry). */
28
+ messageStyle?: StyleProp<TextStyle>;
29
+ /** Style applied to the trailing action Pressable. */
30
+ actionButtonStyle?: StyleProp<ViewStyle>;
23
31
  }
24
32
  export interface ToastItem extends ToastOptions {
25
33
  id: string;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import type { StyleProp, ViewStyle } from 'react-native';
2
+ import type { StyleProp, TextStyle, ViewStyle } from 'react-native';
3
3
  export type TooltipPlacement = 'top' | 'bottom' | 'left' | 'right' | 'auto';
4
4
  export type TooltipTrigger = 'longPress' | 'press' | 'manual';
5
5
  export interface TooltipProps {
@@ -14,6 +14,12 @@ export interface TooltipProps {
14
14
  showArrow?: boolean;
15
15
  accessibilityLabel?: string;
16
16
  style?: StyleProp<ViewStyle>;
17
+ /** Alias of `style`. Applied to the outer animated tooltip wrapper (merged additively). */
18
+ containerStyle?: StyleProp<ViewStyle>;
19
+ /** Style override applied to the arrow caret View. */
20
+ arrowStyle?: StyleProp<ViewStyle>;
21
+ /** Style override applied to the message Text (only when `content` is a string). */
22
+ messageStyle?: StyleProp<TextStyle>;
17
23
  testID?: string;
18
24
  }
19
25
  declare const Tooltip: React.FC<TooltipProps>;
@@ -35,13 +35,11 @@ export type { EmptyStateProps, EmptyStateAction, EmptyStateSize } from './EmptyS
35
35
  export { FormField } from './FormField';
36
36
  export type { FormFieldProps, FormFieldLayout } from './FormField';
37
37
  export { FloatingActionButton, FloatingActionButtonGroup } from './FloatingActionButton';
38
- export type { FloatingActionButtonProps, FloatingActionButtonSize, FloatingActionButtonTone, FloatingActionButtonPosition, FloatingActionButtonIconConfig, FloatingActionButtonGroupProps, FloatingActionButtonGroupAction } from './FloatingActionButton';
38
+ export type { FloatingActionButtonProps, FloatingActionButtonSize, FloatingActionButtonTone, FloatingActionButtonPosition, FloatingActionButtonGroupProps, FloatingActionButtonGroupAction } from './FloatingActionButton';
39
39
  export { ForceUpdateDialog } from './ForceUpdateDialog';
40
40
  export type { ForceUpdateDialogProps } from './ForceUpdateDialog';
41
41
  export { AppBar } from './AppBar';
42
42
  export type { AppBarProps, AppBarAction, AppBarVariant } from './AppBar';
43
- export { AppIcon } from './AppIcon';
44
- export type { AppIconProps, IconFamily, IconSize, IconTone } from './AppIcon';
45
43
  export { ImageGallery } from './ImageGallery';
46
44
  export type { ImageGalleryProps, GalleryImage } from './ImageGallery';
47
45
  export { Input } from './Input';
@@ -56,6 +54,8 @@ export { NumberInput } from './NumberInput';
56
54
  export type { NumberInputProps, NumberInputRef, NumberInputSize, NumberInputVariant } from './NumberInput';
57
55
  export { OTPInput } from './OTPInput';
58
56
  export type { OTPInputProps, OTPInputRef, OTPInputSize } from './OTPInput';
57
+ export { PickerTrigger } from './PickerTrigger';
58
+ export type { PickerTriggerProps, PickerTriggerSize, PickerTriggerVariant } from './PickerTrigger';
59
59
  export { ProgressBar } from './ProgressBar';
60
60
  export type { ProgressBarProps, ProgressBarTone } from './ProgressBar';
61
61
  export { Radio, RadioGroup } from './Radio';
@@ -70,8 +70,8 @@ export { Select } from './Select';
70
70
  export type { SelectProps, SelectOption, SelectSize } from './Select';
71
71
  export { Stepper } from './Stepper';
72
72
  export type { StepperProps, StepperVariant, StepperStep, StepperTone } from './Stepper';
73
- export { Skeleton, SkeletonAvatar, SkeletonCard, SkeletonCircle, SkeletonContent, SkeletonList, SkeletonListItem, SkeletonProvider, SkeletonSkip, SkeletonText, useSkeletonDefaults } from './Skeleton';
74
- export type { SkeletonAvatarProps, SkeletonCardProps, SkeletonCircleProps, SkeletonColors, SkeletonContentMode, SkeletonContentProps, SkeletonListItemProps, SkeletonListProps, SkeletonProps, SkeletonProviderDefaults, SkeletonProviderProps, SkeletonSkipProps, SkeletonSpeed, SkeletonTextProps, SkeletonVariant } from './Skeleton';
73
+ export { Skeleton, SkeletonCircle, SkeletonClockProvider, SkeletonContent, SkeletonList, SkeletonProvider, SkeletonSkip, SkeletonText, useReduceMotion, useSkeletonClock, useSkeletonDefaults } from './Skeleton';
74
+ export type { SkeletonCircleProps, SkeletonClockProviderProps, SkeletonClockValue, SkeletonColors, SkeletonContentProps, SkeletonListProps, SkeletonProps, SkeletonProviderDefaults, SkeletonProviderProps, SkeletonRadius, SkeletonShape, SkeletonSkipProps, SkeletonSpeed, SkeletonStaticOf, SkeletonTextProps, SkeletonVariant, SkeletonWidth } from './Skeleton';
75
75
  export { Slider } from './Slider';
76
76
  export type { SliderProps, SliderTone, SliderSize } from './Slider';
77
77
  export { Swipeable } from './Swipeable';
@@ -20,7 +20,7 @@ export type { LoggerType, RemoteLogger } from './logger';
20
20
  export { VersionCheck, useVersionCheck } from './versionCheck';
21
21
  export type { UpdateInfo, UpdateType, VersionData, VersionComparison, VersionCheckResult, VersionCheckType, ParsedVersion, Platform } from './versionCheck';
22
22
  export { ThemeProvider, useTheme, useThemeMode, setTheme, setColorMode, getColorMode, getTheme, resetTheme, subscribeTheme, mergeTheme, lightTheme, darkTheme } from './theme';
23
- export type { Theme, ThemeOverrides, ThemeProviderProps, ColorMode, ColorPalette, ColorSchemePreference, RadiusScale, ShadowDefinition, ShadowScale, SpacingScale, TypographyScale, MotionScale, DeepPartial } from './theme';
23
+ export type { Theme, ThemeOverrides, ThemeProviderProps, IconRegistry, IconRenderer, ColorMode, ColorPalette, ColorSchemePreference, RadiusScale, ShadowDefinition, ShadowScale, SpacingScale, TypographyScale, MotionScale, DeepPartial } from './theme';
24
24
  export { useToggle, useDebounce, usePressAnimation } from './hooks';
25
25
  export type { UseToggleResult, UsePressAnimationOptions, UsePressAnimationResult } from './hooks';
26
26
  export { ScreenDimensions, Breakpoints, Responsive, isScreenSize, isTablet, Spacing, Padding, Margin, triggerHaptic, setHapticImplementation, shadowStyle, compressImage } from './utils';
@@ -14,5 +14,5 @@ export type { FontWeightKey } from './textStyle';
14
14
  export { createAnimatedValue, setNativeValue } from './animatedValue';
15
15
  export { Gradient, isGradientAvailable } from './Gradient';
16
16
  export type { GradientProps } from './Gradient';
17
- export type { ColorMode, ColorPalette, GradientDefinition, GradientScale, RadiusScale, ShadowDefinition, ShadowScale, SpacingScale, Theme, ThemeOverrides, TypographyScale, MotionScale, DeepPartial } from './types';
17
+ export type { ColorMode, ColorPalette, GradientDefinition, GradientScale, IconRegistry, IconRenderer, RadiusScale, ShadowDefinition, ShadowScale, SpacingScale, Theme, ThemeOverrides, TypographyScale, MotionScale, DeepPartial } from './types';
18
18
  //# sourceMappingURL=index.d.ts.map