@draftbit/core 46.4.4-c18fe1.2 → 46.4.4-c96c31.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.
- package/lib/commonjs/Provider.js +9 -0
- package/lib/commonjs/components/Accordion/AccordionGroup.js +14 -0
- package/lib/commonjs/components/Accordion/AccordionItem.js +13 -0
- package/lib/commonjs/components/Accordion/index.js +3 -0
- package/lib/commonjs/components/ActionSheet/ActionSheet.js +9 -0
- package/lib/commonjs/components/ActionSheet/ActionSheetCancel.js +5 -0
- package/lib/commonjs/components/ActionSheet/ActionSheetItem.js +7 -0
- package/lib/commonjs/components/ActionSheet/index.js +4 -0
- package/lib/commonjs/components/AnimatedCircularProgress.js +26 -1
- package/lib/commonjs/components/AspectRatio.js +10 -0
- package/lib/commonjs/components/AvatarEdit.js +12 -0
- package/lib/commonjs/components/Banner.js +23 -9
- package/lib/commonjs/components/Button.js +19 -2
- package/lib/commonjs/components/Card.js +14 -0
- package/lib/commonjs/components/CardBlock.js +15 -0
- package/lib/commonjs/components/CardContainer.js +32 -4
- package/lib/commonjs/components/CardContainerRating.js +34 -6
- package/lib/commonjs/components/CardContainerShortImage.js +28 -4
- package/lib/commonjs/components/CardInline.js +14 -1
- package/lib/commonjs/components/Carousel.js +23 -5
- package/lib/commonjs/components/Checkbox/Checkbox.js +18 -3
- package/lib/commonjs/components/Checkbox/CheckboxGroup.js +11 -0
- package/lib/commonjs/components/Checkbox/CheckboxGroupRow.js +43 -5
- package/lib/commonjs/components/Checkbox/CheckboxRow.js +47 -8
- package/lib/commonjs/components/Checkbox/context.js +5 -0
- package/lib/commonjs/components/Checkbox/index.js +4 -0
- package/lib/commonjs/components/CircleImage.js +10 -15
- package/lib/commonjs/components/CircularProgress.js +26 -8
- package/lib/commonjs/components/Config.js +13 -5
- package/lib/commonjs/components/Container.js +11 -0
- package/lib/commonjs/components/DatePicker/DatePicker.js +65 -23
- package/lib/commonjs/components/DatePicker/DatePickerComponent.js +7 -0
- package/lib/commonjs/components/DatePicker/DatePickerComponent.web.js +10 -0
- package/lib/commonjs/components/DeprecatedButton.js +23 -0
- package/lib/commonjs/components/DeprecatedCardWrapper.js +27 -1
- package/lib/commonjs/components/DeprecatedFAB.js +26 -0
- package/lib/commonjs/components/Divider.js +9 -0
- package/lib/commonjs/components/Elevation.js +25 -2
- package/lib/commonjs/components/FAB.js +10 -0
- package/lib/commonjs/components/FieldSearchBarFull.js +18 -0
- package/lib/commonjs/components/FormRow.js +10 -0
- package/lib/commonjs/components/Header.js +13 -0
- package/lib/commonjs/components/HeaderLarge.js +9 -0
- package/lib/commonjs/components/HeaderMedium.js +9 -0
- package/lib/commonjs/components/HeaderOverline.js +9 -0
- package/lib/commonjs/components/IconButton.js +10 -0
- package/lib/commonjs/components/Image.js +17 -0
- package/lib/commonjs/components/Layout.js +12 -2
- package/lib/commonjs/components/NumberInput.js +21 -8
- package/lib/commonjs/components/Picker/Picker.js +42 -9
- package/lib/commonjs/components/Picker/PickerComponent.android.js +43 -7
- package/lib/commonjs/components/Picker/PickerComponent.ios.js +27 -8
- package/lib/commonjs/components/Picker/PickerComponent.web.js +43 -7
- package/lib/commonjs/components/Portal/Portal.js +14 -4
- package/lib/commonjs/components/Portal/PortalConsumer.js +15 -5
- package/lib/commonjs/components/Portal/PortalHost.js +31 -4
- package/lib/commonjs/components/Portal/PortalManager.js +19 -7
- package/lib/commonjs/components/ProgressBar.js +45 -9
- package/lib/commonjs/components/ProgressCircle.js +10 -0
- package/lib/commonjs/components/ProgressIndicator.js +9 -0
- package/lib/commonjs/components/RadioButton/RadioButton.js +14 -1
- package/lib/commonjs/components/RadioButton/RadioButtonFieldGroup.js +10 -0
- package/lib/commonjs/components/RadioButton/RadioButtonGroup.js +14 -0
- package/lib/commonjs/components/RadioButton/RadioButtonRow.js +44 -6
- package/lib/commonjs/components/RadioButton/context.js +5 -0
- package/lib/commonjs/components/RadioButton/index.js +5 -0
- package/lib/commonjs/components/Row.js +11 -0
- package/lib/commonjs/components/RowBodyIcon.js +10 -0
- package/lib/commonjs/components/RowHeadlineImageCaption.js +11 -2
- package/lib/commonjs/components/RowHeadlineImageIcon.js +10 -0
- package/lib/commonjs/components/SVG.js +9 -0
- package/lib/commonjs/components/ScreenContainer.js +36 -4
- package/lib/commonjs/components/Slider.js +21 -0
- package/lib/commonjs/components/StarRating.js +10 -0
- package/lib/commonjs/components/StepIndicator.js +71 -19
- package/lib/commonjs/components/Stepper.js +28 -8
- package/lib/commonjs/components/Surface.js +14 -0
- package/lib/commonjs/components/Swiper/Swiper.js +8 -0
- package/lib/commonjs/components/Swiper/SwiperItem.js +6 -0
- package/lib/commonjs/components/Swiper/index.js +3 -0
- package/lib/commonjs/components/Switch.js +18 -5
- package/lib/commonjs/components/Text.js +53 -8
- package/lib/commonjs/components/TextField.js +118 -35
- package/lib/commonjs/components/ToggleButton.js +14 -0
- package/lib/commonjs/components/Touchable.js +5 -0
- package/lib/commonjs/components/Touchable.web.js +2 -0
- package/lib/commonjs/components/Typography.js +5 -0
- package/lib/commonjs/components/useAuthState.js +9 -0
- package/lib/commonjs/constants.js +5 -1
- package/lib/commonjs/hooks.js +7 -4
- package/lib/commonjs/index.js +52 -7
- package/lib/commonjs/interfaces/Icon.js +5 -3
- package/lib/commonjs/mappings/Accordion.js +2 -0
- package/lib/commonjs/mappings/AccordionItem.js +2 -0
- package/lib/commonjs/mappings/ActionSheet.js +2 -0
- package/lib/commonjs/mappings/ActionSheetCancel.js +2 -0
- package/lib/commonjs/mappings/ActionSheetItem.js +2 -0
- package/lib/commonjs/mappings/ActivityIndicator.js +2 -0
- package/lib/commonjs/mappings/AudioPlayer.js +2 -0
- package/lib/commonjs/mappings/AvatarEdit.js +2 -0
- package/lib/commonjs/mappings/Banner.js +2 -0
- package/lib/commonjs/mappings/BlurView.js +2 -0
- package/lib/commonjs/mappings/Button.js +5 -6
- package/lib/commonjs/mappings/Card.js +4 -3
- package/lib/commonjs/mappings/CardBlock.js +5 -6
- package/lib/commonjs/mappings/CardContainer.js +7 -5
- package/lib/commonjs/mappings/CardContainerRating.js +4 -4
- package/lib/commonjs/mappings/CardContainerShortImage.js +2 -0
- package/lib/commonjs/mappings/CardInline.js +2 -0
- package/lib/commonjs/mappings/Carousel.js +2 -0
- package/lib/commonjs/mappings/Checkbox.js +2 -0
- package/lib/commonjs/mappings/CheckboxGroup.js +2 -0
- package/lib/commonjs/mappings/CheckboxRow.js +2 -0
- package/lib/commonjs/mappings/CircleImage.js +2 -0
- package/lib/commonjs/mappings/Container.js +2 -0
- package/lib/commonjs/mappings/CustomCode.js +2 -0
- package/lib/commonjs/mappings/DatePicker.js +17 -4
- package/lib/commonjs/mappings/Divider.js +2 -0
- package/lib/commonjs/mappings/FAB.js +2 -0
- package/lib/commonjs/mappings/Fetch.js +2 -0
- package/lib/commonjs/mappings/FieldSearchBarFull.js +3 -2
- package/lib/commonjs/mappings/FlashList.js +2 -0
- package/lib/commonjs/mappings/FlatList.js +2 -0
- package/lib/commonjs/mappings/HeaderLarge.js +2 -0
- package/lib/commonjs/mappings/HeaderMedium.js +2 -0
- package/lib/commonjs/mappings/HeaderOverline.js +2 -0
- package/lib/commonjs/mappings/Icon.js +3 -2
- package/lib/commonjs/mappings/IconButton.js +2 -0
- package/lib/commonjs/mappings/Image.js +2 -0
- package/lib/commonjs/mappings/ImageBackground.js +2 -0
- package/lib/commonjs/mappings/KeyboardAvoidingView.js +2 -0
- package/lib/commonjs/mappings/KeyboardAwareScrollView.js +2 -0
- package/lib/commonjs/mappings/Layout.js +2 -0
- package/lib/commonjs/mappings/LinearGradient.js +2 -0
- package/lib/commonjs/mappings/MapCallout.js +2 -0
- package/lib/commonjs/mappings/MapMarker.js +2 -0
- package/lib/commonjs/mappings/MapView.js +2 -0
- package/lib/commonjs/mappings/Modal.js +2 -0
- package/lib/commonjs/mappings/NumberInput.js +4 -4
- package/lib/commonjs/mappings/Picker.js +4 -4
- package/lib/commonjs/mappings/ProgressBar.js +2 -0
- package/lib/commonjs/mappings/ProgressCircle.js +2 -0
- package/lib/commonjs/mappings/ProgressIndicator.js +2 -0
- package/lib/commonjs/mappings/RadioButton.js +2 -0
- package/lib/commonjs/mappings/RadioButtonGroup.js +2 -0
- package/lib/commonjs/mappings/RadioButtonRow.js +2 -0
- package/lib/commonjs/mappings/RowBodyIcon.js +2 -0
- package/lib/commonjs/mappings/RowHeadlineImageCaption.js +2 -0
- package/lib/commonjs/mappings/RowHeadlineImageIcon.js +8 -12
- package/lib/commonjs/mappings/SVG.js +2 -0
- package/lib/commonjs/mappings/SafeAreaView.js +2 -0
- package/lib/commonjs/mappings/ScrollView.js +2 -0
- package/lib/commonjs/mappings/Slider.js +2 -0
- package/lib/commonjs/mappings/StarRating.js +9 -3
- package/lib/commonjs/mappings/Stepper.js +3 -1
- package/lib/commonjs/mappings/Surface.js +2 -0
- package/lib/commonjs/mappings/Swiper.js +2 -0
- package/lib/commonjs/mappings/SwiperItem.js +2 -0
- package/lib/commonjs/mappings/Switch.js +2 -0
- package/lib/commonjs/mappings/Text.js +5 -5
- package/lib/commonjs/mappings/TextArea.js +3 -2
- package/lib/commonjs/mappings/TextField.js +8 -7
- package/lib/commonjs/mappings/TextInput.js +3 -2
- package/lib/commonjs/mappings/ToggleButton.js +2 -0
- package/lib/commonjs/mappings/Touchable.js +2 -0
- package/lib/commonjs/mappings/Video.js +2 -0
- package/lib/commonjs/mappings/View.js +2 -0
- package/lib/commonjs/mappings/WebView.js +2 -0
- package/lib/commonjs/styles/DarkTheme.js +6 -5
- package/lib/commonjs/styles/DefaultTheme.js +17 -26
- package/lib/commonjs/styles/fonts.js +5 -3
- package/lib/commonjs/styles/overlay.js +14 -5
- package/lib/commonjs/styles/shadow.js +9 -0
- package/lib/commonjs/theming.js +4 -0
- package/lib/commonjs/utilities.js +14 -2
- package/lib/module/Provider.js +1 -0
- package/lib/module/components/Accordion/AccordionGroup.js +4 -0
- package/lib/module/components/Accordion/AccordionItem.js +28 -4
- package/lib/module/components/ActionSheet/ActionSheet.js +2 -0
- package/lib/module/components/ActionSheet/ActionSheetCancel.js +2 -0
- package/lib/module/components/ActionSheet/ActionSheetItem.js +2 -0
- package/lib/module/components/AnimatedCircularProgress.js +6 -0
- package/lib/module/components/AspectRatio.js +6 -0
- package/lib/module/components/AvatarEdit.js +3 -0
- package/lib/module/components/Banner.js +33 -12
- package/lib/module/components/Button.js +41 -12
- package/lib/module/components/Card.js +2 -0
- package/lib/module/components/CardBlock.js +20 -4
- package/lib/module/components/CardContainer.js +7 -0
- package/lib/module/components/CardContainerRating.js +8 -2
- package/lib/module/components/CardContainerShortImage.js +3 -0
- package/lib/module/components/CardInline.js +2 -0
- package/lib/module/components/Carousel.js +41 -11
- package/lib/module/components/Checkbox/Checkbox.js +9 -3
- package/lib/module/components/Checkbox/CheckboxGroup.js +5 -0
- package/lib/module/components/Checkbox/CheckboxGroupRow.js +31 -5
- package/lib/module/components/Checkbox/CheckboxRow.js +34 -8
- package/lib/module/components/Checkbox/context.js +3 -1
- package/lib/module/components/CircleImage.js +3 -0
- package/lib/module/components/CircularProgress.js +22 -8
- package/lib/module/components/Config.js +11 -5
- package/lib/module/components/Container.js +3 -0
- package/lib/module/components/DatePicker/DatePicker.js +73 -30
- package/lib/module/components/DatePicker/DatePickerComponent.js +2 -0
- package/lib/module/components/DatePicker/DatePickerComponent.web.js +2 -0
- package/lib/module/components/DeprecatedButton.js +9 -0
- package/lib/module/components/DeprecatedCardWrapper.js +6 -0
- package/lib/module/components/DeprecatedFAB.js +34 -3
- package/lib/module/components/Divider.js +3 -0
- package/lib/module/components/Elevation.js +3 -0
- package/lib/module/components/FAB.js +3 -0
- package/lib/module/components/FieldSearchBarFull.js +9 -0
- package/lib/module/components/FormRow.js +1 -0
- package/lib/module/components/Header.js +2 -0
- package/lib/module/components/HeaderLarge.js +2 -0
- package/lib/module/components/HeaderMedium.js +2 -0
- package/lib/module/components/HeaderOverline.js +2 -0
- package/lib/module/components/IconButton.js +3 -0
- package/lib/module/components/Image.js +27 -2
- package/lib/module/components/Layout.js +42 -21
- package/lib/module/components/NumberInput.js +16 -8
- package/lib/module/components/Picker/Picker.js +34 -10
- package/lib/module/components/Picker/PickerComponent.android.js +10 -6
- package/lib/module/components/Picker/PickerComponent.ios.js +11 -8
- package/lib/module/components/Picker/PickerComponent.web.js +10 -6
- package/lib/module/components/Portal/Portal.js +6 -4
- package/lib/module/components/Portal/PortalConsumer.js +14 -9
- package/lib/module/components/Portal/PortalHost.js +44 -15
- package/lib/module/components/Portal/PortalManager.js +14 -7
- package/lib/module/components/ProgressBar.js +17 -5
- package/lib/module/components/ProgressCircle.js +2 -0
- package/lib/module/components/ProgressIndicator.js +2 -0
- package/lib/module/components/RadioButton/RadioButton.js +20 -2
- package/lib/module/components/RadioButton/RadioButtonFieldGroup.js +3 -0
- package/lib/module/components/RadioButton/RadioButtonGroup.js +23 -2
- package/lib/module/components/RadioButton/RadioButtonRow.js +32 -6
- package/lib/module/components/RadioButton/context.js +3 -1
- package/lib/module/components/Row.js +2 -0
- package/lib/module/components/RowBodyIcon.js +2 -0
- package/lib/module/components/RowHeadlineImageCaption.js +3 -2
- package/lib/module/components/RowHeadlineImageIcon.js +2 -0
- package/lib/module/components/SVG.js +2 -0
- package/lib/module/components/ScreenContainer.js +6 -0
- package/lib/module/components/Slider.js +10 -0
- package/lib/module/components/StarRating.js +3 -0
- package/lib/module/components/StepIndicator.js +29 -5
- package/lib/module/components/Stepper.js +18 -10
- package/lib/module/components/Surface.js +20 -1
- package/lib/module/components/Swiper/Swiper.js +4 -0
- package/lib/module/components/Swiper/SwiperItem.js +2 -0
- package/lib/module/components/Switch.js +27 -12
- package/lib/module/components/Text.js +10 -3
- package/lib/module/components/TextField.js +105 -35
- package/lib/module/components/ToggleButton.js +5 -0
- package/lib/module/components/Touchable.js +1 -0
- package/lib/module/components/useAuthState.js +4 -0
- package/lib/module/constants.js +1 -2
- package/lib/module/hooks.js +2 -4
- package/lib/module/index.js +2 -5
- package/lib/module/interfaces/Icon.js +1 -2
- package/lib/module/mappings/Button.js +3 -6
- package/lib/module/mappings/Card.js +2 -3
- package/lib/module/mappings/CardBlock.js +3 -6
- package/lib/module/mappings/CardContainer.js +5 -5
- package/lib/module/mappings/CardContainerRating.js +2 -4
- package/lib/module/mappings/DatePicker.js +16 -5
- package/lib/module/mappings/Fetch.js +1 -0
- package/lib/module/mappings/FieldSearchBarFull.js +5 -3
- package/lib/module/mappings/Icon.js +1 -2
- package/lib/module/mappings/NumberInput.js +2 -4
- package/lib/module/mappings/Picker.js +2 -4
- package/lib/module/mappings/RowHeadlineImageIcon.js +6 -12
- package/lib/module/mappings/StarRating.js +8 -3
- package/lib/module/mappings/Stepper.js +2 -2
- package/lib/module/mappings/Text.js +3 -5
- package/lib/module/mappings/TextArea.js +1 -2
- package/lib/module/mappings/TextField.js +6 -7
- package/lib/module/mappings/TextInput.js +1 -2
- package/lib/module/styles/DarkTheme.js +2 -4
- package/lib/module/styles/DefaultTheme.js +13 -26
- package/lib/module/styles/fonts.js +1 -2
- package/lib/module/styles/overlay.js +10 -4
- package/lib/module/styles/shadow.js +6 -0
- package/lib/module/utilities.js +5 -2
- package/lib/typescript/src/components/DatePicker/DatePicker.d.ts +4 -0
- package/lib/typescript/src/components/Stepper.d.ts +1 -2
- package/lib/typescript/src/index.d.ts +0 -1
- package/lib/typescript/src/mappings/DatePicker.d.ts +42 -0
- package/package.json +3 -5
- package/src/components/Carousel.js +2 -2
- package/src/components/Carousel.tsx +2 -2
- package/src/components/DatePicker/DatePicker.js +14 -8
- package/src/components/DatePicker/DatePicker.tsx +23 -7
- package/src/components/Picker/Picker.js +1 -1
- package/src/components/Picker/Picker.tsx +2 -2
- package/src/components/Stepper.js +6 -3
- package/src/components/Stepper.tsx +6 -6
- package/src/index.js +0 -1
- package/src/index.tsx +0 -1
- package/src/mappings/DatePicker.js +21 -1
- package/src/mappings/DatePicker.ts +23 -0
- package/src/mappings/Stepper.js +5 -2
- package/src/mappings/Stepper.ts +5 -1
- package/lib/commonjs/components/BottomSheet/BottomSheet.native.js +0 -58
- package/lib/commonjs/components/BottomSheet/BottomSheet.web.js +0 -83
- package/lib/commonjs/components/BottomSheet/index.js +0 -13
- package/lib/commonjs/components/BottomSheet/types.js +0 -5
- package/lib/commonjs/mappings/BottomSheet.js +0 -20
- package/lib/module/components/BottomSheet/BottomSheet.native.js +0 -49
- package/lib/module/components/BottomSheet/BottomSheet.web.js +0 -75
- package/lib/module/components/BottomSheet/index.js +0 -2
- package/lib/module/components/BottomSheet/types.js +0 -1
- package/lib/module/mappings/BottomSheet.js +0 -13
- package/lib/typescript/src/components/BottomSheet/BottomSheet.native.d.ts +0 -4
- package/lib/typescript/src/components/BottomSheet/BottomSheet.web.d.ts +0 -4
- package/lib/typescript/src/components/BottomSheet/index.d.ts +0 -1
- package/lib/typescript/src/components/BottomSheet/types.d.ts +0 -8
- package/lib/typescript/src/mappings/BottomSheet.d.ts +0 -19
- package/src/components/BottomSheet/BottomSheet.native.js +0 -37
- package/src/components/BottomSheet/BottomSheet.native.tsx +0 -60
- package/src/components/BottomSheet/BottomSheet.web.js +0 -56
- package/src/components/BottomSheet/BottomSheet.web.tsx +0 -90
- package/src/components/BottomSheet/index.js +0 -2
- package/src/components/BottomSheet/index.tsx +0 -2
- package/src/components/BottomSheet/types.js +0 -1
- package/src/components/BottomSheet/types.tsx +0 -8
- package/src/mappings/BottomSheet.js +0 -20
- package/src/mappings/BottomSheet.ts +0 -25
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
1
|
import * as React from "react";
|
|
3
2
|
import { StyleSheet, View, Platform } from "react-native";
|
|
4
3
|
import { isString } from "lodash";
|
|
@@ -7,11 +6,13 @@ import { usePrevious } from "../../hooks";
|
|
|
7
6
|
import Text from "../Text";
|
|
8
7
|
import Touchable from "../Touchable";
|
|
9
8
|
import Checkbox from "./Checkbox";
|
|
10
|
-
export
|
|
9
|
+
export var Direction;
|
|
10
|
+
|
|
11
11
|
(function (Direction) {
|
|
12
12
|
Direction["Row"] = "row";
|
|
13
13
|
Direction["RowReverse"] = "row-reverse";
|
|
14
14
|
})(Direction || (Direction = {}));
|
|
15
|
+
|
|
15
16
|
const renderLabel = (value, labelStyle, textStyle) => {
|
|
16
17
|
if (isString(value)) {
|
|
17
18
|
return /*#__PURE__*/React.createElement(Text, {
|
|
@@ -21,6 +22,7 @@ const renderLabel = (value, labelStyle, textStyle) => {
|
|
|
21
22
|
return /*#__PURE__*/React.createElement(React.Fragment, null, value);
|
|
22
23
|
}
|
|
23
24
|
};
|
|
25
|
+
|
|
24
26
|
const CheckboxRow = _ref => {
|
|
25
27
|
let {
|
|
26
28
|
label = "Label",
|
|
@@ -48,38 +50,42 @@ const CheckboxRow = _ref => {
|
|
|
48
50
|
if (status != null) {
|
|
49
51
|
setInternalValue(status);
|
|
50
52
|
}
|
|
51
|
-
}, [status]);
|
|
52
|
-
|
|
53
|
-
// This special logic is to handle weird APIs like Airtable that return
|
|
53
|
+
}, [status]); // This special logic is to handle weird APIs like Airtable that return
|
|
54
54
|
// true or undefined for a boolean
|
|
55
|
+
|
|
55
56
|
const previousDefaultValue = usePrevious(defaultValue);
|
|
56
57
|
React.useEffect(() => {
|
|
57
58
|
if (defaultValue !== previousDefaultValue) {
|
|
58
59
|
setInternalValue(Boolean(defaultValue));
|
|
59
60
|
}
|
|
60
61
|
}, [defaultValue, previousDefaultValue]);
|
|
62
|
+
|
|
61
63
|
const handlePress = () => {
|
|
62
64
|
const newValue = !internalValue;
|
|
63
65
|
setInternalValue(newValue);
|
|
64
66
|
onPress === null || onPress === void 0 ? void 0 : onPress(newValue);
|
|
67
|
+
|
|
65
68
|
if (newValue) {
|
|
66
69
|
onCheck === null || onCheck === void 0 ? void 0 : onCheck();
|
|
67
70
|
}
|
|
71
|
+
|
|
68
72
|
if (!newValue) {
|
|
69
73
|
onUncheck === null || onUncheck === void 0 ? void 0 : onUncheck();
|
|
70
74
|
}
|
|
71
75
|
};
|
|
76
|
+
|
|
72
77
|
const {
|
|
73
78
|
textStyles,
|
|
74
79
|
viewStyles
|
|
75
80
|
} = extractStyles(style);
|
|
76
|
-
return /*#__PURE__*/React.createElement(Touchable,
|
|
81
|
+
return /*#__PURE__*/React.createElement(Touchable, {
|
|
77
82
|
onPress: handlePress,
|
|
78
83
|
style: [viewStyles, styles.mainParent, {
|
|
79
84
|
flexDirection: direction
|
|
80
85
|
}],
|
|
81
|
-
disabled: disabled
|
|
82
|
-
|
|
86
|
+
disabled: disabled,
|
|
87
|
+
...rest
|
|
88
|
+
}, /*#__PURE__*/React.createElement(View, {
|
|
83
89
|
style: [styles.label, {
|
|
84
90
|
alignItems: direction === Direction.Row ? "flex-start" : "flex-end"
|
|
85
91
|
}, labelContainerStyle]
|
|
@@ -96,6 +102,7 @@ const CheckboxRow = _ref => {
|
|
|
96
102
|
size: size
|
|
97
103
|
}));
|
|
98
104
|
};
|
|
105
|
+
|
|
99
106
|
const styles = StyleSheet.create({
|
|
100
107
|
mainParent: {
|
|
101
108
|
alignItems: "center",
|
|
@@ -115,4 +122,23 @@ const styles = StyleSheet.create({
|
|
|
115
122
|
flex: 3
|
|
116
123
|
}
|
|
117
124
|
});
|
|
125
|
+
export default CheckboxRow;heet.create({
|
|
126
|
+
mainParent: {
|
|
127
|
+
alignItems: "center",
|
|
128
|
+
justifyContent: "space-around",
|
|
129
|
+
paddingStart: 20,
|
|
130
|
+
minHeight: 50,
|
|
131
|
+
paddingEnd: 20,
|
|
132
|
+
display: "flex",
|
|
133
|
+
...Platform.select({
|
|
134
|
+
web: {
|
|
135
|
+
cursor: "pointer",
|
|
136
|
+
userSelect: "none"
|
|
137
|
+
}
|
|
138
|
+
})
|
|
139
|
+
},
|
|
140
|
+
label: {
|
|
141
|
+
flex: 3
|
|
142
|
+
}
|
|
143
|
+
});
|
|
118
144
|
export default CheckboxRow;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { createContext, useContext } from "react";
|
|
2
|
-
export
|
|
2
|
+
export var Direction;
|
|
3
|
+
|
|
3
4
|
(function (Direction) {
|
|
4
5
|
Direction["Horizontal"] = "horizontal";
|
|
5
6
|
Direction["Vertical"] = "vertical";
|
|
6
7
|
})(Direction || (Direction = {}));
|
|
8
|
+
|
|
7
9
|
export const checkboxGroupContext = /*#__PURE__*/createContext({
|
|
8
10
|
onValueChange: () => {},
|
|
9
11
|
values: [],
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
|
|
2
3
|
import * as React from "react";
|
|
3
4
|
import { Image } from "react-native";
|
|
4
5
|
import Config from "./Config";
|
|
6
|
+
|
|
5
7
|
const CircleImage = _ref => {
|
|
6
8
|
let {
|
|
7
9
|
source = Config.placeholderImageURL,
|
|
@@ -22,4 +24,5 @@ const CircleImage = _ref => {
|
|
|
22
24
|
resizeMode: "cover"
|
|
23
25
|
}, props));
|
|
24
26
|
};
|
|
27
|
+
|
|
25
28
|
export default CircleImage;
|
|
@@ -1,28 +1,30 @@
|
|
|
1
|
-
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
2
|
-
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
3
|
-
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
4
1
|
import React from "react";
|
|
5
2
|
import { View } from "react-native";
|
|
6
3
|
import { Svg, Path, G } from "react-native-svg";
|
|
4
|
+
|
|
7
5
|
class CircularProgress extends React.Component {
|
|
8
6
|
constructor() {
|
|
9
7
|
super(...arguments);
|
|
10
|
-
|
|
8
|
+
|
|
9
|
+
this.polarToCartesian = (centerX, centerY, radius, angleInDegrees) => {
|
|
11
10
|
var angleInRadians = (angleInDegrees - 90) * Math.PI / 180.0;
|
|
12
11
|
return {
|
|
13
12
|
x: centerX + radius * Math.cos(angleInRadians),
|
|
14
13
|
y: centerY + radius * Math.sin(angleInRadians)
|
|
15
14
|
};
|
|
16
|
-
}
|
|
17
|
-
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
this.circlePath = (x, y, radius, startAngle, endAngle) => {
|
|
18
18
|
var start = this.polarToCartesian(x, y, radius, endAngle * 0.9999);
|
|
19
19
|
var end = this.polarToCartesian(x, y, radius, startAngle);
|
|
20
20
|
var largeArcFlag = endAngle - startAngle <= 180 ? "0" : "1";
|
|
21
21
|
var d = ["M", start.x, start.y, "A", radius, radius, 0, largeArcFlag, 0, end.x, end.y];
|
|
22
22
|
return d.join(" ");
|
|
23
|
-
}
|
|
24
|
-
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
this.clampFill = fill => Math.min(100, Math.max(0, fill));
|
|
25
26
|
}
|
|
27
|
+
|
|
26
28
|
render() {
|
|
27
29
|
const {
|
|
28
30
|
size,
|
|
@@ -100,5 +102,17 @@ class CircularProgress extends React.Component {
|
|
|
100
102
|
style: localChildrenContainerStyle
|
|
101
103
|
}, children(fill)));
|
|
102
104
|
}
|
|
105
|
+
|
|
103
106
|
}
|
|
107
|
+
|
|
108
|
+
export default CircularProgress;strokeLinecap: lineCap,
|
|
109
|
+
strokeDasharray: strokeDasharrayTint,
|
|
110
|
+
fill: "transparent"
|
|
111
|
+
}), cap)), children && /*#__PURE__*/React.createElement(View, {
|
|
112
|
+
style: localChildrenContainerStyle
|
|
113
|
+
}, children(fill)));
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
}
|
|
117
|
+
|
|
104
118
|
export default CircularProgress;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Dimensions, Platform } from "react-native";
|
|
2
|
+
|
|
2
3
|
const getWindowDimensions = () => {
|
|
3
4
|
const {
|
|
4
5
|
width,
|
|
@@ -9,27 +10,32 @@ const getWindowDimensions = () => {
|
|
|
9
10
|
windowHeight: height
|
|
10
11
|
};
|
|
11
12
|
};
|
|
13
|
+
|
|
12
14
|
const {
|
|
13
15
|
windowWidth,
|
|
14
16
|
windowHeight
|
|
15
17
|
} = getWindowDimensions();
|
|
18
|
+
|
|
16
19
|
const getFilters = options => {
|
|
17
20
|
const {
|
|
18
21
|
width,
|
|
19
22
|
height
|
|
20
23
|
} = options;
|
|
21
24
|
const filters = ["c_scale", "q_auto", "dpr_auto"];
|
|
22
|
-
if (width) filters.push(
|
|
23
|
-
if (height) filters.push(
|
|
25
|
+
if (width) filters.push("w_".concat(width));
|
|
26
|
+
if (height) filters.push("h_".concat(height));
|
|
24
27
|
return filters.join(",");
|
|
25
28
|
};
|
|
29
|
+
|
|
26
30
|
const buildImageUrl = (options, name) => {
|
|
27
31
|
const filters = getFilters(options);
|
|
28
|
-
return ["https://res.cloudinary.com/altos/image/upload", filters,
|
|
32
|
+
return ["https://res.cloudinary.com/altos/image/upload", filters, "".concat(name, ".png")].join("/");
|
|
29
33
|
};
|
|
34
|
+
|
|
30
35
|
const getExtension = () => {
|
|
31
36
|
return Platform.OS === "web" ? ".svg" : ".png";
|
|
32
37
|
};
|
|
38
|
+
|
|
33
39
|
export default {
|
|
34
40
|
windowWidth,
|
|
35
41
|
windowHeight,
|
|
@@ -68,6 +74,6 @@ export default {
|
|
|
68
74
|
fieldSearchBarFullIconSize: 24,
|
|
69
75
|
stepperButtonSize: 40,
|
|
70
76
|
radioButtonSize: 24,
|
|
71
|
-
topSafeAreaViewHeight: 0
|
|
72
|
-
|
|
77
|
+
topSafeAreaViewHeight: 0 // topSafeAreaViewHeight: Platform.OS === "android" ? Constants.statusBarHeight : 0
|
|
78
|
+
|
|
73
79
|
};
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
|
|
2
3
|
import * as React from "react";
|
|
3
4
|
import { View, ImageBackground, StyleSheet } from "react-native";
|
|
4
5
|
import { withTheme } from "../theming";
|
|
5
6
|
import Elevation from "./Elevation";
|
|
7
|
+
|
|
6
8
|
const Container = _ref => {
|
|
7
9
|
let {
|
|
8
10
|
useThemeGutterPadding,
|
|
@@ -80,4 +82,5 @@ const Container = _ref => {
|
|
|
80
82
|
style: innerStyle
|
|
81
83
|
}, children));
|
|
82
84
|
};
|
|
85
|
+
|
|
83
86
|
export default withTheme(Container);
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
1
|
import * as React from "react";
|
|
3
2
|
import { View, Animated, Text, StyleSheet, I18nManager, TextInput as NativeTextInput } from "react-native";
|
|
4
3
|
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
|
@@ -7,11 +6,13 @@ import { withTheme } from "../../theming";
|
|
|
7
6
|
import Portal from "../Portal/Portal";
|
|
8
7
|
import Touchable from "../Touchable";
|
|
9
8
|
import DateTimePicker from "./DatePickerComponent";
|
|
9
|
+
import { extractStyles } from "../../utilities";
|
|
10
10
|
const AnimatedText = Animated.createAnimatedComponent(Text);
|
|
11
11
|
const FOCUS_ANIMATION_DURATION = 150;
|
|
12
12
|
const BLUR_ANIMATION_DURATION = 180;
|
|
13
13
|
const ICON_SIZE = 24;
|
|
14
14
|
const MONTHS = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
|
|
15
|
+
|
|
15
16
|
const DatePicker = _ref => {
|
|
16
17
|
let {
|
|
17
18
|
Icon,
|
|
@@ -33,7 +34,11 @@ const DatePicker = _ref => {
|
|
|
33
34
|
rightIconName,
|
|
34
35
|
leftIconMode = "inset",
|
|
35
36
|
label,
|
|
37
|
+
labelSize,
|
|
38
|
+
labelColor,
|
|
36
39
|
placeholder,
|
|
40
|
+
borderColor: inputBorderColor,
|
|
41
|
+
borderColorActive: inputBorderColorActive,
|
|
37
42
|
...props
|
|
38
43
|
} = _ref;
|
|
39
44
|
const [value, setValue] = React.useState(date || defaultValue);
|
|
@@ -50,50 +55,58 @@ const DatePicker = _ref => {
|
|
|
50
55
|
measured: false,
|
|
51
56
|
width: 0
|
|
52
57
|
});
|
|
58
|
+
const {
|
|
59
|
+
textStyles
|
|
60
|
+
} = extractStyles(style);
|
|
61
|
+
|
|
53
62
|
const getValidDate = () => {
|
|
54
63
|
if (!value) {
|
|
55
64
|
return new Date();
|
|
56
65
|
}
|
|
66
|
+
|
|
57
67
|
return typeof (value === null || value === void 0 ? void 0 : value.getMonth) === "function" ? value : new Date();
|
|
58
68
|
};
|
|
69
|
+
|
|
59
70
|
const formatDate = () => {
|
|
60
71
|
if (!value) return "";
|
|
61
72
|
let newDate = getValidDate();
|
|
62
73
|
if (format) return dateFormat(newDate, format);
|
|
74
|
+
|
|
63
75
|
if (mode === "time") {
|
|
64
|
-
return
|
|
76
|
+
return "".concat(newDate.toLocaleTimeString());
|
|
65
77
|
}
|
|
78
|
+
|
|
66
79
|
if (mode === "datetime") {
|
|
67
|
-
return
|
|
80
|
+
return "".concat(newDate.toLocaleString());
|
|
68
81
|
}
|
|
69
|
-
|
|
82
|
+
|
|
83
|
+
return "".concat(MONTHS[newDate.getMonth()], " ").concat(newDate.getDate(), ", ").concat(newDate.getFullYear());
|
|
70
84
|
};
|
|
85
|
+
|
|
71
86
|
const toggleVisibility = async () => {
|
|
72
87
|
setPickerVisible(!pickerVisible);
|
|
73
88
|
focused ? _handleBlur() : _handleFocus();
|
|
74
89
|
};
|
|
75
|
-
const insets = useSafeAreaInsets();
|
|
76
90
|
|
|
77
|
-
// const _restoreLabel = () =>
|
|
91
|
+
const insets = useSafeAreaInsets(); // const _restoreLabel = () =>
|
|
78
92
|
// Animated.timing(labeled, {
|
|
79
93
|
// toValue: 1,
|
|
80
94
|
// duration: FOCUS_ANIMATION_DURATION,
|
|
81
95
|
// useNativeDriver: true,
|
|
82
96
|
// }).start();
|
|
83
|
-
|
|
84
97
|
// const _minmizeLabel = () =>
|
|
85
98
|
// Animated.timing(labeled, {
|
|
86
99
|
// toValue: 0,
|
|
87
100
|
// duration: BLUR_ANIMATION_DURATION,
|
|
88
101
|
// useNativeDriver: true,
|
|
89
102
|
// }).start();
|
|
90
|
-
|
|
91
103
|
// const _showPlaceholder = () =>
|
|
92
104
|
// setTimeout(() => setPlaceholder1(placeholder || ""), 50);
|
|
93
105
|
|
|
94
106
|
const _hidePlaceholder = () => {
|
|
95
107
|
setPlaceholder1("");
|
|
96
108
|
};
|
|
109
|
+
|
|
97
110
|
React.useEffect(() => {
|
|
98
111
|
setValue(date);
|
|
99
112
|
}, [date]);
|
|
@@ -116,34 +129,42 @@ const DatePicker = _ref => {
|
|
|
116
129
|
}, [value, focused, placeholder1, labeled]);
|
|
117
130
|
React.useEffect(() => {
|
|
118
131
|
const _showPlaceholder = () => setTimeout(() => setPlaceholder1(placeholder || ""), 50);
|
|
132
|
+
|
|
119
133
|
if (focused || !label) {
|
|
120
134
|
_showPlaceholder();
|
|
121
135
|
} else {
|
|
122
136
|
_hidePlaceholder();
|
|
123
137
|
}
|
|
138
|
+
|
|
124
139
|
return () => {
|
|
125
140
|
clearTimeout(_showPlaceholder());
|
|
126
141
|
};
|
|
127
142
|
}, [focused, label, placeholder]);
|
|
143
|
+
|
|
128
144
|
const _handleFocus = () => {
|
|
129
145
|
if (disabled) {
|
|
130
146
|
return;
|
|
131
147
|
}
|
|
148
|
+
|
|
132
149
|
setFocused(true);
|
|
133
150
|
};
|
|
151
|
+
|
|
134
152
|
const _handleBlur = () => {
|
|
135
153
|
if (disabled) {
|
|
136
154
|
return;
|
|
137
155
|
}
|
|
156
|
+
|
|
138
157
|
setFocused(false);
|
|
139
158
|
};
|
|
159
|
+
|
|
140
160
|
const MINIMIZED_LABEL_Y_OFFSET = -(typography.caption.lineHeight + 4);
|
|
141
161
|
const OUTLINE_MINIMIZED_LABEL_Y_OFFSET = -(16 * 0.5 + 4);
|
|
142
|
-
const MAXIMIZED_LABEL_FONT_SIZE = typography.subtitle1.fontSize;
|
|
143
|
-
const MINIMIZED_LABEL_FONT_SIZE = typography.caption.fontSize;
|
|
162
|
+
const MAXIMIZED_LABEL_FONT_SIZE = (textStyles === null || textStyles === void 0 ? void 0 : textStyles.fontSize) || typography.subtitle1.fontSize;
|
|
163
|
+
const MINIMIZED_LABEL_FONT_SIZE = labelSize ? labelSize : typography.caption.fontSize;
|
|
144
164
|
const hasActiveOutline = focused;
|
|
145
165
|
let inputTextColor, activeColor, underlineColor, borderColor, placeholderColor, containerStyle, backgroundColor, inputStyle;
|
|
146
166
|
inputTextColor = colors.strong;
|
|
167
|
+
|
|
147
168
|
if (disabled) {
|
|
148
169
|
activeColor = colors.light;
|
|
149
170
|
placeholderColor = colors.light;
|
|
@@ -151,11 +172,12 @@ const DatePicker = _ref => {
|
|
|
151
172
|
underlineColor = "transparent";
|
|
152
173
|
backgroundColor = colors.divider;
|
|
153
174
|
} else {
|
|
154
|
-
activeColor = colors.primary;
|
|
155
|
-
placeholderColor = borderColor = colors.light;
|
|
156
|
-
underlineColor = colors.light;
|
|
175
|
+
activeColor = inputBorderColorActive || colors.primary;
|
|
176
|
+
placeholderColor = borderColor = inputBorderColor || colors.light;
|
|
177
|
+
underlineColor = inputBorderColor || colors.light;
|
|
157
178
|
backgroundColor = colors.background;
|
|
158
179
|
}
|
|
180
|
+
|
|
159
181
|
const {
|
|
160
182
|
lineHeight,
|
|
161
183
|
...subtitle1
|
|
@@ -168,6 +190,7 @@ const DatePicker = _ref => {
|
|
|
168
190
|
...subtitle1,
|
|
169
191
|
height: lineHeight
|
|
170
192
|
};
|
|
193
|
+
|
|
171
194
|
if (type === "underline") {
|
|
172
195
|
containerStyle = {
|
|
173
196
|
borderTopLeftRadius: roundness,
|
|
@@ -187,15 +210,19 @@ const DatePicker = _ref => {
|
|
|
187
210
|
};
|
|
188
211
|
inputStyle.paddingHorizontal = 12;
|
|
189
212
|
}
|
|
213
|
+
|
|
190
214
|
if (leftIconName && leftIconMode === "outset") {
|
|
191
215
|
containerStyle.marginLeft = ICON_SIZE + 8;
|
|
192
216
|
}
|
|
217
|
+
|
|
193
218
|
let leftIconColor;
|
|
219
|
+
|
|
194
220
|
if (focused) {
|
|
195
221
|
leftIconColor = colors.primary;
|
|
196
222
|
} else {
|
|
197
223
|
leftIconColor = colors.light;
|
|
198
224
|
}
|
|
225
|
+
|
|
199
226
|
const leftIconProps = {
|
|
200
227
|
size: 24,
|
|
201
228
|
color: leftIconColor,
|
|
@@ -205,9 +232,9 @@ const DatePicker = _ref => {
|
|
|
205
232
|
position: "absolute",
|
|
206
233
|
marginTop: type === "solid" ? leftIconMode === "inset" ? MINIMIZED_LABEL_FONT_SIZE + 4 : 16 : leftIconMode === "outset" ? 16 : 0
|
|
207
234
|
};
|
|
208
|
-
const labelStyle = {
|
|
209
|
-
...typography.subtitle1,
|
|
235
|
+
const labelStyle = { ...typography.subtitle1,
|
|
210
236
|
top: type === "solid" ? 16 : 0,
|
|
237
|
+
fontFamily: textStyles === null || textStyles === void 0 ? void 0 : textStyles.fontFamily,
|
|
211
238
|
left: leftIconName && leftIconMode === "inset" ? ICON_SIZE + (type === "solid" ? 16 : 12) : 0,
|
|
212
239
|
transform: [{
|
|
213
240
|
// Move label to top
|
|
@@ -231,9 +258,7 @@ const DatePicker = _ref => {
|
|
|
231
258
|
};
|
|
232
259
|
const inputStyles = [styles.input, inputStyle, type === "solid" ? {
|
|
233
260
|
marginHorizontal: 12
|
|
234
|
-
} : {}];
|
|
235
|
-
|
|
236
|
-
// const render = (props) => <NativeTextInput {...props} />;
|
|
261
|
+
} : {}, textStyles]; // const render = (props) => <NativeTextInput {...props} />;
|
|
237
262
|
|
|
238
263
|
return /*#__PURE__*/React.createElement(View, {
|
|
239
264
|
style: [styles.container, style]
|
|
@@ -244,9 +269,9 @@ const DatePicker = _ref => {
|
|
|
244
269
|
pointerEvents: "none"
|
|
245
270
|
}, /*#__PURE__*/React.createElement(View, {
|
|
246
271
|
style: [styles.container, style]
|
|
247
|
-
}, leftIconName && leftIconMode === "outset" ? /*#__PURE__*/React.createElement(Icon,
|
|
272
|
+
}, leftIconName && leftIconMode === "outset" ? /*#__PURE__*/React.createElement(Icon, { ...leftIconProps,
|
|
248
273
|
style: leftIconStyle
|
|
249
|
-
})
|
|
274
|
+
}) : null, /*#__PURE__*/React.createElement(View, {
|
|
250
275
|
style: [containerStyle, style ? {
|
|
251
276
|
height: style.height
|
|
252
277
|
} : {}]
|
|
@@ -268,8 +293,7 @@ const DatePicker = _ref => {
|
|
|
268
293
|
React.createElement(View, {
|
|
269
294
|
pointerEvents: "none",
|
|
270
295
|
style: [StyleSheet.absoluteFill, {
|
|
271
|
-
opacity:
|
|
272
|
-
// Hide the label in minimized state until we measure its width
|
|
296
|
+
opacity: // Hide the label in minimized state until we measure its width
|
|
273
297
|
date || focused ? labelLayout.measured ? 1 : 0 : 1
|
|
274
298
|
}]
|
|
275
299
|
}, /*#__PURE__*/React.createElement(AnimatedText, {
|
|
@@ -280,7 +304,7 @@ const DatePicker = _ref => {
|
|
|
280
304
|
style: [styles.placeholder, type === "solid" ? {
|
|
281
305
|
paddingHorizontal: 12
|
|
282
306
|
} : {}, labelStyle, {
|
|
283
|
-
color: colors.light,
|
|
307
|
+
color: labelColor || colors.light,
|
|
284
308
|
opacity: labeled.interpolate({
|
|
285
309
|
inputRange: [0, 1],
|
|
286
310
|
outputRange: [hasActiveOutline ? 1 : 0, 0]
|
|
@@ -291,16 +315,15 @@ const DatePicker = _ref => {
|
|
|
291
315
|
style: [styles.placeholder, type === "solid" ? {
|
|
292
316
|
paddingHorizontal: 12
|
|
293
317
|
} : {}, labelStyle, {
|
|
294
|
-
color:
|
|
318
|
+
color: labelColor || placeholder,
|
|
295
319
|
opacity: hasActiveOutline ? labeled : 1
|
|
296
320
|
}],
|
|
297
321
|
numberOfLines: 1
|
|
298
|
-
}, label)) : null, leftIconName && leftIconMode === "inset" ? /*#__PURE__*/React.createElement(Icon,
|
|
299
|
-
style: {
|
|
300
|
-
...leftIconStyle,
|
|
322
|
+
}, label)) : null, leftIconName && leftIconMode === "inset" ? /*#__PURE__*/React.createElement(Icon, { ...leftIconProps,
|
|
323
|
+
style: { ...leftIconStyle,
|
|
301
324
|
marginLeft: type === "solid" ? 16 : 0
|
|
302
325
|
}
|
|
303
|
-
})
|
|
326
|
+
}) : null, /*#__PURE__*/React.createElement(NativeTextInput, {
|
|
304
327
|
value: formatDate(),
|
|
305
328
|
placeholder: label ? placeholder1 : placeholder,
|
|
306
329
|
editable: !disabled,
|
|
@@ -309,8 +332,9 @@ const DatePicker = _ref => {
|
|
|
309
332
|
onFocus: _handleFocus,
|
|
310
333
|
onBlur: _handleBlur,
|
|
311
334
|
underlineColorAndroid: "transparent",
|
|
312
|
-
style: inputStyles
|
|
313
|
-
|
|
335
|
+
style: inputStyles,
|
|
336
|
+
...props
|
|
337
|
+
})), rightIconName ? /*#__PURE__*/React.createElement(Icon, {
|
|
314
338
|
name: rightIconName,
|
|
315
339
|
size: ICON_SIZE,
|
|
316
340
|
color: colors.light,
|
|
@@ -342,6 +366,7 @@ const DatePicker = _ref => {
|
|
|
342
366
|
}
|
|
343
367
|
})))));
|
|
344
368
|
};
|
|
369
|
+
|
|
345
370
|
const styles = StyleSheet.create({
|
|
346
371
|
container: {
|
|
347
372
|
alignSelf: "stretch"
|
|
@@ -381,4 +406,22 @@ const styles = StyleSheet.create({
|
|
|
381
406
|
alignSelf: "flex-end"
|
|
382
407
|
}
|
|
383
408
|
});
|
|
409
|
+
export default withTheme(DatePicker);tifyContent: "center",
|
|
410
|
+
textAlignVertical: "center",
|
|
411
|
+
margin: 0,
|
|
412
|
+
textAlign: I18nManager.isRTL ? "right" : "left"
|
|
413
|
+
},
|
|
414
|
+
placeholder: {
|
|
415
|
+
position: "absolute",
|
|
416
|
+
left: 0
|
|
417
|
+
},
|
|
418
|
+
pickerContainer: {
|
|
419
|
+
flexDirection: "column",
|
|
420
|
+
width: "100%",
|
|
421
|
+
zIndex: 100
|
|
422
|
+
},
|
|
423
|
+
closeButton: {
|
|
424
|
+
alignSelf: "flex-end"
|
|
425
|
+
}
|
|
426
|
+
});
|
|
384
427
|
export default withTheme(DatePicker);
|
|
@@ -2,6 +2,7 @@ import React from "react";
|
|
|
2
2
|
import { Platform } from "react-native";
|
|
3
3
|
import DateTimePicker from "@react-native-community/datetimepicker";
|
|
4
4
|
import DateTimePickerModal from "react-native-modal-datetime-picker";
|
|
5
|
+
|
|
5
6
|
const DatePickerComponent = _ref => {
|
|
6
7
|
let {
|
|
7
8
|
value,
|
|
@@ -28,4 +29,5 @@ const DatePickerComponent = _ref => {
|
|
|
28
29
|
display: "default"
|
|
29
30
|
});
|
|
30
31
|
};
|
|
32
|
+
|
|
31
33
|
export default DatePickerComponent;
|
|
@@ -4,6 +4,7 @@ import { MuiPickersUtilsProvider, DatePicker, TimePicker, DateTimePicker } from
|
|
|
4
4
|
import { createMuiTheme, ThemeProvider } from "@material-ui/core/styles";
|
|
5
5
|
import { withTheme } from "../../theming";
|
|
6
6
|
import Theme from "../../styles/DefaultTheme";
|
|
7
|
+
|
|
7
8
|
const DatePickerComponent = _ref => {
|
|
8
9
|
let {
|
|
9
10
|
value,
|
|
@@ -40,4 +41,5 @@ const DatePickerComponent = _ref => {
|
|
|
40
41
|
TextFieldComponent: () => null
|
|
41
42
|
})));
|
|
42
43
|
};
|
|
44
|
+
|
|
43
45
|
export default withTheme(DatePickerComponent);
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
|
|
2
3
|
import * as React from "react";
|
|
3
4
|
import { ActivityIndicator, View, Text, StyleSheet } from "react-native";
|
|
4
5
|
import color from "color";
|
|
@@ -6,6 +7,7 @@ import Config from "./Config";
|
|
|
6
7
|
import Touchable from "./Touchable";
|
|
7
8
|
import Elevation from "./Elevation";
|
|
8
9
|
import { withTheme } from "../theming";
|
|
10
|
+
|
|
9
11
|
const Button = _ref => {
|
|
10
12
|
let {
|
|
11
13
|
Icon,
|
|
@@ -29,8 +31,10 @@ const Button = _ref => {
|
|
|
29
31
|
} = _ref;
|
|
30
32
|
let backgroundColor, borderColor, textColor, borderWidth;
|
|
31
33
|
const buttonColor = colorOverride || colors.primary;
|
|
34
|
+
|
|
32
35
|
if (type === "solid") {
|
|
33
36
|
backgroundColor = buttonColor;
|
|
37
|
+
|
|
34
38
|
if (disabled) {
|
|
35
39
|
textColor = color(colors.surface).alpha(disabledOpacity).rgb().string();
|
|
36
40
|
} else {
|
|
@@ -38,23 +42,27 @@ const Button = _ref => {
|
|
|
38
42
|
}
|
|
39
43
|
} else {
|
|
40
44
|
backgroundColor = "transparent";
|
|
45
|
+
|
|
41
46
|
if (disabled) {
|
|
42
47
|
textColor = color(buttonColor).alpha(disabledOpacity).rgb().string();
|
|
43
48
|
} else {
|
|
44
49
|
textColor = labelColor || buttonColor;
|
|
45
50
|
}
|
|
46
51
|
}
|
|
52
|
+
|
|
47
53
|
if (type === "outline") {
|
|
48
54
|
if (disabled) {
|
|
49
55
|
borderColor = color(buttonColor).alpha(disabledOpacity).rgb().string();
|
|
50
56
|
} else {
|
|
51
57
|
borderColor = buttonColor;
|
|
52
58
|
}
|
|
59
|
+
|
|
53
60
|
borderWidth = StyleSheet.hairlineWidth;
|
|
54
61
|
} else {
|
|
55
62
|
borderColor = "transparent";
|
|
56
63
|
borderWidth = 0;
|
|
57
64
|
}
|
|
65
|
+
|
|
58
66
|
const buttonStyle = {
|
|
59
67
|
backgroundColor,
|
|
60
68
|
borderColor,
|
|
@@ -124,6 +132,7 @@ const Button = _ref => {
|
|
|
124
132
|
style: [textStyle, typography.button]
|
|
125
133
|
}, children))));
|
|
126
134
|
};
|
|
135
|
+
|
|
127
136
|
const styles = StyleSheet.create({
|
|
128
137
|
button: {
|
|
129
138
|
minWidth: 64,
|
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
|
|
2
3
|
import React from "react";
|
|
3
4
|
import { withTheme } from "../theming";
|
|
4
5
|
import Touchable from "./Touchable";
|
|
6
|
+
|
|
5
7
|
const getWidth = numColumns => {
|
|
6
8
|
switch (numColumns) {
|
|
7
9
|
case 1:
|
|
8
10
|
return "33%";
|
|
11
|
+
|
|
9
12
|
case 2:
|
|
10
13
|
return "50%";
|
|
14
|
+
|
|
11
15
|
default:
|
|
12
16
|
return "100%";
|
|
13
17
|
}
|
|
14
18
|
};
|
|
19
|
+
|
|
15
20
|
const Card = _ref => {
|
|
16
21
|
let {
|
|
17
22
|
numColumns = 3,
|
|
@@ -29,4 +34,5 @@ const Card = _ref => {
|
|
|
29
34
|
}]
|
|
30
35
|
}, rest), children);
|
|
31
36
|
};
|
|
37
|
+
|
|
32
38
|
export default withTheme(Card);
|