@draftbit/core 46.2.4-00bad7.0 → 46.2.4-2fc21b.3
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/Banner.js +24 -4
- package/lib/commonjs/components/CardContainer.js +15 -5
- package/lib/commonjs/components/Checkbox/CheckboxGroupRow.js +24 -6
- package/lib/commonjs/components/CircularProgress.js +15 -7
- package/lib/commonjs/components/Config.js +1 -0
- package/lib/commonjs/components/DeprecatedButton.js +22 -4
- package/lib/commonjs/components/Image.js +16 -3
- package/lib/commonjs/components/NumberInput.js +13 -2
- package/lib/commonjs/components/Portal/PortalManager.js +19 -11
- package/lib/commonjs/components/ProgressBar.js +23 -7
- package/lib/commonjs/components/SVG.js +49 -0
- package/lib/commonjs/components/Slider.js +24 -5
- package/lib/commonjs/components/TextField.js +2 -1
- package/lib/commonjs/components/Touchable.js +16 -2
- package/lib/commonjs/constants.js +1 -1
- package/lib/commonjs/index.js +8 -14
- package/lib/commonjs/mappings/Image.js +2 -2
- package/lib/commonjs/mappings/NumberInput.js +146 -149
- package/lib/commonjs/mappings/SVG.js +23 -0
- package/lib/commonjs/mappings/TextArea.js +188 -193
- package/lib/commonjs/mappings/TextField.js +7 -8
- package/lib/commonjs/mappings/TextInput.js +178 -180
- package/lib/module/components/Banner.js +4 -24
- package/lib/module/components/CardContainer.js +5 -15
- package/lib/module/components/Config.js +1 -0
- package/lib/module/components/Divider.js +2 -20
- package/lib/module/components/FAB.js +5 -23
- package/lib/module/components/Portal/PortalHost.js +15 -26
- package/lib/module/components/RadioButton/RadioButton.js +2 -15
- package/lib/module/components/RadioButton/RadioButtonGroup.js +3 -17
- package/lib/module/components/SVG.js +32 -0
- package/lib/module/components/ScreenContainer.js +5 -22
- package/lib/module/components/TextField.js +2 -1
- package/lib/module/components/ToggleButton.js +3 -17
- package/lib/module/constants.js +0 -1
- package/lib/module/index.js +1 -1
- package/lib/module/mappings/Image.js +2 -2
- package/lib/module/mappings/NumberInput.js +146 -149
- package/lib/module/mappings/SVG.js +14 -0
- package/lib/module/mappings/TextArea.js +188 -193
- package/lib/module/mappings/TextField.js +7 -8
- package/lib/module/mappings/TextInput.js +178 -180
- package/lib/typescript/src/components/Config.d.ts +1 -0
- package/lib/typescript/src/components/SVG.d.ts +8 -0
- package/lib/typescript/src/components/TextField.d.ts +1 -0
- package/lib/typescript/src/index.d.ts +1 -1
- package/lib/typescript/src/mappings/SVG.d.ts +22 -0
- package/lib/typescript/src/mappings/TextArea.d.ts +42 -42
- package/lib/typescript/src/mappings/TextField.d.ts +120 -110
- package/package.json +4 -5
- package/src/components/Config.js +1 -0
- package/src/components/Config.ts +1 -0
- package/src/components/SVG.js +14 -0
- package/src/components/SVG.tsx +35 -0
- package/src/components/TextField.js +2 -2
- package/src/components/TextField.tsx +3 -1
- package/src/index.js +1 -1
- package/src/index.tsx +1 -1
- package/src/mappings/Image.js +2 -2
- package/src/mappings/Image.ts +2 -2
- package/src/mappings/NumberInput.js +160 -163
- package/src/mappings/NumberInput.ts +165 -168
- package/src/mappings/SVG.js +14 -0
- package/src/mappings/SVG.ts +15 -0
- package/src/mappings/TextArea.js +213 -220
- package/src/mappings/TextArea.ts +219 -227
- package/src/mappings/TextField.js +6 -9
- package/src/mappings/TextField.ts +7 -11
- package/src/mappings/TextInput.js +205 -208
- package/src/mappings/TextInput.ts +212 -215
- package/lib/commonjs/components/TabView/TabView.js +0 -102
- package/lib/commonjs/components/TabView/TabViewItem.js +0 -26
- package/lib/commonjs/components/TabView/index.js +0 -23
- package/lib/commonjs/mappings/TabView.js +0 -79
- package/lib/module/components/TabView/TabView.js +0 -87
- package/lib/module/components/TabView/TabViewItem.js +0 -18
- package/lib/module/components/TabView/index.js +0 -2
- package/lib/module/mappings/TabView.js +0 -70
- package/lib/typescript/src/components/TabView/TabView.d.ts +0 -19
- package/lib/typescript/src/components/TabView/TabViewItem.d.ts +0 -10
- package/lib/typescript/src/components/TabView/index.d.ts +0 -2
- package/lib/typescript/src/mappings/TabView.d.ts +0 -111
- package/src/components/TabView/TabView.js +0 -34
- package/src/components/TabView/TabView.tsx +0 -97
- package/src/components/TabView/TabViewItem.js +0 -5
- package/src/components/TabView/TabViewItem.tsx +0 -21
- package/src/components/TabView/index.js +0 -2
- package/src/components/TabView/index.ts +0 -2
- package/src/mappings/TabView.js +0 -73
- package/src/mappings/TabView.ts +0 -80
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { View, Platform, Image } from "react-native";
|
|
3
|
+
import { SvgUri } from "react-native-svg";
|
|
4
|
+
import Config from "./Config";
|
|
5
|
+
|
|
6
|
+
const SVG = _ref => {
|
|
7
|
+
let {
|
|
8
|
+
source,
|
|
9
|
+
style
|
|
10
|
+
} = _ref;
|
|
11
|
+
let svgSource = source === null || source === undefined ? Config.placeholderSvgURL : source;
|
|
12
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, Platform.OS === "ios" && /*#__PURE__*/React.createElement(View, {
|
|
13
|
+
style: style
|
|
14
|
+
}, /*#__PURE__*/React.createElement(SvgUri, {
|
|
15
|
+
width: "100%",
|
|
16
|
+
height: "100%",
|
|
17
|
+
uri: svgSource
|
|
18
|
+
})), Platform.OS === "android" && /*#__PURE__*/React.createElement(View, {
|
|
19
|
+
style: style
|
|
20
|
+
}, /*#__PURE__*/React.createElement(SvgUri, {
|
|
21
|
+
width: "100%",
|
|
22
|
+
height: "100%",
|
|
23
|
+
uri: svgSource
|
|
24
|
+
})), Platform.OS === "web" && /*#__PURE__*/React.createElement(Image, {
|
|
25
|
+
style: style,
|
|
26
|
+
source: {
|
|
27
|
+
uri: svgSource
|
|
28
|
+
}
|
|
29
|
+
}));
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
export default SVG;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
|
|
1
3
|
import * as React from "react";
|
|
2
4
|
import { StyleSheet, ScrollView, View } from "react-native";
|
|
3
5
|
import { SafeAreaView } from "react-native-safe-area-context";
|
|
@@ -25,13 +27,12 @@ function ScreenContainer(_ref) {
|
|
|
25
27
|
edges.push("bottom");
|
|
26
28
|
}
|
|
27
29
|
|
|
28
|
-
return /*#__PURE__*/React.createElement(SafeAreaView, {
|
|
30
|
+
return /*#__PURE__*/React.createElement(SafeAreaView, _extends({
|
|
29
31
|
edges: edges,
|
|
30
32
|
style: [styles.container, {
|
|
31
33
|
backgroundColor
|
|
32
|
-
}]
|
|
33
|
-
|
|
34
|
-
}, scrollable ? /*#__PURE__*/React.createElement(ScrollView, {
|
|
34
|
+
}]
|
|
35
|
+
}, rest), scrollable ? /*#__PURE__*/React.createElement(ScrollView, {
|
|
35
36
|
contentContainerStyle: [styles.scrollViewContainer, {
|
|
36
37
|
backgroundColor
|
|
37
38
|
}, style]
|
|
@@ -42,24 +43,6 @@ function ScreenContainer(_ref) {
|
|
|
42
43
|
}, children));
|
|
43
44
|
}
|
|
44
45
|
|
|
45
|
-
const styles = StyleSheet.create({
|
|
46
|
-
container: {
|
|
47
|
-
flex: 1
|
|
48
|
-
},
|
|
49
|
-
scrollViewContainer: {
|
|
50
|
-
flexGrow: 1,
|
|
51
|
-
flex: undefined
|
|
52
|
-
}
|
|
53
|
-
});
|
|
54
|
-
export default withTheme(ScreenContainer);olor
|
|
55
|
-
}, style]
|
|
56
|
-
}, children) : /*#__PURE__*/React.createElement(View, {
|
|
57
|
-
style: [styles.container, {
|
|
58
|
-
backgroundColor
|
|
59
|
-
}, style]
|
|
60
|
-
}, children));
|
|
61
|
-
}
|
|
62
|
-
|
|
63
46
|
const styles = StyleSheet.create({
|
|
64
47
|
container: {
|
|
65
48
|
flex: 1
|
|
@@ -177,6 +177,7 @@ class TextField extends React.Component {
|
|
|
177
177
|
rightIconName,
|
|
178
178
|
assistiveText,
|
|
179
179
|
underlineColor: underlineColorProp,
|
|
180
|
+
activeBorderColor: activeBorderColorProp,
|
|
180
181
|
multiline = false,
|
|
181
182
|
numberOfLines = 4,
|
|
182
183
|
style,
|
|
@@ -204,7 +205,7 @@ class TextField extends React.Component {
|
|
|
204
205
|
underlineColor = "transparent";
|
|
205
206
|
backgroundColor = colors.divider;
|
|
206
207
|
} else {
|
|
207
|
-
activeColor = error ? colors.error :
|
|
208
|
+
activeColor = error ? colors.error : activeBorderColorProp;
|
|
208
209
|
placeholderColor = borderColor = colors.light;
|
|
209
210
|
underlineColor = underlineColorProp;
|
|
210
211
|
backgroundColor = colors.background;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
|
|
1
3
|
import * as React from "react";
|
|
2
4
|
import { withTheme } from "../theming";
|
|
3
5
|
import { StyleSheet } from "react-native";
|
|
@@ -40,29 +42,13 @@ const ToggleButton = _ref => {
|
|
|
40
42
|
onPress(!internalValue);
|
|
41
43
|
};
|
|
42
44
|
|
|
43
|
-
return /*#__PURE__*/React.createElement(IconButton, {
|
|
45
|
+
return /*#__PURE__*/React.createElement(IconButton, _extends({
|
|
44
46
|
Icon: Icon,
|
|
45
47
|
icon: icon,
|
|
46
48
|
size: iconSize,
|
|
47
49
|
color: internalValue ? colors[color] : colors[colorSecondary],
|
|
48
50
|
onPress: handlePress,
|
|
49
51
|
disabled: disabled,
|
|
50
|
-
style: [styles.mainContainer, {
|
|
51
|
-
width,
|
|
52
|
-
height,
|
|
53
|
-
backgroundColor: internalValue ? colors[colorSecondary] : colors[color],
|
|
54
|
-
borderColor: colors[borderColor]
|
|
55
|
-
}, style],
|
|
56
|
-
...rest
|
|
57
|
-
});
|
|
58
|
-
};
|
|
59
|
-
|
|
60
|
-
const styles = StyleSheet.create({
|
|
61
|
-
mainContainer: {
|
|
62
|
-
borderWidth: 1
|
|
63
|
-
}
|
|
64
|
-
});
|
|
65
|
-
export default withTheme(ToggleButton);: disabled,
|
|
66
52
|
style: [styles.mainContainer, {
|
|
67
53
|
width,
|
|
68
54
|
height,
|
package/lib/module/constants.js
CHANGED
package/lib/module/index.js
CHANGED
|
@@ -17,6 +17,7 @@ export { default as FAB } from "./components/FAB";
|
|
|
17
17
|
export { default as FieldSearchBarFull } from "./components/FieldSearchBarFull";
|
|
18
18
|
export { default as IconButton } from "./components/IconButton";
|
|
19
19
|
export { default as Image } from "./components/Image";
|
|
20
|
+
export { default as SVG } from "./components/SVG";
|
|
20
21
|
export { default as NumberInput } from "./components/NumberInput";
|
|
21
22
|
export { default as ScreenContainer } from "./components/ScreenContainer";
|
|
22
23
|
export { default as StarRating } from "./components/StarRating";
|
|
@@ -28,7 +29,6 @@ export { default as Touchable } from "./components/Touchable";
|
|
|
28
29
|
export { AccordionGroup, AccordionItem } from "./components/Accordion";
|
|
29
30
|
export { ActionSheet, ActionSheetItem, ActionSheetCancel } from "./components/ActionSheet";
|
|
30
31
|
export { Swiper, SwiperItem } from "./components/Swiper";
|
|
31
|
-
export { TabView, TabViewItem } from "./components/TabView";
|
|
32
32
|
export { Center, Circle, Square, Row, Stack, Spacer } from "./components/Layout";
|
|
33
33
|
export { RadioButton, RadioButtonGroup, RadioButtonRow, RadioButtonFieldGroup } from "./components/RadioButton/index";
|
|
34
34
|
/* Deprecated: Fix or Delete! */
|
|
@@ -6,8 +6,8 @@ export const SEED_DATA = {
|
|
|
6
6
|
category: COMPONENT_TYPES.media,
|
|
7
7
|
stylesPanelSections: [StylesPanelSections.Size, StylesPanelSections.Margins, StylesPanelSections.Position, StylesPanelSections.Effects],
|
|
8
8
|
layout: {
|
|
9
|
-
width:
|
|
10
|
-
height:
|
|
9
|
+
width: 100,
|
|
10
|
+
height: 100
|
|
11
11
|
},
|
|
12
12
|
props: {
|
|
13
13
|
source: createImageProp(),
|
|
@@ -1,152 +1,4 @@
|
|
|
1
1
|
import { GROUPS, COMPONENT_TYPES, FORM_TYPES, PROP_TYPES, FIELD_NAME, Triggers, StylesPanelSections } from "@draftbit/types";
|
|
2
|
-
const NUMBER_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
|
-
autoFocus: {
|
|
14
|
-
group: GROUPS.basic,
|
|
15
|
-
label: "Auto Focus",
|
|
16
|
-
description: "Focuses the input on load in and brings up the keyboard",
|
|
17
|
-
editable: true,
|
|
18
|
-
required: false,
|
|
19
|
-
defaultValue: null,
|
|
20
|
-
formType: FORM_TYPES.boolean,
|
|
21
|
-
propType: PROP_TYPES.BOOLEAN
|
|
22
|
-
},
|
|
23
|
-
caretHidden: {
|
|
24
|
-
group: GROUPS.advanced,
|
|
25
|
-
label: "Hide Caret",
|
|
26
|
-
description: "Hides the caret(the line small line underneath each showing where you're editing/typing",
|
|
27
|
-
editable: true,
|
|
28
|
-
required: false,
|
|
29
|
-
defaultValue: null,
|
|
30
|
-
formType: FORM_TYPES.boolean,
|
|
31
|
-
propType: PROP_TYPES.BOOLEAN
|
|
32
|
-
},
|
|
33
|
-
contextMenuHidden: {
|
|
34
|
-
group: GROUPS.advanced,
|
|
35
|
-
label: "Hide Context Menu",
|
|
36
|
-
description: "Hides the system context menu (Default: false)",
|
|
37
|
-
editable: true,
|
|
38
|
-
required: false,
|
|
39
|
-
defaultValue: null,
|
|
40
|
-
formType: FORM_TYPES.boolean,
|
|
41
|
-
propType: PROP_TYPES.BOOLEAN
|
|
42
|
-
},
|
|
43
|
-
editable: {
|
|
44
|
-
group: GROUPS.advanced,
|
|
45
|
-
label: "Editable",
|
|
46
|
-
description: "If false, the text is not editable",
|
|
47
|
-
editable: true,
|
|
48
|
-
required: false,
|
|
49
|
-
defaultValue: true,
|
|
50
|
-
formType: FORM_TYPES.boolean,
|
|
51
|
-
propType: PROP_TYPES.BOOLEAN
|
|
52
|
-
},
|
|
53
|
-
keyboardAppearance: {
|
|
54
|
-
group: GROUPS.advanced,
|
|
55
|
-
label: "Keyboard Appearance",
|
|
56
|
-
description: "Determines the color of the keyboard.(iOS Only)",
|
|
57
|
-
editable: true,
|
|
58
|
-
required: false,
|
|
59
|
-
defaultValue: null,
|
|
60
|
-
options: ["default", "light", "dark"],
|
|
61
|
-
formType: FORM_TYPES.flatArray,
|
|
62
|
-
propType: PROP_TYPES.STRING
|
|
63
|
-
},
|
|
64
|
-
keyboardType: {
|
|
65
|
-
group: GROUPS.advanced,
|
|
66
|
-
label: "Keyboard Type",
|
|
67
|
-
description: "Determines what keyboard is given to the user.",
|
|
68
|
-
editable: true,
|
|
69
|
-
required: false,
|
|
70
|
-
defaultValue: null,
|
|
71
|
-
options: ["numeric", "numbers-and-punctuation", "number-pad"],
|
|
72
|
-
formType: FORM_TYPES.flatArray,
|
|
73
|
-
propType: PROP_TYPES.STRING
|
|
74
|
-
},
|
|
75
|
-
maxLength: {
|
|
76
|
-
group: GROUPS.basic,
|
|
77
|
-
label: "Max Length",
|
|
78
|
-
description: "Limits the input to a set number of characters.",
|
|
79
|
-
editable: true,
|
|
80
|
-
required: false,
|
|
81
|
-
defaultValue: null,
|
|
82
|
-
min: 0,
|
|
83
|
-
step: 1,
|
|
84
|
-
precision: 0,
|
|
85
|
-
formType: FORM_TYPES.number,
|
|
86
|
-
propType: PROP_TYPES.NUMBER
|
|
87
|
-
},
|
|
88
|
-
placeholder: {
|
|
89
|
-
group: GROUPS.basic,
|
|
90
|
-
label: "Placeholder Text",
|
|
91
|
-
description: "The text that is shown on load when no value is available.",
|
|
92
|
-
editable: true,
|
|
93
|
-
required: false,
|
|
94
|
-
defaultValue: "Enter a number...",
|
|
95
|
-
formType: FORM_TYPES.string,
|
|
96
|
-
propType: PROP_TYPES.STRING
|
|
97
|
-
},
|
|
98
|
-
placeholderTextColor: {
|
|
99
|
-
group: GROUPS.basic,
|
|
100
|
-
label: "Placeholder Text Color",
|
|
101
|
-
description: "The color of the placeholder text.",
|
|
102
|
-
editable: true,
|
|
103
|
-
required: false,
|
|
104
|
-
defaultValue: null,
|
|
105
|
-
formType: FORM_TYPES.color,
|
|
106
|
-
propType: PROP_TYPES.STRING
|
|
107
|
-
},
|
|
108
|
-
returnKeyLabel: {
|
|
109
|
-
group: GROUPS.advanced,
|
|
110
|
-
label: "Return Key Label",
|
|
111
|
-
description: "(Android Only) Sets the label on the return key (use this instead of rewturnKeyType)",
|
|
112
|
-
editable: true,
|
|
113
|
-
required: false,
|
|
114
|
-
defaultValue: null,
|
|
115
|
-
formType: FORM_TYPES.string,
|
|
116
|
-
propType: PROP_TYPES.STRING
|
|
117
|
-
},
|
|
118
|
-
returnKeyType: {
|
|
119
|
-
group: GROUPS.advanced,
|
|
120
|
-
label: "Return Key Type",
|
|
121
|
-
description: "Determines how the return key should look like",
|
|
122
|
-
editable: true,
|
|
123
|
-
required: false,
|
|
124
|
-
defaultValue: null,
|
|
125
|
-
options: ["done", "go", "next", "search", "send", "none", "previous", "default", "emergency-call", "google", "join", "route", "yahoo"],
|
|
126
|
-
formType: FORM_TYPES.flatArray,
|
|
127
|
-
propType: PROP_TYPES.STRING
|
|
128
|
-
},
|
|
129
|
-
selectionColor: {
|
|
130
|
-
group: GROUPS.advanced,
|
|
131
|
-
label: "Selection Color",
|
|
132
|
-
description: "Color of the highlighted portion when selecting.",
|
|
133
|
-
editable: true,
|
|
134
|
-
required: false,
|
|
135
|
-
defaultValue: null,
|
|
136
|
-
formType: FORM_TYPES.color,
|
|
137
|
-
propType: PROP_TYPES.STRING
|
|
138
|
-
},
|
|
139
|
-
selectTextOnFocus: {
|
|
140
|
-
group: GROUPS.advanced,
|
|
141
|
-
label: "Select Text on Focus",
|
|
142
|
-
description: "If true, all the text will automatically be selected on focus",
|
|
143
|
-
editable: true,
|
|
144
|
-
required: false,
|
|
145
|
-
defaultValue: null,
|
|
146
|
-
formType: FORM_TYPES.boolean,
|
|
147
|
-
propType: PROP_TYPES.BOOLEAN
|
|
148
|
-
}
|
|
149
|
-
};
|
|
150
2
|
export const SEED_DATA_PROPS = {
|
|
151
3
|
style: {
|
|
152
4
|
group: GROUPS.basic,
|
|
@@ -226,6 +78,151 @@ export const SEED_DATA = [{
|
|
|
226
78
|
},
|
|
227
79
|
triggers: [Triggers.OnChangeText],
|
|
228
80
|
props: { ...SEED_DATA_PROPS,
|
|
229
|
-
|
|
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
|
+
autoFocus: {
|
|
92
|
+
group: GROUPS.basic,
|
|
93
|
+
label: "Auto Focus",
|
|
94
|
+
description: "Focuses the input on load in and brings up the keyboard",
|
|
95
|
+
editable: true,
|
|
96
|
+
required: false,
|
|
97
|
+
defaultValue: null,
|
|
98
|
+
formType: FORM_TYPES.boolean,
|
|
99
|
+
propType: PROP_TYPES.BOOLEAN
|
|
100
|
+
},
|
|
101
|
+
caretHidden: {
|
|
102
|
+
group: GROUPS.advanced,
|
|
103
|
+
label: "Hide Caret",
|
|
104
|
+
description: "Hides the caret(the line small line underneath each showing where you're editing/typing",
|
|
105
|
+
editable: true,
|
|
106
|
+
required: false,
|
|
107
|
+
defaultValue: null,
|
|
108
|
+
formType: FORM_TYPES.boolean,
|
|
109
|
+
propType: PROP_TYPES.BOOLEAN
|
|
110
|
+
},
|
|
111
|
+
contextMenuHidden: {
|
|
112
|
+
group: GROUPS.advanced,
|
|
113
|
+
label: "Hide Context Menu",
|
|
114
|
+
description: "Hides the system context menu (Default: false)",
|
|
115
|
+
editable: true,
|
|
116
|
+
required: false,
|
|
117
|
+
defaultValue: null,
|
|
118
|
+
formType: FORM_TYPES.boolean,
|
|
119
|
+
propType: PROP_TYPES.BOOLEAN
|
|
120
|
+
},
|
|
121
|
+
editable: {
|
|
122
|
+
group: GROUPS.advanced,
|
|
123
|
+
label: "Editable",
|
|
124
|
+
description: "If false, the text is not editable",
|
|
125
|
+
editable: true,
|
|
126
|
+
required: false,
|
|
127
|
+
defaultValue: true,
|
|
128
|
+
formType: FORM_TYPES.boolean,
|
|
129
|
+
propType: PROP_TYPES.BOOLEAN
|
|
130
|
+
},
|
|
131
|
+
keyboardAppearance: {
|
|
132
|
+
group: GROUPS.advanced,
|
|
133
|
+
label: "Keyboard Appearance",
|
|
134
|
+
description: "Determines the color of the keyboard.(iOS Only)",
|
|
135
|
+
editable: true,
|
|
136
|
+
required: false,
|
|
137
|
+
defaultValue: null,
|
|
138
|
+
options: ["default", "light", "dark"],
|
|
139
|
+
formType: FORM_TYPES.flatArray,
|
|
140
|
+
propType: PROP_TYPES.STRING
|
|
141
|
+
},
|
|
142
|
+
keyboardType: {
|
|
143
|
+
group: GROUPS.advanced,
|
|
144
|
+
label: "Keyboard Type",
|
|
145
|
+
description: "Determines what keyboard is given to the user.",
|
|
146
|
+
editable: true,
|
|
147
|
+
required: false,
|
|
148
|
+
defaultValue: null,
|
|
149
|
+
options: ["numeric", "numbers-and-punctuation", "number-pad"],
|
|
150
|
+
formType: FORM_TYPES.flatArray,
|
|
151
|
+
propType: PROP_TYPES.STRING
|
|
152
|
+
},
|
|
153
|
+
maxLength: {
|
|
154
|
+
group: GROUPS.basic,
|
|
155
|
+
label: "Max Length",
|
|
156
|
+
description: "Limits the input to a set number of characters.",
|
|
157
|
+
editable: true,
|
|
158
|
+
required: false,
|
|
159
|
+
defaultValue: null,
|
|
160
|
+
min: 0,
|
|
161
|
+
step: 1,
|
|
162
|
+
precision: 0,
|
|
163
|
+
formType: FORM_TYPES.number,
|
|
164
|
+
propType: PROP_TYPES.NUMBER
|
|
165
|
+
},
|
|
166
|
+
placeholder: {
|
|
167
|
+
group: GROUPS.basic,
|
|
168
|
+
label: "Placeholder Text",
|
|
169
|
+
description: "The text that is shown on load when no value is available.",
|
|
170
|
+
editable: true,
|
|
171
|
+
required: false,
|
|
172
|
+
defaultValue: "Enter a number...",
|
|
173
|
+
formType: FORM_TYPES.string,
|
|
174
|
+
propType: PROP_TYPES.STRING
|
|
175
|
+
},
|
|
176
|
+
placeholderTextColor: {
|
|
177
|
+
group: GROUPS.basic,
|
|
178
|
+
label: "Placeholder Text Color",
|
|
179
|
+
description: "The color of the placeholder text.",
|
|
180
|
+
editable: true,
|
|
181
|
+
required: false,
|
|
182
|
+
defaultValue: null,
|
|
183
|
+
formType: FORM_TYPES.color,
|
|
184
|
+
propType: PROP_TYPES.STRING
|
|
185
|
+
},
|
|
186
|
+
returnKeyLabel: {
|
|
187
|
+
group: GROUPS.advanced,
|
|
188
|
+
label: "Return Key Label",
|
|
189
|
+
description: "(Android Only) Sets the label on the return key (use this instead of rewturnKeyType)",
|
|
190
|
+
editable: true,
|
|
191
|
+
required: false,
|
|
192
|
+
defaultValue: null,
|
|
193
|
+
formType: FORM_TYPES.string,
|
|
194
|
+
propType: PROP_TYPES.STRING
|
|
195
|
+
},
|
|
196
|
+
returnKeyType: {
|
|
197
|
+
group: GROUPS.advanced,
|
|
198
|
+
label: "Return Key Type",
|
|
199
|
+
description: "Determines how the return key should look like",
|
|
200
|
+
editable: true,
|
|
201
|
+
required: false,
|
|
202
|
+
defaultValue: null,
|
|
203
|
+
options: ["done", "go", "next", "search", "send", "none", "previous", "default", "emergency-call", "google", "join", "route", "yahoo"],
|
|
204
|
+
formType: FORM_TYPES.flatArray,
|
|
205
|
+
propType: PROP_TYPES.STRING
|
|
206
|
+
},
|
|
207
|
+
selectionColor: {
|
|
208
|
+
group: GROUPS.advanced,
|
|
209
|
+
label: "Selection Color",
|
|
210
|
+
description: "Color of the highlighted portion when selecting.",
|
|
211
|
+
editable: true,
|
|
212
|
+
required: false,
|
|
213
|
+
defaultValue: null,
|
|
214
|
+
formType: FORM_TYPES.color,
|
|
215
|
+
propType: PROP_TYPES.STRING
|
|
216
|
+
},
|
|
217
|
+
selectTextOnFocus: {
|
|
218
|
+
group: GROUPS.advanced,
|
|
219
|
+
label: "Select Text on Focus",
|
|
220
|
+
description: "If true, all the text will automatically be selected on focus",
|
|
221
|
+
editable: true,
|
|
222
|
+
required: false,
|
|
223
|
+
defaultValue: null,
|
|
224
|
+
formType: FORM_TYPES.boolean,
|
|
225
|
+
propType: PROP_TYPES.BOOLEAN
|
|
226
|
+
}
|
|
230
227
|
}
|
|
231
228
|
}];
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, createSvgProp } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = {
|
|
3
|
+
name: "SVG",
|
|
4
|
+
tag: "SVG",
|
|
5
|
+
description: "An SVG component",
|
|
6
|
+
category: COMPONENT_TYPES.media,
|
|
7
|
+
layout: {
|
|
8
|
+
width: 100,
|
|
9
|
+
height: 100
|
|
10
|
+
},
|
|
11
|
+
props: {
|
|
12
|
+
source: createSvgProp()
|
|
13
|
+
}
|
|
14
|
+
};
|