ferns-ui 0.37.8 → 0.38.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/dist/ActionSheet.js +1 -1
- package/dist/ActionSheet.js.map +1 -1
- package/dist/Avatar.js.map +1 -1
- package/dist/Badge.js.map +1 -1
- package/dist/Banner.js +3 -3
- package/dist/Banner.js.map +1 -1
- package/dist/BlurBox.native.js.map +1 -1
- package/dist/Body.js.map +1 -1
- package/dist/Box.js +7 -7
- package/dist/Box.js.map +1 -1
- package/dist/Button.js +1 -1
- package/dist/Button.js.map +1 -1
- package/dist/CheckBox.js.map +1 -1
- package/dist/Common.d.ts +2 -0
- package/dist/Common.js.map +1 -1
- package/dist/Constants.d.ts +12681 -0
- package/dist/Constants.js +3256 -0
- package/dist/Constants.js.map +1 -1
- package/dist/CustomSelect.js.map +1 -1
- package/dist/DateTimeActionSheet.js.map +1 -1
- package/dist/DateTimeField.android.js.map +1 -1
- package/dist/DateTimeField.ios.js.map +1 -1
- package/dist/DateTimeField.js.map +1 -1
- package/dist/ErrorBoundary.js.map +1 -1
- package/dist/Field.d.ts +5 -1
- package/dist/Field.js +11 -4
- package/dist/Field.js.map +1 -1
- package/dist/Form.js.map +1 -1
- package/dist/HeaderButtons.js +2 -2
- package/dist/HeaderButtons.js.map +1 -1
- package/dist/Heading.js.map +1 -1
- package/dist/Hyperlink.js +1 -1
- package/dist/Hyperlink.js.map +1 -1
- package/dist/IconButton.js +2 -2
- package/dist/IconButton.js.map +1 -1
- package/dist/Image.js.map +1 -1
- package/dist/Mask.js.map +1 -1
- package/dist/MediaQuery.js.map +1 -1
- package/dist/MobileAddressAutoComplete.d.ts +12 -0
- package/dist/MobileAddressAutoComplete.js +55 -0
- package/dist/MobileAddressAutoComplete.js.map +1 -0
- package/dist/Modal.js.map +1 -1
- package/dist/ModalSheet.js.map +1 -1
- package/dist/Page.js.map +1 -1
- package/dist/PickerSelect.js +2 -2
- package/dist/PickerSelect.js.map +1 -1
- package/dist/SegmentedControl.js.map +1 -1
- package/dist/SelectList.js.map +1 -1
- package/dist/Spinner.js.map +1 -1
- package/dist/SplitPage.js +7 -7
- package/dist/SplitPage.js.map +1 -1
- package/dist/SplitPage.native.js +8 -8
- package/dist/SplitPage.native.js.map +1 -1
- package/dist/Table.js.map +1 -1
- package/dist/TableHeaderCell.js.map +1 -1
- package/dist/TableRow.js.map +1 -1
- package/dist/TapToEdit.js +10 -7
- package/dist/TapToEdit.js.map +1 -1
- package/dist/Text.js.map +1 -1
- package/dist/TextField.js.map +1 -1
- package/dist/TextFieldNumberActionSheet.js.map +1 -1
- package/dist/Theme.js +4 -4
- package/dist/Theme.js.map +1 -1
- package/dist/Toast.js.map +1 -1
- package/dist/Tooltip.js.map +1 -1
- package/dist/UnifiedAddressAutoComplete.d.ts +12 -0
- package/dist/UnifiedAddressAutoComplete.js +22 -0
- package/dist/UnifiedAddressAutoComplete.js.map +1 -0
- package/dist/UnifiedScreens.js.map +1 -1
- package/dist/Unifier.d.ts +5 -0
- package/dist/Unifier.js.map +1 -1
- package/dist/Utilities.d.ts +19 -0
- package/dist/Utilities.js +79 -0
- package/dist/Utilities.js.map +1 -1
- package/dist/WebAddressAutocomplete.d.ts +10 -0
- package/dist/WebAddressAutocomplete.js +57 -0
- package/dist/WebAddressAutocomplete.js.map +1 -0
- package/dist/WithLabel.js.map +1 -1
- package/dist/index.d.ts +22 -19
- package/dist/index.js +22 -22
- package/dist/index.js.map +1 -1
- package/dist/useStoredState.js +1 -1
- package/dist/useStoredState.js.map +1 -1
- package/package.json +19 -15
- package/src/ActionSheet.tsx +1 -1
- package/src/Banner.tsx +3 -3
- package/src/Box.tsx +7 -7
- package/src/Button.tsx +1 -1
- package/src/Common.ts +2 -0
- package/src/Constants.ts +3258 -0
- package/src/Field.tsx +41 -6
- package/src/HeaderButtons.tsx +2 -2
- package/src/Hyperlink.tsx +1 -1
- package/src/IconButton.tsx +2 -2
- package/src/MobileAddressAutoComplete.tsx +129 -0
- package/src/SplitPage.native.tsx +8 -8
- package/src/SplitPage.tsx +7 -7
- package/src/TapToEdit.tsx +13 -4
- package/src/UnifiedAddressAutoComplete.tsx +71 -0
- package/src/Unifier.ts +6 -0
- package/src/Utilities.tsx +120 -0
- package/src/WebAddressAutocomplete.tsx +90 -0
- package/src/index.tsx +24 -22
- package/src/useStoredState.ts +1 -1
package/src/index.tsx
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
export * from "./Constants";
|
|
2
|
-
export * from "./Common";
|
|
3
|
-
export * from "./MediaQuery";
|
|
4
1
|
export * from "./ActionSheet";
|
|
5
2
|
export * from "./Avatar";
|
|
6
3
|
export * from "./Badge";
|
|
@@ -11,58 +8,63 @@ export * from "./Box";
|
|
|
11
8
|
export * from "./Button";
|
|
12
9
|
export * from "./Card";
|
|
13
10
|
export * from "./CheckBox";
|
|
11
|
+
export * from "./Common";
|
|
12
|
+
export * from "./Constants";
|
|
14
13
|
export * from "./DateTimeActionSheet";
|
|
14
|
+
export * from "./DateTimeField";
|
|
15
|
+
export * from "./DecimalRangeActionSheet";
|
|
15
16
|
export * from "./ErrorBoundary";
|
|
16
17
|
export * from "./ErrorPage";
|
|
17
18
|
export * from "./FernsProvider";
|
|
18
|
-
export * from "./FlatList";
|
|
19
19
|
export * from "./Field";
|
|
20
|
+
export * from "./FlatList";
|
|
20
21
|
export * from "./Form";
|
|
21
22
|
export * from "./HeaderButtons";
|
|
22
23
|
export * from "./Heading";
|
|
24
|
+
export * from "./HeightActionSheet";
|
|
23
25
|
export * from "./Icon";
|
|
24
26
|
export * from "./IconButton";
|
|
25
27
|
export * from "./Image";
|
|
26
28
|
export * from "./ImageBackground";
|
|
27
29
|
export * from "./InfoTooltipButton";
|
|
28
|
-
// export * from "./Layout";
|
|
29
|
-
// export * from "./Drawer";
|
|
30
30
|
export * from "./Link";
|
|
31
31
|
export * from "./Mask";
|
|
32
|
+
export * from "./MediaQuery";
|
|
32
33
|
export * from "./Meta";
|
|
34
|
+
export * from "./MobileAddressAutoComplete";
|
|
33
35
|
export * from "./Modal";
|
|
34
|
-
|
|
36
|
+
export * from "./ModalSheet";
|
|
37
|
+
export * from "./NumberPickerActionSheet";
|
|
35
38
|
export * from "./Page";
|
|
36
39
|
export * from "./Pill";
|
|
40
|
+
export * from "./ProgressBar";
|
|
37
41
|
export * from "./ScrollView";
|
|
38
42
|
export * from "./SegmentedControl";
|
|
39
43
|
export * from "./SelectList";
|
|
40
|
-
export * from "./
|
|
44
|
+
export * from "./SideDrawer";
|
|
41
45
|
export * from "./Spinner";
|
|
46
|
+
export * from "./SplitPage";
|
|
42
47
|
export * from "./Switch";
|
|
48
|
+
export * from "./Table";
|
|
49
|
+
export * from "./TableHeader";
|
|
50
|
+
export * from "./TableHeaderCell";
|
|
51
|
+
export * from "./TableRow";
|
|
43
52
|
export * from "./TapToEdit";
|
|
44
53
|
export * from "./Text";
|
|
45
54
|
export * from "./TextArea";
|
|
46
55
|
export * from "./TextField";
|
|
47
|
-
export * from "./
|
|
56
|
+
export * from "./Theme";
|
|
48
57
|
export * from "./Toast";
|
|
58
|
+
export * from "./Tooltip";
|
|
59
|
+
export * from "./UnifiedAddressAutoComplete";
|
|
49
60
|
export * from "./UnifiedScreens";
|
|
50
61
|
export * from "./Unifier";
|
|
62
|
+
export * from "./useStoredState";
|
|
63
|
+
export * from "./WebAddressAutocomplete";
|
|
51
64
|
export * from "./WithLabel";
|
|
52
|
-
export * from "./
|
|
53
|
-
export * from "./
|
|
54
|
-
export * from "./NumberPickerActionSheet";
|
|
65
|
+
// export * from "./Layout";
|
|
66
|
+
// export * from "./Drawer";
|
|
55
67
|
// export * from "./Chart";
|
|
56
|
-
export * from "./ModalSheet";
|
|
57
|
-
export * from "./ProgressBar";
|
|
58
|
-
export * from "./DateTimeField";
|
|
59
|
-
export * from "./SideDrawer";
|
|
60
|
-
export * from "./Table";
|
|
61
|
-
export * from "./TableHeader";
|
|
62
|
-
export * from "./TableHeaderCell";
|
|
63
|
-
export * from "./TableRow";
|
|
64
|
-
export * from "./Theme";
|
|
65
|
-
export * from "./useStoredState";
|
|
66
68
|
|
|
67
69
|
// Lifted from react-native
|
|
68
70
|
type ImageRequireSource = number;
|
package/src/useStoredState.ts
CHANGED