@draftbit/core 46.4.4-8a6164.2 → 46.4.4-8e5cf2.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 (76) hide show
  1. package/lib/commonjs/components/Container.js +17 -5
  2. package/lib/commonjs/components/DatePicker/DatePicker.js +1 -6
  3. package/lib/commonjs/components/Table/Table.js +35 -0
  4. package/lib/commonjs/components/Table/TableCell.js +50 -0
  5. package/lib/commonjs/components/Table/TableHeader.js +41 -0
  6. package/lib/commonjs/components/Table/TablePaginator.js +17 -0
  7. package/lib/commonjs/components/Table/TableRow.js +47 -0
  8. package/lib/commonjs/components/Table/TableTitle.js +60 -0
  9. package/lib/commonjs/components/Table/index.js +55 -0
  10. package/lib/commonjs/components/Text.js +6 -2
  11. package/lib/commonjs/components/TextField.js +5 -1
  12. package/lib/commonjs/index.js +38 -0
  13. package/lib/commonjs/mappings/Table.js +102 -0
  14. package/lib/commonjs/mappings/TextField.js +1 -1
  15. package/lib/commonjs/mappings/TextInput.js +1 -1
  16. package/lib/commonjs/utilities.js +2 -2
  17. package/lib/module/components/DatePicker/DatePicker.js +1 -5
  18. package/lib/module/components/Table/Table.js +23 -0
  19. package/lib/module/components/Table/TableCell.js +37 -0
  20. package/lib/module/components/Table/TableHeader.js +27 -0
  21. package/lib/module/components/Table/TablePaginator.js +6 -0
  22. package/lib/module/components/Table/TableRow.js +33 -0
  23. package/lib/module/components/Table/TableTitle.js +47 -0
  24. package/lib/module/components/Table/index.js +6 -0
  25. package/lib/module/components/Text.js +6 -2
  26. package/lib/module/components/TextField.js +5 -1
  27. package/lib/module/index.js +1 -0
  28. package/lib/module/mappings/Table.js +93 -0
  29. package/lib/module/mappings/TextField.js +1 -1
  30. package/lib/module/mappings/TextInput.js +1 -1
  31. package/lib/module/utilities.js +3 -3
  32. package/lib/typescript/src/components/Table/Table.d.ts +8 -0
  33. package/lib/typescript/src/components/Table/TableCell.d.ts +10 -0
  34. package/lib/typescript/src/components/Table/TableHeader.d.ts +12 -0
  35. package/lib/typescript/src/components/Table/TablePaginator.d.ts +3 -0
  36. package/lib/typescript/src/components/Table/TableRow.d.ts +12 -0
  37. package/lib/typescript/src/components/Table/TableTitle.d.ts +12 -0
  38. package/lib/typescript/src/components/Table/index.d.ts +6 -0
  39. package/lib/typescript/src/components/Text.d.ts +2 -1
  40. package/lib/typescript/src/components/TextField.d.ts +2 -1
  41. package/lib/typescript/src/index.d.ts +1 -0
  42. package/lib/typescript/src/mappings/Table.d.ts +148 -0
  43. package/lib/typescript/src/mappings/TextField.d.ts +2 -2
  44. package/lib/typescript/src/mappings/TextInput.d.ts +1 -1
  45. package/lib/typescript/src/utilities.d.ts +3 -3
  46. package/package.json +3 -3
  47. package/src/components/DatePicker/DatePicker.js +0 -3
  48. package/src/components/DatePicker/DatePicker.tsx +0 -4
  49. package/src/components/Table/Table.js +10 -0
  50. package/src/components/Table/Table.tsx +22 -0
  51. package/src/components/Table/TableCell.js +21 -0
  52. package/src/components/Table/TableCell.tsx +44 -0
  53. package/src/components/Table/TableHeader.js +11 -0
  54. package/src/components/Table/TableHeader.tsx +28 -0
  55. package/src/components/Table/TablePaginator.js +5 -0
  56. package/src/components/Table/TablePaginator.tsx +10 -0
  57. package/src/components/Table/TableRow.js +16 -0
  58. package/src/components/Table/TableRow.tsx +31 -0
  59. package/src/components/Table/TableTitle.js +28 -0
  60. package/src/components/Table/TableTitle.tsx +58 -0
  61. package/src/components/Table/index.js +6 -0
  62. package/src/components/Table/index.tsx +6 -0
  63. package/src/components/Text.js +8 -2
  64. package/src/components/Text.tsx +6 -1
  65. package/src/components/TextField.js +6 -1
  66. package/src/components/TextField.tsx +7 -1
  67. package/src/index.js +1 -0
  68. package/src/index.tsx +9 -0
  69. package/src/mappings/Table.js +136 -0
  70. package/src/mappings/Table.ts +144 -0
  71. package/src/mappings/TextField.js +1 -1
  72. package/src/mappings/TextField.ts +1 -1
  73. package/src/mappings/TextInput.js +1 -1
  74. package/src/mappings/TextInput.ts +1 -1
  75. package/src/utilities.js +5 -2
  76. package/src/utilities.ts +13 -2
@@ -19,8 +19,6 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
19
19
 
20
20
  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; }
21
21
 
22
- 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); }
23
-
24
22
  const Container = _ref => {
25
23
  let {
26
24
  useThemeGutterPadding,
@@ -82,9 +80,10 @@ const Container = _ref => {
82
80
  };
83
81
  const Wrap = elevation ? _Elevation.default : _reactNative.View;
84
82
  if (elevation) containerStyle.elevation = elevation;
85
- return /*#__PURE__*/React.createElement(Wrap, _extends({
86
- style: [containerStyle, style]
87
- }, rest), backgroundImage ? /*#__PURE__*/React.createElement(_reactNative.ImageBackground, {
83
+ return /*#__PURE__*/React.createElement(Wrap, {
84
+ style: [containerStyle, style],
85
+ ...rest
86
+ }, backgroundImage ? /*#__PURE__*/React.createElement(_reactNative.ImageBackground, {
88
87
  source: typeof backgroundImage === "string" ? {
89
88
  uri: backgroundImage
90
89
  } : backgroundImage,
@@ -101,4 +100,17 @@ const Container = _ref => {
101
100
 
102
101
  var _default = (0, _theming.withTheme)(Container);
103
102
 
103
+ exports.default = _default;izeMode: backgroundImageResizeMode,
104
+ style: {
105
+ flex: 1
106
+ }
107
+ }, /*#__PURE__*/React.createElement(_reactNative.View, {
108
+ style: innerStyle
109
+ }, children)) : /*#__PURE__*/React.createElement(_reactNative.View, {
110
+ style: innerStyle
111
+ }, children));
112
+ };
113
+
114
+ var _default = (0, _theming.withTheme)(Container);
115
+
104
116
  exports.default = _default;
@@ -21,8 +21,6 @@ var _Touchable = _interopRequireDefault(require("../Touchable"));
21
21
 
22
22
  var _DatePickerComponent = _interopRequireDefault(require("./DatePickerComponent"));
23
23
 
24
- var _utilities = require("../../utilities");
25
-
26
24
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
27
25
 
28
26
  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); }
@@ -273,12 +271,9 @@ const DatePicker = _ref => {
273
271
  })
274
272
  }]
275
273
  };
276
- const {
277
- textStyles
278
- } = (0, _utilities.extractStyles)(style);
279
274
  const inputStyles = [styles.input, inputStyle, type === "solid" ? {
280
275
  marginHorizontal: 12
281
- } : {}, textStyles]; // const render = (props) => <NativeTextInput {...props} />;
276
+ } : {}]; // const render = (props) => <NativeTextInput {...props} />;
282
277
 
283
278
  return /*#__PURE__*/React.createElement(_reactNative.View, {
284
279
  style: [styles.container, style]
@@ -0,0 +1,35 @@
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
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
13
+
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
+
16
+ const Table = _ref => {
17
+ let {
18
+ children,
19
+ style,
20
+ ...rest
21
+ } = _ref;
22
+ return /*#__PURE__*/_react.default.createElement(_reactNative.View, _extends({}, rest, {
23
+ style: [styles.wrapper, style]
24
+ }), children);
25
+ };
26
+
27
+ const styles = _reactNative.StyleSheet.create({
28
+ wrapper: {
29
+ display: "flex",
30
+ flexDirection: "column"
31
+ }
32
+ });
33
+
34
+ var _default = Table;
35
+ exports.default = _default;
@@ -0,0 +1,50 @@
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 _utilities = require("../../utilities");
13
+
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
+
16
+ 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); }
17
+
18
+ const TableCell = _ref => {
19
+ let {
20
+ children,
21
+ style,
22
+ numeric,
23
+ value,
24
+ ...rest
25
+ } = _ref;
26
+ const {
27
+ textStyles,
28
+ viewStyles
29
+ } = (0, _utilities.extractStyles)(style);
30
+ return /*#__PURE__*/_react.default.createElement(_reactNative.View, _extends({}, rest, {
31
+ style: [styles.wrapper, numeric && styles.right, viewStyles]
32
+ }), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
33
+ numberOfLines: 1,
34
+ style: textStyles
35
+ }, children, value));
36
+ };
37
+
38
+ const styles = _reactNative.StyleSheet.create({
39
+ wrapper: {
40
+ flex: 1,
41
+ display: "flex",
42
+ flexDirection: "row"
43
+ },
44
+ right: {
45
+ justifyContent: "flex-end"
46
+ }
47
+ });
48
+
49
+ var _default = TableCell;
50
+ exports.default = _default;
@@ -0,0 +1,41 @@
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 _theming = require("../../theming");
13
+
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
+
16
+ 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); }
17
+
18
+ const TableHeader = _ref => {
19
+ let {
20
+ children,
21
+ style,
22
+ theme,
23
+ ...rest
24
+ } = _ref;
25
+ return /*#__PURE__*/_react.default.createElement(_reactNative.View, _extends({}, rest, {
26
+ style: [styles.wrapper, {
27
+ borderBottomColor: theme.colors.medium
28
+ }, style]
29
+ }), children);
30
+ };
31
+
32
+ const styles = _reactNative.StyleSheet.create({
33
+ wrapper: {
34
+ display: "flex",
35
+ flexDirection: "row"
36
+ }
37
+ });
38
+
39
+ var _default = (0, _theming.withTheme)(TableHeader);
40
+
41
+ exports.default = _default;
@@ -0,0 +1,17 @@
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
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
13
+
14
+ const TablePaginator = () => /*#__PURE__*/_react.default.createElement(_reactNative.View, null, /*#__PURE__*/_react.default.createElement(_reactNative.Text, null, "Table Paginator"));
15
+
16
+ var _default = TablePaginator;
17
+ exports.default = _default;
@@ -0,0 +1,47 @@
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 _theming = require("../../theming");
13
+
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
+
16
+ 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); }
17
+
18
+ const TableRow = _ref => {
19
+ let {
20
+ children,
21
+ style,
22
+ theme,
23
+ ...rest
24
+ } = _ref;
25
+ return /*#__PURE__*/_react.default.createElement(_reactNative.View, _extends({}, rest, {
26
+ style: [styles.container, {
27
+ borderBottomColor: theme.colors.light
28
+ }, style]
29
+ }), /*#__PURE__*/_react.default.createElement(_reactNative.View, {
30
+ style: styles.content
31
+ }, children));
32
+ };
33
+
34
+ const styles = _reactNative.StyleSheet.create({
35
+ container: {
36
+ display: "flex",
37
+ flexDirection: "row"
38
+ },
39
+ content: {
40
+ flex: 1,
41
+ flexDirection: "row"
42
+ }
43
+ });
44
+
45
+ var _default = (0, _theming.withTheme)(TableRow);
46
+
47
+ exports.default = _default;
@@ -0,0 +1,60 @@
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 _utilities = require("../../utilities");
13
+
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
+
16
+ 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); }
17
+
18
+ const TableTitle = _ref => {
19
+ let {
20
+ children,
21
+ style,
22
+ numeric = false,
23
+ isAscending = false,
24
+ numberOfLines = 1,
25
+ title,
26
+ ...rest
27
+ } = _ref;
28
+ const {
29
+ textStyles,
30
+ viewStyles
31
+ } = (0, _utilities.extractStyles)(style);
32
+ return /*#__PURE__*/_react.default.createElement(_reactNative.View, _extends({}, rest, {
33
+ style: [styles.wrapper, numeric && styles.right, viewStyles]
34
+ }), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
35
+ style: [isAscending ? styles.sorted : {
36
+ color: "gray"
37
+ }, textStyles],
38
+ numberOfLines: numberOfLines
39
+ }, children, title));
40
+ };
41
+
42
+ const styles = _reactNative.StyleSheet.create({
43
+ wrapper: {
44
+ flex: 1,
45
+ display: "flex",
46
+ flexDirection: "row"
47
+ },
48
+ right: {
49
+ justifyContent: "flex-end"
50
+ },
51
+ sorted: {// marginLeft: 8,
52
+ },
53
+ icon: {
54
+ height: 24,
55
+ justifyContent: "center"
56
+ }
57
+ });
58
+
59
+ var _default = TableTitle;
60
+ exports.default = _default;
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "Table", {
7
+ enumerable: true,
8
+ get: function () {
9
+ return _Table.default;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "TableCell", {
13
+ enumerable: true,
14
+ get: function () {
15
+ return _TableCell.default;
16
+ }
17
+ });
18
+ Object.defineProperty(exports, "TableHeader", {
19
+ enumerable: true,
20
+ get: function () {
21
+ return _TableHeader.default;
22
+ }
23
+ });
24
+ Object.defineProperty(exports, "TablePaginator", {
25
+ enumerable: true,
26
+ get: function () {
27
+ return _TablePaginator.default;
28
+ }
29
+ });
30
+ Object.defineProperty(exports, "TableRow", {
31
+ enumerable: true,
32
+ get: function () {
33
+ return _TableRow.default;
34
+ }
35
+ });
36
+ Object.defineProperty(exports, "TableTitle", {
37
+ enumerable: true,
38
+ get: function () {
39
+ return _TableTitle.default;
40
+ }
41
+ });
42
+
43
+ var _Table = _interopRequireDefault(require("./Table"));
44
+
45
+ var _TableHeader = _interopRequireDefault(require("./TableHeader"));
46
+
47
+ var _TablePaginator = _interopRequireDefault(require("./TablePaginator"));
48
+
49
+ var _TableRow = _interopRequireDefault(require("./TableRow"));
50
+
51
+ var _TableCell = _interopRequireDefault(require("./TableCell"));
52
+
53
+ var _TableTitle = _interopRequireDefault(require("./TableTitle"));
54
+
55
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
@@ -24,10 +24,14 @@ class Text extends React.Component {
24
24
  super(...arguments);
25
25
 
26
26
  _defineProperty(this, "_root", void 0);
27
+
28
+ _defineProperty(this, "state", {
29
+ nativeProps: {}
30
+ });
27
31
  }
28
32
 
29
33
  setNativeProps(args) {
30
- return this._root && this._root.setNativeProps(args);
34
+ this.state.nativeProps = args || {};
31
35
  }
32
36
 
33
37
  render() {
@@ -36,7 +40,7 @@ class Text extends React.Component {
36
40
  ...rest
37
41
  } = this.props;
38
42
  const writingDirection = _reactNative.I18nManager.isRTL ? "rtl" : "ltr";
39
- return /*#__PURE__*/React.createElement(_reactNative.Text, _extends({}, rest, {
43
+ return /*#__PURE__*/React.createElement(_reactNative.Text, _extends({}, rest, this.state.nativeProps, {
40
44
  ref: c => {
41
45
  this._root = c;
42
46
  },
@@ -32,6 +32,7 @@ class TextField extends React.Component {
32
32
  super(...arguments);
33
33
 
34
34
  _defineProperty(this, "state", {
35
+ nativeProps: {},
35
36
  labeled: new _reactNative.Animated.Value(this.props.value || this.props.error ? 0 : 1),
36
37
  focused: false,
37
38
  placeholder: this.props.error ? this.props.placeholder : "",
@@ -162,7 +163,9 @@ class TextField extends React.Component {
162
163
  * @internal
163
164
  */
164
165
  setNativeProps(args) {
165
- return this._root && this._root.setNativeProps(args);
166
+ this.setState(state => ({ ...state,
167
+ nativeState: args || {}
168
+ }));
166
169
  }
167
170
 
168
171
  isFocused() {
@@ -444,6 +447,7 @@ class TextField extends React.Component {
444
447
  underlineColorAndroid: "transparent",
445
448
  style: inputStyles,
446
449
  ...rest,
450
+ ...this.state.nativeProps,
447
451
  value: this.state.value
448
452
  })), rightIconName ? /*#__PURE__*/React.createElement(Icon, {
449
453
  name: rightIconName,
@@ -369,6 +369,42 @@ Object.defineProperty(exports, "SwitchRow", {
369
369
  return _Switch.SwitchRow;
370
370
  }
371
371
  });
372
+ Object.defineProperty(exports, "Table", {
373
+ enumerable: true,
374
+ get: function () {
375
+ return _Table.Table;
376
+ }
377
+ });
378
+ Object.defineProperty(exports, "TableCell", {
379
+ enumerable: true,
380
+ get: function () {
381
+ return _Table.TableCell;
382
+ }
383
+ });
384
+ Object.defineProperty(exports, "TableHeader", {
385
+ enumerable: true,
386
+ get: function () {
387
+ return _Table.TableHeader;
388
+ }
389
+ });
390
+ Object.defineProperty(exports, "TablePaginator", {
391
+ enumerable: true,
392
+ get: function () {
393
+ return _Table.TablePaginator;
394
+ }
395
+ });
396
+ Object.defineProperty(exports, "TableRow", {
397
+ enumerable: true,
398
+ get: function () {
399
+ return _Table.TableRow;
400
+ }
401
+ });
402
+ Object.defineProperty(exports, "TableTitle", {
403
+ enumerable: true,
404
+ get: function () {
405
+ return _Table.TableTitle;
406
+ }
407
+ });
372
408
  Object.defineProperty(exports, "TextField", {
373
409
  enumerable: true,
374
410
  get: function () {
@@ -476,6 +512,8 @@ var _Layout = require("./components/Layout");
476
512
 
477
513
  var _index = require("./components/RadioButton/index");
478
514
 
515
+ var _Table = require("./components/Table");
516
+
479
517
  var _CardBlock = _interopRequireDefault(require("./components/CardBlock"));
480
518
 
481
519
  var _CardContainer = _interopRequireDefault(require("./components/CardContainer"));
@@ -0,0 +1,102 @@
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
+ paddingTop: 16,
75
+ paddingBottom: 16,
76
+ paddingLeft: 8,
77
+ paddingRight: 8
78
+ },
79
+ props: {
80
+ numeric: (0, _types.createBoolProp)({
81
+ label: "Is Numeric Cell?",
82
+ description: "Does the cell contain a numeric value?",
83
+ group: _types.GROUPS.data
84
+ }),
85
+ value: (0, _types.createTextProp)({
86
+ label: "Cell Value",
87
+ description: "Table Cell Value",
88
+ group: _types.GROUPS.data
89
+ }),
90
+ isAscending: (0, _types.createBoolProp)({
91
+ label: "Is Ascending?",
92
+ description: "Does the cell contain a numeric value?",
93
+ group: _types.GROUPS.data
94
+ }),
95
+ numberOfLines: (0, _types.createNumberProp)({
96
+ label: "Number of Lines",
97
+ description: "Number of Lines",
98
+ group: _types.GROUPS.basic
99
+ })
100
+ }
101
+ }];
102
+ exports.SEED_DATA = SEED_DATA;
@@ -24,7 +24,7 @@ const SEED_DATA_PROPS = {
24
24
  description: "Can automatically capitalize sentences, words, and characters (Default: none).",
25
25
  editable: true,
26
26
  required: false,
27
- defaultValue: null,
27
+ defaultValue: "none",
28
28
  options: ["none", "sentences", "words", "characters"],
29
29
  formType: _types.FORM_TYPES.flatArray,
30
30
  propType: _types.PROP_TYPES.STRING
@@ -103,7 +103,7 @@ const SEED_DATA = [{
103
103
  description: "Can automatically capitalize sentences, words, and characters (Default: none).",
104
104
  editable: true,
105
105
  required: false,
106
- defaultValue: null,
106
+ defaultValue: "none",
107
107
  options: ["none", "sentences", "words", "characters"],
108
108
  formType: _types.FORM_TYPES.flatArray,
109
109
  propType: _types.PROP_TYPES.STRING
@@ -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
 
@@ -8,7 +8,6 @@ import { withTheme } from "../../theming";
8
8
  import Portal from "../Portal/Portal";
9
9
  import Touchable from "../Touchable";
10
10
  import DateTimePicker from "./DatePickerComponent";
11
- import { extractStyles } from "../../utilities";
12
11
  const AnimatedText = Animated.createAnimatedComponent(Text);
13
12
  const FOCUS_ANIMATION_DURATION = 150;
14
13
  const BLUR_ANIMATION_DURATION = 180;
@@ -250,12 +249,9 @@ const DatePicker = _ref => {
250
249
  })
251
250
  }]
252
251
  };
253
- const {
254
- textStyles
255
- } = extractStyles(style);
256
252
  const inputStyles = [styles.input, inputStyle, type === "solid" ? {
257
253
  marginHorizontal: 12
258
- } : {}, textStyles]; // const render = (props) => <NativeTextInput {...props} />;
254
+ } : {}]; // const render = (props) => <NativeTextInput {...props} />;
259
255
 
260
256
  return /*#__PURE__*/React.createElement(View, {
261
257
  style: [styles.container, style]
@@ -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;