@draftbit/core 46.2.4-dedb7a.0 → 46.2.4-f941fc.0

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 (46) hide show
  1. package/lib/commonjs/components/Accordion/AccordionItem.js +25 -5
  2. package/lib/commonjs/components/DeprecatedButton.js +4 -22
  3. package/lib/commonjs/components/TabView/TabView.js +102 -0
  4. package/lib/commonjs/components/TabView/TabViewItem.js +26 -0
  5. package/lib/commonjs/components/TabView/index.js +23 -0
  6. package/lib/commonjs/index.js +14 -0
  7. package/lib/commonjs/mappings/NumberInput.js +149 -146
  8. package/lib/commonjs/mappings/TabView.js +79 -0
  9. package/lib/commonjs/mappings/TextArea.js +193 -188
  10. package/lib/commonjs/mappings/TextField.js +8 -3
  11. package/lib/commonjs/mappings/TextInput.js +180 -178
  12. package/lib/module/components/TabView/TabView.js +87 -0
  13. package/lib/module/components/TabView/TabViewItem.js +18 -0
  14. package/lib/module/components/TabView/index.js +2 -0
  15. package/lib/module/index.js +1 -0
  16. package/lib/module/mappings/NumberInput.js +149 -146
  17. package/lib/module/mappings/TabView.js +70 -0
  18. package/lib/module/mappings/TextArea.js +193 -188
  19. package/lib/module/mappings/TextField.js +8 -3
  20. package/lib/module/mappings/TextInput.js +180 -178
  21. package/lib/typescript/src/components/TabView/TabView.d.ts +19 -0
  22. package/lib/typescript/src/components/TabView/TabViewItem.d.ts +10 -0
  23. package/lib/typescript/src/components/TabView/index.d.ts +2 -0
  24. package/lib/typescript/src/index.d.ts +1 -0
  25. package/lib/typescript/src/mappings/TabView.d.ts +111 -0
  26. package/lib/typescript/src/mappings/TextArea.d.ts +42 -42
  27. package/lib/typescript/src/mappings/TextField.d.ts +118 -118
  28. package/package.json +4 -2
  29. package/src/components/TabView/TabView.js +34 -0
  30. package/src/components/TabView/TabView.tsx +97 -0
  31. package/src/components/TabView/TabViewItem.js +5 -0
  32. package/src/components/TabView/TabViewItem.tsx +21 -0
  33. package/src/components/TabView/index.js +2 -0
  34. package/src/components/TabView/index.ts +2 -0
  35. package/src/index.js +1 -0
  36. package/src/index.tsx +1 -0
  37. package/src/mappings/NumberInput.js +163 -160
  38. package/src/mappings/NumberInput.ts +168 -165
  39. package/src/mappings/TabView.js +73 -0
  40. package/src/mappings/TabView.ts +80 -0
  41. package/src/mappings/TextArea.js +220 -213
  42. package/src/mappings/TextArea.ts +227 -219
  43. package/src/mappings/TextField.js +9 -2
  44. package/src/mappings/TextField.ts +11 -3
  45. package/src/mappings/TextInput.js +208 -205
  46. package/src/mappings/TextInput.ts +215 -212
@@ -1,4 +1,183 @@
1
1
  import { GROUPS, COMPONENT_TYPES, FORM_TYPES, PROP_TYPES, FIELD_NAME, Triggers, StylesPanelSections } from "@draftbit/types";
2
+ const TEXT_INPUT_PROPS = {
3
+ allowFontScaling: {
4
+ group: GROUPS.advanced,
5
+ label: "Allow Font Scaling",
6
+ description: "Whether fonts should scale to respect Text Size in the user's accessibility settings. (Default: true)",
7
+ editable: true,
8
+ required: false,
9
+ defaultValue: null,
10
+ formType: FORM_TYPES.boolean,
11
+ propType: PROP_TYPES.BOOLEAN
12
+ },
13
+ autoCapitalize: {
14
+ group: GROUPS.advanced,
15
+ label: "Auto Capitalize",
16
+ description: "Can automatically capitalize sentences, words, and characters (Default: none).",
17
+ editable: true,
18
+ required: false,
19
+ defaultValue: null,
20
+ options: ["none", "sentences", "words", "characters"],
21
+ formType: FORM_TYPES.flatArray,
22
+ propType: PROP_TYPES.STRING
23
+ },
24
+ autoCorrect: {
25
+ group: GROUPS.advanced,
26
+ label: "Auto Correct",
27
+ description: "Enables auto correction",
28
+ editable: true,
29
+ required: false,
30
+ defaultValue: null,
31
+ formType: FORM_TYPES.boolean,
32
+ propType: PROP_TYPES.BOOLEAN
33
+ },
34
+ autoFocus: {
35
+ group: GROUPS.basic,
36
+ label: "Auto Focus",
37
+ description: "Focuses the input on load in and brings up the keyboard",
38
+ editable: true,
39
+ required: false,
40
+ defaultValue: null,
41
+ formType: FORM_TYPES.boolean,
42
+ propType: PROP_TYPES.BOOLEAN
43
+ },
44
+ caretHidden: {
45
+ group: GROUPS.advanced,
46
+ label: "Hide Caret",
47
+ description: "Hides the caret(the line small line underneath each showing where you're editing/typing",
48
+ editable: true,
49
+ required: false,
50
+ defaultValue: null,
51
+ formType: FORM_TYPES.boolean,
52
+ propType: PROP_TYPES.BOOLEAN
53
+ },
54
+ contextMenuHidden: {
55
+ group: GROUPS.advanced,
56
+ label: "Hide Context Menu",
57
+ description: "Hides the system context menu (Default: false)",
58
+ editable: true,
59
+ required: false,
60
+ defaultValue: null,
61
+ formType: FORM_TYPES.boolean,
62
+ propType: PROP_TYPES.BOOLEAN
63
+ },
64
+ editable: {
65
+ group: GROUPS.advanced,
66
+ label: "Editable",
67
+ description: "If false, the text is not editable",
68
+ editable: true,
69
+ required: false,
70
+ defaultValue: true,
71
+ formType: FORM_TYPES.boolean,
72
+ propType: PROP_TYPES.BOOLEAN
73
+ },
74
+ keyboardAppearance: {
75
+ group: GROUPS.advanced,
76
+ label: "Keyboard Appearance",
77
+ description: "Determines the color of the keyboard.(iOS Only)",
78
+ editable: true,
79
+ required: false,
80
+ defaultValue: null,
81
+ options: ["default", "light", "dark"],
82
+ formType: FORM_TYPES.flatArray,
83
+ propType: PROP_TYPES.STRING
84
+ },
85
+ keyboardType: {
86
+ group: GROUPS.advanced,
87
+ label: "Keyboard Type",
88
+ description: "Determines what keyboard is given to the user.",
89
+ editable: true,
90
+ required: false,
91
+ defaultValue: null,
92
+ options: ["default", "email-address", "numeric", "phone-pad", "ascii-capable", "numbers-and-punctuation", "url", "number-pad", "name-phone-pad", "decimal-pad", "twitter", "web-search", "visible-password"],
93
+ formType: FORM_TYPES.flatArray,
94
+ propType: PROP_TYPES.STRING
95
+ },
96
+ maxLength: {
97
+ group: GROUPS.basic,
98
+ label: "Max Length",
99
+ description: "Limits the input to a set number of characters.",
100
+ editable: true,
101
+ required: false,
102
+ defaultValue: null,
103
+ min: 0,
104
+ step: 1,
105
+ precision: 0,
106
+ formType: FORM_TYPES.number,
107
+ propType: PROP_TYPES.NUMBER
108
+ },
109
+ placeholder: {
110
+ group: GROUPS.data,
111
+ label: "Placeholder Text",
112
+ description: "The text that is shown on load when no value is available.",
113
+ editable: true,
114
+ required: false,
115
+ defaultValue: "Enter a value...",
116
+ formType: FORM_TYPES.string,
117
+ propType: PROP_TYPES.STRING
118
+ },
119
+ placeholderTextColor: {
120
+ group: GROUPS.basic,
121
+ label: "Placeholder Text Color",
122
+ description: "The color of the placeholder text.",
123
+ editable: true,
124
+ required: false,
125
+ defaultValue: null,
126
+ formType: FORM_TYPES.color,
127
+ propType: PROP_TYPES.STRING
128
+ },
129
+ returnKeyLabel: {
130
+ group: GROUPS.advanced,
131
+ label: "Return Key Label",
132
+ description: "(Android Only) Sets the label on the return key (use this instead of rewturnKeyType)",
133
+ editable: true,
134
+ required: false,
135
+ defaultValue: null,
136
+ formType: FORM_TYPES.string,
137
+ propType: PROP_TYPES.STRING
138
+ },
139
+ returnKeyType: {
140
+ group: GROUPS.advanced,
141
+ label: "Return Key Type",
142
+ description: "Determines how the return key should look like",
143
+ editable: true,
144
+ required: false,
145
+ defaultValue: null,
146
+ options: ["done", "go", "next", "search", "send", "none", "previous", "default", "emergency-call", "google", "join", "route", "yahoo"],
147
+ formType: FORM_TYPES.flatArray,
148
+ propType: PROP_TYPES.STRING
149
+ },
150
+ secureTextEntry: {
151
+ group: GROUPS.basic,
152
+ label: "Password Input?",
153
+ description: "Hides the characters with a *, useful for passwords and other sensitive information.",
154
+ editable: true,
155
+ required: false,
156
+ defaultValue: null,
157
+ formType: FORM_TYPES.boolean,
158
+ propType: PROP_TYPES.BOOLEAN
159
+ },
160
+ selectionColor: {
161
+ group: GROUPS.advanced,
162
+ label: "Selection Color",
163
+ description: "Color of the highlighted portion when selecting.",
164
+ editable: true,
165
+ required: false,
166
+ defaultValue: null,
167
+ formType: FORM_TYPES.color,
168
+ propType: PROP_TYPES.STRING
169
+ },
170
+ selectTextOnFocus: {
171
+ group: GROUPS.advanced,
172
+ label: "Select Text on Focus",
173
+ description: "If true, all the text will automatically be selected on focus",
174
+ editable: true,
175
+ required: false,
176
+ defaultValue: null,
177
+ formType: FORM_TYPES.boolean,
178
+ propType: PROP_TYPES.BOOLEAN
179
+ }
180
+ };
2
181
  export const SEED_DATA_PROPS = {
3
182
  style: {
4
183
  group: GROUPS.basic,
@@ -77,184 +256,7 @@ export const SEED_DATA = [{
77
256
  borderRadius: 8
78
257
  },
79
258
  triggers: [Triggers.OnChangeText],
80
- props: {
81
- allowFontScaling: {
82
- group: GROUPS.advanced,
83
- label: "Allow Font Scaling",
84
- description: "Whether fonts should scale to respect Text Size in the user's accessibility settings. (Default: true)",
85
- editable: true,
86
- required: false,
87
- defaultValue: null,
88
- formType: FORM_TYPES.boolean,
89
- propType: PROP_TYPES.BOOLEAN
90
- },
91
- autoCapitalize: {
92
- group: GROUPS.advanced,
93
- label: "Auto Capitalize",
94
- description: "Can automatically capitalize sentences, words, and characters (Default: none).",
95
- editable: true,
96
- required: false,
97
- defaultValue: null,
98
- options: ["none", "sentences", "words", "characters"],
99
- formType: FORM_TYPES.flatArray,
100
- propType: PROP_TYPES.STRING
101
- },
102
- autoCorrect: {
103
- group: GROUPS.advanced,
104
- label: "Auto Correct",
105
- description: "Enables auto correction",
106
- editable: true,
107
- required: false,
108
- defaultValue: null,
109
- formType: FORM_TYPES.boolean,
110
- propType: PROP_TYPES.BOOLEAN
111
- },
112
- autoFocus: {
113
- group: GROUPS.basic,
114
- label: "Auto Focus",
115
- description: "Focuses the input on load in and brings up the keyboard",
116
- editable: true,
117
- required: false,
118
- defaultValue: null,
119
- formType: FORM_TYPES.boolean,
120
- propType: PROP_TYPES.BOOLEAN
121
- },
122
- caretHidden: {
123
- group: GROUPS.advanced,
124
- label: "Hide Caret",
125
- description: "Hides the caret(the line small line underneath each showing where you're editing/typing",
126
- editable: true,
127
- required: false,
128
- defaultValue: null,
129
- formType: FORM_TYPES.boolean,
130
- propType: PROP_TYPES.BOOLEAN
131
- },
132
- contextMenuHidden: {
133
- group: GROUPS.advanced,
134
- label: "Hide Context Menu",
135
- description: "Hides the system context menu (Default: false)",
136
- editable: true,
137
- required: false,
138
- defaultValue: null,
139
- formType: FORM_TYPES.boolean,
140
- propType: PROP_TYPES.BOOLEAN
141
- },
142
- editable: {
143
- group: GROUPS.advanced,
144
- label: "Editable",
145
- description: "If false, the text is not editable",
146
- editable: true,
147
- required: false,
148
- defaultValue: true,
149
- formType: FORM_TYPES.boolean,
150
- propType: PROP_TYPES.BOOLEAN
151
- },
152
- keyboardAppearance: {
153
- group: GROUPS.advanced,
154
- label: "Keyboard Appearance",
155
- description: "Determines the color of the keyboard.(iOS Only)",
156
- editable: true,
157
- required: false,
158
- defaultValue: null,
159
- options: ["default", "light", "dark"],
160
- formType: FORM_TYPES.flatArray,
161
- propType: PROP_TYPES.STRING
162
- },
163
- keyboardType: {
164
- group: GROUPS.advanced,
165
- label: "Keyboard Type",
166
- description: "Determines what keyboard is given to the user.",
167
- editable: true,
168
- required: false,
169
- defaultValue: null,
170
- options: ["default", "email-address", "numeric", "phone-pad", "ascii-capable", "numbers-and-punctuation", "url", "number-pad", "name-phone-pad", "decimal-pad", "twitter", "web-search", "visible-password"],
171
- formType: FORM_TYPES.flatArray,
172
- propType: PROP_TYPES.STRING
173
- },
174
- maxLength: {
175
- group: GROUPS.basic,
176
- label: "Max Length",
177
- description: "Limits the input to a set number of characters.",
178
- editable: true,
179
- required: false,
180
- defaultValue: null,
181
- min: 0,
182
- step: 1,
183
- precision: 0,
184
- formType: FORM_TYPES.number,
185
- propType: PROP_TYPES.NUMBER
186
- },
187
- placeholder: {
188
- group: GROUPS.data,
189
- label: "Placeholder Text",
190
- description: "The text that is shown on load when no value is available.",
191
- editable: true,
192
- required: false,
193
- defaultValue: "Enter a value...",
194
- formType: FORM_TYPES.string,
195
- propType: PROP_TYPES.STRING
196
- },
197
- placeholderTextColor: {
198
- group: GROUPS.basic,
199
- label: "Placeholder Text Color",
200
- description: "The color of the placeholder text.",
201
- editable: true,
202
- required: false,
203
- defaultValue: null,
204
- formType: FORM_TYPES.color,
205
- propType: PROP_TYPES.STRING
206
- },
207
- returnKeyLabel: {
208
- group: GROUPS.advanced,
209
- label: "Return Key Label",
210
- description: "(Android Only) Sets the label on the return key (use this instead of rewturnKeyType)",
211
- editable: true,
212
- required: false,
213
- defaultValue: null,
214
- formType: FORM_TYPES.string,
215
- propType: PROP_TYPES.STRING
216
- },
217
- returnKeyType: {
218
- group: GROUPS.advanced,
219
- label: "Return Key Type",
220
- description: "Determines how the return key should look like",
221
- editable: true,
222
- required: false,
223
- defaultValue: null,
224
- options: ["done", "go", "next", "search", "send", "none", "previous", "default", "emergency-call", "google", "join", "route", "yahoo"],
225
- formType: FORM_TYPES.flatArray,
226
- propType: PROP_TYPES.STRING
227
- },
228
- secureTextEntry: {
229
- group: GROUPS.basic,
230
- label: "Password Input?",
231
- description: "Hides the characters with a *, useful for passwords and other sensitive information.",
232
- editable: true,
233
- required: false,
234
- defaultValue: null,
235
- formType: FORM_TYPES.boolean,
236
- propType: PROP_TYPES.BOOLEAN
237
- },
238
- selectionColor: {
239
- group: GROUPS.advanced,
240
- label: "Selection Color",
241
- description: "Color of the highlighted portion when selecting.",
242
- editable: true,
243
- required: false,
244
- defaultValue: null,
245
- formType: FORM_TYPES.color,
246
- propType: PROP_TYPES.STRING
247
- },
248
- selectTextOnFocus: {
249
- group: GROUPS.advanced,
250
- label: "Select Text on Focus",
251
- description: "If true, all the text will automatically be selected on focus",
252
- editable: true,
253
- required: false,
254
- defaultValue: null,
255
- formType: FORM_TYPES.boolean,
256
- propType: PROP_TYPES.BOOLEAN
257
- },
259
+ props: { ...TEXT_INPUT_PROPS,
258
260
  ...SEED_DATA_PROPS,
259
261
  multiline: {
260
262
  group: GROUPS.basic,
@@ -0,0 +1,19 @@
1
+ import * as React from "react";
2
+ import { StyleProp, TextStyle, ViewStyle } from "react-native";
3
+ import type { IconSlot } from "../../interfaces/Icon";
4
+ declare type TabBarPosition = "top" | "bottom";
5
+ declare type KeyboardDismissMode = "none" | "auto" | "on-drag";
6
+ declare type TabViewProps = {
7
+ tabBarPosition?: TabBarPosition;
8
+ keyboardDismissMode?: KeyboardDismissMode;
9
+ swipeEnabled?: boolean;
10
+ scrollEnabled?: boolean;
11
+ activeColor?: string;
12
+ inactiveColor?: string;
13
+ pressColor?: string;
14
+ indicatorColor?: string;
15
+ style?: StyleProp<TextStyle | ViewStyle>;
16
+ children: React.ReactNode;
17
+ } & IconSlot;
18
+ declare const TabViewComponent: ({ Icon, tabBarPosition, keyboardDismissMode, swipeEnabled, scrollEnabled, activeColor, inactiveColor, pressColor, indicatorColor, style, children, }: TabViewProps) => JSX.Element;
19
+ export default TabViewComponent;
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ interface TabViewItemProps {
3
+ title: string;
4
+ id: string;
5
+ icon: string;
6
+ accessibilityLabel: string;
7
+ children: React.ReactNode;
8
+ }
9
+ declare const TabViewItem: ({ title, id, icon, children, accessibilityLabel, }: TabViewItemProps) => React.ReactNode;
10
+ export default TabViewItem;
@@ -0,0 +1,2 @@
1
+ export { default as TabView } from "./TabView";
2
+ export { default as TabViewItem } from "./TabViewItem";
@@ -28,6 +28,7 @@ export { default as Touchable } from "./components/Touchable";
28
28
  export { AccordionGroup, AccordionItem } from "./components/Accordion";
29
29
  export { ActionSheet, ActionSheetItem, ActionSheetCancel, } from "./components/ActionSheet";
30
30
  export { Swiper, SwiperItem } from "./components/Swiper";
31
+ export { TabView, TabViewItem } from "./components/TabView";
31
32
  export { Center, Circle, Square, Row, Stack, Spacer, } from "./components/Layout";
32
33
  export { RadioButton, RadioButtonGroup, RadioButtonRow, RadioButtonFieldGroup, } from "./components/RadioButton/index";
33
34
  export { default as Button } from "./components/DeprecatedButton";
@@ -0,0 +1,111 @@
1
+ export declare const SEED_DATA: ({
2
+ name: string;
3
+ tag: string;
4
+ category: string;
5
+ layout: {};
6
+ props: {
7
+ tabBarPosition: {
8
+ group: string;
9
+ label: string;
10
+ description: string;
11
+ editable: boolean;
12
+ required: boolean;
13
+ formType: string;
14
+ propType: string;
15
+ defaultValue: null;
16
+ options: never[];
17
+ };
18
+ keyboardDismissMode: {
19
+ group: string;
20
+ label: string;
21
+ description: string;
22
+ editable: boolean;
23
+ required: boolean;
24
+ formType: string;
25
+ propType: string;
26
+ defaultValue: null;
27
+ options: never[];
28
+ };
29
+ swipeEnabled: {
30
+ label: string;
31
+ description: string;
32
+ formType: string;
33
+ propType: string;
34
+ defaultValue: boolean;
35
+ editable: boolean;
36
+ required: boolean;
37
+ group: string;
38
+ };
39
+ scrollEnabled: {
40
+ label: string;
41
+ description: string;
42
+ formType: string;
43
+ propType: string;
44
+ defaultValue: boolean;
45
+ editable: boolean;
46
+ required: boolean;
47
+ group: string;
48
+ };
49
+ activeColor: {
50
+ group: string;
51
+ label: string;
52
+ description: string;
53
+ editable: boolean;
54
+ required: boolean;
55
+ defaultValue: null;
56
+ formType: string;
57
+ propType: string;
58
+ };
59
+ inactiveColor: {
60
+ group: string;
61
+ label: string;
62
+ description: string;
63
+ editable: boolean;
64
+ required: boolean;
65
+ defaultValue: null;
66
+ formType: string;
67
+ propType: string;
68
+ };
69
+ pressColor: {
70
+ group: string;
71
+ label: string;
72
+ description: string;
73
+ editable: boolean;
74
+ required: boolean;
75
+ defaultValue: null;
76
+ formType: string;
77
+ propType: string;
78
+ };
79
+ indicatorColor: {
80
+ group: string;
81
+ label: string;
82
+ description: string;
83
+ editable: boolean;
84
+ required: boolean;
85
+ defaultValue: null;
86
+ formType: string;
87
+ propType: string;
88
+ };
89
+ title?: undefined;
90
+ id?: undefined;
91
+ accessibilityLabel?: undefined;
92
+ };
93
+ } | {
94
+ name: string;
95
+ tag: string;
96
+ category: string;
97
+ layout: {};
98
+ props: {
99
+ title: any;
100
+ id: any;
101
+ accessibilityLabel: any;
102
+ tabBarPosition?: undefined;
103
+ keyboardDismissMode?: undefined;
104
+ swipeEnabled?: undefined;
105
+ scrollEnabled?: undefined;
106
+ activeColor?: undefined;
107
+ inactiveColor?: undefined;
108
+ pressColor?: undefined;
109
+ indicatorColor?: undefined;
110
+ };
111
+ })[];
@@ -17,6 +17,48 @@ export declare const SEED_DATA: {
17
17
  };
18
18
  triggers: string[];
19
19
  props: {
20
+ placeholder: {
21
+ defaultValue: string;
22
+ group: string;
23
+ label: string;
24
+ description: string;
25
+ editable: boolean;
26
+ required: boolean;
27
+ formType: string;
28
+ propType: string;
29
+ };
30
+ multiline: {
31
+ label: string;
32
+ description: string;
33
+ group: string;
34
+ formType: string;
35
+ propType: string;
36
+ defaultValue: boolean;
37
+ editable: boolean;
38
+ required: boolean;
39
+ };
40
+ numberOfLines: {
41
+ label: string;
42
+ description: string;
43
+ group: string;
44
+ formType: string;
45
+ propType: string;
46
+ defaultValue: number;
47
+ editable: boolean;
48
+ required: boolean;
49
+ };
50
+ fieldName: {
51
+ defaultValue: string;
52
+ handlerPropName: string;
53
+ group: string;
54
+ label: string;
55
+ description: string;
56
+ formType: string;
57
+ propType: string;
58
+ valuePropName: string;
59
+ editable: boolean;
60
+ required: boolean;
61
+ };
20
62
  allowFontScaling: {
21
63
  group: string;
22
64
  label: string;
@@ -123,16 +165,6 @@ export declare const SEED_DATA: {
123
165
  formType: string;
124
166
  propType: string;
125
167
  };
126
- placeholder: {
127
- group: string;
128
- label: string;
129
- description: string;
130
- editable: boolean;
131
- required: boolean;
132
- defaultValue: string;
133
- formType: string;
134
- propType: string;
135
- };
136
168
  placeholderTextColor: {
137
169
  group: string;
138
170
  label: string;
@@ -205,37 +237,5 @@ export declare const SEED_DATA: {
205
237
  formType: string;
206
238
  propType: string;
207
239
  };
208
- multiline: {
209
- label: string;
210
- description: string;
211
- group: string;
212
- formType: string;
213
- propType: string;
214
- defaultValue: boolean;
215
- editable: boolean;
216
- required: boolean;
217
- };
218
- numberOfLines: {
219
- label: string;
220
- description: string;
221
- group: string;
222
- formType: string;
223
- propType: string;
224
- defaultValue: number;
225
- editable: boolean;
226
- required: boolean;
227
- };
228
- fieldName: {
229
- defaultValue: string;
230
- handlerPropName: string;
231
- group: string;
232
- label: string;
233
- description: string;
234
- formType: string;
235
- propType: string;
236
- valuePropName: string;
237
- editable: boolean;
238
- required: boolean;
239
- };
240
240
  };
241
241
  };