@draftbit/core 46.4.4-618dac.2 → 46.4.4-682e48.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.
- package/lib/commonjs/components/CircleImage.js +2 -16
- package/lib/commonjs/index.js +0 -8
- package/lib/module/components/DeprecatedButton.js +21 -4
- package/lib/module/components/Image.js +18 -3
- package/lib/module/index.js +0 -1
- package/lib/typescript/src/index.d.ts +0 -1
- package/package.json +3 -5
- package/src/index.js +0 -1
- package/src/index.tsx +0 -1
- package/lib/commonjs/components/BottomSheet/BottomSheet.native.js +0 -68
- package/lib/commonjs/components/BottomSheet/BottomSheet.web.js +0 -97
- package/lib/commonjs/components/BottomSheet/index.js +0 -15
- package/lib/commonjs/components/BottomSheet/types.js +0 -5
- package/lib/commonjs/mappings/BottomSheet.js +0 -22
- package/lib/module/components/BottomSheet/BottomSheet.native.js +0 -50
- package/lib/module/components/BottomSheet/BottomSheet.web.js +0 -78
- package/lib/module/components/BottomSheet/index.js +0 -2
- package/lib/module/components/BottomSheet/types.js +0 -1
- package/lib/module/mappings/BottomSheet.js +0 -13
- package/lib/typescript/src/components/BottomSheet/BottomSheet.native.d.ts +0 -4
- package/lib/typescript/src/components/BottomSheet/BottomSheet.web.d.ts +0 -4
- package/lib/typescript/src/components/BottomSheet/index.d.ts +0 -1
- package/lib/typescript/src/components/BottomSheet/types.d.ts +0 -8
- package/lib/typescript/src/mappings/BottomSheet.d.ts +0 -19
- package/src/components/BottomSheet/BottomSheet.native.js +0 -37
- package/src/components/BottomSheet/BottomSheet.native.tsx +0 -60
- package/src/components/BottomSheet/BottomSheet.web.js +0 -56
- package/src/components/BottomSheet/BottomSheet.web.tsx +0 -90
- package/src/components/BottomSheet/index.js +0 -2
- package/src/components/BottomSheet/index.tsx +0 -2
- package/src/components/BottomSheet/types.js +0 -1
- package/src/components/BottomSheet/types.tsx +0 -8
- package/src/mappings/BottomSheet.js +0 -20
- package/src/mappings/BottomSheet.ts +0 -25
|
@@ -17,6 +17,8 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
17
17
|
|
|
18
18
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
19
19
|
|
|
20
|
+
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); }
|
|
21
|
+
|
|
20
22
|
const CircleImage = _ref => {
|
|
21
23
|
let {
|
|
22
24
|
source = _Config.default.placeholderImageURL,
|
|
@@ -25,22 +27,6 @@ const CircleImage = _ref => {
|
|
|
25
27
|
...props
|
|
26
28
|
} = _ref;
|
|
27
29
|
const borderRadius = size / 2;
|
|
28
|
-
return /*#__PURE__*/React.createElement(_reactNative.Image, {
|
|
29
|
-
style: [{
|
|
30
|
-
width: size,
|
|
31
|
-
height: size,
|
|
32
|
-
borderRadius
|
|
33
|
-
}, style],
|
|
34
|
-
source: typeof source === "string" ? {
|
|
35
|
-
uri: source
|
|
36
|
-
} : source,
|
|
37
|
-
resizeMode: "cover",
|
|
38
|
-
...props
|
|
39
|
-
});
|
|
40
|
-
};
|
|
41
|
-
|
|
42
|
-
var _default = CircleImage;
|
|
43
|
-
exports.default = _default;size / 2;
|
|
44
30
|
return /*#__PURE__*/React.createElement(_reactNative.Image, _extends({
|
|
45
31
|
style: [{
|
|
46
32
|
width: size,
|
package/lib/commonjs/index.js
CHANGED
|
@@ -51,12 +51,6 @@ Object.defineProperty(exports, "Banner", {
|
|
|
51
51
|
return _Banner.default;
|
|
52
52
|
}
|
|
53
53
|
});
|
|
54
|
-
Object.defineProperty(exports, "BottomSheet", {
|
|
55
|
-
enumerable: true,
|
|
56
|
-
get: function () {
|
|
57
|
-
return _BottomSheet.BottomSheet;
|
|
58
|
-
}
|
|
59
|
-
});
|
|
60
54
|
Object.defineProperty(exports, "Button", {
|
|
61
55
|
enumerable: true,
|
|
62
56
|
get: function () {
|
|
@@ -478,8 +472,6 @@ var _ActionSheet = require("./components/ActionSheet");
|
|
|
478
472
|
|
|
479
473
|
var _Swiper = require("./components/Swiper");
|
|
480
474
|
|
|
481
|
-
var _BottomSheet = require("./components/BottomSheet");
|
|
482
|
-
|
|
483
475
|
var _Layout = require("./components/Layout");
|
|
484
476
|
|
|
485
477
|
var _index = require("./components/RadioButton/index");
|
|
@@ -1,5 +1,3 @@
|
|
|
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
|
-
|
|
3
1
|
import * as React from "react";
|
|
4
2
|
import { ActivityIndicator, View, Text, StyleSheet } from "react-native";
|
|
5
3
|
import color from "color";
|
|
@@ -107,7 +105,7 @@ const Button = _ref => {
|
|
|
107
105
|
alignSelf: "stretch",
|
|
108
106
|
...margins
|
|
109
107
|
}
|
|
110
|
-
}, /*#__PURE__*/React.createElement(Touchable,
|
|
108
|
+
}, /*#__PURE__*/React.createElement(Touchable, { ...rest,
|
|
111
109
|
onPress: onPress,
|
|
112
110
|
accessibilityState: {
|
|
113
111
|
disabled
|
|
@@ -115,7 +113,7 @@ const Button = _ref => {
|
|
|
115
113
|
accessibilityRole: "button",
|
|
116
114
|
disabled: disabled || loading,
|
|
117
115
|
style: [styles.button, buttonStyle, innerStyles]
|
|
118
|
-
}
|
|
116
|
+
}, /*#__PURE__*/React.createElement(View, {
|
|
119
117
|
style: styles.content
|
|
120
118
|
}, icon && loading !== true ? /*#__PURE__*/React.createElement(View, {
|
|
121
119
|
style: iconStyle
|
|
@@ -133,6 +131,25 @@ const Button = _ref => {
|
|
|
133
131
|
}, children))));
|
|
134
132
|
};
|
|
135
133
|
|
|
134
|
+
const styles = StyleSheet.create({
|
|
135
|
+
button: {
|
|
136
|
+
minWidth: 64,
|
|
137
|
+
borderStyle: "solid"
|
|
138
|
+
},
|
|
139
|
+
content: {
|
|
140
|
+
flexDirection: "row",
|
|
141
|
+
alignItems: "center",
|
|
142
|
+
justifyContent: "center"
|
|
143
|
+
},
|
|
144
|
+
icon: {
|
|
145
|
+
width: Config.buttonIconSize
|
|
146
|
+
}
|
|
147
|
+
});
|
|
148
|
+
export default withTheme(Button);ines: 1,
|
|
149
|
+
style: [textStyle, typography.button]
|
|
150
|
+
}, children))));
|
|
151
|
+
};
|
|
152
|
+
|
|
136
153
|
const styles = StyleSheet.create({
|
|
137
154
|
button: {
|
|
138
155
|
minWidth: 64,
|
|
@@ -1,5 +1,3 @@
|
|
|
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
|
-
|
|
3
1
|
/* README: Internal Image component used for stuff like Card. DO NOT EXPORT! */
|
|
4
2
|
import React from "react";
|
|
5
3
|
import { Image as NativeImage, StyleSheet } from "react-native";
|
|
@@ -64,7 +62,24 @@ const Image = _ref2 => {
|
|
|
64
62
|
height,
|
|
65
63
|
aspectRatio
|
|
66
64
|
}]
|
|
67
|
-
}, /*#__PURE__*/React.createElement(NativeImage,
|
|
65
|
+
}, /*#__PURE__*/React.createElement(NativeImage, { ...props,
|
|
66
|
+
source: imageSource,
|
|
67
|
+
resizeMode: resizeMode,
|
|
68
|
+
style: [style, {
|
|
69
|
+
height: "100%",
|
|
70
|
+
width: "100%"
|
|
71
|
+
}]
|
|
72
|
+
}));
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
return /*#__PURE__*/React.createElement(NativeImage, { ...props,
|
|
76
|
+
source: source,
|
|
77
|
+
resizeMode: resizeMode,
|
|
78
|
+
style: style
|
|
79
|
+
});
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
export default Image;ent(NativeImage, _extends({}, props, {
|
|
68
83
|
source: imageSource,
|
|
69
84
|
resizeMode: resizeMode,
|
|
70
85
|
style: [style, {
|
package/lib/module/index.js
CHANGED
|
@@ -29,7 +29,6 @@ export { default as Touchable } from "./components/Touchable";
|
|
|
29
29
|
export { AccordionGroup, AccordionItem } from "./components/Accordion";
|
|
30
30
|
export { ActionSheet, ActionSheetItem, ActionSheetCancel } from "./components/ActionSheet";
|
|
31
31
|
export { Swiper, SwiperItem } from "./components/Swiper";
|
|
32
|
-
export { BottomSheet } from "./components/BottomSheet";
|
|
33
32
|
export { Center, Circle, Square, Row, Stack, Spacer } from "./components/Layout";
|
|
34
33
|
export { RadioButton, RadioButtonGroup, RadioButtonRow, RadioButtonFieldGroup } from "./components/RadioButton/index";
|
|
35
34
|
/* Deprecated: Fix or Delete! */
|
|
@@ -29,7 +29,6 @@ export { default as Touchable } from "./components/Touchable";
|
|
|
29
29
|
export { AccordionGroup, AccordionItem } from "./components/Accordion";
|
|
30
30
|
export { ActionSheet, ActionSheetItem, ActionSheetCancel, } from "./components/ActionSheet";
|
|
31
31
|
export { Swiper, SwiperItem } from "./components/Swiper";
|
|
32
|
-
export { BottomSheet } from "./components/BottomSheet";
|
|
33
32
|
export { Center, Circle, Square, Row, Stack, Spacer, } from "./components/Layout";
|
|
34
33
|
export { RadioButton, RadioButtonGroup, RadioButtonRow, RadioButtonFieldGroup, } from "./components/RadioButton/index";
|
|
35
34
|
export { default as CardBlock } from "./components/CardBlock";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@draftbit/core",
|
|
3
|
-
"version": "46.4.4-
|
|
3
|
+
"version": "46.4.4-682e48.2+682e481",
|
|
4
4
|
"description": "Core (non-native) Components",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"module": "lib/module/index.js",
|
|
@@ -41,8 +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": "^46.4.4-
|
|
45
|
-
"@gorhom/bottom-sheet": "4.4.5",
|
|
44
|
+
"@draftbit/types": "^46.4.4-682e48.2+682e481",
|
|
46
45
|
"@material-ui/core": "^4.11.0",
|
|
47
46
|
"@material-ui/pickers": "^3.2.10",
|
|
48
47
|
"@react-native-community/slider": "4.2.3",
|
|
@@ -55,7 +54,6 @@
|
|
|
55
54
|
"lodash.omit": "^4.5.0",
|
|
56
55
|
"lodash.tonumber": "^4.0.3",
|
|
57
56
|
"react-native-modal-datetime-picker": "^13.0.0",
|
|
58
|
-
"react-native-scroll-bottom-sheet": "0.7.0",
|
|
59
57
|
"react-native-svg": "12.3.0",
|
|
60
58
|
"react-native-typography": "^1.4.1",
|
|
61
59
|
"react-native-web-swiper": "^2.2.3"
|
|
@@ -83,5 +81,5 @@
|
|
|
83
81
|
]
|
|
84
82
|
]
|
|
85
83
|
},
|
|
86
|
-
"gitHead": "
|
|
84
|
+
"gitHead": "682e481a60b8c266d9f8ecdbe5154da512dff3ec"
|
|
87
85
|
}
|
package/src/index.js
CHANGED
|
@@ -29,7 +29,6 @@ export { default as Touchable } from "./components/Touchable";
|
|
|
29
29
|
export { AccordionGroup, AccordionItem } from "./components/Accordion";
|
|
30
30
|
export { ActionSheet, ActionSheetItem, ActionSheetCancel, } from "./components/ActionSheet";
|
|
31
31
|
export { Swiper, SwiperItem } from "./components/Swiper";
|
|
32
|
-
export { BottomSheet } from "./components/BottomSheet";
|
|
33
32
|
export { Center, Circle, Square, Row, Stack, Spacer, } from "./components/Layout";
|
|
34
33
|
export { RadioButton, RadioButtonGroup, RadioButtonRow, RadioButtonFieldGroup, } from "./components/RadioButton/index";
|
|
35
34
|
/* Deprecated: Fix or Delete! */
|
package/src/index.tsx
CHANGED
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
|
|
8
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
9
|
-
|
|
10
|
-
var _reactNative = require("react-native");
|
|
11
|
-
|
|
12
|
-
var _bottomSheet = _interopRequireWildcard(require("@gorhom/bottom-sheet"));
|
|
13
|
-
|
|
14
|
-
var _utilities = require("../../utilities");
|
|
15
|
-
|
|
16
|
-
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
17
|
-
|
|
18
|
-
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
19
|
-
|
|
20
|
-
const BottomSheetComponent = _ref => {
|
|
21
|
-
let {
|
|
22
|
-
style,
|
|
23
|
-
children,
|
|
24
|
-
step
|
|
25
|
-
} = _ref;
|
|
26
|
-
const bottomSheetRef = (0, _react.useRef)(null);
|
|
27
|
-
const {
|
|
28
|
-
viewStyles
|
|
29
|
-
} = (0, _utilities.extractStyles)(style); // variables
|
|
30
|
-
|
|
31
|
-
const snapPoints = (0, _react.useMemo)(() => ["25%", "50%", "90%"], []); // callbacks
|
|
32
|
-
|
|
33
|
-
const handleSheetChanges = (0, _react.useCallback)(index => {
|
|
34
|
-
console.log("handleSheetChanges", index);
|
|
35
|
-
}, []);
|
|
36
|
-
|
|
37
|
-
_react.default.useEffect(() => {
|
|
38
|
-
if (step === -1) {
|
|
39
|
-
var _bottomSheetRef$curre;
|
|
40
|
-
|
|
41
|
-
bottomSheetRef === null || bottomSheetRef === void 0 ? void 0 : (_bottomSheetRef$curre = bottomSheetRef.current) === null || _bottomSheetRef$curre === void 0 ? void 0 : _bottomSheetRef$curre.close();
|
|
42
|
-
}
|
|
43
|
-
}, [step]);
|
|
44
|
-
|
|
45
|
-
return /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
46
|
-
style: [containerStyle.container, viewStyles, {
|
|
47
|
-
backgroundColor: step !== -1 ? "grey" : "transparent"
|
|
48
|
-
}]
|
|
49
|
-
}, /*#__PURE__*/_react.default.createElement(_bottomSheet.default, {
|
|
50
|
-
ref: bottomSheetRef,
|
|
51
|
-
index: step,
|
|
52
|
-
snapPoints: snapPoints,
|
|
53
|
-
onChange: handleSheetChanges
|
|
54
|
-
}, /*#__PURE__*/_react.default.createElement(_bottomSheet.BottomSheetView, null, children)));
|
|
55
|
-
};
|
|
56
|
-
|
|
57
|
-
var _default = BottomSheetComponent;
|
|
58
|
-
exports.default = _default;
|
|
59
|
-
|
|
60
|
-
const containerStyle = _reactNative.StyleSheet.create({
|
|
61
|
-
container: {
|
|
62
|
-
flex: 1
|
|
63
|
-
},
|
|
64
|
-
contentContainer: {
|
|
65
|
-
flex: 1,
|
|
66
|
-
alignItems: "center"
|
|
67
|
-
}
|
|
68
|
-
});
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
|
|
8
|
-
var _react = _interopRequireDefault(require("react"));
|
|
9
|
-
|
|
10
|
-
var _reactNative = require("react-native");
|
|
11
|
-
|
|
12
|
-
var _reactNativeScrollBottomSheet = _interopRequireDefault(require("react-native-scroll-bottom-sheet"));
|
|
13
|
-
|
|
14
|
-
var _utilities = require("../../utilities");
|
|
15
|
-
|
|
16
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
17
|
-
|
|
18
|
-
const windowHeight = _reactNative.Dimensions.get("window").height;
|
|
19
|
-
|
|
20
|
-
const BottomSheetComponent = _ref => {
|
|
21
|
-
let {
|
|
22
|
-
style,
|
|
23
|
-
children,
|
|
24
|
-
step
|
|
25
|
-
} = _ref;
|
|
26
|
-
const {
|
|
27
|
-
viewStyles
|
|
28
|
-
} = (0, _utilities.extractStyles)(style);
|
|
29
|
-
|
|
30
|
-
const bottomSheetRef = _react.default.useRef();
|
|
31
|
-
|
|
32
|
-
const webStep = _react.default.useMemo(() => step + 1, [step]);
|
|
33
|
-
|
|
34
|
-
const snapPoints = _react.default.useMemo(() => ["25%", "50%", windowHeight - 200], []);
|
|
35
|
-
|
|
36
|
-
_react.default.useEffect(() => {
|
|
37
|
-
var _bottomSheetRef$curre;
|
|
38
|
-
|
|
39
|
-
bottomSheetRef === null || bottomSheetRef === void 0 ? void 0 : (_bottomSheetRef$curre = bottomSheetRef.current) === null || _bottomSheetRef$curre === void 0 ? void 0 : _bottomSheetRef$curre.snapTo(snapPoints.length - webStep); // bottomSheetRef.current.snapTo(step);
|
|
40
|
-
}, [webStep, step, snapPoints]);
|
|
41
|
-
|
|
42
|
-
if (step === -1) {
|
|
43
|
-
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null);
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
return /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
47
|
-
style: styles.container
|
|
48
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNativeScrollBottomSheet.default, {
|
|
49
|
-
ref: bottomSheetRef,
|
|
50
|
-
componentType: "ScrollView",
|
|
51
|
-
snapPoints: snapPoints,
|
|
52
|
-
initialSnapIndex: 0,
|
|
53
|
-
renderHandle: () => /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
54
|
-
style: styles.header
|
|
55
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
56
|
-
style: styles.panelHandle
|
|
57
|
-
})),
|
|
58
|
-
contentContainerStyle: styles.contentContainerStyle
|
|
59
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
60
|
-
style: { ...styles.container,
|
|
61
|
-
...viewStyles,
|
|
62
|
-
backgroundColor: webStep !== -1 ? "grey" : "transparent"
|
|
63
|
-
}
|
|
64
|
-
}, children)));
|
|
65
|
-
};
|
|
66
|
-
|
|
67
|
-
var _default = BottomSheetComponent;
|
|
68
|
-
exports.default = _default;
|
|
69
|
-
|
|
70
|
-
const styles = _reactNative.StyleSheet.create({
|
|
71
|
-
container: {
|
|
72
|
-
flex: 1
|
|
73
|
-
},
|
|
74
|
-
contentContainerStyle: {
|
|
75
|
-
padding: 16
|
|
76
|
-
},
|
|
77
|
-
header: {
|
|
78
|
-
alignItems: "center",
|
|
79
|
-
backgroundColor: "white",
|
|
80
|
-
paddingVertical: 20,
|
|
81
|
-
borderTopLeftRadius: 20,
|
|
82
|
-
borderTopRightRadius: 20
|
|
83
|
-
},
|
|
84
|
-
panelHandle: {
|
|
85
|
-
width: 40,
|
|
86
|
-
height: 2,
|
|
87
|
-
backgroundColor: "rgba(0,0,0,0.3)",
|
|
88
|
-
borderRadius: 4
|
|
89
|
-
},
|
|
90
|
-
item: {
|
|
91
|
-
padding: 20,
|
|
92
|
-
justifyContent: "center",
|
|
93
|
-
backgroundColor: "white",
|
|
94
|
-
alignItems: "center",
|
|
95
|
-
marginVertical: 10
|
|
96
|
-
}
|
|
97
|
-
});
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
Object.defineProperty(exports, "BottomSheet", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function () {
|
|
9
|
-
return _BottomSheet.default;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
|
|
13
|
-
var _BottomSheet = _interopRequireDefault(require("./BottomSheet"));
|
|
14
|
-
|
|
15
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.SEED_DATA = void 0;
|
|
7
|
-
|
|
8
|
-
var _types = require("@draftbit/types");
|
|
9
|
-
|
|
10
|
-
const SEED_DATA = {
|
|
11
|
-
name: "Bottom Sheet",
|
|
12
|
-
tag: "BottomSheet",
|
|
13
|
-
category: _types.COMPONENT_TYPES.container,
|
|
14
|
-
stylesPanelSections: [_types.StylesPanelSections.Background, _types.StylesPanelSections.Borders, _types.StylesPanelSections.Size, _types.StylesPanelSections.MarginsAndPaddings, _types.StylesPanelSections.Position, _types.StylesPanelSections.Effects],
|
|
15
|
-
props: {
|
|
16
|
-
step: (0, _types.createNumberProp)({
|
|
17
|
-
label: "Step",
|
|
18
|
-
description: "Step can be -1, 0, 1, or 2."
|
|
19
|
-
})
|
|
20
|
-
}
|
|
21
|
-
};
|
|
22
|
-
exports.SEED_DATA = SEED_DATA;
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import React, { useCallback, useMemo, useRef } from "react";
|
|
2
|
-
import { View, StyleSheet } from "react-native";
|
|
3
|
-
import BottomSheet, { BottomSheetView } from "@gorhom/bottom-sheet";
|
|
4
|
-
import { extractStyles } from "../../utilities";
|
|
5
|
-
|
|
6
|
-
const BottomSheetComponent = _ref => {
|
|
7
|
-
let {
|
|
8
|
-
style,
|
|
9
|
-
children,
|
|
10
|
-
step
|
|
11
|
-
} = _ref;
|
|
12
|
-
const bottomSheetRef = useRef(null);
|
|
13
|
-
const {
|
|
14
|
-
viewStyles
|
|
15
|
-
} = extractStyles(style); // variables
|
|
16
|
-
|
|
17
|
-
const snapPoints = useMemo(() => ["25%", "50%", "90%"], []); // callbacks
|
|
18
|
-
|
|
19
|
-
const handleSheetChanges = useCallback(index => {
|
|
20
|
-
console.log("handleSheetChanges", index);
|
|
21
|
-
}, []);
|
|
22
|
-
React.useEffect(() => {
|
|
23
|
-
if (step === -1) {
|
|
24
|
-
var _bottomSheetRef$curre;
|
|
25
|
-
|
|
26
|
-
bottomSheetRef === null || bottomSheetRef === void 0 ? void 0 : (_bottomSheetRef$curre = bottomSheetRef.current) === null || _bottomSheetRef$curre === void 0 ? void 0 : _bottomSheetRef$curre.close();
|
|
27
|
-
}
|
|
28
|
-
}, [step]);
|
|
29
|
-
return /*#__PURE__*/React.createElement(View, {
|
|
30
|
-
style: [containerStyle.container, viewStyles, {
|
|
31
|
-
backgroundColor: step !== -1 ? "grey" : "transparent"
|
|
32
|
-
}]
|
|
33
|
-
}, /*#__PURE__*/React.createElement(BottomSheet, {
|
|
34
|
-
ref: bottomSheetRef,
|
|
35
|
-
index: step,
|
|
36
|
-
snapPoints: snapPoints,
|
|
37
|
-
onChange: handleSheetChanges
|
|
38
|
-
}, /*#__PURE__*/React.createElement(BottomSheetView, null, children)));
|
|
39
|
-
};
|
|
40
|
-
|
|
41
|
-
export default BottomSheetComponent;
|
|
42
|
-
const containerStyle = StyleSheet.create({
|
|
43
|
-
container: {
|
|
44
|
-
flex: 1
|
|
45
|
-
},
|
|
46
|
-
contentContainer: {
|
|
47
|
-
flex: 1,
|
|
48
|
-
alignItems: "center"
|
|
49
|
-
}
|
|
50
|
-
});
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { StyleSheet, View, Dimensions } from "react-native";
|
|
3
|
-
import ScrollBottomSheet from "react-native-scroll-bottom-sheet";
|
|
4
|
-
import { extractStyles } from "../../utilities";
|
|
5
|
-
const windowHeight = Dimensions.get("window").height;
|
|
6
|
-
|
|
7
|
-
const BottomSheetComponent = _ref => {
|
|
8
|
-
let {
|
|
9
|
-
style,
|
|
10
|
-
children,
|
|
11
|
-
step
|
|
12
|
-
} = _ref;
|
|
13
|
-
const {
|
|
14
|
-
viewStyles
|
|
15
|
-
} = extractStyles(style);
|
|
16
|
-
const bottomSheetRef = React.useRef();
|
|
17
|
-
const webStep = React.useMemo(() => step + 1, [step]);
|
|
18
|
-
const snapPoints = React.useMemo(() => ["25%", "50%", windowHeight - 200], []);
|
|
19
|
-
React.useEffect(() => {
|
|
20
|
-
var _bottomSheetRef$curre;
|
|
21
|
-
|
|
22
|
-
bottomSheetRef === null || bottomSheetRef === void 0 ? void 0 : (_bottomSheetRef$curre = bottomSheetRef.current) === null || _bottomSheetRef$curre === void 0 ? void 0 : _bottomSheetRef$curre.snapTo(snapPoints.length - webStep); // bottomSheetRef.current.snapTo(step);
|
|
23
|
-
}, [webStep, step, snapPoints]);
|
|
24
|
-
|
|
25
|
-
if (step === -1) {
|
|
26
|
-
return /*#__PURE__*/React.createElement(React.Fragment, null);
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
return /*#__PURE__*/React.createElement(View, {
|
|
30
|
-
style: styles.container
|
|
31
|
-
}, /*#__PURE__*/React.createElement(ScrollBottomSheet, {
|
|
32
|
-
ref: bottomSheetRef,
|
|
33
|
-
componentType: "ScrollView",
|
|
34
|
-
snapPoints: snapPoints,
|
|
35
|
-
initialSnapIndex: 0,
|
|
36
|
-
renderHandle: () => /*#__PURE__*/React.createElement(View, {
|
|
37
|
-
style: styles.header
|
|
38
|
-
}, /*#__PURE__*/React.createElement(View, {
|
|
39
|
-
style: styles.panelHandle
|
|
40
|
-
})),
|
|
41
|
-
contentContainerStyle: styles.contentContainerStyle
|
|
42
|
-
}, /*#__PURE__*/React.createElement(View, {
|
|
43
|
-
style: { ...styles.container,
|
|
44
|
-
...viewStyles,
|
|
45
|
-
backgroundColor: webStep !== -1 ? "grey" : "transparent"
|
|
46
|
-
}
|
|
47
|
-
}, children)));
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
export default BottomSheetComponent;
|
|
51
|
-
const styles = StyleSheet.create({
|
|
52
|
-
container: {
|
|
53
|
-
flex: 1
|
|
54
|
-
},
|
|
55
|
-
contentContainerStyle: {
|
|
56
|
-
padding: 16
|
|
57
|
-
},
|
|
58
|
-
header: {
|
|
59
|
-
alignItems: "center",
|
|
60
|
-
backgroundColor: "white",
|
|
61
|
-
paddingVertical: 20,
|
|
62
|
-
borderTopLeftRadius: 20,
|
|
63
|
-
borderTopRightRadius: 20
|
|
64
|
-
},
|
|
65
|
-
panelHandle: {
|
|
66
|
-
width: 40,
|
|
67
|
-
height: 2,
|
|
68
|
-
backgroundColor: "rgba(0,0,0,0.3)",
|
|
69
|
-
borderRadius: 4
|
|
70
|
-
},
|
|
71
|
-
item: {
|
|
72
|
-
padding: 20,
|
|
73
|
-
justifyContent: "center",
|
|
74
|
-
backgroundColor: "white",
|
|
75
|
-
alignItems: "center",
|
|
76
|
-
marginVertical: 10
|
|
77
|
-
}
|
|
78
|
-
});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { COMPONENT_TYPES, createNumberProp, StylesPanelSections } from "@draftbit/types";
|
|
2
|
-
export const SEED_DATA = {
|
|
3
|
-
name: "Bottom Sheet",
|
|
4
|
-
tag: "BottomSheet",
|
|
5
|
-
category: COMPONENT_TYPES.container,
|
|
6
|
-
stylesPanelSections: [StylesPanelSections.Background, StylesPanelSections.Borders, StylesPanelSections.Size, StylesPanelSections.MarginsAndPaddings, StylesPanelSections.Position, StylesPanelSections.Effects],
|
|
7
|
-
props: {
|
|
8
|
-
step: createNumberProp({
|
|
9
|
-
label: "Step",
|
|
10
|
-
description: "Step can be -1, 0, 1, or 2."
|
|
11
|
-
})
|
|
12
|
-
}
|
|
13
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as BottomSheet } from "./BottomSheet";
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export declare const SEED_DATA: {
|
|
2
|
-
name: string;
|
|
3
|
-
tag: string;
|
|
4
|
-
category: string;
|
|
5
|
-
stylesPanelSections: string[];
|
|
6
|
-
props: {
|
|
7
|
-
step: {
|
|
8
|
-
label: string;
|
|
9
|
-
description: string;
|
|
10
|
-
formType: string;
|
|
11
|
-
propType: string;
|
|
12
|
-
group: string;
|
|
13
|
-
defaultValue: null;
|
|
14
|
-
editable: boolean;
|
|
15
|
-
required: boolean;
|
|
16
|
-
step: number;
|
|
17
|
-
};
|
|
18
|
-
};
|
|
19
|
-
};
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import React, { useCallback, useMemo, useRef } from "react";
|
|
2
|
-
import { View, StyleSheet } from "react-native";
|
|
3
|
-
import BottomSheet, { BottomSheetView } from "@gorhom/bottom-sheet";
|
|
4
|
-
import { extractStyles } from "../../utilities";
|
|
5
|
-
const BottomSheetComponent = ({ style, children, step, }) => {
|
|
6
|
-
const bottomSheetRef = useRef(null);
|
|
7
|
-
const { viewStyles } = extractStyles(style);
|
|
8
|
-
// variables
|
|
9
|
-
const snapPoints = useMemo(() => ["25%", "50%", "90%"], []);
|
|
10
|
-
// callbacks
|
|
11
|
-
const handleSheetChanges = useCallback((index) => {
|
|
12
|
-
console.log("handleSheetChanges", index);
|
|
13
|
-
}, []);
|
|
14
|
-
React.useEffect(() => {
|
|
15
|
-
var _a;
|
|
16
|
-
if (step === -1) {
|
|
17
|
-
(_a = bottomSheetRef === null || bottomSheetRef === void 0 ? void 0 : bottomSheetRef.current) === null || _a === void 0 ? void 0 : _a.close();
|
|
18
|
-
}
|
|
19
|
-
}, [step]);
|
|
20
|
-
return (React.createElement(View, { style: [
|
|
21
|
-
containerStyle.container,
|
|
22
|
-
viewStyles,
|
|
23
|
-
{ backgroundColor: step !== -1 ? "grey" : "transparent" },
|
|
24
|
-
] },
|
|
25
|
-
React.createElement(BottomSheet, { ref: bottomSheetRef, index: step, snapPoints: snapPoints, onChange: handleSheetChanges },
|
|
26
|
-
React.createElement(BottomSheetView, null, children))));
|
|
27
|
-
};
|
|
28
|
-
export default BottomSheetComponent;
|
|
29
|
-
const containerStyle = StyleSheet.create({
|
|
30
|
-
container: {
|
|
31
|
-
flex: 1,
|
|
32
|
-
},
|
|
33
|
-
contentContainer: {
|
|
34
|
-
flex: 1,
|
|
35
|
-
alignItems: "center",
|
|
36
|
-
},
|
|
37
|
-
});
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
import React, { useCallback, useMemo, useRef } from "react";
|
|
2
|
-
import { View, StyleSheet } from "react-native";
|
|
3
|
-
import BottomSheet, { BottomSheetView } from "@gorhom/bottom-sheet";
|
|
4
|
-
|
|
5
|
-
import { extractStyles } from "../../utilities";
|
|
6
|
-
import { BottomSheetProps } from "./types";
|
|
7
|
-
|
|
8
|
-
const BottomSheetComponent: React.FC<BottomSheetProps> = ({
|
|
9
|
-
style,
|
|
10
|
-
children,
|
|
11
|
-
step,
|
|
12
|
-
}) => {
|
|
13
|
-
const bottomSheetRef = useRef<BottomSheet>(null);
|
|
14
|
-
const { viewStyles } = extractStyles(style);
|
|
15
|
-
|
|
16
|
-
// variables
|
|
17
|
-
const snapPoints = useMemo(() => ["25%", "50%", "90%"], []);
|
|
18
|
-
|
|
19
|
-
// callbacks
|
|
20
|
-
const handleSheetChanges = useCallback((index: number) => {
|
|
21
|
-
console.log("handleSheetChanges", index);
|
|
22
|
-
}, []);
|
|
23
|
-
|
|
24
|
-
React.useEffect(() => {
|
|
25
|
-
if (step === -1) {
|
|
26
|
-
bottomSheetRef?.current?.close();
|
|
27
|
-
}
|
|
28
|
-
}, [step]);
|
|
29
|
-
|
|
30
|
-
return (
|
|
31
|
-
<View
|
|
32
|
-
style={[
|
|
33
|
-
containerStyle.container,
|
|
34
|
-
viewStyles,
|
|
35
|
-
{ backgroundColor: step !== -1 ? "grey" : "transparent" },
|
|
36
|
-
]}
|
|
37
|
-
>
|
|
38
|
-
<BottomSheet
|
|
39
|
-
ref={bottomSheetRef}
|
|
40
|
-
index={step}
|
|
41
|
-
snapPoints={snapPoints}
|
|
42
|
-
onChange={handleSheetChanges}
|
|
43
|
-
>
|
|
44
|
-
<BottomSheetView>{children}</BottomSheetView>
|
|
45
|
-
</BottomSheet>
|
|
46
|
-
</View>
|
|
47
|
-
);
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
export default BottomSheetComponent;
|
|
51
|
-
|
|
52
|
-
const containerStyle = StyleSheet.create({
|
|
53
|
-
container: {
|
|
54
|
-
flex: 1,
|
|
55
|
-
},
|
|
56
|
-
contentContainer: {
|
|
57
|
-
flex: 1,
|
|
58
|
-
alignItems: "center",
|
|
59
|
-
},
|
|
60
|
-
});
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { StyleSheet, View, Dimensions } from "react-native";
|
|
3
|
-
import ScrollBottomSheet from "react-native-scroll-bottom-sheet";
|
|
4
|
-
import { extractStyles } from "../../utilities";
|
|
5
|
-
const windowHeight = Dimensions.get("window").height;
|
|
6
|
-
const BottomSheetComponent = ({ style, children, step, }) => {
|
|
7
|
-
const { viewStyles } = extractStyles(style);
|
|
8
|
-
const bottomSheetRef = React.useRef();
|
|
9
|
-
const webStep = React.useMemo(() => step + 1, [step]);
|
|
10
|
-
const snapPoints = React.useMemo(() => ["25%", "50%", windowHeight - 200], []);
|
|
11
|
-
React.useEffect(() => {
|
|
12
|
-
var _a;
|
|
13
|
-
(_a = bottomSheetRef === null || bottomSheetRef === void 0 ? void 0 : bottomSheetRef.current) === null || _a === void 0 ? void 0 : _a.snapTo(snapPoints.length - webStep);
|
|
14
|
-
// bottomSheetRef.current.snapTo(step);
|
|
15
|
-
}, [webStep, step, snapPoints]);
|
|
16
|
-
if (step === -1) {
|
|
17
|
-
return React.createElement(React.Fragment, null);
|
|
18
|
-
}
|
|
19
|
-
return (React.createElement(View, { style: styles.container },
|
|
20
|
-
React.createElement(ScrollBottomSheet, { ref: bottomSheetRef, componentType: "ScrollView", snapPoints: snapPoints, initialSnapIndex: 0, renderHandle: () => (React.createElement(View, { style: styles.header },
|
|
21
|
-
React.createElement(View, { style: styles.panelHandle }))), contentContainerStyle: styles.contentContainerStyle },
|
|
22
|
-
React.createElement(View, { style: {
|
|
23
|
-
...styles.container,
|
|
24
|
-
...viewStyles,
|
|
25
|
-
backgroundColor: webStep !== -1 ? "grey" : "transparent",
|
|
26
|
-
} }, children))));
|
|
27
|
-
};
|
|
28
|
-
export default BottomSheetComponent;
|
|
29
|
-
const styles = StyleSheet.create({
|
|
30
|
-
container: {
|
|
31
|
-
flex: 1,
|
|
32
|
-
},
|
|
33
|
-
contentContainerStyle: {
|
|
34
|
-
padding: 16,
|
|
35
|
-
},
|
|
36
|
-
header: {
|
|
37
|
-
alignItems: "center",
|
|
38
|
-
backgroundColor: "white",
|
|
39
|
-
paddingVertical: 20,
|
|
40
|
-
borderTopLeftRadius: 20,
|
|
41
|
-
borderTopRightRadius: 20,
|
|
42
|
-
},
|
|
43
|
-
panelHandle: {
|
|
44
|
-
width: 40,
|
|
45
|
-
height: 2,
|
|
46
|
-
backgroundColor: "rgba(0,0,0,0.3)",
|
|
47
|
-
borderRadius: 4,
|
|
48
|
-
},
|
|
49
|
-
item: {
|
|
50
|
-
padding: 20,
|
|
51
|
-
justifyContent: "center",
|
|
52
|
-
backgroundColor: "white",
|
|
53
|
-
alignItems: "center",
|
|
54
|
-
marginVertical: 10,
|
|
55
|
-
},
|
|
56
|
-
});
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { StyleSheet, View, Dimensions } from "react-native";
|
|
3
|
-
import ScrollBottomSheet from "react-native-scroll-bottom-sheet";
|
|
4
|
-
|
|
5
|
-
import { extractStyles } from "../../utilities";
|
|
6
|
-
import { BottomSheetProps } from "./types";
|
|
7
|
-
|
|
8
|
-
const windowHeight = Dimensions.get("window").height;
|
|
9
|
-
|
|
10
|
-
const BottomSheetComponent: React.FC<BottomSheetProps> = ({
|
|
11
|
-
style,
|
|
12
|
-
children,
|
|
13
|
-
step,
|
|
14
|
-
}) => {
|
|
15
|
-
const { viewStyles } = extractStyles(style);
|
|
16
|
-
const bottomSheetRef = React.useRef<any>();
|
|
17
|
-
|
|
18
|
-
const webStep = React.useMemo(() => step + 1, [step]);
|
|
19
|
-
const snapPoints = React.useMemo(
|
|
20
|
-
() => ["25%", "50%", windowHeight - 200],
|
|
21
|
-
[]
|
|
22
|
-
);
|
|
23
|
-
|
|
24
|
-
React.useEffect(() => {
|
|
25
|
-
bottomSheetRef?.current?.snapTo(snapPoints.length - webStep);
|
|
26
|
-
// bottomSheetRef.current.snapTo(step);
|
|
27
|
-
}, [webStep, step, snapPoints]);
|
|
28
|
-
|
|
29
|
-
if (step === -1) {
|
|
30
|
-
return <></>;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
return (
|
|
34
|
-
<View style={styles.container}>
|
|
35
|
-
<ScrollBottomSheet
|
|
36
|
-
ref={bottomSheetRef}
|
|
37
|
-
componentType="ScrollView"
|
|
38
|
-
snapPoints={snapPoints}
|
|
39
|
-
initialSnapIndex={0}
|
|
40
|
-
renderHandle={() => (
|
|
41
|
-
<View style={styles.header}>
|
|
42
|
-
<View style={styles.panelHandle} />
|
|
43
|
-
</View>
|
|
44
|
-
)}
|
|
45
|
-
contentContainerStyle={styles.contentContainerStyle}
|
|
46
|
-
>
|
|
47
|
-
<View
|
|
48
|
-
style={{
|
|
49
|
-
...styles.container,
|
|
50
|
-
...viewStyles,
|
|
51
|
-
backgroundColor: webStep !== -1 ? "grey" : "transparent",
|
|
52
|
-
}}
|
|
53
|
-
>
|
|
54
|
-
{children}
|
|
55
|
-
</View>
|
|
56
|
-
</ScrollBottomSheet>
|
|
57
|
-
</View>
|
|
58
|
-
);
|
|
59
|
-
};
|
|
60
|
-
|
|
61
|
-
export default BottomSheetComponent;
|
|
62
|
-
|
|
63
|
-
const styles = StyleSheet.create({
|
|
64
|
-
container: {
|
|
65
|
-
flex: 1,
|
|
66
|
-
},
|
|
67
|
-
contentContainerStyle: {
|
|
68
|
-
padding: 16,
|
|
69
|
-
},
|
|
70
|
-
header: {
|
|
71
|
-
alignItems: "center",
|
|
72
|
-
backgroundColor: "white",
|
|
73
|
-
paddingVertical: 20,
|
|
74
|
-
borderTopLeftRadius: 20,
|
|
75
|
-
borderTopRightRadius: 20,
|
|
76
|
-
},
|
|
77
|
-
panelHandle: {
|
|
78
|
-
width: 40,
|
|
79
|
-
height: 2,
|
|
80
|
-
backgroundColor: "rgba(0,0,0,0.3)",
|
|
81
|
-
borderRadius: 4,
|
|
82
|
-
},
|
|
83
|
-
item: {
|
|
84
|
-
padding: 20,
|
|
85
|
-
justifyContent: "center",
|
|
86
|
-
backgroundColor: "white",
|
|
87
|
-
alignItems: "center",
|
|
88
|
-
marginVertical: 10,
|
|
89
|
-
},
|
|
90
|
-
});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { COMPONENT_TYPES, createNumberProp, StylesPanelSections, } from "@draftbit/types";
|
|
2
|
-
export const SEED_DATA = {
|
|
3
|
-
name: "Bottom Sheet",
|
|
4
|
-
tag: "BottomSheet",
|
|
5
|
-
category: COMPONENT_TYPES.container,
|
|
6
|
-
stylesPanelSections: [
|
|
7
|
-
StylesPanelSections.Background,
|
|
8
|
-
StylesPanelSections.Borders,
|
|
9
|
-
StylesPanelSections.Size,
|
|
10
|
-
StylesPanelSections.MarginsAndPaddings,
|
|
11
|
-
StylesPanelSections.Position,
|
|
12
|
-
StylesPanelSections.Effects,
|
|
13
|
-
],
|
|
14
|
-
props: {
|
|
15
|
-
step: createNumberProp({
|
|
16
|
-
label: "Step",
|
|
17
|
-
description: "Step can be -1, 0, 1, or 2.",
|
|
18
|
-
}),
|
|
19
|
-
},
|
|
20
|
-
};
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
COMPONENT_TYPES,
|
|
3
|
-
createNumberProp,
|
|
4
|
-
StylesPanelSections,
|
|
5
|
-
} from "@draftbit/types";
|
|
6
|
-
|
|
7
|
-
export const SEED_DATA = {
|
|
8
|
-
name: "Bottom Sheet",
|
|
9
|
-
tag: "BottomSheet",
|
|
10
|
-
category: COMPONENT_TYPES.container,
|
|
11
|
-
stylesPanelSections: [
|
|
12
|
-
StylesPanelSections.Background,
|
|
13
|
-
StylesPanelSections.Borders,
|
|
14
|
-
StylesPanelSections.Size,
|
|
15
|
-
StylesPanelSections.MarginsAndPaddings,
|
|
16
|
-
StylesPanelSections.Position,
|
|
17
|
-
StylesPanelSections.Effects,
|
|
18
|
-
],
|
|
19
|
-
props: {
|
|
20
|
-
step: createNumberProp({
|
|
21
|
-
label: "Step",
|
|
22
|
-
description: "Step can be -1, 0, 1, or 2.",
|
|
23
|
-
}),
|
|
24
|
-
},
|
|
25
|
-
};
|