@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,178 @@
|
|
|
1
|
+
import {
|
|
2
|
+
COMPONENT_TYPES,
|
|
3
|
+
FORM_TYPES,
|
|
4
|
+
PROP_TYPES,
|
|
5
|
+
GROUPS,
|
|
6
|
+
} from "@draftbit/types";
|
|
7
|
+
|
|
8
|
+
export const SEED_DATA = [
|
|
9
|
+
{
|
|
10
|
+
name: "Row Single Line Headline Caption",
|
|
11
|
+
tag: "RowHeadlineImageCaption",
|
|
12
|
+
description:
|
|
13
|
+
"A row with left aligned headline text and right aligned caption text",
|
|
14
|
+
category: COMPONENT_TYPES.row,
|
|
15
|
+
preview_image_url: "{CLOUDINARY_URL}/Row_SingleLine_HeadlineCaption.png",
|
|
16
|
+
supports_list_render: true,
|
|
17
|
+
props: {
|
|
18
|
+
title: {
|
|
19
|
+
group: GROUPS.data,
|
|
20
|
+
label: "Title",
|
|
21
|
+
description: "Headline text to display",
|
|
22
|
+
formType: FORM_TYPES.string,
|
|
23
|
+
propType: PROP_TYPES.STRING,
|
|
24
|
+
defaultValue: "Beautiful West Coast Villa",
|
|
25
|
+
editable: true,
|
|
26
|
+
required: false,
|
|
27
|
+
},
|
|
28
|
+
caption: {
|
|
29
|
+
group: GROUPS.data,
|
|
30
|
+
label: "Caption",
|
|
31
|
+
description: "Caption text to display",
|
|
32
|
+
formType: FORM_TYPES.string,
|
|
33
|
+
propType: PROP_TYPES.STRING,
|
|
34
|
+
defaultValue: "$100",
|
|
35
|
+
editable: true,
|
|
36
|
+
required: false,
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
layout: {},
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: "Row Single Line Headline Image Caption",
|
|
43
|
+
tag: "RowHeadlineImageCaption",
|
|
44
|
+
description:
|
|
45
|
+
"A row with left aligned image and headline text and right aligned caption text",
|
|
46
|
+
category: COMPONENT_TYPES.row,
|
|
47
|
+
preview_image_url:
|
|
48
|
+
"{CLOUDINARY_URL}/Row_SingleLine_HeadlineImageCaption.png",
|
|
49
|
+
supports_list_render: true,
|
|
50
|
+
props: {
|
|
51
|
+
title: {
|
|
52
|
+
group: GROUPS.data,
|
|
53
|
+
label: "Title",
|
|
54
|
+
description: "Headline text to display",
|
|
55
|
+
formType: FORM_TYPES.string,
|
|
56
|
+
propType: PROP_TYPES.STRING,
|
|
57
|
+
defaultValue: "Beautiful West Coast Villa",
|
|
58
|
+
editable: true,
|
|
59
|
+
required: false,
|
|
60
|
+
},
|
|
61
|
+
caption: {
|
|
62
|
+
group: GROUPS.data,
|
|
63
|
+
label: "Caption",
|
|
64
|
+
description: "Caption text to display",
|
|
65
|
+
formType: FORM_TYPES.string,
|
|
66
|
+
propType: PROP_TYPES.STRING,
|
|
67
|
+
defaultValue: "$100",
|
|
68
|
+
editable: true,
|
|
69
|
+
required: false,
|
|
70
|
+
},
|
|
71
|
+
image: {
|
|
72
|
+
group: GROUPS.data,
|
|
73
|
+
label: "Image",
|
|
74
|
+
description: "Image to display",
|
|
75
|
+
formType: FORM_TYPES.image,
|
|
76
|
+
propType: PROP_TYPES.ASSET,
|
|
77
|
+
defaultValue: null,
|
|
78
|
+
editable: true,
|
|
79
|
+
required: false,
|
|
80
|
+
},
|
|
81
|
+
},
|
|
82
|
+
layout: {},
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
name: "Row Double Line Headline Caption",
|
|
86
|
+
tag: "RowHeadlineImageCaption",
|
|
87
|
+
description:
|
|
88
|
+
"A row with left aligned headline text and subtitle text and right aligned caption text",
|
|
89
|
+
category: COMPONENT_TYPES.row,
|
|
90
|
+
preview_image_url: "{CLOUDINARY_URL}/Row_DoubleLine_HeadlineCaption.png",
|
|
91
|
+
supports_list_render: true,
|
|
92
|
+
props: {
|
|
93
|
+
title: {
|
|
94
|
+
group: GROUPS.data,
|
|
95
|
+
label: "Title",
|
|
96
|
+
description: "Headline text to display",
|
|
97
|
+
formType: FORM_TYPES.string,
|
|
98
|
+
propType: PROP_TYPES.STRING,
|
|
99
|
+
defaultValue: "Beautiful West Coast Villa",
|
|
100
|
+
editable: true,
|
|
101
|
+
required: false,
|
|
102
|
+
},
|
|
103
|
+
subtitle: {
|
|
104
|
+
group: GROUPS.data,
|
|
105
|
+
label: "Subtitle",
|
|
106
|
+
description: "Subtitle text to display",
|
|
107
|
+
formType: FORM_TYPES.string,
|
|
108
|
+
propType: PROP_TYPES.STRING,
|
|
109
|
+
defaultValue: "San Diego",
|
|
110
|
+
editable: true,
|
|
111
|
+
required: false,
|
|
112
|
+
},
|
|
113
|
+
caption: {
|
|
114
|
+
group: GROUPS.data,
|
|
115
|
+
label: "Caption",
|
|
116
|
+
description: "Caption text to display",
|
|
117
|
+
formType: FORM_TYPES.string,
|
|
118
|
+
propType: PROP_TYPES.STRING,
|
|
119
|
+
defaultValue: "$100",
|
|
120
|
+
editable: true,
|
|
121
|
+
required: false,
|
|
122
|
+
},
|
|
123
|
+
},
|
|
124
|
+
layout: {},
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
name: "Row Double Line Headline Image Caption",
|
|
128
|
+
tag: "RowHeadlineImageCaption",
|
|
129
|
+
description:
|
|
130
|
+
"A row with left aligned image, headline text, and subtitle text, and right aligned caption text",
|
|
131
|
+
category: COMPONENT_TYPES.row,
|
|
132
|
+
preview_image_url: "{CLOUDINARY_URL}/Row_DoubleLine_HeadlineCaption.png",
|
|
133
|
+
supports_list_render: true,
|
|
134
|
+
props: {
|
|
135
|
+
title: {
|
|
136
|
+
group: GROUPS.data,
|
|
137
|
+
label: "Title",
|
|
138
|
+
description: "Headline text to display",
|
|
139
|
+
formType: FORM_TYPES.string,
|
|
140
|
+
propType: PROP_TYPES.STRING,
|
|
141
|
+
defaultValue: "Beautiful West Coast Villa",
|
|
142
|
+
editable: true,
|
|
143
|
+
required: false,
|
|
144
|
+
},
|
|
145
|
+
subtitle: {
|
|
146
|
+
group: GROUPS.data,
|
|
147
|
+
label: "Subtitle",
|
|
148
|
+
description: "Subtitle text to display",
|
|
149
|
+
formType: FORM_TYPES.string,
|
|
150
|
+
propType: PROP_TYPES.STRING,
|
|
151
|
+
defaultValue: "San Diego",
|
|
152
|
+
editable: true,
|
|
153
|
+
required: false,
|
|
154
|
+
},
|
|
155
|
+
caption: {
|
|
156
|
+
group: GROUPS.data,
|
|
157
|
+
label: "Caption",
|
|
158
|
+
description: "Caption text to display",
|
|
159
|
+
formType: FORM_TYPES.string,
|
|
160
|
+
propType: PROP_TYPES.STRING,
|
|
161
|
+
defaultValue: "$100",
|
|
162
|
+
editable: true,
|
|
163
|
+
required: false,
|
|
164
|
+
},
|
|
165
|
+
image: {
|
|
166
|
+
group: GROUPS.data,
|
|
167
|
+
label: "Image",
|
|
168
|
+
description: "Image to display",
|
|
169
|
+
formType: FORM_TYPES.image,
|
|
170
|
+
propType: PROP_TYPES.ASSET,
|
|
171
|
+
defaultValue: null,
|
|
172
|
+
editable: true,
|
|
173
|
+
required: false,
|
|
174
|
+
},
|
|
175
|
+
},
|
|
176
|
+
layout: {},
|
|
177
|
+
},
|
|
178
|
+
];
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, createIconProp, createTextProp, createImageProp, createStaticBoolProp, } from "@draftbit/types";
|
|
2
|
+
const SEED_DATA_PROPS = {
|
|
3
|
+
title: createTextProp({
|
|
4
|
+
label: "Title",
|
|
5
|
+
description: "Headline text to display",
|
|
6
|
+
}),
|
|
7
|
+
icon: createIconProp({
|
|
8
|
+
defaultValue: null,
|
|
9
|
+
}),
|
|
10
|
+
};
|
|
11
|
+
const IMAGE_PROP = createImageProp();
|
|
12
|
+
const MULTILINE_PROP = createStaticBoolProp({
|
|
13
|
+
defaultValue: true,
|
|
14
|
+
editable: false,
|
|
15
|
+
});
|
|
16
|
+
const SUBTITLE_PROP = createTextProp({
|
|
17
|
+
label: "Subtitle",
|
|
18
|
+
description: "Subtitle text to display",
|
|
19
|
+
defaultValue: "San Diego",
|
|
20
|
+
});
|
|
21
|
+
export const SEED_DATA = [
|
|
22
|
+
{
|
|
23
|
+
name: "Row Single Line Headline Icon",
|
|
24
|
+
tag: "RowHeadlineImageIcon",
|
|
25
|
+
description: "A row with left aligned headline text and a right aligned icon",
|
|
26
|
+
category: COMPONENT_TYPES.row,
|
|
27
|
+
layout: {},
|
|
28
|
+
props: {
|
|
29
|
+
...SEED_DATA_PROPS,
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
name: "Row Single Line Headline Icon Image",
|
|
34
|
+
tag: "RowHeadlineImageIcon",
|
|
35
|
+
description: "A row with left aligned image and headline text and a right aligned icon",
|
|
36
|
+
category: COMPONENT_TYPES.row,
|
|
37
|
+
layout: {},
|
|
38
|
+
props: {
|
|
39
|
+
...SEED_DATA_PROPS,
|
|
40
|
+
image: IMAGE_PROP,
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: "Row Double Line Headline Icon",
|
|
45
|
+
tag: "RowHeadlineImageIcon",
|
|
46
|
+
description: "A row with left aligned headline text and subtitle text and a right aligned icon",
|
|
47
|
+
category: COMPONENT_TYPES.row,
|
|
48
|
+
layout: {},
|
|
49
|
+
props: {
|
|
50
|
+
...SEED_DATA_PROPS,
|
|
51
|
+
subtitle: SUBTITLE_PROP,
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
name: "Row Double Line Headline Image Icon",
|
|
56
|
+
tag: "RowHeadlineImageIcon",
|
|
57
|
+
description: "A row with left aligned headline text and subtitle text and a right aligned icon",
|
|
58
|
+
category: COMPONENT_TYPES.row,
|
|
59
|
+
layout: {},
|
|
60
|
+
props: {
|
|
61
|
+
...SEED_DATA_PROPS,
|
|
62
|
+
image: IMAGE_PROP,
|
|
63
|
+
subtitle: SUBTITLE_PROP,
|
|
64
|
+
},
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
name: "Row Multiline Headline Icon",
|
|
68
|
+
tag: "RowHeadlineImageIcon",
|
|
69
|
+
description: "A row with left aligned headline text and multiline subtitle text and a right aligned icon",
|
|
70
|
+
category: COMPONENT_TYPES.row,
|
|
71
|
+
layout: {},
|
|
72
|
+
props: {
|
|
73
|
+
...SEED_DATA_PROPS,
|
|
74
|
+
multilineSubtitle: MULTILINE_PROP,
|
|
75
|
+
subtitle: createTextProp({
|
|
76
|
+
label: "Subtitle",
|
|
77
|
+
description: "Subtitle text to display",
|
|
78
|
+
defaultValue: "San Diego is a city on the Pacific coast of California known for its beaches, parks and warm climate",
|
|
79
|
+
}),
|
|
80
|
+
},
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
name: "Row Multiline Headline Image Icon",
|
|
84
|
+
tag: "RowHeadlineImageIcon",
|
|
85
|
+
description: "A row with left aligned image, headline text, and multiline subtitle text, and a right aligned icon",
|
|
86
|
+
category: COMPONENT_TYPES.row,
|
|
87
|
+
layout: {},
|
|
88
|
+
props: {
|
|
89
|
+
...SEED_DATA_PROPS,
|
|
90
|
+
image: IMAGE_PROP,
|
|
91
|
+
multilineSubtitle: MULTILINE_PROP,
|
|
92
|
+
subtitle: createTextProp({
|
|
93
|
+
label: "Subtitle",
|
|
94
|
+
description: "Subtitle text to display",
|
|
95
|
+
defaultValue: "San Diego is a city on the Pacific coast of California known for its beaches, parks and warm climate",
|
|
96
|
+
}),
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
];
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import {
|
|
2
|
+
COMPONENT_TYPES,
|
|
3
|
+
createIconProp,
|
|
4
|
+
createTextProp,
|
|
5
|
+
createImageProp,
|
|
6
|
+
createStaticBoolProp,
|
|
7
|
+
} from "@draftbit/types";
|
|
8
|
+
|
|
9
|
+
const SEED_DATA_PROPS = {
|
|
10
|
+
title: createTextProp({
|
|
11
|
+
label: "Title",
|
|
12
|
+
description: "Headline text to display",
|
|
13
|
+
}),
|
|
14
|
+
icon: createIconProp({
|
|
15
|
+
defaultValue: null,
|
|
16
|
+
}),
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
const IMAGE_PROP = createImageProp();
|
|
20
|
+
const MULTILINE_PROP = createStaticBoolProp({
|
|
21
|
+
defaultValue: true,
|
|
22
|
+
editable: false,
|
|
23
|
+
});
|
|
24
|
+
const SUBTITLE_PROP = createTextProp({
|
|
25
|
+
label: "Subtitle",
|
|
26
|
+
description: "Subtitle text to display",
|
|
27
|
+
defaultValue: "San Diego",
|
|
28
|
+
});
|
|
29
|
+
|
|
30
|
+
export const SEED_DATA = [
|
|
31
|
+
{
|
|
32
|
+
name: "Row Single Line Headline Icon",
|
|
33
|
+
tag: "RowHeadlineImageIcon",
|
|
34
|
+
description:
|
|
35
|
+
"A row with left aligned headline text and a right aligned icon",
|
|
36
|
+
category: COMPONENT_TYPES.row,
|
|
37
|
+
layout: {},
|
|
38
|
+
props: {
|
|
39
|
+
...SEED_DATA_PROPS,
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: "Row Single Line Headline Icon Image",
|
|
44
|
+
tag: "RowHeadlineImageIcon",
|
|
45
|
+
description:
|
|
46
|
+
"A row with left aligned image and headline text and a right aligned icon",
|
|
47
|
+
category: COMPONENT_TYPES.row,
|
|
48
|
+
layout: {},
|
|
49
|
+
props: {
|
|
50
|
+
...SEED_DATA_PROPS,
|
|
51
|
+
image: IMAGE_PROP,
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
name: "Row Double Line Headline Icon",
|
|
56
|
+
tag: "RowHeadlineImageIcon",
|
|
57
|
+
description:
|
|
58
|
+
"A row with left aligned headline text and subtitle text and a right aligned icon",
|
|
59
|
+
category: COMPONENT_TYPES.row,
|
|
60
|
+
layout: {},
|
|
61
|
+
props: {
|
|
62
|
+
...SEED_DATA_PROPS,
|
|
63
|
+
subtitle: SUBTITLE_PROP,
|
|
64
|
+
},
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
name: "Row Double Line Headline Image Icon",
|
|
68
|
+
tag: "RowHeadlineImageIcon",
|
|
69
|
+
description:
|
|
70
|
+
"A row with left aligned headline text and subtitle text and a right aligned icon",
|
|
71
|
+
category: COMPONENT_TYPES.row,
|
|
72
|
+
layout: {},
|
|
73
|
+
props: {
|
|
74
|
+
...SEED_DATA_PROPS,
|
|
75
|
+
image: IMAGE_PROP,
|
|
76
|
+
subtitle: SUBTITLE_PROP,
|
|
77
|
+
},
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
name: "Row Multiline Headline Icon",
|
|
81
|
+
tag: "RowHeadlineImageIcon",
|
|
82
|
+
description:
|
|
83
|
+
"A row with left aligned headline text and multiline subtitle text and a right aligned icon",
|
|
84
|
+
category: COMPONENT_TYPES.row,
|
|
85
|
+
layout: {},
|
|
86
|
+
props: {
|
|
87
|
+
...SEED_DATA_PROPS,
|
|
88
|
+
multilineSubtitle: MULTILINE_PROP,
|
|
89
|
+
subtitle: createTextProp({
|
|
90
|
+
label: "Subtitle",
|
|
91
|
+
description: "Subtitle text to display",
|
|
92
|
+
defaultValue:
|
|
93
|
+
"San Diego is a city on the Pacific coast of California known for its beaches, parks and warm climate",
|
|
94
|
+
}),
|
|
95
|
+
},
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: "Row Multiline Headline Image Icon",
|
|
99
|
+
tag: "RowHeadlineImageIcon",
|
|
100
|
+
description:
|
|
101
|
+
"A row with left aligned image, headline text, and multiline subtitle text, and a right aligned icon",
|
|
102
|
+
category: COMPONENT_TYPES.row,
|
|
103
|
+
layout: {},
|
|
104
|
+
props: {
|
|
105
|
+
...SEED_DATA_PROPS,
|
|
106
|
+
image: IMAGE_PROP,
|
|
107
|
+
multilineSubtitle: MULTILINE_PROP,
|
|
108
|
+
subtitle: createTextProp({
|
|
109
|
+
label: "Subtitle",
|
|
110
|
+
description: "Subtitle text to display",
|
|
111
|
+
defaultValue:
|
|
112
|
+
"San Diego is a city on the Pacific coast of California known for its beaches, parks and warm climate",
|
|
113
|
+
}),
|
|
114
|
+
},
|
|
115
|
+
},
|
|
116
|
+
];
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, createSVGProp, StylesPanelSections, } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = {
|
|
3
|
+
name: "SVG",
|
|
4
|
+
tag: "SVG",
|
|
5
|
+
description: "An SVG component",
|
|
6
|
+
category: COMPONENT_TYPES.media,
|
|
7
|
+
layout: {
|
|
8
|
+
width: 100,
|
|
9
|
+
height: 100,
|
|
10
|
+
},
|
|
11
|
+
stylesPanelSections: [
|
|
12
|
+
StylesPanelSections.Size,
|
|
13
|
+
StylesPanelSections.Margins,
|
|
14
|
+
StylesPanelSections.Position,
|
|
15
|
+
StylesPanelSections.Effects,
|
|
16
|
+
],
|
|
17
|
+
props: {
|
|
18
|
+
source: createSVGProp(),
|
|
19
|
+
},
|
|
20
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import {
|
|
2
|
+
COMPONENT_TYPES,
|
|
3
|
+
createSVGProp,
|
|
4
|
+
StylesPanelSections,
|
|
5
|
+
} from "@draftbit/types";
|
|
6
|
+
|
|
7
|
+
export const SEED_DATA = {
|
|
8
|
+
name: "SVG",
|
|
9
|
+
tag: "SVG",
|
|
10
|
+
description: "An SVG component",
|
|
11
|
+
category: COMPONENT_TYPES.media,
|
|
12
|
+
layout: {
|
|
13
|
+
width: 100,
|
|
14
|
+
height: 100,
|
|
15
|
+
},
|
|
16
|
+
stylesPanelSections: [
|
|
17
|
+
StylesPanelSections.Size,
|
|
18
|
+
StylesPanelSections.Margins,
|
|
19
|
+
StylesPanelSections.Position,
|
|
20
|
+
StylesPanelSections.Effects,
|
|
21
|
+
],
|
|
22
|
+
props: {
|
|
23
|
+
source: createSVGProp(),
|
|
24
|
+
},
|
|
25
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { GROUPS, COMPONENT_TYPES, FORM_TYPES, PROP_TYPES, } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = {
|
|
3
|
+
name: "SafeAreaView",
|
|
4
|
+
tag: "SafeAreaView",
|
|
5
|
+
description: "A basic View that handles safe area",
|
|
6
|
+
category: COMPONENT_TYPES.deprecated,
|
|
7
|
+
props: {
|
|
8
|
+
edges: {
|
|
9
|
+
group: GROUPS.basic,
|
|
10
|
+
name: "edges",
|
|
11
|
+
label: "edges",
|
|
12
|
+
description: "Provides edges to be used by safe area view",
|
|
13
|
+
editable: true,
|
|
14
|
+
required: false,
|
|
15
|
+
formType: FORM_TYPES.flatArray,
|
|
16
|
+
propType: PROP_TYPES.STRING,
|
|
17
|
+
options: ["right", "bottom", "left", "top"],
|
|
18
|
+
defaultValue: ["right", "bottom", "left", "top"],
|
|
19
|
+
},
|
|
20
|
+
mode: {
|
|
21
|
+
group: GROUPS.basic,
|
|
22
|
+
name: "mode",
|
|
23
|
+
label: "mode",
|
|
24
|
+
description: "Mode used by safe area view",
|
|
25
|
+
editable: true,
|
|
26
|
+
required: false,
|
|
27
|
+
options: ["padding", "margin"],
|
|
28
|
+
formType: FORM_TYPES.flatArray,
|
|
29
|
+
propType: PROP_TYPES.STRING,
|
|
30
|
+
defaultValue: "padding",
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import {
|
|
2
|
+
GROUPS,
|
|
3
|
+
COMPONENT_TYPES,
|
|
4
|
+
FORM_TYPES,
|
|
5
|
+
PROP_TYPES,
|
|
6
|
+
} from "@draftbit/types";
|
|
7
|
+
|
|
8
|
+
export const SEED_DATA = {
|
|
9
|
+
name: "SafeAreaView",
|
|
10
|
+
tag: "SafeAreaView",
|
|
11
|
+
description: "A basic View that handles safe area",
|
|
12
|
+
category: COMPONENT_TYPES.deprecated,
|
|
13
|
+
props: {
|
|
14
|
+
edges: {
|
|
15
|
+
group: GROUPS.basic,
|
|
16
|
+
name: "edges",
|
|
17
|
+
label: "edges",
|
|
18
|
+
description: "Provides edges to be used by safe area view",
|
|
19
|
+
editable: true,
|
|
20
|
+
required: false,
|
|
21
|
+
formType: FORM_TYPES.flatArray,
|
|
22
|
+
propType: PROP_TYPES.STRING,
|
|
23
|
+
options: ["right", "bottom", "left", "top"],
|
|
24
|
+
defaultValue: ["right", "bottom", "left", "top"],
|
|
25
|
+
},
|
|
26
|
+
mode: {
|
|
27
|
+
group: GROUPS.basic,
|
|
28
|
+
name: "mode",
|
|
29
|
+
label: "mode",
|
|
30
|
+
description: "Mode used by safe area view",
|
|
31
|
+
editable: true,
|
|
32
|
+
required: false,
|
|
33
|
+
options: ["padding", "margin"],
|
|
34
|
+
formType: FORM_TYPES.flatArray,
|
|
35
|
+
propType: PROP_TYPES.STRING,
|
|
36
|
+
defaultValue: "padding",
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, createStaticBoolProp, CONTAINER_COMPONENT_STYLES_SECTIONS, Triggers, createActionProp, createColorProp, } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = {
|
|
3
|
+
name: "Scroll View",
|
|
4
|
+
tag: "ScrollView",
|
|
5
|
+
description: "A basic ScrollView component",
|
|
6
|
+
category: COMPONENT_TYPES.view,
|
|
7
|
+
stylesPanelSections: CONTAINER_COMPONENT_STYLES_SECTIONS,
|
|
8
|
+
layout: {},
|
|
9
|
+
triggers: [Triggers.OnRefresh],
|
|
10
|
+
props: {
|
|
11
|
+
onRefresh: createActionProp(),
|
|
12
|
+
horizontal: createStaticBoolProp({
|
|
13
|
+
label: "Horizontal",
|
|
14
|
+
description: "Render your list horizontally",
|
|
15
|
+
defaultValue: false,
|
|
16
|
+
}),
|
|
17
|
+
showsHorizontalScrollIndicator: createStaticBoolProp({
|
|
18
|
+
label: "Show Horizontal Scroll Indicator",
|
|
19
|
+
description: "When true, shows a horizontal scroll indicator. The default value is true.",
|
|
20
|
+
defaultValue: true,
|
|
21
|
+
}),
|
|
22
|
+
showsVerticalScrollIndicator: createStaticBoolProp({
|
|
23
|
+
label: "Show Vertical Scroll Indicator",
|
|
24
|
+
description: "When true, shows a vertical scroll indicator. The default value is true.",
|
|
25
|
+
defaultValue: true,
|
|
26
|
+
}),
|
|
27
|
+
bounces: createStaticBoolProp({
|
|
28
|
+
label: "Bounce",
|
|
29
|
+
description: "When true, the scroll view bounces when it reaches the end of the content if the content is larger then the scroll view along the axis of the scroll direction.",
|
|
30
|
+
defaultValue: true,
|
|
31
|
+
}),
|
|
32
|
+
refreshColor: createColorProp({
|
|
33
|
+
label: "Refreshing Color",
|
|
34
|
+
description: "Color of the refresh indicator",
|
|
35
|
+
}),
|
|
36
|
+
},
|
|
37
|
+
};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import {
|
|
2
|
+
COMPONENT_TYPES,
|
|
3
|
+
createStaticBoolProp,
|
|
4
|
+
CONTAINER_COMPONENT_STYLES_SECTIONS,
|
|
5
|
+
Triggers,
|
|
6
|
+
createActionProp,
|
|
7
|
+
createColorProp,
|
|
8
|
+
} from "@draftbit/types";
|
|
9
|
+
|
|
10
|
+
export const SEED_DATA = {
|
|
11
|
+
name: "Scroll View",
|
|
12
|
+
tag: "ScrollView",
|
|
13
|
+
description: "A basic ScrollView component",
|
|
14
|
+
category: COMPONENT_TYPES.view,
|
|
15
|
+
stylesPanelSections: CONTAINER_COMPONENT_STYLES_SECTIONS,
|
|
16
|
+
layout: {},
|
|
17
|
+
triggers: [Triggers.OnRefresh],
|
|
18
|
+
props: {
|
|
19
|
+
onRefresh: createActionProp(),
|
|
20
|
+
horizontal: createStaticBoolProp({
|
|
21
|
+
label: "Horizontal",
|
|
22
|
+
description: "Render your list horizontally",
|
|
23
|
+
defaultValue: false,
|
|
24
|
+
}),
|
|
25
|
+
showsHorizontalScrollIndicator: createStaticBoolProp({
|
|
26
|
+
label: "Show Horizontal Scroll Indicator",
|
|
27
|
+
description:
|
|
28
|
+
"When true, shows a horizontal scroll indicator. The default value is true.",
|
|
29
|
+
defaultValue: true,
|
|
30
|
+
}),
|
|
31
|
+
showsVerticalScrollIndicator: createStaticBoolProp({
|
|
32
|
+
label: "Show Vertical Scroll Indicator",
|
|
33
|
+
description:
|
|
34
|
+
"When true, shows a vertical scroll indicator. The default value is true.",
|
|
35
|
+
defaultValue: true,
|
|
36
|
+
}),
|
|
37
|
+
bounces: createStaticBoolProp({
|
|
38
|
+
label: "Bounce",
|
|
39
|
+
description:
|
|
40
|
+
"When true, the scroll view bounces when it reaches the end of the content if the content is larger then the scroll view along the axis of the scroll direction.",
|
|
41
|
+
defaultValue: true,
|
|
42
|
+
}),
|
|
43
|
+
refreshColor: createColorProp({
|
|
44
|
+
label: "Refreshing Color",
|
|
45
|
+
description: "Color of the refresh indicator",
|
|
46
|
+
}),
|
|
47
|
+
},
|
|
48
|
+
};
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, CONTAINER_COMPONENT_STYLES_SECTIONS, createColorProp, createStaticNumberProp, createStaticBoolProp, createDisabledProp, GROUPS, } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = {
|
|
3
|
+
name: "Shadow",
|
|
4
|
+
tag: "Shadow",
|
|
5
|
+
description: "A cross-platform, universal shadow.",
|
|
6
|
+
category: COMPONENT_TYPES.view,
|
|
7
|
+
stylesPanelSections: CONTAINER_COMPONENT_STYLES_SECTIONS,
|
|
8
|
+
props: {
|
|
9
|
+
disabled: createDisabledProp({
|
|
10
|
+
description: "Disables the shadow.",
|
|
11
|
+
}),
|
|
12
|
+
startColor: createColorProp({
|
|
13
|
+
label: "Start Color",
|
|
14
|
+
description: "The initial gradient color of the shadow.",
|
|
15
|
+
defaultValue: null,
|
|
16
|
+
}),
|
|
17
|
+
endColor: createColorProp({
|
|
18
|
+
label: "End Color",
|
|
19
|
+
description: "The final gradient color of the shadow.",
|
|
20
|
+
defaultValue: null,
|
|
21
|
+
}),
|
|
22
|
+
distance: createStaticNumberProp({
|
|
23
|
+
label: "Distance",
|
|
24
|
+
description: "The distance of the shadow.",
|
|
25
|
+
}),
|
|
26
|
+
paintInside: createStaticBoolProp({
|
|
27
|
+
label: "Paint Inside",
|
|
28
|
+
description: "Apply the shadow below/inside the content.",
|
|
29
|
+
defaultValue: false,
|
|
30
|
+
}),
|
|
31
|
+
stretch: createStaticBoolProp({
|
|
32
|
+
label: "Stretch",
|
|
33
|
+
description: "Force children to occupy all available horizontal space.",
|
|
34
|
+
defaultValue: null,
|
|
35
|
+
}),
|
|
36
|
+
offsetX: createStaticNumberProp({
|
|
37
|
+
label: "Offset X",
|
|
38
|
+
description: "Moves the shadow in the x direction",
|
|
39
|
+
defeaultValue: 0,
|
|
40
|
+
}),
|
|
41
|
+
offsetY: createStaticNumberProp({
|
|
42
|
+
label: "Offset Y",
|
|
43
|
+
description: "Moves the shadow in the y direction",
|
|
44
|
+
defeaultValue: 0,
|
|
45
|
+
}),
|
|
46
|
+
showShadowSideStart: createStaticBoolProp({
|
|
47
|
+
label: "Show Shadow Start",
|
|
48
|
+
description: "Whether to show shadow on the start side or not",
|
|
49
|
+
defaultValue: true,
|
|
50
|
+
group: GROUPS.advanced,
|
|
51
|
+
}),
|
|
52
|
+
showShadowSideEnd: createStaticBoolProp({
|
|
53
|
+
label: "Show Shadow End",
|
|
54
|
+
description: "Whether to show shadow on the end side or not",
|
|
55
|
+
defaultValue: true,
|
|
56
|
+
group: GROUPS.advanced,
|
|
57
|
+
}),
|
|
58
|
+
showShadowSideTop: createStaticBoolProp({
|
|
59
|
+
label: "Show Shadow Top",
|
|
60
|
+
description: "Whether to show shadow on the top side or not",
|
|
61
|
+
defaultValue: true,
|
|
62
|
+
group: GROUPS.advanced,
|
|
63
|
+
}),
|
|
64
|
+
showShadowSideBottom: createStaticBoolProp({
|
|
65
|
+
label: "Show Shadow Bottom",
|
|
66
|
+
description: "Whether to show shadow on the bottom side or not",
|
|
67
|
+
defaultValue: true,
|
|
68
|
+
group: GROUPS.advanced,
|
|
69
|
+
}),
|
|
70
|
+
showShadowCornerTopStart: createStaticBoolProp({
|
|
71
|
+
label: "Show Shadow Top Start Corner",
|
|
72
|
+
description: "Whether to show shadow on the top start corner or not",
|
|
73
|
+
defaultValue: true,
|
|
74
|
+
group: GROUPS.advanced,
|
|
75
|
+
}),
|
|
76
|
+
showShadowCornerTopEnd: createStaticBoolProp({
|
|
77
|
+
label: "Show Shadow Top End Corner",
|
|
78
|
+
description: "Whether to show shadow on the top end corner or not",
|
|
79
|
+
defaultValue: true,
|
|
80
|
+
group: GROUPS.advanced,
|
|
81
|
+
}),
|
|
82
|
+
showShadowCornerBottomStart: createStaticBoolProp({
|
|
83
|
+
label: "Show Shadow Bottom Start Corner",
|
|
84
|
+
description: "Whether to show shadow on the bottom start corner or not",
|
|
85
|
+
defaultValue: true,
|
|
86
|
+
group: GROUPS.advanced,
|
|
87
|
+
}),
|
|
88
|
+
showShadowCornerBottomEnd: createStaticBoolProp({
|
|
89
|
+
label: "Show Shadow Bottom End Corner",
|
|
90
|
+
description: "Whether to show shadow on the bottom end corner or not",
|
|
91
|
+
defaultValue: true,
|
|
92
|
+
group: GROUPS.advanced,
|
|
93
|
+
}),
|
|
94
|
+
},
|
|
95
|
+
};
|