@draftbit/core 47.0.1-2935a8.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.
Files changed (80) hide show
  1. package/lib/commonjs/components/Checkbox/CheckboxGroup.js +17 -2
  2. package/lib/commonjs/index.js +25 -82
  3. package/lib/commonjs/mappings/FlashList.js +2 -38
  4. package/lib/commonjs/mappings/FlatList.js +0 -9
  5. package/lib/commonjs/mappings/NativeBase/AlertDialog.js +93 -0
  6. package/lib/commonjs/mappings/NativeBase/Button.js +84 -0
  7. package/lib/commonjs/mappings/NativeBase/DataDisplay.js +48 -0
  8. package/lib/commonjs/mappings/NativeBase/Feedback.js +74 -0
  9. package/lib/commonjs/mappings/NativeBase/Layout.js +114 -0
  10. package/lib/commonjs/mappings/NativeBase/Media.js +49 -0
  11. package/lib/commonjs/mappings/NativeBase/Menu.js +111 -0
  12. package/lib/commonjs/mappings/NativeBase/Modal.js +93 -0
  13. package/lib/commonjs/mappings/NativeBase/Other.js +94 -0
  14. package/lib/commonjs/mappings/NativeBase/Popover.js +99 -0
  15. package/lib/module/index.js +121 -31
  16. package/lib/module/mappings/FlashList.js +3 -39
  17. package/lib/module/mappings/FlatList.js +1 -10
  18. package/lib/module/mappings/NativeBase/AlertDialog.js +86 -0
  19. package/lib/module/mappings/NativeBase/Button.js +86 -0
  20. package/lib/module/mappings/NativeBase/DataDisplay.js +41 -0
  21. package/lib/module/mappings/NativeBase/Feedback.js +67 -0
  22. package/lib/module/mappings/NativeBase/Layout.js +107 -0
  23. package/lib/module/mappings/NativeBase/Media.js +42 -0
  24. package/lib/module/mappings/NativeBase/Menu.js +104 -0
  25. package/lib/module/mappings/NativeBase/Modal.js +86 -0
  26. package/lib/module/mappings/NativeBase/Other.js +87 -0
  27. package/lib/module/mappings/NativeBase/Popover.js +92 -0
  28. package/lib/typescript/src/index.d.ts +102 -29
  29. package/lib/typescript/src/index.d.ts.map +1 -1
  30. package/lib/typescript/src/mappings/FlashList.d.ts +2 -130
  31. package/lib/typescript/src/mappings/FlashList.d.ts.map +1 -1
  32. package/lib/typescript/src/mappings/FlatList.d.ts +0 -51
  33. package/lib/typescript/src/mappings/FlatList.d.ts.map +1 -1
  34. package/lib/typescript/src/mappings/NativeBase/AlertDialog.d.ts +134 -0
  35. package/lib/typescript/src/mappings/NativeBase/AlertDialog.d.ts.map +1 -0
  36. package/lib/typescript/src/mappings/NativeBase/Button.d.ts +1 -0
  37. package/lib/typescript/src/mappings/NativeBase/Button.d.ts.map +1 -0
  38. package/lib/typescript/src/mappings/NativeBase/DataDisplay.d.ts +70 -0
  39. package/lib/typescript/src/mappings/NativeBase/DataDisplay.d.ts.map +1 -0
  40. package/lib/typescript/src/mappings/NativeBase/Feedback.d.ts +2 -0
  41. package/lib/typescript/src/mappings/NativeBase/Feedback.d.ts.map +1 -0
  42. package/lib/typescript/src/mappings/NativeBase/Layout.d.ts +146 -0
  43. package/lib/typescript/src/mappings/NativeBase/Layout.d.ts.map +1 -0
  44. package/lib/typescript/src/mappings/NativeBase/Media.d.ts +48 -0
  45. package/lib/typescript/src/mappings/NativeBase/Media.d.ts.map +1 -0
  46. package/lib/typescript/src/mappings/NativeBase/Menu.d.ts +227 -0
  47. package/lib/typescript/src/mappings/NativeBase/Menu.d.ts.map +1 -0
  48. package/lib/typescript/src/mappings/NativeBase/Modal.d.ts +133 -0
  49. package/lib/typescript/src/mappings/NativeBase/Modal.d.ts.map +1 -0
  50. package/lib/typescript/src/mappings/NativeBase/Other.d.ts +179 -0
  51. package/lib/typescript/src/mappings/NativeBase/Other.d.ts.map +1 -0
  52. package/lib/typescript/src/mappings/NativeBase/Popover.d.ts +136 -0
  53. package/lib/typescript/src/mappings/NativeBase/Popover.d.ts.map +1 -0
  54. package/package.json +3 -3
  55. package/src/index.js +112 -31
  56. package/src/index.tsx +123 -43
  57. package/src/mappings/FlashList.js +31 -75
  58. package/src/mappings/FlashList.ts +30 -77
  59. package/src/mappings/FlatList.js +1 -15
  60. package/src/mappings/FlatList.ts +0 -16
  61. package/src/mappings/NativeBase/AlertDialog.js +103 -0
  62. package/src/mappings/NativeBase/AlertDialog.ts +118 -0
  63. package/src/mappings/NativeBase/Button.js +84 -0
  64. package/src/mappings/NativeBase/Button.ts +83 -0
  65. package/src/mappings/NativeBase/DataDisplay.js +54 -0
  66. package/src/mappings/NativeBase/DataDisplay.ts +64 -0
  67. package/src/mappings/NativeBase/Feedback.js +89 -0
  68. package/src/mappings/NativeBase/Feedback.ts +100 -0
  69. package/src/mappings/NativeBase/Layout.js +140 -0
  70. package/src/mappings/NativeBase/Layout.ts +152 -0
  71. package/src/mappings/NativeBase/Media.js +56 -0
  72. package/src/mappings/NativeBase/Media.ts +65 -0
  73. package/src/mappings/NativeBase/Menu.js +134 -0
  74. package/src/mappings/NativeBase/Menu.ts +150 -0
  75. package/src/mappings/NativeBase/Modal.js +103 -0
  76. package/src/mappings/NativeBase/Modal.ts +118 -0
  77. package/src/mappings/NativeBase/Other.js +123 -0
  78. package/src/mappings/NativeBase/Other.ts +139 -0
  79. package/src/mappings/NativeBase/Popover.js +123 -0
  80. package/src/mappings/NativeBase/Popover.ts +136 -0
@@ -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"}
@@ -0,0 +1,179 @@
1
+ export declare const SEED_DATA: ({
2
+ name: string;
3
+ tag: string;
4
+ description: string;
5
+ category: string;
6
+ packageName: string;
7
+ doc_link: string;
8
+ code_link: string;
9
+ stylesPanelSections: string[];
10
+ layout: {};
11
+ triggers: {};
12
+ props: {
13
+ placement: {
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
+ label: any;
25
+ icon: {
26
+ label: string;
27
+ description: string;
28
+ formType: string;
29
+ propType: string;
30
+ defaultValue: string;
31
+ required: boolean;
32
+ editable: boolean;
33
+ group: string;
34
+ };
35
+ isOpen?: undefined;
36
+ isDisabled?: undefined;
37
+ defaultIsOpen?: undefined;
38
+ onOpen?: undefined;
39
+ onClose?: undefined;
40
+ openDelay?: undefined;
41
+ closeDelay?: undefined;
42
+ arrowSize?: undefined;
43
+ hasArrow?: undefined;
44
+ offset?: undefined;
45
+ };
46
+ allowChildren?: undefined;
47
+ } | {
48
+ name: string;
49
+ tag: string;
50
+ description: string;
51
+ category: string;
52
+ packageName: string;
53
+ allowChildren: boolean;
54
+ stylesPanelSections: string[];
55
+ layout: {};
56
+ triggers: string[];
57
+ props: {
58
+ label: any;
59
+ isOpen: {
60
+ label: string;
61
+ description: string;
62
+ formType: string;
63
+ propType: string;
64
+ defaultValue: boolean;
65
+ editable: boolean;
66
+ required: boolean;
67
+ group: string;
68
+ };
69
+ isDisabled: {
70
+ label: string;
71
+ description: string;
72
+ group: string;
73
+ editable: boolean;
74
+ required: boolean;
75
+ formType: string;
76
+ propType: string;
77
+ defaultValue: null;
78
+ };
79
+ defaultIsOpen: {
80
+ label: string;
81
+ description: string;
82
+ formType: string;
83
+ propType: string;
84
+ defaultValue: boolean;
85
+ editable: boolean;
86
+ required: boolean;
87
+ group: string;
88
+ };
89
+ onOpen: {
90
+ label: string;
91
+ description: string;
92
+ editable: boolean;
93
+ required: boolean;
94
+ formType: string;
95
+ propType: string;
96
+ defaultValue: null;
97
+ group: string;
98
+ };
99
+ onClose: {
100
+ label: string;
101
+ description: string;
102
+ editable: boolean;
103
+ required: boolean;
104
+ formType: string;
105
+ propType: string;
106
+ defaultValue: null;
107
+ group: string;
108
+ };
109
+ openDelay: {
110
+ label: string;
111
+ description: string;
112
+ formType: string;
113
+ propType: string;
114
+ group: string;
115
+ defaultValue: null;
116
+ editable: boolean;
117
+ required: boolean;
118
+ step: number;
119
+ };
120
+ closeDelay: {
121
+ label: string;
122
+ description: string;
123
+ formType: string;
124
+ propType: string;
125
+ group: string;
126
+ defaultValue: null;
127
+ editable: boolean;
128
+ required: boolean;
129
+ step: number;
130
+ };
131
+ placement: {
132
+ group: string;
133
+ label: string;
134
+ description: string;
135
+ editable: boolean;
136
+ required: boolean;
137
+ formType: string;
138
+ propType: string;
139
+ defaultValue: null;
140
+ options: never[];
141
+ };
142
+ arrowSize: {
143
+ label: string;
144
+ description: string;
145
+ formType: string;
146
+ propType: string;
147
+ group: string;
148
+ defaultValue: null;
149
+ editable: boolean;
150
+ required: boolean;
151
+ step: number;
152
+ };
153
+ hasArrow: {
154
+ label: string;
155
+ description: string;
156
+ formType: string;
157
+ propType: string;
158
+ defaultValue: boolean;
159
+ editable: boolean;
160
+ required: boolean;
161
+ group: string;
162
+ };
163
+ offset: {
164
+ label: string;
165
+ description: string;
166
+ formType: string;
167
+ propType: string;
168
+ group: string;
169
+ defaultValue: null;
170
+ editable: boolean;
171
+ required: boolean;
172
+ step: number;
173
+ };
174
+ icon?: undefined;
175
+ };
176
+ doc_link?: undefined;
177
+ code_link?: undefined;
178
+ })[];
179
+ //# sourceMappingURL=Other.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Other.d.ts","sourceRoot":"","sources":["../../../../../src/mappings/NativeBase/Other.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA4HrB,CAAC"}
@@ -0,0 +1,136 @@
1
+ export declare const SEED_DATA: ({
2
+ allowChildren: boolean;
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
+ trapFocus: {
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
+ shouldFlip: {
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
+ shouldOverlapWithTrigger: {
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
+ isKeyboardDismissable: {
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
+ placement: {
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
+ triggers: {};
111
+ name: string;
112
+ tag: string;
113
+ description: string;
114
+ } | {
115
+ props: {
116
+ isOpen?: undefined;
117
+ defaultIsOpen?: undefined;
118
+ trapFocus?: undefined;
119
+ shouldFlip?: undefined;
120
+ shouldOverlapWithTrigger?: undefined;
121
+ isKeyboardDismissable?: undefined;
122
+ placement?: undefined;
123
+ useRNModal?: undefined;
124
+ onOpen?: undefined;
125
+ onClose?: undefined;
126
+ };
127
+ category: string;
128
+ packageName: string;
129
+ stylesPanelSections: string[];
130
+ layout: {};
131
+ triggers: {};
132
+ name: string;
133
+ tag: string;
134
+ description: string;
135
+ })[];
136
+ //# sourceMappingURL=Popover.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Popover.d.ts","sourceRoot":"","sources":["../../../../../src/mappings/NativeBase/Popover.ts"],"names":[],"mappings":"AA2BA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA4GrB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@draftbit/core",
3
- "version": "47.0.1-2935a8.2+2935a81",
3
+ "version": "47.0.1-2aab54.2+2aab543",
4
4
  "description": "Core (non-native) Components",
5
5
  "main": "lib/commonjs/index.js",
6
6
  "module": "lib/module/index.js",
@@ -41,7 +41,7 @@
41
41
  "dependencies": {
42
42
  "@date-io/date-fns": "^1.3.13",
43
43
  "@draftbit/react-theme-provider": "^2.1.1",
44
- "@draftbit/types": "^47.0.1-2935a8.2+2935a81",
44
+ "@draftbit/types": "^47.0.1-2aab54.2+2aab543",
45
45
  "@material-ui/core": "^4.11.0",
46
46
  "@material-ui/pickers": "^3.2.10",
47
47
  "@react-native-community/slider": "4.2.4",
@@ -91,5 +91,5 @@
91
91
  ]
92
92
  ]
93
93
  },
94
- "gitHead": "2935a812f6a4cc177567fb8c498ad6a1cf356a31"
94
+ "gitHead": "2aab543eb949f77531cbf78bfb3b1bab3ff5d01f"
95
95
  }