@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
|
@@ -1,62 +1,50 @@
|
|
|
1
|
-
export declare const SEED_DATA: {
|
|
2
|
-
stylesPanelSections: string[];
|
|
3
|
-
layout: {};
|
|
4
|
-
triggers: string[];
|
|
1
|
+
export declare const SEED_DATA: ({
|
|
5
2
|
props: {
|
|
6
|
-
|
|
3
|
+
leftIcon: {
|
|
7
4
|
label: string;
|
|
8
5
|
description: string;
|
|
9
|
-
editable: boolean;
|
|
10
|
-
required: boolean;
|
|
11
6
|
formType: string;
|
|
12
7
|
propType: string;
|
|
13
|
-
defaultValue:
|
|
14
|
-
group: string;
|
|
15
|
-
};
|
|
16
|
-
onLongPress: {
|
|
17
|
-
label: string;
|
|
18
|
-
description: string;
|
|
19
|
-
editable: boolean;
|
|
8
|
+
defaultValue: string;
|
|
20
9
|
required: boolean;
|
|
21
|
-
|
|
22
|
-
propType: string;
|
|
23
|
-
defaultValue: null;
|
|
10
|
+
editable: boolean;
|
|
24
11
|
group: string;
|
|
25
12
|
};
|
|
26
|
-
|
|
13
|
+
rightIcon: {
|
|
27
14
|
label: string;
|
|
28
15
|
description: string;
|
|
29
16
|
formType: string;
|
|
30
17
|
propType: string;
|
|
31
|
-
|
|
32
|
-
defaultValue: null;
|
|
33
|
-
editable: boolean;
|
|
18
|
+
defaultValue: string;
|
|
34
19
|
required: boolean;
|
|
35
|
-
|
|
20
|
+
editable: boolean;
|
|
21
|
+
group: string;
|
|
36
22
|
};
|
|
37
|
-
|
|
23
|
+
orientation?: undefined;
|
|
24
|
+
thickness?: undefined;
|
|
25
|
+
};
|
|
26
|
+
category: string;
|
|
27
|
+
packageName: string;
|
|
28
|
+
stylesPanelSections: string[];
|
|
29
|
+
layout: {};
|
|
30
|
+
triggers: {};
|
|
31
|
+
name: string;
|
|
32
|
+
tag: string;
|
|
33
|
+
description: string;
|
|
34
|
+
} | {
|
|
35
|
+
props: {
|
|
36
|
+
orientation: {
|
|
37
|
+
group: string;
|
|
38
38
|
label: string;
|
|
39
39
|
description: string;
|
|
40
|
-
formType: string;
|
|
41
|
-
propType: string;
|
|
42
|
-
group: string;
|
|
43
|
-
defaultValue: null;
|
|
44
40
|
editable: boolean;
|
|
45
41
|
required: boolean;
|
|
46
|
-
step: number;
|
|
47
|
-
};
|
|
48
|
-
delayLongPress: {
|
|
49
|
-
label: string;
|
|
50
|
-
description: string;
|
|
51
42
|
formType: string;
|
|
52
43
|
propType: string;
|
|
53
|
-
group: string;
|
|
54
44
|
defaultValue: null;
|
|
55
|
-
|
|
56
|
-
required: boolean;
|
|
57
|
-
step: number;
|
|
45
|
+
options: never[];
|
|
58
46
|
};
|
|
59
|
-
|
|
47
|
+
thickness: {
|
|
60
48
|
label: string;
|
|
61
49
|
description: string;
|
|
62
50
|
formType: string;
|
|
@@ -67,10 +55,16 @@ export declare const SEED_DATA: {
|
|
|
67
55
|
required: boolean;
|
|
68
56
|
step: number;
|
|
69
57
|
};
|
|
58
|
+
leftIcon?: undefined;
|
|
59
|
+
rightIcon?: undefined;
|
|
70
60
|
};
|
|
61
|
+
category: string;
|
|
62
|
+
packageName: string;
|
|
63
|
+
stylesPanelSections: string[];
|
|
64
|
+
layout: {};
|
|
65
|
+
triggers: {};
|
|
71
66
|
name: string;
|
|
72
67
|
tag: string;
|
|
73
68
|
description: string;
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
//# sourceMappingURL=Pressable.d.ts.map
|
|
69
|
+
})[];
|
|
70
|
+
//# sourceMappingURL=DataDisplay.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataDisplay.d.ts","sourceRoot":"","sources":["../../../../../src/mappings/NativeBase/DataDisplay.ts"],"names":[],"mappings":"AA0BA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAqCrB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Feedback.d.ts","sourceRoot":"","sources":["../../../../../src/mappings/NativeBase/Feedback.ts"],"names":[],"mappings":"AA0BA,eAAO,MAAM,SAAS,MAyErB,CAAC"}
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
export declare const SEED_DATA: ({
|
|
2
|
+
props: {
|
|
3
|
+
ratio: {
|
|
4
|
+
group: string;
|
|
5
|
+
label: string;
|
|
6
|
+
description: string;
|
|
7
|
+
editable: boolean;
|
|
8
|
+
required: boolean;
|
|
9
|
+
formType: string;
|
|
10
|
+
propType: string;
|
|
11
|
+
defaultValue: null;
|
|
12
|
+
options: never[];
|
|
13
|
+
};
|
|
14
|
+
direction?: undefined;
|
|
15
|
+
reversed?: undefined;
|
|
16
|
+
isDisabled?: undefined;
|
|
17
|
+
isInvalid?: undefined;
|
|
18
|
+
};
|
|
19
|
+
category: string;
|
|
20
|
+
packageName: string;
|
|
21
|
+
doc_link: string;
|
|
22
|
+
code_link: string;
|
|
23
|
+
stylesPanelSections: string[];
|
|
24
|
+
allowChildren: boolean;
|
|
25
|
+
layout: {};
|
|
26
|
+
triggers: {};
|
|
27
|
+
name: string;
|
|
28
|
+
tag: string;
|
|
29
|
+
description: string;
|
|
30
|
+
} | {
|
|
31
|
+
category: string;
|
|
32
|
+
packageName: string;
|
|
33
|
+
doc_link: string;
|
|
34
|
+
code_link: string;
|
|
35
|
+
stylesPanelSections: string[];
|
|
36
|
+
allowChildren: boolean;
|
|
37
|
+
layout: {};
|
|
38
|
+
triggers: {};
|
|
39
|
+
name: string;
|
|
40
|
+
tag: string;
|
|
41
|
+
description: string;
|
|
42
|
+
} | {
|
|
43
|
+
props: {
|
|
44
|
+
ratio?: undefined;
|
|
45
|
+
direction?: undefined;
|
|
46
|
+
reversed?: undefined;
|
|
47
|
+
isDisabled?: undefined;
|
|
48
|
+
isInvalid?: undefined;
|
|
49
|
+
};
|
|
50
|
+
category: string;
|
|
51
|
+
packageName: string;
|
|
52
|
+
doc_link: string;
|
|
53
|
+
code_link: string;
|
|
54
|
+
stylesPanelSections: string[];
|
|
55
|
+
allowChildren: boolean;
|
|
56
|
+
layout: {};
|
|
57
|
+
triggers: {};
|
|
58
|
+
name: string;
|
|
59
|
+
tag: string;
|
|
60
|
+
description: string;
|
|
61
|
+
} | {
|
|
62
|
+
props: {
|
|
63
|
+
direction: {
|
|
64
|
+
group: string;
|
|
65
|
+
label: string;
|
|
66
|
+
description: string;
|
|
67
|
+
editable: boolean;
|
|
68
|
+
required: boolean;
|
|
69
|
+
formType: string;
|
|
70
|
+
propType: string;
|
|
71
|
+
defaultValue: null;
|
|
72
|
+
options: never[];
|
|
73
|
+
};
|
|
74
|
+
reversed: {
|
|
75
|
+
label: string;
|
|
76
|
+
description: string;
|
|
77
|
+
formType: string;
|
|
78
|
+
propType: string;
|
|
79
|
+
defaultValue: boolean;
|
|
80
|
+
editable: boolean;
|
|
81
|
+
required: boolean;
|
|
82
|
+
group: string;
|
|
83
|
+
};
|
|
84
|
+
isDisabled: {
|
|
85
|
+
label: string;
|
|
86
|
+
description: string;
|
|
87
|
+
formType: string;
|
|
88
|
+
propType: string;
|
|
89
|
+
defaultValue: boolean;
|
|
90
|
+
editable: boolean;
|
|
91
|
+
required: boolean;
|
|
92
|
+
group: string;
|
|
93
|
+
};
|
|
94
|
+
isInvalid: {
|
|
95
|
+
label: string;
|
|
96
|
+
description: string;
|
|
97
|
+
formType: string;
|
|
98
|
+
propType: string;
|
|
99
|
+
defaultValue: boolean;
|
|
100
|
+
editable: boolean;
|
|
101
|
+
required: boolean;
|
|
102
|
+
group: string;
|
|
103
|
+
};
|
|
104
|
+
ratio?: undefined;
|
|
105
|
+
};
|
|
106
|
+
category: string;
|
|
107
|
+
packageName: string;
|
|
108
|
+
doc_link: string;
|
|
109
|
+
code_link: string;
|
|
110
|
+
stylesPanelSections: string[];
|
|
111
|
+
allowChildren: boolean;
|
|
112
|
+
layout: {};
|
|
113
|
+
triggers: {};
|
|
114
|
+
name: string;
|
|
115
|
+
tag: string;
|
|
116
|
+
description: string;
|
|
117
|
+
} | {
|
|
118
|
+
props: {
|
|
119
|
+
reversed: {
|
|
120
|
+
label: string;
|
|
121
|
+
description: string;
|
|
122
|
+
formType: string;
|
|
123
|
+
propType: string;
|
|
124
|
+
defaultValue: boolean;
|
|
125
|
+
editable: boolean;
|
|
126
|
+
required: boolean;
|
|
127
|
+
group: string;
|
|
128
|
+
};
|
|
129
|
+
ratio?: undefined;
|
|
130
|
+
direction?: undefined;
|
|
131
|
+
isDisabled?: undefined;
|
|
132
|
+
isInvalid?: undefined;
|
|
133
|
+
};
|
|
134
|
+
category: string;
|
|
135
|
+
packageName: string;
|
|
136
|
+
doc_link: string;
|
|
137
|
+
code_link: string;
|
|
138
|
+
stylesPanelSections: string[];
|
|
139
|
+
allowChildren: boolean;
|
|
140
|
+
layout: {};
|
|
141
|
+
triggers: {};
|
|
142
|
+
name: string;
|
|
143
|
+
tag: string;
|
|
144
|
+
description: string;
|
|
145
|
+
})[];
|
|
146
|
+
//# sourceMappingURL=Layout.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Layout.d.ts","sourceRoot":"","sources":["../../../../../src/mappings/NativeBase/Layout.ts"],"names":[],"mappings":"AA4BA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA2HrB,CAAC"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export declare const SEED_DATA: ({
|
|
2
|
+
props: {
|
|
3
|
+
source: {
|
|
4
|
+
label: string;
|
|
5
|
+
description: string;
|
|
6
|
+
group: string;
|
|
7
|
+
formType: string;
|
|
8
|
+
propType: string;
|
|
9
|
+
defaultValue: string;
|
|
10
|
+
editable: boolean;
|
|
11
|
+
required: boolean;
|
|
12
|
+
};
|
|
13
|
+
size: {
|
|
14
|
+
group: string;
|
|
15
|
+
label: string;
|
|
16
|
+
description: string;
|
|
17
|
+
editable: boolean;
|
|
18
|
+
required: boolean;
|
|
19
|
+
formType: string;
|
|
20
|
+
propType: string;
|
|
21
|
+
defaultValue: null;
|
|
22
|
+
options: never[];
|
|
23
|
+
};
|
|
24
|
+
wrapperRef: any;
|
|
25
|
+
};
|
|
26
|
+
category: string;
|
|
27
|
+
packageName: string;
|
|
28
|
+
doc_link: string;
|
|
29
|
+
code_link: string;
|
|
30
|
+
stylesPanelSections: string[];
|
|
31
|
+
layout: {};
|
|
32
|
+
triggers: {};
|
|
33
|
+
name: string;
|
|
34
|
+
tag: string;
|
|
35
|
+
description: string;
|
|
36
|
+
} | {
|
|
37
|
+
category: string;
|
|
38
|
+
packageName: string;
|
|
39
|
+
doc_link: string;
|
|
40
|
+
code_link: string;
|
|
41
|
+
stylesPanelSections: string[];
|
|
42
|
+
layout: {};
|
|
43
|
+
triggers: {};
|
|
44
|
+
name: string;
|
|
45
|
+
tag: string;
|
|
46
|
+
description: string;
|
|
47
|
+
})[];
|
|
48
|
+
//# sourceMappingURL=Media.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Media.d.ts","sourceRoot":"","sources":["../../../../../src/mappings/NativeBase/Media.ts"],"names":[],"mappings":"AA2CA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAqBrB,CAAC"}
|
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
export declare const SEED_DATA: ({
|
|
2
|
+
triggers: string[];
|
|
3
|
+
props: {
|
|
4
|
+
onOpen: {
|
|
5
|
+
label: string;
|
|
6
|
+
description: string;
|
|
7
|
+
editable: boolean;
|
|
8
|
+
required: boolean;
|
|
9
|
+
formType: string;
|
|
10
|
+
propType: string;
|
|
11
|
+
defaultValue: null;
|
|
12
|
+
group: string;
|
|
13
|
+
};
|
|
14
|
+
onClose: {
|
|
15
|
+
label: string;
|
|
16
|
+
description: string;
|
|
17
|
+
editable: boolean;
|
|
18
|
+
required: boolean;
|
|
19
|
+
formType: string;
|
|
20
|
+
propType: string;
|
|
21
|
+
defaultValue: null;
|
|
22
|
+
group: string;
|
|
23
|
+
};
|
|
24
|
+
closeOnSelect: {
|
|
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
|
+
defaultIsOpen: {
|
|
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
|
+
placement: {
|
|
45
|
+
group: string;
|
|
46
|
+
label: string;
|
|
47
|
+
description: string;
|
|
48
|
+
editable: boolean;
|
|
49
|
+
required: boolean;
|
|
50
|
+
formType: string;
|
|
51
|
+
propType: string;
|
|
52
|
+
defaultValue: null;
|
|
53
|
+
options: never[];
|
|
54
|
+
};
|
|
55
|
+
offset: {
|
|
56
|
+
label: string;
|
|
57
|
+
description: string;
|
|
58
|
+
formType: string;
|
|
59
|
+
propType: string;
|
|
60
|
+
group: string;
|
|
61
|
+
defaultValue: null;
|
|
62
|
+
editable: boolean;
|
|
63
|
+
required: boolean;
|
|
64
|
+
step: number;
|
|
65
|
+
};
|
|
66
|
+
crossOffset: {
|
|
67
|
+
label: string;
|
|
68
|
+
description: string;
|
|
69
|
+
formType: string;
|
|
70
|
+
propType: string;
|
|
71
|
+
group: string;
|
|
72
|
+
defaultValue: null;
|
|
73
|
+
editable: boolean;
|
|
74
|
+
required: boolean;
|
|
75
|
+
step: number;
|
|
76
|
+
};
|
|
77
|
+
shouldFlip: {
|
|
78
|
+
label: string;
|
|
79
|
+
description: string;
|
|
80
|
+
formType: string;
|
|
81
|
+
propType: string;
|
|
82
|
+
defaultValue: boolean;
|
|
83
|
+
editable: boolean;
|
|
84
|
+
required: boolean;
|
|
85
|
+
group: string;
|
|
86
|
+
};
|
|
87
|
+
isDisabled?: undefined;
|
|
88
|
+
textValue?: undefined;
|
|
89
|
+
title?: undefined;
|
|
90
|
+
type?: undefined;
|
|
91
|
+
onChange?: undefined;
|
|
92
|
+
};
|
|
93
|
+
category: string;
|
|
94
|
+
packageName: string;
|
|
95
|
+
stylesPanelSections: string[];
|
|
96
|
+
layout: {};
|
|
97
|
+
allowChildren: boolean;
|
|
98
|
+
name: string;
|
|
99
|
+
tag: string;
|
|
100
|
+
description: string;
|
|
101
|
+
} | {
|
|
102
|
+
props: {
|
|
103
|
+
isDisabled: {
|
|
104
|
+
label: string;
|
|
105
|
+
description: string;
|
|
106
|
+
group: string;
|
|
107
|
+
editable: boolean;
|
|
108
|
+
required: boolean;
|
|
109
|
+
formType: string;
|
|
110
|
+
propType: string;
|
|
111
|
+
defaultValue: null;
|
|
112
|
+
};
|
|
113
|
+
textValue: any;
|
|
114
|
+
onOpen?: undefined;
|
|
115
|
+
onClose?: undefined;
|
|
116
|
+
closeOnSelect?: undefined;
|
|
117
|
+
defaultIsOpen?: undefined;
|
|
118
|
+
placement?: undefined;
|
|
119
|
+
offset?: undefined;
|
|
120
|
+
crossOffset?: undefined;
|
|
121
|
+
shouldFlip?: undefined;
|
|
122
|
+
title?: undefined;
|
|
123
|
+
type?: undefined;
|
|
124
|
+
onChange?: undefined;
|
|
125
|
+
};
|
|
126
|
+
category: string;
|
|
127
|
+
packageName: string;
|
|
128
|
+
stylesPanelSections: string[];
|
|
129
|
+
layout: {};
|
|
130
|
+
allowChildren: boolean;
|
|
131
|
+
name: string;
|
|
132
|
+
tag: string;
|
|
133
|
+
description: string;
|
|
134
|
+
} | {
|
|
135
|
+
props: {
|
|
136
|
+
title: any;
|
|
137
|
+
onOpen?: undefined;
|
|
138
|
+
onClose?: undefined;
|
|
139
|
+
closeOnSelect?: undefined;
|
|
140
|
+
defaultIsOpen?: undefined;
|
|
141
|
+
placement?: undefined;
|
|
142
|
+
offset?: undefined;
|
|
143
|
+
crossOffset?: undefined;
|
|
144
|
+
shouldFlip?: undefined;
|
|
145
|
+
isDisabled?: undefined;
|
|
146
|
+
textValue?: undefined;
|
|
147
|
+
type?: undefined;
|
|
148
|
+
onChange?: undefined;
|
|
149
|
+
};
|
|
150
|
+
category: string;
|
|
151
|
+
packageName: string;
|
|
152
|
+
stylesPanelSections: string[];
|
|
153
|
+
layout: {};
|
|
154
|
+
allowChildren: boolean;
|
|
155
|
+
name: string;
|
|
156
|
+
tag: string;
|
|
157
|
+
description: string;
|
|
158
|
+
} | {
|
|
159
|
+
triggers: string[];
|
|
160
|
+
props: {
|
|
161
|
+
type: {
|
|
162
|
+
group: string;
|
|
163
|
+
label: string;
|
|
164
|
+
description: string;
|
|
165
|
+
editable: boolean;
|
|
166
|
+
required: boolean;
|
|
167
|
+
formType: string;
|
|
168
|
+
propType: string;
|
|
169
|
+
defaultValue: null;
|
|
170
|
+
options: never[];
|
|
171
|
+
};
|
|
172
|
+
onChange: {
|
|
173
|
+
label: string;
|
|
174
|
+
description: string;
|
|
175
|
+
editable: boolean;
|
|
176
|
+
required: boolean;
|
|
177
|
+
formType: string;
|
|
178
|
+
propType: string;
|
|
179
|
+
defaultValue: null;
|
|
180
|
+
group: string;
|
|
181
|
+
};
|
|
182
|
+
onOpen?: undefined;
|
|
183
|
+
onClose?: undefined;
|
|
184
|
+
closeOnSelect?: undefined;
|
|
185
|
+
defaultIsOpen?: undefined;
|
|
186
|
+
placement?: undefined;
|
|
187
|
+
offset?: undefined;
|
|
188
|
+
crossOffset?: undefined;
|
|
189
|
+
shouldFlip?: undefined;
|
|
190
|
+
isDisabled?: undefined;
|
|
191
|
+
textValue?: undefined;
|
|
192
|
+
title?: undefined;
|
|
193
|
+
};
|
|
194
|
+
category: string;
|
|
195
|
+
packageName: string;
|
|
196
|
+
stylesPanelSections: string[];
|
|
197
|
+
layout: {};
|
|
198
|
+
allowChildren: boolean;
|
|
199
|
+
name: string;
|
|
200
|
+
tag: string;
|
|
201
|
+
description: string;
|
|
202
|
+
} | {
|
|
203
|
+
props: {
|
|
204
|
+
onOpen?: undefined;
|
|
205
|
+
onClose?: undefined;
|
|
206
|
+
closeOnSelect?: undefined;
|
|
207
|
+
defaultIsOpen?: undefined;
|
|
208
|
+
placement?: undefined;
|
|
209
|
+
offset?: undefined;
|
|
210
|
+
crossOffset?: undefined;
|
|
211
|
+
shouldFlip?: undefined;
|
|
212
|
+
isDisabled?: undefined;
|
|
213
|
+
textValue?: undefined;
|
|
214
|
+
title?: undefined;
|
|
215
|
+
type?: undefined;
|
|
216
|
+
onChange?: undefined;
|
|
217
|
+
};
|
|
218
|
+
category: string;
|
|
219
|
+
packageName: string;
|
|
220
|
+
stylesPanelSections: string[];
|
|
221
|
+
layout: {};
|
|
222
|
+
allowChildren: boolean;
|
|
223
|
+
name: string;
|
|
224
|
+
tag: string;
|
|
225
|
+
description: string;
|
|
226
|
+
})[];
|
|
227
|
+
//# sourceMappingURL=Menu.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Menu.d.ts","sourceRoot":"","sources":["../../../../../src/mappings/NativeBase/Menu.ts"],"names":[],"mappings":"AA8BA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAuHrB,CAAC"}
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
export declare const SEED_DATA: ({
|
|
2
|
+
layout: {};
|
|
3
|
+
triggers: string[];
|
|
4
|
+
props: {
|
|
5
|
+
isOpen: {
|
|
6
|
+
label: string;
|
|
7
|
+
description: string;
|
|
8
|
+
formType: string;
|
|
9
|
+
propType: string;
|
|
10
|
+
defaultValue: boolean;
|
|
11
|
+
editable: boolean;
|
|
12
|
+
required: boolean;
|
|
13
|
+
group: string;
|
|
14
|
+
};
|
|
15
|
+
defaultIsOpen: {
|
|
16
|
+
label: string;
|
|
17
|
+
description: string;
|
|
18
|
+
formType: string;
|
|
19
|
+
propType: string;
|
|
20
|
+
defaultValue: boolean;
|
|
21
|
+
editable: boolean;
|
|
22
|
+
required: boolean;
|
|
23
|
+
group: string;
|
|
24
|
+
};
|
|
25
|
+
avoidKeyboard: {
|
|
26
|
+
label: string;
|
|
27
|
+
description: string;
|
|
28
|
+
formType: string;
|
|
29
|
+
propType: string;
|
|
30
|
+
defaultValue: boolean;
|
|
31
|
+
editable: boolean;
|
|
32
|
+
required: boolean;
|
|
33
|
+
group: string;
|
|
34
|
+
};
|
|
35
|
+
closeOnOverlayClick: {
|
|
36
|
+
label: string;
|
|
37
|
+
description: string;
|
|
38
|
+
formType: string;
|
|
39
|
+
propType: string;
|
|
40
|
+
defaultValue: boolean;
|
|
41
|
+
editable: boolean;
|
|
42
|
+
required: boolean;
|
|
43
|
+
group: string;
|
|
44
|
+
};
|
|
45
|
+
isKeyboardDismissable: {
|
|
46
|
+
label: string;
|
|
47
|
+
description: string;
|
|
48
|
+
formType: string;
|
|
49
|
+
propType: string;
|
|
50
|
+
defaultValue: boolean;
|
|
51
|
+
editable: boolean;
|
|
52
|
+
required: boolean;
|
|
53
|
+
group: string;
|
|
54
|
+
};
|
|
55
|
+
backdropVisible: {
|
|
56
|
+
label: string;
|
|
57
|
+
description: string;
|
|
58
|
+
formType: string;
|
|
59
|
+
propType: string;
|
|
60
|
+
defaultValue: boolean;
|
|
61
|
+
editable: boolean;
|
|
62
|
+
required: boolean;
|
|
63
|
+
group: string;
|
|
64
|
+
};
|
|
65
|
+
animationPreset: {
|
|
66
|
+
group: string;
|
|
67
|
+
label: string;
|
|
68
|
+
description: string;
|
|
69
|
+
editable: boolean;
|
|
70
|
+
required: boolean;
|
|
71
|
+
formType: string;
|
|
72
|
+
propType: string;
|
|
73
|
+
defaultValue: null;
|
|
74
|
+
options: never[];
|
|
75
|
+
};
|
|
76
|
+
useRNModal: {
|
|
77
|
+
label: string;
|
|
78
|
+
description: string;
|
|
79
|
+
formType: string;
|
|
80
|
+
propType: string;
|
|
81
|
+
defaultValue: boolean;
|
|
82
|
+
editable: boolean;
|
|
83
|
+
required: boolean;
|
|
84
|
+
group: string;
|
|
85
|
+
};
|
|
86
|
+
onOpen: {
|
|
87
|
+
label: string;
|
|
88
|
+
description: string;
|
|
89
|
+
editable: boolean;
|
|
90
|
+
required: boolean;
|
|
91
|
+
formType: string;
|
|
92
|
+
propType: string;
|
|
93
|
+
defaultValue: null;
|
|
94
|
+
group: string;
|
|
95
|
+
};
|
|
96
|
+
onClose: {
|
|
97
|
+
label: string;
|
|
98
|
+
description: string;
|
|
99
|
+
editable: boolean;
|
|
100
|
+
required: boolean;
|
|
101
|
+
formType: string;
|
|
102
|
+
propType: string;
|
|
103
|
+
defaultValue: null;
|
|
104
|
+
group: string;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
category: string;
|
|
108
|
+
packageName: string;
|
|
109
|
+
stylesPanelSections: string[];
|
|
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
|
+
name: string;
|
|
130
|
+
tag: string;
|
|
131
|
+
description: string;
|
|
132
|
+
})[];
|
|
133
|
+
//# sourceMappingURL=Modal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Modal.d.ts","sourceRoot":"","sources":["../../../../../src/mappings/NativeBase/Modal.ts"],"names":[],"mappings":"AA0BA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA2FrB,CAAC"}
|