@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
@@ -1,4 +1,4 @@
1
- export declare const SEED_DATA: ({
1
+ export declare const SEED_DATA: {
2
2
  name: string;
3
3
  tag: string;
4
4
  description: string;
@@ -8,133 +8,7 @@ export declare const SEED_DATA: ({
8
8
  layout: {
9
9
  flex: number;
10
10
  };
11
- triggers: string[];
12
11
  props: {
13
- onRefresh: {
14
- label: string;
15
- description: string;
16
- editable: boolean;
17
- required: boolean;
18
- formType: string;
19
- propType: string;
20
- defaultValue: null;
21
- group: string;
22
- };
23
- onEndReached: {
24
- label: string;
25
- description: string;
26
- editable: boolean;
27
- required: boolean;
28
- formType: string;
29
- propType: string;
30
- defaultValue: null;
31
- group: string;
32
- };
33
- onEndReachedThreshold: {
34
- label: string;
35
- description: string;
36
- editable: boolean;
37
- required: boolean;
38
- formType: string;
39
- propType: string;
40
- defaultValue: null;
41
- group: string;
42
- };
43
- onViewableItemsChanged: {
44
- label: string;
45
- description: string;
46
- editable: boolean;
47
- required: boolean;
48
- formType: string;
49
- propType: string;
50
- defaultValue: null;
51
- group: string;
52
- };
53
- numColumns: {
54
- label: string;
55
- description: string;
56
- group: string;
57
- formType: string;
58
- propType: string;
59
- defaultValue: number;
60
- editable: boolean;
61
- required: boolean;
62
- };
63
- estimatedItemSize: {
64
- label: string;
65
- description: string;
66
- formType: string;
67
- propType: string;
68
- group: string;
69
- defaultValue: null;
70
- editable: boolean;
71
- required: boolean;
72
- step: number;
73
- };
74
- optimizeItemArrangement: {
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
- horizontal?: undefined;
85
- inverted?: undefined;
86
- };
87
- } | {
88
- name: string;
89
- tag: string;
90
- description: string;
91
- packageName: string;
92
- category: string;
93
- stylesPanelSections: string[];
94
- layout: {
95
- flex: number;
96
- };
97
- props: {
98
- onRefresh: {
99
- label: string;
100
- description: string;
101
- editable: boolean;
102
- required: boolean;
103
- formType: string;
104
- propType: string;
105
- defaultValue: null;
106
- group: string;
107
- };
108
- onEndReached: {
109
- label: string;
110
- description: string;
111
- editable: boolean;
112
- required: boolean;
113
- formType: string;
114
- propType: string;
115
- defaultValue: null;
116
- group: string;
117
- };
118
- onEndReachedThreshold: {
119
- label: string;
120
- description: string;
121
- editable: boolean;
122
- required: boolean;
123
- formType: string;
124
- propType: string;
125
- defaultValue: null;
126
- group: string;
127
- };
128
- onViewableItemsChanged: {
129
- label: string;
130
- description: string;
131
- editable: boolean;
132
- required: boolean;
133
- formType: string;
134
- propType: string;
135
- defaultValue: null;
136
- group: string;
137
- };
138
12
  estimatedItemSize: {
139
13
  label: string;
140
14
  description: string;
@@ -176,8 +50,6 @@ export declare const SEED_DATA: ({
176
50
  editable: boolean;
177
51
  required: boolean;
178
52
  };
179
- optimizeItemArrangement?: undefined;
180
53
  };
181
- triggers?: undefined;
182
- })[];
54
+ };
183
55
  //# sourceMappingURL=FlashList.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"FlashList.d.ts","sourceRoot":"","sources":["../../../../src/mappings/FlashList.ts"],"names":[],"mappings":"AAWA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA4ErB,CAAC"}
1
+ {"version":3,"file":"FlashList.d.ts","sourceRoot":"","sources":["../../../../src/mappings/FlashList.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+BrB,CAAC"}
@@ -7,48 +7,7 @@ export declare const SEED_DATA: {
7
7
  layout: {
8
8
  flex: number;
9
9
  };
10
- triggers: string[];
11
10
  props: {
12
- onRefresh: {
13
- label: string;
14
- description: string;
15
- editable: boolean;
16
- required: boolean;
17
- formType: string;
18
- propType: string;
19
- defaultValue: null;
20
- group: string;
21
- };
22
- onEndReached: {
23
- label: string;
24
- description: string;
25
- editable: boolean;
26
- required: boolean;
27
- formType: string;
28
- propType: string;
29
- defaultValue: null;
30
- group: string;
31
- };
32
- onEndReachedThreshold: {
33
- label: string;
34
- description: string;
35
- editable: boolean;
36
- required: boolean;
37
- formType: string;
38
- propType: string;
39
- defaultValue: null;
40
- group: string;
41
- };
42
- onViewableItemsChanged: {
43
- label: string;
44
- description: string;
45
- editable: boolean;
46
- required: boolean;
47
- formType: string;
48
- propType: string;
49
- defaultValue: null;
50
- group: string;
51
- };
52
11
  horizontal: {
53
12
  label: string;
54
13
  description: string;
@@ -79,16 +38,6 @@ export declare const SEED_DATA: {
79
38
  editable: boolean;
80
39
  required: boolean;
81
40
  };
82
- initialNumToRender: {
83
- label: string;
84
- description: string;
85
- formType: string;
86
- propType: string;
87
- defaultValue: boolean;
88
- editable: boolean;
89
- required: boolean;
90
- group: string;
91
- };
92
41
  };
93
42
  };
94
43
  //# sourceMappingURL=FlatList.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"FlatList.d.ts","sourceRoot":"","sources":["../../../../src/mappings/FlatList.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoCrB,CAAC"}
1
+ {"version":3,"file":"FlatList.d.ts","sourceRoot":"","sources":["../../../../src/mappings/FlatList.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsBrB,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":""}
@@ -0,0 +1,70 @@
1
+ export declare const SEED_DATA: ({
2
+ props: {
3
+ leftIcon: {
4
+ label: string;
5
+ description: string;
6
+ formType: string;
7
+ propType: string;
8
+ defaultValue: string;
9
+ required: boolean;
10
+ editable: boolean;
11
+ group: string;
12
+ };
13
+ rightIcon: {
14
+ label: string;
15
+ description: string;
16
+ formType: string;
17
+ propType: string;
18
+ defaultValue: string;
19
+ required: boolean;
20
+ editable: boolean;
21
+ group: string;
22
+ };
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
+ label: string;
39
+ description: string;
40
+ editable: boolean;
41
+ required: boolean;
42
+ formType: string;
43
+ propType: string;
44
+ defaultValue: null;
45
+ options: never[];
46
+ };
47
+ thickness: {
48
+ label: string;
49
+ description: string;
50
+ formType: string;
51
+ propType: string;
52
+ group: string;
53
+ defaultValue: null;
54
+ editable: boolean;
55
+ required: boolean;
56
+ step: number;
57
+ };
58
+ leftIcon?: undefined;
59
+ rightIcon?: undefined;
60
+ };
61
+ category: string;
62
+ packageName: string;
63
+ stylesPanelSections: string[];
64
+ layout: {};
65
+ triggers: {};
66
+ name: string;
67
+ tag: string;
68
+ description: string;
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,2 @@
1
+ export declare const SEED_DATA: {}[];
2
+ //# sourceMappingURL=Feedback.d.ts.map
@@ -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"}