@draftbit/core 46.8.2-e0b610.2 → 46.8.2-fad2ca.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/Elevation.js +2 -14
- package/lib/commonjs/components/TabView/TabView.js +100 -0
- package/lib/commonjs/components/TabView/TabViewItem.js +25 -0
- package/lib/commonjs/components/TabView/index.js +20 -0
- package/lib/commonjs/index.js +13 -7
- package/lib/commonjs/mappings/TabView.js +73 -0
- package/lib/commonjs/mappings/TabViewItem.js +36 -0
- package/lib/module/components/AspectRatio.js +1 -18
- package/lib/module/components/Checkbox/CheckboxGroupRow.js +5 -24
- package/lib/module/components/TabView/TabView.js +90 -0
- package/lib/module/components/TabView/TabViewItem.js +20 -0
- package/lib/module/components/TabView/index.js +2 -0
- package/lib/module/index.js +1 -1
- package/lib/module/mappings/TabView.js +66 -0
- package/lib/module/mappings/TabViewItem.js +29 -0
- package/lib/typescript/src/components/TabView/TabView.d.ts +26 -0
- package/lib/typescript/src/components/TabView/TabView.d.ts.map +1 -0
- package/lib/typescript/src/components/TabView/TabViewItem.d.ts +11 -0
- package/lib/typescript/src/components/TabView/TabViewItem.d.ts.map +1 -0
- package/lib/typescript/src/components/TabView/index.d.ts +3 -0
- package/lib/typescript/src/components/TabView/index.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +1 -1
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/mappings/{Shadow.d.ts → TabView.d.ts} +32 -82
- package/lib/typescript/src/mappings/TabView.d.ts.map +1 -0
- package/lib/typescript/src/mappings/TabViewItem.d.ts +25 -0
- package/lib/typescript/src/mappings/TabViewItem.d.ts.map +1 -0
- package/package.json +5 -4
- package/src/components/TabView/TabView.js +45 -0
- package/src/components/TabView/TabView.tsx +129 -0
- package/src/components/TabView/TabViewItem.js +11 -0
- package/src/components/TabView/TabViewItem.tsx +25 -0
- package/src/components/TabView/index.js +2 -0
- package/src/components/TabView/index.tsx +2 -0
- package/src/index.js +1 -1
- package/src/index.tsx +2 -2
- package/src/mappings/TabView.js +69 -0
- package/src/mappings/TabView.ts +79 -0
- package/src/mappings/TabViewItem.js +29 -0
- package/src/mappings/TabViewItem.ts +37 -0
- package/lib/commonjs/components/Shadow.js +0 -46
- package/lib/commonjs/mappings/Shadow.js +0 -94
- package/lib/module/components/Shadow.js +0 -38
- package/lib/module/mappings/Shadow.js +0 -87
- package/lib/typescript/src/components/Shadow.d.ts +0 -24
- package/lib/typescript/src/components/Shadow.d.ts.map +0 -1
- package/lib/typescript/src/mappings/Shadow.d.ts.map +0 -1
- package/src/components/Shadow.js +0 -16
- package/src/components/Shadow.tsx +0 -62
- package/src/mappings/Shadow.js +0 -87
- package/src/mappings/Shadow.ts +0 -95
|
@@ -11,6 +11,7 @@ var _theming = require("../theming");
|
|
|
11
11
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
12
12
|
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); }
|
|
13
13
|
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; }
|
|
14
|
+
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); }
|
|
14
15
|
/* directly copied from https://github.com/callstack/react-native-paper/blob/main/src/components/Surface.tsx#L62 */
|
|
15
16
|
const Elevation = _ref => {
|
|
16
17
|
let {
|
|
@@ -27,24 +28,11 @@ const Elevation = _ref => {
|
|
|
27
28
|
colors
|
|
28
29
|
} = theme;
|
|
29
30
|
const borderRadius = radius;
|
|
30
|
-
return /*#__PURE__*/React.createElement(_reactNative.Animated.View, {
|
|
31
|
-
...rest,
|
|
31
|
+
return /*#__PURE__*/React.createElement(_reactNative.Animated.View, _extends({}, rest, {
|
|
32
32
|
style: [{
|
|
33
33
|
borderRadius,
|
|
34
34
|
backgroundColor: colors.surface
|
|
35
35
|
}, elevation ? (0, _shadow.default)(elevation) : null, style]
|
|
36
|
-
}, /*#__PURE__*/React.createElement(_reactNative.View, {
|
|
37
|
-
style: {
|
|
38
|
-
overflow: "hidden",
|
|
39
|
-
borderRadius
|
|
40
|
-
}
|
|
41
|
-
}, children));
|
|
42
|
-
};
|
|
43
|
-
var _default = (0, _theming.withTheme)(Elevation);
|
|
44
|
-
exports.default = _default;
|
|
45
|
-
borderRadius,
|
|
46
|
-
backgroundColor: colors.surface
|
|
47
|
-
}, elevation ? (0, _shadow.default)(elevation) : null, style]
|
|
48
36
|
}), /*#__PURE__*/React.createElement(_reactNative.View, {
|
|
49
37
|
style: {
|
|
50
38
|
overflow: "hidden",
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var React = _interopRequireWildcard(require("react"));
|
|
8
|
+
var _reactNativeTabView = require("react-native-tab-view");
|
|
9
|
+
var _TabViewItem = _interopRequireDefault(require("./TabViewItem"));
|
|
10
|
+
var _theming = require("../../theming");
|
|
11
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
12
|
+
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); }
|
|
13
|
+
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; }
|
|
14
|
+
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); }
|
|
15
|
+
const TabViewComponent = _ref => {
|
|
16
|
+
let {
|
|
17
|
+
Icon,
|
|
18
|
+
onIndexChanged,
|
|
19
|
+
onEndReached,
|
|
20
|
+
tabBarPosition,
|
|
21
|
+
keyboardDismissMode,
|
|
22
|
+
swipeEnabled,
|
|
23
|
+
scrollEnabled,
|
|
24
|
+
activeColor,
|
|
25
|
+
inactiveColor,
|
|
26
|
+
pressColor,
|
|
27
|
+
indicatorColor,
|
|
28
|
+
tabsBackgroundColor,
|
|
29
|
+
style,
|
|
30
|
+
theme,
|
|
31
|
+
children
|
|
32
|
+
} = _ref;
|
|
33
|
+
const [index, setIndex] = React.useState(0);
|
|
34
|
+
const [routes, setRoutes] = React.useState([]);
|
|
35
|
+
const [tabScenes, setTabScenes] = React.useState({});
|
|
36
|
+
|
|
37
|
+
//Populate routes and scenes based on children
|
|
38
|
+
React.useEffect(() => {
|
|
39
|
+
const newRoutes = [];
|
|
40
|
+
const scenes = {};
|
|
41
|
+
React.Children.toArray(children).filter(child => /*#__PURE__*/React.isValidElement(child) && child.type === _TabViewItem.default).forEach((item, idx) => {
|
|
42
|
+
const child = item;
|
|
43
|
+
newRoutes.push({
|
|
44
|
+
key: idx.toString(),
|
|
45
|
+
title: child.props.title,
|
|
46
|
+
icon: child.props.icon,
|
|
47
|
+
accessibilityLabel: child.props.accessibilityLabel
|
|
48
|
+
});
|
|
49
|
+
scenes[idx] = () => child;
|
|
50
|
+
});
|
|
51
|
+
setRoutes(newRoutes);
|
|
52
|
+
setTabScenes(scenes);
|
|
53
|
+
}, [children]);
|
|
54
|
+
const indexChangeHandler = i => {
|
|
55
|
+
setIndex(i);
|
|
56
|
+
onIndexChanged === null || onIndexChanged === void 0 ? void 0 : onIndexChanged(i);
|
|
57
|
+
if (i === routes.length) {
|
|
58
|
+
onEndReached === null || onEndReached === void 0 ? void 0 : onEndReached();
|
|
59
|
+
}
|
|
60
|
+
};
|
|
61
|
+
const renderTabBar = props => {
|
|
62
|
+
return /*#__PURE__*/React.createElement(_reactNativeTabView.TabBar, _extends({}, props, {
|
|
63
|
+
activeColor: activeColor || theme.colors.primary,
|
|
64
|
+
inactiveColor: inactiveColor || theme.colors.divider,
|
|
65
|
+
pressColor: pressColor || theme.colors.primary,
|
|
66
|
+
scrollEnabled: scrollEnabled,
|
|
67
|
+
indicatorStyle: {
|
|
68
|
+
backgroundColor: indicatorColor || theme.colors.primary
|
|
69
|
+
},
|
|
70
|
+
renderIcon: _ref2 => {
|
|
71
|
+
let {
|
|
72
|
+
route,
|
|
73
|
+
color
|
|
74
|
+
} = _ref2;
|
|
75
|
+
return route !== null && route !== void 0 && route.icon ? /*#__PURE__*/React.createElement(Icon, {
|
|
76
|
+
name: route.icon,
|
|
77
|
+
color: color,
|
|
78
|
+
size: 36
|
|
79
|
+
}) : null;
|
|
80
|
+
},
|
|
81
|
+
style: [{
|
|
82
|
+
backgroundColor: tabsBackgroundColor || theme.colors.background
|
|
83
|
+
}, style]
|
|
84
|
+
}));
|
|
85
|
+
};
|
|
86
|
+
return /*#__PURE__*/React.createElement(_reactNativeTabView.TabView, {
|
|
87
|
+
navigationState: {
|
|
88
|
+
index,
|
|
89
|
+
routes
|
|
90
|
+
},
|
|
91
|
+
renderScene: (0, _reactNativeTabView.SceneMap)(tabScenes),
|
|
92
|
+
renderTabBar: renderTabBar,
|
|
93
|
+
onIndexChange: indexChangeHandler,
|
|
94
|
+
tabBarPosition: tabBarPosition,
|
|
95
|
+
keyboardDismissMode: keyboardDismissMode,
|
|
96
|
+
swipeEnabled: swipeEnabled
|
|
97
|
+
});
|
|
98
|
+
};
|
|
99
|
+
var _default = (0, _theming.withTheme)(TabViewComponent);
|
|
100
|
+
exports.default = _default;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _reactNative = require("react-native");
|
|
9
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
10
|
+
const TabViewItem = _ref => {
|
|
11
|
+
let {
|
|
12
|
+
style,
|
|
13
|
+
children
|
|
14
|
+
} = _ref;
|
|
15
|
+
return /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
16
|
+
style: [styles.parentContainer, style]
|
|
17
|
+
}, children);
|
|
18
|
+
};
|
|
19
|
+
const styles = _reactNative.StyleSheet.create({
|
|
20
|
+
parentContainer: {
|
|
21
|
+
flex: 1
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
var _default = TabViewItem;
|
|
25
|
+
exports.default = _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "TabView", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function () {
|
|
9
|
+
return _TabView.default;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "TabViewItem", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return _TabViewItem.default;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
var _TabView = _interopRequireDefault(require("./TabView"));
|
|
19
|
+
var _TabViewItem = _interopRequireDefault(require("./TabViewItem"));
|
|
20
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
package/lib/commonjs/index.js
CHANGED
|
@@ -273,12 +273,6 @@ Object.defineProperty(exports, "ScreenContainer", {
|
|
|
273
273
|
return _ScreenContainer.default;
|
|
274
274
|
}
|
|
275
275
|
});
|
|
276
|
-
Object.defineProperty(exports, "Shadow", {
|
|
277
|
-
enumerable: true,
|
|
278
|
-
get: function () {
|
|
279
|
-
return _Shadow.default;
|
|
280
|
-
}
|
|
281
|
-
});
|
|
282
276
|
Object.defineProperty(exports, "Slider", {
|
|
283
277
|
enumerable: true,
|
|
284
278
|
get: function () {
|
|
@@ -345,6 +339,18 @@ Object.defineProperty(exports, "SwitchRow", {
|
|
|
345
339
|
return _Switch.SwitchRow;
|
|
346
340
|
}
|
|
347
341
|
});
|
|
342
|
+
Object.defineProperty(exports, "TabView", {
|
|
343
|
+
enumerable: true,
|
|
344
|
+
get: function () {
|
|
345
|
+
return _TabView.TabView;
|
|
346
|
+
}
|
|
347
|
+
});
|
|
348
|
+
Object.defineProperty(exports, "TabViewItem", {
|
|
349
|
+
enumerable: true,
|
|
350
|
+
get: function () {
|
|
351
|
+
return _TabView.TabViewItem;
|
|
352
|
+
}
|
|
353
|
+
});
|
|
348
354
|
Object.defineProperty(exports, "TextField", {
|
|
349
355
|
enumerable: true,
|
|
350
356
|
get: function () {
|
|
@@ -419,8 +425,8 @@ var _ActionSheet = require("./components/ActionSheet");
|
|
|
419
425
|
var _Swiper = require("./components/Swiper");
|
|
420
426
|
var _Layout = require("./components/Layout");
|
|
421
427
|
var _index = require("./components/RadioButton/index");
|
|
422
|
-
var _Shadow = _interopRequireDefault(require("./components/Shadow"));
|
|
423
428
|
var _DeckSwiper = require("./components/DeckSwiper");
|
|
429
|
+
var _TabView = require("./components/TabView");
|
|
424
430
|
var _DatePicker = _interopRequireDefault(require("./components/DatePicker/DatePicker"));
|
|
425
431
|
var _Picker = _interopRequireDefault(require("./components/Picker/Picker"));
|
|
426
432
|
var _ProgressBar = _interopRequireDefault(require("./components/ProgressBar"));
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.SEED_DATA = void 0;
|
|
7
|
+
var _types = require("@draftbit/types");
|
|
8
|
+
const SEED_DATA = {
|
|
9
|
+
name: "Tab View",
|
|
10
|
+
tag: "TabView",
|
|
11
|
+
description: "Tab view container",
|
|
12
|
+
category: _types.COMPONENT_TYPES.swiper,
|
|
13
|
+
stylesPanelSections: [..._types.BLOCK_STYLES_SECTIONS, _types.StylesPanelSections.Background],
|
|
14
|
+
triggers: [_types.Triggers.OnIndexChanged, _types.Triggers.OnEndReached],
|
|
15
|
+
props: {
|
|
16
|
+
onIndexChanged: (0, _types.createActionProp)({
|
|
17
|
+
label: "On index changed",
|
|
18
|
+
description: "Action to execute when swipe to new index"
|
|
19
|
+
}),
|
|
20
|
+
onEndReached: (0, _types.createActionProp)({
|
|
21
|
+
label: "On end reached",
|
|
22
|
+
description: "Action to execute when end of swiping reached"
|
|
23
|
+
}),
|
|
24
|
+
tabBarPosition: (0, _types.createTextEnumProp)({
|
|
25
|
+
label: "Tab Bar Position",
|
|
26
|
+
description: "Position of tab bar",
|
|
27
|
+
options: ["top", "bottom"],
|
|
28
|
+
defaultValue: "top"
|
|
29
|
+
}),
|
|
30
|
+
keyboardDismissMode: (0, _types.createTextEnumProp)({
|
|
31
|
+
label: "Keyboard Dismiss Mode",
|
|
32
|
+
description: "Keyboard Dismiss Mode",
|
|
33
|
+
options: ["auto", "on-drag", "none"],
|
|
34
|
+
defaultValue: "auto"
|
|
35
|
+
}),
|
|
36
|
+
swipeEnabled: (0, _types.createStaticBoolProp)({
|
|
37
|
+
label: "Swipe Enabled",
|
|
38
|
+
description: "Whether swiping is enabled or not",
|
|
39
|
+
defaultValue: true
|
|
40
|
+
}),
|
|
41
|
+
scrollEnabled: (0, _types.createStaticBoolProp)({
|
|
42
|
+
label: "Scroll Enabled",
|
|
43
|
+
description: "Whether scrolling of tabs is enabled or not",
|
|
44
|
+
defaultValue: true
|
|
45
|
+
}),
|
|
46
|
+
activeColor: (0, _types.createColorProp)({
|
|
47
|
+
label: "Active Color",
|
|
48
|
+
description: "Color of icon and text of active tab",
|
|
49
|
+
defaultValue: "primary"
|
|
50
|
+
}),
|
|
51
|
+
inactiveColor: (0, _types.createColorProp)({
|
|
52
|
+
label: "Inactive Color",
|
|
53
|
+
description: "Color of icon and text of inactive tab(s)",
|
|
54
|
+
defaultValue: null
|
|
55
|
+
}),
|
|
56
|
+
pressColor: (0, _types.createColorProp)({
|
|
57
|
+
label: "Press Color",
|
|
58
|
+
description: "Color of ripple when pressed (android only)",
|
|
59
|
+
defaultValue: "primary"
|
|
60
|
+
}),
|
|
61
|
+
indicatorColor: (0, _types.createColorProp)({
|
|
62
|
+
label: "Indicator Color",
|
|
63
|
+
description: "Color of indicator",
|
|
64
|
+
defaultValue: "primary"
|
|
65
|
+
}),
|
|
66
|
+
tabsBackgroundColor: (0, _types.createColorProp)({
|
|
67
|
+
label: "Tabs Background Color",
|
|
68
|
+
description: "Background color of tabs container",
|
|
69
|
+
defaultValue: "background"
|
|
70
|
+
})
|
|
71
|
+
}
|
|
72
|
+
};
|
|
73
|
+
exports.SEED_DATA = SEED_DATA;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.SEED_DATA = void 0;
|
|
7
|
+
var _types = require("@draftbit/types");
|
|
8
|
+
const SEED_DATA = {
|
|
9
|
+
name: "Tab View Item",
|
|
10
|
+
tag: "TabViewItem",
|
|
11
|
+
description: "Single Tab View item to be used in TabView. Each item represents a single tab and its content",
|
|
12
|
+
category: _types.COMPONENT_TYPES.swiper,
|
|
13
|
+
stylesPanelSections: _types.CONTAINER_COMPONENT_STYLES_SECTIONS,
|
|
14
|
+
layout: {
|
|
15
|
+
flex: 1
|
|
16
|
+
},
|
|
17
|
+
props: {
|
|
18
|
+
title: (0, _types.createTextProp)({
|
|
19
|
+
label: "Title",
|
|
20
|
+
description: "Title of tab item",
|
|
21
|
+
defaultValue: null,
|
|
22
|
+
required: true
|
|
23
|
+
}),
|
|
24
|
+
icon: (0, _types.createIconProp)({
|
|
25
|
+
defaultValue: null,
|
|
26
|
+
required: false
|
|
27
|
+
}),
|
|
28
|
+
accessibilityLabel: (0, _types.createTextProp)({
|
|
29
|
+
label: "Accessibility Label",
|
|
30
|
+
description: "Accessibility Label",
|
|
31
|
+
defaultValue: null,
|
|
32
|
+
group: _types.GROUPS.accessibility
|
|
33
|
+
})
|
|
34
|
+
}
|
|
35
|
+
};
|
|
36
|
+
exports.SEED_DATA = SEED_DATA;
|
|
@@ -1,3 +1,4 @@
|
|
|
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); }
|
|
1
2
|
import React from "react";
|
|
2
3
|
import { View, StyleSheet } from "react-native";
|
|
3
4
|
const AspectRatio = props => {
|
|
@@ -26,24 +27,6 @@ const AspectRatio = props => {
|
|
|
26
27
|
});
|
|
27
28
|
}
|
|
28
29
|
}
|
|
29
|
-
return /*#__PURE__*/React.createElement(View, {
|
|
30
|
-
...props,
|
|
31
|
-
style: style,
|
|
32
|
-
onLayout: _ref => {
|
|
33
|
-
let {
|
|
34
|
-
nativeEvent: {
|
|
35
|
-
layout: l
|
|
36
|
-
}
|
|
37
|
-
} = _ref;
|
|
38
|
-
return setLayout(l);
|
|
39
|
-
}
|
|
40
|
-
}, props.children);
|
|
41
|
-
};
|
|
42
|
-
export default AspectRatio;idth,
|
|
43
|
-
height: width * (1 / aspectRatio)
|
|
44
|
-
});
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
30
|
return /*#__PURE__*/React.createElement(View, _extends({}, props, {
|
|
48
31
|
style: style,
|
|
49
32
|
onLayout: _ref => {
|
|
@@ -1,3 +1,4 @@
|
|
|
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); }
|
|
1
2
|
import * as React from "react";
|
|
2
3
|
import { StyleSheet, View, Platform, Pressable } from "react-native";
|
|
3
4
|
import Checkbox from "./Checkbox";
|
|
@@ -5,7 +6,7 @@ import Text from "../Text";
|
|
|
5
6
|
import { useCheckboxGroupContext } from "./context";
|
|
6
7
|
import { Direction as GroupDirection } from "./context";
|
|
7
8
|
import { extractStyles } from "../../utilities";
|
|
8
|
-
export
|
|
9
|
+
export let Direction;
|
|
9
10
|
(function (Direction) {
|
|
10
11
|
Direction["Row"] = "row";
|
|
11
12
|
Direction["RowReverse"] = "row-reverse";
|
|
@@ -62,14 +63,13 @@ const CheckboxGroupRow = _ref => {
|
|
|
62
63
|
textStyles,
|
|
63
64
|
viewStyles
|
|
64
65
|
} = extractStyles(style);
|
|
65
|
-
return /*#__PURE__*/React.createElement(Pressable, {
|
|
66
|
+
return /*#__PURE__*/React.createElement(Pressable, _extends({
|
|
66
67
|
onPress: handlePress,
|
|
67
68
|
style: [styles.mainParent, {
|
|
68
69
|
flexDirection: direction
|
|
69
70
|
}, viewStyles],
|
|
70
|
-
disabled: disabled
|
|
71
|
-
|
|
72
|
-
}, /*#__PURE__*/React.createElement(View, {
|
|
71
|
+
disabled: disabled
|
|
72
|
+
}, rest), /*#__PURE__*/React.createElement(View, {
|
|
73
73
|
style: [styles.label, {
|
|
74
74
|
alignItems: direction === Direction.Row ? "flex-start" : "flex-end"
|
|
75
75
|
}, labelContainerStyle]
|
|
@@ -107,23 +107,4 @@ const styles = StyleSheet.create({
|
|
|
107
107
|
flex: 3
|
|
108
108
|
}
|
|
109
109
|
});
|
|
110
|
-
export default CheckboxGroupRow;reate({
|
|
111
|
-
mainParent: {
|
|
112
|
-
alignItems: "center",
|
|
113
|
-
justifyContent: "space-around",
|
|
114
|
-
paddingStart: 20,
|
|
115
|
-
minHeight: 50,
|
|
116
|
-
paddingEnd: 20,
|
|
117
|
-
display: "flex",
|
|
118
|
-
...Platform.select({
|
|
119
|
-
web: {
|
|
120
|
-
cursor: "pointer",
|
|
121
|
-
userSelect: "none"
|
|
122
|
-
}
|
|
123
|
-
})
|
|
124
|
-
},
|
|
125
|
-
label: {
|
|
126
|
-
flex: 3
|
|
127
|
-
}
|
|
128
|
-
});
|
|
129
110
|
export default CheckboxGroupRow;
|
|
@@ -0,0 +1,90 @@
|
|
|
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
|
+
import * as React from "react";
|
|
3
|
+
import { TabView, TabBar, SceneMap } from "react-native-tab-view";
|
|
4
|
+
import TabViewItem from "./TabViewItem";
|
|
5
|
+
import { withTheme } from "../../theming";
|
|
6
|
+
const TabViewComponent = _ref => {
|
|
7
|
+
let {
|
|
8
|
+
Icon,
|
|
9
|
+
onIndexChanged,
|
|
10
|
+
onEndReached,
|
|
11
|
+
tabBarPosition,
|
|
12
|
+
keyboardDismissMode,
|
|
13
|
+
swipeEnabled,
|
|
14
|
+
scrollEnabled,
|
|
15
|
+
activeColor,
|
|
16
|
+
inactiveColor,
|
|
17
|
+
pressColor,
|
|
18
|
+
indicatorColor,
|
|
19
|
+
tabsBackgroundColor,
|
|
20
|
+
style,
|
|
21
|
+
theme,
|
|
22
|
+
children
|
|
23
|
+
} = _ref;
|
|
24
|
+
const [index, setIndex] = React.useState(0);
|
|
25
|
+
const [routes, setRoutes] = React.useState([]);
|
|
26
|
+
const [tabScenes, setTabScenes] = React.useState({});
|
|
27
|
+
|
|
28
|
+
//Populate routes and scenes based on children
|
|
29
|
+
React.useEffect(() => {
|
|
30
|
+
const newRoutes = [];
|
|
31
|
+
const scenes = {};
|
|
32
|
+
React.Children.toArray(children).filter(child => /*#__PURE__*/React.isValidElement(child) && child.type === TabViewItem).forEach((item, idx) => {
|
|
33
|
+
const child = item;
|
|
34
|
+
newRoutes.push({
|
|
35
|
+
key: idx.toString(),
|
|
36
|
+
title: child.props.title,
|
|
37
|
+
icon: child.props.icon,
|
|
38
|
+
accessibilityLabel: child.props.accessibilityLabel
|
|
39
|
+
});
|
|
40
|
+
scenes[idx] = () => child;
|
|
41
|
+
});
|
|
42
|
+
setRoutes(newRoutes);
|
|
43
|
+
setTabScenes(scenes);
|
|
44
|
+
}, [children]);
|
|
45
|
+
const indexChangeHandler = i => {
|
|
46
|
+
setIndex(i);
|
|
47
|
+
onIndexChanged === null || onIndexChanged === void 0 ? void 0 : onIndexChanged(i);
|
|
48
|
+
if (i === routes.length) {
|
|
49
|
+
onEndReached === null || onEndReached === void 0 ? void 0 : onEndReached();
|
|
50
|
+
}
|
|
51
|
+
};
|
|
52
|
+
const renderTabBar = props => {
|
|
53
|
+
return /*#__PURE__*/React.createElement(TabBar, _extends({}, props, {
|
|
54
|
+
activeColor: activeColor || theme.colors.primary,
|
|
55
|
+
inactiveColor: inactiveColor || theme.colors.divider,
|
|
56
|
+
pressColor: pressColor || theme.colors.primary,
|
|
57
|
+
scrollEnabled: scrollEnabled,
|
|
58
|
+
indicatorStyle: {
|
|
59
|
+
backgroundColor: indicatorColor || theme.colors.primary
|
|
60
|
+
},
|
|
61
|
+
renderIcon: _ref2 => {
|
|
62
|
+
let {
|
|
63
|
+
route,
|
|
64
|
+
color
|
|
65
|
+
} = _ref2;
|
|
66
|
+
return route !== null && route !== void 0 && route.icon ? /*#__PURE__*/React.createElement(Icon, {
|
|
67
|
+
name: route.icon,
|
|
68
|
+
color: color,
|
|
69
|
+
size: 36
|
|
70
|
+
}) : null;
|
|
71
|
+
},
|
|
72
|
+
style: [{
|
|
73
|
+
backgroundColor: tabsBackgroundColor || theme.colors.background
|
|
74
|
+
}, style]
|
|
75
|
+
}));
|
|
76
|
+
};
|
|
77
|
+
return /*#__PURE__*/React.createElement(TabView, {
|
|
78
|
+
navigationState: {
|
|
79
|
+
index,
|
|
80
|
+
routes
|
|
81
|
+
},
|
|
82
|
+
renderScene: SceneMap(tabScenes),
|
|
83
|
+
renderTabBar: renderTabBar,
|
|
84
|
+
onIndexChange: indexChangeHandler,
|
|
85
|
+
tabBarPosition: tabBarPosition,
|
|
86
|
+
keyboardDismissMode: keyboardDismissMode,
|
|
87
|
+
swipeEnabled: swipeEnabled
|
|
88
|
+
});
|
|
89
|
+
};
|
|
90
|
+
export default withTheme(TabViewComponent);
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { StyleSheet, View } from "react-native";
|
|
3
|
+
|
|
4
|
+
//Props used by parent (TabView) to create tabs
|
|
5
|
+
|
|
6
|
+
const TabViewItem = _ref => {
|
|
7
|
+
let {
|
|
8
|
+
style,
|
|
9
|
+
children
|
|
10
|
+
} = _ref;
|
|
11
|
+
return /*#__PURE__*/React.createElement(View, {
|
|
12
|
+
style: [styles.parentContainer, style]
|
|
13
|
+
}, children);
|
|
14
|
+
};
|
|
15
|
+
const styles = StyleSheet.create({
|
|
16
|
+
parentContainer: {
|
|
17
|
+
flex: 1
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
export default TabViewItem;
|
package/lib/module/index.js
CHANGED
|
@@ -31,8 +31,8 @@ export { ActionSheet, ActionSheetItem, ActionSheetCancel } from "./components/Ac
|
|
|
31
31
|
export { Swiper, SwiperItem } from "./components/Swiper";
|
|
32
32
|
export { Center, Circle, Square, Row, Stack, Spacer } from "./components/Layout";
|
|
33
33
|
export { RadioButton, RadioButtonGroup, RadioButtonRow, RadioButtonFieldGroup } from "./components/RadioButton/index";
|
|
34
|
-
export { default as Shadow } from "./components/Shadow";
|
|
35
34
|
export { DeckSwiper, DeckSwiperCard } from "./components/DeckSwiper";
|
|
35
|
+
export { TabView, TabViewItem } from "./components/TabView";
|
|
36
36
|
|
|
37
37
|
/* Deprecated: Fix or Delete! */
|
|
38
38
|
export { default as DatePicker } from "./components/DatePicker/DatePicker";
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, createTextEnumProp, createColorProp, BLOCK_STYLES_SECTIONS, StylesPanelSections, Triggers, createActionProp, createStaticBoolProp } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = {
|
|
3
|
+
name: "Tab View",
|
|
4
|
+
tag: "TabView",
|
|
5
|
+
description: "Tab view container",
|
|
6
|
+
category: COMPONENT_TYPES.swiper,
|
|
7
|
+
stylesPanelSections: [...BLOCK_STYLES_SECTIONS, StylesPanelSections.Background],
|
|
8
|
+
triggers: [Triggers.OnIndexChanged, Triggers.OnEndReached],
|
|
9
|
+
props: {
|
|
10
|
+
onIndexChanged: createActionProp({
|
|
11
|
+
label: "On index changed",
|
|
12
|
+
description: "Action to execute when swipe to new index"
|
|
13
|
+
}),
|
|
14
|
+
onEndReached: createActionProp({
|
|
15
|
+
label: "On end reached",
|
|
16
|
+
description: "Action to execute when end of swiping reached"
|
|
17
|
+
}),
|
|
18
|
+
tabBarPosition: createTextEnumProp({
|
|
19
|
+
label: "Tab Bar Position",
|
|
20
|
+
description: "Position of tab bar",
|
|
21
|
+
options: ["top", "bottom"],
|
|
22
|
+
defaultValue: "top"
|
|
23
|
+
}),
|
|
24
|
+
keyboardDismissMode: createTextEnumProp({
|
|
25
|
+
label: "Keyboard Dismiss Mode",
|
|
26
|
+
description: "Keyboard Dismiss Mode",
|
|
27
|
+
options: ["auto", "on-drag", "none"],
|
|
28
|
+
defaultValue: "auto"
|
|
29
|
+
}),
|
|
30
|
+
swipeEnabled: createStaticBoolProp({
|
|
31
|
+
label: "Swipe Enabled",
|
|
32
|
+
description: "Whether swiping is enabled or not",
|
|
33
|
+
defaultValue: true
|
|
34
|
+
}),
|
|
35
|
+
scrollEnabled: createStaticBoolProp({
|
|
36
|
+
label: "Scroll Enabled",
|
|
37
|
+
description: "Whether scrolling of tabs is enabled or not",
|
|
38
|
+
defaultValue: true
|
|
39
|
+
}),
|
|
40
|
+
activeColor: createColorProp({
|
|
41
|
+
label: "Active Color",
|
|
42
|
+
description: "Color of icon and text of active tab",
|
|
43
|
+
defaultValue: "primary"
|
|
44
|
+
}),
|
|
45
|
+
inactiveColor: createColorProp({
|
|
46
|
+
label: "Inactive Color",
|
|
47
|
+
description: "Color of icon and text of inactive tab(s)",
|
|
48
|
+
defaultValue: null
|
|
49
|
+
}),
|
|
50
|
+
pressColor: createColorProp({
|
|
51
|
+
label: "Press Color",
|
|
52
|
+
description: "Color of ripple when pressed (android only)",
|
|
53
|
+
defaultValue: "primary"
|
|
54
|
+
}),
|
|
55
|
+
indicatorColor: createColorProp({
|
|
56
|
+
label: "Indicator Color",
|
|
57
|
+
description: "Color of indicator",
|
|
58
|
+
defaultValue: "primary"
|
|
59
|
+
}),
|
|
60
|
+
tabsBackgroundColor: createColorProp({
|
|
61
|
+
label: "Tabs Background Color",
|
|
62
|
+
description: "Background color of tabs container",
|
|
63
|
+
defaultValue: "background"
|
|
64
|
+
})
|
|
65
|
+
}
|
|
66
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, createTextProp, createIconProp, CONTAINER_COMPONENT_STYLES_SECTIONS, GROUPS } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = {
|
|
3
|
+
name: "Tab View Item",
|
|
4
|
+
tag: "TabViewItem",
|
|
5
|
+
description: "Single Tab View item to be used in TabView. Each item represents a single tab and its content",
|
|
6
|
+
category: COMPONENT_TYPES.swiper,
|
|
7
|
+
stylesPanelSections: CONTAINER_COMPONENT_STYLES_SECTIONS,
|
|
8
|
+
layout: {
|
|
9
|
+
flex: 1
|
|
10
|
+
},
|
|
11
|
+
props: {
|
|
12
|
+
title: createTextProp({
|
|
13
|
+
label: "Title",
|
|
14
|
+
description: "Title of tab item",
|
|
15
|
+
defaultValue: null,
|
|
16
|
+
required: true
|
|
17
|
+
}),
|
|
18
|
+
icon: createIconProp({
|
|
19
|
+
defaultValue: null,
|
|
20
|
+
required: false
|
|
21
|
+
}),
|
|
22
|
+
accessibilityLabel: createTextProp({
|
|
23
|
+
label: "Accessibility Label",
|
|
24
|
+
description: "Accessibility Label",
|
|
25
|
+
defaultValue: null,
|
|
26
|
+
group: GROUPS.accessibility
|
|
27
|
+
})
|
|
28
|
+
}
|
|
29
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { StyleProp, ViewStyle } from "react-native";
|
|
3
|
+
import type { IconSlot } from "../../interfaces/Icon";
|
|
4
|
+
import type { Theme } from "../../styles/DefaultTheme";
|
|
5
|
+
declare type TabBarPosition = "top" | "bottom";
|
|
6
|
+
declare type KeyboardDismissMode = "none" | "auto" | "on-drag";
|
|
7
|
+
declare type TabViewProps = {
|
|
8
|
+
onIndexChanged?: (index: number) => void;
|
|
9
|
+
onEndReached?: () => void;
|
|
10
|
+
tabBarPosition?: TabBarPosition;
|
|
11
|
+
keyboardDismissMode?: KeyboardDismissMode;
|
|
12
|
+
swipeEnabled?: boolean;
|
|
13
|
+
scrollEnabled?: boolean;
|
|
14
|
+
activeColor?: string;
|
|
15
|
+
inactiveColor?: string;
|
|
16
|
+
pressColor?: string;
|
|
17
|
+
indicatorColor?: string;
|
|
18
|
+
tabsBackgroundColor?: string;
|
|
19
|
+
style?: StyleProp<ViewStyle>;
|
|
20
|
+
theme: Theme;
|
|
21
|
+
} & IconSlot;
|
|
22
|
+
declare const _default: React.ComponentType<import("@draftbit/react-theme-provider").$Without<React.PropsWithChildren<TabViewProps>, "theme"> & {
|
|
23
|
+
theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
|
|
24
|
+
}> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<React.ComponentType<React.PropsWithChildren<TabViewProps>> & React.FC<React.PropsWithChildren<TabViewProps>>, {}>;
|
|
25
|
+
export default _default;
|
|
26
|
+
//# sourceMappingURL=TabView.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TabView.d.ts","sourceRoot":"","sources":["../../../../../src/components/TabView/TabView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAWpD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAEtD,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAC;AAKvD,aAAK,cAAc,GAAG,KAAK,GAAG,QAAQ,CAAC;AACvC,aAAK,mBAAmB,GAAG,MAAM,GAAG,MAAM,GAAG,SAAS,CAAC;AAEvD,aAAK,YAAY,GAAG;IAClB,cAAc,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACzC,YAAY,CAAC,EAAE,MAAM,IAAI,CAAC;IAC1B,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC,mBAAmB,CAAC,EAAE,mBAAmB,CAAC;IAC1C,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,KAAK,EAAE,KAAK,CAAC;CACd,GAAG,QAAQ,CAAC;;;;AA4Fb,wBAA2C"}
|