@draftbit/core 48.4.8-f6d6b8.2 → 48.4.8-fa5021.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 (298) hide show
  1. package/lib/typescript/tsconfig.tsbuildinfo +1 -1
  2. package/package.json +3 -3
  3. package/src/Provider.js +10 -0
  4. package/src/Provider.js.map +1 -0
  5. package/src/components/AccordionGroup.js +45 -0
  6. package/src/components/AccordionGroup.js.map +1 -0
  7. package/src/components/ActionSheet/ActionSheet.js +46 -0
  8. package/src/components/ActionSheet/ActionSheet.js.map +1 -0
  9. package/src/components/ActionSheet/ActionSheetCancel.js +7 -0
  10. package/src/components/ActionSheet/ActionSheetCancel.js.map +1 -0
  11. package/src/components/ActionSheet/ActionSheetItem.js +31 -0
  12. package/src/components/ActionSheet/ActionSheetItem.js.map +1 -0
  13. package/src/components/ActionSheet/index.js +4 -0
  14. package/src/components/ActionSheet/index.js.map +1 -0
  15. package/src/components/AspectRatio.js +19 -0
  16. package/src/components/AspectRatio.js.map +1 -0
  17. package/src/components/BottomSheet/BottomSheet.js +72 -0
  18. package/src/components/BottomSheet/BottomSheet.js.map +1 -0
  19. package/src/components/BottomSheet/BottomSheetComponent.js +438 -0
  20. package/src/components/BottomSheet/BottomSheetComponent.js.map +1 -0
  21. package/src/components/BottomSheet/index.js +2 -0
  22. package/src/components/BottomSheet/index.js.map +1 -0
  23. package/src/components/Button.js +121 -0
  24. package/src/components/Button.js.map +1 -0
  25. package/src/components/Checkbox/Checkbox.js +63 -0
  26. package/src/components/Checkbox/Checkbox.js.map +1 -0
  27. package/src/components/Checkbox/CheckboxGroupRow.js +77 -0
  28. package/src/components/Checkbox/CheckboxGroupRow.js.map +1 -0
  29. package/src/components/Checkbox/CheckboxRow.js +78 -0
  30. package/src/components/Checkbox/CheckboxRow.js.map +1 -0
  31. package/src/components/Checkbox/context.js +15 -0
  32. package/src/components/Checkbox/context.js.map +1 -0
  33. package/src/components/Checkbox/index.js +3 -0
  34. package/src/components/Checkbox/index.js.map +1 -0
  35. package/src/components/Config.js +65 -0
  36. package/src/components/Config.js.map +1 -0
  37. package/src/components/DatePicker/DatePicker.js +384 -0
  38. package/src/components/DatePicker/DatePicker.js.map +1 -0
  39. package/src/components/DatePicker/DatePickerComponent.js +14 -0
  40. package/src/components/DatePicker/DatePickerComponent.js.map +1 -0
  41. package/src/components/DatePicker/DatePickerComponent.web.js +31 -0
  42. package/src/components/DatePicker/DatePickerComponent.web.js.map +1 -0
  43. package/src/components/DatePicker/DatePickerComponentType.js +2 -0
  44. package/src/components/DatePicker/DatePickerComponentType.js.map +1 -0
  45. package/src/components/DeckSwiper/DeckSwiper.js +91 -0
  46. package/src/components/DeckSwiper/DeckSwiper.js.map +1 -0
  47. package/src/components/DeckSwiper/DeckSwiperCard.js +21 -0
  48. package/src/components/DeckSwiper/DeckSwiperCard.js.map +1 -0
  49. package/src/components/DeckSwiper/index.js +3 -0
  50. package/src/components/DeckSwiper/index.js.map +1 -0
  51. package/src/components/Divider.js +14 -0
  52. package/src/components/Divider.js.map +1 -0
  53. package/src/components/Elevation.js +21 -0
  54. package/src/components/Elevation.js.map +1 -0
  55. package/src/components/FormRow.js +20 -0
  56. package/src/components/FormRow.js.map +1 -0
  57. package/src/components/IconButton.js +36 -0
  58. package/src/components/IconButton.js.map +1 -0
  59. package/src/components/Image.js +48 -0
  60. package/src/components/Image.js.map +1 -0
  61. package/src/components/Layout/AspectRatio.js +7 -0
  62. package/src/components/Layout/AspectRatio.js.map +1 -0
  63. package/src/components/Layout/Center.js +15 -0
  64. package/src/components/Layout/Center.js.map +1 -0
  65. package/src/components/Layout/Circle.js +16 -0
  66. package/src/components/Layout/Circle.js.map +1 -0
  67. package/src/components/Layout/HStack.js +12 -0
  68. package/src/components/Layout/HStack.js.map +1 -0
  69. package/src/components/Layout/LayoutCommon.js +8 -0
  70. package/src/components/Layout/LayoutCommon.js.map +1 -0
  71. package/src/components/Layout/Spacer.js +15 -0
  72. package/src/components/Layout/Spacer.js.map +1 -0
  73. package/src/components/Layout/Square.js +25 -0
  74. package/src/components/Layout/Square.js.map +1 -0
  75. package/src/components/Layout/VStack.js +12 -0
  76. package/src/components/Layout/VStack.js.map +1 -0
  77. package/src/components/Layout/ZStack.js +20 -0
  78. package/src/components/Layout/ZStack.js.map +1 -0
  79. package/src/components/Layout/index.js +9 -0
  80. package/src/components/Layout/index.js.map +1 -0
  81. package/src/components/Markdown.js +11 -0
  82. package/src/components/Markdown.js.map +1 -0
  83. package/src/components/MediaPlayer/AudioPlayer/AudioPlayerCommon.js +2 -0
  84. package/src/components/MediaPlayer/AudioPlayer/AudioPlayerCommon.js.map +1 -0
  85. package/src/components/MediaPlayer/AudioPlayer/AudioPlayerWithInterface.js +126 -0
  86. package/src/components/MediaPlayer/AudioPlayer/AudioPlayerWithInterface.js.map +1 -0
  87. package/src/components/MediaPlayer/AudioPlayer/HeadlessAudioPlayer.js +93 -0
  88. package/src/components/MediaPlayer/AudioPlayer/HeadlessAudioPlayer.js.map +1 -0
  89. package/src/components/MediaPlayer/AudioPlayer/index.js +15 -0
  90. package/src/components/MediaPlayer/AudioPlayer/index.js.map +1 -0
  91. package/src/components/MediaPlayer/MediaPlaybackWrapper.js +42 -0
  92. package/src/components/MediaPlayer/MediaPlaybackWrapper.js.map +1 -0
  93. package/src/components/MediaPlayer/MediaPlayerCommon.js +24 -0
  94. package/src/components/MediaPlayer/MediaPlayerCommon.js.map +1 -0
  95. package/src/components/MediaPlayer/VideoPlayer/VideoPlayer.js +75 -0
  96. package/src/components/MediaPlayer/VideoPlayer/VideoPlayer.js.map +1 -0
  97. package/src/components/MediaPlayer/VideoPlayer/index.js +2 -0
  98. package/src/components/MediaPlayer/VideoPlayer/index.js.map +1 -0
  99. package/src/components/NumberInput.js +60 -0
  100. package/src/components/NumberInput.js.map +1 -0
  101. package/src/components/Picker/Picker.js +288 -0
  102. package/src/components/Picker/Picker.js.map +1 -0
  103. package/src/components/Picker/PickerComponent.android.js +70 -0
  104. package/src/components/Picker/PickerComponent.android.js.map +1 -0
  105. package/src/components/Picker/PickerComponent.ios.js +80 -0
  106. package/src/components/Picker/PickerComponent.ios.js.map +1 -0
  107. package/src/components/Picker/PickerComponent.web.js +71 -0
  108. package/src/components/Picker/PickerComponent.web.js.map +1 -0
  109. package/src/components/Picker/PickerTypes.js +2 -0
  110. package/src/components/Picker/PickerTypes.js.map +1 -0
  111. package/src/components/PinInput/CustomPinInputCell.js +11 -0
  112. package/src/components/PinInput/CustomPinInputCell.js.map +1 -0
  113. package/src/components/PinInput/PinInput.js +70 -0
  114. package/src/components/PinInput/PinInput.js.map +1 -0
  115. package/src/components/PinInput/PinInputText.js +14 -0
  116. package/src/components/PinInput/PinInputText.js.map +1 -0
  117. package/src/components/PinInput/index.js +4 -0
  118. package/src/components/PinInput/index.js.map +1 -0
  119. package/src/components/Portal/Portal.js +36 -0
  120. package/src/components/Portal/Portal.js.map +1 -0
  121. package/src/components/Portal/PortalConsumer.js +28 -0
  122. package/src/components/Portal/PortalConsumer.js.map +1 -0
  123. package/src/components/Portal/PortalHost.js +108 -0
  124. package/src/components/Portal/PortalHost.js.map +1 -0
  125. package/src/components/Portal/PortalManager.js +33 -0
  126. package/src/components/Portal/PortalManager.js.map +1 -0
  127. package/src/components/Pressable.js +13 -0
  128. package/src/components/Pressable.js.map +1 -0
  129. package/src/components/Progress/CircularProgress/CircularProgress.js +103 -0
  130. package/src/components/Progress/CircularProgress/CircularProgress.js.map +1 -0
  131. package/src/components/Progress/CircularProgress/index.js +14 -0
  132. package/src/components/Progress/CircularProgress/index.js.map +1 -0
  133. package/src/components/Progress/IndeterminateProgress.js +39 -0
  134. package/src/components/Progress/IndeterminateProgress.js.map +1 -0
  135. package/src/components/Progress/LinearProgress/LinearProgress.js +56 -0
  136. package/src/components/Progress/LinearProgress/LinearProgress.js.map +1 -0
  137. package/src/components/Progress/LinearProgress/index.js +14 -0
  138. package/src/components/Progress/LinearProgress/index.js.map +1 -0
  139. package/src/components/Progress/ProgressCommon.js +2 -0
  140. package/src/components/Progress/ProgressCommon.js.map +1 -0
  141. package/src/components/ProgressIndicator.js +28 -0
  142. package/src/components/ProgressIndicator.js.map +1 -0
  143. package/src/components/RadioButton/RadioButton.js +18 -0
  144. package/src/components/RadioButton/RadioButton.js.map +1 -0
  145. package/src/components/RadioButton/RadioButtonGroup.js +44 -0
  146. package/src/components/RadioButton/RadioButtonGroup.js.map +1 -0
  147. package/src/components/RadioButton/RadioButtonRow.js +77 -0
  148. package/src/components/RadioButton/RadioButtonRow.js.map +1 -0
  149. package/src/components/RadioButton/context.js +15 -0
  150. package/src/components/RadioButton/context.js.map +1 -0
  151. package/src/components/RadioButton/index.js +4 -0
  152. package/src/components/RadioButton/index.js.map +1 -0
  153. package/src/components/Row.js +49 -0
  154. package/src/components/Row.js.map +1 -0
  155. package/src/components/SVG.js +14 -0
  156. package/src/components/SVG.js.map +1 -0
  157. package/src/components/ScreenContainer.js +36 -0
  158. package/src/components/ScreenContainer.js.map +1 -0
  159. package/src/components/SectionList/SectionHeader.js +14 -0
  160. package/src/components/SectionList/SectionHeader.js.map +1 -0
  161. package/src/components/SectionList/SectionList.js +101 -0
  162. package/src/components/SectionList/SectionList.js.map +1 -0
  163. package/src/components/SectionList/index.js +3 -0
  164. package/src/components/SectionList/index.js.map +1 -0
  165. package/src/components/Shadow.js +26 -0
  166. package/src/components/Shadow.js.map +1 -0
  167. package/src/components/Slider.js +64 -0
  168. package/src/components/Slider.js.map +1 -0
  169. package/src/components/StarRating.js +51 -0
  170. package/src/components/StarRating.js.map +1 -0
  171. package/src/components/StepIndicator.js +347 -0
  172. package/src/components/StepIndicator.js.map +1 -0
  173. package/src/components/Stepper.js +42 -0
  174. package/src/components/Stepper.js.map +1 -0
  175. package/src/components/Surface.js +33 -0
  176. package/src/components/Surface.js.map +1 -0
  177. package/src/components/SwipeableItem/SwipeableItem.js +119 -0
  178. package/src/components/SwipeableItem/SwipeableItem.js.map +1 -0
  179. package/src/components/SwipeableItem/SwipeableItemButton.js +6 -0
  180. package/src/components/SwipeableItem/SwipeableItemButton.js.map +1 -0
  181. package/src/components/SwipeableItem/SwipeableItemCommon.js +44 -0
  182. package/src/components/SwipeableItem/SwipeableItemCommon.js.map +1 -0
  183. package/src/components/SwipeableItem/SwipeableList.js +29 -0
  184. package/src/components/SwipeableItem/SwipeableList.js.map +1 -0
  185. package/src/components/SwipeableItem/index.js +4 -0
  186. package/src/components/SwipeableItem/index.js.map +1 -0
  187. package/src/components/Swiper/Swiper.js +74 -0
  188. package/src/components/Swiper/Swiper.js.map +1 -0
  189. package/src/components/Swiper/SwiperItem.js +10 -0
  190. package/src/components/Swiper/SwiperItem.js.map +1 -0
  191. package/src/components/Swiper/index.js +3 -0
  192. package/src/components/Swiper/index.js.map +1 -0
  193. package/src/components/Switch.js +57 -0
  194. package/src/components/Switch.js.map +1 -0
  195. package/src/components/TabView/TabView.js +55 -0
  196. package/src/components/TabView/TabView.js.map +1 -0
  197. package/src/components/TabView/TabViewItem.js +12 -0
  198. package/src/components/TabView/TabViewItem.js.map +1 -0
  199. package/src/components/TabView/index.js +3 -0
  200. package/src/components/TabView/index.js.map +1 -0
  201. package/src/components/Table/Table.js +94 -0
  202. package/src/components/Table/Table.js.map +1 -0
  203. package/src/components/Table/TableCell.js +34 -0
  204. package/src/components/Table/TableCell.js.map +1 -0
  205. package/src/components/Table/TableCommon.js +13 -0
  206. package/src/components/Table/TableCommon.js.map +1 -0
  207. package/src/components/Table/TableRow.js +40 -0
  208. package/src/components/Table/TableRow.js.map +1 -0
  209. package/src/components/Table/index.js +4 -0
  210. package/src/components/Table/index.js.map +1 -0
  211. package/src/components/Text.js +34 -0
  212. package/src/components/Text.js.map +1 -0
  213. package/src/components/TextField.js +430 -0
  214. package/src/components/TextField.js.map +1 -0
  215. package/src/components/TextInput.js +15 -0
  216. package/src/components/TextInput.js.map +1 -0
  217. package/src/components/Touchable.js +13 -0
  218. package/src/components/Touchable.js.map +1 -0
  219. package/src/components/Touchable.web.js +3 -0
  220. package/src/components/Touchable.web.js.map +1 -0
  221. package/src/components/Typography.js +37 -0
  222. package/src/components/Typography.js.map +1 -0
  223. package/src/components/YoutubePlayer/YoutubePlayer.js +21 -0
  224. package/src/components/YoutubePlayer/YoutubePlayer.js.map +1 -0
  225. package/src/components/YoutubePlayer/YoutubePlayer.native.js +10 -0
  226. package/src/components/YoutubePlayer/YoutubePlayer.native.js.map +1 -0
  227. package/src/components/YoutubePlayer/YoutubePlayerProps.js +2 -0
  228. package/src/components/YoutubePlayer/YoutubePlayerProps.js.map +1 -0
  229. package/src/components/YoutubePlayer/index.js +2 -0
  230. package/src/components/YoutubePlayer/index.js.map +1 -0
  231. package/src/components/useAuthState.js +35 -0
  232. package/src/components/useAuthState.js.map +1 -0
  233. package/src/constants.js +11 -0
  234. package/src/constants.js.map +1 -0
  235. package/src/deprecated-components/AccordionItem.js +36 -0
  236. package/src/deprecated-components/AccordionItem.js.map +1 -0
  237. package/src/deprecated-components/AnimatedCircularProgress.js +47 -0
  238. package/src/deprecated-components/AnimatedCircularProgress.js.map +1 -0
  239. package/src/deprecated-components/AvatarEdit.js +34 -0
  240. package/src/deprecated-components/AvatarEdit.js.map +1 -0
  241. package/src/deprecated-components/Banner.js +113 -0
  242. package/src/deprecated-components/Banner.js.map +1 -0
  243. package/src/deprecated-components/Card.js +61 -0
  244. package/src/deprecated-components/Card.js.map +1 -0
  245. package/src/deprecated-components/CheckboxGroup.js +25 -0
  246. package/src/deprecated-components/CheckboxGroup.js.map +1 -0
  247. package/src/deprecated-components/CircleImage.js +12 -0
  248. package/src/deprecated-components/CircleImage.js.map +1 -0
  249. package/src/deprecated-components/CircularProgress.js +85 -0
  250. package/src/deprecated-components/CircularProgress.js.map +1 -0
  251. package/src/deprecated-components/Container.js +47 -0
  252. package/src/deprecated-components/Container.js.map +1 -0
  253. package/src/deprecated-components/DeprecatedButton.js +87 -0
  254. package/src/deprecated-components/DeprecatedButton.js.map +1 -0
  255. package/src/deprecated-components/DeprecatedCardWrapper.js +22 -0
  256. package/src/deprecated-components/DeprecatedCardWrapper.js.map +1 -0
  257. package/src/deprecated-components/DeprecatedFAB.js +118 -0
  258. package/src/deprecated-components/DeprecatedFAB.js.map +1 -0
  259. package/src/deprecated-components/FAB.js +50 -0
  260. package/src/deprecated-components/FAB.js.map +1 -0
  261. package/src/deprecated-components/FieldSearchBarFull.js +57 -0
  262. package/src/deprecated-components/FieldSearchBarFull.js.map +1 -0
  263. package/src/deprecated-components/Layout.js +69 -0
  264. package/src/deprecated-components/Layout.js.map +1 -0
  265. package/src/deprecated-components/ProgressBar.js +122 -0
  266. package/src/deprecated-components/ProgressBar.js.map +1 -0
  267. package/src/deprecated-components/ProgressCircle.js +17 -0
  268. package/src/deprecated-components/ProgressCircle.js.map +1 -0
  269. package/src/deprecated-components/RadioButtonFieldGroup.js +21 -0
  270. package/src/deprecated-components/RadioButtonFieldGroup.js.map +1 -0
  271. package/src/deprecated-components/RowBodyIcon.js +12 -0
  272. package/src/deprecated-components/RowBodyIcon.js.map +1 -0
  273. package/src/deprecated-components/RowHeadlineImageCaption.js +16 -0
  274. package/src/deprecated-components/RowHeadlineImageCaption.js.map +1 -0
  275. package/src/deprecated-components/RowHeadlineImageIcon.js +18 -0
  276. package/src/deprecated-components/RowHeadlineImageIcon.js.map +1 -0
  277. package/src/deprecated-components/ToggleButton.js +43 -0
  278. package/src/deprecated-components/ToggleButton.js.map +1 -0
  279. package/src/hooks.js +25 -0
  280. package/src/hooks.js.map +1 -0
  281. package/src/index.js +66 -0
  282. package/src/index.js.map +1 -0
  283. package/src/interfaces/Icon.js +9 -0
  284. package/src/interfaces/Icon.js.map +1 -0
  285. package/src/styles/DarkTheme.js +27 -0
  286. package/src/styles/DarkTheme.js.map +1 -0
  287. package/src/styles/DefaultTheme.js +112 -0
  288. package/src/styles/DefaultTheme.js.map +1 -0
  289. package/src/styles/fonts.js +63 -0
  290. package/src/styles/fonts.js.map +1 -0
  291. package/src/styles/overlay.js +61 -0
  292. package/src/styles/overlay.js.map +1 -0
  293. package/src/styles/shadow.js +52 -0
  294. package/src/styles/shadow.js.map +1 -0
  295. package/src/theming.js +4 -0
  296. package/src/theming.js.map +1 -0
  297. package/src/utilities.js +180 -0
  298. package/src/utilities.js.map +1 -0
@@ -0,0 +1,22 @@
1
+ import React from "react";
2
+ import { withTheme } from "../theming";
3
+ import Touchable from "../components/Touchable";
4
+ const getWidth = (numColumns) => {
5
+ switch (numColumns) {
6
+ case 1:
7
+ return "33%";
8
+ case 2:
9
+ return "50%";
10
+ default:
11
+ return "100%";
12
+ }
13
+ };
14
+ /**
15
+ * @deprecated DEPRECATED
16
+ */
17
+ const Card = ({ numColumns = 3, children, onPress, style, ...rest }) => {
18
+ const width = getWidth(numColumns);
19
+ return (React.createElement(Touchable, { disabled: !onPress, onPress: onPress, style: [style, { width }], ...rest }, children));
20
+ };
21
+ export default withTheme(Card);
22
+ //# sourceMappingURL=DeprecatedCardWrapper.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DeprecatedCardWrapper.js","sourceRoot":"","sources":["DeprecatedCardWrapper.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AACvC,OAAO,SAAS,MAAM,yBAAyB,CAAC;AAYhD,MAAM,QAAQ,GAAG,CAAC,UAAkB,EAAE,EAAE;IACtC,QAAQ,UAAU,EAAE;QAClB,KAAK,CAAC;YACJ,OAAO,KAAK,CAAC;QACf,KAAK,CAAC;YACJ,OAAO,KAAK,CAAC;QACf;YACE,OAAO,MAAM,CAAC;KACjB;AACH,CAAC,CAAC;AAEF;;GAEG;AACH,MAAM,IAAI,GAA6C,CAAC,EACtD,UAAU,GAAG,CAAC,EACd,QAAQ,EACR,OAAO,EACP,KAAK,EACL,GAAG,IAAI,EACR,EAAE,EAAE;IACH,MAAM,KAAK,GAAG,QAAQ,CAAC,UAAU,CAAC,CAAC;IACnC,OAAO,CACL,oBAAC,SAAS,IACR,QAAQ,EAAE,CAAC,OAAO,EAClB,OAAO,EAAE,OAAO,EAChB,KAAK,EAAE,CAAC,KAAK,EAAE,EAAE,KAAK,EAAE,CAAC,KACrB,IAAI,IAEP,QAAQ,CACC,CACb,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,SAAS,CAAC,IAAI,CAAC,CAAC"}
@@ -0,0 +1,118 @@
1
+ import * as React from "react";
2
+ import { ActivityIndicator, View, StyleSheet, Pressable, } from "react-native";
3
+ import color from "color";
4
+ import Config from "../components/Config";
5
+ import Text from "../components/Text";
6
+ import Elevation from "../components/Elevation";
7
+ import { withTheme } from "../theming";
8
+ /**
9
+ * @deprecated DEPRECATED
10
+ */
11
+ const FAB = ({ Icon, icon, disabled = false, type = "solid", loading = false, color: colorOverride, label, onPress, elevation = 0, style, theme: { colors, disabledOpacity, roundness, typography }, ...rest }) => {
12
+ let backgroundColor, borderColor, textColor, borderWidth;
13
+ const buttonColor = colorOverride || colors.primary;
14
+ if (type === "standard" || type === "extended" || type === "fixed") {
15
+ backgroundColor = buttonColor;
16
+ if (disabled) {
17
+ textColor = color(colors.surface).alpha(disabledOpacity).rgb().string();
18
+ }
19
+ else {
20
+ textColor = colors.surface;
21
+ }
22
+ }
23
+ else {
24
+ backgroundColor = "transparent";
25
+ if (disabled) {
26
+ textColor = color(buttonColor).alpha(disabledOpacity).rgb().string();
27
+ }
28
+ else {
29
+ textColor = buttonColor;
30
+ }
31
+ }
32
+ if (type === "outline") {
33
+ if (disabled) {
34
+ borderColor = color(buttonColor).alpha(disabledOpacity).rgb().string();
35
+ }
36
+ else {
37
+ borderColor = buttonColor;
38
+ }
39
+ borderWidth = StyleSheet.hairlineWidth;
40
+ }
41
+ else {
42
+ borderColor = "transparent";
43
+ borderWidth = 0;
44
+ }
45
+ const buttonStyle = {
46
+ backgroundColor,
47
+ borderColor,
48
+ borderWidth,
49
+ borderRadius: roundness,
50
+ alignItems: "center",
51
+ justifyContent: "center",
52
+ };
53
+ const buttonStyles = [styles.button, buttonStyle];
54
+ const contentStyle = [styles.content];
55
+ const textStyle = {
56
+ textAlign: "center",
57
+ color: textColor,
58
+ };
59
+ const iconStyle = [
60
+ styles.icon,
61
+ {
62
+ width: Config.buttonIconSize,
63
+ },
64
+ ];
65
+ if (type === "standard" || type === "outline") {
66
+ buttonStyle.width = Config.FABSize;
67
+ buttonStyle.height = Config.FABSize;
68
+ buttonStyle.borderRadius = Config.FABBorderRadius;
69
+ contentStyle.push({
70
+ width: Config.FABSize,
71
+ height: Config.FABSize,
72
+ });
73
+ }
74
+ if (type === "extended" || type === "fixed") {
75
+ iconStyle.push({
76
+ marginLeft: 16,
77
+ marginRight: -8,
78
+ });
79
+ textStyle.margin = 16;
80
+ }
81
+ if (type === "fixed") {
82
+ buttonStyles.push({
83
+ height: Config.FABFixedHeight,
84
+ alignSelf: "stretch",
85
+ });
86
+ }
87
+ return (React.createElement(Elevation, { style: [{ elevation }, style] },
88
+ React.createElement(Pressable, { ...rest, onPress: onPress, accessibilityState: { disabled }, accessibilityRole: "button", disabled: disabled || loading, style: buttonStyles },
89
+ React.createElement(View, { style: styles.content },
90
+ icon && loading !== true ? (React.createElement(View, { style: iconStyle },
91
+ React.createElement(Icon, { name: icon, size: Config.buttonIconSize, color: textColor }))) : null,
92
+ loading ? (React.createElement(ActivityIndicator, { size: "small", color: textColor, style: iconStyle })) : null,
93
+ label ? (React.createElement(Text, { numberOfLines: 1, style: [textStyle, typography.button] }, label)) : null))));
94
+ };
95
+ const styles = StyleSheet.create({
96
+ button: {
97
+ borderStyle: "solid",
98
+ },
99
+ content: {
100
+ flexDirection: "row",
101
+ alignItems: "center",
102
+ justifyContent: "center",
103
+ },
104
+ icon: {
105
+ alignItems: "center",
106
+ justifyContent: "center",
107
+ width: Config.buttonIconSize,
108
+ },
109
+ fixed: {
110
+ left: 0,
111
+ right: 0,
112
+ bottom: 0,
113
+ height: 64,
114
+ borderRadius: 0,
115
+ },
116
+ });
117
+ export default withTheme(FAB);
118
+ //# sourceMappingURL=DeprecatedFAB.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DeprecatedFAB.js","sourceRoot":"","sources":["DeprecatedFAB.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,50 @@
1
+ import * as React from "react";
2
+ import { View, StyleSheet, Pressable, ActivityIndicator, Platform, } from "react-native";
3
+ import { withTheme } from "../theming";
4
+ /**
5
+ * @deprecated DEPRECATED
6
+ */
7
+ const FAB = ({ onPress, disabled, loading, iconName = "MaterialIcons/add", style, theme, iconColor, bgColor, size = 50, Icon, ...props }) => {
8
+ const backgroundColor = bgColor || theme.colors.primary;
9
+ const color = iconColor || "#FFF";
10
+ return (React.createElement(View, { style: [
11
+ {
12
+ width: size,
13
+ height: size,
14
+ borderRadius: size / 2,
15
+ overflow: "hidden",
16
+ },
17
+ style,
18
+ ] },
19
+ React.createElement(Pressable, { onPress: onPress, disabled: loading || disabled, android_ripple: {
20
+ color: "#333",
21
+ radius: size / 4,
22
+ }, style: ({ pressed }) => {
23
+ return [
24
+ styles.button,
25
+ {
26
+ opacity: pressed || disabled ? 0.75 : 1,
27
+ width: size,
28
+ height: size,
29
+ borderRadius: size / 2,
30
+ backgroundColor,
31
+ },
32
+ ];
33
+ }, ...props },
34
+ React.createElement(View, null, loading ? (React.createElement(ActivityIndicator, { style: size > 50 ? { marginTop: 2, marginLeft: 2 } : undefined, size: size <= 50 ? "small" : "large", color: color })) : (React.createElement(Icon, { name: iconName, size: size, color: color }))))));
35
+ };
36
+ const styles = StyleSheet.create({
37
+ button: {
38
+ backgroundColor: "#5a45ff",
39
+ justifyContent: "center",
40
+ alignItems: "center",
41
+ ...Platform.select({
42
+ web: {
43
+ cursor: "pointer",
44
+ userSelect: "none",
45
+ },
46
+ }),
47
+ },
48
+ });
49
+ export default withTheme(FAB);
50
+ //# sourceMappingURL=FAB.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FAB.js","sourceRoot":"","sources":["FAB.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EACL,IAAI,EACJ,UAAU,EACV,SAAS,EACT,iBAAiB,EAIjB,QAAQ,GACT,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAiBvC;;GAEG;AACH,MAAM,GAAG,GAA6C,CAAC,EACrD,OAAO,EACP,QAAQ,EACR,OAAO,EACP,QAAQ,GAAG,mBAAmB,EAC9B,KAAK,EACL,KAAK,EACL,SAAS,EACT,OAAO,EACP,IAAI,GAAG,EAAE,EACT,IAAI,EACJ,GAAG,KAAK,EACT,EAAE,EAAE;IACH,MAAM,eAAe,GAAG,OAAO,IAAI,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC;IACxD,MAAM,KAAK,GAAG,SAAS,IAAI,MAAM,CAAC;IAElC,OAAO,CACL,oBAAC,IAAI,IACH,KAAK,EAAE;YACL;gBACE,KAAK,EAAE,IAAI;gBACX,MAAM,EAAE,IAAI;gBACZ,YAAY,EAAE,IAAI,GAAG,CAAC;gBACtB,QAAQ,EAAE,QAAQ;aACnB;YACD,KAAK;SACN;QAED,oBAAC,SAAS,IACR,OAAO,EAAE,OAAO,EAChB,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAC7B,cAAc,EAAE;gBACd,KAAK,EAAE,MAAM;gBACb,MAAM,EAAE,IAAI,GAAG,CAAC;aACjB,EACD,KAAK,EAAE,CAAC,EAAE,OAAO,EAAE,EAAE,EAAE;gBACrB,OAAO;oBACL,MAAM,CAAC,MAAM;oBACb;wBACE,OAAO,EAAE,OAAO,IAAI,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;wBACvC,KAAK,EAAE,IAAI;wBACX,MAAM,EAAE,IAAI;wBACZ,YAAY,EAAE,IAAI,GAAG,CAAC;wBACtB,eAAe;qBAChB;iBACF,CAAC;YACJ,CAAC,KACG,KAAK;YAET,oBAAC,IAAI,QACF,OAAO,CAAC,CAAC,CAAC,CACT,oBAAC,iBAAiB,IAChB,KAAK,EAAE,IAAI,GAAG,EAAE,CAAC,CAAC,CAAC,EAAE,SAAS,EAAE,CAAC,EAAE,UAAU,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,EAC9D,IAAI,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,EACpC,KAAK,EAAE,KAAK,GACZ,CACH,CAAC,CAAC,CAAC,CACF,oBAAC,IAAI,IAAC,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,GAAI,CACnD,CACI,CACG,CACP,CACR,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,MAAM,GAAG,UAAU,CAAC,MAAM,CAAC;IAC/B,MAAM,EAAE;QACN,eAAe,EAAE,SAAS;QAC1B,cAAc,EAAE,QAAQ;QACxB,UAAU,EAAE,QAAQ;QACpB,GAAG,QAAQ,CAAC,MAAM,CAAC;YACjB,GAAG,EAAE;gBACH,MAAM,EAAE,SAAS;gBACjB,UAAU,EAAE,MAAM;aACnB;SACF,CAAC;KACH;CACF,CAAC,CAAC;AAEH,eAAe,SAAS,CAAC,GAAG,CAAC,CAAC"}
@@ -0,0 +1,57 @@
1
+ import * as React from "react";
2
+ import { View, TextInput, StyleSheet, } from "react-native";
3
+ import { withTheme } from "../theming";
4
+ import Config from "../components/Config";
5
+ /**
6
+ * @deprecated DEPRECATED
7
+ */
8
+ const FieldSearchBarFull = ({ showIcon, Icon, icon = "search", placeholder = "", style, theme: { colors, typography }, onChange: changeOverride, onSubmit: submitOverride, value, defaultValue, }) => {
9
+ const [focused, setIsFocused] = React.useState(false);
10
+ const onBlur = () => {
11
+ setIsFocused(false);
12
+ };
13
+ const [internalValue, setInternalValue] = React.useState(value || defaultValue);
14
+ React.useEffect(() => {
15
+ if (value != null) {
16
+ setInternalValue(value);
17
+ }
18
+ }, [value]);
19
+ React.useEffect(() => {
20
+ if (defaultValue != null) {
21
+ setInternalValue(defaultValue);
22
+ }
23
+ }, [defaultValue]);
24
+ const onChange = React.useCallback((text) => {
25
+ changeOverride && changeOverride(text);
26
+ }, [changeOverride]);
27
+ const onFocus = () => {
28
+ setIsFocused(true);
29
+ };
30
+ const onSubmit = (e) => {
31
+ submitOverride && submitOverride(e);
32
+ };
33
+ const { lineHeight, ...typeStyles } = typography.body2; // eslint-disable-line @typescript-eslint/no-unused-vars
34
+ const handleChangeText = (newValue) => {
35
+ setInternalValue(newValue);
36
+ if (onChange) {
37
+ onChange(newValue);
38
+ }
39
+ };
40
+ return (React.createElement(View, { style: [styles.container, style] },
41
+ showIcon && (React.createElement(Icon, { name: icon, size: Config.fieldSearchBarFullIconSize, color: focused ? colors.primary : colors.light })),
42
+ React.createElement(View, { style: { marginLeft: showIcon ? 12 : 0, flex: 1 } },
43
+ React.createElement(TextInput, { clearButtonMode: "while-editing", placeholder: placeholder, value: internalValue, onBlur: onBlur, onFocus: onFocus, onChangeText: handleChangeText, onSubmitEditing: onSubmit, placeholderTextColor: colors.light, style: [
44
+ {
45
+ color: colors.medium,
46
+ },
47
+ typeStyles,
48
+ ] }))));
49
+ };
50
+ const styles = StyleSheet.create({
51
+ container: {
52
+ flexDirection: "row",
53
+ alignItems: "center",
54
+ },
55
+ });
56
+ export default withTheme(FieldSearchBarFull);
57
+ //# sourceMappingURL=FieldSearchBarFull.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FieldSearchBarFull.js","sourceRoot":"","sources":["FieldSearchBarFull.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,69 @@
1
+ import * as React from "react";
2
+ import { View } from "react-native";
3
+ /**
4
+ * @deprecated DEPRECATED
5
+ */
6
+ export function Center({ width = 240, height = 200, children, bgColor, style, ...rest }) {
7
+ return (React.createElement(View, { style: [
8
+ {
9
+ justifyContent: "center",
10
+ alignItems: "center",
11
+ width,
12
+ height,
13
+ backgroundColor: bgColor,
14
+ },
15
+ style,
16
+ ], ...rest }, children));
17
+ }
18
+ /**
19
+ * @deprecated DEPRECATED
20
+ */
21
+ export function Circle({ size = 50, bgColor, children, style, ...rest }) {
22
+ const borderRadius = 1000;
23
+ return (React.createElement(Center, { width: size, height: size, bgColor: bgColor, style: [
24
+ style,
25
+ { backgroundColor: bgColor, borderRadius, overflow: "hidden" },
26
+ ], ...rest }, children));
27
+ }
28
+ /**
29
+ * @deprecated DEPRECATED
30
+ */
31
+ export function Square({ size = 50, bgColor, children, style, ...rest }) {
32
+ return (React.createElement(Center, { style: style, width: size, height: size, bgColor: bgColor, ...rest }, children));
33
+ }
34
+ /**
35
+ * @deprecated DEPRECATED
36
+ */
37
+ export function Row({ justifyContent, alignItems, children, style, ...rest }) {
38
+ return (React.createElement(View, { style: [
39
+ style,
40
+ {
41
+ alignItems,
42
+ flexDirection: "row",
43
+ justifyContent: justifyContent,
44
+ },
45
+ ], ...rest }, children));
46
+ }
47
+ /**
48
+ * @deprecated DEPRECATED
49
+ */
50
+ export function Spacer({ top = 8, right = 8, bottom = 8, left = 8, children, style, ...rest }) {
51
+ return (React.createElement(View, { style: [
52
+ style,
53
+ {
54
+ paddingRight: right,
55
+ paddingTop: top,
56
+ paddingLeft: left,
57
+ paddingBottom: bottom,
58
+ },
59
+ ], ...rest }, children));
60
+ }
61
+ /**
62
+ * @deprecated DEPRECATED
63
+ */
64
+ export function Stack({ children, justifyContent = "flex-start", alignItems = "flex-start", style, ...rest }) {
65
+ return (
66
+ // style must go first since we don't want justifyContent, alignItems overridden
67
+ React.createElement(View, { style: [style, { justifyContent, alignItems }], ...rest }, children));
68
+ }
69
+ //# sourceMappingURL=Layout.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Layout.js","sourceRoot":"","sources":["Layout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,IAAI,EAAwB,MAAM,cAAc,CAAC;AAI1D;;GAEG;AACH,MAAM,UAAU,MAAM,CAAC,EACrB,KAAK,GAAG,GAAG,EACX,MAAM,GAAG,GAAG,EACZ,QAAQ,EACR,OAAO,EACP,KAAK,EACL,GAAG,IAAI,EAOR;IACC,OAAO,CACL,oBAAC,IAAI,IACH,KAAK,EAAE;YACL;gBACE,cAAc,EAAE,QAAQ;gBACxB,UAAU,EAAE,QAAQ;gBACpB,KAAK;gBACL,MAAM;gBACN,eAAe,EAAE,OAAO;aACzB;YACD,KAAK;SACN,KACG,IAAI,IAEP,QAAQ,CACJ,CACR,CAAC;AACJ,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,MAAM,CAAC,EACrB,IAAI,GAAG,EAAE,EACT,OAAO,EACP,QAAQ,EACR,KAAK,EACL,GAAG,IAAI,EAMR;IACC,MAAM,YAAY,GAAG,IAAI,CAAC;IAC1B,OAAO,CACL,oBAAC,MAAM,IACL,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAE,OAAO,EAChB,KAAK,EAAE;YACL,KAAK;YACL,EAAE,eAAe,EAAE,OAAO,EAAE,YAAY,EAAE,QAAQ,EAAE,QAAQ,EAAE;SAC/D,KACG,IAAI,IAEP,QAAQ,CACF,CACV,CAAC;AACJ,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,MAAM,CAAC,EACrB,IAAI,GAAG,EAAE,EACT,OAAO,EACP,QAAQ,EACR,KAAK,EACL,GAAG,IAAI,EAMR;IACC,OAAO,CACL,oBAAC,MAAM,IACL,KAAK,EAAE,KAAK,EACZ,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,OAAO,EAAE,OAAO,KACZ,IAAI,IAEP,QAAQ,CACF,CACV,CAAC;AACJ,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,GAAG,CAAC,EAClB,cAAc,EACd,UAAU,EACV,QAAQ,EACR,KAAK,EACL,GAAG,IAAI,EAMR;IACC,OAAO,CACL,oBAAC,IAAI,IACH,KAAK,EAAE;YACL,KAAK;YACL;gBACE,UAAU;gBACV,aAAa,EAAE,KAAK;gBACpB,cAAc,EAAE,cAAc;aAC/B;SACF,KACG,IAAI,IAEP,QAAQ,CACJ,CACR,CAAC;AACJ,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,MAAM,CAAC,EACrB,GAAG,GAAG,CAAC,EACP,KAAK,GAAG,CAAC,EACT,MAAM,GAAG,CAAC,EACV,IAAI,GAAG,CAAC,EACR,QAAQ,EACR,KAAK,EACL,GAAG,IAAI,EAQR;IACC,OAAO,CACL,oBAAC,IAAI,IACH,KAAK,EAAE;YACL,KAAK;YACL;gBACE,YAAY,EAAE,KAAK;gBACnB,UAAU,EAAE,GAAG;gBACf,WAAW,EAAE,IAAI;gBACjB,aAAa,EAAE,MAAM;aACtB;SACF,KACG,IAAI,IAEP,QAAQ,CACJ,CACR,CAAC;AACJ,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,KAAK,CAAC,EACpB,QAAQ,EACR,cAAc,GAAG,YAAY,EAC7B,UAAU,GAAG,YAAY,EACzB,KAAK,EACL,GAAG,IAAI,EAMR;IACC,OAAO;IACL,gFAAgF;IAChF,oBAAC,IAAI,IAAC,KAAK,EAAE,CAAC,KAAK,EAAE,EAAE,cAAc,EAAE,UAAU,EAAE,CAAC,KAAM,IAAI,IAC3D,QAAQ,CACJ,CACR,CAAC;AACJ,CAAC"}
@@ -0,0 +1,122 @@
1
+ import React, { Component } from "react";
2
+ import { Animated, Easing, View, I18nManager, } from "react-native";
3
+ const INDETERMINATE_WIDTH_FACTOR = 0.3;
4
+ const BAR_WIDTH_ZERO_POSITION = INDETERMINATE_WIDTH_FACTOR / (1 + INDETERMINATE_WIDTH_FACTOR);
5
+ /**
6
+ * @deprecated DEPRECATED
7
+ */
8
+ export default class ProgressBar extends Component {
9
+ constructor(props) {
10
+ super(props);
11
+ this.handleLayout = (event) => {
12
+ const { width = 150, onLayout } = this.props;
13
+ if (!width) {
14
+ this.setState({ width: event.nativeEvent.layout.width });
15
+ }
16
+ if (onLayout) {
17
+ onLayout(event);
18
+ }
19
+ };
20
+ const { progress: progressP = 0, indeterminate = false } = props;
21
+ const progress = Math.min(Math.max(progressP, 0), 1);
22
+ this.state = {
23
+ width: 0,
24
+ progress: new Animated.Value(indeterminate ? INDETERMINATE_WIDTH_FACTOR : progress),
25
+ animationValue: new Animated.Value(BAR_WIDTH_ZERO_POSITION),
26
+ };
27
+ }
28
+ componentDidMount() {
29
+ const { indeterminate = false } = this.props;
30
+ if (indeterminate) {
31
+ this.animate();
32
+ }
33
+ }
34
+ componentDidUpdate(prevProps) {
35
+ const { indeterminate = false, useNativeDriver = false, progress: progressP = 0, animationType = "spring", animationConfig = { bounciness: 0 }, animated = true, } = this.props;
36
+ if (prevProps.indeterminate !== indeterminate) {
37
+ if (indeterminate) {
38
+ this.animate();
39
+ }
40
+ else {
41
+ Animated.spring(this.state.animationValue, {
42
+ toValue: BAR_WIDTH_ZERO_POSITION,
43
+ useNativeDriver,
44
+ }).start();
45
+ }
46
+ }
47
+ if (prevProps.indeterminate !== indeterminate ||
48
+ prevProps.progress !== progressP) {
49
+ const progress = this.props.indeterminate
50
+ ? INDETERMINATE_WIDTH_FACTOR
51
+ : Math.min(Math.max(progressP, 0), 1);
52
+ if (animated) {
53
+ Animated[animationType](this.state.progress, {
54
+ ...animationConfig,
55
+ toValue: progress,
56
+ velocity: 0,
57
+ useNativeDriver,
58
+ }).start();
59
+ }
60
+ else {
61
+ this.state.progress.setValue(progress);
62
+ }
63
+ }
64
+ }
65
+ animate() {
66
+ const { useNativeDriver = false, indeterminateAnimationDuration = 1000 } = this.props;
67
+ this.state.animationValue.setValue(0);
68
+ Animated.timing(this.state.animationValue, {
69
+ toValue: 1,
70
+ duration: indeterminateAnimationDuration,
71
+ easing: Easing.linear,
72
+ isInteraction: false,
73
+ useNativeDriver,
74
+ }).start((endState) => {
75
+ if (endState.finished) {
76
+ this.animate();
77
+ }
78
+ });
79
+ }
80
+ render() {
81
+ const { borderColor, borderRadius = 4, borderWidth = 1, children, color = "rgba(0, 122, 255, 1)", style, unfilledColor, width = 150, ...restProps } = this.props;
82
+ const innerWidth = Math.max(0, width || this.state.width) - borderWidth * 2;
83
+ const containerStyle = {
84
+ width,
85
+ borderWidth,
86
+ borderColor: borderColor || color,
87
+ borderRadius,
88
+ overflow: "hidden",
89
+ backgroundColor: unfilledColor,
90
+ };
91
+ const progressStyle = {
92
+ backgroundColor: color,
93
+ // Always take up full height of container.
94
+ height: "100%",
95
+ transform: [
96
+ {
97
+ translateX: this.state.animationValue.interpolate({
98
+ inputRange: [0, 1],
99
+ outputRange: [innerWidth * -INDETERMINATE_WIDTH_FACTOR, innerWidth],
100
+ }),
101
+ },
102
+ {
103
+ translateX: this.state.progress.interpolate({
104
+ inputRange: [0, 1],
105
+ outputRange: [innerWidth / (I18nManager.isRTL ? 2 : -2), 0],
106
+ }),
107
+ },
108
+ {
109
+ // Interpolation a temp workaround for https://github.com/facebook/react-native/issues/6278
110
+ scaleX: this.state.progress.interpolate({
111
+ inputRange: [0, 1],
112
+ outputRange: [0.0001, 1],
113
+ }),
114
+ },
115
+ ],
116
+ };
117
+ return (React.createElement(View, { style: [containerStyle, style], onLayout: this.handleLayout, ...restProps },
118
+ React.createElement(Animated.View, { style: progressStyle }),
119
+ children));
120
+ }
121
+ }
122
+ //# sourceMappingURL=ProgressBar.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ProgressBar.js","sourceRoot":"","sources":["ProgressBar.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,17 @@
1
+ import * as React from "react";
2
+ import { Text } from "react-native";
3
+ import AnimatedCircularProgress from "./AnimatedCircularProgress";
4
+ import { withTheme } from "../theming";
5
+ /**
6
+ * @deprecated DEPRECATED
7
+ */
8
+ const ProgressCircle = ({ progress = 0.5, style, color = "primary", size = 100, showsText = true, unfilledColor, strokeCap = "butt", textStyle, thickness = 1, theme, }) => {
9
+ const progressNum = Math.round(progress * 100);
10
+ const tintColor = color || theme.colors.primary;
11
+ const backgroundColor = unfilledColor || theme.colors.secondary;
12
+ return (React.createElement(AnimatedCircularProgress, { size: size, width: thickness, backgroundWidth: thickness, fill: progressNum, tintColor: tintColor, backgroundColor: backgroundColor, rotation: 0, lineCap: strokeCap, style: style }, (fill) => showsText ? (React.createElement(Text, { style: [{ fontSize: size * 0.275, color: tintColor }, textStyle] },
13
+ Math.round(fill),
14
+ "%")) : null));
15
+ };
16
+ export default withTheme(ProgressCircle);
17
+ //# sourceMappingURL=ProgressCircle.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ProgressCircle.js","sourceRoot":"","sources":["ProgressCircle.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,IAAI,EAAmC,MAAM,cAAc,CAAC;AACrE,OAAO,wBAAwB,MAAM,4BAA4B,CAAC;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAiBvC;;GAEG;AACH,MAAM,cAAc,GAA6C,CAAC,EAChE,QAAQ,GAAG,GAAG,EACd,KAAK,EACL,KAAK,GAAG,SAAS,EACjB,IAAI,GAAG,GAAG,EACV,SAAS,GAAG,IAAI,EAChB,aAAa,EACb,SAAS,GAAG,MAAM,EAClB,SAAS,EACT,SAAS,GAAG,CAAC,EACb,KAAK,GACN,EAAE,EAAE;IACH,MAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,QAAQ,GAAG,GAAG,CAAC,CAAC;IAE/C,MAAM,SAAS,GAAG,KAAK,IAAI,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC;IAChD,MAAM,eAAe,GAAG,aAAa,IAAI,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC;IAEhE,OAAO,CACL,oBAAC,wBAAwB,IACvB,IAAI,EAAE,IAAI,EACV,KAAK,EAAE,SAAS,EAChB,eAAe,EAAE,SAAS,EAC1B,IAAI,EAAE,WAAW,EACjB,SAAS,EAAE,SAAS,EACpB,eAAe,EAAE,eAAe,EAChC,QAAQ,EAAE,CAAC,EACX,OAAO,EAAE,SAAS,EAClB,KAAK,EAAE,KAAK,IAGX,CAAC,IAAI,EAAE,EAAE,CACR,SAAS,CAAC,CAAC,CAAC,CACV,oBAAC,IAAI,IACH,KAAK,EAAE,CAAC,EAAE,QAAQ,EAAE,IAAI,GAAG,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,EAAE,SAAS,CAAC;QAE/D,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;YACZ,CACR,CAAC,CAAC,CAAC,IAAI,CAEe,CAC5B,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,SAAS,CAAC,cAAc,CAAC,CAAC"}
@@ -0,0 +1,21 @@
1
+ import React from "react";
2
+ import { View } from "react-native";
3
+ import Text from "../components/Text";
4
+ import { withTheme } from "../theming";
5
+ import RadioButtonGroup from "../components/RadioButton/RadioButtonGroup";
6
+ /**
7
+ * @deprecated DEPRECATED
8
+ */
9
+ const RadioButtonFieldGroup = ({ label, children, theme, labelStyle, style, ...rest }) => {
10
+ return (React.createElement(View, { style: style },
11
+ React.createElement(Text, { style: [
12
+ {
13
+ fontSize: theme.typography.headline4.fontSize,
14
+ color: theme.typography.headline4.color,
15
+ },
16
+ labelStyle,
17
+ ] }, label),
18
+ React.createElement(RadioButtonGroup, { theme: theme, ...rest }, children)));
19
+ };
20
+ export default withTheme(RadioButtonFieldGroup);
21
+ //# sourceMappingURL=RadioButtonFieldGroup.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RadioButtonFieldGroup.js","sourceRoot":"","sources":["RadioButtonFieldGroup.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,IAAI,EAAmC,MAAM,cAAc,CAAC;AACrE,OAAO,IAAI,MAAM,oBAAoB,CAAC;AACtC,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AACvC,OAAO,gBAEN,MAAM,4CAA4C,CAAC;AAQpD;;GAEG;AACH,MAAM,qBAAqB,GAA6C,CAAC,EACvE,KAAK,EACL,QAAQ,EACR,KAAK,EACL,UAAU,EACV,KAAK,EACL,GAAG,IAAI,EACR,EAAE,EAAE;IACH,OAAO,CACL,oBAAC,IAAI,IAAC,KAAK,EAAE,KAAK;QAChB,oBAAC,IAAI,IACH,KAAK,EAAE;gBACL;oBACE,QAAQ,EAAE,KAAK,CAAC,UAAU,CAAC,SAAS,CAAC,QAAQ;oBAC7C,KAAK,EAAE,KAAK,CAAC,UAAU,CAAC,SAAS,CAAC,KAAK;iBACxC;gBACD,UAAU;aACX,IAEA,KAAK,CACD;QACP,oBAAC,gBAAgB,IAAC,KAAK,EAAE,KAAK,KAAM,IAAI,IACrC,QAAQ,CACQ,CACd,CACR,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,SAAS,CAAC,qBAAqB,CAAC,CAAC"}
@@ -0,0 +1,12 @@
1
+ import * as React from "react";
2
+ import { withTheme } from "../theming";
3
+ import Row from "../components/Row";
4
+ import Config from "../components/Config";
5
+ /**
6
+ * @deprecated DEPRECATED
7
+ */
8
+ const RowBodyIcon = ({ Icon, title, subtitle, icon, style, theme: { colors, typography }, }) => {
9
+ return (React.createElement(Row, { titleTypeStyle: typography.body1, titleColor: colors.medium, subtitleTypeStyle: typography.subtitle2, subtitleColor: colors.light, title: title, subtitle: subtitle, right: () => (React.createElement(Icon, { name: icon, size: Config.rowSingleLineIconSize, color: colors.light, style: { marginLeft: 16 } })), style: style }));
10
+ };
11
+ export default withTheme(RowBodyIcon);
12
+ //# sourceMappingURL=RowBodyIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RowBodyIcon.js","sourceRoot":"","sources":["RowBodyIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAIvC,OAAO,GAAG,MAAM,mBAAmB,CAAC;AACpC,OAAO,MAAM,MAAM,sBAAsB,CAAC;AAW1C;;GAEG;AACH,MAAM,WAAW,GAA6C,CAAC,EAC7D,IAAI,EACJ,KAAK,EACL,QAAQ,EACR,IAAI,EACJ,KAAK,EACL,KAAK,EAAE,EAAE,MAAM,EAAE,UAAU,EAAE,GAC9B,EAAE,EAAE;IACH,OAAO,CACL,oBAAC,GAAG,IACF,cAAc,EAAE,UAAU,CAAC,KAAK,EAChC,UAAU,EAAE,MAAM,CAAC,MAAM,EACzB,iBAAiB,EAAE,UAAU,CAAC,SAAS,EACvC,aAAa,EAAE,MAAM,CAAC,KAAK,EAC3B,KAAK,EAAE,KAAK,EACZ,QAAQ,EAAE,QAAQ,EAClB,KAAK,EAAE,GAAG,EAAE,CAAC,CACX,oBAAC,IAAI,IACH,IAAI,EAAE,IAAI,EACV,IAAI,EAAE,MAAM,CAAC,qBAAqB,EAClC,KAAK,EAAE,MAAM,CAAC,KAAK,EACnB,KAAK,EAAE,EAAE,UAAU,EAAE,EAAE,EAAE,GACzB,CACH,EACD,KAAK,EAAE,KAAK,GACZ,CACH,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,SAAS,CAAC,WAAW,CAAC,CAAC"}
@@ -0,0 +1,16 @@
1
+ import * as React from "react";
2
+ import { Text } from "react-native";
3
+ import { withTheme } from "../theming";
4
+ import Row from "../components/Row";
5
+ /**
6
+ * @deprecated DEPRECATED
7
+ */
8
+ const RowHeadlineImageCaption = ({ title, subtitle, caption, image, style, theme: { colors, typography }, }) => {
9
+ return (React.createElement(Row, { titleTypeStyle: typography.headline6, titleColor: colors.strong, subtitleTypeStyle: typography.body2, subtitleColor: colors.medium, title: title, subtitle: subtitle, image: image, right: () => (React.createElement(Text, { style: {
10
+ ...typography.caption,
11
+ color: colors.strong,
12
+ marginLeft: 16,
13
+ } }, caption)), style: style }));
14
+ };
15
+ export default withTheme(RowHeadlineImageCaption);
16
+ //# sourceMappingURL=RowHeadlineImageCaption.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RowHeadlineImageCaption.js","sourceRoot":"","sources":["RowHeadlineImageCaption.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,IAAI,EAA6C,MAAM,cAAc,CAAC;AAC/E,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AACvC,OAAO,GAAG,MAAM,mBAAmB,CAAC;AAYpC;;GAEG;AACH,MAAM,uBAAuB,GAA6C,CAAC,EACzE,KAAK,EACL,QAAQ,EACR,OAAO,EACP,KAAK,EACL,KAAK,EACL,KAAK,EAAE,EAAE,MAAM,EAAE,UAAU,EAAE,GAC9B,EAAE,EAAE;IACH,OAAO,CACL,oBAAC,GAAG,IACF,cAAc,EAAE,UAAU,CAAC,SAAS,EACpC,UAAU,EAAE,MAAM,CAAC,MAAM,EACzB,iBAAiB,EAAE,UAAU,CAAC,KAAK,EACnC,aAAa,EAAE,MAAM,CAAC,MAAM,EAC5B,KAAK,EAAE,KAAK,EACZ,QAAQ,EAAE,QAAQ,EAClB,KAAK,EAAE,KAAK,EACZ,KAAK,EAAE,GAAG,EAAE,CAAC,CACX,oBAAC,IAAI,IACH,KAAK,EAAE;gBACL,GAAG,UAAU,CAAC,OAAO;gBACrB,KAAK,EAAE,MAAM,CAAC,MAAM;gBACpB,UAAU,EAAE,EAAE;aACf,IAEA,OAAO,CACH,CACR,EACD,KAAK,EAAE,KAAK,GACZ,CACH,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,SAAS,CAAC,uBAAuB,CAAC,CAAC"}
@@ -0,0 +1,18 @@
1
+ import * as React from "react";
2
+ import { withTheme } from "../theming";
3
+ import Row from "../components/Row";
4
+ import Config from "../components/Config";
5
+ /**
6
+ * @deprecated DEPRECATED
7
+ */
8
+ const RowHeadlineImageIcon = ({ Icon, icon, title, image, subtitle, multilineSubtitle = false, style, theme: { colors, typography }, }) => {
9
+ return (React.createElement(Row, { titleTypeStyle: typography.headline6, titleColor: colors.strong, subtitleTypeStyle: typography.body2, subtitleColor: colors.medium, title: title, subtitle: subtitle, multilineSubtitle: multilineSubtitle, image: image, right: () => (React.createElement(Icon, { name: icon, size: multilineSubtitle
10
+ ? Config.rowMultiLineIconSize
11
+ : Config.rowSingleLineIconSize, color: colors.light, style: {
12
+ marginLeft: 16,
13
+ alignSelf: multilineSubtitle ? "flex-start" : "center",
14
+ marginTop: multilineSubtitle ? 4 : 0,
15
+ } })), style: style }));
16
+ };
17
+ export default withTheme(RowHeadlineImageIcon);
18
+ //# sourceMappingURL=RowHeadlineImageIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RowHeadlineImageIcon.js","sourceRoot":"","sources":["RowHeadlineImageIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAIvC,OAAO,GAAG,MAAM,mBAAmB,CAAC;AACpC,OAAO,MAAM,MAAM,sBAAsB,CAAC;AAa1C;;GAEG;AACH,MAAM,oBAAoB,GAA6C,CAAC,EACtE,IAAI,EACJ,IAAI,EACJ,KAAK,EACL,KAAK,EACL,QAAQ,EACR,iBAAiB,GAAG,KAAK,EACzB,KAAK,EACL,KAAK,EAAE,EAAE,MAAM,EAAE,UAAU,EAAE,GAC9B,EAAE,EAAE;IACH,OAAO,CACL,oBAAC,GAAG,IACF,cAAc,EAAE,UAAU,CAAC,SAAS,EACpC,UAAU,EAAE,MAAM,CAAC,MAAM,EACzB,iBAAiB,EAAE,UAAU,CAAC,KAAK,EACnC,aAAa,EAAE,MAAM,CAAC,MAAM,EAC5B,KAAK,EAAE,KAAK,EACZ,QAAQ,EAAE,QAAQ,EAClB,iBAAiB,EAAE,iBAAiB,EACpC,KAAK,EAAE,KAAK,EACZ,KAAK,EAAE,GAAG,EAAE,CAAC,CACX,oBAAC,IAAI,IACH,IAAI,EAAE,IAAI,EACV,IAAI,EACF,iBAAiB;gBACf,CAAC,CAAC,MAAM,CAAC,oBAAoB;gBAC7B,CAAC,CAAC,MAAM,CAAC,qBAAqB,EAElC,KAAK,EAAE,MAAM,CAAC,KAAK,EACnB,KAAK,EAAE;gBACL,UAAU,EAAE,EAAE;gBACd,SAAS,EAAE,iBAAiB,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,QAAQ;gBACtD,SAAS,EAAE,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;aACrC,GACD,CACH,EACD,KAAK,EAAE,KAAK,GACZ,CACH,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,SAAS,CAAC,oBAAoB,CAAC,CAAC"}
@@ -0,0 +1,43 @@
1
+ import * as React from "react";
2
+ import { withTheme } from "../theming";
3
+ import { StyleSheet } from "react-native";
4
+ import IconButton from "../components/IconButton";
5
+ /**
6
+ * @deprecated DEPRECATED
7
+ */
8
+ const ToggleButton = ({ Icon, icon, toggled = false, onPress = () => { }, defaultValue, disabled = false, color = "primary", colorSecondary = "surface", borderColor = "divider", iconSize = 25, width = 50, height = 50, theme: { colors }, style, ...rest }) => {
9
+ const [internalValue, setInternalValue] = React.useState(toggled || defaultValue || false);
10
+ React.useEffect(() => {
11
+ if (toggled != null) {
12
+ setInternalValue(toggled);
13
+ }
14
+ }, [toggled]);
15
+ React.useEffect(() => {
16
+ if (defaultValue != null) {
17
+ setInternalValue(defaultValue);
18
+ }
19
+ }, [defaultValue]);
20
+ const handlePress = () => {
21
+ setInternalValue(!internalValue);
22
+ onPress(!internalValue);
23
+ };
24
+ return (React.createElement(IconButton, { Icon: Icon, icon: icon, size: iconSize, color: internalValue ? colors[color] : colors[colorSecondary], onPress: handlePress, disabled: disabled, style: [
25
+ styles.mainContainer,
26
+ {
27
+ width,
28
+ height,
29
+ backgroundColor: internalValue
30
+ ? colors[colorSecondary]
31
+ : colors[color],
32
+ borderColor: colors[borderColor],
33
+ },
34
+ style,
35
+ ], ...rest }));
36
+ };
37
+ const styles = StyleSheet.create({
38
+ mainContainer: {
39
+ borderWidth: 1,
40
+ },
41
+ });
42
+ export default withTheme(ToggleButton);
43
+ //# sourceMappingURL=ToggleButton.js.map