@draftbit/core 47.0.1-df014a.2 → 47.0.1-e04fa3.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 (95) hide show
  1. package/lib/commonjs/index.js +25 -82
  2. package/lib/commonjs/mappings/NativeBase/AlertDialog.js +102 -0
  3. package/lib/commonjs/mappings/NativeBase/Button.js +84 -0
  4. package/lib/commonjs/mappings/NativeBase/DataDisplay.js +61 -0
  5. package/lib/commonjs/mappings/NativeBase/Feedback.js +74 -0
  6. package/lib/commonjs/mappings/NativeBase/Layout.js +114 -0
  7. package/lib/commonjs/mappings/NativeBase/Media.js +49 -0
  8. package/lib/commonjs/mappings/NativeBase/Menu.js +111 -0
  9. package/lib/commonjs/mappings/NativeBase/Modal.js +93 -0
  10. package/lib/commonjs/mappings/NativeBase/Other.js +94 -0
  11. package/lib/commonjs/mappings/NativeBase/Popover.js +99 -0
  12. package/lib/commonjs/mappings/NativeBase/Select.js +65 -0
  13. package/lib/commonjs/mappings/NativeBase/Slider.js +81 -0
  14. package/lib/module/components/AvatarEdit.js +4 -15
  15. package/lib/module/components/CardBlock.js +4 -14
  16. package/lib/module/components/CircleImage.js +1 -16
  17. package/lib/module/components/DeprecatedCardWrapper.js +1 -18
  18. package/lib/module/components/FAB.js +4 -22
  19. package/lib/module/components/Picker/PickerComponent.ios.js +11 -36
  20. package/lib/module/components/Picker/PickerComponent.web.js +3 -21
  21. package/lib/module/components/Switch.js +10 -21
  22. package/lib/module/components/TextField.js +28 -78
  23. package/lib/module/components/Touchable.js +1 -18
  24. package/lib/module/index.js +121 -31
  25. package/lib/module/mappings/NativeBase/AlertDialog.js +95 -0
  26. package/lib/module/mappings/NativeBase/Button.js +86 -0
  27. package/lib/module/mappings/NativeBase/DataDisplay.js +54 -0
  28. package/lib/module/mappings/NativeBase/Feedback.js +67 -0
  29. package/lib/module/mappings/NativeBase/Layout.js +107 -0
  30. package/lib/module/mappings/NativeBase/Media.js +42 -0
  31. package/lib/module/mappings/NativeBase/Menu.js +104 -0
  32. package/lib/module/mappings/NativeBase/Modal.js +86 -0
  33. package/lib/module/mappings/NativeBase/Other.js +87 -0
  34. package/lib/module/mappings/NativeBase/Popover.js +92 -0
  35. package/lib/module/mappings/NativeBase/Select.js +58 -0
  36. package/lib/module/mappings/NativeBase/Slider.js +74 -0
  37. package/lib/typescript/src/index.d.ts +102 -29
  38. package/lib/typescript/src/index.d.ts.map +1 -1
  39. package/lib/typescript/src/mappings/NativeBase/AlertDialog.d.ts +146 -0
  40. package/lib/typescript/src/mappings/NativeBase/AlertDialog.d.ts.map +1 -0
  41. package/lib/typescript/src/mappings/NativeBase/Button.d.ts +1 -0
  42. package/lib/typescript/src/mappings/NativeBase/Button.d.ts.map +1 -0
  43. package/lib/typescript/src/mappings/NativeBase/DataDisplay.d.ts +96 -0
  44. package/lib/typescript/src/mappings/NativeBase/DataDisplay.d.ts.map +1 -0
  45. package/lib/typescript/src/mappings/NativeBase/Feedback.d.ts +2 -0
  46. package/lib/typescript/src/mappings/NativeBase/Feedback.d.ts.map +1 -0
  47. package/lib/typescript/src/mappings/NativeBase/Layout.d.ts +146 -0
  48. package/lib/typescript/src/mappings/NativeBase/Layout.d.ts.map +1 -0
  49. package/lib/typescript/src/mappings/NativeBase/Media.d.ts +48 -0
  50. package/lib/typescript/src/mappings/NativeBase/Media.d.ts.map +1 -0
  51. package/lib/typescript/src/mappings/NativeBase/Menu.d.ts +227 -0
  52. package/lib/typescript/src/mappings/NativeBase/Menu.d.ts.map +1 -0
  53. package/lib/typescript/src/mappings/NativeBase/Modal.d.ts +133 -0
  54. package/lib/typescript/src/mappings/NativeBase/Modal.d.ts.map +1 -0
  55. package/lib/typescript/src/mappings/NativeBase/Other.d.ts +179 -0
  56. package/lib/typescript/src/mappings/NativeBase/Other.d.ts.map +1 -0
  57. package/lib/typescript/src/mappings/NativeBase/Popover.d.ts +136 -0
  58. package/lib/typescript/src/mappings/NativeBase/Popover.d.ts.map +1 -0
  59. package/lib/typescript/src/mappings/NativeBase/Select.d.ts +156 -0
  60. package/lib/typescript/src/mappings/NativeBase/Select.d.ts.map +1 -0
  61. package/lib/typescript/src/mappings/NativeBase/Slider.d.ts +200 -0
  62. package/lib/typescript/src/mappings/NativeBase/Slider.d.ts.map +1 -0
  63. package/package.json +3 -3
  64. package/src/index.js +112 -31
  65. package/src/index.tsx +123 -43
  66. package/src/mappings/NativeBase/AlertDialog.js +112 -0
  67. package/src/mappings/NativeBase/AlertDialog.ts +128 -0
  68. package/src/mappings/NativeBase/Button.js +84 -0
  69. package/src/mappings/NativeBase/Button.ts +83 -0
  70. package/src/mappings/NativeBase/DataDisplay.js +67 -0
  71. package/src/mappings/NativeBase/DataDisplay.ts +79 -0
  72. package/src/mappings/NativeBase/Feedback.js +89 -0
  73. package/src/mappings/NativeBase/Feedback.ts +100 -0
  74. package/src/mappings/NativeBase/Layout.js +140 -0
  75. package/src/mappings/NativeBase/Layout.ts +152 -0
  76. package/src/mappings/NativeBase/Media.js +56 -0
  77. package/src/mappings/NativeBase/Media.ts +65 -0
  78. package/src/mappings/NativeBase/Menu.js +134 -0
  79. package/src/mappings/NativeBase/Menu.ts +150 -0
  80. package/src/mappings/NativeBase/Modal.js +103 -0
  81. package/src/mappings/NativeBase/Modal.ts +118 -0
  82. package/src/mappings/NativeBase/Other.js +123 -0
  83. package/src/mappings/NativeBase/Other.ts +139 -0
  84. package/src/mappings/NativeBase/Popover.js +123 -0
  85. package/src/mappings/NativeBase/Popover.ts +136 -0
  86. package/src/mappings/NativeBase/Select.js +71 -0
  87. package/src/mappings/NativeBase/Select.ts +85 -0
  88. package/src/mappings/NativeBase/Slider.js +89 -0
  89. package/src/mappings/NativeBase/Slider.ts +105 -0
  90. package/lib/commonjs/mappings/DatePickerModal.js +0 -74
  91. package/lib/module/mappings/DatePickerModal.js +0 -65
  92. package/lib/typescript/src/mappings/DatePickerModal.d.ts +0 -153
  93. package/lib/typescript/src/mappings/DatePickerModal.d.ts.map +0 -1
  94. package/src/mappings/DatePickerModal.js +0 -73
  95. package/src/mappings/DatePickerModal.ts +0 -91
@@ -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"}
@@ -0,0 +1,156 @@
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
+ placeholder: any;
25
+ color: {
26
+ group: string;
27
+ label: string;
28
+ description: string;
29
+ editable: boolean;
30
+ required: boolean;
31
+ defaultValue: null;
32
+ formType: string;
33
+ propType: string;
34
+ };
35
+ placeholderTextColor: {
36
+ group: string;
37
+ label: string;
38
+ description: string;
39
+ editable: boolean;
40
+ required: boolean;
41
+ defaultValue: null;
42
+ formType: string;
43
+ propType: string;
44
+ };
45
+ isDisabled: {
46
+ label: string;
47
+ description: string;
48
+ group: string;
49
+ editable: boolean;
50
+ required: boolean;
51
+ formType: string;
52
+ propType: string;
53
+ defaultValue: null;
54
+ };
55
+ isHovered: {
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
+ isFocused: {
66
+ label: string;
67
+ description: string;
68
+ formType: string;
69
+ propType: string;
70
+ defaultValue: boolean;
71
+ editable: boolean;
72
+ required: boolean;
73
+ group: string;
74
+ };
75
+ isFocusVisible: {
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
+ dropdownIcon: {
86
+ label: string;
87
+ description: string;
88
+ formType: string;
89
+ propType: string;
90
+ defaultValue: string;
91
+ required: boolean;
92
+ editable: boolean;
93
+ group: string;
94
+ };
95
+ dropdownOpenIcon: {
96
+ label: string;
97
+ description: string;
98
+ formType: string;
99
+ propType: string;
100
+ defaultValue: string;
101
+ required: boolean;
102
+ editable: boolean;
103
+ group: string;
104
+ };
105
+ dropdownCloseIcon: {
106
+ label: string;
107
+ description: string;
108
+ formType: string;
109
+ propType: string;
110
+ defaultValue: string;
111
+ required: boolean;
112
+ editable: boolean;
113
+ group: string;
114
+ };
115
+ label?: undefined;
116
+ value?: undefined;
117
+ };
118
+ category: string;
119
+ packageName: string;
120
+ doc_link: string;
121
+ code_link: string;
122
+ stylesPanelSections: string[];
123
+ layout: {};
124
+ allowChildren: boolean;
125
+ name: string;
126
+ tag: string;
127
+ description: string;
128
+ } | {
129
+ props: {
130
+ label: any;
131
+ value: any;
132
+ onOpen?: undefined;
133
+ onClose?: undefined;
134
+ placeholder?: undefined;
135
+ color?: undefined;
136
+ placeholderTextColor?: undefined;
137
+ isDisabled?: undefined;
138
+ isHovered?: undefined;
139
+ isFocused?: undefined;
140
+ isFocusVisible?: undefined;
141
+ dropdownIcon?: undefined;
142
+ dropdownOpenIcon?: undefined;
143
+ dropdownCloseIcon?: undefined;
144
+ };
145
+ category: string;
146
+ packageName: string;
147
+ doc_link: string;
148
+ code_link: string;
149
+ stylesPanelSections: string[];
150
+ layout: {};
151
+ allowChildren: boolean;
152
+ name: string;
153
+ tag: string;
154
+ description: string;
155
+ })[];
156
+ //# sourceMappingURL=Select.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../../../src/mappings/NativeBase/Select.ts"],"names":[],"mappings":"AAiCA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAmDrB,CAAC"}
@@ -0,0 +1,200 @@
1
+ export declare const SEED_DATA: ({
2
+ triggers: string[];
3
+ props: {
4
+ onChange: {
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
+ onChangeEnd: {
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
+ defaultValue: {
25
+ label: string;
26
+ description: string;
27
+ formType: string;
28
+ propType: string;
29
+ group: string;
30
+ defaultValue: null;
31
+ editable: boolean;
32
+ required: boolean;
33
+ step: number;
34
+ };
35
+ thumbSize: {
36
+ label: string;
37
+ description: string;
38
+ formType: string;
39
+ propType: string;
40
+ group: string;
41
+ defaultValue: null;
42
+ editable: boolean;
43
+ required: boolean;
44
+ step: number;
45
+ };
46
+ sliderTrackHeight: {
47
+ label: string;
48
+ description: string;
49
+ formType: string;
50
+ propType: string;
51
+ group: string;
52
+ defaultValue: null;
53
+ editable: boolean;
54
+ required: boolean;
55
+ step: number;
56
+ };
57
+ minValue: {
58
+ label: string;
59
+ description: string;
60
+ formType: string;
61
+ propType: string;
62
+ group: string;
63
+ defaultValue: null;
64
+ editable: boolean;
65
+ required: boolean;
66
+ step: number;
67
+ };
68
+ maxValue: {
69
+ label: string;
70
+ description: string;
71
+ formType: string;
72
+ propType: string;
73
+ group: string;
74
+ defaultValue: null;
75
+ editable: boolean;
76
+ required: boolean;
77
+ step: number;
78
+ };
79
+ step: {
80
+ label: string;
81
+ description: string;
82
+ formType: string;
83
+ propType: string;
84
+ group: string;
85
+ defaultValue: null;
86
+ editable: boolean;
87
+ required: boolean;
88
+ step: number;
89
+ };
90
+ isReadOnly: {
91
+ label: string;
92
+ description: string;
93
+ formType: string;
94
+ propType: string;
95
+ defaultValue: boolean;
96
+ editable: boolean;
97
+ required: boolean;
98
+ group: string;
99
+ };
100
+ isReversed: {
101
+ label: string;
102
+ description: string;
103
+ formType: string;
104
+ propType: string;
105
+ defaultValue: boolean;
106
+ editable: boolean;
107
+ required: boolean;
108
+ group: string;
109
+ };
110
+ orientation: {
111
+ group: string;
112
+ label: string;
113
+ description: string;
114
+ editable: boolean;
115
+ required: boolean;
116
+ formType: string;
117
+ propType: string;
118
+ defaultValue: null;
119
+ options: never[];
120
+ };
121
+ isDisabled: {
122
+ label: string;
123
+ description: string;
124
+ group: string;
125
+ editable: boolean;
126
+ required: boolean;
127
+ formType: string;
128
+ propType: string;
129
+ defaultValue: null;
130
+ };
131
+ accessibilityLabel: {
132
+ label: string;
133
+ description: string;
134
+ group: string;
135
+ editable: boolean;
136
+ required: boolean;
137
+ formType: string;
138
+ propType: string;
139
+ defaultValue: null;
140
+ };
141
+ };
142
+ category: string;
143
+ packageName: string;
144
+ stylesPanelSections: string[];
145
+ layout: {};
146
+ allowChildren: boolean;
147
+ name: string;
148
+ tag: string;
149
+ description: string;
150
+ } | {
151
+ props: {
152
+ onChange?: undefined;
153
+ onChangeEnd?: undefined;
154
+ defaultValue?: undefined;
155
+ thumbSize?: undefined;
156
+ sliderTrackHeight?: undefined;
157
+ minValue?: undefined;
158
+ maxValue?: undefined;
159
+ step?: undefined;
160
+ isReadOnly?: undefined;
161
+ isReversed?: undefined;
162
+ orientation?: undefined;
163
+ isDisabled?: undefined;
164
+ accessibilityLabel?: undefined;
165
+ };
166
+ category: string;
167
+ packageName: string;
168
+ stylesPanelSections: string[];
169
+ layout: {};
170
+ allowChildren: boolean;
171
+ name: string;
172
+ tag: string;
173
+ description: string;
174
+ } | {
175
+ triggers: string[];
176
+ props: {
177
+ onChange?: undefined;
178
+ onChangeEnd?: undefined;
179
+ defaultValue?: undefined;
180
+ thumbSize?: undefined;
181
+ sliderTrackHeight?: undefined;
182
+ minValue?: undefined;
183
+ maxValue?: undefined;
184
+ step?: undefined;
185
+ isReadOnly?: undefined;
186
+ isReversed?: undefined;
187
+ orientation?: undefined;
188
+ isDisabled?: undefined;
189
+ accessibilityLabel?: undefined;
190
+ };
191
+ category: string;
192
+ packageName: string;
193
+ stylesPanelSections: string[];
194
+ layout: {};
195
+ allowChildren: boolean;
196
+ name: string;
197
+ tag: string;
198
+ description: string;
199
+ })[];
200
+ //# sourceMappingURL=Slider.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Slider.d.ts","sourceRoot":"","sources":["../../../../../src/mappings/NativeBase/Slider.ts"],"names":[],"mappings":"AAgCA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAwErB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@draftbit/core",
3
- "version": "47.0.1-df014a.2+df014a6",
3
+ "version": "47.0.1-e04fa3.2+e04fa30",
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-df014a.2+df014a6",
44
+ "@draftbit/types": "^47.0.1-e04fa3.2+e04fa30",
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": "df014a665028fd9c7f159e2c7f4fd5bdb4de22e0"
94
+ "gitHead": "e04fa3026f5f4127ff5db3cc0076e3a44a137a27"
95
95
  }