@draftbit/core 47.0.1-17098e.2 → 47.0.1-2aab54.2
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/lib/commonjs/components/Button.js +15 -27
- package/lib/commonjs/components/Checkbox/Checkbox.js +3 -1
- package/lib/commonjs/components/Checkbox/CheckboxGroup.js +17 -2
- package/lib/commonjs/components/DeprecatedButton.js +151 -0
- package/lib/commonjs/components/DeprecatedCardWrapper.js +2 -2
- package/lib/commonjs/components/DeprecatedFAB.js +2 -1
- package/lib/commonjs/components/Picker/Picker.js +4 -3
- package/lib/commonjs/components/Picker/PickerComponent.ios.js +2 -2
- package/lib/commonjs/components/Touchable.js +11 -27
- package/lib/commonjs/components/Touchable.web.js +9 -0
- package/lib/commonjs/index.js +25 -82
- package/lib/commonjs/mappings/Button.js +10 -14
- package/lib/commonjs/mappings/NativeBase/AlertDialog.js +93 -0
- package/lib/commonjs/mappings/NativeBase/Button.js +84 -0
- package/lib/commonjs/mappings/NativeBase/DataDisplay.js +48 -0
- package/lib/commonjs/mappings/NativeBase/Feedback.js +74 -0
- package/lib/commonjs/mappings/NativeBase/Layout.js +114 -0
- package/lib/commonjs/mappings/NativeBase/Media.js +49 -0
- package/lib/commonjs/mappings/NativeBase/Menu.js +111 -0
- package/lib/commonjs/mappings/NativeBase/Modal.js +93 -0
- package/lib/commonjs/mappings/NativeBase/Other.js +94 -0
- package/lib/commonjs/mappings/NativeBase/Popover.js +99 -0
- package/lib/commonjs/mappings/Touchable.js +20 -0
- package/lib/module/components/Button.js +9 -21
- package/lib/module/components/Checkbox/Checkbox.js +3 -2
- package/lib/module/components/DeprecatedButton.js +141 -0
- package/lib/module/components/DeprecatedCardWrapper.js +2 -2
- package/lib/module/components/DeprecatedFAB.js +3 -2
- package/lib/module/components/Picker/Picker.js +4 -3
- package/lib/module/components/Picker/PickerComponent.ios.js +1 -1
- package/lib/module/components/Touchable.js +10 -25
- package/lib/module/components/Touchable.web.js +2 -0
- package/lib/module/index.js +121 -31
- package/lib/module/mappings/Button.js +11 -15
- package/lib/module/mappings/NativeBase/AlertDialog.js +86 -0
- package/lib/module/mappings/NativeBase/Button.js +86 -0
- package/lib/module/mappings/NativeBase/DataDisplay.js +41 -0
- package/lib/module/mappings/NativeBase/Feedback.js +67 -0
- package/lib/module/mappings/NativeBase/Layout.js +107 -0
- package/lib/module/mappings/NativeBase/Media.js +42 -0
- package/lib/module/mappings/NativeBase/Menu.js +104 -0
- package/lib/module/mappings/NativeBase/Modal.js +86 -0
- package/lib/module/mappings/NativeBase/Other.js +87 -0
- package/lib/module/mappings/NativeBase/Popover.js +92 -0
- package/lib/module/mappings/Touchable.js +13 -0
- package/lib/typescript/src/components/Button.d.ts +0 -2
- package/lib/typescript/src/components/Button.d.ts.map +1 -1
- package/lib/typescript/src/components/Checkbox/Checkbox.d.ts +2 -2
- package/lib/typescript/src/components/Checkbox/Checkbox.d.ts.map +1 -1
- package/lib/typescript/src/components/DeprecatedButton.d.ts +54 -0
- package/lib/typescript/src/components/DeprecatedButton.d.ts.map +1 -0
- package/lib/typescript/src/components/DeprecatedCardWrapper.d.ts.map +1 -1
- package/lib/typescript/src/components/DeprecatedFAB.d.ts +2 -2
- package/lib/typescript/src/components/DeprecatedFAB.d.ts.map +1 -1
- package/lib/typescript/src/components/Picker/Picker.d.ts.map +1 -1
- package/lib/typescript/src/components/Touchable.d.ts +2 -9
- package/lib/typescript/src/components/Touchable.d.ts.map +1 -1
- package/lib/typescript/src/components/Touchable.web.d.ts +3 -0
- package/lib/typescript/src/components/Touchable.web.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +102 -29
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/mappings/Button.d.ts +2 -224
- package/lib/typescript/src/mappings/Button.d.ts.map +1 -1
- package/lib/typescript/src/mappings/NativeBase/AlertDialog.d.ts +134 -0
- package/lib/typescript/src/mappings/NativeBase/AlertDialog.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Button.d.ts +1 -0
- package/lib/typescript/src/mappings/NativeBase/Button.d.ts.map +1 -0
- package/lib/typescript/src/mappings/{Pressable.d.ts → NativeBase/DataDisplay.d.ts} +34 -40
- package/lib/typescript/src/mappings/NativeBase/DataDisplay.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Feedback.d.ts +2 -0
- package/lib/typescript/src/mappings/NativeBase/Feedback.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Layout.d.ts +146 -0
- package/lib/typescript/src/mappings/NativeBase/Layout.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Media.d.ts +48 -0
- package/lib/typescript/src/mappings/NativeBase/Media.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Menu.d.ts +227 -0
- package/lib/typescript/src/mappings/NativeBase/Menu.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Modal.d.ts +133 -0
- package/lib/typescript/src/mappings/NativeBase/Modal.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Other.d.ts +179 -0
- package/lib/typescript/src/mappings/NativeBase/Other.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Popover.d.ts +136 -0
- package/lib/typescript/src/mappings/NativeBase/Popover.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Touchable.d.ts +22 -0
- package/lib/typescript/src/mappings/Touchable.d.ts.map +1 -0
- package/package.json +3 -3
- package/src/components/Button.js +11 -18
- package/src/components/Button.tsx +11 -45
- package/src/components/Checkbox/Checkbox.js +3 -2
- package/src/components/Checkbox/Checkbox.tsx +7 -5
- package/src/components/DeprecatedButton.js +95 -0
- package/src/components/DeprecatedButton.tsx +214 -0
- package/src/components/DeprecatedCardWrapper.js +2 -2
- package/src/components/DeprecatedCardWrapper.tsx +4 -3
- package/src/components/DeprecatedFAB.js +3 -2
- package/src/components/DeprecatedFAB.tsx +5 -5
- package/src/components/Picker/Picker.js +4 -3
- package/src/components/Picker/Picker.tsx +4 -4
- package/src/components/Picker/PickerComponent.ios.js +1 -1
- package/src/components/Picker/PickerComponent.ios.tsx +1 -1
- package/src/components/Touchable.js +11 -16
- package/src/components/Touchable.tsx +11 -42
- package/src/components/Touchable.web.js +2 -0
- package/src/components/Touchable.web.tsx +3 -0
- package/src/index.js +112 -31
- package/src/index.tsx +123 -43
- package/src/mappings/Button.js +10 -14
- package/src/mappings/Button.ts +10 -14
- package/src/mappings/NativeBase/AlertDialog.js +103 -0
- package/src/mappings/NativeBase/AlertDialog.ts +118 -0
- package/src/mappings/NativeBase/Button.js +84 -0
- package/src/mappings/NativeBase/Button.ts +83 -0
- package/src/mappings/NativeBase/DataDisplay.js +54 -0
- package/src/mappings/NativeBase/DataDisplay.ts +64 -0
- package/src/mappings/NativeBase/Feedback.js +89 -0
- package/src/mappings/NativeBase/Feedback.ts +100 -0
- package/src/mappings/NativeBase/Layout.js +140 -0
- package/src/mappings/NativeBase/Layout.ts +152 -0
- package/src/mappings/NativeBase/Media.js +56 -0
- package/src/mappings/NativeBase/Media.ts +65 -0
- package/src/mappings/NativeBase/Menu.js +134 -0
- package/src/mappings/NativeBase/Menu.ts +150 -0
- package/src/mappings/NativeBase/Modal.js +103 -0
- package/src/mappings/NativeBase/Modal.ts +118 -0
- package/src/mappings/NativeBase/Other.js +123 -0
- package/src/mappings/NativeBase/Other.ts +139 -0
- package/src/mappings/NativeBase/Popover.js +123 -0
- package/src/mappings/NativeBase/Popover.ts +136 -0
- package/src/mappings/Touchable.js +17 -0
- package/src/mappings/Touchable.ts +23 -0
- package/lib/commonjs/components/Pressable.js +0 -48
- package/lib/commonjs/mappings/Pressable.js +0 -52
- package/lib/module/components/Pressable.js +0 -40
- package/lib/module/mappings/Pressable.js +0 -45
- package/lib/typescript/src/components/Pressable.d.ts +0 -18
- package/lib/typescript/src/components/Pressable.d.ts.map +0 -1
- package/lib/typescript/src/mappings/Pressable.d.ts.map +0 -1
- package/src/components/Pressable.js +0 -17
- package/src/components/Pressable.tsx +0 -67
- package/src/mappings/Pressable.js +0 -52
- package/src/mappings/Pressable.ts +0 -63
|
@@ -2,50 +2,123 @@ export { injectIcon } from "./interfaces/Icon";
|
|
|
2
2
|
export { withTheme, ThemeProvider } from "./theming";
|
|
3
3
|
export { default as Provider } from "./Provider";
|
|
4
4
|
export { default as DefaultTheme } from "./styles/DefaultTheme";
|
|
5
|
-
|
|
5
|
+
/** Replaced By NativeBase
|
|
6
|
+
* export { default as Avatar } from "./components/CircleImage";
|
|
7
|
+
* export { default as Container } from "./components/Container";
|
|
8
|
+
* export { default as FAB } from "./components/FAB";
|
|
9
|
+
* export {
|
|
10
|
+
Center,
|
|
11
|
+
Circle,
|
|
12
|
+
Square,
|
|
13
|
+
Row,
|
|
14
|
+
Stack,
|
|
15
|
+
Spacer,
|
|
16
|
+
} from "./components/Layout";
|
|
17
|
+
*/
|
|
18
|
+
export { default as ScreenContainer } from "./components/ScreenContainer";
|
|
6
19
|
export { default as Banner } from "./components/Banner";
|
|
7
20
|
export { Button, ButtonSolid, ButtonOutline } from "./components/Button";
|
|
8
|
-
export {
|
|
9
|
-
export { default as AvatarEdit } from "./components/AvatarEdit";
|
|
10
|
-
export { default as Card } from "./components/Card";
|
|
11
|
-
export { default as Carousel } from "./components/Carousel";
|
|
12
|
-
export { Checkbox, CheckboxGroup, CheckboxRow } from "./components/Checkbox";
|
|
13
|
-
export { default as CircleImage } from "./components/CircleImage";
|
|
14
|
-
export { default as Container } from "./components/Container";
|
|
15
|
-
export { default as Divider } from "./components/Divider";
|
|
16
|
-
export { default as FAB } from "./components/FAB";
|
|
17
|
-
export { default as FieldSearchBarFull } from "./components/FieldSearchBarFull";
|
|
21
|
+
export { Link } from "./components/Text";
|
|
18
22
|
export { default as IconButton } from "./components/IconButton";
|
|
19
|
-
export { default as
|
|
20
|
-
export { default as
|
|
23
|
+
export { default as Touchable } from "./components/Touchable";
|
|
24
|
+
export { default as ToggleButton } from "./components/ToggleButton";
|
|
25
|
+
export { default as DatePicker } from "./components/DatePicker/DatePicker";
|
|
21
26
|
export { default as NumberInput } from "./components/NumberInput";
|
|
22
|
-
export { default as
|
|
27
|
+
export { default as TextField } from "./components/TextField";
|
|
28
|
+
export { default as FieldSearchBarFull } from "./components/FieldSearchBarFull";
|
|
29
|
+
export { default as Picker } from "./components/Picker/Picker";
|
|
30
|
+
export { Checkbox, CheckboxGroup, CheckboxRow } from "./components/Checkbox";
|
|
31
|
+
export { RadioButton, RadioButtonGroup, RadioButtonRow, RadioButtonFieldGroup, } from "./components/RadioButton/index";
|
|
32
|
+
export { default as Slider } from "./components/Slider";
|
|
33
|
+
export { default as Stepper } from "./components/Stepper";
|
|
23
34
|
export { default as StarRating } from "./components/StarRating";
|
|
24
|
-
export { default as Surface } from "./components/Surface";
|
|
25
35
|
export { default as Switch, SwitchRow } from "./components/Switch";
|
|
26
|
-
export { default as
|
|
27
|
-
export { default as
|
|
28
|
-
export { default as
|
|
36
|
+
export { default as SVG } from "./components/SVG";
|
|
37
|
+
export { default as Image } from "./components/Image";
|
|
38
|
+
export { default as AvatarEdit } from "./components/AvatarEdit";
|
|
39
|
+
export { default as CircleImage } from "./components/CircleImage";
|
|
40
|
+
export { Swiper, SwiperItem } from "./components/Swiper";
|
|
29
41
|
export { AccordionGroup, AccordionItem } from "./components/Accordion";
|
|
42
|
+
export { default as Surface } from "./components/Surface";
|
|
30
43
|
export { ActionSheet, ActionSheetItem, ActionSheetCancel, } from "./components/ActionSheet";
|
|
31
|
-
export {
|
|
32
|
-
export {
|
|
33
|
-
export { RadioButton, RadioButtonGroup, RadioButtonRow, RadioButtonFieldGroup, } from "./components/RadioButton/index";
|
|
34
|
-
export { default as CardBlock } from "./components/CardBlock";
|
|
35
|
-
export { default as CardContainer } from "./components/CardContainer";
|
|
36
|
-
export { default as CardContainerRating } from "./components/CardContainerRating";
|
|
37
|
-
export { default as CardInline } from "./components/CardInline";
|
|
38
|
-
export { default as DatePicker } from "./components/DatePicker/DatePicker";
|
|
44
|
+
export { default as Carousel } from "./components/Carousel";
|
|
45
|
+
export { default as Divider } from "./components/Divider";
|
|
39
46
|
export { default as HeaderLarge } from "./components/HeaderLarge";
|
|
40
47
|
export { default as HeaderMedium } from "./components/HeaderMedium";
|
|
41
48
|
export { default as HeaderOverline } from "./components/HeaderOverline";
|
|
42
|
-
export { default as Picker } from "./components/Picker/Picker";
|
|
43
49
|
export { default as ProgressBar } from "./components/ProgressBar";
|
|
44
50
|
export { default as ProgressCircle } from "./components/ProgressCircle";
|
|
45
51
|
export { default as RowBodyIcon } from "./components/RowBodyIcon";
|
|
46
52
|
export { default as RowHeadlineImageCaption } from "./components/RowHeadlineImageCaption";
|
|
47
53
|
export { default as RowHeadlineImageIcon } from "./components/RowHeadlineImageIcon";
|
|
48
|
-
export { default as
|
|
49
|
-
export { default as
|
|
54
|
+
export { default as Card } from "./components/Card";
|
|
55
|
+
export { default as CardBlock } from "./components/CardBlock";
|
|
56
|
+
export { default as CardContainer } from "./components/CardContainer";
|
|
57
|
+
export { default as CardContainerRating } from "./components/CardContainerRating";
|
|
58
|
+
export { default as CardInline } from "./components/CardInline";
|
|
50
59
|
export { useAuthState } from "./components/useAuthState";
|
|
60
|
+
/**
|
|
61
|
+
* NativeBase Components Jan 2023
|
|
62
|
+
*
|
|
63
|
+
* ALERT
|
|
64
|
+
* - AlertDialog
|
|
65
|
+
* - AlertDialog.Header
|
|
66
|
+
* - AlertDialog.Body
|
|
67
|
+
* - AlertDialog.Footer
|
|
68
|
+
* - AlertDialog.Content
|
|
69
|
+
* - AlertDialog.CloseButton
|
|
70
|
+
*
|
|
71
|
+
* FORMS
|
|
72
|
+
* - Button -- COMMENTED OUT
|
|
73
|
+
* - Button.Group -- COMMENTED OUT
|
|
74
|
+
* - Fab
|
|
75
|
+
*
|
|
76
|
+
* DATA DISPLAY
|
|
77
|
+
* - Badge
|
|
78
|
+
* - Divider
|
|
79
|
+
*
|
|
80
|
+
* FEEDBACK
|
|
81
|
+
* - Alert
|
|
82
|
+
* - Alert.Icon
|
|
83
|
+
* - Progress
|
|
84
|
+
*
|
|
85
|
+
* LAYOUT
|
|
86
|
+
* - AspectRatio
|
|
87
|
+
* - Box
|
|
88
|
+
* - Center
|
|
89
|
+
* - Square
|
|
90
|
+
* - Circle
|
|
91
|
+
* - Column
|
|
92
|
+
* - Container
|
|
93
|
+
* - Flex
|
|
94
|
+
* - Spacer
|
|
95
|
+
* - Row
|
|
96
|
+
* - Stack
|
|
97
|
+
* - ZStack
|
|
98
|
+
*
|
|
99
|
+
* MEDIA
|
|
100
|
+
* - Avatar
|
|
101
|
+
* - Avatar.Badge
|
|
102
|
+
* - Avatar.Group
|
|
103
|
+
*
|
|
104
|
+
* MENU
|
|
105
|
+
* - Menu
|
|
106
|
+
* - Menu.Item
|
|
107
|
+
* - Menu.Group
|
|
108
|
+
* - Menu.OptionGroup
|
|
109
|
+
* - Menu.ItemOption
|
|
110
|
+
* - Menu.Trigger
|
|
111
|
+
*
|
|
112
|
+
* MODAL
|
|
113
|
+
* - Modal
|
|
114
|
+
* - Modal.Content
|
|
115
|
+
* - Modal.Header
|
|
116
|
+
* - Modal.Footer
|
|
117
|
+
* - Modal.Body
|
|
118
|
+
* - Modal.CloseButton
|
|
119
|
+
*
|
|
120
|
+
* OTHER
|
|
121
|
+
* - Tooltip
|
|
122
|
+
*
|
|
123
|
+
* */
|
|
51
124
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAEhE,OAAO,EAAE,IAAI,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"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"}
|
|
@@ -5,122 +5,10 @@ export declare const SEED_DATA: ({
|
|
|
5
5
|
stylesPanelSections: string[];
|
|
6
6
|
layout: {
|
|
7
7
|
backgroundColor: string;
|
|
8
|
-
borderRadius: number;
|
|
9
|
-
fontFamily: string;
|
|
10
8
|
borderWidth: number;
|
|
11
9
|
textAlign: string;
|
|
12
|
-
height?: undefined;
|
|
13
|
-
};
|
|
14
|
-
triggers: string[];
|
|
15
|
-
props: {
|
|
16
|
-
onPress: {
|
|
17
|
-
label: string;
|
|
18
|
-
description: string;
|
|
19
|
-
editable: boolean;
|
|
20
|
-
required: boolean;
|
|
21
|
-
formType: string;
|
|
22
|
-
propType: string;
|
|
23
|
-
defaultValue: null;
|
|
24
|
-
group: string;
|
|
25
|
-
};
|
|
26
|
-
onLongPress: {
|
|
27
|
-
label: string;
|
|
28
|
-
description: string;
|
|
29
|
-
editable: boolean;
|
|
30
|
-
required: boolean;
|
|
31
|
-
formType: string;
|
|
32
|
-
propType: string;
|
|
33
|
-
defaultValue: null;
|
|
34
|
-
group: string;
|
|
35
|
-
};
|
|
36
|
-
icon: {
|
|
37
|
-
label: string;
|
|
38
|
-
description: string;
|
|
39
|
-
formType: string;
|
|
40
|
-
propType: string;
|
|
41
|
-
defaultValue: string;
|
|
42
|
-
required: boolean;
|
|
43
|
-
editable: boolean;
|
|
44
|
-
group: string;
|
|
45
|
-
};
|
|
46
|
-
title: any;
|
|
47
|
-
disabled: {
|
|
48
|
-
label: string;
|
|
49
|
-
description: string;
|
|
50
|
-
group: string;
|
|
51
|
-
editable: boolean;
|
|
52
|
-
required: boolean;
|
|
53
|
-
formType: string;
|
|
54
|
-
propType: string;
|
|
55
|
-
defaultValue: null;
|
|
56
|
-
};
|
|
57
|
-
loading: {
|
|
58
|
-
label: string;
|
|
59
|
-
description: string;
|
|
60
|
-
group: string;
|
|
61
|
-
editable: boolean;
|
|
62
|
-
required: boolean;
|
|
63
|
-
formType: string;
|
|
64
|
-
propType: string;
|
|
65
|
-
defaultValue: null;
|
|
66
|
-
};
|
|
67
|
-
activeOpacity: {
|
|
68
|
-
label: string;
|
|
69
|
-
description: string;
|
|
70
|
-
formType: string;
|
|
71
|
-
propType: string;
|
|
72
|
-
group: string;
|
|
73
|
-
defaultValue: null;
|
|
74
|
-
editable: boolean;
|
|
75
|
-
required: boolean;
|
|
76
|
-
step: number;
|
|
77
|
-
};
|
|
78
|
-
disabledOpacity: {
|
|
79
|
-
label: string;
|
|
80
|
-
description: string;
|
|
81
|
-
formType: string;
|
|
82
|
-
propType: string;
|
|
83
|
-
group: string;
|
|
84
|
-
defaultValue: null;
|
|
85
|
-
editable: boolean;
|
|
86
|
-
required: boolean;
|
|
87
|
-
step: number;
|
|
88
|
-
};
|
|
89
|
-
delayLongPress: {
|
|
90
|
-
label: string;
|
|
91
|
-
description: string;
|
|
92
|
-
formType: string;
|
|
93
|
-
propType: string;
|
|
94
|
-
group: string;
|
|
95
|
-
defaultValue: null;
|
|
96
|
-
editable: boolean;
|
|
97
|
-
required: boolean;
|
|
98
|
-
step: number;
|
|
99
|
-
};
|
|
100
|
-
hitSlop: {
|
|
101
|
-
label: string;
|
|
102
|
-
description: string;
|
|
103
|
-
formType: string;
|
|
104
|
-
propType: string;
|
|
105
|
-
group: string;
|
|
106
|
-
defaultValue: null;
|
|
107
|
-
editable: boolean;
|
|
108
|
-
required: boolean;
|
|
109
|
-
step: number;
|
|
110
|
-
};
|
|
111
|
-
};
|
|
112
|
-
} | {
|
|
113
|
-
name: string;
|
|
114
|
-
tag: string;
|
|
115
|
-
category: string;
|
|
116
|
-
stylesPanelSections: string[];
|
|
117
|
-
layout: {
|
|
118
10
|
borderRadius: number;
|
|
119
11
|
fontFamily: string;
|
|
120
|
-
backgroundColor: string;
|
|
121
|
-
textAlign: string;
|
|
122
|
-
borderWidth?: undefined;
|
|
123
|
-
height?: undefined;
|
|
124
12
|
};
|
|
125
13
|
triggers: string[];
|
|
126
14
|
props: {
|
|
@@ -134,16 +22,6 @@ export declare const SEED_DATA: ({
|
|
|
134
22
|
defaultValue: null;
|
|
135
23
|
group: string;
|
|
136
24
|
};
|
|
137
|
-
onLongPress: {
|
|
138
|
-
label: string;
|
|
139
|
-
description: string;
|
|
140
|
-
editable: boolean;
|
|
141
|
-
required: boolean;
|
|
142
|
-
formType: string;
|
|
143
|
-
propType: string;
|
|
144
|
-
defaultValue: null;
|
|
145
|
-
group: string;
|
|
146
|
-
};
|
|
147
25
|
icon: {
|
|
148
26
|
label: string;
|
|
149
27
|
description: string;
|
|
@@ -175,50 +53,6 @@ export declare const SEED_DATA: ({
|
|
|
175
53
|
propType: string;
|
|
176
54
|
defaultValue: null;
|
|
177
55
|
};
|
|
178
|
-
activeOpacity: {
|
|
179
|
-
label: string;
|
|
180
|
-
description: string;
|
|
181
|
-
formType: string;
|
|
182
|
-
propType: string;
|
|
183
|
-
group: string;
|
|
184
|
-
defaultValue: null;
|
|
185
|
-
editable: boolean;
|
|
186
|
-
required: boolean;
|
|
187
|
-
step: number;
|
|
188
|
-
};
|
|
189
|
-
disabledOpacity: {
|
|
190
|
-
label: string;
|
|
191
|
-
description: string;
|
|
192
|
-
formType: string;
|
|
193
|
-
propType: string;
|
|
194
|
-
group: string;
|
|
195
|
-
defaultValue: null;
|
|
196
|
-
editable: boolean;
|
|
197
|
-
required: boolean;
|
|
198
|
-
step: number;
|
|
199
|
-
};
|
|
200
|
-
delayLongPress: {
|
|
201
|
-
label: string;
|
|
202
|
-
description: string;
|
|
203
|
-
formType: string;
|
|
204
|
-
propType: string;
|
|
205
|
-
group: string;
|
|
206
|
-
defaultValue: null;
|
|
207
|
-
editable: boolean;
|
|
208
|
-
required: boolean;
|
|
209
|
-
step: number;
|
|
210
|
-
};
|
|
211
|
-
hitSlop: {
|
|
212
|
-
label: string;
|
|
213
|
-
description: string;
|
|
214
|
-
formType: string;
|
|
215
|
-
propType: string;
|
|
216
|
-
group: string;
|
|
217
|
-
defaultValue: null;
|
|
218
|
-
editable: boolean;
|
|
219
|
-
required: boolean;
|
|
220
|
-
step: number;
|
|
221
|
-
};
|
|
222
56
|
};
|
|
223
57
|
} | {
|
|
224
58
|
name: string;
|
|
@@ -226,12 +60,10 @@ export declare const SEED_DATA: ({
|
|
|
226
60
|
category: string;
|
|
227
61
|
stylesPanelSections: string[];
|
|
228
62
|
layout: {
|
|
229
|
-
borderRadius: number;
|
|
230
|
-
height: number;
|
|
231
|
-
fontFamily: string;
|
|
232
63
|
backgroundColor: string;
|
|
233
64
|
textAlign: string;
|
|
234
|
-
|
|
65
|
+
borderRadius: number;
|
|
66
|
+
fontFamily: string;
|
|
235
67
|
};
|
|
236
68
|
triggers: string[];
|
|
237
69
|
props: {
|
|
@@ -245,16 +77,6 @@ export declare const SEED_DATA: ({
|
|
|
245
77
|
defaultValue: null;
|
|
246
78
|
group: string;
|
|
247
79
|
};
|
|
248
|
-
onLongPress: {
|
|
249
|
-
label: string;
|
|
250
|
-
description: string;
|
|
251
|
-
editable: boolean;
|
|
252
|
-
required: boolean;
|
|
253
|
-
formType: string;
|
|
254
|
-
propType: string;
|
|
255
|
-
defaultValue: null;
|
|
256
|
-
group: string;
|
|
257
|
-
};
|
|
258
80
|
icon: {
|
|
259
81
|
label: string;
|
|
260
82
|
description: string;
|
|
@@ -286,50 +108,6 @@ export declare const SEED_DATA: ({
|
|
|
286
108
|
propType: string;
|
|
287
109
|
defaultValue: null;
|
|
288
110
|
};
|
|
289
|
-
activeOpacity: {
|
|
290
|
-
label: string;
|
|
291
|
-
description: string;
|
|
292
|
-
formType: string;
|
|
293
|
-
propType: string;
|
|
294
|
-
group: string;
|
|
295
|
-
defaultValue: null;
|
|
296
|
-
editable: boolean;
|
|
297
|
-
required: boolean;
|
|
298
|
-
step: number;
|
|
299
|
-
};
|
|
300
|
-
disabledOpacity: {
|
|
301
|
-
label: string;
|
|
302
|
-
description: string;
|
|
303
|
-
formType: string;
|
|
304
|
-
propType: string;
|
|
305
|
-
group: string;
|
|
306
|
-
defaultValue: null;
|
|
307
|
-
editable: boolean;
|
|
308
|
-
required: boolean;
|
|
309
|
-
step: number;
|
|
310
|
-
};
|
|
311
|
-
delayLongPress: {
|
|
312
|
-
label: string;
|
|
313
|
-
description: string;
|
|
314
|
-
formType: string;
|
|
315
|
-
propType: string;
|
|
316
|
-
group: string;
|
|
317
|
-
defaultValue: null;
|
|
318
|
-
editable: boolean;
|
|
319
|
-
required: boolean;
|
|
320
|
-
step: number;
|
|
321
|
-
};
|
|
322
|
-
hitSlop: {
|
|
323
|
-
label: string;
|
|
324
|
-
description: string;
|
|
325
|
-
formType: string;
|
|
326
|
-
propType: string;
|
|
327
|
-
group: string;
|
|
328
|
-
defaultValue: null;
|
|
329
|
-
editable: boolean;
|
|
330
|
-
required: boolean;
|
|
331
|
-
step: number;
|
|
332
|
-
};
|
|
333
111
|
};
|
|
334
112
|
})[];
|
|
335
113
|
//# sourceMappingURL=Button.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../src/mappings/Button.ts"],"names":[],"mappings":"AAiCA,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../src/mappings/Button.ts"],"names":[],"mappings":"AAiCA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAiErB,CAAC"}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
export declare const SEED_DATA: ({
|
|
2
|
+
triggers: string[];
|
|
3
|
+
props: {
|
|
4
|
+
isOpen: {
|
|
5
|
+
label: string;
|
|
6
|
+
description: string;
|
|
7
|
+
formType: string;
|
|
8
|
+
propType: string;
|
|
9
|
+
defaultValue: boolean;
|
|
10
|
+
editable: boolean;
|
|
11
|
+
required: boolean;
|
|
12
|
+
group: string;
|
|
13
|
+
};
|
|
14
|
+
defaultIsOpen: {
|
|
15
|
+
label: string;
|
|
16
|
+
description: string;
|
|
17
|
+
formType: string;
|
|
18
|
+
propType: string;
|
|
19
|
+
defaultValue: boolean;
|
|
20
|
+
editable: boolean;
|
|
21
|
+
required: boolean;
|
|
22
|
+
group: string;
|
|
23
|
+
};
|
|
24
|
+
avoidKeyboard: {
|
|
25
|
+
label: string;
|
|
26
|
+
description: string;
|
|
27
|
+
formType: string;
|
|
28
|
+
propType: string;
|
|
29
|
+
defaultValue: boolean;
|
|
30
|
+
editable: boolean;
|
|
31
|
+
required: boolean;
|
|
32
|
+
group: string;
|
|
33
|
+
};
|
|
34
|
+
closeOnOverlayClick: {
|
|
35
|
+
label: string;
|
|
36
|
+
description: string;
|
|
37
|
+
formType: string;
|
|
38
|
+
propType: string;
|
|
39
|
+
defaultValue: boolean;
|
|
40
|
+
editable: boolean;
|
|
41
|
+
required: boolean;
|
|
42
|
+
group: string;
|
|
43
|
+
};
|
|
44
|
+
isKeyboardDismissable: {
|
|
45
|
+
label: string;
|
|
46
|
+
description: string;
|
|
47
|
+
formType: string;
|
|
48
|
+
propType: string;
|
|
49
|
+
defaultValue: boolean;
|
|
50
|
+
editable: boolean;
|
|
51
|
+
required: boolean;
|
|
52
|
+
group: string;
|
|
53
|
+
};
|
|
54
|
+
backdropVisible: {
|
|
55
|
+
label: string;
|
|
56
|
+
description: string;
|
|
57
|
+
formType: string;
|
|
58
|
+
propType: string;
|
|
59
|
+
defaultValue: boolean;
|
|
60
|
+
editable: boolean;
|
|
61
|
+
required: boolean;
|
|
62
|
+
group: string;
|
|
63
|
+
};
|
|
64
|
+
animationPreset: {
|
|
65
|
+
group: string;
|
|
66
|
+
label: string;
|
|
67
|
+
description: string;
|
|
68
|
+
editable: boolean;
|
|
69
|
+
required: boolean;
|
|
70
|
+
formType: string;
|
|
71
|
+
propType: string;
|
|
72
|
+
defaultValue: null;
|
|
73
|
+
options: never[];
|
|
74
|
+
};
|
|
75
|
+
useRNModal: {
|
|
76
|
+
label: string;
|
|
77
|
+
description: string;
|
|
78
|
+
formType: string;
|
|
79
|
+
propType: string;
|
|
80
|
+
defaultValue: boolean;
|
|
81
|
+
editable: boolean;
|
|
82
|
+
required: boolean;
|
|
83
|
+
group: string;
|
|
84
|
+
};
|
|
85
|
+
onOpen: {
|
|
86
|
+
label: string;
|
|
87
|
+
description: string;
|
|
88
|
+
editable: boolean;
|
|
89
|
+
required: boolean;
|
|
90
|
+
formType: string;
|
|
91
|
+
propType: string;
|
|
92
|
+
defaultValue: null;
|
|
93
|
+
group: string;
|
|
94
|
+
};
|
|
95
|
+
onClose: {
|
|
96
|
+
label: string;
|
|
97
|
+
description: string;
|
|
98
|
+
editable: boolean;
|
|
99
|
+
required: boolean;
|
|
100
|
+
formType: string;
|
|
101
|
+
propType: string;
|
|
102
|
+
defaultValue: null;
|
|
103
|
+
group: string;
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
category: string;
|
|
107
|
+
packageName: string;
|
|
108
|
+
stylesPanelSections: string[];
|
|
109
|
+
layout: {};
|
|
110
|
+
name: string;
|
|
111
|
+
tag: string;
|
|
112
|
+
description: string;
|
|
113
|
+
} | {
|
|
114
|
+
props: {
|
|
115
|
+
isOpen?: undefined;
|
|
116
|
+
defaultIsOpen?: undefined;
|
|
117
|
+
avoidKeyboard?: undefined;
|
|
118
|
+
closeOnOverlayClick?: undefined;
|
|
119
|
+
isKeyboardDismissable?: undefined;
|
|
120
|
+
backdropVisible?: undefined;
|
|
121
|
+
animationPreset?: undefined;
|
|
122
|
+
useRNModal?: undefined;
|
|
123
|
+
onOpen?: undefined;
|
|
124
|
+
onClose?: undefined;
|
|
125
|
+
};
|
|
126
|
+
category: string;
|
|
127
|
+
packageName: string;
|
|
128
|
+
stylesPanelSections: string[];
|
|
129
|
+
layout: {};
|
|
130
|
+
name: string;
|
|
131
|
+
tag: string;
|
|
132
|
+
description: string;
|
|
133
|
+
})[];
|
|
134
|
+
//# sourceMappingURL=AlertDialog.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AlertDialog.d.ts","sourceRoot":"","sources":["../../../../../src/mappings/NativeBase/AlertDialog.ts"],"names":[],"mappings":"AA2BA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA0FrB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=Button.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../../src/mappings/NativeBase/Button.ts"],"names":[],"mappings":""}
|