@draftbit/core 46.4.4-808a01.2 → 46.4.4-885019.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (98) hide show
  1. package/lib/commonjs/components/Accordion/AccordionItem.js +25 -5
  2. package/lib/commonjs/components/AnimatedCircularProgress.js +2 -12
  3. package/lib/commonjs/components/AspectRatio.js +2 -19
  4. package/lib/commonjs/components/AvatarEdit.js +5 -17
  5. package/lib/commonjs/components/Button.js +11 -32
  6. package/lib/commonjs/components/CardBlock.js +5 -15
  7. package/lib/commonjs/components/CardContainer.js +5 -15
  8. package/lib/commonjs/components/CardContainerRating.js +5 -15
  9. package/lib/commonjs/components/CardContainerShortImage.js +5 -17
  10. package/lib/commonjs/components/Carousel.js +10 -34
  11. package/lib/commonjs/components/Checkbox/CheckboxRow.js +6 -24
  12. package/lib/commonjs/components/CircleImage.js +2 -16
  13. package/lib/commonjs/components/CircularProgress.js +7 -15
  14. package/lib/commonjs/components/DeprecatedButton.js +22 -4
  15. package/lib/commonjs/components/DeprecatedCardWrapper.js +2 -17
  16. package/lib/commonjs/components/DeprecatedFAB.js +4 -22
  17. package/lib/commonjs/components/Divider.js +2 -16
  18. package/lib/commonjs/components/FAB.js +5 -20
  19. package/lib/commonjs/components/FormRow.js +3 -17
  20. package/lib/commonjs/components/IconButton.js +5 -22
  21. package/lib/commonjs/components/Layout.js +19 -40
  22. package/lib/commonjs/components/NumberInput.js +2 -13
  23. package/lib/commonjs/components/Picker/PickerComponent.android.js +24 -5
  24. package/lib/commonjs/components/Picker/PickerComponent.web.js +5 -24
  25. package/lib/commonjs/components/Portal/PortalConsumer.js +8 -10
  26. package/lib/commonjs/components/Portal/PortalHost.js +15 -27
  27. package/lib/commonjs/components/Portal/PortalManager.js +11 -19
  28. package/lib/commonjs/components/ProgressBar.js +7 -23
  29. package/lib/commonjs/components/RadioButton/RadioButton.js +3 -14
  30. package/lib/commonjs/components/RadioButton/RadioButtonRow.js +6 -24
  31. package/lib/commonjs/components/ScreenContainer.js +5 -23
  32. package/lib/commonjs/components/Slider.js +5 -24
  33. package/lib/commonjs/components/StarRating.js +5 -25
  34. package/lib/commonjs/components/StepIndicator.js +16 -34
  35. package/lib/commonjs/components/Surface.js +3 -14
  36. package/lib/commonjs/components/Table/Table.js +35 -0
  37. package/lib/commonjs/components/Table/TableCell.js +50 -0
  38. package/lib/commonjs/components/Table/TableHeader.js +41 -0
  39. package/lib/commonjs/components/Table/TablePaginator.js +17 -0
  40. package/lib/commonjs/components/Table/TableRow.js +47 -0
  41. package/lib/commonjs/components/Table/TableTitle.js +60 -0
  42. package/lib/commonjs/components/Table/index.js +55 -0
  43. package/lib/commonjs/components/Text.js +11 -37
  44. package/lib/commonjs/components/TextField.js +30 -63
  45. package/lib/commonjs/components/ToggleButton.js +3 -18
  46. package/lib/commonjs/components/Touchable.js +2 -16
  47. package/lib/commonjs/constants.js +1 -1
  48. package/lib/commonjs/index.js +38 -0
  49. package/lib/commonjs/mappings/AudioPlayer.js +2 -32
  50. package/lib/commonjs/mappings/StarRating.js +6 -2
  51. package/lib/commonjs/mappings/Table.js +103 -0
  52. package/lib/commonjs/utilities.js +2 -2
  53. package/lib/module/components/Checkbox/context.js +1 -1
  54. package/lib/module/components/Table/Table.js +23 -0
  55. package/lib/module/components/Table/TableCell.js +37 -0
  56. package/lib/module/components/Table/TableHeader.js +27 -0
  57. package/lib/module/components/Table/TablePaginator.js +6 -0
  58. package/lib/module/components/Table/TableRow.js +33 -0
  59. package/lib/module/components/Table/TableTitle.js +47 -0
  60. package/lib/module/components/Table/index.js +6 -0
  61. package/lib/module/index.js +1 -0
  62. package/lib/module/mappings/AudioPlayer.js +3 -33
  63. package/lib/module/mappings/Table.js +94 -0
  64. package/lib/module/utilities.js +3 -3
  65. package/lib/typescript/src/components/Table/Table.d.ts +8 -0
  66. package/lib/typescript/src/components/Table/TableCell.d.ts +10 -0
  67. package/lib/typescript/src/components/Table/TableHeader.d.ts +12 -0
  68. package/lib/typescript/src/components/Table/TablePaginator.d.ts +3 -0
  69. package/lib/typescript/src/components/Table/TableRow.d.ts +12 -0
  70. package/lib/typescript/src/components/Table/TableTitle.d.ts +12 -0
  71. package/lib/typescript/src/components/Table/index.d.ts +6 -0
  72. package/lib/typescript/src/index.d.ts +1 -0
  73. package/lib/typescript/src/mappings/AudioPlayer.d.ts +1 -62
  74. package/lib/typescript/src/mappings/Table.d.ts +153 -0
  75. package/lib/typescript/src/utilities.d.ts +3 -3
  76. package/package.json +3 -3
  77. package/src/components/Table/Table.js +10 -0
  78. package/src/components/Table/Table.tsx +22 -0
  79. package/src/components/Table/TableCell.js +21 -0
  80. package/src/components/Table/TableCell.tsx +44 -0
  81. package/src/components/Table/TableHeader.js +11 -0
  82. package/src/components/Table/TableHeader.tsx +28 -0
  83. package/src/components/Table/TablePaginator.js +5 -0
  84. package/src/components/Table/TablePaginator.tsx +10 -0
  85. package/src/components/Table/TableRow.js +16 -0
  86. package/src/components/Table/TableRow.tsx +31 -0
  87. package/src/components/Table/TableTitle.js +28 -0
  88. package/src/components/Table/TableTitle.tsx +58 -0
  89. package/src/components/Table/index.js +6 -0
  90. package/src/components/Table/index.tsx +6 -0
  91. package/src/index.js +1 -0
  92. package/src/index.tsx +9 -0
  93. package/src/mappings/AudioPlayer.js +2 -39
  94. package/src/mappings/AudioPlayer.ts +1 -41
  95. package/src/mappings/Table.js +137 -0
  96. package/src/mappings/Table.ts +145 -0
  97. package/src/utilities.js +5 -2
  98. package/src/utilities.ts +13 -2
@@ -12,17 +12,7 @@ const SEED_DATA = {
12
12
  tag: "AudioPlayer",
13
13
  description: "Given a source URL, plays sounds & audio!",
14
14
  category: _types.COMPONENT_TYPES.media,
15
- stylesPanelSections: [_types.StylesPanelSections.Typography, _types.StylesPanelSections.Background, _types.StylesPanelSections.Borders, _types.StylesPanelSections.Size, _types.StylesPanelSections.MarginsAndPaddings, _types.StylesPanelSections.Position],
16
- layout: {
17
- backgroundColor: "#eee",
18
- paddingLeft: 16,
19
- paddingRight: 16,
20
- paddingTop: 8,
21
- paddingBottom: 8,
22
- borderRadius: 24,
23
- flexDirection: "row",
24
- alignItems: "center"
25
- },
15
+ layout: {},
26
16
  props: {
27
17
  source: {
28
18
  group: _types.GROUPS.data,
@@ -33,27 +23,7 @@ const SEED_DATA = {
33
23
  defaultValue: "https://static.draftbit.com/audio/intro-to-draftbit-audio.mp3",
34
24
  formType: _types.FORM_TYPES.sourceUrl,
35
25
  propType: _types.PROP_TYPES.OBJECT
36
- },
37
- sliderColor: (0, _types.createColorProp)({
38
- label: "Thumb Color",
39
- defaultValue: "black"
40
- }),
41
- completedTrackColor: (0, _types.createColorProp)({
42
- label: "Completed Track",
43
- defaultValue: "white"
44
- }),
45
- remainingTrackColor: (0, _types.createColorProp)({
46
- label: "Remaining Track",
47
- defaultValue: "#333333"
48
- }),
49
- trackThumbSize: (0, _types.createNumberProp)({
50
- label: "Thumb Size",
51
- defaultValue: 24
52
- }),
53
- playIconColor: (0, _types.createColorProp)({
54
- label: "Play Icon",
55
- defaultValue: "black"
56
- })
26
+ }
57
27
  }
58
28
  };
59
29
  exports.SEED_DATA = SEED_DATA;
@@ -25,9 +25,7 @@ const SEED_DATA = {
25
25
  }),
26
26
  fieldName: (0, _types.createFieldNameProp)({
27
27
  defaultValue: "ratingValue",
28
- // this is the name of the variable declared on the screen in Draftbit
29
28
  handlerPropName: "onPress",
30
- // the change handler prop in this component
31
29
  valuePropName: "rating" // the value prop in this component
32
30
 
33
31
  }),
@@ -52,4 +50,10 @@ const SEED_DATA = {
52
50
  })
53
51
  }
54
52
  };
53
+ exports.SEED_DATA = SEED_DATA;pes.createColorProp)({
54
+ label: "Inactive Color",
55
+ defaultValue: "divider"
56
+ })
57
+ }
58
+ };
55
59
  exports.SEED_DATA = SEED_DATA;
@@ -0,0 +1,103 @@
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: "Table",
12
+ tag: "Table",
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
+ layout: {
16
+ width: "100%"
17
+ },
18
+ props: {}
19
+ }, {
20
+ name: "Table Row",
21
+ tag: "TableRow",
22
+ category: _types.COMPONENT_TYPES.container,
23
+ stylesPanelSections: [_types.StylesPanelSections.Background, _types.StylesPanelSections.Borders, _types.StylesPanelSections.Size, _types.StylesPanelSections.MarginsAndPaddings, _types.StylesPanelSections.Position, _types.StylesPanelSections.Effects],
24
+ layout: {
25
+ paddingLeft: 16,
26
+ paddingRight: 16,
27
+ borderBottomWidth: 1,
28
+ borderStyle: "solid"
29
+ },
30
+ props: {}
31
+ }, {
32
+ name: "Table Cell",
33
+ tag: "TableCell",
34
+ category: _types.COMPONENT_TYPES.container,
35
+ layout: {
36
+ paddingTop: 16,
37
+ paddingBottom: 16,
38
+ paddingLeft: 8,
39
+ paddingRight: 8
40
+ },
41
+ stylesPanelSections: [_types.StylesPanelSections.Typography, _types.StylesPanelSections.Background, _types.StylesPanelSections.Borders, _types.StylesPanelSections.Size, _types.StylesPanelSections.MarginsAndPaddings, _types.StylesPanelSections.Position, _types.StylesPanelSections.Effects],
42
+ props: {
43
+ numeric: (0, _types.createBoolProp)({
44
+ label: "Is Numeric Cell?",
45
+ description: "Does the cell contain a numeric value?",
46
+ group: _types.GROUPS.data
47
+ }),
48
+ value: (0, _types.createTextProp)({
49
+ label: "Cell Value",
50
+ description: "Table Cell Value",
51
+ group: _types.GROUPS.data
52
+ })
53
+ }
54
+ }, {
55
+ name: "Table Header",
56
+ tag: "TableHeader",
57
+ category: _types.COMPONENT_TYPES.container,
58
+ stylesPanelSections: [_types.StylesPanelSections.Background, _types.StylesPanelSections.Borders, _types.StylesPanelSections.Size, _types.StylesPanelSections.MarginsAndPaddings, _types.StylesPanelSections.Position, _types.StylesPanelSections.Effects],
59
+ layout: {
60
+ paddingLeft: 16,
61
+ paddingRight: 16,
62
+ borderBottomWidth: 1,
63
+ borderStyle: "solid",
64
+ backgroundColor: "#EFEFEF"
65
+ },
66
+ props: {}
67
+ }, {
68
+ name: "Table Title",
69
+ tag: "TableTitle",
70
+ category: _types.COMPONENT_TYPES.container,
71
+ stylesPanelSections: [_types.StylesPanelSections.Typography, _types.StylesPanelSections.Background, _types.StylesPanelSections.Borders, _types.StylesPanelSections.Size, _types.StylesPanelSections.MarginsAndPaddings, _types.StylesPanelSections.Position, _types.StylesPanelSections.Effects],
72
+ layout: {
73
+ fontSize: 14,
74
+ fontWeight: "500",
75
+ paddingTop: 16,
76
+ paddingBottom: 16,
77
+ paddingLeft: 8,
78
+ paddingRight: 8
79
+ },
80
+ props: {
81
+ numeric: (0, _types.createBoolProp)({
82
+ label: "Is Numeric Cell?",
83
+ description: "Does the cell contain a numeric value?",
84
+ group: _types.GROUPS.data
85
+ }),
86
+ value: (0, _types.createTextProp)({
87
+ label: "Cell Value",
88
+ description: "Table Cell Value",
89
+ group: _types.GROUPS.data
90
+ }),
91
+ isAscending: (0, _types.createBoolProp)({
92
+ label: "Is Ascending?",
93
+ description: "Does the cell contain a numeric value?",
94
+ group: _types.GROUPS.data
95
+ }),
96
+ numberOfLines: (0, _types.createNumberProp)({
97
+ label: "Number of Lines",
98
+ description: "Number of Lines",
99
+ group: _types.GROUPS.basic
100
+ })
101
+ }
102
+ }];
103
+ exports.SEED_DATA = SEED_DATA;
@@ -44,8 +44,8 @@ function extractStyles(style) {
44
44
  textDecorationStyle
45
45
  };
46
46
  return {
47
- viewStyles,
48
- textStyles
47
+ viewStyles: (0, _lodash.omitBy)(viewStyles, _lodash.isNil),
48
+ textStyles: (0, _lodash.omitBy)(textStyles, _lodash.isNil)
49
49
  };
50
50
  }
51
51
 
@@ -1,5 +1,5 @@
1
1
  import { createContext, useContext } from "react";
2
- export var Direction;
2
+ export let Direction;
3
3
 
4
4
  (function (Direction) {
5
5
  Direction["Horizontal"] = "horizontal";
@@ -0,0 +1,23 @@
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
+ import React from "react";
4
+ import { View, StyleSheet } from "react-native";
5
+
6
+ const Table = _ref => {
7
+ let {
8
+ children,
9
+ style,
10
+ ...rest
11
+ } = _ref;
12
+ return /*#__PURE__*/React.createElement(View, _extends({}, rest, {
13
+ style: [styles.wrapper, style]
14
+ }), children);
15
+ };
16
+
17
+ const styles = StyleSheet.create({
18
+ wrapper: {
19
+ display: "flex",
20
+ flexDirection: "column"
21
+ }
22
+ });
23
+ export default Table;
@@ -0,0 +1,37 @@
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
+ import React from "react";
4
+ import { View, Text, StyleSheet } from "react-native";
5
+ import { extractStyles } from "../../utilities";
6
+
7
+ const TableCell = _ref => {
8
+ let {
9
+ children,
10
+ style,
11
+ numeric,
12
+ value,
13
+ ...rest
14
+ } = _ref;
15
+ const {
16
+ textStyles,
17
+ viewStyles
18
+ } = extractStyles(style);
19
+ return /*#__PURE__*/React.createElement(View, _extends({}, rest, {
20
+ style: [styles.wrapper, numeric && styles.right, viewStyles]
21
+ }), /*#__PURE__*/React.createElement(Text, {
22
+ numberOfLines: 1,
23
+ style: textStyles
24
+ }, children, value));
25
+ };
26
+
27
+ const styles = StyleSheet.create({
28
+ wrapper: {
29
+ flex: 1,
30
+ display: "flex",
31
+ flexDirection: "row"
32
+ },
33
+ right: {
34
+ justifyContent: "flex-end"
35
+ }
36
+ });
37
+ export default TableCell;
@@ -0,0 +1,27 @@
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
+ import React from "react";
4
+ import { View, StyleSheet } from "react-native";
5
+ import { withTheme } from "../../theming";
6
+
7
+ const TableHeader = _ref => {
8
+ let {
9
+ children,
10
+ style,
11
+ theme,
12
+ ...rest
13
+ } = _ref;
14
+ return /*#__PURE__*/React.createElement(View, _extends({}, rest, {
15
+ style: [styles.wrapper, {
16
+ borderBottomColor: theme.colors.medium
17
+ }, style]
18
+ }), children);
19
+ };
20
+
21
+ const styles = StyleSheet.create({
22
+ wrapper: {
23
+ display: "flex",
24
+ flexDirection: "row"
25
+ }
26
+ });
27
+ export default withTheme(TableHeader);
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { View, Text } from "react-native";
3
+
4
+ const TablePaginator = () => /*#__PURE__*/React.createElement(View, null, /*#__PURE__*/React.createElement(Text, null, "Table Paginator"));
5
+
6
+ export default TablePaginator;
@@ -0,0 +1,33 @@
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
+ import React from "react";
4
+ import { View, StyleSheet } from "react-native";
5
+ import { withTheme } from "../../theming";
6
+
7
+ const TableRow = _ref => {
8
+ let {
9
+ children,
10
+ style,
11
+ theme,
12
+ ...rest
13
+ } = _ref;
14
+ return /*#__PURE__*/React.createElement(View, _extends({}, rest, {
15
+ style: [styles.container, {
16
+ borderBottomColor: theme.colors.light
17
+ }, style]
18
+ }), /*#__PURE__*/React.createElement(View, {
19
+ style: styles.content
20
+ }, children));
21
+ };
22
+
23
+ const styles = StyleSheet.create({
24
+ container: {
25
+ display: "flex",
26
+ flexDirection: "row"
27
+ },
28
+ content: {
29
+ flex: 1,
30
+ flexDirection: "row"
31
+ }
32
+ });
33
+ export default withTheme(TableRow);
@@ -0,0 +1,47 @@
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
+ import React from "react";
4
+ import { View, Text, StyleSheet } from "react-native";
5
+ import { extractStyles } from "../../utilities";
6
+
7
+ const TableTitle = _ref => {
8
+ let {
9
+ children,
10
+ style,
11
+ numeric = false,
12
+ isAscending = false,
13
+ numberOfLines = 1,
14
+ title,
15
+ ...rest
16
+ } = _ref;
17
+ const {
18
+ textStyles,
19
+ viewStyles
20
+ } = extractStyles(style);
21
+ return /*#__PURE__*/React.createElement(View, _extends({}, rest, {
22
+ style: [styles.wrapper, numeric && styles.right, viewStyles]
23
+ }), /*#__PURE__*/React.createElement(Text, {
24
+ style: [isAscending ? styles.sorted : {
25
+ color: "gray"
26
+ }, textStyles],
27
+ numberOfLines: numberOfLines
28
+ }, children, title));
29
+ };
30
+
31
+ const styles = StyleSheet.create({
32
+ wrapper: {
33
+ flex: 1,
34
+ display: "flex",
35
+ flexDirection: "row"
36
+ },
37
+ right: {
38
+ justifyContent: "flex-end"
39
+ },
40
+ sorted: {// marginLeft: 8,
41
+ },
42
+ icon: {
43
+ height: 24,
44
+ justifyContent: "center"
45
+ }
46
+ });
47
+ export default TableTitle;
@@ -0,0 +1,6 @@
1
+ export { default as Table } from "./Table";
2
+ export { default as TableHeader } from "./TableHeader";
3
+ export { default as TablePaginator } from "./TablePaginator";
4
+ export { default as TableRow } from "./TableRow";
5
+ export { default as TableCell } from "./TableCell";
6
+ export { default as TableTitle } from "./TableTitle";
@@ -31,6 +31,7 @@ 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 { Table, TableRow, TablePaginator, TableHeader, TableCell, TableTitle } from "./components/Table";
34
35
  /* Deprecated: Fix or Delete! */
35
36
 
36
37
  export { default as CardBlock } from "./components/CardBlock";
@@ -1,20 +1,10 @@
1
- import { GROUPS, COMPONENT_TYPES, FORM_TYPES, PROP_TYPES, StylesPanelSections, createColorProp, createNumberProp } from "@draftbit/types";
1
+ import { GROUPS, COMPONENT_TYPES, FORM_TYPES, PROP_TYPES } from "@draftbit/types";
2
2
  export const SEED_DATA = {
3
3
  name: "Audio Player",
4
4
  tag: "AudioPlayer",
5
5
  description: "Given a source URL, plays sounds & audio!",
6
6
  category: COMPONENT_TYPES.media,
7
- stylesPanelSections: [StylesPanelSections.Typography, StylesPanelSections.Background, StylesPanelSections.Borders, StylesPanelSections.Size, StylesPanelSections.MarginsAndPaddings, StylesPanelSections.Position],
8
- layout: {
9
- backgroundColor: "#eee",
10
- paddingLeft: 16,
11
- paddingRight: 16,
12
- paddingTop: 8,
13
- paddingBottom: 8,
14
- borderRadius: 24,
15
- flexDirection: "row",
16
- alignItems: "center"
17
- },
7
+ layout: {},
18
8
  props: {
19
9
  source: {
20
10
  group: GROUPS.data,
@@ -25,26 +15,6 @@ export const SEED_DATA = {
25
15
  defaultValue: "https://static.draftbit.com/audio/intro-to-draftbit-audio.mp3",
26
16
  formType: FORM_TYPES.sourceUrl,
27
17
  propType: PROP_TYPES.OBJECT
28
- },
29
- sliderColor: createColorProp({
30
- label: "Thumb Color",
31
- defaultValue: "black"
32
- }),
33
- completedTrackColor: createColorProp({
34
- label: "Completed Track",
35
- defaultValue: "white"
36
- }),
37
- remainingTrackColor: createColorProp({
38
- label: "Remaining Track",
39
- defaultValue: "#333333"
40
- }),
41
- trackThumbSize: createNumberProp({
42
- label: "Thumb Size",
43
- defaultValue: 24
44
- }),
45
- playIconColor: createColorProp({
46
- label: "Play Icon",
47
- defaultValue: "black"
48
- })
18
+ }
49
19
  }
50
20
  };
@@ -0,0 +1,94 @@
1
+ import { COMPONENT_TYPES, GROUPS, createBoolProp, createTextProp, createNumberProp, StylesPanelSections } from "@draftbit/types";
2
+ export const SEED_DATA = [{
3
+ name: "Table",
4
+ tag: "Table",
5
+ category: COMPONENT_TYPES.container,
6
+ stylesPanelSections: [StylesPanelSections.Background, StylesPanelSections.Borders, StylesPanelSections.Size, StylesPanelSections.MarginsAndPaddings, StylesPanelSections.Position, StylesPanelSections.Effects],
7
+ layout: {
8
+ width: "100%"
9
+ },
10
+ props: {}
11
+ }, {
12
+ name: "Table Row",
13
+ tag: "TableRow",
14
+ category: COMPONENT_TYPES.container,
15
+ stylesPanelSections: [StylesPanelSections.Background, StylesPanelSections.Borders, StylesPanelSections.Size, StylesPanelSections.MarginsAndPaddings, StylesPanelSections.Position, StylesPanelSections.Effects],
16
+ layout: {
17
+ paddingLeft: 16,
18
+ paddingRight: 16,
19
+ borderBottomWidth: 1,
20
+ borderStyle: "solid"
21
+ },
22
+ props: {}
23
+ }, {
24
+ name: "Table Cell",
25
+ tag: "TableCell",
26
+ category: COMPONENT_TYPES.container,
27
+ layout: {
28
+ paddingTop: 16,
29
+ paddingBottom: 16,
30
+ paddingLeft: 8,
31
+ paddingRight: 8
32
+ },
33
+ stylesPanelSections: [StylesPanelSections.Typography, StylesPanelSections.Background, StylesPanelSections.Borders, StylesPanelSections.Size, StylesPanelSections.MarginsAndPaddings, StylesPanelSections.Position, StylesPanelSections.Effects],
34
+ props: {
35
+ numeric: createBoolProp({
36
+ label: "Is Numeric Cell?",
37
+ description: "Does the cell contain a numeric value?",
38
+ group: GROUPS.data
39
+ }),
40
+ value: createTextProp({
41
+ label: "Cell Value",
42
+ description: "Table Cell Value",
43
+ group: GROUPS.data
44
+ })
45
+ }
46
+ }, {
47
+ name: "Table Header",
48
+ tag: "TableHeader",
49
+ category: COMPONENT_TYPES.container,
50
+ stylesPanelSections: [StylesPanelSections.Background, StylesPanelSections.Borders, StylesPanelSections.Size, StylesPanelSections.MarginsAndPaddings, StylesPanelSections.Position, StylesPanelSections.Effects],
51
+ layout: {
52
+ paddingLeft: 16,
53
+ paddingRight: 16,
54
+ borderBottomWidth: 1,
55
+ borderStyle: "solid",
56
+ backgroundColor: "#EFEFEF"
57
+ },
58
+ props: {}
59
+ }, {
60
+ name: "Table Title",
61
+ tag: "TableTitle",
62
+ category: COMPONENT_TYPES.container,
63
+ stylesPanelSections: [StylesPanelSections.Typography, StylesPanelSections.Background, StylesPanelSections.Borders, StylesPanelSections.Size, StylesPanelSections.MarginsAndPaddings, StylesPanelSections.Position, StylesPanelSections.Effects],
64
+ layout: {
65
+ fontSize: 14,
66
+ fontWeight: "500",
67
+ paddingTop: 16,
68
+ paddingBottom: 16,
69
+ paddingLeft: 8,
70
+ paddingRight: 8
71
+ },
72
+ props: {
73
+ numeric: createBoolProp({
74
+ label: "Is Numeric Cell?",
75
+ description: "Does the cell contain a numeric value?",
76
+ group: GROUPS.data
77
+ }),
78
+ value: createTextProp({
79
+ label: "Cell Value",
80
+ description: "Table Cell Value",
81
+ group: GROUPS.data
82
+ }),
83
+ isAscending: createBoolProp({
84
+ label: "Is Ascending?",
85
+ description: "Does the cell contain a numeric value?",
86
+ group: GROUPS.data
87
+ }),
88
+ numberOfLines: createNumberProp({
89
+ label: "Number of Lines",
90
+ description: "Number of Lines",
91
+ group: GROUPS.basic
92
+ })
93
+ }
94
+ }];
@@ -1,5 +1,5 @@
1
1
  import { StyleSheet } from "react-native";
2
- import { isString, isNumber, pick, pickBy, identity } from "lodash";
2
+ import { isString, isNumber, pick, pickBy, identity, omitBy, isNil } from "lodash";
3
3
  export function extractStyles(style) {
4
4
  const {
5
5
  color,
@@ -29,8 +29,8 @@ export function extractStyles(style) {
29
29
  textDecorationStyle
30
30
  };
31
31
  return {
32
- viewStyles,
33
- textStyles
32
+ viewStyles: omitBy(viewStyles, isNil),
33
+ textStyles: omitBy(textStyles, isNil)
34
34
  };
35
35
  }
36
36
  export const borderStyleNames = ["borderRadius", "borderBottomColor", "borderBottomEndRadius", "borderBottomLeftRadius", "borderBottomRightRadius", "borderBottomStartRadius", "borderBottomWidth", "borderColor", "borderEndColor", "borderLeftColor", "borderLeftWidth", "borderRadius", "borderRightColor", "borderRightWidth", "borderStartColor", "borderStyle", "borderTopColor", "borderTopEndRadius", "borderTopLeftRadius", "borderTopRightRadius", "borderTopStartRadius", "borderTopWidth", "borderWidth"];
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ import { StyleProp, ViewStyle } from "react-native";
3
+ export interface TableProps {
4
+ children: React.ReactNode;
5
+ style?: StyleProp<ViewStyle>;
6
+ }
7
+ declare const Table: ({ children, style, ...rest }: TableProps) => JSX.Element;
8
+ export default Table;
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ import { StyleProp, ViewStyle } from "react-native";
3
+ export interface TableCellProps {
4
+ children: React.ReactNode;
5
+ numeric?: boolean;
6
+ style?: StyleProp<ViewStyle>;
7
+ value: string;
8
+ }
9
+ declare const TableCell: ({ children, style, numeric, value, ...rest }: TableCellProps) => JSX.Element;
10
+ export default TableCell;
@@ -0,0 +1,12 @@
1
+ import React from "react";
2
+ import { StyleProp, ViewStyle } from "react-native";
3
+ import { Theme } from "../../styles/DefaultTheme";
4
+ export interface TableHeaderProps {
5
+ children: React.ReactNode;
6
+ style?: StyleProp<ViewStyle>;
7
+ theme: Theme;
8
+ }
9
+ declare const _default: React.ComponentType<import("@draftbit/react-theme-provider").$Without<TableHeaderProps, "theme"> & {
10
+ theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
11
+ }> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<React.ComponentType<TableHeaderProps> & (({ children, style, theme, ...rest }: TableHeaderProps) => JSX.Element), {}>;
12
+ export default _default;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const TablePaginator: () => JSX.Element;
3
+ export default TablePaginator;
@@ -0,0 +1,12 @@
1
+ import React from "react";
2
+ import { StyleProp, ViewStyle } from "react-native";
3
+ import { Theme } from "../../styles/DefaultTheme";
4
+ export interface TableRowProps {
5
+ children: React.ReactNode;
6
+ style?: StyleProp<ViewStyle>;
7
+ theme: Theme;
8
+ }
9
+ declare const _default: React.ComponentType<import("@draftbit/react-theme-provider").$Without<TableRowProps, "theme"> & {
10
+ theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
11
+ }> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<React.ComponentType<TableRowProps> & (({ children, style, theme, ...rest }: TableRowProps) => JSX.Element), {}>;
12
+ export default _default;
@@ -0,0 +1,12 @@
1
+ import React from "react";
2
+ import { StyleProp, ViewStyle } from "react-native";
3
+ export interface TableCellProps {
4
+ children: React.ReactNode;
5
+ numeric?: boolean;
6
+ isAscending: boolean;
7
+ numberOfLines?: number;
8
+ title?: string;
9
+ style?: StyleProp<ViewStyle>;
10
+ }
11
+ declare const TableTitle: ({ children, style, numeric, isAscending, numberOfLines, title, ...rest }: TableCellProps) => JSX.Element;
12
+ export default TableTitle;
@@ -0,0 +1,6 @@
1
+ export { default as Table } from "./Table";
2
+ export { default as TableHeader } from "./TableHeader";
3
+ export { default as TablePaginator } from "./TablePaginator";
4
+ export { default as TableRow } from "./TableRow";
5
+ export { default as TableCell } from "./TableCell";
6
+ export { default as TableTitle } from "./TableTitle";
@@ -31,6 +31,7 @@ export { ActionSheet, ActionSheetItem, ActionSheetCancel, } from "./components/A
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 { Table, TableRow, TablePaginator, TableHeader, TableCell, TableTitle, } from "./components/Table";
34
35
  export { default as CardBlock } from "./components/CardBlock";
35
36
  export { default as CardContainer } from "./components/CardContainer";
36
37
  export { default as CardContainerRating } from "./components/CardContainerRating";