@draftbit/core 46.4.4-cbd3a5.2 → 46.4.4-d5b88a.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 +15 -0
- 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 +19 -13
- package/lib/commonjs/components/CardContainer.js +18 -0
- package/lib/commonjs/components/CardContainerRating.js +20 -2
- package/lib/commonjs/components/CardContainerShortImage.js +12 -0
- package/lib/commonjs/components/CardInline.js +14 -1
- package/lib/commonjs/components/Carousel.js +21 -3
- 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 +20 -0
- package/lib/commonjs/components/Checkbox/CheckboxRow.js +24 -3
- package/lib/commonjs/components/Checkbox/context.js +5 -0
- package/lib/commonjs/components/Checkbox/index.js +4 -0
- package/lib/commonjs/components/CircleImage.js +9 -0
- package/lib/commonjs/components/CircularProgress.js +13 -3
- package/lib/commonjs/components/Config.js +13 -5
- package/lib/commonjs/components/Container.js +11 -0
- package/lib/commonjs/components/DatePicker/DatePicker.js +48 -16
- 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 +11 -0
- package/lib/commonjs/components/DeprecatedFAB.js +29 -21
- package/lib/commonjs/components/Divider.js +9 -0
- package/lib/commonjs/components/Elevation.js +11 -0
- 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 +23 -6
- package/lib/commonjs/components/Picker/PickerComponent.ios.js +27 -8
- package/lib/commonjs/components/Picker/PickerComponent.web.js +23 -6
- 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 +25 -5
- 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 +21 -1
- 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 +14 -0
- package/lib/commonjs/components/Slider.js +21 -0
- package/lib/commonjs/components/StarRating.js +10 -0
- package/lib/commonjs/components/StepIndicator.js +39 -5
- package/lib/commonjs/components/Stepper.js +26 -7
- 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 +18 -3
- package/lib/commonjs/components/TextField.js +62 -12
- 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 -0
- 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 +4 -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/HtmlElements.js +125 -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 +3 -1
- 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 +3 -0
- 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 +10 -9
- package/lib/module/components/Button.js +10 -2
- package/lib/module/components/Card.js +2 -0
- package/lib/module/components/CardBlock.js +6 -0
- 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 +9 -3
- 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 +8 -0
- package/lib/module/components/Checkbox/CheckboxRow.js +11 -3
- package/lib/module/components/Checkbox/context.js +2 -0
- package/lib/module/components/CircleImage.js +3 -0
- package/lib/module/components/CircularProgress.js +9 -3
- package/lib/module/components/Config.js +11 -5
- package/lib/module/components/Container.js +3 -0
- package/lib/module/components/DatePicker/DatePicker.js +33 -16
- 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 +13 -0
- 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 +10 -0
- package/lib/module/components/Layout.js +3 -4
- package/lib/module/components/NumberInput.js +16 -8
- package/lib/module/components/Picker/Picker.js +25 -8
- 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 +10 -5
- package/lib/module/components/Portal/PortalHost.js +22 -4
- 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 +6 -1
- package/lib/module/components/RadioButton/RadioButtonFieldGroup.js +3 -0
- package/lib/module/components/RadioButton/RadioButtonGroup.js +7 -0
- package/lib/module/components/RadioButton/RadioButtonRow.js +9 -1
- package/lib/module/components/RadioButton/context.js +2 -0
- 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 +16 -9
- package/lib/module/components/Surface.js +5 -0
- package/lib/module/components/Swiper/Swiper.js +4 -0
- package/lib/module/components/Swiper/SwiperItem.js +2 -0
- package/lib/module/components/Switch.js +7 -5
- package/lib/module/components/Text.js +10 -3
- package/lib/module/components/TextField.js +50 -12
- 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 -4
- 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 +2 -4
- package/lib/module/mappings/Fetch.js +1 -0
- package/lib/module/mappings/FieldSearchBarFull.js +1 -2
- package/lib/module/mappings/HtmlElements.js +116 -0
- 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 +1 -1
- 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/Stepper.d.ts +1 -2
- package/lib/typescript/src/mappings/HtmlElements.d.ts +49 -0
- package/package.json +4 -3
- package/src/components/Picker/Picker.js +1 -1
- package/src/components/Picker/Picker.tsx +2 -2
- package/src/components/Stepper.js +5 -3
- package/src/components/Stepper.tsx +5 -5
- package/src/mappings/HtmlElements.js +141 -0
- package/src/mappings/HtmlElements.ts +151 -0
- package/src/mappings/Stepper.js +5 -2
- package/src/mappings/Stepper.ts +5 -1
|
@@ -4,14 +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
|
+
|
|
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
|
+
|
|
15
26
|
const CardBlock = _ref => {
|
|
16
27
|
let {
|
|
17
28
|
image = _Config.default.cardImageUrl,
|
|
@@ -33,11 +44,13 @@ const CardBlock = _ref => {
|
|
|
33
44
|
} = _ref;
|
|
34
45
|
let titleJustification;
|
|
35
46
|
let titleStyle;
|
|
47
|
+
|
|
36
48
|
if (titleCentered && !leftDescription && !rightDescription) {
|
|
37
49
|
titleJustification = "center";
|
|
38
50
|
} else {
|
|
39
51
|
titleJustification = "space-between";
|
|
40
52
|
}
|
|
53
|
+
|
|
41
54
|
if (numColumns === 1) {
|
|
42
55
|
titleStyle = typography.button;
|
|
43
56
|
} else if (numColumns === 2) {
|
|
@@ -45,15 +58,15 @@ const CardBlock = _ref => {
|
|
|
45
58
|
} else {
|
|
46
59
|
titleStyle = typography.headline5;
|
|
47
60
|
}
|
|
61
|
+
|
|
48
62
|
const rightDescriptionStyles = [typography.subtitle2, {
|
|
49
63
|
color: colors.light
|
|
50
64
|
}];
|
|
51
|
-
return /*#__PURE__*/_react.default.createElement(_DeprecatedCardWrapper.default, {
|
|
65
|
+
return /*#__PURE__*/_react.default.createElement(_DeprecatedCardWrapper.default, _extends({
|
|
52
66
|
style: style,
|
|
53
67
|
onPress: onPress,
|
|
54
|
-
numColumns: numColumns
|
|
55
|
-
|
|
56
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
68
|
+
numColumns: numColumns
|
|
69
|
+
}, rest), /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
57
70
|
style: {
|
|
58
71
|
backgroundColor: colors.background
|
|
59
72
|
}
|
|
@@ -102,14 +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);
|
|
106
|
-
|
|
107
|
-
color: colors.medium
|
|
108
|
-
}]
|
|
109
|
-
}, leftDescription), rightDescription ? /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
110
|
-
numberOfLines: 1,
|
|
111
|
-
style: rightDescriptionStyles
|
|
112
|
-
}, rightDescription) : null) : null));
|
|
113
|
-
};
|
|
114
|
-
var _default = (0, _theming.withTheme)(CardBlock);
|
|
120
|
+
|
|
115
121
|
exports.default = _default;
|
|
@@ -4,18 +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 _theming = require("../theming");
|
|
21
|
+
|
|
14
22
|
var _Config = _interopRequireDefault(require("./Config"));
|
|
23
|
+
|
|
15
24
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
25
|
+
|
|
16
26
|
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); }
|
|
27
|
+
|
|
17
28
|
const ICON_CONTAINER_SIZE = _Config.default.cardIconSize * 2;
|
|
18
29
|
const ICON_CONTAINER_PADDING = _Config.default.cardIconSize / 2 - 1;
|
|
30
|
+
|
|
19
31
|
const CardContainer = _ref => {
|
|
20
32
|
let {
|
|
21
33
|
Icon,
|
|
@@ -39,19 +51,23 @@ const CardContainer = _ref => {
|
|
|
39
51
|
} = _ref;
|
|
40
52
|
let textJustification;
|
|
41
53
|
let titleStyle;
|
|
54
|
+
|
|
42
55
|
if (textCentered && !rightDescription) {
|
|
43
56
|
textJustification = "center";
|
|
44
57
|
} else {
|
|
45
58
|
textJustification = "space-between";
|
|
46
59
|
}
|
|
60
|
+
|
|
47
61
|
switch (numColumns) {
|
|
48
62
|
case 2:
|
|
49
63
|
titleStyle = typography.headline6;
|
|
50
64
|
break;
|
|
65
|
+
|
|
51
66
|
case 3:
|
|
52
67
|
titleStyle = typography.headline5;
|
|
53
68
|
break;
|
|
54
69
|
}
|
|
70
|
+
|
|
55
71
|
return /*#__PURE__*/_react.default.createElement(_DeprecatedCardWrapper.default, _extends({
|
|
56
72
|
style: style,
|
|
57
73
|
onPress: onPress,
|
|
@@ -125,5 +141,7 @@ const CardContainer = _ref => {
|
|
|
125
141
|
color: colors.surface
|
|
126
142
|
})) : null)));
|
|
127
143
|
};
|
|
144
|
+
|
|
128
145
|
var _default = (0, _theming.withTheme)(CardContainer);
|
|
146
|
+
|
|
129
147
|
exports.default = _default;
|
|
@@ -4,19 +4,32 @@ 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 }; }
|
|
27
|
+
|
|
17
28
|
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); }
|
|
29
|
+
|
|
18
30
|
const ICON_CONTAINER_SIZE = _Config.default.cardIconSize * 2;
|
|
19
31
|
const ICON_CONTAINER_PADDING = _Config.default.cardIconSize / 2 - 1;
|
|
32
|
+
|
|
20
33
|
const CardContainerRating = _ref => {
|
|
21
34
|
let {
|
|
22
35
|
Icon,
|
|
@@ -39,16 +52,19 @@ const CardContainerRating = _ref => {
|
|
|
39
52
|
...rest
|
|
40
53
|
} = _ref;
|
|
41
54
|
let titleStyle, rightDescriptionStyle;
|
|
55
|
+
|
|
42
56
|
switch (numColumns) {
|
|
43
57
|
case 2:
|
|
44
58
|
titleStyle = typography.headline6;
|
|
45
59
|
rightDescriptionStyle = typography.body2;
|
|
46
60
|
break;
|
|
61
|
+
|
|
47
62
|
case 3:
|
|
48
63
|
titleStyle = typography.headline5;
|
|
49
64
|
rightDescriptionStyle = typography.caption;
|
|
50
65
|
break;
|
|
51
66
|
}
|
|
67
|
+
|
|
52
68
|
return /*#__PURE__*/_react.default.createElement(_DeprecatedCardWrapper.default, _extends({
|
|
53
69
|
style: style,
|
|
54
70
|
onPress: onPress,
|
|
@@ -62,8 +78,8 @@ const CardContainerRating = _ref => {
|
|
|
62
78
|
style: {
|
|
63
79
|
borderRadius: roundness,
|
|
64
80
|
overflow: "hidden",
|
|
65
|
-
backgroundColor: colors.background
|
|
66
|
-
|
|
81
|
+
backgroundColor: colors.background //background color is needed for bug on android 9 - https://github.com/facebook/react-native/issues/25093
|
|
82
|
+
|
|
67
83
|
}
|
|
68
84
|
}, /*#__PURE__*/_react.default.createElement(_Image.default, {
|
|
69
85
|
style: {
|
|
@@ -129,5 +145,7 @@ const CardContainerRating = _ref => {
|
|
|
129
145
|
color: colors.surface
|
|
130
146
|
})) : null)));
|
|
131
147
|
};
|
|
148
|
+
|
|
132
149
|
var _default = (0, _theming.withTheme)(CardContainerRating);
|
|
150
|
+
|
|
133
151
|
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 = _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 CardContainerShortImage = _ref => {
|
|
17
27
|
let {
|
|
18
28
|
image = _Config.default.squareImageUrl,
|
|
@@ -80,5 +90,7 @@ const CardContainerShortImage = _ref => {
|
|
|
80
90
|
resizeMode: "cover"
|
|
81
91
|
}))));
|
|
82
92
|
};
|
|
93
|
+
|
|
83
94
|
var _default = (0, _theming.withTheme)(CardContainerShortImage);
|
|
95
|
+
|
|
84
96
|
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,6 +119,7 @@ function Carousel(_ref2) {
|
|
|
104
119
|
length: itemsLength
|
|
105
120
|
}));
|
|
106
121
|
}
|
|
122
|
+
|
|
107
123
|
const styles = _reactNative.StyleSheet.create({
|
|
108
124
|
container: {
|
|
109
125
|
backgroundColor: "#eee"
|
|
@@ -125,5 +141,7 @@ const styles = _reactNative.StyleSheet.create({
|
|
|
125
141
|
backgroundColor: "#000"
|
|
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,37 @@ 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; }
|
|
27
|
+
|
|
17
28
|
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); }
|
|
29
|
+
|
|
18
30
|
let Direction;
|
|
19
31
|
exports.Direction = Direction;
|
|
32
|
+
|
|
20
33
|
(function (Direction) {
|
|
21
34
|
Direction["Row"] = "row";
|
|
22
35
|
Direction["RowReverse"] = "row-reverse";
|
|
23
36
|
})(Direction || (exports.Direction = Direction = {}));
|
|
37
|
+
|
|
24
38
|
const getCheckboxAlignment = (parentDirection, direction) => {
|
|
25
39
|
if (parentDirection === _context.Direction.Horizontal) {
|
|
26
40
|
return direction === Direction.Row ? "flex-start" : "flex-end";
|
|
@@ -30,6 +44,7 @@ const getCheckboxAlignment = (parentDirection, direction) => {
|
|
|
30
44
|
return "flex-end";
|
|
31
45
|
}
|
|
32
46
|
};
|
|
47
|
+
|
|
33
48
|
const renderLabel = (value, labelStyle, textStyle) => {
|
|
34
49
|
if (typeof value === "string") {
|
|
35
50
|
return /*#__PURE__*/React.createElement(_Text.default, {
|
|
@@ -39,6 +54,7 @@ const renderLabel = (value, labelStyle, textStyle) => {
|
|
|
39
54
|
return /*#__PURE__*/React.createElement(React.Fragment, null, value);
|
|
40
55
|
}
|
|
41
56
|
};
|
|
57
|
+
|
|
42
58
|
const CheckboxGroupRow = _ref => {
|
|
43
59
|
let {
|
|
44
60
|
Icon,
|
|
@@ -63,12 +79,14 @@ const CheckboxGroupRow = _ref => {
|
|
|
63
79
|
} = (0, _context.useCheckboxGroupContext)();
|
|
64
80
|
const values = Array.isArray(selectedValues) ? selectedValues : [];
|
|
65
81
|
const isChecked = status || values.includes(value);
|
|
82
|
+
|
|
66
83
|
const handlePress = () => {
|
|
67
84
|
if (!disabled) {
|
|
68
85
|
onPress === null || onPress === void 0 ? void 0 : onPress(!isChecked);
|
|
69
86
|
onValueChange === null || onValueChange === void 0 ? void 0 : onValueChange(value, !isChecked);
|
|
70
87
|
}
|
|
71
88
|
};
|
|
89
|
+
|
|
72
90
|
const {
|
|
73
91
|
textStyles,
|
|
74
92
|
viewStyles
|
|
@@ -98,6 +116,7 @@ const CheckboxGroupRow = _ref => {
|
|
|
98
116
|
uncheckedColor: uncheckedColor
|
|
99
117
|
})));
|
|
100
118
|
};
|
|
119
|
+
|
|
101
120
|
const styles = _reactNative.StyleSheet.create({
|
|
102
121
|
mainParent: {
|
|
103
122
|
alignItems: "center",
|
|
@@ -117,5 +136,6 @@ const styles = _reactNative.StyleSheet.create({
|
|
|
117
136
|
flex: 3
|
|
118
137
|
}
|
|
119
138
|
});
|
|
139
|
+
|
|
120
140
|
var _default = CheckboxGroupRow;
|
|
121
141
|
exports.default = _default;
|