@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
|
@@ -4,15 +4,25 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
+
|
|
7
8
|
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
8
10
|
var _reactNative = require("react-native");
|
|
11
|
+
|
|
9
12
|
var _Image = _interopRequireDefault(require("./Image"));
|
|
13
|
+
|
|
10
14
|
var _DeprecatedCardWrapper = _interopRequireDefault(require("./DeprecatedCardWrapper"));
|
|
15
|
+
|
|
11
16
|
var _Elevation = _interopRequireDefault(require("./Elevation"));
|
|
17
|
+
|
|
12
18
|
var _theming = require("../theming");
|
|
19
|
+
|
|
13
20
|
var _Config = _interopRequireDefault(require("./Config"));
|
|
21
|
+
|
|
14
22
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
23
|
+
|
|
15
24
|
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); }
|
|
25
|
+
|
|
16
26
|
const CardBlock = _ref => {
|
|
17
27
|
let {
|
|
18
28
|
image = _Config.default.cardImageUrl,
|
|
@@ -34,11 +44,13 @@ const CardBlock = _ref => {
|
|
|
34
44
|
} = _ref;
|
|
35
45
|
let titleJustification;
|
|
36
46
|
let titleStyle;
|
|
47
|
+
|
|
37
48
|
if (titleCentered && !leftDescription && !rightDescription) {
|
|
38
49
|
titleJustification = "center";
|
|
39
50
|
} else {
|
|
40
51
|
titleJustification = "space-between";
|
|
41
52
|
}
|
|
53
|
+
|
|
42
54
|
if (numColumns === 1) {
|
|
43
55
|
titleStyle = typography.button;
|
|
44
56
|
} else if (numColumns === 2) {
|
|
@@ -46,6 +58,7 @@ const CardBlock = _ref => {
|
|
|
46
58
|
} else {
|
|
47
59
|
titleStyle = typography.headline5;
|
|
48
60
|
}
|
|
61
|
+
|
|
49
62
|
const rightDescriptionStyles = [typography.subtitle2, {
|
|
50
63
|
color: colors.light
|
|
51
64
|
}];
|
|
@@ -102,5 +115,7 @@ const CardBlock = _ref => {
|
|
|
102
115
|
style: rightDescriptionStyles
|
|
103
116
|
}, rightDescription) : null) : null));
|
|
104
117
|
};
|
|
118
|
+
|
|
105
119
|
var _default = (0, _theming.withTheme)(CardBlock);
|
|
120
|
+
|
|
106
121
|
exports.default = _default;
|
|
@@ -4,18 +4,28 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
+
|
|
7
8
|
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
8
10
|
var _reactNative = require("react-native");
|
|
11
|
+
|
|
9
12
|
var _color = _interopRequireDefault(require("color"));
|
|
13
|
+
|
|
10
14
|
var _Image = _interopRequireDefault(require("./Image"));
|
|
15
|
+
|
|
11
16
|
var _DeprecatedCardWrapper = _interopRequireDefault(require("./DeprecatedCardWrapper"));
|
|
17
|
+
|
|
12
18
|
var _Elevation = _interopRequireDefault(require("./Elevation"));
|
|
19
|
+
|
|
13
20
|
var _theming = require("../theming");
|
|
21
|
+
|
|
14
22
|
var _Config = _interopRequireDefault(require("./Config"));
|
|
23
|
+
|
|
15
24
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
16
|
-
|
|
25
|
+
|
|
17
26
|
const ICON_CONTAINER_SIZE = _Config.default.cardIconSize * 2;
|
|
18
27
|
const ICON_CONTAINER_PADDING = _Config.default.cardIconSize / 2 - 1;
|
|
28
|
+
|
|
19
29
|
const CardContainer = _ref => {
|
|
20
30
|
let {
|
|
21
31
|
Icon,
|
|
@@ -39,24 +49,29 @@ const CardContainer = _ref => {
|
|
|
39
49
|
} = _ref;
|
|
40
50
|
let textJustification;
|
|
41
51
|
let titleStyle;
|
|
52
|
+
|
|
42
53
|
if (textCentered && !rightDescription) {
|
|
43
54
|
textJustification = "center";
|
|
44
55
|
} else {
|
|
45
56
|
textJustification = "space-between";
|
|
46
57
|
}
|
|
58
|
+
|
|
47
59
|
switch (numColumns) {
|
|
48
60
|
case 2:
|
|
49
61
|
titleStyle = typography.headline6;
|
|
50
62
|
break;
|
|
63
|
+
|
|
51
64
|
case 3:
|
|
52
65
|
titleStyle = typography.headline5;
|
|
53
66
|
break;
|
|
54
67
|
}
|
|
55
|
-
|
|
68
|
+
|
|
69
|
+
return /*#__PURE__*/_react.default.createElement(_DeprecatedCardWrapper.default, {
|
|
56
70
|
style: style,
|
|
57
71
|
onPress: onPress,
|
|
58
|
-
numColumns: numColumns
|
|
59
|
-
|
|
72
|
+
numColumns: numColumns,
|
|
73
|
+
...rest
|
|
74
|
+
}, /*#__PURE__*/_react.default.createElement(_Elevation.default, {
|
|
60
75
|
style: {
|
|
61
76
|
elevation,
|
|
62
77
|
borderRadius: roundness
|
|
@@ -125,5 +140,18 @@ const CardContainer = _ref => {
|
|
|
125
140
|
color: colors.surface
|
|
126
141
|
})) : null)));
|
|
127
142
|
};
|
|
143
|
+
|
|
144
|
+
var _default = (0, _theming.withTheme)(CardContainer);
|
|
145
|
+
|
|
146
|
+
exports.default = _default;, _color.default)(colors.strong).alpha(_Config.default.cardIconBackgroundOpacity).rgb().string()
|
|
147
|
+
}
|
|
148
|
+
}, /*#__PURE__*/_react.default.createElement(Icon, {
|
|
149
|
+
name: icon,
|
|
150
|
+
size: _Config.default.cardIconSize,
|
|
151
|
+
color: colors.surface
|
|
152
|
+
})) : null)));
|
|
153
|
+
};
|
|
154
|
+
|
|
128
155
|
var _default = (0, _theming.withTheme)(CardContainer);
|
|
156
|
+
|
|
129
157
|
exports.default = _default;
|
|
@@ -4,19 +4,30 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
+
|
|
7
8
|
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
8
10
|
var _reactNative = require("react-native");
|
|
11
|
+
|
|
9
12
|
var _color = _interopRequireDefault(require("color"));
|
|
13
|
+
|
|
10
14
|
var _Image = _interopRequireDefault(require("./Image"));
|
|
15
|
+
|
|
11
16
|
var _DeprecatedCardWrapper = _interopRequireDefault(require("./DeprecatedCardWrapper"));
|
|
17
|
+
|
|
12
18
|
var _Elevation = _interopRequireDefault(require("./Elevation"));
|
|
19
|
+
|
|
13
20
|
var _StarRating = _interopRequireDefault(require("./StarRating"));
|
|
21
|
+
|
|
14
22
|
var _theming = require("../theming");
|
|
23
|
+
|
|
15
24
|
var _Config = _interopRequireDefault(require("./Config"));
|
|
25
|
+
|
|
16
26
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
17
|
-
|
|
27
|
+
|
|
18
28
|
const ICON_CONTAINER_SIZE = _Config.default.cardIconSize * 2;
|
|
19
29
|
const ICON_CONTAINER_PADDING = _Config.default.cardIconSize / 2 - 1;
|
|
30
|
+
|
|
20
31
|
const CardContainerRating = _ref => {
|
|
21
32
|
let {
|
|
22
33
|
Icon,
|
|
@@ -39,21 +50,25 @@ const CardContainerRating = _ref => {
|
|
|
39
50
|
...rest
|
|
40
51
|
} = _ref;
|
|
41
52
|
let titleStyle, rightDescriptionStyle;
|
|
53
|
+
|
|
42
54
|
switch (numColumns) {
|
|
43
55
|
case 2:
|
|
44
56
|
titleStyle = typography.headline6;
|
|
45
57
|
rightDescriptionStyle = typography.body2;
|
|
46
58
|
break;
|
|
59
|
+
|
|
47
60
|
case 3:
|
|
48
61
|
titleStyle = typography.headline5;
|
|
49
62
|
rightDescriptionStyle = typography.caption;
|
|
50
63
|
break;
|
|
51
64
|
}
|
|
52
|
-
|
|
65
|
+
|
|
66
|
+
return /*#__PURE__*/_react.default.createElement(_DeprecatedCardWrapper.default, {
|
|
53
67
|
style: style,
|
|
54
68
|
onPress: onPress,
|
|
55
|
-
numColumns: numColumns
|
|
56
|
-
|
|
69
|
+
numColumns: numColumns,
|
|
70
|
+
...rest
|
|
71
|
+
}, /*#__PURE__*/_react.default.createElement(_Elevation.default, {
|
|
57
72
|
style: {
|
|
58
73
|
elevation,
|
|
59
74
|
borderRadius: roundness
|
|
@@ -62,8 +77,8 @@ const CardContainerRating = _ref => {
|
|
|
62
77
|
style: {
|
|
63
78
|
borderRadius: roundness,
|
|
64
79
|
overflow: "hidden",
|
|
65
|
-
backgroundColor: colors.background
|
|
66
|
-
|
|
80
|
+
backgroundColor: colors.background //background color is needed for bug on android 9 - https://github.com/facebook/react-native/issues/25093
|
|
81
|
+
|
|
67
82
|
}
|
|
68
83
|
}, /*#__PURE__*/_react.default.createElement(_Image.default, {
|
|
69
84
|
style: {
|
|
@@ -129,5 +144,18 @@ const CardContainerRating = _ref => {
|
|
|
129
144
|
color: colors.surface
|
|
130
145
|
})) : null)));
|
|
131
146
|
};
|
|
147
|
+
|
|
148
|
+
var _default = (0, _theming.withTheme)(CardContainerRating);
|
|
149
|
+
|
|
150
|
+
exports.default = _default;or.default)(colors.strong).alpha(_Config.default.cardIconBackgroundOpacity).rgb().string()
|
|
151
|
+
}
|
|
152
|
+
}, /*#__PURE__*/_react.default.createElement(Icon, {
|
|
153
|
+
name: icon,
|
|
154
|
+
size: _Config.default.cardIconSize,
|
|
155
|
+
color: colors.surface
|
|
156
|
+
})) : null)));
|
|
157
|
+
};
|
|
158
|
+
|
|
132
159
|
var _default = (0, _theming.withTheme)(CardContainerRating);
|
|
160
|
+
|
|
133
161
|
exports.default = _default;
|
|
@@ -4,15 +4,23 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
+
|
|
7
8
|
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
8
10
|
var _reactNative = require("react-native");
|
|
11
|
+
|
|
9
12
|
var _Image = _interopRequireDefault(require("./Image"));
|
|
13
|
+
|
|
10
14
|
var _DeprecatedCardWrapper = _interopRequireDefault(require("./DeprecatedCardWrapper"));
|
|
15
|
+
|
|
11
16
|
var _Elevation = _interopRequireDefault(require("./Elevation"));
|
|
17
|
+
|
|
12
18
|
var _theming = require("../theming");
|
|
19
|
+
|
|
13
20
|
var _Config = _interopRequireDefault(require("./Config"));
|
|
21
|
+
|
|
14
22
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
-
|
|
23
|
+
|
|
16
24
|
const CardContainerShortImage = _ref => {
|
|
17
25
|
let {
|
|
18
26
|
image = _Config.default.squareImageUrl,
|
|
@@ -30,10 +38,11 @@ const CardContainerShortImage = _ref => {
|
|
|
30
38
|
onPress,
|
|
31
39
|
...rest
|
|
32
40
|
} = _ref;
|
|
33
|
-
return /*#__PURE__*/_react.default.createElement(_DeprecatedCardWrapper.default,
|
|
41
|
+
return /*#__PURE__*/_react.default.createElement(_DeprecatedCardWrapper.default, {
|
|
34
42
|
style: style,
|
|
35
|
-
onPress: onPress
|
|
36
|
-
|
|
43
|
+
onPress: onPress,
|
|
44
|
+
...rest
|
|
45
|
+
}, /*#__PURE__*/_react.default.createElement(_Elevation.default, {
|
|
37
46
|
style: {
|
|
38
47
|
elevation,
|
|
39
48
|
borderRadius: roundness
|
|
@@ -80,5 +89,20 @@ const CardContainerShortImage = _ref => {
|
|
|
80
89
|
resizeMode: "cover"
|
|
81
90
|
}))));
|
|
82
91
|
};
|
|
92
|
+
|
|
93
|
+
var _default = (0, _theming.withTheme)(CardContainerShortImage);
|
|
94
|
+
|
|
95
|
+
exports.default = _default;}, subtitle) : null), mode === "right" && /*#__PURE__*/_react.default.createElement(_Image.default, {
|
|
96
|
+
style: {
|
|
97
|
+
aspectRatio
|
|
98
|
+
},
|
|
99
|
+
source: typeof image === "string" ? {
|
|
100
|
+
uri: image
|
|
101
|
+
} : image,
|
|
102
|
+
resizeMode: "cover"
|
|
103
|
+
}))));
|
|
104
|
+
};
|
|
105
|
+
|
|
83
106
|
var _default = (0, _theming.withTheme)(CardContainerShortImage);
|
|
107
|
+
|
|
84
108
|
exports.default = _default;
|
|
@@ -4,16 +4,24 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
+
|
|
7
8
|
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
8
10
|
var _reactNative = require("react-native");
|
|
11
|
+
|
|
9
12
|
var _Typography = require("./Typography");
|
|
13
|
+
|
|
10
14
|
var _Image = _interopRequireDefault(require("./Image"));
|
|
15
|
+
|
|
11
16
|
var _Surface = _interopRequireDefault(require("./Surface"));
|
|
17
|
+
|
|
12
18
|
var _Config = _interopRequireDefault(require("./Config"));
|
|
19
|
+
|
|
13
20
|
var _theming = require("../theming");
|
|
21
|
+
|
|
14
22
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
-
// @ts-nocheck
|
|
16
23
|
|
|
24
|
+
// @ts-nocheck
|
|
17
25
|
const CardInline = _ref => {
|
|
18
26
|
let {
|
|
19
27
|
image = _Config.default.cardImageUrl,
|
|
@@ -26,12 +34,14 @@ const CardInline = _ref => {
|
|
|
26
34
|
subtitleStyle,
|
|
27
35
|
onPress
|
|
28
36
|
} = _ref;
|
|
37
|
+
|
|
29
38
|
const {
|
|
30
39
|
alignItems,
|
|
31
40
|
justifyContent,
|
|
32
41
|
width,
|
|
33
42
|
height
|
|
34
43
|
} = _reactNative.StyleSheet.flatten(style || {});
|
|
44
|
+
|
|
35
45
|
const imageStyles = width && height ? {
|
|
36
46
|
width,
|
|
37
47
|
height
|
|
@@ -76,6 +86,7 @@ const CardInline = _ref => {
|
|
|
76
86
|
text: subtitle
|
|
77
87
|
}) : null)));
|
|
78
88
|
};
|
|
89
|
+
|
|
79
90
|
const styles = _reactNative.StyleSheet.create({
|
|
80
91
|
overlay: {
|
|
81
92
|
position: "absolute",
|
|
@@ -87,5 +98,7 @@ const styles = _reactNative.StyleSheet.create({
|
|
|
87
98
|
backgroundColor: "rgba(0, 0, 0, 0.2)"
|
|
88
99
|
}
|
|
89
100
|
});
|
|
101
|
+
|
|
90
102
|
var _default = (0, _theming.withTheme)(CardInline);
|
|
103
|
+
|
|
91
104
|
exports.default = _default;
|
|
@@ -4,15 +4,25 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
+
|
|
7
8
|
var React = _interopRequireWildcard(require("react"));
|
|
9
|
+
|
|
8
10
|
var _theming = require("../theming");
|
|
11
|
+
|
|
9
12
|
var _reactNative = require("react-native");
|
|
13
|
+
|
|
10
14
|
var _Image = _interopRequireDefault(require("./Image"));
|
|
15
|
+
|
|
11
16
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
17
|
+
|
|
12
18
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
19
|
+
|
|
13
20
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
21
|
+
|
|
14
22
|
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); }
|
|
23
|
+
|
|
15
24
|
const screenWidth = _reactNative.Dimensions.get("window").width;
|
|
25
|
+
|
|
16
26
|
function Pager(_ref) {
|
|
17
27
|
let {
|
|
18
28
|
color,
|
|
@@ -38,7 +48,10 @@ function Pager(_ref) {
|
|
|
38
48
|
});
|
|
39
49
|
}));
|
|
40
50
|
}
|
|
51
|
+
|
|
41
52
|
function Carousel(_ref2) {
|
|
53
|
+
var _data$length;
|
|
54
|
+
|
|
42
55
|
let {
|
|
43
56
|
data,
|
|
44
57
|
children,
|
|
@@ -48,12 +61,14 @@ function Carousel(_ref2) {
|
|
|
48
61
|
} = _ref2;
|
|
49
62
|
const [index, setIndex] = React.useState(0);
|
|
50
63
|
const length = React.Children.count(children);
|
|
51
|
-
const itemsLength = ((data === null || data === void 0 ? void 0 : data.length)
|
|
64
|
+
const itemsLength = ((_data$length = data === null || data === void 0 ? void 0 : data.length) !== null && _data$length !== void 0 ? _data$length : 0) + length;
|
|
52
65
|
const slides = Array.isArray(data) ? data : [];
|
|
66
|
+
|
|
53
67
|
const {
|
|
54
68
|
width,
|
|
55
69
|
height
|
|
56
70
|
} = _reactNative.StyleSheet.flatten(style || {});
|
|
71
|
+
|
|
57
72
|
const slideWidth = width || screenWidth;
|
|
58
73
|
const slideHeight = height || 250;
|
|
59
74
|
return /*#__PURE__*/React.createElement(_reactNative.View, _extends({
|
|
@@ -87,14 +102,14 @@ function Carousel(_ref2) {
|
|
|
87
102
|
});
|
|
88
103
|
}) : null, React.Children.map(children, child => {
|
|
89
104
|
var _child$props;
|
|
105
|
+
|
|
90
106
|
const s = (child === null || child === void 0 ? void 0 : (_child$props = child.props) === null || _child$props === void 0 ? void 0 : _child$props.style) || {};
|
|
91
107
|
return /*#__PURE__*/React.createElement(_reactNative.View, {
|
|
92
108
|
style: {
|
|
93
109
|
width: slideWidth
|
|
94
110
|
}
|
|
95
111
|
}, /*#__PURE__*/React.cloneElement(child, {
|
|
96
|
-
style: {
|
|
97
|
-
...s,
|
|
112
|
+
style: { ...s,
|
|
98
113
|
width: slideWidth
|
|
99
114
|
}
|
|
100
115
|
}));
|
|
@@ -104,9 +119,10 @@ function Carousel(_ref2) {
|
|
|
104
119
|
length: itemsLength
|
|
105
120
|
}));
|
|
106
121
|
}
|
|
122
|
+
|
|
107
123
|
const styles = _reactNative.StyleSheet.create({
|
|
108
124
|
container: {
|
|
109
|
-
backgroundColor: "#
|
|
125
|
+
backgroundColor: "#eeeeee"
|
|
110
126
|
},
|
|
111
127
|
pager: {
|
|
112
128
|
position: "absolute",
|
|
@@ -122,8 +138,10 @@ const styles = _reactNative.StyleSheet.create({
|
|
|
122
138
|
width: 10,
|
|
123
139
|
height: 10,
|
|
124
140
|
borderRadius: 20,
|
|
125
|
-
backgroundColor: "#
|
|
141
|
+
backgroundColor: "#000000"
|
|
126
142
|
}
|
|
127
143
|
});
|
|
144
|
+
|
|
128
145
|
var _default = (0, _theming.withTheme)(Carousel);
|
|
146
|
+
|
|
129
147
|
exports.default = _default;
|
|
@@ -4,15 +4,25 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
+
|
|
7
8
|
var React = _interopRequireWildcard(require("react"));
|
|
9
|
+
|
|
8
10
|
var _reactNative = require("react-native");
|
|
11
|
+
|
|
9
12
|
var _theming = require("../../theming");
|
|
13
|
+
|
|
10
14
|
var _Touchable = _interopRequireDefault(require("../Touchable"));
|
|
15
|
+
|
|
11
16
|
var _hooks = require("../../hooks");
|
|
17
|
+
|
|
12
18
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
19
|
+
|
|
13
20
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
21
|
+
|
|
14
22
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
23
|
+
|
|
15
24
|
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); }
|
|
25
|
+
|
|
16
26
|
const Checkbox = _ref => {
|
|
17
27
|
let {
|
|
18
28
|
Icon,
|
|
@@ -35,10 +45,9 @@ const Checkbox = _ref => {
|
|
|
35
45
|
if (status != null) {
|
|
36
46
|
setInternalValue(status);
|
|
37
47
|
}
|
|
38
|
-
}, [status]);
|
|
39
|
-
|
|
40
|
-
// This special logic is to handle weird APIs like Airtable that return
|
|
48
|
+
}, [status]); // This special logic is to handle weird APIs like Airtable that return
|
|
41
49
|
// true or undefined for a boolean
|
|
50
|
+
|
|
42
51
|
const previousDefaultValue = (0, _hooks.usePrevious)(defaultValue);
|
|
43
52
|
React.useEffect(() => {
|
|
44
53
|
if (defaultValue !== previousDefaultValue) {
|
|
@@ -49,17 +58,21 @@ const Checkbox = _ref => {
|
|
|
49
58
|
colors
|
|
50
59
|
} = (0, _theming.useTheme)();
|
|
51
60
|
const checkboxColor = internalValue ? color || colors.primary : uncheckedColor || colors.primary;
|
|
61
|
+
|
|
52
62
|
const handlePress = () => {
|
|
53
63
|
const newValue = !internalValue;
|
|
54
64
|
setInternalValue(newValue);
|
|
55
65
|
onPress === null || onPress === void 0 ? void 0 : onPress(newValue);
|
|
66
|
+
|
|
56
67
|
if (newValue) {
|
|
57
68
|
onCheck === null || onCheck === void 0 ? void 0 : onCheck();
|
|
58
69
|
}
|
|
70
|
+
|
|
59
71
|
if (!newValue) {
|
|
60
72
|
onUncheck === null || onUncheck === void 0 ? void 0 : onUncheck();
|
|
61
73
|
}
|
|
62
74
|
};
|
|
75
|
+
|
|
63
76
|
return /*#__PURE__*/React.createElement(_Touchable.default, _extends({}, rest, {
|
|
64
77
|
onPress: handlePress,
|
|
65
78
|
disabled: disabled,
|
|
@@ -87,6 +100,7 @@ const Checkbox = _ref => {
|
|
|
87
100
|
}]
|
|
88
101
|
})));
|
|
89
102
|
};
|
|
103
|
+
|
|
90
104
|
const styles = _reactNative.StyleSheet.create({
|
|
91
105
|
container: {
|
|
92
106
|
borderRadius: 18
|
|
@@ -105,5 +119,6 @@ const styles = _reactNative.StyleSheet.create({
|
|
|
105
119
|
alignSelf: "center"
|
|
106
120
|
}
|
|
107
121
|
});
|
|
122
|
+
|
|
108
123
|
var _default = Checkbox;
|
|
109
124
|
exports.default = _default;
|
|
@@ -4,15 +4,23 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
+
|
|
7
8
|
var React = _interopRequireWildcard(require("react"));
|
|
9
|
+
|
|
8
10
|
var _reactNative = require("react-native");
|
|
11
|
+
|
|
9
12
|
var _context = require("./context");
|
|
13
|
+
|
|
10
14
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
15
|
+
|
|
11
16
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
17
|
+
|
|
12
18
|
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); }
|
|
19
|
+
|
|
13
20
|
const {
|
|
14
21
|
Provider
|
|
15
22
|
} = _context.checkboxGroupContext;
|
|
23
|
+
|
|
16
24
|
const CheckboxGroup = _ref => {
|
|
17
25
|
let {
|
|
18
26
|
direction = _context.Direction.Vertical,
|
|
@@ -26,11 +34,13 @@ const CheckboxGroup = _ref => {
|
|
|
26
34
|
flexDirection: direction === _context.Direction.Horizontal ? "row" : "column",
|
|
27
35
|
overflow: "hidden"
|
|
28
36
|
}];
|
|
37
|
+
|
|
29
38
|
if (direction !== _context.Direction.Vertical) {
|
|
30
39
|
_containerStyle.push({
|
|
31
40
|
alignItems: "center"
|
|
32
41
|
});
|
|
33
42
|
}
|
|
43
|
+
|
|
34
44
|
return /*#__PURE__*/React.createElement(_reactNative.View, _extends({
|
|
35
45
|
style: [{
|
|
36
46
|
minHeight: 40
|
|
@@ -45,5 +55,6 @@ const CheckboxGroup = _ref => {
|
|
|
45
55
|
style: _containerStyle
|
|
46
56
|
}, children)));
|
|
47
57
|
};
|
|
58
|
+
|
|
48
59
|
var _default = CheckboxGroup;
|
|
49
60
|
exports.default = _default;
|
|
@@ -4,23 +4,35 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = exports.Direction = void 0;
|
|
7
|
+
|
|
7
8
|
var React = _interopRequireWildcard(require("react"));
|
|
9
|
+
|
|
8
10
|
var _reactNative = require("react-native");
|
|
11
|
+
|
|
9
12
|
var _Checkbox = _interopRequireDefault(require("./Checkbox"));
|
|
13
|
+
|
|
10
14
|
var _Text = _interopRequireDefault(require("../Text"));
|
|
15
|
+
|
|
11
16
|
var _context = require("./context");
|
|
17
|
+
|
|
12
18
|
var _Touchable = _interopRequireDefault(require("../Touchable"));
|
|
19
|
+
|
|
13
20
|
var _utilities = require("../../utilities");
|
|
21
|
+
|
|
14
22
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
23
|
+
|
|
15
24
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
25
|
+
|
|
16
26
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
17
|
-
|
|
18
|
-
|
|
27
|
+
|
|
28
|
+
var Direction;
|
|
19
29
|
exports.Direction = Direction;
|
|
30
|
+
|
|
20
31
|
(function (Direction) {
|
|
21
32
|
Direction["Row"] = "row";
|
|
22
33
|
Direction["RowReverse"] = "row-reverse";
|
|
23
34
|
})(Direction || (exports.Direction = Direction = {}));
|
|
35
|
+
|
|
24
36
|
const getCheckboxAlignment = (parentDirection, direction) => {
|
|
25
37
|
if (parentDirection === _context.Direction.Horizontal) {
|
|
26
38
|
return direction === Direction.Row ? "flex-start" : "flex-end";
|
|
@@ -30,6 +42,7 @@ const getCheckboxAlignment = (parentDirection, direction) => {
|
|
|
30
42
|
return "flex-end";
|
|
31
43
|
}
|
|
32
44
|
};
|
|
45
|
+
|
|
33
46
|
const renderLabel = (value, labelStyle, textStyle) => {
|
|
34
47
|
if (typeof value === "string") {
|
|
35
48
|
return /*#__PURE__*/React.createElement(_Text.default, {
|
|
@@ -39,6 +52,7 @@ const renderLabel = (value, labelStyle, textStyle) => {
|
|
|
39
52
|
return /*#__PURE__*/React.createElement(React.Fragment, null, value);
|
|
40
53
|
}
|
|
41
54
|
};
|
|
55
|
+
|
|
42
56
|
const CheckboxGroupRow = _ref => {
|
|
43
57
|
let {
|
|
44
58
|
Icon,
|
|
@@ -63,23 +77,26 @@ const CheckboxGroupRow = _ref => {
|
|
|
63
77
|
} = (0, _context.useCheckboxGroupContext)();
|
|
64
78
|
const values = Array.isArray(selectedValues) ? selectedValues : [];
|
|
65
79
|
const isChecked = status || values.includes(value);
|
|
80
|
+
|
|
66
81
|
const handlePress = () => {
|
|
67
82
|
if (!disabled) {
|
|
68
83
|
onPress === null || onPress === void 0 ? void 0 : onPress(!isChecked);
|
|
69
84
|
onValueChange === null || onValueChange === void 0 ? void 0 : onValueChange(value, !isChecked);
|
|
70
85
|
}
|
|
71
86
|
};
|
|
87
|
+
|
|
72
88
|
const {
|
|
73
89
|
textStyles,
|
|
74
90
|
viewStyles
|
|
75
91
|
} = (0, _utilities.extractStyles)(style);
|
|
76
|
-
return /*#__PURE__*/React.createElement(_Touchable.default,
|
|
92
|
+
return /*#__PURE__*/React.createElement(_Touchable.default, {
|
|
77
93
|
onPress: handlePress,
|
|
78
94
|
style: [styles.mainParent, {
|
|
79
95
|
flexDirection: direction
|
|
80
96
|
}, viewStyles],
|
|
81
|
-
disabled: disabled
|
|
82
|
-
|
|
97
|
+
disabled: disabled,
|
|
98
|
+
...rest
|
|
99
|
+
}, /*#__PURE__*/React.createElement(_reactNative.View, {
|
|
83
100
|
style: [styles.label, {
|
|
84
101
|
alignItems: direction === Direction.Row ? "flex-start" : "flex-end"
|
|
85
102
|
}, labelContainerStyle]
|
|
@@ -98,6 +115,7 @@ const CheckboxGroupRow = _ref => {
|
|
|
98
115
|
uncheckedColor: uncheckedColor
|
|
99
116
|
})));
|
|
100
117
|
};
|
|
118
|
+
|
|
101
119
|
const styles = _reactNative.StyleSheet.create({
|
|
102
120
|
mainParent: {
|
|
103
121
|
alignItems: "center",
|
|
@@ -117,5 +135,25 @@ const styles = _reactNative.StyleSheet.create({
|
|
|
117
135
|
flex: 3
|
|
118
136
|
}
|
|
119
137
|
});
|
|
138
|
+
|
|
139
|
+
var _default = CheckboxGroupRow;
|
|
140
|
+
exports.default = _default;center",
|
|
141
|
+
justifyContent: "space-around",
|
|
142
|
+
paddingStart: 20,
|
|
143
|
+
minHeight: 50,
|
|
144
|
+
paddingEnd: 20,
|
|
145
|
+
display: "flex",
|
|
146
|
+
..._reactNative.Platform.select({
|
|
147
|
+
web: {
|
|
148
|
+
cursor: "pointer",
|
|
149
|
+
userSelect: "none"
|
|
150
|
+
}
|
|
151
|
+
})
|
|
152
|
+
},
|
|
153
|
+
label: {
|
|
154
|
+
flex: 3
|
|
155
|
+
}
|
|
156
|
+
});
|
|
157
|
+
|
|
120
158
|
var _default = CheckboxGroupRow;
|
|
121
159
|
exports.default = _default;
|