@draftbit/core 46.4.4-1c8d6e.2 → 46.4.4-2283a7.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 (338) hide show
  1. package/lib/commonjs/Provider.js +9 -0
  2. package/lib/commonjs/components/Accordion/AccordionGroup.js +14 -0
  3. package/lib/commonjs/components/Accordion/AccordionItem.js +13 -0
  4. package/lib/commonjs/components/Accordion/index.js +3 -0
  5. package/lib/commonjs/components/ActionSheet/ActionSheet.js +9 -0
  6. package/lib/commonjs/components/ActionSheet/ActionSheetCancel.js +5 -0
  7. package/lib/commonjs/components/ActionSheet/ActionSheetItem.js +7 -0
  8. package/lib/commonjs/components/ActionSheet/index.js +4 -0
  9. package/lib/commonjs/components/AnimatedCircularProgress.js +15 -0
  10. package/lib/commonjs/components/AspectRatio.js +10 -0
  11. package/lib/commonjs/components/AvatarEdit.js +12 -0
  12. package/lib/commonjs/components/Banner.js +23 -9
  13. package/lib/commonjs/components/Button.js +19 -2
  14. package/lib/commonjs/components/Card.js +14 -0
  15. package/lib/commonjs/components/CardBlock.js +15 -0
  16. package/lib/commonjs/components/CardContainer.js +18 -0
  17. package/lib/commonjs/components/CardContainerRating.js +20 -2
  18. package/lib/commonjs/components/CardContainerShortImage.js +12 -0
  19. package/lib/commonjs/components/CardInline.js +14 -1
  20. package/lib/commonjs/components/Carousel.js +21 -3
  21. package/lib/commonjs/components/Checkbox/Checkbox.js +18 -3
  22. package/lib/commonjs/components/Checkbox/CheckboxGroup.js +11 -0
  23. package/lib/commonjs/components/Checkbox/CheckboxGroupRow.js +20 -0
  24. package/lib/commonjs/components/Checkbox/CheckboxRow.js +24 -3
  25. package/lib/commonjs/components/Checkbox/context.js +5 -0
  26. package/lib/commonjs/components/Checkbox/index.js +4 -0
  27. package/lib/commonjs/components/CircleImage.js +9 -0
  28. package/lib/commonjs/components/CircularProgress.js +13 -3
  29. package/lib/commonjs/components/Config.js +13 -5
  30. package/lib/commonjs/components/Container.js +15 -15
  31. package/lib/commonjs/components/DatePicker/DatePicker.js +48 -16
  32. package/lib/commonjs/components/DatePicker/DatePickerComponent.js +7 -0
  33. package/lib/commonjs/components/DatePicker/DatePickerComponent.web.js +10 -0
  34. package/lib/commonjs/components/DeprecatedButton.js +23 -0
  35. package/lib/commonjs/components/DeprecatedCardWrapper.js +11 -0
  36. package/lib/commonjs/components/DeprecatedFAB.js +26 -0
  37. package/lib/commonjs/components/Divider.js +9 -0
  38. package/lib/commonjs/components/Elevation.js +11 -0
  39. package/lib/commonjs/components/FAB.js +10 -0
  40. package/lib/commonjs/components/FieldSearchBarFull.js +18 -0
  41. package/lib/commonjs/components/FormRow.js +10 -0
  42. package/lib/commonjs/components/Header.js +13 -0
  43. package/lib/commonjs/components/HeaderLarge.js +9 -0
  44. package/lib/commonjs/components/HeaderMedium.js +9 -0
  45. package/lib/commonjs/components/HeaderOverline.js +9 -0
  46. package/lib/commonjs/components/IconButton.js +10 -0
  47. package/lib/commonjs/components/Image.js +17 -0
  48. package/lib/commonjs/components/Layout.js +12 -2
  49. package/lib/commonjs/components/NumberInput.js +21 -8
  50. package/lib/commonjs/components/Picker/Picker.js +42 -9
  51. package/lib/commonjs/components/Picker/PickerComponent.android.js +23 -6
  52. package/lib/commonjs/components/Picker/PickerComponent.ios.js +27 -8
  53. package/lib/commonjs/components/Picker/PickerComponent.web.js +23 -6
  54. package/lib/commonjs/components/Portal/Portal.js +14 -4
  55. package/lib/commonjs/components/Portal/PortalConsumer.js +15 -5
  56. package/lib/commonjs/components/Portal/PortalHost.js +31 -4
  57. package/lib/commonjs/components/Portal/PortalManager.js +19 -7
  58. package/lib/commonjs/components/ProgressBar.js +25 -5
  59. package/lib/commonjs/components/ProgressCircle.js +10 -0
  60. package/lib/commonjs/components/ProgressIndicator.js +9 -0
  61. package/lib/commonjs/components/RadioButton/RadioButton.js +14 -1
  62. package/lib/commonjs/components/RadioButton/RadioButtonFieldGroup.js +10 -0
  63. package/lib/commonjs/components/RadioButton/RadioButtonGroup.js +14 -0
  64. package/lib/commonjs/components/RadioButton/RadioButtonRow.js +21 -1
  65. package/lib/commonjs/components/RadioButton/context.js +5 -0
  66. package/lib/commonjs/components/RadioButton/index.js +5 -0
  67. package/lib/commonjs/components/Row.js +11 -0
  68. package/lib/commonjs/components/RowBodyIcon.js +10 -0
  69. package/lib/commonjs/components/RowHeadlineImageCaption.js +11 -2
  70. package/lib/commonjs/components/RowHeadlineImageIcon.js +10 -0
  71. package/lib/commonjs/components/SVG.js +9 -0
  72. package/lib/commonjs/components/ScreenContainer.js +14 -0
  73. package/lib/commonjs/components/Slider.js +21 -0
  74. package/lib/commonjs/components/StarRating.js +10 -0
  75. package/lib/commonjs/components/StepIndicator.js +39 -5
  76. package/lib/commonjs/components/Stepper.js +26 -7
  77. package/lib/commonjs/components/Surface.js +14 -0
  78. package/lib/commonjs/components/Swiper/Swiper.js +8 -0
  79. package/lib/commonjs/components/Swiper/SwiperItem.js +6 -0
  80. package/lib/commonjs/components/Swiper/index.js +3 -0
  81. package/lib/commonjs/components/Switch.js +18 -5
  82. package/lib/commonjs/components/Text.js +18 -3
  83. package/lib/commonjs/components/TextField.js +62 -12
  84. package/lib/commonjs/components/ToggleButton.js +14 -0
  85. package/lib/commonjs/components/Touchable.js +5 -0
  86. package/lib/commonjs/components/Touchable.web.js +2 -0
  87. package/lib/commonjs/components/Typography.js +5 -0
  88. package/lib/commonjs/components/useAuthState.js +9 -0
  89. package/lib/commonjs/constants.js +4 -0
  90. package/lib/commonjs/hooks.js +7 -4
  91. package/lib/commonjs/index.js +52 -37
  92. package/lib/commonjs/interfaces/Icon.js +5 -3
  93. package/lib/commonjs/mappings/Accordion.js +2 -0
  94. package/lib/commonjs/mappings/AccordionItem.js +2 -0
  95. package/lib/commonjs/mappings/ActionSheet.js +2 -0
  96. package/lib/commonjs/mappings/ActionSheetCancel.js +2 -0
  97. package/lib/commonjs/mappings/ActionSheetItem.js +2 -0
  98. package/lib/commonjs/mappings/ActivityIndicator.js +2 -0
  99. package/lib/commonjs/mappings/AudioPlayer.js +2 -0
  100. package/lib/commonjs/mappings/AvatarEdit.js +2 -0
  101. package/lib/commonjs/mappings/Banner.js +2 -0
  102. package/lib/commonjs/mappings/BlurView.js +2 -0
  103. package/lib/commonjs/mappings/Button.js +5 -6
  104. package/lib/commonjs/mappings/Card.js +4 -3
  105. package/lib/commonjs/mappings/CardBlock.js +5 -6
  106. package/lib/commonjs/mappings/CardContainer.js +7 -5
  107. package/lib/commonjs/mappings/CardContainerRating.js +4 -4
  108. package/lib/commonjs/mappings/CardContainerShortImage.js +2 -0
  109. package/lib/commonjs/mappings/CardInline.js +2 -0
  110. package/lib/commonjs/mappings/Carousel.js +2 -0
  111. package/lib/commonjs/mappings/Checkbox.js +2 -0
  112. package/lib/commonjs/mappings/CheckboxGroup.js +2 -0
  113. package/lib/commonjs/mappings/CheckboxRow.js +2 -0
  114. package/lib/commonjs/mappings/CircleImage.js +2 -0
  115. package/lib/commonjs/mappings/Container.js +2 -0
  116. package/lib/commonjs/mappings/CustomCode.js +2 -0
  117. package/lib/commonjs/mappings/DatePicker.js +4 -4
  118. package/lib/commonjs/mappings/Divider.js +2 -0
  119. package/lib/commonjs/mappings/FAB.js +2 -0
  120. package/lib/commonjs/mappings/Fetch.js +2 -0
  121. package/lib/commonjs/mappings/FieldSearchBarFull.js +3 -2
  122. package/lib/commonjs/mappings/FlashList.js +2 -0
  123. package/lib/commonjs/mappings/FlatList.js +2 -0
  124. package/lib/commonjs/mappings/HeaderLarge.js +2 -0
  125. package/lib/commonjs/mappings/HeaderMedium.js +2 -0
  126. package/lib/commonjs/mappings/HeaderOverline.js +2 -0
  127. package/lib/commonjs/mappings/Icon.js +3 -2
  128. package/lib/commonjs/mappings/IconButton.js +2 -0
  129. package/lib/commonjs/mappings/Image.js +2 -0
  130. package/lib/commonjs/mappings/ImageBackground.js +2 -0
  131. package/lib/commonjs/mappings/KeyboardAvoidingView.js +2 -0
  132. package/lib/commonjs/mappings/KeyboardAwareScrollView.js +2 -0
  133. package/lib/commonjs/mappings/Layout.js +2 -0
  134. package/lib/commonjs/mappings/LinearGradient.js +2 -0
  135. package/lib/commonjs/mappings/MapCallout.js +2 -0
  136. package/lib/commonjs/mappings/MapMarker.js +2 -0
  137. package/lib/commonjs/mappings/MapView.js +2 -0
  138. package/lib/commonjs/mappings/Modal.js +2 -0
  139. package/lib/commonjs/mappings/NumberInput.js +4 -4
  140. package/lib/commonjs/mappings/Picker.js +4 -4
  141. package/lib/commonjs/mappings/ProgressBar.js +2 -0
  142. package/lib/commonjs/mappings/ProgressCircle.js +2 -0
  143. package/lib/commonjs/mappings/ProgressIndicator.js +2 -0
  144. package/lib/commonjs/mappings/RadioButton.js +2 -0
  145. package/lib/commonjs/mappings/RadioButtonGroup.js +2 -0
  146. package/lib/commonjs/mappings/RadioButtonRow.js +2 -0
  147. package/lib/commonjs/mappings/RowBodyIcon.js +2 -0
  148. package/lib/commonjs/mappings/RowHeadlineImageCaption.js +2 -0
  149. package/lib/commonjs/mappings/RowHeadlineImageIcon.js +8 -12
  150. package/lib/commonjs/mappings/SVG.js +2 -0
  151. package/lib/commonjs/mappings/SafeAreaView.js +2 -0
  152. package/lib/commonjs/mappings/ScrollView.js +2 -0
  153. package/lib/commonjs/mappings/Slider.js +2 -0
  154. package/lib/commonjs/mappings/StarRating.js +3 -1
  155. package/lib/commonjs/mappings/Stepper.js +3 -1
  156. package/lib/commonjs/mappings/Surface.js +2 -0
  157. package/lib/commonjs/mappings/Swiper.js +2 -0
  158. package/lib/commonjs/mappings/SwiperItem.js +2 -0
  159. package/lib/commonjs/mappings/Switch.js +2 -0
  160. package/lib/commonjs/mappings/Text.js +5 -5
  161. package/lib/commonjs/mappings/TextArea.js +3 -2
  162. package/lib/commonjs/mappings/TextField.js +8 -7
  163. package/lib/commonjs/mappings/TextInput.js +3 -2
  164. package/lib/commonjs/mappings/ToggleButton.js +2 -0
  165. package/lib/commonjs/mappings/Touchable.js +2 -0
  166. package/lib/commonjs/mappings/Video.js +2 -0
  167. package/lib/commonjs/mappings/View.js +2 -0
  168. package/lib/commonjs/mappings/WebView.js +2 -0
  169. package/lib/commonjs/styles/DarkTheme.js +6 -5
  170. package/lib/commonjs/styles/DefaultTheme.js +17 -26
  171. package/lib/commonjs/styles/fonts.js +5 -3
  172. package/lib/commonjs/styles/overlay.js +14 -5
  173. package/lib/commonjs/styles/shadow.js +9 -0
  174. package/lib/commonjs/theming.js +4 -0
  175. package/lib/commonjs/utilities.js +16 -4
  176. package/lib/module/Provider.js +1 -0
  177. package/lib/module/components/Accordion/AccordionGroup.js +4 -0
  178. package/lib/module/components/Accordion/AccordionItem.js +3 -0
  179. package/lib/module/components/ActionSheet/ActionSheet.js +2 -0
  180. package/lib/module/components/ActionSheet/ActionSheetCancel.js +2 -0
  181. package/lib/module/components/ActionSheet/ActionSheetItem.js +2 -0
  182. package/lib/module/components/AnimatedCircularProgress.js +6 -0
  183. package/lib/module/components/AspectRatio.js +24 -1
  184. package/lib/module/components/AvatarEdit.js +3 -0
  185. package/lib/module/components/Banner.js +10 -9
  186. package/lib/module/components/Button.js +10 -2
  187. package/lib/module/components/Card.js +2 -0
  188. package/lib/module/components/CardBlock.js +6 -0
  189. package/lib/module/components/CardContainer.js +7 -0
  190. package/lib/module/components/CardContainerRating.js +8 -2
  191. package/lib/module/components/CardContainerShortImage.js +21 -4
  192. package/lib/module/components/CardInline.js +2 -0
  193. package/lib/module/components/Carousel.js +9 -3
  194. package/lib/module/components/Checkbox/Checkbox.js +10 -6
  195. package/lib/module/components/Checkbox/CheckboxGroup.js +5 -0
  196. package/lib/module/components/Checkbox/CheckboxGroupRow.js +8 -0
  197. package/lib/module/components/Checkbox/CheckboxRow.js +11 -3
  198. package/lib/module/components/Checkbox/context.js +2 -0
  199. package/lib/module/components/CircleImage.js +3 -0
  200. package/lib/module/components/CircularProgress.js +9 -3
  201. package/lib/module/components/Config.js +11 -5
  202. package/lib/module/components/Container.js +3 -0
  203. package/lib/module/components/DatePicker/DatePicker.js +33 -16
  204. package/lib/module/components/DatePicker/DatePickerComponent.js +2 -0
  205. package/lib/module/components/DatePicker/DatePickerComponent.web.js +2 -0
  206. package/lib/module/components/DeprecatedButton.js +9 -0
  207. package/lib/module/components/DeprecatedCardWrapper.js +6 -0
  208. package/lib/module/components/DeprecatedFAB.js +13 -0
  209. package/lib/module/components/Divider.js +3 -0
  210. package/lib/module/components/Elevation.js +3 -0
  211. package/lib/module/components/FAB.js +3 -0
  212. package/lib/module/components/FieldSearchBarFull.js +9 -0
  213. package/lib/module/components/FormRow.js +1 -0
  214. package/lib/module/components/Header.js +2 -0
  215. package/lib/module/components/HeaderLarge.js +2 -0
  216. package/lib/module/components/HeaderMedium.js +2 -0
  217. package/lib/module/components/HeaderOverline.js +2 -0
  218. package/lib/module/components/IconButton.js +3 -0
  219. package/lib/module/components/Image.js +10 -0
  220. package/lib/module/components/Layout.js +3 -4
  221. package/lib/module/components/NumberInput.js +16 -8
  222. package/lib/module/components/Picker/Picker.js +25 -8
  223. package/lib/module/components/Picker/PickerComponent.android.js +29 -7
  224. package/lib/module/components/Picker/PickerComponent.ios.js +11 -8
  225. package/lib/module/components/Picker/PickerComponent.web.js +29 -7
  226. package/lib/module/components/Portal/Portal.js +6 -4
  227. package/lib/module/components/Portal/PortalConsumer.js +10 -5
  228. package/lib/module/components/Portal/PortalHost.js +22 -4
  229. package/lib/module/components/Portal/PortalManager.js +14 -7
  230. package/lib/module/components/ProgressBar.js +17 -5
  231. package/lib/module/components/ProgressCircle.js +2 -0
  232. package/lib/module/components/ProgressIndicator.js +2 -0
  233. package/lib/module/components/RadioButton/RadioButton.js +6 -1
  234. package/lib/module/components/RadioButton/RadioButtonFieldGroup.js +3 -0
  235. package/lib/module/components/RadioButton/RadioButtonGroup.js +7 -0
  236. package/lib/module/components/RadioButton/RadioButtonRow.js +9 -1
  237. package/lib/module/components/RadioButton/context.js +2 -0
  238. package/lib/module/components/Row.js +2 -0
  239. package/lib/module/components/RowBodyIcon.js +2 -0
  240. package/lib/module/components/RowHeadlineImageCaption.js +3 -2
  241. package/lib/module/components/RowHeadlineImageIcon.js +2 -0
  242. package/lib/module/components/SVG.js +2 -0
  243. package/lib/module/components/ScreenContainer.js +6 -0
  244. package/lib/module/components/Slider.js +10 -0
  245. package/lib/module/components/StarRating.js +26 -4
  246. package/lib/module/components/StepIndicator.js +29 -5
  247. package/lib/module/components/Stepper.js +16 -9
  248. package/lib/module/components/Surface.js +5 -0
  249. package/lib/module/components/Swiper/Swiper.js +4 -0
  250. package/lib/module/components/Swiper/SwiperItem.js +2 -0
  251. package/lib/module/components/Switch.js +27 -12
  252. package/lib/module/components/Text.js +10 -3
  253. package/lib/module/components/TextField.js +50 -12
  254. package/lib/module/components/ToggleButton.js +5 -0
  255. package/lib/module/components/Touchable.js +1 -0
  256. package/lib/module/components/useAuthState.js +4 -0
  257. package/lib/module/constants.js +2 -2
  258. package/lib/module/hooks.js +2 -4
  259. package/lib/module/index.js +2 -5
  260. package/lib/module/interfaces/Icon.js +1 -2
  261. package/lib/module/mappings/Button.js +3 -6
  262. package/lib/module/mappings/Card.js +2 -3
  263. package/lib/module/mappings/CardBlock.js +3 -6
  264. package/lib/module/mappings/CardContainer.js +5 -5
  265. package/lib/module/mappings/CardContainerRating.js +2 -4
  266. package/lib/module/mappings/DatePicker.js +2 -4
  267. package/lib/module/mappings/Fetch.js +1 -0
  268. package/lib/module/mappings/FieldSearchBarFull.js +1 -2
  269. package/lib/module/mappings/Icon.js +1 -2
  270. package/lib/module/mappings/NumberInput.js +2 -4
  271. package/lib/module/mappings/Picker.js +2 -4
  272. package/lib/module/mappings/RowHeadlineImageIcon.js +6 -12
  273. package/lib/module/mappings/StarRating.js +1 -1
  274. package/lib/module/mappings/Stepper.js +2 -2
  275. package/lib/module/mappings/Text.js +3 -5
  276. package/lib/module/mappings/TextArea.js +1 -2
  277. package/lib/module/mappings/TextField.js +6 -7
  278. package/lib/module/mappings/TextInput.js +1 -2
  279. package/lib/module/styles/DarkTheme.js +2 -4
  280. package/lib/module/styles/DefaultTheme.js +13 -26
  281. package/lib/module/styles/fonts.js +1 -2
  282. package/lib/module/styles/overlay.js +10 -4
  283. package/lib/module/styles/shadow.js +6 -0
  284. package/lib/module/utilities.js +8 -5
  285. package/lib/typescript/src/components/Stepper.d.ts +1 -2
  286. package/lib/typescript/src/index.d.ts +0 -1
  287. package/lib/typescript/src/utilities.d.ts +3 -3
  288. package/package.json +3 -3
  289. package/src/components/Picker/Picker.js +1 -1
  290. package/src/components/Picker/Picker.tsx +2 -2
  291. package/src/components/Stepper.js +5 -3
  292. package/src/components/Stepper.tsx +5 -5
  293. package/src/index.js +0 -1
  294. package/src/index.tsx +0 -9
  295. package/src/mappings/Stepper.js +5 -2
  296. package/src/mappings/Stepper.ts +5 -1
  297. package/src/utilities.js +2 -5
  298. package/src/utilities.ts +2 -13
  299. package/lib/commonjs/components/Table/Table.js +0 -28
  300. package/lib/commonjs/components/Table/TableCell.js +0 -42
  301. package/lib/commonjs/components/Table/TableHeader.js +0 -32
  302. package/lib/commonjs/components/Table/TablePaginator.js +0 -12
  303. package/lib/commonjs/components/Table/TableRow.js +0 -38
  304. package/lib/commonjs/components/Table/TableTitle.js +0 -53
  305. package/lib/commonjs/components/Table/index.js +0 -48
  306. package/lib/commonjs/mappings/Table.js +0 -100
  307. package/lib/module/components/Table/Table.js +0 -20
  308. package/lib/module/components/Table/TableCell.js +0 -34
  309. package/lib/module/components/Table/TableHeader.js +0 -24
  310. package/lib/module/components/Table/TablePaginator.js +0 -4
  311. package/lib/module/components/Table/TableRow.js +0 -30
  312. package/lib/module/components/Table/TableTitle.js +0 -45
  313. package/lib/module/components/Table/index.js +0 -6
  314. package/lib/module/mappings/Table.js +0 -93
  315. package/lib/typescript/src/components/Table/Table.d.ts +0 -8
  316. package/lib/typescript/src/components/Table/TableCell.d.ts +0 -10
  317. package/lib/typescript/src/components/Table/TableHeader.d.ts +0 -12
  318. package/lib/typescript/src/components/Table/TablePaginator.d.ts +0 -3
  319. package/lib/typescript/src/components/Table/TableRow.d.ts +0 -12
  320. package/lib/typescript/src/components/Table/TableTitle.d.ts +0 -12
  321. package/lib/typescript/src/components/Table/index.d.ts +0 -6
  322. package/lib/typescript/src/mappings/Table.d.ts +0 -148
  323. package/src/components/Table/Table.js +0 -10
  324. package/src/components/Table/Table.tsx +0 -22
  325. package/src/components/Table/TableCell.js +0 -21
  326. package/src/components/Table/TableCell.tsx +0 -44
  327. package/src/components/Table/TableHeader.js +0 -11
  328. package/src/components/Table/TableHeader.tsx +0 -28
  329. package/src/components/Table/TablePaginator.js +0 -5
  330. package/src/components/Table/TablePaginator.tsx +0 -10
  331. package/src/components/Table/TableRow.js +0 -16
  332. package/src/components/Table/TableRow.tsx +0 -31
  333. package/src/components/Table/TableTitle.js +0 -28
  334. package/src/components/Table/TableTitle.tsx +0 -58
  335. package/src/components/Table/index.js +0 -6
  336. package/src/components/Table/index.tsx +0 -6
  337. package/src/mappings/Table.js +0 -136
  338. package/src/mappings/Table.ts +0 -144
@@ -1,42 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _reactNative = require("react-native");
9
- var _utilities = require("../../utilities");
10
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
- 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); }
12
- const TableCell = _ref => {
13
- let {
14
- children,
15
- style,
16
- numeric,
17
- value,
18
- ...rest
19
- } = _ref;
20
- const {
21
- textStyles,
22
- viewStyles
23
- } = (0, _utilities.extractStyles)(style);
24
- return /*#__PURE__*/_react.default.createElement(_reactNative.View, _extends({}, rest, {
25
- style: [styles.wrapper, numeric && styles.right, viewStyles]
26
- }), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
27
- numberOfLines: 1,
28
- style: textStyles
29
- }, children, value));
30
- };
31
- const styles = _reactNative.StyleSheet.create({
32
- wrapper: {
33
- flex: 1,
34
- display: "flex",
35
- flexDirection: "row"
36
- },
37
- right: {
38
- justifyContent: "flex-end"
39
- }
40
- });
41
- var _default = TableCell;
42
- exports.default = _default;
@@ -1,32 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _reactNative = require("react-native");
9
- var _theming = require("../../theming");
10
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
- 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); }
12
- const TableHeader = _ref => {
13
- let {
14
- children,
15
- style,
16
- theme,
17
- ...rest
18
- } = _ref;
19
- return /*#__PURE__*/_react.default.createElement(_reactNative.View, _extends({}, rest, {
20
- style: [styles.wrapper, {
21
- borderBottomColor: theme.colors.medium
22
- }, style]
23
- }), children);
24
- };
25
- const styles = _reactNative.StyleSheet.create({
26
- wrapper: {
27
- display: "flex",
28
- flexDirection: "row"
29
- }
30
- });
31
- var _default = (0, _theming.withTheme)(TableHeader);
32
- exports.default = _default;
@@ -1,12 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _reactNative = require("react-native");
9
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
- const TablePaginator = () => /*#__PURE__*/_react.default.createElement(_reactNative.View, null, /*#__PURE__*/_react.default.createElement(_reactNative.Text, null, "Table Paginator"));
11
- var _default = TablePaginator;
12
- exports.default = _default;
@@ -1,38 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _reactNative = require("react-native");
9
- var _theming = require("../../theming");
10
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
- 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); }
12
- const TableRow = _ref => {
13
- let {
14
- children,
15
- style,
16
- theme,
17
- ...rest
18
- } = _ref;
19
- return /*#__PURE__*/_react.default.createElement(_reactNative.View, _extends({}, rest, {
20
- style: [styles.container, {
21
- borderBottomColor: theme.colors.light
22
- }, style]
23
- }), /*#__PURE__*/_react.default.createElement(_reactNative.View, {
24
- style: styles.content
25
- }, children));
26
- };
27
- const styles = _reactNative.StyleSheet.create({
28
- container: {
29
- display: "flex",
30
- flexDirection: "row"
31
- },
32
- content: {
33
- flex: 1,
34
- flexDirection: "row"
35
- }
36
- });
37
- var _default = (0, _theming.withTheme)(TableRow);
38
- exports.default = _default;
@@ -1,53 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _reactNative = require("react-native");
9
- var _utilities = require("../../utilities");
10
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
- 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); }
12
- const TableTitle = _ref => {
13
- let {
14
- children,
15
- style,
16
- numeric = false,
17
- isAscending = false,
18
- numberOfLines = 1,
19
- title,
20
- ...rest
21
- } = _ref;
22
- const {
23
- textStyles,
24
- viewStyles
25
- } = (0, _utilities.extractStyles)(style);
26
- return /*#__PURE__*/_react.default.createElement(_reactNative.View, _extends({}, rest, {
27
- style: [styles.wrapper, numeric && styles.right, viewStyles]
28
- }), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
29
- style: [isAscending ? styles.sorted : {
30
- color: "gray"
31
- }, textStyles],
32
- numberOfLines: numberOfLines
33
- }, children, title));
34
- };
35
- const styles = _reactNative.StyleSheet.create({
36
- wrapper: {
37
- flex: 1,
38
- display: "flex",
39
- flexDirection: "row"
40
- },
41
- right: {
42
- justifyContent: "flex-end"
43
- },
44
- sorted: {
45
- // marginLeft: 8,
46
- },
47
- icon: {
48
- height: 24,
49
- justifyContent: "center"
50
- }
51
- });
52
- var _default = TableTitle;
53
- exports.default = _default;
@@ -1,48 +0,0 @@
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
- var _Table = _interopRequireDefault(require("./Table"));
43
- var _TableHeader = _interopRequireDefault(require("./TableHeader"));
44
- var _TablePaginator = _interopRequireDefault(require("./TablePaginator"));
45
- var _TableRow = _interopRequireDefault(require("./TableRow"));
46
- var _TableCell = _interopRequireDefault(require("./TableCell"));
47
- var _TableTitle = _interopRequireDefault(require("./TableTitle"));
48
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
@@ -1,100 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.SEED_DATA = void 0;
7
- var _types = require("@draftbit/types");
8
- const SEED_DATA = [{
9
- name: "Table",
10
- tag: "Table",
11
- category: _types.COMPONENT_TYPES.container,
12
- stylesPanelSections: [_types.StylesPanelSections.Background, _types.StylesPanelSections.Borders, _types.StylesPanelSections.Size, _types.StylesPanelSections.MarginsAndPaddings, _types.StylesPanelSections.Position, _types.StylesPanelSections.Effects],
13
- layout: {
14
- width: "100%"
15
- },
16
- props: {}
17
- }, {
18
- name: "Table Row",
19
- tag: "TableRow",
20
- category: _types.COMPONENT_TYPES.container,
21
- stylesPanelSections: [_types.StylesPanelSections.Background, _types.StylesPanelSections.Borders, _types.StylesPanelSections.Size, _types.StylesPanelSections.MarginsAndPaddings, _types.StylesPanelSections.Position, _types.StylesPanelSections.Effects],
22
- layout: {
23
- paddingLeft: 16,
24
- paddingRight: 16,
25
- borderBottomWidth: 1,
26
- borderStyle: "solid"
27
- },
28
- props: {}
29
- }, {
30
- name: "Table Cell",
31
- tag: "TableCell",
32
- category: _types.COMPONENT_TYPES.container,
33
- layout: {
34
- paddingTop: 16,
35
- paddingBottom: 16,
36
- paddingLeft: 8,
37
- paddingRight: 8
38
- },
39
- stylesPanelSections: [_types.StylesPanelSections.Typography, _types.StylesPanelSections.Background, _types.StylesPanelSections.Borders, _types.StylesPanelSections.Size, _types.StylesPanelSections.MarginsAndPaddings, _types.StylesPanelSections.Position, _types.StylesPanelSections.Effects],
40
- props: {
41
- numeric: (0, _types.createBoolProp)({
42
- label: "Is Numeric Cell?",
43
- description: "Does the cell contain a numeric value?",
44
- group: _types.GROUPS.data
45
- }),
46
- value: (0, _types.createTextProp)({
47
- label: "Cell Value",
48
- description: "Table Cell Value",
49
- group: _types.GROUPS.data
50
- })
51
- }
52
- }, {
53
- name: "Table Header",
54
- tag: "TableHeader",
55
- category: _types.COMPONENT_TYPES.container,
56
- stylesPanelSections: [_types.StylesPanelSections.Background, _types.StylesPanelSections.Borders, _types.StylesPanelSections.Size, _types.StylesPanelSections.MarginsAndPaddings, _types.StylesPanelSections.Position, _types.StylesPanelSections.Effects],
57
- layout: {
58
- paddingLeft: 16,
59
- paddingRight: 16,
60
- borderBottomWidth: 1,
61
- borderStyle: "solid",
62
- backgroundColor: "#EFEFEF"
63
- },
64
- props: {}
65
- }, {
66
- name: "Table Title",
67
- tag: "TableTitle",
68
- category: _types.COMPONENT_TYPES.container,
69
- stylesPanelSections: [_types.StylesPanelSections.Typography, _types.StylesPanelSections.Background, _types.StylesPanelSections.Borders, _types.StylesPanelSections.Size, _types.StylesPanelSections.MarginsAndPaddings, _types.StylesPanelSections.Position, _types.StylesPanelSections.Effects],
70
- layout: {
71
- fontSize: 14,
72
- paddingTop: 16,
73
- paddingBottom: 16,
74
- paddingLeft: 8,
75
- paddingRight: 8
76
- },
77
- props: {
78
- numeric: (0, _types.createBoolProp)({
79
- label: "Is Numeric Cell?",
80
- description: "Does the cell contain a numeric value?",
81
- group: _types.GROUPS.data
82
- }),
83
- value: (0, _types.createTextProp)({
84
- label: "Cell Value",
85
- description: "Table Cell Value",
86
- group: _types.GROUPS.data
87
- }),
88
- isAscending: (0, _types.createBoolProp)({
89
- label: "Is Ascending?",
90
- description: "Does the cell contain a numeric value?",
91
- group: _types.GROUPS.data
92
- }),
93
- numberOfLines: (0, _types.createNumberProp)({
94
- label: "Number of Lines",
95
- description: "Number of Lines",
96
- group: _types.GROUPS.basic
97
- })
98
- }
99
- }];
100
- exports.SEED_DATA = SEED_DATA;
@@ -1,20 +0,0 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
- import React from "react";
3
- import { View, StyleSheet } from "react-native";
4
- const Table = _ref => {
5
- let {
6
- children,
7
- style,
8
- ...rest
9
- } = _ref;
10
- return /*#__PURE__*/React.createElement(View, _extends({}, rest, {
11
- style: [styles.wrapper, style]
12
- }), children);
13
- };
14
- const styles = StyleSheet.create({
15
- wrapper: {
16
- display: "flex",
17
- flexDirection: "column"
18
- }
19
- });
20
- export default Table;
@@ -1,34 +0,0 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
- import React from "react";
3
- import { View, Text, StyleSheet } from "react-native";
4
- import { extractStyles } from "../../utilities";
5
- const TableCell = _ref => {
6
- let {
7
- children,
8
- style,
9
- numeric,
10
- value,
11
- ...rest
12
- } = _ref;
13
- const {
14
- textStyles,
15
- viewStyles
16
- } = extractStyles(style);
17
- return /*#__PURE__*/React.createElement(View, _extends({}, rest, {
18
- style: [styles.wrapper, numeric && styles.right, viewStyles]
19
- }), /*#__PURE__*/React.createElement(Text, {
20
- numberOfLines: 1,
21
- style: textStyles
22
- }, children, value));
23
- };
24
- const styles = StyleSheet.create({
25
- wrapper: {
26
- flex: 1,
27
- display: "flex",
28
- flexDirection: "row"
29
- },
30
- right: {
31
- justifyContent: "flex-end"
32
- }
33
- });
34
- export default TableCell;
@@ -1,24 +0,0 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
- import React from "react";
3
- import { View, StyleSheet } from "react-native";
4
- import { withTheme } from "../../theming";
5
- const TableHeader = _ref => {
6
- let {
7
- children,
8
- style,
9
- theme,
10
- ...rest
11
- } = _ref;
12
- return /*#__PURE__*/React.createElement(View, _extends({}, rest, {
13
- style: [styles.wrapper, {
14
- borderBottomColor: theme.colors.medium
15
- }, style]
16
- }), children);
17
- };
18
- const styles = StyleSheet.create({
19
- wrapper: {
20
- display: "flex",
21
- flexDirection: "row"
22
- }
23
- });
24
- export default withTheme(TableHeader);
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { View, Text } from "react-native";
3
- const TablePaginator = () => /*#__PURE__*/React.createElement(View, null, /*#__PURE__*/React.createElement(Text, null, "Table Paginator"));
4
- export default TablePaginator;
@@ -1,30 +0,0 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
- import React from "react";
3
- import { View, StyleSheet } from "react-native";
4
- import { withTheme } from "../../theming";
5
- const TableRow = _ref => {
6
- let {
7
- children,
8
- style,
9
- theme,
10
- ...rest
11
- } = _ref;
12
- return /*#__PURE__*/React.createElement(View, _extends({}, rest, {
13
- style: [styles.container, {
14
- borderBottomColor: theme.colors.light
15
- }, style]
16
- }), /*#__PURE__*/React.createElement(View, {
17
- style: styles.content
18
- }, children));
19
- };
20
- const styles = StyleSheet.create({
21
- container: {
22
- display: "flex",
23
- flexDirection: "row"
24
- },
25
- content: {
26
- flex: 1,
27
- flexDirection: "row"
28
- }
29
- });
30
- export default withTheme(TableRow);
@@ -1,45 +0,0 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
- import React from "react";
3
- import { View, Text, StyleSheet } from "react-native";
4
- import { extractStyles } from "../../utilities";
5
- const TableTitle = _ref => {
6
- let {
7
- children,
8
- style,
9
- numeric = false,
10
- isAscending = false,
11
- numberOfLines = 1,
12
- title,
13
- ...rest
14
- } = _ref;
15
- const {
16
- textStyles,
17
- viewStyles
18
- } = extractStyles(style);
19
- return /*#__PURE__*/React.createElement(View, _extends({}, rest, {
20
- style: [styles.wrapper, numeric && styles.right, viewStyles]
21
- }), /*#__PURE__*/React.createElement(Text, {
22
- style: [isAscending ? styles.sorted : {
23
- color: "gray"
24
- }, textStyles],
25
- numberOfLines: numberOfLines
26
- }, children, title));
27
- };
28
- const styles = StyleSheet.create({
29
- wrapper: {
30
- flex: 1,
31
- display: "flex",
32
- flexDirection: "row"
33
- },
34
- right: {
35
- justifyContent: "flex-end"
36
- },
37
- sorted: {
38
- // marginLeft: 8,
39
- },
40
- icon: {
41
- height: 24,
42
- justifyContent: "center"
43
- }
44
- });
45
- export default TableTitle;
@@ -1,6 +0,0 @@
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";
@@ -1,93 +0,0 @@
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
- paddingTop: 16,
67
- paddingBottom: 16,
68
- paddingLeft: 8,
69
- paddingRight: 8
70
- },
71
- props: {
72
- numeric: createBoolProp({
73
- label: "Is Numeric Cell?",
74
- description: "Does the cell contain a numeric value?",
75
- group: GROUPS.data
76
- }),
77
- value: createTextProp({
78
- label: "Cell Value",
79
- description: "Table Cell Value",
80
- group: GROUPS.data
81
- }),
82
- isAscending: createBoolProp({
83
- label: "Is Ascending?",
84
- description: "Does the cell contain a numeric value?",
85
- group: GROUPS.data
86
- }),
87
- numberOfLines: createNumberProp({
88
- label: "Number of Lines",
89
- description: "Number of Lines",
90
- group: GROUPS.basic
91
- })
92
- }
93
- }];
@@ -1,8 +0,0 @@
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;
@@ -1,10 +0,0 @@
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;
@@ -1,12 +0,0 @@
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;
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- declare const TablePaginator: () => JSX.Element;
3
- export default TablePaginator;
@@ -1,12 +0,0 @@
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;
@@ -1,12 +0,0 @@
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;
@@ -1,6 +0,0 @@
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";