@hero-design/rn 8.99.2 → 8.99.3

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 (21) hide show
  1. package/.turbo/turbo-build.log +3 -3
  2. package/CHANGELOG.md +8 -0
  3. package/es/index.js +15 -22
  4. package/lib/index.js +15 -22
  5. package/package.json +1 -1
  6. package/src/components/DatePicker/__tests__/__snapshots__/DatePicker.spec.tsx.snap +45 -96
  7. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +15 -32
  8. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerCalendar.spec.tsx.snap +15 -32
  9. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +30 -64
  10. package/src/components/RichTextEditor/RichTextEditor.tsx +3 -11
  11. package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +30 -64
  12. package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +106 -225
  13. package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +91 -193
  14. package/src/components/TextInput/StyledTextInput.tsx +8 -9
  15. package/src/components/TextInput/__tests__/__snapshots__/StyledTextInput.spec.tsx.snap +42 -122
  16. package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +246 -520
  17. package/src/components/TextInput/index.tsx +3 -11
  18. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +30 -64
  19. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +30 -64
  20. package/stats/8.99.3/rn-stats.html +4844 -0
  21. package/types/components/TextInput/StyledTextInput.d.ts +5 -2
@@ -12,13 +12,16 @@ declare const StyledLabelContainerInsideTextInput: import("@emotion/native").Sty
12
12
  as?: React.ElementType;
13
13
  } & {
14
14
  themeVariant: Variant;
15
+ themeHasPrefix: boolean;
15
16
  }, {}, {}>;
16
- declare const StyledLabelInsideTextInput: import("@emotion/native").StyledComponent<import("../Typography/Body").BodyProps & {
17
+ declare const StyledLabelInsideTextInput: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
17
18
  theme?: import("@emotion/react").Theme;
18
19
  as?: React.ElementType;
19
20
  } & {
20
21
  themeState: State;
21
- }, {}, {}>;
22
+ }, {}, {
23
+ ref?: import("react").Ref<View> | undefined;
24
+ }>;
22
25
  declare const StyledAsteriskLabelInsideTextInput: import("@emotion/native").StyledComponent<import("../Typography/Body").BodyProps & {
23
26
  theme?: import("@emotion/react").Theme;
24
27
  as?: React.ElementType;