@draftbit/core 46.10.3-6c7505.2 → 46.10.3-7476ab.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/components/AnimatedCircularProgress.js +12 -1
- package/lib/commonjs/components/AspectRatio.js +17 -1
- package/lib/commonjs/components/BottomSheet/BottomSheet.js +22 -4
- package/lib/commonjs/components/Button.js +33 -10
- package/lib/commonjs/components/Checkbox/CheckboxGroupRow.js +23 -5
- package/lib/commonjs/components/Checkbox/context.js +1 -1
- package/lib/commonjs/components/CircleImage.js +15 -1
- package/lib/commonjs/components/CircularProgress.js +26 -8
- package/lib/commonjs/components/DatePicker/DatePicker.js +26 -13
- package/lib/commonjs/components/Divider.js +14 -1
- package/lib/commonjs/components/Elevation.js +14 -2
- package/lib/commonjs/components/IconButton.js +4 -19
- package/lib/commonjs/components/Image.js +17 -2
- package/lib/commonjs/components/Layout.js +19 -40
- package/lib/commonjs/components/Picker/PickerComponent.android.js +20 -3
- package/lib/commonjs/components/Portal/PortalHost.js +44 -15
- package/lib/commonjs/components/RadioButton/RadioButton.js +13 -2
- package/lib/commonjs/components/RadioButton/RadioButtonRow.js +23 -5
- package/lib/commonjs/components/RadioButton/context.js +1 -1
- package/lib/commonjs/components/Shadow.js +15 -2
- package/lib/commonjs/components/StarRating.js +23 -4
- package/lib/commonjs/components/Switch.js +19 -10
- package/lib/commonjs/components/TabView/TabView.js +13 -7
- package/lib/commonjs/components/Table/Table.js +5 -5
- package/lib/commonjs/constants.js +1 -1
- package/lib/commonjs/mappings/Accordion.js +49 -0
- package/lib/commonjs/mappings/AccordionItem.js +24 -0
- package/lib/commonjs/mappings/ActionSheet.js +21 -0
- package/lib/commonjs/mappings/ActionSheetCancel.js +27 -0
- package/lib/commonjs/mappings/ActionSheetItem.js +31 -0
- package/lib/commonjs/mappings/ActivityIndicator.js +64 -0
- package/lib/commonjs/mappings/AudioPlayer.js +57 -0
- package/lib/commonjs/mappings/AvatarEdit.js +45 -0
- package/lib/commonjs/mappings/Banner.js +39 -0
- package/lib/commonjs/mappings/BlurView.js +49 -0
- package/lib/commonjs/mappings/BottomSheet.js +70 -0
- package/lib/commonjs/mappings/Button.js +95 -0
- package/lib/commonjs/mappings/Card.js +60 -0
- package/lib/commonjs/mappings/Carousel.js +24 -0
- package/lib/commonjs/mappings/Checkbox.js +53 -0
- package/lib/commonjs/mappings/CheckboxGroup.js +33 -0
- package/lib/commonjs/mappings/CheckboxRow.js +64 -0
- package/lib/commonjs/mappings/CircleImage.js +32 -0
- package/lib/commonjs/mappings/CustomCode.js +15 -0
- package/lib/commonjs/mappings/DatePicker.js +181 -0
- package/lib/commonjs/mappings/DeckSwiper.js +55 -0
- package/lib/commonjs/mappings/DeckSwiperCard.js +23 -0
- package/lib/commonjs/mappings/Divider.js +32 -0
- package/lib/commonjs/mappings/FAB.js +44 -0
- package/lib/commonjs/mappings/Fetch.js +20 -0
- package/lib/commonjs/mappings/FieldSearchBarFull.js +58 -0
- package/lib/commonjs/mappings/FlashList.js +111 -0
- package/lib/commonjs/mappings/FlatList.js +58 -0
- package/lib/commonjs/mappings/Icon.js +33 -0
- package/lib/commonjs/mappings/IconButton.js +36 -0
- package/lib/commonjs/mappings/Image.js +36 -0
- package/lib/commonjs/mappings/ImageBackground.js +36 -0
- package/lib/commonjs/mappings/KeyboardAvoidingView.js +48 -0
- package/lib/commonjs/mappings/KeyboardAwareScrollView.js +57 -0
- package/lib/commonjs/mappings/Layout.js +200 -0
- package/lib/commonjs/mappings/LinearGradient.js +88 -0
- package/lib/commonjs/mappings/MapCallout.js +29 -0
- package/lib/commonjs/mappings/MapMarker.js +55 -0
- package/lib/commonjs/mappings/MapView.js +142 -0
- package/lib/commonjs/mappings/Markdown.js +27 -0
- package/lib/commonjs/mappings/Modal.js +49 -0
- package/lib/commonjs/mappings/NativeBase/Layout.js +108 -0
- package/lib/commonjs/mappings/NumberInput.js +238 -0
- package/lib/commonjs/mappings/Picker.js +154 -0
- package/lib/commonjs/mappings/ProgressBar.js +106 -0
- package/lib/commonjs/mappings/ProgressCircle.js +116 -0
- package/lib/commonjs/mappings/RadioButton.js +58 -0
- package/lib/commonjs/mappings/RadioButtonGroup.js +24 -0
- package/lib/commonjs/mappings/RadioButtonRow.js +45 -0
- package/lib/commonjs/mappings/RowBodyIcon.js +79 -0
- package/lib/commonjs/mappings/RowHeadlineImageCaption.js +169 -0
- package/lib/commonjs/mappings/RowHeadlineImageIcon.js +99 -0
- package/lib/commonjs/mappings/SVG.js +22 -0
- package/lib/commonjs/mappings/SafeAreaView.js +40 -0
- package/lib/commonjs/mappings/ScrollView.js +44 -0
- package/lib/commonjs/mappings/Shadow.js +102 -0
- package/lib/commonjs/mappings/Slider.js +67 -0
- package/lib/commonjs/mappings/StarRating.js +57 -0
- package/lib/commonjs/mappings/Stepper.js +38 -0
- package/lib/commonjs/mappings/Surface.js +21 -0
- package/lib/commonjs/mappings/Swiper.js +70 -0
- package/lib/commonjs/mappings/SwiperItem.js +16 -0
- package/lib/commonjs/mappings/Switch.js +81 -0
- package/lib/commonjs/mappings/TabView.js +74 -0
- package/lib/commonjs/mappings/TabViewItem.js +37 -0
- package/lib/commonjs/mappings/Table.js +140 -0
- package/lib/commonjs/mappings/Text.js +234 -0
- package/lib/commonjs/mappings/TextArea.js +254 -0
- package/lib/commonjs/mappings/TextField.js +360 -0
- package/lib/commonjs/mappings/TextInput.js +345 -0
- package/lib/commonjs/mappings/ToggleButton.js +53 -0
- package/lib/commonjs/mappings/Touchable.js +67 -0
- package/lib/commonjs/mappings/Video.js +82 -0
- package/lib/commonjs/mappings/View.js +186 -0
- package/lib/commonjs/mappings/WebView.js +93 -0
- package/lib/commonjs/mappings/YoutubePlayer.js +38 -0
- package/lib/module/components/AspectRatio.js +18 -1
- package/lib/module/components/BottomSheet/BottomSheet.js +24 -4
- package/lib/module/components/Button.js +33 -10
- package/lib/module/components/Checkbox/Checkbox.js +3 -4
- package/lib/module/components/Checkbox/CheckboxRow.js +24 -6
- package/lib/module/components/Checkbox/context.js +1 -1
- package/lib/module/components/DatePicker/DatePicker.js +27 -13
- package/lib/module/components/DeckSwiper/DeckSwiper.js +1 -4
- package/lib/module/components/DeprecatedButton.js +21 -3
- package/lib/module/components/Divider.js +18 -1
- package/lib/module/components/FormRow.js +17 -2
- package/lib/module/components/NumberInput.js +11 -3
- package/lib/module/components/Picker/PickerComponent.android.js +21 -3
- package/lib/module/components/Portal/PortalHost.js +45 -15
- package/lib/module/components/RadioButton/RadioButtonFieldGroup.js +10 -1
- package/lib/module/components/Shadow.js +15 -2
- package/lib/module/components/StarRating.js +24 -4
- package/lib/module/components/StepIndicator.js +58 -18
- package/lib/module/components/TabView/TabView.js +17 -7
- package/lib/module/components/Table/Table.js +6 -5
- package/lib/module/components/Table/TableRow.js +1 -2
- package/lib/module/constants.js +1 -0
- package/lib/module/mappings/Accordion.js +42 -0
- package/lib/module/mappings/AccordionItem.js +17 -0
- package/lib/module/mappings/ActionSheet.js +14 -0
- package/lib/module/mappings/ActionSheetCancel.js +20 -0
- package/lib/module/mappings/ActionSheetItem.js +24 -0
- package/lib/module/mappings/ActivityIndicator.js +57 -0
- package/lib/module/mappings/AudioPlayer.js +50 -0
- package/lib/module/mappings/AvatarEdit.js +38 -0
- package/lib/module/mappings/Banner.js +32 -0
- package/lib/module/mappings/BlurView.js +42 -0
- package/lib/module/mappings/BottomSheet.js +63 -0
- package/lib/module/mappings/Button.js +88 -0
- package/lib/module/mappings/Card.js +53 -0
- package/lib/module/mappings/Carousel.js +17 -0
- package/lib/module/mappings/Checkbox.js +46 -0
- package/lib/module/mappings/CheckboxGroup.js +26 -0
- package/lib/module/mappings/CheckboxRow.js +57 -0
- package/lib/module/mappings/CircleImage.js +25 -0
- package/lib/module/mappings/CustomCode.js +8 -0
- package/lib/module/mappings/DatePicker.js +174 -0
- package/lib/module/mappings/DeckSwiper.js +48 -0
- package/lib/module/mappings/DeckSwiperCard.js +16 -0
- package/lib/module/mappings/Divider.js +25 -0
- package/lib/module/mappings/FAB.js +37 -0
- package/lib/module/mappings/Fetch.js +13 -0
- package/lib/module/mappings/FieldSearchBarFull.js +52 -0
- package/lib/module/mappings/FlashList.js +104 -0
- package/lib/module/mappings/FlatList.js +51 -0
- package/lib/module/mappings/Icon.js +26 -0
- package/lib/module/mappings/IconButton.js +29 -0
- package/lib/module/mappings/Image.js +29 -0
- package/lib/module/mappings/ImageBackground.js +29 -0
- package/lib/module/mappings/KeyboardAvoidingView.js +41 -0
- package/lib/module/mappings/KeyboardAwareScrollView.js +50 -0
- package/lib/module/mappings/Layout.js +193 -0
- package/lib/module/mappings/LinearGradient.js +81 -0
- package/lib/module/mappings/MapCallout.js +22 -0
- package/lib/module/mappings/MapMarker.js +48 -0
- package/lib/module/mappings/MapView.js +135 -0
- package/lib/module/mappings/Markdown.js +20 -0
- package/lib/module/mappings/Modal.js +42 -0
- package/lib/module/mappings/NativeBase/Layout.js +101 -0
- package/lib/module/mappings/NumberInput.js +230 -0
- package/lib/module/mappings/Picker.js +147 -0
- package/lib/module/mappings/ProgressBar.js +99 -0
- package/lib/module/mappings/ProgressCircle.js +109 -0
- package/lib/module/mappings/RadioButton.js +51 -0
- package/lib/module/mappings/RadioButtonGroup.js +17 -0
- package/lib/module/mappings/RadioButtonRow.js +38 -0
- package/lib/module/mappings/RowBodyIcon.js +72 -0
- package/lib/module/mappings/RowHeadlineImageCaption.js +162 -0
- package/lib/module/mappings/RowHeadlineImageIcon.js +92 -0
- package/lib/module/mappings/SVG.js +15 -0
- package/lib/module/mappings/SafeAreaView.js +33 -0
- package/lib/module/mappings/ScrollView.js +37 -0
- package/lib/module/mappings/Shadow.js +95 -0
- package/lib/module/mappings/Slider.js +60 -0
- package/lib/module/mappings/StarRating.js +51 -0
- package/lib/module/mappings/Stepper.js +31 -0
- package/lib/module/mappings/Surface.js +14 -0
- package/lib/module/mappings/Swiper.js +63 -0
- package/lib/module/mappings/SwiperItem.js +9 -0
- package/lib/module/mappings/Switch.js +74 -0
- package/lib/module/mappings/TabView.js +67 -0
- package/lib/module/mappings/TabViewItem.js +30 -0
- package/lib/module/mappings/Table.js +133 -0
- package/lib/module/mappings/Text.js +227 -0
- package/lib/module/mappings/TextArea.js +247 -0
- package/lib/module/mappings/TextField.js +353 -0
- package/lib/module/mappings/TextInput.js +337 -0
- package/lib/module/mappings/ToggleButton.js +46 -0
- package/lib/module/mappings/Touchable.js +60 -0
- package/lib/module/mappings/Video.js +75 -0
- package/lib/module/mappings/View.js +179 -0
- package/lib/module/mappings/WebView.js +86 -0
- package/lib/module/mappings/YoutubePlayer.js +31 -0
- package/lib/module/utilities.js +1 -2
- package/lib/typescript/src/mappings/Accordion.d.ts +90 -0
- package/lib/typescript/src/mappings/Accordion.d.ts.map +1 -0
- package/lib/typescript/src/mappings/AccordionItem.d.ts +31 -0
- package/lib/typescript/src/mappings/AccordionItem.d.ts.map +1 -0
- package/lib/typescript/src/mappings/ActionSheet.d.ts +20 -0
- package/lib/typescript/src/mappings/ActionSheet.d.ts.map +1 -0
- package/lib/typescript/src/mappings/ActionSheetCancel.d.ts +32 -0
- package/lib/typescript/src/mappings/ActionSheetCancel.d.ts.map +1 -0
- package/lib/typescript/src/mappings/ActionSheetItem.d.ts +35 -0
- package/lib/typescript/src/mappings/ActionSheetItem.d.ts.map +1 -0
- package/lib/typescript/src/mappings/ActivityIndicator.d.ts +57 -0
- package/lib/typescript/src/mappings/ActivityIndicator.d.ts.map +1 -0
- package/lib/typescript/src/mappings/AudioPlayer.d.ts +81 -0
- package/lib/typescript/src/mappings/AudioPlayer.d.ts.map +1 -0
- package/lib/typescript/src/mappings/AvatarEdit.d.ts +38 -0
- package/lib/typescript/src/mappings/AvatarEdit.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Banner.d.ts +49 -0
- package/lib/typescript/src/mappings/Banner.d.ts.map +1 -0
- package/lib/typescript/src/mappings/BlurView.d.ts +42 -0
- package/lib/typescript/src/mappings/BlurView.d.ts.map +1 -0
- package/lib/typescript/src/mappings/BottomSheet.d.ts +115 -0
- package/lib/typescript/src/mappings/BottomSheet.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Button.d.ts +222 -0
- package/lib/typescript/src/mappings/Button.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Card.d.ts +114 -0
- package/lib/typescript/src/mappings/Card.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Carousel.d.ts +34 -0
- package/lib/typescript/src/mappings/Carousel.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Checkbox.d.ts +83 -0
- package/lib/typescript/src/mappings/Checkbox.d.ts.map +1 -0
- package/lib/typescript/src/mappings/CheckboxGroup.d.ts +35 -0
- package/lib/typescript/src/mappings/CheckboxGroup.d.ts.map +1 -0
- package/lib/typescript/src/mappings/CheckboxRow.d.ts +108 -0
- package/lib/typescript/src/mappings/CheckboxRow.d.ts.map +1 -0
- package/lib/typescript/src/mappings/CircleImage.d.ts +34 -0
- package/lib/typescript/src/mappings/CircleImage.d.ts.map +1 -0
- package/lib/typescript/src/mappings/CustomCode.d.ts +8 -0
- package/lib/typescript/src/mappings/CustomCode.d.ts.map +1 -0
- package/lib/typescript/src/mappings/DatePicker.d.ts +168 -0
- package/lib/typescript/src/mappings/DatePicker.d.ts.map +1 -0
- package/lib/typescript/src/mappings/DeckSwiper.d.ts +86 -0
- package/lib/typescript/src/mappings/DeckSwiper.d.ts.map +1 -0
- package/lib/typescript/src/mappings/DeckSwiperCard.d.ts +16 -0
- package/lib/typescript/src/mappings/DeckSwiperCard.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Divider.d.ts +25 -0
- package/lib/typescript/src/mappings/Divider.d.ts.map +1 -0
- package/lib/typescript/src/mappings/FAB.d.ts +83 -0
- package/lib/typescript/src/mappings/FAB.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Fetch.d.ts +12 -0
- package/lib/typescript/src/mappings/Fetch.d.ts.map +1 -0
- package/lib/typescript/src/mappings/FieldSearchBarFull.d.ts +56 -0
- package/lib/typescript/src/mappings/FieldSearchBarFull.d.ts.map +1 -0
- package/lib/typescript/src/mappings/FlashList.d.ts +230 -0
- package/lib/typescript/src/mappings/FlashList.d.ts.map +1 -0
- package/lib/typescript/src/mappings/FlatList.d.ts +116 -0
- package/lib/typescript/src/mappings/FlatList.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Icon.d.ts +42 -0
- package/lib/typescript/src/mappings/Icon.d.ts.map +1 -0
- package/lib/typescript/src/mappings/IconButton.d.ts +72 -0
- package/lib/typescript/src/mappings/IconButton.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Image.d.ts +48 -0
- package/lib/typescript/src/mappings/Image.d.ts.map +1 -0
- package/lib/typescript/src/mappings/ImageBackground.d.ts +58 -0
- package/lib/typescript/src/mappings/ImageBackground.d.ts.map +1 -0
- package/lib/typescript/src/mappings/KeyboardAvoidingView.d.ts +41 -0
- package/lib/typescript/src/mappings/KeyboardAvoidingView.d.ts.map +1 -0
- package/lib/typescript/src/mappings/KeyboardAwareScrollView.d.ts +105 -0
- package/lib/typescript/src/mappings/KeyboardAwareScrollView.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Layout.d.ts +169 -0
- package/lib/typescript/src/mappings/Layout.d.ts.map +1 -0
- package/lib/typescript/src/mappings/LinearGradient.d.ts +99 -0
- package/lib/typescript/src/mappings/LinearGradient.d.ts.map +1 -0
- package/lib/typescript/src/mappings/MapCallout.d.ts +33 -0
- package/lib/typescript/src/mappings/MapCallout.d.ts.map +1 -0
- package/lib/typescript/src/mappings/MapMarker.d.ts +56 -0
- package/lib/typescript/src/mappings/MapMarker.d.ts.map +1 -0
- package/lib/typescript/src/mappings/MapView.d.ts +172 -0
- package/lib/typescript/src/mappings/MapView.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Markdown.d.ts +20 -0
- package/lib/typescript/src/mappings/Markdown.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Modal.d.ts +52 -0
- package/lib/typescript/src/mappings/Modal.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Layout.d.ts +133 -0
- package/lib/typescript/src/mappings/NativeBase/Layout.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NumberInput.d.ts +299 -0
- package/lib/typescript/src/mappings/NumberInput.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Picker.d.ts +170 -0
- package/lib/typescript/src/mappings/Picker.d.ts.map +1 -0
- package/lib/typescript/src/mappings/ProgressBar.d.ts +99 -0
- package/lib/typescript/src/mappings/ProgressBar.d.ts.map +1 -0
- package/lib/typescript/src/mappings/ProgressCircle.d.ts +109 -0
- package/lib/typescript/src/mappings/ProgressCircle.d.ts.map +1 -0
- package/lib/typescript/src/mappings/RadioButton.d.ts +72 -0
- package/lib/typescript/src/mappings/RadioButton.d.ts.map +1 -0
- package/lib/typescript/src/mappings/RadioButtonGroup.d.ts +34 -0
- package/lib/typescript/src/mappings/RadioButtonGroup.d.ts.map +1 -0
- package/lib/typescript/src/mappings/RadioButtonRow.d.ts +43 -0
- package/lib/typescript/src/mappings/RadioButtonRow.d.ts.map +1 -0
- package/lib/typescript/src/mappings/RowBodyIcon.d.ts +73 -0
- package/lib/typescript/src/mappings/RowBodyIcon.d.ts.map +1 -0
- package/lib/typescript/src/mappings/RowHeadlineImageCaption.d.ts +166 -0
- package/lib/typescript/src/mappings/RowHeadlineImageCaption.d.ts.map +1 -0
- package/lib/typescript/src/mappings/RowHeadlineImageIcon.d.ts +170 -0
- package/lib/typescript/src/mappings/RowHeadlineImageIcon.d.ts.map +1 -0
- package/lib/typescript/src/mappings/SVG.d.ts +24 -0
- package/lib/typescript/src/mappings/SVG.d.ts.map +1 -0
- package/lib/typescript/src/mappings/SafeAreaView.d.ts +33 -0
- package/lib/typescript/src/mappings/SafeAreaView.d.ts.map +1 -0
- package/lib/typescript/src/mappings/ScrollView.d.ts +72 -0
- package/lib/typescript/src/mappings/ScrollView.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Shadow.d.ts +173 -0
- package/lib/typescript/src/mappings/Shadow.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Slider.d.ts +110 -0
- package/lib/typescript/src/mappings/Slider.d.ts.map +1 -0
- package/lib/typescript/src/mappings/StarRating.d.ts +75 -0
- package/lib/typescript/src/mappings/StarRating.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Stepper.d.ts +67 -0
- package/lib/typescript/src/mappings/Stepper.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Surface.d.ts +24 -0
- package/lib/typescript/src/mappings/Surface.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Swiper.d.ts +119 -0
- package/lib/typescript/src/mappings/Swiper.d.ts.map +1 -0
- package/lib/typescript/src/mappings/SwiperItem.d.ts +9 -0
- package/lib/typescript/src/mappings/SwiperItem.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Switch.d.ts +164 -0
- package/lib/typescript/src/mappings/Switch.d.ts.map +1 -0
- package/lib/typescript/src/mappings/TabView.d.ts +123 -0
- package/lib/typescript/src/mappings/TabView.d.ts.map +1 -0
- package/lib/typescript/src/mappings/TabViewItem.d.ts +25 -0
- package/lib/typescript/src/mappings/TabViewItem.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Table.d.ts +337 -0
- package/lib/typescript/src/mappings/Table.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Text.d.ts +411 -0
- package/lib/typescript/src/mappings/Text.d.ts.map +1 -0
- package/lib/typescript/src/mappings/TextArea.d.ts +263 -0
- package/lib/typescript/src/mappings/TextArea.d.ts.map +1 -0
- package/lib/typescript/src/mappings/TextField.d.ts +629 -0
- package/lib/typescript/src/mappings/TextField.d.ts.map +1 -0
- package/lib/typescript/src/mappings/TextInput.d.ts +415 -0
- package/lib/typescript/src/mappings/TextInput.d.ts.map +1 -0
- package/lib/typescript/src/mappings/ToggleButton.d.ts +116 -0
- package/lib/typescript/src/mappings/ToggleButton.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Touchable.d.ts +96 -0
- package/lib/typescript/src/mappings/Touchable.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Video.d.ts +129 -0
- package/lib/typescript/src/mappings/Video.d.ts.map +1 -0
- package/lib/typescript/src/mappings/View.d.ts +179 -0
- package/lib/typescript/src/mappings/View.d.ts.map +1 -0
- package/lib/typescript/src/mappings/WebView.d.ts +135 -0
- package/lib/typescript/src/mappings/WebView.d.ts.map +1 -0
- package/lib/typescript/src/mappings/YoutubePlayer.d.ts +27 -0
- package/lib/typescript/src/mappings/YoutubePlayer.d.ts.map +1 -0
- package/package.json +3 -3
- package/src/mappings/Accordion.js +50 -0
- package/src/mappings/Accordion.ts +60 -0
- package/src/mappings/AccordionItem.js +17 -0
- package/src/mappings/AccordionItem.ts +24 -0
- package/src/mappings/ActionSheet.js +17 -0
- package/src/mappings/ActionSheet.ts +23 -0
- package/src/mappings/ActionSheetCancel.js +23 -0
- package/src/mappings/ActionSheetCancel.ts +32 -0
- package/src/mappings/ActionSheetItem.js +27 -0
- package/src/mappings/ActionSheetItem.ts +36 -0
- package/src/mappings/ActivityIndicator.js +58 -0
- package/src/mappings/ActivityIndicator.ts +68 -0
- package/src/mappings/AudioPlayer.js +57 -0
- package/src/mappings/AudioPlayer.ts +67 -0
- package/src/mappings/AvatarEdit.js +38 -0
- package/src/mappings/AvatarEdit.ts +45 -0
- package/src/mappings/Banner.js +32 -0
- package/src/mappings/Banner.ts +40 -0
- package/src/mappings/BlurView.js +42 -0
- package/src/mappings/BlurView.ts +51 -0
- package/src/mappings/BottomSheet.js +63 -0
- package/src/mappings/BottomSheet.ts +77 -0
- package/src/mappings/Button.js +116 -0
- package/src/mappings/Button.ts +130 -0
- package/src/mappings/Card.js +52 -0
- package/src/mappings/Card.ts +64 -0
- package/src/mappings/Carousel.js +19 -0
- package/src/mappings/Carousel.ts +25 -0
- package/src/mappings/Checkbox.js +46 -0
- package/src/mappings/Checkbox.ts +57 -0
- package/src/mappings/CheckboxGroup.js +26 -0
- package/src/mappings/CheckboxGroup.ts +37 -0
- package/src/mappings/CheckboxRow.js +61 -0
- package/src/mappings/CheckboxRow.ts +74 -0
- package/src/mappings/CircleImage.js +25 -0
- package/src/mappings/CircleImage.ts +33 -0
- package/src/mappings/CustomCode.js +8 -0
- package/src/mappings/CustomCode.ts +9 -0
- package/src/mappings/DatePicker.js +182 -0
- package/src/mappings/DatePicker.ts +197 -0
- package/src/mappings/DeckSwiper.js +48 -0
- package/src/mappings/DeckSwiper.ts +57 -0
- package/src/mappings/DeckSwiperCard.js +16 -0
- package/src/mappings/DeckSwiperCard.ts +20 -0
- package/src/mappings/Divider.js +27 -0
- package/src/mappings/Divider.ts +34 -0
- package/src/mappings/FAB.js +37 -0
- package/src/mappings/FAB.ts +48 -0
- package/src/mappings/Fetch.js +13 -0
- package/src/mappings/Fetch.ts +14 -0
- package/src/mappings/FieldSearchBarFull.js +50 -0
- package/src/mappings/FieldSearchBarFull.ts +59 -0
- package/src/mappings/FlashList.js +113 -0
- package/src/mappings/FlashList.ts +131 -0
- package/src/mappings/FlatList.js +51 -0
- package/src/mappings/FlatList.ts +64 -0
- package/src/mappings/Icon.js +32 -0
- package/src/mappings/Icon.ts +40 -0
- package/src/mappings/IconButton.js +33 -0
- package/src/mappings/IconButton.ts +44 -0
- package/src/mappings/Image.js +35 -0
- package/src/mappings/Image.ts +44 -0
- package/src/mappings/ImageBackground.js +29 -0
- package/src/mappings/ImageBackground.ts +41 -0
- package/src/mappings/KeyboardAvoidingView.js +41 -0
- package/src/mappings/KeyboardAvoidingView.ts +50 -0
- package/src/mappings/KeyboardAwareScrollView.js +50 -0
- package/src/mappings/KeyboardAwareScrollView.ts +63 -0
- package/src/mappings/Layout.js +200 -0
- package/src/mappings/Layout.ts +207 -0
- package/src/mappings/LinearGradient.js +82 -0
- package/src/mappings/LinearGradient.ts +89 -0
- package/src/mappings/MapCallout.js +26 -0
- package/src/mappings/MapCallout.ts +36 -0
- package/src/mappings/MapMarker.js +52 -0
- package/src/mappings/MapMarker.ts +62 -0
- package/src/mappings/MapView.js +142 -0
- package/src/mappings/MapView.ts +155 -0
- package/src/mappings/Markdown.js +25 -0
- package/src/mappings/Markdown.ts +32 -0
- package/src/mappings/Modal.js +42 -0
- package/src/mappings/Modal.ts +51 -0
- package/src/mappings/NativeBase/Layout.js +124 -0
- package/src/mappings/NativeBase/Layout.ts +145 -0
- package/src/mappings/NumberInput.js +254 -0
- package/src/mappings/NumberInput.ts +274 -0
- package/src/mappings/Picker.js +153 -0
- package/src/mappings/Picker.ts +169 -0
- package/src/mappings/ProgressBar.js +101 -0
- package/src/mappings/ProgressBar.ts +110 -0
- package/src/mappings/ProgressCircle.js +109 -0
- package/src/mappings/ProgressCircle.ts +117 -0
- package/src/mappings/RadioButton.js +51 -0
- package/src/mappings/RadioButton.ts +62 -0
- package/src/mappings/RadioButtonGroup.js +17 -0
- package/src/mappings/RadioButtonGroup.ts +24 -0
- package/src/mappings/RadioButtonRow.js +42 -0
- package/src/mappings/RadioButtonRow.ts +51 -0
- package/src/mappings/RowBodyIcon.js +75 -0
- package/src/mappings/RowBodyIcon.ts +82 -0
- package/src/mappings/RowHeadlineImageCaption.js +167 -0
- package/src/mappings/RowHeadlineImageCaption.ts +178 -0
- package/src/mappings/RowHeadlineImageIcon.js +99 -0
- package/src/mappings/RowHeadlineImageIcon.ts +116 -0
- package/src/mappings/SVG.js +20 -0
- package/src/mappings/SVG.ts +25 -0
- package/src/mappings/SafeAreaView.js +33 -0
- package/src/mappings/SafeAreaView.ts +39 -0
- package/src/mappings/ScrollView.js +37 -0
- package/src/mappings/ScrollView.ts +48 -0
- package/src/mappings/Shadow.js +95 -0
- package/src/mappings/Shadow.ts +104 -0
- package/src/mappings/Slider.js +60 -0
- package/src/mappings/Slider.ts +70 -0
- package/src/mappings/StarRating.js +43 -0
- package/src/mappings/StarRating.ts +52 -0
- package/src/mappings/Stepper.js +32 -0
- package/src/mappings/Stepper.ts +42 -0
- package/src/mappings/Surface.js +14 -0
- package/src/mappings/Surface.ts +19 -0
- package/src/mappings/Swiper.js +71 -0
- package/src/mappings/Swiper.ts +82 -0
- package/src/mappings/SwiperItem.js +9 -0
- package/src/mappings/SwiperItem.ts +13 -0
- package/src/mappings/Switch.js +81 -0
- package/src/mappings/Switch.ts +92 -0
- package/src/mappings/TabView.js +75 -0
- package/src/mappings/TabView.ts +85 -0
- package/src/mappings/TabViewItem.js +30 -0
- package/src/mappings/TabViewItem.ts +38 -0
- package/src/mappings/Table.js +150 -0
- package/src/mappings/Table.ts +170 -0
- package/src/mappings/Text.js +251 -0
- package/src/mappings/Text.ts +276 -0
- package/src/mappings/TextArea.js +283 -0
- package/src/mappings/TextArea.ts +300 -0
- package/src/mappings/TextField.js +400 -0
- package/src/mappings/TextField.ts +423 -0
- package/src/mappings/TextInput.js +402 -0
- package/src/mappings/TextInput.ts +431 -0
- package/src/mappings/ToggleButton.js +50 -0
- package/src/mappings/ToggleButton.ts +63 -0
- package/src/mappings/Touchable.js +67 -0
- package/src/mappings/Touchable.ts +80 -0
- package/src/mappings/Video.js +81 -0
- package/src/mappings/Video.ts +95 -0
- package/src/mappings/View.js +207 -0
- package/src/mappings/View.ts +229 -0
- package/src/mappings/WebView.js +88 -0
- package/src/mappings/WebView.ts +107 -0
- package/src/mappings/YoutubePlayer.js +31 -0
- package/src/mappings/YoutubePlayer.ts +37 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import {
|
|
2
|
+
COMPONENT_TYPES,
|
|
3
|
+
createBoolProp,
|
|
4
|
+
createColorProp,
|
|
5
|
+
createNumberProp,
|
|
6
|
+
createTextProp,
|
|
7
|
+
GROUPS,
|
|
8
|
+
StylesPanelSections,
|
|
9
|
+
} from "@draftbit/types";
|
|
10
|
+
|
|
11
|
+
export const SEED_DATA = {
|
|
12
|
+
name: "Map Marker",
|
|
13
|
+
tag: "MapMarker",
|
|
14
|
+
packageName: "@draftbit/maps",
|
|
15
|
+
description: "A marker to show inside map view",
|
|
16
|
+
category: COMPONENT_TYPES.map,
|
|
17
|
+
stylesPanelSections: [
|
|
18
|
+
StylesPanelSections.Size,
|
|
19
|
+
StylesPanelSections.Margins,
|
|
20
|
+
StylesPanelSections.Effects,
|
|
21
|
+
],
|
|
22
|
+
layout: {},
|
|
23
|
+
props: {
|
|
24
|
+
latitude: createNumberProp({
|
|
25
|
+
label: "Latitude",
|
|
26
|
+
description: "The latitude in which the marker is located",
|
|
27
|
+
required: true,
|
|
28
|
+
precision: 6,
|
|
29
|
+
min: -90,
|
|
30
|
+
max: 90,
|
|
31
|
+
}),
|
|
32
|
+
longitude: createNumberProp({
|
|
33
|
+
label: "Longitude",
|
|
34
|
+
description: "The longitude in which the marker is located",
|
|
35
|
+
required: true,
|
|
36
|
+
precision: 6,
|
|
37
|
+
min: -180,
|
|
38
|
+
max: 180,
|
|
39
|
+
}),
|
|
40
|
+
title: createTextProp({
|
|
41
|
+
label: "Title",
|
|
42
|
+
description: "Title to show along with the marker",
|
|
43
|
+
defaultValue: null,
|
|
44
|
+
}),
|
|
45
|
+
description: createTextProp({
|
|
46
|
+
label: "Description",
|
|
47
|
+
description: "Optional description for the marker",
|
|
48
|
+
defaultValue: null,
|
|
49
|
+
}),
|
|
50
|
+
flat: createBoolProp({
|
|
51
|
+
label: "Flat",
|
|
52
|
+
description:
|
|
53
|
+
"Sets whether this marker should be flat against the map (if true) or a billboard facing the camera (if false)",
|
|
54
|
+
group: GROUPS.basic,
|
|
55
|
+
defaultValue: false,
|
|
56
|
+
}),
|
|
57
|
+
pinColor: createColorProp({
|
|
58
|
+
label: "Pin Color",
|
|
59
|
+
description: "Sets the color of the marker",
|
|
60
|
+
}),
|
|
61
|
+
},
|
|
62
|
+
};
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, createBoolProp, createColorProp, createNumberProp, createTextProp, GROUPS, FORM_TYPES, PROP_TYPES, StylesPanelSections, } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = {
|
|
3
|
+
name: "Map View",
|
|
4
|
+
tag: "MapView",
|
|
5
|
+
packageName: "@draftbit/maps",
|
|
6
|
+
description: "A map view",
|
|
7
|
+
category: COMPONENT_TYPES.map,
|
|
8
|
+
stylesPanelSections: [StylesPanelSections.Size, StylesPanelSections.Margins],
|
|
9
|
+
layout: {
|
|
10
|
+
flex: 1,
|
|
11
|
+
width: "100%",
|
|
12
|
+
height: "100%",
|
|
13
|
+
},
|
|
14
|
+
props: {
|
|
15
|
+
provider: {
|
|
16
|
+
formType: FORM_TYPES.flatArray,
|
|
17
|
+
propType: PROP_TYPES.STRING,
|
|
18
|
+
editable: true,
|
|
19
|
+
group: GROUPS.basic,
|
|
20
|
+
label: "Provider",
|
|
21
|
+
description: "The maps provider",
|
|
22
|
+
required: false,
|
|
23
|
+
defaultValue: null,
|
|
24
|
+
options: ["google"],
|
|
25
|
+
},
|
|
26
|
+
latitude: createNumberProp({
|
|
27
|
+
label: "Initial Latitude",
|
|
28
|
+
description: "The longitude for the map's initial region",
|
|
29
|
+
required: false,
|
|
30
|
+
precision: 6,
|
|
31
|
+
min: -90,
|
|
32
|
+
max: 90,
|
|
33
|
+
defaultValue: 37.40241,
|
|
34
|
+
}),
|
|
35
|
+
longitude: createNumberProp({
|
|
36
|
+
label: "Initial Longitude",
|
|
37
|
+
description: "The longitude for the map's initial region",
|
|
38
|
+
required: false,
|
|
39
|
+
precision: 6,
|
|
40
|
+
min: -180,
|
|
41
|
+
max: 180,
|
|
42
|
+
defaultValue: -122.12125,
|
|
43
|
+
}),
|
|
44
|
+
zoom: createNumberProp({
|
|
45
|
+
label: "Initial Zoom",
|
|
46
|
+
description: "The initial zoom of the map",
|
|
47
|
+
required: true,
|
|
48
|
+
precision: 0,
|
|
49
|
+
step: 1,
|
|
50
|
+
defaultValue: 8,
|
|
51
|
+
min: 0,
|
|
52
|
+
max: 22,
|
|
53
|
+
group: GROUPS.basic,
|
|
54
|
+
}),
|
|
55
|
+
mapType: {
|
|
56
|
+
label: "Map Type",
|
|
57
|
+
description: "The type of map to show",
|
|
58
|
+
group: GROUPS.basic,
|
|
59
|
+
editable: true,
|
|
60
|
+
formType: FORM_TYPES.flatArray,
|
|
61
|
+
propType: PROP_TYPES.STRING,
|
|
62
|
+
required: false,
|
|
63
|
+
defaultValue: null,
|
|
64
|
+
options: [
|
|
65
|
+
"standard",
|
|
66
|
+
"satellite",
|
|
67
|
+
"hybrid",
|
|
68
|
+
"terrain",
|
|
69
|
+
"none",
|
|
70
|
+
"mutedStandard",
|
|
71
|
+
],
|
|
72
|
+
},
|
|
73
|
+
zoomEnabled: createBoolProp({
|
|
74
|
+
label: "Zoom Enabled",
|
|
75
|
+
description: "Whether zooming is enabled (native only)",
|
|
76
|
+
group: GROUPS.basic,
|
|
77
|
+
required: false,
|
|
78
|
+
defaultValue: true,
|
|
79
|
+
}),
|
|
80
|
+
showsCompass: createBoolProp({
|
|
81
|
+
label: "Shows Compass",
|
|
82
|
+
description: "Whether compass is shown",
|
|
83
|
+
group: GROUPS.basic,
|
|
84
|
+
required: false,
|
|
85
|
+
defaultValue: false,
|
|
86
|
+
}),
|
|
87
|
+
rotateEnabled: createBoolProp({
|
|
88
|
+
label: "Rotate Enabled",
|
|
89
|
+
description: "Whether rotating the map is enabled",
|
|
90
|
+
group: GROUPS.basic,
|
|
91
|
+
required: false,
|
|
92
|
+
defaultValue: true,
|
|
93
|
+
}),
|
|
94
|
+
scrollEnabled: createBoolProp({
|
|
95
|
+
label: "Pan Enabled",
|
|
96
|
+
description: "Whether panning the map view is enabled",
|
|
97
|
+
group: GROUPS.basic,
|
|
98
|
+
required: false,
|
|
99
|
+
defaultValue: true,
|
|
100
|
+
}),
|
|
101
|
+
loadingEnabled: createBoolProp({
|
|
102
|
+
label: "Loading Enabled",
|
|
103
|
+
description: "If true a loading indicator will show while the map is loading",
|
|
104
|
+
group: GROUPS.basic,
|
|
105
|
+
required: false,
|
|
106
|
+
defaultValue: true,
|
|
107
|
+
}),
|
|
108
|
+
loadingIndicatorColor: createColorProp({
|
|
109
|
+
label: "Loading Indicator Color",
|
|
110
|
+
description: "Color of the loading indicator",
|
|
111
|
+
}),
|
|
112
|
+
loadingBackgroundColor: createColorProp({
|
|
113
|
+
label: "Loading BG Color",
|
|
114
|
+
description: "Color of the background to show while the map is loading",
|
|
115
|
+
}),
|
|
116
|
+
showsUserLocation: createBoolProp({
|
|
117
|
+
label: "Shows User Location",
|
|
118
|
+
description: "Whether to show the user's location on the map",
|
|
119
|
+
required: false,
|
|
120
|
+
defaultValue: null,
|
|
121
|
+
group: GROUPS.basic,
|
|
122
|
+
}),
|
|
123
|
+
followsUserLocation: createBoolProp({
|
|
124
|
+
label: "Follows User Location (iOS only)",
|
|
125
|
+
description: "Whether to set the map region to follow the user's location",
|
|
126
|
+
required: false,
|
|
127
|
+
defaultValue: null,
|
|
128
|
+
group: GROUPS.basic,
|
|
129
|
+
}),
|
|
130
|
+
showsPointsOfInterest: createBoolProp({
|
|
131
|
+
label: "Shows Points of Interest",
|
|
132
|
+
description: "Whether to show points of interest on the map.",
|
|
133
|
+
required: false,
|
|
134
|
+
defaultValue: true,
|
|
135
|
+
group: GROUPS.basic,
|
|
136
|
+
}),
|
|
137
|
+
apiKey: createTextProp({
|
|
138
|
+
defaultValue: process.env.GOOGLE_MAPS_API_KEY,
|
|
139
|
+
editable: false,
|
|
140
|
+
}),
|
|
141
|
+
},
|
|
142
|
+
};
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
import {
|
|
2
|
+
COMPONENT_TYPES,
|
|
3
|
+
createBoolProp,
|
|
4
|
+
createColorProp,
|
|
5
|
+
createNumberProp,
|
|
6
|
+
createTextProp,
|
|
7
|
+
GROUPS,
|
|
8
|
+
FORM_TYPES,
|
|
9
|
+
PROP_TYPES,
|
|
10
|
+
StylesPanelSections,
|
|
11
|
+
} from "@draftbit/types";
|
|
12
|
+
|
|
13
|
+
export const SEED_DATA = {
|
|
14
|
+
name: "Map View",
|
|
15
|
+
tag: "MapView",
|
|
16
|
+
packageName: "@draftbit/maps",
|
|
17
|
+
description: "A map view",
|
|
18
|
+
category: COMPONENT_TYPES.map,
|
|
19
|
+
stylesPanelSections: [StylesPanelSections.Size, StylesPanelSections.Margins],
|
|
20
|
+
layout: {
|
|
21
|
+
flex: 1,
|
|
22
|
+
width: "100%",
|
|
23
|
+
height: "100%",
|
|
24
|
+
},
|
|
25
|
+
props: {
|
|
26
|
+
provider: {
|
|
27
|
+
formType: FORM_TYPES.flatArray,
|
|
28
|
+
propType: PROP_TYPES.STRING,
|
|
29
|
+
editable: true,
|
|
30
|
+
group: GROUPS.basic,
|
|
31
|
+
label: "Provider",
|
|
32
|
+
description: "The maps provider",
|
|
33
|
+
required: false,
|
|
34
|
+
defaultValue: null,
|
|
35
|
+
options: ["google"],
|
|
36
|
+
},
|
|
37
|
+
latitude: createNumberProp({
|
|
38
|
+
label: "Initial Latitude",
|
|
39
|
+
description: "The longitude for the map's initial region",
|
|
40
|
+
required: false,
|
|
41
|
+
precision: 6,
|
|
42
|
+
min: -90,
|
|
43
|
+
max: 90,
|
|
44
|
+
defaultValue: 37.40241,
|
|
45
|
+
}),
|
|
46
|
+
longitude: createNumberProp({
|
|
47
|
+
label: "Initial Longitude",
|
|
48
|
+
description: "The longitude for the map's initial region",
|
|
49
|
+
required: false,
|
|
50
|
+
precision: 6,
|
|
51
|
+
min: -180,
|
|
52
|
+
max: 180,
|
|
53
|
+
defaultValue: -122.12125,
|
|
54
|
+
}),
|
|
55
|
+
zoom: createNumberProp({
|
|
56
|
+
label: "Initial Zoom",
|
|
57
|
+
description: "The initial zoom of the map",
|
|
58
|
+
required: true,
|
|
59
|
+
precision: 0,
|
|
60
|
+
step: 1,
|
|
61
|
+
defaultValue: 8,
|
|
62
|
+
min: 0,
|
|
63
|
+
max: 22,
|
|
64
|
+
group: GROUPS.basic,
|
|
65
|
+
}),
|
|
66
|
+
mapType: {
|
|
67
|
+
label: "Map Type",
|
|
68
|
+
description: "The type of map to show",
|
|
69
|
+
group: GROUPS.basic,
|
|
70
|
+
editable: true,
|
|
71
|
+
formType: FORM_TYPES.flatArray,
|
|
72
|
+
propType: PROP_TYPES.STRING,
|
|
73
|
+
required: false,
|
|
74
|
+
defaultValue: null,
|
|
75
|
+
options: [
|
|
76
|
+
"standard",
|
|
77
|
+
"satellite",
|
|
78
|
+
"hybrid",
|
|
79
|
+
"terrain",
|
|
80
|
+
"none",
|
|
81
|
+
"mutedStandard",
|
|
82
|
+
],
|
|
83
|
+
},
|
|
84
|
+
zoomEnabled: createBoolProp({
|
|
85
|
+
label: "Zoom Enabled",
|
|
86
|
+
description: "Whether zooming is enabled (native only)",
|
|
87
|
+
group: GROUPS.basic,
|
|
88
|
+
required: false,
|
|
89
|
+
defaultValue: true,
|
|
90
|
+
}),
|
|
91
|
+
showsCompass: createBoolProp({
|
|
92
|
+
label: "Shows Compass",
|
|
93
|
+
description: "Whether compass is shown",
|
|
94
|
+
group: GROUPS.basic,
|
|
95
|
+
required: false,
|
|
96
|
+
defaultValue: false,
|
|
97
|
+
}),
|
|
98
|
+
rotateEnabled: createBoolProp({
|
|
99
|
+
label: "Rotate Enabled",
|
|
100
|
+
description: "Whether rotating the map is enabled",
|
|
101
|
+
group: GROUPS.basic,
|
|
102
|
+
required: false,
|
|
103
|
+
defaultValue: true,
|
|
104
|
+
}),
|
|
105
|
+
scrollEnabled: createBoolProp({
|
|
106
|
+
label: "Pan Enabled",
|
|
107
|
+
description: "Whether panning the map view is enabled",
|
|
108
|
+
group: GROUPS.basic,
|
|
109
|
+
required: false,
|
|
110
|
+
defaultValue: true,
|
|
111
|
+
}),
|
|
112
|
+
loadingEnabled: createBoolProp({
|
|
113
|
+
label: "Loading Enabled",
|
|
114
|
+
description:
|
|
115
|
+
"If true a loading indicator will show while the map is loading",
|
|
116
|
+
group: GROUPS.basic,
|
|
117
|
+
required: false,
|
|
118
|
+
defaultValue: true,
|
|
119
|
+
}),
|
|
120
|
+
loadingIndicatorColor: createColorProp({
|
|
121
|
+
label: "Loading Indicator Color",
|
|
122
|
+
description: "Color of the loading indicator",
|
|
123
|
+
}),
|
|
124
|
+
loadingBackgroundColor: createColorProp({
|
|
125
|
+
label: "Loading BG Color",
|
|
126
|
+
description: "Color of the background to show while the map is loading",
|
|
127
|
+
}),
|
|
128
|
+
showsUserLocation: createBoolProp({
|
|
129
|
+
label: "Shows User Location",
|
|
130
|
+
description: "Whether to show the user's location on the map",
|
|
131
|
+
required: false,
|
|
132
|
+
defaultValue: null,
|
|
133
|
+
group: GROUPS.basic,
|
|
134
|
+
}),
|
|
135
|
+
followsUserLocation: createBoolProp({
|
|
136
|
+
label: "Follows User Location (iOS only)",
|
|
137
|
+
description:
|
|
138
|
+
"Whether to set the map region to follow the user's location",
|
|
139
|
+
required: false,
|
|
140
|
+
defaultValue: null,
|
|
141
|
+
group: GROUPS.basic,
|
|
142
|
+
}),
|
|
143
|
+
showsPointsOfInterest: createBoolProp({
|
|
144
|
+
label: "Shows Points of Interest",
|
|
145
|
+
description: "Whether to show points of interest on the map.",
|
|
146
|
+
required: false,
|
|
147
|
+
defaultValue: true,
|
|
148
|
+
group: GROUPS.basic,
|
|
149
|
+
}),
|
|
150
|
+
apiKey: createTextProp({
|
|
151
|
+
defaultValue: process.env.GOOGLE_MAPS_API_KEY,
|
|
152
|
+
editable: false,
|
|
153
|
+
}),
|
|
154
|
+
},
|
|
155
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, FORM_TYPES, GROUPS, PROP_TYPES, StylesPanelSections, } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = {
|
|
3
|
+
name: "Markdown",
|
|
4
|
+
tag: "Markdown",
|
|
5
|
+
description: "A component that renders markdown",
|
|
6
|
+
category: COMPONENT_TYPES.text,
|
|
7
|
+
stylesPanelSections: [
|
|
8
|
+
StylesPanelSections.Typography,
|
|
9
|
+
StylesPanelSections.LayoutSelectedItem,
|
|
10
|
+
StylesPanelSections.MarginsAndPaddings,
|
|
11
|
+
StylesPanelSections.Effects,
|
|
12
|
+
],
|
|
13
|
+
props: {
|
|
14
|
+
children: {
|
|
15
|
+
group: GROUPS.data,
|
|
16
|
+
label: "Markdown Text",
|
|
17
|
+
description: "Markdown text to be rendered ",
|
|
18
|
+
editable: true,
|
|
19
|
+
required: true,
|
|
20
|
+
formType: FORM_TYPES.string,
|
|
21
|
+
propType: PROP_TYPES.STRING,
|
|
22
|
+
defaultValue: "### Markdown",
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
COMPONENT_TYPES,
|
|
3
|
+
FORM_TYPES,
|
|
4
|
+
GROUPS,
|
|
5
|
+
PROP_TYPES,
|
|
6
|
+
StylesPanelSections,
|
|
7
|
+
} from "@draftbit/types";
|
|
8
|
+
|
|
9
|
+
export const SEED_DATA = {
|
|
10
|
+
name: "Markdown",
|
|
11
|
+
tag: "Markdown",
|
|
12
|
+
description: "A component that renders markdown",
|
|
13
|
+
category: COMPONENT_TYPES.text,
|
|
14
|
+
stylesPanelSections: [
|
|
15
|
+
StylesPanelSections.Typography,
|
|
16
|
+
StylesPanelSections.LayoutSelectedItem,
|
|
17
|
+
StylesPanelSections.MarginsAndPaddings,
|
|
18
|
+
StylesPanelSections.Effects,
|
|
19
|
+
],
|
|
20
|
+
props: {
|
|
21
|
+
children: {
|
|
22
|
+
group: GROUPS.data,
|
|
23
|
+
label: "Markdown Text",
|
|
24
|
+
description: "Markdown text to be rendered ",
|
|
25
|
+
editable: true,
|
|
26
|
+
required: true,
|
|
27
|
+
formType: FORM_TYPES.string,
|
|
28
|
+
propType: PROP_TYPES.STRING,
|
|
29
|
+
defaultValue: "### Markdown",
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { GROUPS, COMPONENT_TYPES, FORM_TYPES, PROP_TYPES, createBoolProp, StylesPanelSections, } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = {
|
|
3
|
+
name: "Modal",
|
|
4
|
+
tag: "Modal",
|
|
5
|
+
description: "A basic Modal Component",
|
|
6
|
+
category: COMPONENT_TYPES.layout,
|
|
7
|
+
stylesPanelSections: [StylesPanelSections.NoStyles],
|
|
8
|
+
props: {
|
|
9
|
+
animationType: {
|
|
10
|
+
group: GROUPS.basic,
|
|
11
|
+
label: "Animation Type",
|
|
12
|
+
description: "Animation Type",
|
|
13
|
+
options: ["slide", "fade", "none"],
|
|
14
|
+
editable: true,
|
|
15
|
+
required: false,
|
|
16
|
+
formType: FORM_TYPES.flatArray,
|
|
17
|
+
propType: PROP_TYPES.STRING,
|
|
18
|
+
defaultValue: "none",
|
|
19
|
+
},
|
|
20
|
+
transparent: createBoolProp({
|
|
21
|
+
group: GROUPS.basic,
|
|
22
|
+
label: "Transparent",
|
|
23
|
+
description: "Determines whether the modal will fill the entire view. Setting this to true will render the modal over a transparent background",
|
|
24
|
+
}),
|
|
25
|
+
visible: createBoolProp({
|
|
26
|
+
group: GROUPS.data,
|
|
27
|
+
label: "Visible",
|
|
28
|
+
description: "Determines whether the modal is visible",
|
|
29
|
+
}),
|
|
30
|
+
presentationStyle: {
|
|
31
|
+
group: GROUPS.basic,
|
|
32
|
+
label: "Presentation Style",
|
|
33
|
+
description: "Presentation Style",
|
|
34
|
+
options: ["fullScreen", "pageSheet", "formSheet", "overFullScreen"],
|
|
35
|
+
editable: true,
|
|
36
|
+
required: false,
|
|
37
|
+
formType: FORM_TYPES.flatArray,
|
|
38
|
+
propType: PROP_TYPES.STRING,
|
|
39
|
+
defaultValue: null,
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import {
|
|
2
|
+
GROUPS,
|
|
3
|
+
COMPONENT_TYPES,
|
|
4
|
+
FORM_TYPES,
|
|
5
|
+
PROP_TYPES,
|
|
6
|
+
createBoolProp,
|
|
7
|
+
StylesPanelSections,
|
|
8
|
+
} from "@draftbit/types";
|
|
9
|
+
|
|
10
|
+
export const SEED_DATA = {
|
|
11
|
+
name: "Modal",
|
|
12
|
+
tag: "Modal",
|
|
13
|
+
description: "A basic Modal Component",
|
|
14
|
+
category: COMPONENT_TYPES.layout,
|
|
15
|
+
stylesPanelSections: [StylesPanelSections.NoStyles],
|
|
16
|
+
props: {
|
|
17
|
+
animationType: {
|
|
18
|
+
group: GROUPS.basic,
|
|
19
|
+
label: "Animation Type",
|
|
20
|
+
description: "Animation Type",
|
|
21
|
+
options: ["slide", "fade", "none"],
|
|
22
|
+
editable: true,
|
|
23
|
+
required: false,
|
|
24
|
+
formType: FORM_TYPES.flatArray,
|
|
25
|
+
propType: PROP_TYPES.STRING,
|
|
26
|
+
defaultValue: "none",
|
|
27
|
+
},
|
|
28
|
+
transparent: createBoolProp({
|
|
29
|
+
group: GROUPS.basic,
|
|
30
|
+
label: "Transparent",
|
|
31
|
+
description:
|
|
32
|
+
"Determines whether the modal will fill the entire view. Setting this to true will render the modal over a transparent background",
|
|
33
|
+
}),
|
|
34
|
+
visible: createBoolProp({
|
|
35
|
+
group: GROUPS.data,
|
|
36
|
+
label: "Visible",
|
|
37
|
+
description: "Determines whether the modal is visible",
|
|
38
|
+
}),
|
|
39
|
+
presentationStyle: {
|
|
40
|
+
group: GROUPS.basic,
|
|
41
|
+
label: "Presentation Style",
|
|
42
|
+
description: "Presentation Style",
|
|
43
|
+
options: ["fullScreen", "pageSheet", "formSheet", "overFullScreen"],
|
|
44
|
+
editable: true,
|
|
45
|
+
required: false,
|
|
46
|
+
formType: FORM_TYPES.flatArray,
|
|
47
|
+
propType: PROP_TYPES.STRING,
|
|
48
|
+
defaultValue: null,
|
|
49
|
+
},
|
|
50
|
+
},
|
|
51
|
+
};
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, createBoolProp, CONTAINER_COMPONENT_STYLES_SECTIONS, createStaticNumberProp, StylesPanelSections, createStaticBoolProp, } from "@draftbit/types";
|
|
2
|
+
const SHARED_SEED_DATA = {
|
|
3
|
+
category: COMPONENT_TYPES.layout,
|
|
4
|
+
packageName: "native-base",
|
|
5
|
+
stylesPanelSections: CONTAINER_COMPONENT_STYLES_SECTIONS,
|
|
6
|
+
};
|
|
7
|
+
const CONTAINER_COMPONENT_STYLES_WITHOUT_FLEX = CONTAINER_COMPONENT_STYLES_SECTIONS.filter((item) => item !== StylesPanelSections.LayoutFlexItems &&
|
|
8
|
+
item !== StylesPanelSections.LayoutContent);
|
|
9
|
+
export const SEED_DATA = [
|
|
10
|
+
{
|
|
11
|
+
name: "Aspect Ratio",
|
|
12
|
+
tag: "AspectRatio",
|
|
13
|
+
description: "Controls the size of the undefined dimension of a node or child component using an aspect ratio",
|
|
14
|
+
...SHARED_SEED_DATA,
|
|
15
|
+
props: {
|
|
16
|
+
ratio: createStaticNumberProp({
|
|
17
|
+
label: "Ratio",
|
|
18
|
+
description: "The aspect ratio of the container in decimal format (ex: 3/4 -> 1.33)",
|
|
19
|
+
defaultValue: 1.33,
|
|
20
|
+
}),
|
|
21
|
+
},
|
|
22
|
+
stylesPanelSections: [
|
|
23
|
+
StylesPanelSections.Background,
|
|
24
|
+
StylesPanelSections.Size,
|
|
25
|
+
StylesPanelSections.Margins,
|
|
26
|
+
StylesPanelSections.Position,
|
|
27
|
+
StylesPanelSections.Borders,
|
|
28
|
+
StylesPanelSections.Effects,
|
|
29
|
+
],
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: "Box",
|
|
33
|
+
tag: "Box",
|
|
34
|
+
description: "This is a generic component for low level layout needs. It is similar to a div in HTML",
|
|
35
|
+
...SHARED_SEED_DATA,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
name: "Center",
|
|
39
|
+
tag: "Center",
|
|
40
|
+
description: "Center aligns its contents to the center within itself",
|
|
41
|
+
...SHARED_SEED_DATA,
|
|
42
|
+
stylesPanelSections: CONTAINER_COMPONENT_STYLES_WITHOUT_FLEX,
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
name: "Circle",
|
|
46
|
+
tag: "Circle",
|
|
47
|
+
description: "Center aligns its contents to the center within itself with a round border radius",
|
|
48
|
+
...SHARED_SEED_DATA,
|
|
49
|
+
stylesPanelSections: CONTAINER_COMPONENT_STYLES_WITHOUT_FLEX,
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
name: "Container",
|
|
53
|
+
tag: "Container",
|
|
54
|
+
description: "The Container restricts a content's width according to current breakpoint, while keeping the size fluid",
|
|
55
|
+
props: {
|
|
56
|
+
centerContent: createStaticBoolProp({
|
|
57
|
+
label: "Center content",
|
|
58
|
+
description: "Center child elements based on their content width",
|
|
59
|
+
defaultValue: true,
|
|
60
|
+
}),
|
|
61
|
+
},
|
|
62
|
+
...SHARED_SEED_DATA,
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
name: "Column",
|
|
66
|
+
tag: "Column",
|
|
67
|
+
description: "Column aligns items vertically",
|
|
68
|
+
layout: {
|
|
69
|
+
flexDirection: "column",
|
|
70
|
+
},
|
|
71
|
+
...SHARED_SEED_DATA,
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: "Row",
|
|
75
|
+
tag: "Row",
|
|
76
|
+
description: "Column aligns items horizontally",
|
|
77
|
+
layout: {
|
|
78
|
+
flexDirection: "row",
|
|
79
|
+
},
|
|
80
|
+
...SHARED_SEED_DATA,
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
name: "Spacer",
|
|
84
|
+
tag: "Spacer",
|
|
85
|
+
description: "An adjustable, empty space that can be used to tune the spacing between child elements within Flex",
|
|
86
|
+
layout: {
|
|
87
|
+
flex: 1,
|
|
88
|
+
},
|
|
89
|
+
...SHARED_SEED_DATA,
|
|
90
|
+
stylesPanelSections: [
|
|
91
|
+
StylesPanelSections.LayoutSelectedItem,
|
|
92
|
+
StylesPanelSections.Background,
|
|
93
|
+
StylesPanelSections.Margins,
|
|
94
|
+
],
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
name: "Stack",
|
|
98
|
+
tag: "Stack",
|
|
99
|
+
description: "Stack aligns items vertically or horizontally based on the direction prop",
|
|
100
|
+
...SHARED_SEED_DATA,
|
|
101
|
+
props: {
|
|
102
|
+
isDisabled: createBoolProp({
|
|
103
|
+
label: "Disabled",
|
|
104
|
+
description: "If true, the Stack will be disabled",
|
|
105
|
+
}),
|
|
106
|
+
isInvalid: createBoolProp({
|
|
107
|
+
label: "Invalid",
|
|
108
|
+
description: "If true, the Stack will be invalid",
|
|
109
|
+
}),
|
|
110
|
+
},
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
name: "ZStack",
|
|
114
|
+
tag: "ZStack",
|
|
115
|
+
description: "ZStack aligns items to the z-axis",
|
|
116
|
+
...SHARED_SEED_DATA,
|
|
117
|
+
props: {
|
|
118
|
+
reversed: createBoolProp({
|
|
119
|
+
label: "Reversed",
|
|
120
|
+
description: "Determines whether to reverse the direction of items",
|
|
121
|
+
}),
|
|
122
|
+
},
|
|
123
|
+
},
|
|
124
|
+
];
|