@draftbit/core 46.4.3 → 46.4.4-3bb5e5.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 (233) hide show
  1. package/lib/commonjs/components/Container.js +17 -5
  2. package/lib/commonjs/components/Justification.js +5 -1
  3. package/lib/commonjs/components/ResizeMode.js +5 -1
  4. package/lib/commonjs/components/Table/Table.js +50 -0
  5. package/lib/commonjs/components/Table/TableCell.js +50 -0
  6. package/lib/commonjs/components/Table/TableHeader.js +41 -0
  7. package/lib/commonjs/components/Table/TablePaginator.js +17 -0
  8. package/lib/commonjs/components/Table/TableRow.js +47 -0
  9. package/lib/commonjs/components/Table/TableTitle.js +60 -0
  10. package/lib/commonjs/components/Table/index.js +55 -0
  11. package/lib/commonjs/index.js +38 -0
  12. package/lib/commonjs/mappings/Table.js +103 -0
  13. package/lib/commonjs/utilities.js +2 -2
  14. package/lib/module/components/Justification.js +1 -0
  15. package/lib/module/components/ResizeMode.js +1 -0
  16. package/lib/module/components/Table/Table.js +23 -0
  17. package/lib/module/components/Table/TableCell.js +37 -0
  18. package/lib/module/components/Table/TableHeader.js +27 -0
  19. package/lib/module/components/Table/TablePaginator.js +6 -0
  20. package/lib/module/components/Table/TableRow.js +33 -0
  21. package/lib/module/components/Table/TableTitle.js +47 -0
  22. package/lib/module/components/Table/index.js +6 -0
  23. package/lib/module/index.js +1 -0
  24. package/lib/module/mappings/Table.js +94 -0
  25. package/lib/module/utilities.js +3 -3
  26. package/lib/typescript/src/components/Table/Table.d.ts +8 -0
  27. package/lib/typescript/src/components/Table/TableCell.d.ts +10 -0
  28. package/lib/typescript/src/components/Table/TableHeader.d.ts +12 -0
  29. package/lib/typescript/src/components/Table/TablePaginator.d.ts +3 -0
  30. package/lib/typescript/src/components/Table/TableRow.d.ts +12 -0
  31. package/lib/typescript/src/components/Table/TableTitle.d.ts +12 -0
  32. package/lib/typescript/src/components/Table/index.d.ts +6 -0
  33. package/lib/typescript/src/index.d.ts +1 -0
  34. package/lib/typescript/src/mappings/Table.d.ts +153 -0
  35. package/lib/typescript/src/utilities.d.ts +3 -3
  36. package/package.json +3 -3
  37. package/src/Provider.js +9 -0
  38. package/src/components/Accordion/AccordionGroup.js +44 -0
  39. package/src/components/Accordion/AccordionItem.js +32 -0
  40. package/src/components/Accordion/index.js +2 -0
  41. package/src/components/ActionSheet/ActionSheet.js +45 -0
  42. package/src/components/ActionSheet/ActionSheetCancel.js +6 -0
  43. package/src/components/ActionSheet/ActionSheetItem.js +30 -0
  44. package/src/components/ActionSheet/index.js +3 -0
  45. package/src/components/AnimatedCircularProgress.js +43 -0
  46. package/src/components/AspectRatio.js +18 -0
  47. package/src/components/AvatarEdit.js +30 -0
  48. package/src/components/Banner.js +109 -0
  49. package/src/components/Button.js +114 -0
  50. package/src/components/Card.js +57 -0
  51. package/src/components/CardBlock.js +54 -0
  52. package/src/components/CardContainer.js +69 -0
  53. package/src/components/CardContainerRating.js +79 -0
  54. package/src/components/CardContainerShortImage.js +33 -0
  55. package/src/components/CardInline.js +36 -0
  56. package/src/components/Carousel.js +68 -0
  57. package/src/components/Checkbox/Checkbox.js +63 -0
  58. package/src/components/Checkbox/CheckboxGroup.js +21 -0
  59. package/src/components/Checkbox/CheckboxGroupRow.js +77 -0
  60. package/src/components/Checkbox/CheckboxRow.js +78 -0
  61. package/src/components/Checkbox/context.js +14 -0
  62. package/src/components/Checkbox/index.js +3 -0
  63. package/src/components/CircleImage.js +8 -0
  64. package/src/components/CircularProgress.js +81 -0
  65. package/src/components/Config.js +64 -0
  66. package/src/components/Container.js +43 -0
  67. package/src/components/DatePicker/DatePicker.js +368 -0
  68. package/src/components/DatePicker/DatePickerComponent.js +13 -0
  69. package/src/components/DatePicker/DatePickerComponent.web.js +30 -0
  70. package/src/components/DatePicker/DatePickerComponentType.js +1 -0
  71. package/src/components/DeprecatedButton.js +95 -0
  72. package/src/components/DeprecatedCardWrapper.js +18 -0
  73. package/src/components/DeprecatedFAB.js +115 -0
  74. package/src/components/Divider.js +13 -0
  75. package/src/components/Elevation.js +20 -0
  76. package/src/components/FAB.js +46 -0
  77. package/src/components/FieldSearchBarFull.js +53 -0
  78. package/src/components/FormRow.js +19 -0
  79. package/src/components/Header.js +44 -0
  80. package/src/components/HeaderLarge.js +7 -0
  81. package/src/components/HeaderMedium.js +7 -0
  82. package/src/components/HeaderOverline.js +7 -0
  83. package/src/components/IconButton.js +35 -0
  84. package/src/components/Image.js +47 -0
  85. package/src/components/Justification.js +1 -0
  86. package/src/components/Layout.js +50 -0
  87. package/src/components/NumberInput.js +49 -0
  88. package/src/components/Picker/Picker.js +267 -0
  89. package/src/components/Picker/PickerComponent.android.js +69 -0
  90. package/src/components/Picker/PickerComponent.ios.js +79 -0
  91. package/src/components/Picker/PickerComponent.web.js +70 -0
  92. package/src/components/Picker/PickerTypes.js +1 -0
  93. package/src/components/Portal/Portal.js +35 -0
  94. package/src/components/Portal/PortalConsumer.js +27 -0
  95. package/src/components/Portal/PortalHost.js +107 -0
  96. package/src/components/Portal/PortalManager.js +32 -0
  97. package/src/components/ProgressBar.js +118 -0
  98. package/src/components/ProgressCircle.js +13 -0
  99. package/src/components/ProgressIndicator.js +27 -0
  100. package/src/components/RadioButton/RadioButton.js +17 -0
  101. package/src/components/RadioButton/RadioButtonFieldGroup.js +17 -0
  102. package/src/components/RadioButton/RadioButtonGroup.js +43 -0
  103. package/src/components/RadioButton/RadioButtonRow.js +76 -0
  104. package/src/components/RadioButton/context.js +14 -0
  105. package/src/components/RadioButton/index.js +4 -0
  106. package/src/components/ResizeMode.js +1 -0
  107. package/src/components/Row.js +48 -0
  108. package/src/components/RowBodyIcon.js +8 -0
  109. package/src/components/RowHeadlineImageCaption.js +12 -0
  110. package/src/components/RowHeadlineImageIcon.js +14 -0
  111. package/src/components/SVG.js +13 -0
  112. package/src/components/ScreenContainer.js +34 -0
  113. package/src/components/Slider.js +63 -0
  114. package/src/components/StarRating.js +50 -0
  115. package/src/components/StepIndicator.js +346 -0
  116. package/src/components/Stepper.js +39 -0
  117. package/src/components/Surface.js +32 -0
  118. package/src/components/Swiper/Swiper.js +29 -0
  119. package/src/components/Swiper/SwiperItem.js +9 -0
  120. package/src/components/Swiper/index.js +2 -0
  121. package/src/components/Switch.js +56 -0
  122. package/src/components/Table/Table.js +10 -0
  123. package/src/components/Table/Table.tsx +22 -0
  124. package/src/components/Table/TableCell.js +21 -0
  125. package/src/components/Table/TableCell.tsx +44 -0
  126. package/src/components/Table/TableHeader.js +11 -0
  127. package/src/components/Table/TableHeader.tsx +28 -0
  128. package/src/components/Table/TablePaginator.js +5 -0
  129. package/src/components/Table/TablePaginator.tsx +10 -0
  130. package/src/components/Table/TableRow.js +16 -0
  131. package/src/components/Table/TableRow.tsx +31 -0
  132. package/src/components/Table/TableTitle.js +28 -0
  133. package/src/components/Table/TableTitle.tsx +58 -0
  134. package/src/components/Table/index.js +6 -0
  135. package/src/components/Table/index.tsx +6 -0
  136. package/src/components/Text.js +27 -0
  137. package/src/components/TextField.js +423 -0
  138. package/src/components/ToggleButton.js +39 -0
  139. package/src/components/Touchable.js +12 -0
  140. package/src/components/Touchable.web.js +2 -0
  141. package/src/components/Typography.js +36 -0
  142. package/src/components/useAuthState.js +31 -0
  143. package/src/constants.js +10 -0
  144. package/src/hooks.js +12 -0
  145. package/src/index.js +53 -0
  146. package/src/index.tsx +9 -0
  147. package/src/interfaces/Icon.js +8 -0
  148. package/src/mappings/Accordion.js +41 -0
  149. package/src/mappings/AccordionItem.js +16 -0
  150. package/src/mappings/ActionSheet.js +13 -0
  151. package/src/mappings/ActionSheetCancel.js +19 -0
  152. package/src/mappings/ActionSheetItem.js +23 -0
  153. package/src/mappings/ActivityIndicator.js +58 -0
  154. package/src/mappings/AudioPlayer.js +20 -0
  155. package/src/mappings/AvatarEdit.js +38 -0
  156. package/src/mappings/Banner.js +32 -0
  157. package/src/mappings/BlurView.js +42 -0
  158. package/src/mappings/Button.js +87 -0
  159. package/src/mappings/Card.js +52 -0
  160. package/src/mappings/CardBlock.js +123 -0
  161. package/src/mappings/CardContainer.js +104 -0
  162. package/src/mappings/CardContainerRating.js +126 -0
  163. package/src/mappings/CardContainerShortImage.js +120 -0
  164. package/src/mappings/CardInline.js +52 -0
  165. package/src/mappings/Carousel.js +19 -0
  166. package/src/mappings/Checkbox.js +46 -0
  167. package/src/mappings/CheckboxGroup.js +26 -0
  168. package/src/mappings/CheckboxRow.js +61 -0
  169. package/src/mappings/CircleImage.js +25 -0
  170. package/src/mappings/Container.js +30 -0
  171. package/src/mappings/CustomCode.js +8 -0
  172. package/src/mappings/DatePicker.js +157 -0
  173. package/src/mappings/Divider.js +27 -0
  174. package/src/mappings/FAB.js +37 -0
  175. package/src/mappings/Fetch.js +13 -0
  176. package/src/mappings/FieldSearchBarFull.js +50 -0
  177. package/src/mappings/FlashList.js +33 -0
  178. package/src/mappings/FlatList.js +24 -0
  179. package/src/mappings/HeaderLarge.js +29 -0
  180. package/src/mappings/HeaderMedium.js +55 -0
  181. package/src/mappings/HeaderOverline.js +55 -0
  182. package/src/mappings/Icon.js +32 -0
  183. package/src/mappings/IconButton.js +35 -0
  184. package/src/mappings/Image.js +35 -0
  185. package/src/mappings/ImageBackground.js +29 -0
  186. package/src/mappings/KeyboardAvoidingView.js +41 -0
  187. package/src/mappings/KeyboardAwareScrollView.js +50 -0
  188. package/src/mappings/Layout.js +200 -0
  189. package/src/mappings/LinearGradient.js +77 -0
  190. package/src/mappings/MapCallout.js +21 -0
  191. package/src/mappings/MapMarker.js +47 -0
  192. package/src/mappings/MapView.js +139 -0
  193. package/src/mappings/Modal.js +42 -0
  194. package/src/mappings/NumberInput.js +254 -0
  195. package/src/mappings/Picker.js +148 -0
  196. package/src/mappings/ProgressBar.js +101 -0
  197. package/src/mappings/ProgressCircle.js +109 -0
  198. package/src/mappings/ProgressIndicator.js +181 -0
  199. package/src/mappings/RadioButton.js +51 -0
  200. package/src/mappings/RadioButtonGroup.js +17 -0
  201. package/src/mappings/RadioButtonRow.js +42 -0
  202. package/src/mappings/RowBodyIcon.js +75 -0
  203. package/src/mappings/RowHeadlineImageCaption.js +167 -0
  204. package/src/mappings/RowHeadlineImageIcon.js +99 -0
  205. package/src/mappings/SVG.js +20 -0
  206. package/src/mappings/SafeAreaView.js +33 -0
  207. package/src/mappings/ScrollView.js +31 -0
  208. package/src/mappings/Slider.js +60 -0
  209. package/src/mappings/StarRating.js +43 -0
  210. package/src/mappings/Stepper.js +29 -0
  211. package/src/mappings/Surface.js +14 -0
  212. package/src/mappings/Swiper.js +60 -0
  213. package/src/mappings/SwiperItem.js +8 -0
  214. package/src/mappings/Switch.js +81 -0
  215. package/src/mappings/Table.js +137 -0
  216. package/src/mappings/Table.ts +145 -0
  217. package/src/mappings/Text.js +251 -0
  218. package/src/mappings/TextArea.js +263 -0
  219. package/src/mappings/TextField.js +381 -0
  220. package/src/mappings/TextInput.js +391 -0
  221. package/src/mappings/ToggleButton.js +50 -0
  222. package/src/mappings/Touchable.js +17 -0
  223. package/src/mappings/Video.js +81 -0
  224. package/src/mappings/View.js +207 -0
  225. package/src/mappings/WebView.js +88 -0
  226. package/src/styles/DarkTheme.js +26 -0
  227. package/src/styles/DefaultTheme.js +111 -0
  228. package/src/styles/fonts.js +62 -0
  229. package/src/styles/overlay.js +60 -0
  230. package/src/styles/shadow.js +51 -0
  231. package/src/theming.js +3 -0
  232. package/src/utilities.js +105 -0
  233. package/src/utilities.ts +13 -2
@@ -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";
@@ -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";
@@ -0,0 +1,153 @@
1
+ export declare const SEED_DATA: ({
2
+ name: string;
3
+ tag: string;
4
+ category: string;
5
+ stylesPanelSections: string[];
6
+ layout: {
7
+ width: string;
8
+ paddingLeft?: undefined;
9
+ paddingRight?: undefined;
10
+ borderBottomWidth?: undefined;
11
+ borderStyle?: undefined;
12
+ paddingTop?: undefined;
13
+ paddingBottom?: undefined;
14
+ backgroundColor?: undefined;
15
+ fontSize?: undefined;
16
+ fontWeight?: undefined;
17
+ };
18
+ props: {
19
+ numeric?: undefined;
20
+ value?: undefined;
21
+ isAscending?: undefined;
22
+ numberOfLines?: undefined;
23
+ };
24
+ } | {
25
+ name: string;
26
+ tag: string;
27
+ category: string;
28
+ stylesPanelSections: string[];
29
+ layout: {
30
+ paddingLeft: number;
31
+ paddingRight: number;
32
+ borderBottomWidth: number;
33
+ borderStyle: string;
34
+ width?: undefined;
35
+ paddingTop?: undefined;
36
+ paddingBottom?: undefined;
37
+ backgroundColor?: undefined;
38
+ fontSize?: undefined;
39
+ fontWeight?: undefined;
40
+ };
41
+ props: {
42
+ numeric?: undefined;
43
+ value?: undefined;
44
+ isAscending?: undefined;
45
+ numberOfLines?: undefined;
46
+ };
47
+ } | {
48
+ name: string;
49
+ tag: string;
50
+ category: string;
51
+ layout: {
52
+ paddingTop: number;
53
+ paddingBottom: number;
54
+ paddingLeft: number;
55
+ paddingRight: number;
56
+ width?: undefined;
57
+ borderBottomWidth?: undefined;
58
+ borderStyle?: undefined;
59
+ backgroundColor?: undefined;
60
+ fontSize?: undefined;
61
+ fontWeight?: undefined;
62
+ };
63
+ stylesPanelSections: string[];
64
+ props: {
65
+ numeric: {
66
+ label: string;
67
+ description: string;
68
+ formType: string;
69
+ propType: string;
70
+ defaultValue: boolean;
71
+ editable: boolean;
72
+ required: boolean;
73
+ group: string;
74
+ };
75
+ value: any;
76
+ isAscending?: undefined;
77
+ numberOfLines?: undefined;
78
+ };
79
+ } | {
80
+ name: string;
81
+ tag: string;
82
+ category: string;
83
+ stylesPanelSections: string[];
84
+ layout: {
85
+ paddingLeft: number;
86
+ paddingRight: number;
87
+ borderBottomWidth: number;
88
+ borderStyle: string;
89
+ backgroundColor: string;
90
+ width?: undefined;
91
+ paddingTop?: undefined;
92
+ paddingBottom?: undefined;
93
+ fontSize?: undefined;
94
+ fontWeight?: undefined;
95
+ };
96
+ props: {
97
+ numeric?: undefined;
98
+ value?: undefined;
99
+ isAscending?: undefined;
100
+ numberOfLines?: undefined;
101
+ };
102
+ } | {
103
+ name: string;
104
+ tag: string;
105
+ category: string;
106
+ stylesPanelSections: string[];
107
+ layout: {
108
+ fontSize: number;
109
+ fontWeight: string;
110
+ paddingTop: number;
111
+ paddingBottom: number;
112
+ paddingLeft: number;
113
+ paddingRight: number;
114
+ width?: undefined;
115
+ borderBottomWidth?: undefined;
116
+ borderStyle?: undefined;
117
+ backgroundColor?: undefined;
118
+ };
119
+ props: {
120
+ numeric: {
121
+ label: string;
122
+ description: string;
123
+ formType: string;
124
+ propType: string;
125
+ defaultValue: boolean;
126
+ editable: boolean;
127
+ required: boolean;
128
+ group: string;
129
+ };
130
+ value: any;
131
+ isAscending: {
132
+ label: string;
133
+ description: string;
134
+ formType: string;
135
+ propType: string;
136
+ defaultValue: boolean;
137
+ editable: boolean;
138
+ required: boolean;
139
+ group: string;
140
+ };
141
+ numberOfLines: {
142
+ label: string;
143
+ description: string;
144
+ formType: string;
145
+ propType: string;
146
+ group: string;
147
+ defaultValue: null;
148
+ editable: boolean;
149
+ required: boolean;
150
+ step: number;
151
+ };
152
+ };
153
+ })[];
@@ -1,8 +1,8 @@
1
1
  /// <reference types="lodash" />
2
- import { StyleProp, TextStyle } from "react-native";
2
+ import { StyleProp } from "react-native";
3
3
  export declare function extractStyles(style: StyleProp<any>): {
4
- viewStyles: any;
5
- textStyles: TextStyle;
4
+ viewStyles: Partial<any>;
5
+ textStyles: import("lodash").Dictionary<any>;
6
6
  };
7
7
  export declare const borderStyleNames: string[];
8
8
  export declare const marginStyleNames: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@draftbit/core",
3
- "version": "46.4.3",
3
+ "version": "46.4.4-3bb5e5.2+3bb5e52",
4
4
  "description": "Core (non-native) Components",
5
5
  "main": "lib/commonjs/index.js",
6
6
  "module": "lib/module/index.js",
@@ -41,7 +41,7 @@
41
41
  "dependencies": {
42
42
  "@date-io/date-fns": "^1.3.13",
43
43
  "@draftbit/react-theme-provider": "^2.1.1",
44
- "@draftbit/types": "^46.4.3",
44
+ "@draftbit/types": "^46.4.4-3bb5e5.2+3bb5e52",
45
45
  "@material-ui/core": "^4.11.0",
46
46
  "@material-ui/pickers": "^3.2.10",
47
47
  "@react-native-community/slider": "4.2.3",
@@ -81,5 +81,5 @@
81
81
  ]
82
82
  ]
83
83
  },
84
- "gitHead": "f00c60f60d56a77b673bd43bfa9fc04b314329d5"
84
+ "gitHead": "3bb5e52c575461a3691d68a8e25d212e01b1753e"
85
85
  }
@@ -0,0 +1,9 @@
1
+ import * as React from "react";
2
+ import { ThemeProvider } from "./theming";
3
+ import PortalHost from "./components/Portal/PortalHost";
4
+ export default class Provider extends React.Component {
5
+ render() {
6
+ return (React.createElement(PortalHost, null,
7
+ React.createElement(ThemeProvider, { theme: this.props.theme }, this.props.children)));
8
+ }
9
+ }
@@ -0,0 +1,44 @@
1
+ import * as React from "react";
2
+ import { View, StyleSheet, Pressable, } from "react-native";
3
+ import Text from "../Text";
4
+ import { withTheme } from "../../theming";
5
+ import { extractStyles } from "../../utilities";
6
+ const AccordionGroup = ({ label, expanded: expandedProp = false, openColor, closedColor, caretColor: caretColorProp, caretSize = 24, icon, iconSize = 24, style, children, theme, Icon, }) => {
7
+ const [expanded, setExpanded] = React.useState(expandedProp);
8
+ const { textStyles, viewStyles } = extractStyles(style);
9
+ const expandedColor = openColor || theme.colors.primary;
10
+ const collapsedColor = closedColor || theme.colors.primary;
11
+ const labelColor = expanded ? expandedColor : collapsedColor;
12
+ const caretColor = caretColorProp || labelColor;
13
+ const handlePressAction = () => {
14
+ setExpanded(!expanded);
15
+ };
16
+ return (React.createElement(React.Fragment, null,
17
+ React.createElement(Pressable, { style: [styles.row, viewStyles], onPress: handlePressAction, accessibilityRole: "button" },
18
+ icon ? (React.createElement(Icon, { name: icon, size: iconSize, color: labelColor, style: styles.icon })) : null,
19
+ React.createElement(View, { style: styles.content },
20
+ React.createElement(Text, { selectable: false, style: [
21
+ textStyles,
22
+ {
23
+ color: labelColor,
24
+ },
25
+ ] }, label)),
26
+ React.createElement(Icon, { name: expanded
27
+ ? "MaterialIcons/keyboard-arrow-up"
28
+ : "MaterialIcons/keyboard-arrow-down", color: caretColor, size: caretSize })),
29
+ expanded ? children : null));
30
+ };
31
+ const styles = StyleSheet.create({
32
+ row: {
33
+ flexDirection: "row",
34
+ alignItems: "center",
35
+ },
36
+ content: {
37
+ flex: 1,
38
+ justifyContent: "center",
39
+ },
40
+ icon: {
41
+ marginRight: 8,
42
+ },
43
+ });
44
+ export default withTheme(AccordionGroup);
@@ -0,0 +1,32 @@
1
+ import * as React from "react";
2
+ import { Pressable, StyleSheet, View, } from "react-native";
3
+ import Text from "../Text";
4
+ import { extractStyles } from "../../utilities";
5
+ import { withTheme } from "../../theming";
6
+ const AccordionItem = ({ Icon, icon, label, style, iconColor, theme, ...rest }) => {
7
+ const { textStyles, viewStyles } = extractStyles(style);
8
+ return (React.createElement(Pressable, { style: [styles.container, viewStyles], ...rest },
9
+ React.createElement(View, { style: styles.row },
10
+ icon ? (React.createElement(Icon, { name: icon, size: 24, color: iconColor || theme.colors.primary })) : null,
11
+ React.createElement(View, { style: [styles.item, styles.content] },
12
+ React.createElement(Text, { selectable: false, style: textStyles }, label)))));
13
+ };
14
+ const styles = StyleSheet.create({
15
+ container: {
16
+ padding: 8,
17
+ },
18
+ row: {
19
+ flexDirection: "row",
20
+ alignItems: "center",
21
+ paddingLeft: 8,
22
+ },
23
+ item: {
24
+ marginVertical: 6,
25
+ paddingLeft: 8,
26
+ },
27
+ content: {
28
+ flex: 1,
29
+ justifyContent: "center",
30
+ },
31
+ });
32
+ export default withTheme(AccordionItem);
@@ -0,0 +1,2 @@
1
+ export { default as AccordionGroup } from "./AccordionGroup";
2
+ export { default as AccordionItem } from "./AccordionItem";
@@ -0,0 +1,45 @@
1
+ import React from "react";
2
+ import { View, StyleSheet } from "react-native";
3
+ import Portal from "../Portal/Portal";
4
+ import Touchable from "../Touchable";
5
+ import ActionSheetCancel from "./ActionSheetCancel";
6
+ const ActionSheet = ({ visible = false, onClose, children }) => {
7
+ return visible ? (React.createElement(Portal, null,
8
+ React.createElement(Touchable, { style: styles.wrapper, onPress: onClose },
9
+ React.createElement(View, { style: styles.overlay }),
10
+ React.createElement(View, { style: styles.groupWrapper },
11
+ React.createElement(View, { style: styles.group }, React.Children.toArray(children).filter((child) => (child === null || child === void 0 ? void 0 : child.type) !== ActionSheetCancel)),
12
+ React.createElement(View, { style: styles.group }, React.Children.toArray(children).filter((child) => child.type === ActionSheetCancel)))))) : (React.createElement(React.Fragment, null));
13
+ };
14
+ const styles = StyleSheet.create({
15
+ wrapper: {
16
+ flex: 1,
17
+ display: "flex",
18
+ flexDirection: "column",
19
+ },
20
+ overlay: {
21
+ position: "absolute",
22
+ top: 0,
23
+ left: 0,
24
+ right: 0,
25
+ bottom: 0,
26
+ backgroundColor: "#000000",
27
+ opacity: 0.3,
28
+ },
29
+ groupWrapper: {
30
+ flex: 1,
31
+ flexDirection: "column",
32
+ justifyContent: "flex-end",
33
+ display: "flex",
34
+ marginBottom: 25,
35
+ },
36
+ group: {
37
+ display: "flex",
38
+ flexDirection: "column",
39
+ borderRadius: 10,
40
+ marginHorizontal: 7,
41
+ marginVertical: 2.5,
42
+ overflow: "hidden",
43
+ },
44
+ });
45
+ export default ActionSheet;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import ActionSheetItem from "./ActionSheetItem";
3
+ const ActionSheetCancel = ({ label = "Cancel", color, style, onPress, }) => {
4
+ return (React.createElement(ActionSheetItem, { label: label, color: color || "#FF453A", style: [style], onPress: onPress }));
5
+ };
6
+ export default ActionSheetCancel;
@@ -0,0 +1,30 @@
1
+ import React from "react";
2
+ import { Text, StyleSheet, TouchableOpacity, } from "react-native";
3
+ import { extractStyles } from "../../utilities";
4
+ const ActionSheetItem = ({ label, style, color, onPress, }) => {
5
+ const { textStyles, viewStyles } = extractStyles(style);
6
+ return (React.createElement(TouchableOpacity, { activeOpacity: 0.7, style: [styles.wrapper, viewStyles], onPress: onPress },
7
+ React.createElement(Text, { style: [styles.label, textStyles, { color }] }, label)));
8
+ };
9
+ const styles = StyleSheet.create({
10
+ wrapper: {
11
+ borderBottomWidth: StyleSheet.hairlineWidth,
12
+ borderBottomColor: "#CCCCCC",
13
+ backgroundColor: "#F1F1F1",
14
+ minHeight: 50,
15
+ overflow: "hidden",
16
+ display: "flex",
17
+ justifyContent: "center",
18
+ },
19
+ label: {
20
+ fontSize: 16,
21
+ textAlign: "center",
22
+ color: "#0A84FF",
23
+ fontWeight: "500",
24
+ overflow: "hidden",
25
+ paddingHorizontal: 20,
26
+ paddingVertical: 10,
27
+ alignSelf: "center",
28
+ },
29
+ });
30
+ export default ActionSheetItem;
@@ -0,0 +1,3 @@
1
+ export { default as ActionSheet } from "./ActionSheet";
2
+ export { default as ActionSheetItem } from "./ActionSheetItem";
3
+ export { default as ActionSheetCancel } from "./ActionSheetCancel";