@draftbit/core 46.9.1-328e35.2 → 46.9.1-44c1ae.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 (71) hide show
  1. package/lib/commonjs/components/CircleImage.js +1 -15
  2. package/lib/commonjs/components/Container.js +15 -4
  3. package/lib/commonjs/components/Elevation.js +2 -14
  4. package/lib/commonjs/components/Table/Table.js +91 -0
  5. package/lib/commonjs/components/Table/TableCell.js +49 -0
  6. package/lib/commonjs/components/Table/TableCommon.js +30 -0
  7. package/lib/commonjs/components/Table/TableRow.js +61 -0
  8. package/lib/commonjs/components/Table/index.js +27 -0
  9. package/lib/commonjs/components/TextField.js +28 -76
  10. package/lib/commonjs/index.js +19 -7
  11. package/lib/commonjs/mappings/Table.js +143 -0
  12. package/lib/module/components/Table/Table.js +83 -0
  13. package/lib/module/components/Table/TableCell.js +41 -0
  14. package/lib/module/components/Table/TableCommon.js +21 -0
  15. package/lib/module/components/Table/TableRow.js +53 -0
  16. package/lib/module/components/Table/index.js +3 -0
  17. package/lib/module/index.js +1 -1
  18. package/lib/module/mappings/Table.js +136 -0
  19. package/lib/typescript/src/components/Table/Table.d.ts +19 -0
  20. package/lib/typescript/src/components/Table/Table.d.ts.map +1 -0
  21. package/lib/typescript/src/components/Table/TableCell.d.ts +9 -0
  22. package/lib/typescript/src/components/Table/TableCell.d.ts.map +1 -0
  23. package/lib/typescript/src/components/Table/TableCommon.d.ts +20 -0
  24. package/lib/typescript/src/components/Table/TableCommon.d.ts.map +1 -0
  25. package/lib/typescript/src/components/Table/TableRow.d.ts +14 -0
  26. package/lib/typescript/src/components/Table/TableRow.d.ts.map +1 -0
  27. package/lib/typescript/src/components/Table/index.d.ts +4 -0
  28. package/lib/typescript/src/components/Table/index.d.ts.map +1 -0
  29. package/lib/typescript/src/index.d.ts +1 -1
  30. package/lib/typescript/src/index.d.ts.map +1 -1
  31. package/lib/typescript/src/mappings/Table.d.ts +314 -0
  32. package/lib/typescript/src/mappings/Table.d.ts.map +1 -0
  33. package/package.json +3 -5
  34. package/src/components/Table/Table.js +64 -0
  35. package/src/components/Table/Table.tsx +136 -0
  36. package/src/components/Table/TableCell.js +31 -0
  37. package/src/components/Table/TableCell.tsx +63 -0
  38. package/src/components/Table/TableCommon.js +12 -0
  39. package/src/components/Table/TableCommon.ts +40 -0
  40. package/src/components/Table/TableRow.js +37 -0
  41. package/src/components/Table/TableRow.tsx +77 -0
  42. package/src/components/Table/index.js +3 -0
  43. package/src/components/Table/index.tsx +3 -0
  44. package/src/index.js +1 -1
  45. package/src/index.tsx +1 -1
  46. package/src/mappings/Table.js +137 -0
  47. package/src/mappings/Table.ts +161 -0
  48. package/lib/commonjs/components/BottomSheet/BottomSheet.js +0 -88
  49. package/lib/commonjs/components/BottomSheet/BottomSheetComponent.js +0 -464
  50. package/lib/commonjs/components/BottomSheet/index.js +0 -13
  51. package/lib/commonjs/mappings/BottomSheet.js +0 -70
  52. package/lib/module/components/BottomSheet/BottomSheet.js +0 -80
  53. package/lib/module/components/BottomSheet/BottomSheetComponent.js +0 -470
  54. package/lib/module/components/BottomSheet/index.js +0 -1
  55. package/lib/module/mappings/BottomSheet.js +0 -63
  56. package/lib/typescript/src/components/BottomSheet/BottomSheet.d.ts +0 -20
  57. package/lib/typescript/src/components/BottomSheet/BottomSheet.d.ts.map +0 -1
  58. package/lib/typescript/src/components/BottomSheet/BottomSheetComponent.d.ts +0 -170
  59. package/lib/typescript/src/components/BottomSheet/BottomSheetComponent.d.ts.map +0 -1
  60. package/lib/typescript/src/components/BottomSheet/index.d.ts +0 -2
  61. package/lib/typescript/src/components/BottomSheet/index.d.ts.map +0 -1
  62. package/lib/typescript/src/mappings/BottomSheet.d.ts +0 -115
  63. package/lib/typescript/src/mappings/BottomSheet.d.ts.map +0 -1
  64. package/src/components/BottomSheet/BottomSheet.js +0 -56
  65. package/src/components/BottomSheet/BottomSheet.tsx +0 -120
  66. package/src/components/BottomSheet/BottomSheetComponent.js +0 -437
  67. package/src/components/BottomSheet/BottomSheetComponent.tsx +0 -895
  68. package/src/components/BottomSheet/index.js +0 -1
  69. package/src/components/BottomSheet/index.ts +0 -1
  70. package/src/mappings/BottomSheet.js +0 -63
  71. package/src/mappings/BottomSheet.ts +0 -77
@@ -0,0 +1,143 @@
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 SHARED_SEED_DATA_PROPS = {
9
+ borderWidth: (0, _types.createStaticNumberProp)({
10
+ label: "Border Width",
11
+ description: "Specifies the width of the border. Passed down to child Table(Row/Cell) components unless overridden",
12
+ required: false,
13
+ defaultValue: null
14
+ }),
15
+ borderColor: (0, _types.createColorProp)({
16
+ label: "Border Color",
17
+ description: "Specifies the color of the border. Passed down to child Table(Row/Cell) components unless overridden",
18
+ defaultValue: null
19
+ }),
20
+ borderStyle: (0, _types.createTextEnumProp)({
21
+ label: "Border Style",
22
+ description: "Specifies the style of the border. Passed down to child Table(Row/Cell) components unless overridden",
23
+ options: ["solid", "dotted", "dashed"],
24
+ defaultValue: null
25
+ }),
26
+ drawTopBorder: (0, _types.createStaticBoolProp)({
27
+ label: "Draw Top Border",
28
+ description: "Whether to draw the top border at this layer of the Table tree or not",
29
+ defaultValue: false
30
+ }),
31
+ drawBottomBorder: (0, _types.createStaticBoolProp)({
32
+ label: "Draw Bottom Border",
33
+ description: "Whether to draw the bottom border at this layer of the Table tree or not",
34
+ defaultValue: false
35
+ }),
36
+ drawStartBorder: (0, _types.createStaticBoolProp)({
37
+ label: "Draw Start Border",
38
+ description: "Whether to draw the start border at this layer of the Table tree or not",
39
+ defaultValue: false
40
+ }),
41
+ drawEndBorder: (0, _types.createStaticBoolProp)({
42
+ label: "Draw End Border",
43
+ description: "Whether to draw the end border at this layer of the Table tree or not",
44
+ defaultValue: false
45
+ })
46
+ };
47
+ const SEED_DATA = [{
48
+ name: "Table",
49
+ tag: "Table",
50
+ description: "Top level table container",
51
+ category: _types.COMPONENT_TYPES.table,
52
+ stylesPanelSections: _types.BLOCK_STYLES_SECTIONS,
53
+ props: {
54
+ ...SHARED_SEED_DATA_PROPS,
55
+ borderWidth: {
56
+ ...SHARED_SEED_DATA_PROPS.borderWidth,
57
+ defaultValue: 1
58
+ },
59
+ borderColor: {
60
+ ...SHARED_SEED_DATA_PROPS.borderColor,
61
+ defaultValue: "divider"
62
+ },
63
+ borderStyle: {
64
+ ...SHARED_SEED_DATA_PROPS.borderStyle,
65
+ defaultValue: "solid"
66
+ },
67
+ drawTopBorder: {
68
+ ...SHARED_SEED_DATA_PROPS.drawTopBorder,
69
+ defaultValue: true
70
+ },
71
+ cellVerticalPadding: (0, _types.createStaticNumberProp)({
72
+ label: "Cell Vertical Padding",
73
+ description: "Specifies the vertical padding of the cell. Passed down to child Table Row components unless overridden",
74
+ required: false,
75
+ defaultValue: 10
76
+ }),
77
+ cellHorizontalPadding: (0, _types.createStaticNumberProp)({
78
+ label: "Cell Horizontal Padding",
79
+ description: "Specifies the horizontal padding of the cell. Passed down to child Table Row components unless overridden",
80
+ required: false,
81
+ defaultValue: 10
82
+ })
83
+ }
84
+ }, {
85
+ name: "Table Row",
86
+ tag: "TableRow",
87
+ description: "Table Row container",
88
+ category: _types.COMPONENT_TYPES.table,
89
+ stylesPanelSections: [_types.StylesPanelSections.Background],
90
+ props: {
91
+ ...SHARED_SEED_DATA_PROPS,
92
+ drawStartBorder: {
93
+ ...SHARED_SEED_DATA_PROPS.drawStartBorder,
94
+ defaultValue: true
95
+ },
96
+ drawBottomBorder: {
97
+ ...SHARED_SEED_DATA_PROPS.drawBottomBorder,
98
+ defaultValue: true
99
+ },
100
+ cellVerticalPadding: (0, _types.createStaticNumberProp)({
101
+ label: "Cell Vertical Padding",
102
+ description: "Specifies the vertical padding of the cell. Passed down to child Table Cell components unless overridden",
103
+ required: false,
104
+ defaultValue: null
105
+ }),
106
+ cellHorizontalPadding: (0, _types.createStaticNumberProp)({
107
+ label: "Cell Horizontal Padding",
108
+ description: "Specifies the horizontal padding of the cell. Passed down to child Table Cell components unless overridden",
109
+ required: false,
110
+ defaultValue: null
111
+ })
112
+ }
113
+ }, {
114
+ name: "Table Cell",
115
+ tag: "TableCell",
116
+ description: "Table Cell container",
117
+ category: _types.COMPONENT_TYPES.table,
118
+ stylesPanelSections: _types.CONTAINER_COMPONENT_STYLES_SECTIONS.filter(item => item !== _types.StylesPanelSections.Borders),
119
+ layout: {
120
+ flex: 1,
121
+ flexDirection: "row"
122
+ },
123
+ props: {
124
+ ...SHARED_SEED_DATA_PROPS,
125
+ drawEndBorder: {
126
+ ...SHARED_SEED_DATA_PROPS.drawEndBorder,
127
+ defaultValue: true
128
+ },
129
+ cellVerticalPadding: (0, _types.createStaticNumberProp)({
130
+ label: "Vertical Padding",
131
+ description: "Specifies the vertical padding of the cell",
132
+ required: false,
133
+ defaultValue: null
134
+ }),
135
+ cellHorizontalPadding: (0, _types.createStaticNumberProp)({
136
+ label: "Horizontal Padding",
137
+ description: "Specifies the horizontal padding of the cell",
138
+ required: false,
139
+ defaultValue: null
140
+ })
141
+ }
142
+ }];
143
+ exports.SEED_DATA = SEED_DATA;
@@ -0,0 +1,83 @@
1
+ import React from "react";
2
+ import { ScrollView, View, StyleSheet } from "react-native";
3
+ import { withTheme } from "../../theming";
4
+ import { generateBorderStyles, TableStyleContext } from "./TableCommon";
5
+ const Table = _ref => {
6
+ let {
7
+ theme,
8
+ borderWidth = 1,
9
+ borderColor = theme.colors.divider,
10
+ borderStyle = "solid",
11
+ drawTopBorder = true,
12
+ drawBottomBorder = false,
13
+ drawStartBorder = false,
14
+ drawEndBorder = false,
15
+ cellVerticalPadding = 10,
16
+ cellHorizontalPadding = 10,
17
+ data,
18
+ keyExtractor,
19
+ renderItem,
20
+ children: childrenProp,
21
+ style
22
+ } = _ref;
23
+ //Both 'renderItem' and 'data' are optional to allow direct children. But if one is included, both need to be included
24
+ if (data && !renderItem || renderItem && !data) {
25
+ throw new Error("'renderItem' and 'data' need to both be provided to render from 'data'. Either remove them entirley or include both");
26
+ }
27
+ if (data && renderItem && childrenProp) {
28
+ console.warn("'children' of Table ignored due to usage of 'data' and 'renderItem'");
29
+ }
30
+ const isTableHeader = React.useCallback(object => {
31
+ return object.isTableHeader;
32
+ }, []);
33
+ const isRenderItem = data && renderItem;
34
+
35
+ //Uses 'renderItem' and 'data' to create an array of children
36
+ const dataAsChildren = React.useMemo(() => {
37
+ if (!isRenderItem) return [];
38
+ return data.map((item, index) => {
39
+ const component = renderItem({
40
+ item,
41
+ index
42
+ });
43
+ if (!component) {
44
+ return null;
45
+ }
46
+ const key = keyExtractor ? keyExtractor(item, index) : index.toString();
47
+ return /*#__PURE__*/React.cloneElement(component, {
48
+ key
49
+ });
50
+ });
51
+ }, [data, renderItem, keyExtractor, isRenderItem]);
52
+ const children = isRenderItem ? dataAsChildren : React.Children.toArray(childrenProp);
53
+ const validChildren = React.useMemo(() => children.filter(item => /*#__PURE__*/React.isValidElement(item)), [children]);
54
+ const childrenWithoutHeader = React.useMemo(() => validChildren.filter(item => !isTableHeader(item.props)), [validChildren, isTableHeader]);
55
+ const headers = React.useMemo(() => validChildren.filter(item => isTableHeader(item.props)), [validChildren, isTableHeader]);
56
+ const contextValue = {
57
+ borderColor,
58
+ borderStyle,
59
+ borderWidth,
60
+ cellHorizontalPadding,
61
+ cellVerticalPadding
62
+ };
63
+ const borderViewStyle = generateBorderStyles({
64
+ borderColor,
65
+ borderWidth,
66
+ borderStyle,
67
+ drawTopBorder,
68
+ drawBottomBorder,
69
+ drawStartBorder,
70
+ drawEndBorder
71
+ });
72
+ return /*#__PURE__*/React.createElement(TableStyleContext.Provider, {
73
+ value: contextValue
74
+ }, /*#__PURE__*/React.createElement(View, {
75
+ style: [styles.container, borderViewStyle, style]
76
+ }, /*#__PURE__*/React.createElement(React.Fragment, null, headers), /*#__PURE__*/React.createElement(ScrollView, null, childrenWithoutHeader)));
77
+ };
78
+ const styles = StyleSheet.create({
79
+ container: {
80
+ flex: 1
81
+ }
82
+ });
83
+ export default withTheme(Table);
@@ -0,0 +1,41 @@
1
+ import React from "react";
2
+ import { View, StyleSheet } from "react-native";
3
+ import { generateBorderStyles, TableStyleContext } from "./TableCommon";
4
+ const TableCell = _ref => {
5
+ let {
6
+ borderWidth,
7
+ borderColor,
8
+ borderStyle,
9
+ drawTopBorder = false,
10
+ drawBottomBorder = false,
11
+ drawStartBorder = false,
12
+ drawEndBorder = true,
13
+ cellVerticalPadding,
14
+ cellHorizontalPadding,
15
+ children,
16
+ style
17
+ } = _ref;
18
+ const parentContextValue = React.useContext(TableStyleContext);
19
+ const borderViewStyle = generateBorderStyles({
20
+ borderColor: borderColor || parentContextValue.borderColor,
21
+ borderWidth: borderWidth || parentContextValue.borderWidth,
22
+ borderStyle: borderStyle || parentContextValue.borderStyle,
23
+ drawTopBorder,
24
+ drawBottomBorder,
25
+ drawStartBorder,
26
+ drawEndBorder
27
+ });
28
+ return /*#__PURE__*/React.createElement(View, {
29
+ style: [styles.cellContainer, borderViewStyle, {
30
+ paddingVertical: cellVerticalPadding || parentContextValue.cellVerticalPadding,
31
+ paddingHorizontal: cellHorizontalPadding || parentContextValue.cellHorizontalPadding
32
+ }, style]
33
+ }, children);
34
+ };
35
+ const styles = StyleSheet.create({
36
+ cellContainer: {
37
+ flex: 1,
38
+ flexDirection: "row"
39
+ }
40
+ });
41
+ export default TableCell;
@@ -0,0 +1,21 @@
1
+ import React from "react";
2
+ export const TableStyleContext = /*#__PURE__*/React.createContext({});
3
+ export function generateBorderStyles(_ref) {
4
+ let {
5
+ borderColor,
6
+ borderWidth,
7
+ borderStyle,
8
+ drawTopBorder,
9
+ drawBottomBorder,
10
+ drawStartBorder,
11
+ drawEndBorder
12
+ } = _ref;
13
+ return {
14
+ borderColor,
15
+ borderStyle,
16
+ borderTopWidth: drawTopBorder ? borderWidth : 0,
17
+ borderBottomWidth: drawBottomBorder ? borderWidth : 0,
18
+ borderStartWidth: drawStartBorder ? borderWidth : 0,
19
+ borderEndWidth: drawEndBorder ? borderWidth : 0
20
+ };
21
+ }
@@ -0,0 +1,53 @@
1
+ import React from "react";
2
+ import { View, StyleSheet } from "react-native";
3
+ import { generateBorderStyles, TableStyleContext } from "./TableCommon";
4
+ import { withTheme } from "../../theming";
5
+ const TableRow = _ref => {
6
+ let {
7
+ borderWidth,
8
+ borderColor,
9
+ borderStyle,
10
+ drawTopBorder = false,
11
+ drawBottomBorder = true,
12
+ drawStartBorder = true,
13
+ drawEndBorder = false,
14
+ cellVerticalPadding,
15
+ cellHorizontalPadding,
16
+ isTableHeader = false,
17
+ children,
18
+ style,
19
+ theme
20
+ } = _ref;
21
+ const parentContextValue = React.useContext(TableStyleContext);
22
+
23
+ //Create context to use and pass to children based on own props or fall back to parent provided context
24
+ const contextValue = {
25
+ borderColor: borderColor || parentContextValue.borderColor,
26
+ borderStyle: borderStyle || parentContextValue.borderStyle,
27
+ borderWidth: borderWidth || parentContextValue.borderWidth,
28
+ cellHorizontalPadding: cellHorizontalPadding || parentContextValue.cellHorizontalPadding,
29
+ cellVerticalPadding: cellVerticalPadding || parentContextValue.cellVerticalPadding
30
+ };
31
+ const borderViewStyle = generateBorderStyles({
32
+ borderColor: contextValue.borderColor,
33
+ borderWidth: contextValue.borderWidth,
34
+ borderStyle: contextValue.borderStyle,
35
+ drawTopBorder,
36
+ drawBottomBorder,
37
+ drawStartBorder,
38
+ drawEndBorder
39
+ });
40
+ return /*#__PURE__*/React.createElement(TableStyleContext.Provider, {
41
+ value: contextValue
42
+ }, /*#__PURE__*/React.createElement(View, {
43
+ style: [borderViewStyle, isTableHeader ? {
44
+ backgroundColor: theme.colors.primary
45
+ } : {}, style, styles.cellsContainer]
46
+ }, children));
47
+ };
48
+ const styles = StyleSheet.create({
49
+ cellsContainer: {
50
+ flexDirection: "row"
51
+ }
52
+ });
53
+ export default withTheme(TableRow);
@@ -0,0 +1,3 @@
1
+ export { default as Table } from "./Table";
2
+ export { default as TableRow } from "./TableRow";
3
+ export { default as TableCell } from "./TableCell";
@@ -35,7 +35,7 @@ export { default as Shadow } from "./components/Shadow";
35
35
  export { DeckSwiper, DeckSwiperCard } from "./components/DeckSwiper";
36
36
  export { TabView, TabViewItem } from "./components/TabView";
37
37
  export { default as Markdown } from "./components/Markdown";
38
- export { BottomSheet } from "./components/BottomSheet";
38
+ export { Table, TableRow, TableCell } from "./components/Table";
39
39
 
40
40
  /* Deprecated: Fix or Delete! */
41
41
  export { default as DatePicker } from "./components/DatePicker/DatePicker";
@@ -0,0 +1,136 @@
1
+ import { COMPONENT_TYPES, StylesPanelSections, createColorProp, createStaticBoolProp, createStaticNumberProp, BLOCK_STYLES_SECTIONS, CONTAINER_COMPONENT_STYLES_SECTIONS, createTextEnumProp } from "@draftbit/types";
2
+ const SHARED_SEED_DATA_PROPS = {
3
+ borderWidth: createStaticNumberProp({
4
+ label: "Border Width",
5
+ description: "Specifies the width of the border. Passed down to child Table(Row/Cell) components unless overridden",
6
+ required: false,
7
+ defaultValue: null
8
+ }),
9
+ borderColor: createColorProp({
10
+ label: "Border Color",
11
+ description: "Specifies the color of the border. Passed down to child Table(Row/Cell) components unless overridden",
12
+ defaultValue: null
13
+ }),
14
+ borderStyle: createTextEnumProp({
15
+ label: "Border Style",
16
+ description: "Specifies the style of the border. Passed down to child Table(Row/Cell) components unless overridden",
17
+ options: ["solid", "dotted", "dashed"],
18
+ defaultValue: null
19
+ }),
20
+ drawTopBorder: createStaticBoolProp({
21
+ label: "Draw Top Border",
22
+ description: "Whether to draw the top border at this layer of the Table tree or not",
23
+ defaultValue: false
24
+ }),
25
+ drawBottomBorder: createStaticBoolProp({
26
+ label: "Draw Bottom Border",
27
+ description: "Whether to draw the bottom border at this layer of the Table tree or not",
28
+ defaultValue: false
29
+ }),
30
+ drawStartBorder: createStaticBoolProp({
31
+ label: "Draw Start Border",
32
+ description: "Whether to draw the start border at this layer of the Table tree or not",
33
+ defaultValue: false
34
+ }),
35
+ drawEndBorder: createStaticBoolProp({
36
+ label: "Draw End Border",
37
+ description: "Whether to draw the end border at this layer of the Table tree or not",
38
+ defaultValue: false
39
+ })
40
+ };
41
+ export const SEED_DATA = [{
42
+ name: "Table",
43
+ tag: "Table",
44
+ description: "Top level table container",
45
+ category: COMPONENT_TYPES.table,
46
+ stylesPanelSections: BLOCK_STYLES_SECTIONS,
47
+ props: {
48
+ ...SHARED_SEED_DATA_PROPS,
49
+ borderWidth: {
50
+ ...SHARED_SEED_DATA_PROPS.borderWidth,
51
+ defaultValue: 1
52
+ },
53
+ borderColor: {
54
+ ...SHARED_SEED_DATA_PROPS.borderColor,
55
+ defaultValue: "divider"
56
+ },
57
+ borderStyle: {
58
+ ...SHARED_SEED_DATA_PROPS.borderStyle,
59
+ defaultValue: "solid"
60
+ },
61
+ drawTopBorder: {
62
+ ...SHARED_SEED_DATA_PROPS.drawTopBorder,
63
+ defaultValue: true
64
+ },
65
+ cellVerticalPadding: createStaticNumberProp({
66
+ label: "Cell Vertical Padding",
67
+ description: "Specifies the vertical padding of the cell. Passed down to child Table Row components unless overridden",
68
+ required: false,
69
+ defaultValue: 10
70
+ }),
71
+ cellHorizontalPadding: createStaticNumberProp({
72
+ label: "Cell Horizontal Padding",
73
+ description: "Specifies the horizontal padding of the cell. Passed down to child Table Row components unless overridden",
74
+ required: false,
75
+ defaultValue: 10
76
+ })
77
+ }
78
+ }, {
79
+ name: "Table Row",
80
+ tag: "TableRow",
81
+ description: "Table Row container",
82
+ category: COMPONENT_TYPES.table,
83
+ stylesPanelSections: [StylesPanelSections.Background],
84
+ props: {
85
+ ...SHARED_SEED_DATA_PROPS,
86
+ drawStartBorder: {
87
+ ...SHARED_SEED_DATA_PROPS.drawStartBorder,
88
+ defaultValue: true
89
+ },
90
+ drawBottomBorder: {
91
+ ...SHARED_SEED_DATA_PROPS.drawBottomBorder,
92
+ defaultValue: true
93
+ },
94
+ cellVerticalPadding: createStaticNumberProp({
95
+ label: "Cell Vertical Padding",
96
+ description: "Specifies the vertical padding of the cell. Passed down to child Table Cell components unless overridden",
97
+ required: false,
98
+ defaultValue: null
99
+ }),
100
+ cellHorizontalPadding: createStaticNumberProp({
101
+ label: "Cell Horizontal Padding",
102
+ description: "Specifies the horizontal padding of the cell. Passed down to child Table Cell components unless overridden",
103
+ required: false,
104
+ defaultValue: null
105
+ })
106
+ }
107
+ }, {
108
+ name: "Table Cell",
109
+ tag: "TableCell",
110
+ description: "Table Cell container",
111
+ category: COMPONENT_TYPES.table,
112
+ stylesPanelSections: CONTAINER_COMPONENT_STYLES_SECTIONS.filter(item => item !== StylesPanelSections.Borders),
113
+ layout: {
114
+ flex: 1,
115
+ flexDirection: "row"
116
+ },
117
+ props: {
118
+ ...SHARED_SEED_DATA_PROPS,
119
+ drawEndBorder: {
120
+ ...SHARED_SEED_DATA_PROPS.drawEndBorder,
121
+ defaultValue: true
122
+ },
123
+ cellVerticalPadding: createStaticNumberProp({
124
+ label: "Vertical Padding",
125
+ description: "Specifies the vertical padding of the cell",
126
+ required: false,
127
+ defaultValue: null
128
+ }),
129
+ cellHorizontalPadding: createStaticNumberProp({
130
+ label: "Horizontal Padding",
131
+ description: "Specifies the horizontal padding of the cell",
132
+ required: false,
133
+ defaultValue: null
134
+ })
135
+ }
136
+ }];
@@ -0,0 +1,19 @@
1
+ import React from "react";
2
+ import { StyleProp, ViewStyle } from "react-native";
3
+ import { Theme } from "../../styles/DefaultTheme";
4
+ import { TableProps } from "./TableCommon";
5
+ export interface Props<T> extends TableProps {
6
+ data?: Array<T>;
7
+ keyExtractor?: (item: T, index: number) => string;
8
+ renderItem?: ({ item, index }: {
9
+ item: T;
10
+ index: number;
11
+ }) => JSX.Element;
12
+ style?: StyleProp<ViewStyle>;
13
+ theme: Theme;
14
+ }
15
+ declare const _default: React.ComponentType<import("@draftbit/react-theme-provider").$Without<React.PropsWithChildren<Props<object>>, "theme"> & {
16
+ theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
17
+ }> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<React.ComponentType<React.PropsWithChildren<Props<object>>> & (<T extends object>({ theme, borderWidth, borderColor, borderStyle, drawTopBorder, drawBottomBorder, drawStartBorder, drawEndBorder, cellVerticalPadding, cellHorizontalPadding, data, keyExtractor, renderItem, children: childrenProp, style, }: React.PropsWithChildren<Props<T>>) => JSX.Element), {}>;
18
+ export default _default;
19
+ //# sourceMappingURL=Table.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Table.d.ts","sourceRoot":"","sources":["../../../../../src/components/Table/Table.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAEL,SAAS,EACT,SAAS,EAGV,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAEL,UAAU,EAGX,MAAM,eAAe,CAAC;AAEvB,MAAM,WAAW,KAAK,CAAC,CAAC,CAAE,SAAQ,UAAU;IAC1C,IAAI,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC;IAChB,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,MAAM,CAAC;IAClD,UAAU,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE;QAAE,IAAI,EAAE,CAAC,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,KAAK,GAAG,CAAC,OAAO,CAAC;IAC1E,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,KAAK,EAAE,KAAK,CAAC;CACd;;;;AAgHD,wBAAgC"}
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { StyleProp, ViewStyle } from "react-native";
3
+ import { TableProps } from "./TableCommon";
4
+ export interface Props extends TableProps {
5
+ style?: StyleProp<ViewStyle>;
6
+ }
7
+ declare const TableCell: React.FC<React.PropsWithChildren<Props>>;
8
+ export default TableCell;
9
+ //# sourceMappingURL=TableCell.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TableCell.d.ts","sourceRoot":"","sources":["../../../../../src/components/Table/TableCell.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAQ,SAAS,EAAE,SAAS,EAAc,MAAM,cAAc,CAAC;AACtE,OAAO,EAEL,UAAU,EAEX,MAAM,eAAe,CAAC;AAEvB,MAAM,WAAW,KAAM,SAAQ,UAAU;IACvC,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC9B;AAED,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAyCvD,CAAC;AASF,eAAe,SAAS,CAAC"}
@@ -0,0 +1,20 @@
1
+ import React from "react";
2
+ import { ViewStyle } from "react-native";
3
+ declare type BorderStyle = "solid" | "dotted" | "dashed";
4
+ export declare const TableStyleContext: React.Context<TableStyleProps>;
5
+ export interface TableStyleProps {
6
+ borderWidth?: number;
7
+ borderColor?: string;
8
+ borderStyle?: BorderStyle;
9
+ cellVerticalPadding?: number;
10
+ cellHorizontalPadding?: number;
11
+ }
12
+ export interface TableProps extends TableStyleProps {
13
+ drawTopBorder?: boolean;
14
+ drawBottomBorder?: boolean;
15
+ drawStartBorder?: boolean;
16
+ drawEndBorder?: boolean;
17
+ }
18
+ export declare function generateBorderStyles({ borderColor, borderWidth, borderStyle, drawTopBorder, drawBottomBorder, drawStartBorder, drawEndBorder, }: TableProps): ViewStyle;
19
+ export {};
20
+ //# sourceMappingURL=TableCommon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TableCommon.d.ts","sourceRoot":"","sources":["../../../../../src/components/Table/TableCommon.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzC,aAAK,WAAW,GAAG,OAAO,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAEjD,eAAO,MAAM,iBAAiB,gCAA2C,CAAC;AAE1E,MAAM,WAAW,eAAe;IAC9B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,qBAAqB,CAAC,EAAE,MAAM,CAAC;CAChC;AAED,MAAM,WAAW,UAAW,SAAQ,eAAe;IACjD,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,wBAAgB,oBAAoB,CAAC,EACnC,WAAW,EACX,WAAW,EACX,WAAW,EACX,aAAa,EACb,gBAAgB,EAChB,eAAe,EACf,aAAa,GACd,EAAE,UAAU,GAAG,SAAS,CASxB"}
@@ -0,0 +1,14 @@
1
+ import React from "react";
2
+ import { StyleProp, ViewStyle } from "react-native";
3
+ import { TableProps } from "./TableCommon";
4
+ import { Theme } from "../../styles/DefaultTheme";
5
+ export interface Props extends TableProps {
6
+ isTableHeader?: boolean;
7
+ style?: StyleProp<ViewStyle>;
8
+ theme: Theme;
9
+ }
10
+ declare const _default: React.ComponentType<import("@draftbit/react-theme-provider").$Without<React.PropsWithChildren<Props>, "theme"> & {
11
+ theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
12
+ }> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<React.ComponentType<React.PropsWithChildren<Props>> & React.FC<React.PropsWithChildren<Props>>, {}>;
13
+ export default _default;
14
+ //# sourceMappingURL=TableRow.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TableRow.d.ts","sourceRoot":"","sources":["../../../../../src/components/Table/TableRow.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAQ,SAAS,EAAE,SAAS,EAAc,MAAM,cAAc,CAAC;AACtE,OAAO,EAEL,UAAU,EAGX,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAC;AAGlD,MAAM,WAAW,KAAM,SAAQ,UAAU;IACvC,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,KAAK,EAAE,KAAK,CAAC;CACd;;;;AA6DD,wBAAmC"}
@@ -0,0 +1,4 @@
1
+ export { default as Table } from "./Table";
2
+ export { default as TableRow } from "./TableRow";
3
+ export { default as TableCell } from "./TableCell";
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/Table/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAC3C,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC"}
@@ -35,7 +35,7 @@ export { default as Shadow } from "./components/Shadow";
35
35
  export { DeckSwiper, DeckSwiperCard } from "./components/DeckSwiper";
36
36
  export { TabView, TabViewItem } from "./components/TabView";
37
37
  export { default as Markdown } from "./components/Markdown";
38
- export { BottomSheet } from "./components/BottomSheet";
38
+ export { Table, TableRow, TableCell } from "./components/Table";
39
39
  export { default as DatePicker } from "./components/DatePicker/DatePicker";
40
40
  export { default as Picker } from "./components/Picker/Picker";
41
41
  export { default as ProgressBar } from "./components/ProgressBar";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAEhE,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACzC,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,GAAG,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAChF,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,GAAG,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AACnE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AACvE,OAAO,EACL,WAAW,EACX,eAAe,EACf,iBAAiB,GAClB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEzD,OAAO,EACL,MAAM,EACN,MAAM,EACN,MAAM,EACN,GAAG,EACH,KAAK,EACL,MAAM,GACP,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EACL,WAAW,EACX,gBAAgB,EAChB,cAAc,EACd,qBAAqB,GACtB,MAAM,gCAAgC,CAAC;AAExC,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAExD,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAErE,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAE5D,OAAO,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAGhE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAC3E,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,6BAA6B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,sCAAsC,CAAC;AAC1F,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AACpF,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC"}