@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,430 @@
1
+ import * as React from "react";
2
+ import { View, Animated, StyleSheet, Text, I18nManager, } from "react-native";
3
+ import { withTheme } from "../theming";
4
+ import { applyStyles, extractStyles } from "../utilities";
5
+ import TextInput from "./TextInput";
6
+ const AnimatedText = Animated.createAnimatedComponent(Text);
7
+ const FOCUS_ANIMATION_DURATION = 150;
8
+ const BLUR_ANIMATION_DURATION = 180;
9
+ const ICON_SIZE = 24;
10
+ class TextField extends React.Component {
11
+ constructor() {
12
+ super(...arguments);
13
+ this.state = {
14
+ nativeProps: {},
15
+ labeled: new Animated.Value(this.props.value || this.props.error ? 0 : 1),
16
+ focused: false,
17
+ placeholder: this.props.error ? this.props.placeholder : "",
18
+ labelLayout: {
19
+ measured: false,
20
+ width: 0,
21
+ },
22
+ };
23
+ this._timer = setTimeout(() => { }, 0);
24
+ this._showPlaceholder = () => {
25
+ clearTimeout(this._timer);
26
+ // Set the placeholder in a delay to offset the label animation
27
+ // If we show it immediately, they'll overlap and look ugly
28
+ this._timer = setTimeout(() => this.setState({
29
+ placeholder: this.props.placeholder,
30
+ }), 50);
31
+ };
32
+ this._hidePlaceholder = () => this.setState({
33
+ placeholder: "",
34
+ });
35
+ this._restoreLabel = () => Animated.timing(this.state.labeled, {
36
+ toValue: 1,
37
+ duration: FOCUS_ANIMATION_DURATION,
38
+ useNativeDriver: true,
39
+ }).start();
40
+ this._minmizeLabel = () => Animated.timing(this.state.labeled, {
41
+ toValue: 0,
42
+ duration: BLUR_ANIMATION_DURATION,
43
+ useNativeDriver: true,
44
+ }).start();
45
+ this._handleFocus = () => {
46
+ if (this.props.disabled) {
47
+ return;
48
+ }
49
+ this.setState({ focused: true });
50
+ };
51
+ this._handleBlur = () => {
52
+ if (this.props.disabled) {
53
+ return;
54
+ }
55
+ this.setState({ focused: false });
56
+ };
57
+ this._handleChangeText = (value) => {
58
+ if (this.props.disabled) {
59
+ return;
60
+ }
61
+ if (typeof value === "string") {
62
+ this.setState({ value });
63
+ this.props.onChangeText && this.props.onChangeText(value);
64
+ }
65
+ else {
66
+ this.setState({ value: value.nativeEvent.text });
67
+ this.props.onChangeText &&
68
+ this.props.onChangeText(value.nativeEvent.text);
69
+ }
70
+ };
71
+ this._root = undefined;
72
+ }
73
+ static getDerivedStateFromProps(nextProps, prevState) {
74
+ return {
75
+ value: typeof nextProps.value !== "undefined"
76
+ ? nextProps.value
77
+ : prevState.value,
78
+ };
79
+ }
80
+ componentDidMount() {
81
+ if (this.props.defaultValue) {
82
+ this._handleChangeText(this.props.defaultValue);
83
+ }
84
+ if (this.props.placeholder) {
85
+ this._minmizeLabel();
86
+ }
87
+ }
88
+ componentDidUpdate(prevProps, prevState) {
89
+ if (prevState.focused !== this.state.focused ||
90
+ prevState.value !== this.state.value) {
91
+ // The label should be minimized if the text input is focused, or has text
92
+ // In minimized mode, the label moves up and becomes small
93
+ if (this.state.value ||
94
+ this.state.focused ||
95
+ this.props.error ||
96
+ this.props.placeholder) {
97
+ this._minmizeLabel();
98
+ }
99
+ else {
100
+ this._restoreLabel();
101
+ }
102
+ }
103
+ if (prevState.focused !== this.state.focused ||
104
+ prevProps.label !== this.props.label) {
105
+ // Show placeholder text only if the input is focused, or has error, or there's no label
106
+ // We don't show placeholder if there's a label because the label acts as placeholder
107
+ // When focused, the label moves up, so we can show a placeholder
108
+ if (this.state.focused || this.props.error || !this.props.label) {
109
+ this._showPlaceholder();
110
+ }
111
+ else {
112
+ this._hidePlaceholder();
113
+ }
114
+ }
115
+ }
116
+ componentWillUnmount() {
117
+ clearTimeout(this._timer);
118
+ }
119
+ toggleFocus() {
120
+ this.setState((prevState) => ({ focused: !prevState.focused }));
121
+ }
122
+ /**
123
+ * @internal
124
+ */
125
+ setNativeProps(args) {
126
+ this.setState((state) => ({
127
+ ...state,
128
+ nativeState: args || {},
129
+ }));
130
+ }
131
+ isFocused() {
132
+ return this._root && this._root.isFocused();
133
+ }
134
+ clear() {
135
+ return this._root && this._root.clear();
136
+ }
137
+ focus() {
138
+ return this._root && this._root.focus();
139
+ }
140
+ blur() {
141
+ return this._root && this._root.blur();
142
+ }
143
+ render() {
144
+ const { Icon, type = "underline", disabled = false, label, error = false, leftIconName, leftIconMode, rightIconName, assistiveText, underlineColor: underlineColorProp, activeBorderColor: activeBorderColorProp, multiline = false, numberOfLines = 4, style, theme: { colors, typography, roundness, disabledOpacity }, render = (props) => React.createElement(TextInput, { ...props }), ...rest } = this.props;
145
+ const MINIMIZED_LABEL_Y_OFFSET = -(typography.caption.lineHeight + 4);
146
+ const OUTLINE_MINIMIZED_LABEL_Y_OFFSET = -(16 * 0.5 + 4);
147
+ const MAXIMIZED_LABEL_FONT_SIZE = typography.subtitle1.fontSize;
148
+ const MINIMIZED_LABEL_FONT_SIZE = typography.caption.fontSize;
149
+ const hasActiveOutline = this.state.focused || error;
150
+ let inputTextColor, activeColor, underlineColor, borderColor, placeholderColor, containerStyle, backgroundColor, inputStyle;
151
+ inputTextColor = colors.strong;
152
+ if (disabled) {
153
+ activeColor = colors.light;
154
+ placeholderColor = colors.light;
155
+ borderColor = "transparent";
156
+ underlineColor = "transparent";
157
+ backgroundColor = colors.divider;
158
+ }
159
+ else {
160
+ activeColor = error ? colors.error : activeBorderColorProp;
161
+ placeholderColor = borderColor = colors.light;
162
+ underlineColor = underlineColorProp;
163
+ backgroundColor = colors.background;
164
+ }
165
+ if (rest.placeholderTextColor) {
166
+ placeholderColor = rest.placeholderTextColor;
167
+ }
168
+ const { lineHeight, ...subtitle1 } = typography.subtitle1;
169
+ inputStyle = {
170
+ paddingVertical: 0,
171
+ color: inputTextColor,
172
+ paddingLeft: leftIconName && leftIconMode === "inset"
173
+ ? ICON_SIZE + 12 + (type === "solid" ? 16 : 0)
174
+ : 0,
175
+ paddingRight: rightIconName ? ICON_SIZE + 16 + 4 : 12,
176
+ ...subtitle1,
177
+ };
178
+ if (!multiline) {
179
+ inputStyle.height = lineHeight;
180
+ }
181
+ let assistiveTextLeftMargin;
182
+ if (type === "underline") {
183
+ containerStyle = {
184
+ borderTopLeftRadius: roundness,
185
+ borderTopRightRadius: roundness,
186
+ paddingBottom: 12,
187
+ marginTop: 16,
188
+ };
189
+ if (leftIconName && leftIconMode === "outset") {
190
+ assistiveTextLeftMargin = ICON_SIZE + 8;
191
+ }
192
+ else {
193
+ assistiveTextLeftMargin = 0;
194
+ }
195
+ }
196
+ else {
197
+ containerStyle = {
198
+ borderRadius: roundness,
199
+ borderColor: hasActiveOutline ? activeColor : borderColor,
200
+ borderWidth: 1,
201
+ paddingTop: label ? 16 * 1.5 : 16,
202
+ paddingBottom: label ? 16 * 0.5 : 16,
203
+ opacity: disabled ? disabledOpacity : 1,
204
+ backgroundColor,
205
+ };
206
+ if (leftIconName && leftIconMode === "inset") {
207
+ assistiveTextLeftMargin = 16 + 4;
208
+ }
209
+ else if (leftIconName && leftIconMode === "outset") {
210
+ assistiveTextLeftMargin = ICON_SIZE + 8 + 12;
211
+ }
212
+ else {
213
+ assistiveTextLeftMargin = 12;
214
+ }
215
+ inputStyle.paddingHorizontal = 12;
216
+ }
217
+ if (leftIconName && leftIconMode === "outset") {
218
+ containerStyle.marginLeft = ICON_SIZE + 8;
219
+ }
220
+ let leftIconColor;
221
+ if (error) {
222
+ leftIconColor = colors.error;
223
+ }
224
+ else if (this.state.focused) {
225
+ leftIconColor = colors.primary;
226
+ }
227
+ else {
228
+ leftIconColor = colors.light;
229
+ }
230
+ const leftIconProps = {
231
+ size: 24,
232
+ color: leftIconColor,
233
+ name: leftIconName || "",
234
+ };
235
+ const leftIconStyle = {
236
+ position: "absolute",
237
+ marginTop: type === "solid"
238
+ ? MINIMIZED_LABEL_FONT_SIZE + 4
239
+ : leftIconMode === "outset"
240
+ ? 16
241
+ : 0,
242
+ marginLeft: leftIconMode === "inset" && type === "solid" ? 16 : 0,
243
+ };
244
+ const labelStyle = {
245
+ ...typography.subtitle1,
246
+ top: type === "solid" ? 16 : 0,
247
+ left: leftIconName && leftIconMode === "inset"
248
+ ? ICON_SIZE + (type === "solid" ? 16 : 12)
249
+ : 0,
250
+ transform: [
251
+ {
252
+ // Move label to top
253
+ translateY: this.state.labeled.interpolate({
254
+ inputRange: [0, 1],
255
+ outputRange: [
256
+ type === "solid"
257
+ ? OUTLINE_MINIMIZED_LABEL_Y_OFFSET
258
+ : MINIMIZED_LABEL_Y_OFFSET,
259
+ 0,
260
+ ],
261
+ }),
262
+ },
263
+ {
264
+ // Make label smaller
265
+ scale: this.state.labeled.interpolate({
266
+ inputRange: [0, 1],
267
+ outputRange: [
268
+ MINIMIZED_LABEL_FONT_SIZE / MAXIMIZED_LABEL_FONT_SIZE,
269
+ 1,
270
+ ],
271
+ }),
272
+ },
273
+ {
274
+ // Offset label scale since RN doesn't support transform origin
275
+ translateX: this.state.labeled.interpolate({
276
+ inputRange: [0, 1],
277
+ outputRange: [
278
+ -(1 - MINIMIZED_LABEL_FONT_SIZE / MAXIMIZED_LABEL_FONT_SIZE) *
279
+ (this.state.labelLayout.width / 2),
280
+ 0,
281
+ ],
282
+ }),
283
+ },
284
+ ],
285
+ };
286
+ const { textStyles } = extractStyles(style);
287
+ const inputStyles = applyStyles([
288
+ styles.input,
289
+ inputStyle,
290
+ type === "solid" ? { marginHorizontal: 12 } : {},
291
+ ], textStyles);
292
+ const { backgroundColor: bgColor, padding, paddingTop, paddingBottom, paddingLeft, paddingRight, borderRadius, borderWidth, borderTopWidth, borderRightWidth, borderBottomWidth, borderLeftWidth, borderColor: borderCol, ...styleProp } = StyleSheet.flatten(style || {});
293
+ return (React.createElement(View, { style: [styles.container, styleProp] },
294
+ leftIconName && leftIconMode === "outset" ? (React.createElement(Icon, { ...leftIconProps, style: leftIconStyle })) : null,
295
+ React.createElement(View, { style: applyStyles([containerStyle], {
296
+ height: style === null || style === void 0 ? void 0 : style.height,
297
+ backgroundColor: bgColor,
298
+ padding,
299
+ paddingTop,
300
+ paddingBottom,
301
+ paddingLeft,
302
+ paddingRight,
303
+ borderRadius,
304
+ borderWidth,
305
+ borderTopWidth,
306
+ borderRightWidth,
307
+ borderBottomWidth,
308
+ borderLeftWidth,
309
+ borderColor: borderCol,
310
+ }) },
311
+ type === "underline" ? (
312
+ // When type === 'flat', render an underline
313
+ React.createElement(Animated.View, { style: [
314
+ styles.underline,
315
+ {
316
+ backgroundColor: bgColor ||
317
+ (error
318
+ ? colors.error
319
+ : this.state.focused
320
+ ? activeColor
321
+ : underlineColor),
322
+ // Underlines is thinner when input is not focused
323
+ transform: [{ scaleY: this.state.focused ? 1 : 0.5 }],
324
+ },
325
+ ] })) : null,
326
+ label ? (
327
+ // Position colored placeholder and gray placeholder on top of each other and crossfade them
328
+ // This gives the effect of animating the color, but allows us to use native driver
329
+ React.createElement(View, { pointerEvents: "none", style: [
330
+ StyleSheet.absoluteFill,
331
+ {
332
+ opacity:
333
+ // Hide the label in minimized state until we measure its width
334
+ this.state.value || this.state.focused
335
+ ? this.state.labelLayout.measured
336
+ ? 1
337
+ : 0
338
+ : 1,
339
+ },
340
+ ] },
341
+ React.createElement(AnimatedText, { onLayout: (e) => this.setState({
342
+ labelLayout: {
343
+ width: e.nativeEvent.layout.width,
344
+ measured: true,
345
+ },
346
+ }), style: [
347
+ styles.placeholder,
348
+ type === "solid" ? { paddingHorizontal: 12 } : {},
349
+ labelStyle,
350
+ {
351
+ color: placeholderColor,
352
+ opacity: this.state.labeled.interpolate({
353
+ inputRange: [0, 1],
354
+ outputRange: [hasActiveOutline ? 1 : 0, 0],
355
+ }),
356
+ },
357
+ ], numberOfLines: 1 }, label),
358
+ React.createElement(AnimatedText, { style: [
359
+ styles.placeholder,
360
+ type === "solid" ? { paddingHorizontal: 12 } : {},
361
+ labelStyle,
362
+ {
363
+ color: placeholderColor,
364
+ opacity: hasActiveOutline ? this.state.labeled : 1,
365
+ },
366
+ ], numberOfLines: 1 }, label))) : null,
367
+ leftIconName && leftIconMode === "inset" ? (React.createElement(View, { style: {
368
+ justifyContent: type === "solid" ? "center" : undefined,
369
+ } },
370
+ React.createElement(Icon, { ...leftIconProps, style: leftIconStyle }))) : null,
371
+ render({
372
+ ref: (c) => {
373
+ this._root = c;
374
+ },
375
+ onChange: this._handleChangeText,
376
+ placeholder: label
377
+ ? this.state.placeholder
378
+ : this.props.placeholder,
379
+ placeholderTextColor: placeholderColor,
380
+ editable: !disabled,
381
+ selectionColor: activeColor,
382
+ multiline,
383
+ numberOfLines,
384
+ onFocus: this._handleFocus,
385
+ onBlur: this._handleBlur,
386
+ underlineColorAndroid: "transparent",
387
+ style: inputStyles,
388
+ ...rest,
389
+ ...this.state.nativeProps,
390
+ value: this.state.value,
391
+ })),
392
+ rightIconName ? (React.createElement(Icon, { name: rightIconName, size: ICON_SIZE, color: colors.light, style: {
393
+ position: "absolute",
394
+ right: 16,
395
+ marginTop: type === "solid" ? MINIMIZED_LABEL_FONT_SIZE + 4 : 16,
396
+ } })) : null,
397
+ assistiveText ? (React.createElement(Text, { style: [
398
+ {
399
+ color: error ? colors.error : colors.light,
400
+ marginTop: 8,
401
+ marginLeft: assistiveTextLeftMargin,
402
+ },
403
+ ] }, assistiveText)) : null));
404
+ }
405
+ }
406
+ export default withTheme(TextField);
407
+ const styles = StyleSheet.create({
408
+ container: {
409
+ alignSelf: "stretch",
410
+ },
411
+ placeholder: {
412
+ position: "absolute",
413
+ left: 0,
414
+ },
415
+ underline: {
416
+ position: "absolute",
417
+ left: 0,
418
+ right: 0,
419
+ bottom: 0,
420
+ height: 2,
421
+ },
422
+ input: {
423
+ flexGrow: 1,
424
+ justifyContent: "center",
425
+ textAlignVertical: "center",
426
+ margin: 0,
427
+ textAlign: I18nManager.isRTL ? "right" : "left",
428
+ },
429
+ });
430
+ //# sourceMappingURL=TextField.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TextField.js","sourceRoot":"","sources":["TextField.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,15 @@
1
+ import React from "react";
2
+ import { TextInput as NativeTextInput, } from "react-native";
3
+ import { useDebounce } from "../hooks";
4
+ const TextInput = React.forwardRef(({ onChangeTextDelayed, changeTextDelay = 500, value, ...rest }, ref) => {
5
+ const delayedValue = useDebounce(value, changeTextDelay);
6
+ React.useEffect(() => {
7
+ if (delayedValue !== undefined) {
8
+ onChangeTextDelayed === null || onChangeTextDelayed === void 0 ? void 0 : onChangeTextDelayed(delayedValue);
9
+ }
10
+ // eslint-disable-next-line react-hooks/exhaustive-deps
11
+ }, [delayedValue]);
12
+ return (React.createElement(NativeTextInput, { testID: "native-text-input", ref: ref, value: value, ...rest }));
13
+ });
14
+ export default TextInput;
15
+ //# sourceMappingURL=TextInput.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TextInput.js","sourceRoot":"","sources":["TextInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EACL,SAAS,IAAI,eAAe,GAE7B,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAOvC,MAAM,SAAS,GAAG,KAAK,CAAC,UAAU,CAChC,CAAC,EAAE,mBAAmB,EAAE,eAAe,GAAG,GAAG,EAAE,KAAK,EAAE,GAAG,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE;IACtE,MAAM,YAAY,GAAG,WAAW,CAAC,KAAK,EAAE,eAAe,CAAC,CAAC;IAEzD,KAAK,CAAC,SAAS,CAAC,GAAG,EAAE;QACnB,IAAI,YAAY,KAAK,SAAS,EAAE;YAC9B,mBAAmB,aAAnB,mBAAmB,uBAAnB,mBAAmB,CAAG,YAAY,CAAC,CAAC;SACrC;QACD,uDAAuD;IACzD,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC;IAEnB,OAAO,CACL,oBAAC,eAAe,IACd,MAAM,EAAC,mBAAmB,EAC1B,GAAG,EAAE,GAAG,EACR,KAAK,EAAE,KAAK,KACR,IAAI,GACR,CACH,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,eAAe,SAAS,CAAC"}
@@ -0,0 +1,13 @@
1
+ import React from "react";
2
+ import { Pressable } from "react-native";
3
+ export default function Touchable({ children, disabled, onPress, activeOpacity = 0.8, disabledOpacity = 0.8, delayLongPress, hitSlop, style, ...props }) {
4
+ return (React.createElement(Pressable, { disabled: disabled, onPress: onPress, delayLongPress: delayLongPress ? delayLongPress : 500, hitSlop: hitSlop ? hitSlop : 8, style: ({ pressed }) => {
5
+ return [
6
+ {
7
+ opacity: pressed ? activeOpacity : disabled ? disabledOpacity : 1,
8
+ },
9
+ style,
10
+ ];
11
+ }, ...props }, children));
12
+ }
13
+ //# sourceMappingURL=Touchable.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Touchable.js","sourceRoot":"","sources":["Touchable.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAA6B,MAAM,cAAc,CAAC;AAQpE,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,EAChC,QAAQ,EACR,QAAQ,EACR,OAAO,EACP,aAAa,GAAG,GAAG,EACnB,eAAe,GAAG,GAAG,EACrB,cAAc,EACd,OAAO,EACP,KAAK,EACL,GAAG,KAAK,EACF;IACN,OAAO,CACL,oBAAC,SAAS,IACR,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,OAAO,EAChB,cAAc,EAAE,cAAc,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,GAAG,EACrD,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,EAC9B,KAAK,EAAE,CAAC,EAAE,OAAO,EAAE,EAAE,EAAE;YACrB,OAAO;gBACL;oBACE,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC;iBAClE;gBACD,KAAK;aACN,CAAC;QACJ,CAAC,KACG,KAAK,IAER,QAAQ,CACC,CACb,CAAC;AACJ,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { TouchableOpacity } from "react-native";
2
+ export default TouchableOpacity;
3
+ //# sourceMappingURL=Touchable.web.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Touchable.web.js","sourceRoot":"","sources":["Touchable.web.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAEhD,eAAe,gBAAgB,CAAC"}
@@ -0,0 +1,37 @@
1
+ import React from "react";
2
+ import { Text } from "react-native";
3
+ import { withTheme } from "../theming";
4
+ export const Title = withTheme(({ text, theme, style }) => {
5
+ return (React.createElement(Text, { style: [
6
+ {
7
+ fontSize: 20,
8
+ letterSpacing: 0,
9
+ lineHeight: 26,
10
+ color: theme.colors.text,
11
+ },
12
+ style,
13
+ ] }, text));
14
+ });
15
+ export const Subtitle = withTheme(({ text, theme, style }) => {
16
+ return (React.createElement(Text, { style: [
17
+ {
18
+ fontSize: 14,
19
+ letterSpacing: 0,
20
+ lineHeight: 16,
21
+ color: theme.colors.medium,
22
+ },
23
+ style,
24
+ ] }, text));
25
+ });
26
+ export const Caption = withTheme(({ text, theme, style }) => {
27
+ return (React.createElement(Text, { style: [
28
+ {
29
+ fontSize: 12,
30
+ letterSpacing: 0,
31
+ lineHeight: 14,
32
+ color: theme.colors.light,
33
+ },
34
+ style,
35
+ ] }, text));
36
+ });
37
+ //# sourceMappingURL=Typography.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Typography.js","sourceRoot":"","sources":["Typography.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,IAAI,EAAwB,MAAM,cAAc,CAAC;AAC1D,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAYvC,MAAM,CAAC,MAAM,KAAK,GAAG,SAAS,CAAC,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAS,EAAE,EAAE;IAC/D,OAAO,CACL,oBAAC,IAAI,IACH,KAAK,EAAE;YACL;gBACE,QAAQ,EAAE,EAAE;gBACZ,aAAa,EAAE,CAAC;gBAChB,UAAU,EAAE,EAAE;gBACd,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,IAAI;aACzB;YACD,KAAK;SACN,IAEA,IAAI,CACA,CACR,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,QAAQ,GAAG,SAAS,CAAC,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAS,EAAE,EAAE;IAClE,OAAO,CACL,oBAAC,IAAI,IACH,KAAK,EAAE;YACL;gBACE,QAAQ,EAAE,EAAE;gBACZ,aAAa,EAAE,CAAC;gBAChB,UAAU,EAAE,EAAE;gBACd,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,MAAM;aAC3B;YACD,KAAK;SACN,IAEA,IAAI,CACA,CACR,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,SAAS,CAAC,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAS,EAAE,EAAE;IACjE,OAAO,CACL,oBAAC,IAAI,IACH,KAAK,EAAE;YACL;gBACE,QAAQ,EAAE,EAAE;gBACZ,aAAa,EAAE,CAAC;gBAChB,UAAU,EAAE,EAAE;gBACd,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,KAAK;aAC1B;YACD,KAAK;SACN,IAEA,IAAI,CACA,CACR,CAAC;AACJ,CAAC,CAAC,CAAC"}
@@ -0,0 +1,21 @@
1
+ import React from "react";
2
+ import { View } from "react-native";
3
+ import { extractStyles } from "../../utilities";
4
+ import YouTube from "react-youtube";
5
+ const YoutubePlayer = ({ videoId, playlist, autoplay = false, style, }) => {
6
+ const { viewStyles } = extractStyles(style);
7
+ const defaultVideoId = "nwMUpDESXrI";
8
+ const options = {
9
+ width: viewStyles.width,
10
+ height: viewStyles.height,
11
+ playerVars: {
12
+ autoplay: autoplay ? 1 : 0,
13
+ list: playlist,
14
+ listType: "playlist",
15
+ },
16
+ };
17
+ return (React.createElement(View, { style: viewStyles },
18
+ React.createElement(YouTube, { videoId: !videoId && !playlist ? defaultVideoId : videoId, opts: options })));
19
+ };
20
+ export default YoutubePlayer;
21
+ //# sourceMappingURL=YoutubePlayer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"YoutubePlayer.js","sourceRoot":"","sources":["YoutubePlayer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACpC,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD,OAAO,OAAyB,MAAM,eAAe,CAAC;AAEtD,MAAM,aAAa,GAAiC,CAAC,EACnD,OAAO,EACP,QAAQ,EACR,QAAQ,GAAG,KAAK,EAChB,KAAK,GACN,EAAE,EAAE;IACH,MAAM,EAAE,UAAU,EAAE,GAAG,aAAa,CAAC,KAAK,CAAC,CAAC;IAC5C,MAAM,cAAc,GAAG,aAAa,CAAC;IAErC,MAAM,OAAO,GAAyB;QACpC,KAAK,EAAE,UAAU,CAAC,KAAK;QACvB,MAAM,EAAE,UAAU,CAAC,MAAM;QACzB,UAAU,EAAE;YACV,QAAQ,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;YAC1B,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,UAAU;SACrB;KACF,CAAC;IAEF,OAAO,CACL,oBAAC,IAAI,IAAC,KAAK,EAAE,UAAU;QACrB,oBAAC,OAAO,IACN,OAAO,EAAE,CAAC,OAAO,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,OAAO,EACzD,IAAI,EAAE,OAAO,GACb,CACG,CACR,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,aAAa,CAAC"}
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ import YoutubePlayerIFrame from "react-native-youtube-iframe";
3
+ import { extractStyles } from "../../utilities";
4
+ const YoutubePlayer = ({ videoId, playlist, autoplay = false, style, }) => {
5
+ const { viewStyles } = extractStyles(style);
6
+ const defaultVideoId = "nwMUpDESXrI";
7
+ return (React.createElement(YoutubePlayerIFrame, { width: viewStyles.width, height: viewStyles.height, play: autoplay, videoId: !videoId && !playlist ? defaultVideoId : videoId, playList: playlist, webViewStyle: viewStyles }));
8
+ };
9
+ export default YoutubePlayer;
10
+ //# sourceMappingURL=YoutubePlayer.native.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"YoutubePlayer.native.js","sourceRoot":"","sources":["YoutubePlayer.native.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,mBAAmB,MAAM,6BAA6B,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAGhD,MAAM,aAAa,GAAiC,CAAC,EACnD,OAAO,EACP,QAAQ,EACR,QAAQ,GAAG,KAAK,EAChB,KAAK,GACN,EAAE,EAAE;IACH,MAAM,EAAE,UAAU,EAAE,GAAG,aAAa,CAAC,KAAK,CAAC,CAAC;IAC5C,MAAM,cAAc,GAAG,aAAa,CAAC;IAErC,OAAO,CACL,oBAAC,mBAAmB,IAClB,KAAK,EAAE,UAAU,CAAC,KAAK,EACvB,MAAM,EAAE,UAAU,CAAC,MAAM,EACzB,IAAI,EAAE,QAAQ,EACd,OAAO,EAAE,CAAC,OAAO,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,OAAO,EACzD,QAAQ,EAAE,QAAQ,EAClB,YAAY,EAAE,UAAU,GACxB,CACH,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,aAAa,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=YoutubePlayerProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"YoutubePlayerProps.js","sourceRoot":"","sources":["YoutubePlayerProps.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export { default as YoutubePlayer } from "./YoutubePlayer";
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC"}
@@ -0,0 +1,35 @@
1
+ import * as React from "react";
2
+ /**
3
+ * @deprecated DEPRECATED
4
+ */
5
+ export const useAuthState = (auth) => {
6
+ const [error, setError] = React.useState();
7
+ const [value, setValue] = React.useState(auth.currentUser);
8
+ React.useEffect(() => {
9
+ const list = auth.onAuthStateChanged(setValue, setError);
10
+ return () => {
11
+ list();
12
+ };
13
+ }, [auth]);
14
+ const signInWithEmailAndPassword = (user, password) => {
15
+ auth
16
+ .signInWithEmailAndPassword(user, password)
17
+ .then(setValue)
18
+ .catch(setError);
19
+ };
20
+ const createUserWithEmailAndPassword = (user, password) => {
21
+ auth
22
+ .signInWithEmailAndPassword(user, password)
23
+ .then(setValue)
24
+ .catch(setError);
25
+ };
26
+ const signOut = () => auth.signOut();
27
+ return [
28
+ value,
29
+ error,
30
+ signInWithEmailAndPassword,
31
+ signOut,
32
+ createUserWithEmailAndPassword,
33
+ ];
34
+ };
35
+ //# sourceMappingURL=useAuthState.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useAuthState.js","sourceRoot":"","sources":["useAuthState.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B;;GAEG;AACH,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,IAAS,EAAE,EAAE;IACxC,MAAM,CAAC,KAAK,EAAE,QAAQ,CAAC,GAAG,KAAK,CAAC,QAAQ,EAAE,CAAC;IAC3C,MAAM,CAAC,KAAK,EAAE,QAAQ,CAAC,GAAG,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;IAE3D,KAAK,CAAC,SAAS,CAAC,GAAG,EAAE;QACnB,MAAM,IAAI,GAAG,IAAI,CAAC,kBAAkB,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;QAEzD,OAAO,GAAG,EAAE;YACV,IAAI,EAAE,CAAC;QACT,CAAC,CAAC;IACJ,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC;IAEX,MAAM,0BAA0B,GAAG,CAAC,IAAY,EAAE,QAAgB,EAAE,EAAE;QACpE,IAAI;aACD,0BAA0B,CAAC,IAAI,EAAE,QAAQ,CAAC;aAC1C,IAAI,CAAC,QAAQ,CAAC;aACd,KAAK,CAAC,QAAQ,CAAC,CAAC;IACrB,CAAC,CAAC;IAEF,MAAM,8BAA8B,GAAG,CAAC,IAAY,EAAE,QAAgB,EAAE,EAAE;QACxE,IAAI;aACD,0BAA0B,CAAC,IAAI,EAAE,QAAQ,CAAC;aAC1C,IAAI,CAAC,QAAQ,CAAC;aACd,KAAK,CAAC,QAAQ,CAAC,CAAC;IACrB,CAAC,CAAC;IAEF,MAAM,OAAO,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IAErC,OAAO;QACL,KAAK;QACL,KAAK;QACL,0BAA0B;QAC1B,OAAO;QACP,8BAA8B;KAC/B,CAAC;AACJ,CAAC,CAAC"}
@@ -0,0 +1,11 @@
1
+ import { Platform } from "react-native";
2
+ // @ts-ignore
3
+ const expo = global.__expo;
4
+ const DEFAULT_STATUSBAR_HEIGHT_EXPO = (expo === null || expo === void 0 ? void 0 : expo.Constants)
5
+ ? expo.Constants.statusBarHeight
6
+ : 0;
7
+ export const APPROX_STATUSBAR_HEIGHT = Platform.select({
8
+ android: DEFAULT_STATUSBAR_HEIGHT_EXPO,
9
+ ios: Platform.Version < 11 ? DEFAULT_STATUSBAR_HEIGHT_EXPO : 0,
10
+ });
11
+ //# sourceMappingURL=constants.js.map