@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,57 @@
|
|
|
1
|
+
import {
|
|
2
|
+
COMPONENT_TYPES,
|
|
3
|
+
Triggers,
|
|
4
|
+
createActionProp,
|
|
5
|
+
createStaticNumberProp,
|
|
6
|
+
createStaticBoolProp,
|
|
7
|
+
BLOCK_STYLES_SECTIONS,
|
|
8
|
+
} from "@draftbit/types";
|
|
9
|
+
|
|
10
|
+
export const SEED_DATA = {
|
|
11
|
+
name: "Deck Swiper",
|
|
12
|
+
tag: "DeckSwiper",
|
|
13
|
+
description: "Deck swiper container",
|
|
14
|
+
category: COMPONENT_TYPES.swiper,
|
|
15
|
+
stylesPanelSections: BLOCK_STYLES_SECTIONS,
|
|
16
|
+
layout: {
|
|
17
|
+
width: "100%",
|
|
18
|
+
},
|
|
19
|
+
triggers: [Triggers.OnIndexChanged, Triggers.OnEndReached],
|
|
20
|
+
props: {
|
|
21
|
+
onIndexChanged: createActionProp({
|
|
22
|
+
label: "On index changed",
|
|
23
|
+
description: "Action to execute when swipe to new index",
|
|
24
|
+
}),
|
|
25
|
+
onEndReached: createActionProp({
|
|
26
|
+
label: "On end reached",
|
|
27
|
+
description: "Action to execute when end of swiping reached",
|
|
28
|
+
}),
|
|
29
|
+
startCardIndex: createStaticNumberProp({
|
|
30
|
+
label: "Start card index",
|
|
31
|
+
description: "Index of card to start swiping from",
|
|
32
|
+
defaultValue: 0,
|
|
33
|
+
}),
|
|
34
|
+
infiniteSwiping: createStaticBoolProp({
|
|
35
|
+
label: "Infinite swiping",
|
|
36
|
+
description: "Whether to infinitley loop through cards or not",
|
|
37
|
+
}),
|
|
38
|
+
verticalEnabled: createStaticBoolProp({
|
|
39
|
+
label: "Vertical swipe enabled",
|
|
40
|
+
description: "Whether cards should be swipeable vertically or not",
|
|
41
|
+
defaultValue: true,
|
|
42
|
+
}),
|
|
43
|
+
horizontalEnabled: createStaticBoolProp({
|
|
44
|
+
label: "Horizontal swipe enabled",
|
|
45
|
+
description: "Whether cards should be swipeable horizontally or not",
|
|
46
|
+
defaultValue: true,
|
|
47
|
+
}),
|
|
48
|
+
visibleCardCount: createStaticNumberProp({
|
|
49
|
+
label: "Visible card count",
|
|
50
|
+
description:
|
|
51
|
+
"Number of cards visible behind (and including) the current card",
|
|
52
|
+
defaultValue: 1,
|
|
53
|
+
min: 1,
|
|
54
|
+
step: 1,
|
|
55
|
+
}),
|
|
56
|
+
},
|
|
57
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, CONTAINER_COMPONENT_STYLES_SECTIONS, } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = {
|
|
3
|
+
name: "Deck Swiper Card",
|
|
4
|
+
tag: "DeckSwiperCard",
|
|
5
|
+
description: "Single Deck Swiper Card item to be used in DeckSwiper",
|
|
6
|
+
category: COMPONENT_TYPES.swiper,
|
|
7
|
+
stylesPanelSections: CONTAINER_COMPONENT_STYLES_SECTIONS,
|
|
8
|
+
layout: {
|
|
9
|
+
flex: 1,
|
|
10
|
+
alignItems: "center",
|
|
11
|
+
justifyContent: "center",
|
|
12
|
+
padding: 20,
|
|
13
|
+
borderWidth: 2,
|
|
14
|
+
},
|
|
15
|
+
props: {},
|
|
16
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import {
|
|
2
|
+
COMPONENT_TYPES,
|
|
3
|
+
CONTAINER_COMPONENT_STYLES_SECTIONS,
|
|
4
|
+
} from "@draftbit/types";
|
|
5
|
+
|
|
6
|
+
export const SEED_DATA = {
|
|
7
|
+
name: "Deck Swiper Card",
|
|
8
|
+
tag: "DeckSwiperCard",
|
|
9
|
+
description: "Single Deck Swiper Card item to be used in DeckSwiper",
|
|
10
|
+
category: COMPONENT_TYPES.swiper,
|
|
11
|
+
stylesPanelSections: CONTAINER_COMPONENT_STYLES_SECTIONS,
|
|
12
|
+
layout: {
|
|
13
|
+
flex: 1,
|
|
14
|
+
alignItems: "center",
|
|
15
|
+
justifyContent: "center",
|
|
16
|
+
padding: 20,
|
|
17
|
+
borderWidth: 2,
|
|
18
|
+
},
|
|
19
|
+
props: {},
|
|
20
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { GROUPS, FORM_TYPES, PROP_TYPES, COMPONENT_TYPES, BLOCK_STYLES_SECTIONS, } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = [
|
|
3
|
+
{
|
|
4
|
+
name: "Divider",
|
|
5
|
+
tag: "Divider",
|
|
6
|
+
category: COMPONENT_TYPES.layout,
|
|
7
|
+
stylesPanelSections: BLOCK_STYLES_SECTIONS,
|
|
8
|
+
description: "A horizontal line used to divide content",
|
|
9
|
+
preview_image_url: "{CLOUDINARY_URL}/Divider.png",
|
|
10
|
+
supports_list_render: false,
|
|
11
|
+
props: {
|
|
12
|
+
color: {
|
|
13
|
+
group: GROUPS.basic,
|
|
14
|
+
label: "Color",
|
|
15
|
+
description: "The color of the divider",
|
|
16
|
+
editable: true,
|
|
17
|
+
required: false,
|
|
18
|
+
defaultValue: "divider",
|
|
19
|
+
formType: FORM_TYPES.color,
|
|
20
|
+
propType: PROP_TYPES.THEME,
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
layout: {
|
|
24
|
+
height: 1,
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
];
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import {
|
|
2
|
+
GROUPS,
|
|
3
|
+
FORM_TYPES,
|
|
4
|
+
PROP_TYPES,
|
|
5
|
+
COMPONENT_TYPES,
|
|
6
|
+
BLOCK_STYLES_SECTIONS,
|
|
7
|
+
} from "@draftbit/types";
|
|
8
|
+
|
|
9
|
+
export const SEED_DATA = [
|
|
10
|
+
{
|
|
11
|
+
name: "Divider",
|
|
12
|
+
tag: "Divider",
|
|
13
|
+
category: COMPONENT_TYPES.layout,
|
|
14
|
+
stylesPanelSections: BLOCK_STYLES_SECTIONS,
|
|
15
|
+
description: "A horizontal line used to divide content",
|
|
16
|
+
preview_image_url: "{CLOUDINARY_URL}/Divider.png",
|
|
17
|
+
supports_list_render: false,
|
|
18
|
+
props: {
|
|
19
|
+
color: {
|
|
20
|
+
group: GROUPS.basic,
|
|
21
|
+
label: "Color",
|
|
22
|
+
description: "The color of the divider",
|
|
23
|
+
editable: true,
|
|
24
|
+
required: false,
|
|
25
|
+
defaultValue: "divider",
|
|
26
|
+
formType: FORM_TYPES.color,
|
|
27
|
+
propType: PROP_TYPES.THEME,
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
layout: {
|
|
31
|
+
height: 1,
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
];
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, createIconProp, createColorProp, GROUPS, createBoolProp, createIconSizeProp, createActionProp, Triggers, BLOCK_STYLES_SECTIONS, } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = {
|
|
3
|
+
name: "FAB",
|
|
4
|
+
tag: "FAB",
|
|
5
|
+
category: COMPONENT_TYPES.deprecated,
|
|
6
|
+
stylesPanelSections: BLOCK_STYLES_SECTIONS,
|
|
7
|
+
description: "A mini round icon FAB",
|
|
8
|
+
layout: {},
|
|
9
|
+
triggers: [Triggers.OnPress],
|
|
10
|
+
props: {
|
|
11
|
+
onPress: createActionProp(),
|
|
12
|
+
disabled: createBoolProp({
|
|
13
|
+
label: "Disabled",
|
|
14
|
+
group: GROUPS.basic,
|
|
15
|
+
}),
|
|
16
|
+
loading: createBoolProp({
|
|
17
|
+
label: "Loading",
|
|
18
|
+
group: GROUPS.basic,
|
|
19
|
+
}),
|
|
20
|
+
iconName: createIconProp({
|
|
21
|
+
label: "Icon",
|
|
22
|
+
defaultValue: null,
|
|
23
|
+
group: GROUPS.basic,
|
|
24
|
+
}),
|
|
25
|
+
iconColor: createColorProp({
|
|
26
|
+
label: "Icon color",
|
|
27
|
+
defaultValue: null,
|
|
28
|
+
group: GROUPS.basic,
|
|
29
|
+
}),
|
|
30
|
+
bgColor: createColorProp({
|
|
31
|
+
label: "Background color",
|
|
32
|
+
defaultValue: null,
|
|
33
|
+
group: GROUPS.basic,
|
|
34
|
+
}),
|
|
35
|
+
size: createIconSizeProp(),
|
|
36
|
+
},
|
|
37
|
+
};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import {
|
|
2
|
+
COMPONENT_TYPES,
|
|
3
|
+
createIconProp,
|
|
4
|
+
createColorProp,
|
|
5
|
+
GROUPS,
|
|
6
|
+
createBoolProp,
|
|
7
|
+
createIconSizeProp,
|
|
8
|
+
createActionProp,
|
|
9
|
+
Triggers,
|
|
10
|
+
BLOCK_STYLES_SECTIONS,
|
|
11
|
+
} from "@draftbit/types";
|
|
12
|
+
|
|
13
|
+
export const SEED_DATA = {
|
|
14
|
+
name: "FAB",
|
|
15
|
+
tag: "FAB",
|
|
16
|
+
category: COMPONENT_TYPES.deprecated,
|
|
17
|
+
stylesPanelSections: BLOCK_STYLES_SECTIONS,
|
|
18
|
+
description: "A mini round icon FAB",
|
|
19
|
+
layout: {},
|
|
20
|
+
triggers: [Triggers.OnPress],
|
|
21
|
+
props: {
|
|
22
|
+
onPress: createActionProp(),
|
|
23
|
+
disabled: createBoolProp({
|
|
24
|
+
label: "Disabled",
|
|
25
|
+
group: GROUPS.basic,
|
|
26
|
+
}),
|
|
27
|
+
loading: createBoolProp({
|
|
28
|
+
label: "Loading",
|
|
29
|
+
group: GROUPS.basic,
|
|
30
|
+
}),
|
|
31
|
+
iconName: createIconProp({
|
|
32
|
+
label: "Icon",
|
|
33
|
+
defaultValue: null,
|
|
34
|
+
group: GROUPS.basic,
|
|
35
|
+
}),
|
|
36
|
+
iconColor: createColorProp({
|
|
37
|
+
label: "Icon color",
|
|
38
|
+
defaultValue: null,
|
|
39
|
+
group: GROUPS.basic,
|
|
40
|
+
}),
|
|
41
|
+
bgColor: createColorProp({
|
|
42
|
+
label: "Background color",
|
|
43
|
+
defaultValue: null,
|
|
44
|
+
group: GROUPS.basic,
|
|
45
|
+
}),
|
|
46
|
+
size: createIconSizeProp(),
|
|
47
|
+
},
|
|
48
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, StylesPanelSections } from "@draftbit/types";
|
|
2
|
+
/* TODO remove, still used inside the builder in a weird way */
|
|
3
|
+
export const SEED_DATA = {
|
|
4
|
+
name: "Fetch",
|
|
5
|
+
tag: "Fetch",
|
|
6
|
+
description: "Rest API Declarative Fetch component. Uses react-request internally",
|
|
7
|
+
category: COMPONENT_TYPES.data,
|
|
8
|
+
stylesPanelSections: [StylesPanelSections.NoStyles],
|
|
9
|
+
layout: {
|
|
10
|
+
minHeight: 40,
|
|
11
|
+
},
|
|
12
|
+
props: {},
|
|
13
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, StylesPanelSections } from "@draftbit/types";
|
|
2
|
+
/* TODO remove, still used inside the builder in a weird way */
|
|
3
|
+
export const SEED_DATA = {
|
|
4
|
+
name: "Fetch",
|
|
5
|
+
tag: "Fetch",
|
|
6
|
+
description:
|
|
7
|
+
"Rest API Declarative Fetch component. Uses react-request internally",
|
|
8
|
+
category: COMPONENT_TYPES.data,
|
|
9
|
+
stylesPanelSections: [StylesPanelSections.NoStyles],
|
|
10
|
+
layout: {
|
|
11
|
+
minHeight: 40,
|
|
12
|
+
},
|
|
13
|
+
props: {},
|
|
14
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { GROUPS, COMPONENT_TYPES, FORM_TYPES, PROP_TYPES, FIELD_NAME, Triggers, BLOCK_STYLES_SECTIONS, } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = [
|
|
3
|
+
{
|
|
4
|
+
name: "Search Bar",
|
|
5
|
+
tag: "FieldSearchBarFull",
|
|
6
|
+
description: "A search bar with accompanying search icon and clear button.",
|
|
7
|
+
category: COMPONENT_TYPES.deprecated,
|
|
8
|
+
stylesPanelSections: BLOCK_STYLES_SECTIONS,
|
|
9
|
+
preview_image_url: "{CLOUDINARY_URL}/Field_SearchBar_Full.png",
|
|
10
|
+
supports_list_render: false,
|
|
11
|
+
triggers: [Triggers.OnChange],
|
|
12
|
+
props: {
|
|
13
|
+
icon: {
|
|
14
|
+
group: GROUPS.basic,
|
|
15
|
+
label: "Icon",
|
|
16
|
+
description: "Left icon to display",
|
|
17
|
+
formType: FORM_TYPES.icon,
|
|
18
|
+
propType: PROP_TYPES.ASSET,
|
|
19
|
+
defaultValue: null,
|
|
20
|
+
editable: true,
|
|
21
|
+
required: false,
|
|
22
|
+
},
|
|
23
|
+
placeholder: {
|
|
24
|
+
group: GROUPS.basic,
|
|
25
|
+
label: "Placeholder",
|
|
26
|
+
description: "Input placeholder text",
|
|
27
|
+
formType: FORM_TYPES.string,
|
|
28
|
+
propType: PROP_TYPES.STRING,
|
|
29
|
+
defaultValue: "Search for...",
|
|
30
|
+
editable: true,
|
|
31
|
+
required: false,
|
|
32
|
+
},
|
|
33
|
+
onSubmit: {
|
|
34
|
+
group: GROUPS.basic,
|
|
35
|
+
label: "Submit action",
|
|
36
|
+
description: "Action to execute on submission",
|
|
37
|
+
editable: true,
|
|
38
|
+
required: false,
|
|
39
|
+
formType: FORM_TYPES.action,
|
|
40
|
+
propType: PROP_TYPES.STRING,
|
|
41
|
+
defaultValue: null,
|
|
42
|
+
},
|
|
43
|
+
fieldName: {
|
|
44
|
+
...FIELD_NAME,
|
|
45
|
+
defaultValue: "searchBarValue",
|
|
46
|
+
},
|
|
47
|
+
},
|
|
48
|
+
layout: {},
|
|
49
|
+
},
|
|
50
|
+
];
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import {
|
|
2
|
+
GROUPS,
|
|
3
|
+
COMPONENT_TYPES,
|
|
4
|
+
FORM_TYPES,
|
|
5
|
+
PROP_TYPES,
|
|
6
|
+
FIELD_NAME,
|
|
7
|
+
Triggers,
|
|
8
|
+
BLOCK_STYLES_SECTIONS,
|
|
9
|
+
} from "@draftbit/types";
|
|
10
|
+
|
|
11
|
+
export const SEED_DATA = [
|
|
12
|
+
{
|
|
13
|
+
name: "Search Bar",
|
|
14
|
+
tag: "FieldSearchBarFull",
|
|
15
|
+
description: "A search bar with accompanying search icon and clear button.",
|
|
16
|
+
category: COMPONENT_TYPES.deprecated,
|
|
17
|
+
stylesPanelSections: BLOCK_STYLES_SECTIONS,
|
|
18
|
+
preview_image_url: "{CLOUDINARY_URL}/Field_SearchBar_Full.png",
|
|
19
|
+
supports_list_render: false,
|
|
20
|
+
triggers: [Triggers.OnChange], // TODO Triggers.OnSubmit for multiple triggers
|
|
21
|
+
props: {
|
|
22
|
+
icon: {
|
|
23
|
+
group: GROUPS.basic,
|
|
24
|
+
label: "Icon",
|
|
25
|
+
description: "Left icon to display",
|
|
26
|
+
formType: FORM_TYPES.icon,
|
|
27
|
+
propType: PROP_TYPES.ASSET,
|
|
28
|
+
defaultValue: null,
|
|
29
|
+
editable: true,
|
|
30
|
+
required: false,
|
|
31
|
+
},
|
|
32
|
+
placeholder: {
|
|
33
|
+
group: GROUPS.basic,
|
|
34
|
+
label: "Placeholder",
|
|
35
|
+
description: "Input placeholder text",
|
|
36
|
+
formType: FORM_TYPES.string,
|
|
37
|
+
propType: PROP_TYPES.STRING,
|
|
38
|
+
defaultValue: "Search for...",
|
|
39
|
+
editable: true,
|
|
40
|
+
required: false,
|
|
41
|
+
},
|
|
42
|
+
onSubmit: {
|
|
43
|
+
group: GROUPS.basic,
|
|
44
|
+
label: "Submit action",
|
|
45
|
+
description: "Action to execute on submission",
|
|
46
|
+
editable: true,
|
|
47
|
+
required: false,
|
|
48
|
+
formType: FORM_TYPES.action,
|
|
49
|
+
propType: PROP_TYPES.STRING,
|
|
50
|
+
defaultValue: null,
|
|
51
|
+
},
|
|
52
|
+
fieldName: {
|
|
53
|
+
...FIELD_NAME,
|
|
54
|
+
defaultValue: "searchBarValue",
|
|
55
|
+
},
|
|
56
|
+
},
|
|
57
|
+
layout: {},
|
|
58
|
+
},
|
|
59
|
+
];
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, createNumColumnsType, createStaticBoolProp, createNumberProp, GROUPS, Triggers, createActionProp, createStaticNumberProp, createColorProp, StylesPanelSections, } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = [
|
|
3
|
+
{
|
|
4
|
+
name: "Masonry List",
|
|
5
|
+
tag: "MasonryFlashList",
|
|
6
|
+
description: "Masonry Flashlist by Shopify",
|
|
7
|
+
packageName: "@shopify/flash-list",
|
|
8
|
+
category: COMPONENT_TYPES.data,
|
|
9
|
+
stylesPanelSections: [
|
|
10
|
+
StylesPanelSections.Background,
|
|
11
|
+
StylesPanelSections.MarginsAndPaddings,
|
|
12
|
+
],
|
|
13
|
+
triggers: [Triggers.OnRefresh, Triggers.OnEndReached],
|
|
14
|
+
props: {
|
|
15
|
+
onRefresh: createActionProp(),
|
|
16
|
+
onEndReached: createActionProp(),
|
|
17
|
+
numColumns: createNumColumnsType({
|
|
18
|
+
editable: true,
|
|
19
|
+
}),
|
|
20
|
+
estimatedItemSize: createNumberProp({
|
|
21
|
+
group: GROUPS.basic,
|
|
22
|
+
label: "Est. Item Size",
|
|
23
|
+
description: "Approximate size of the items before rendering.",
|
|
24
|
+
defaultValue: 50,
|
|
25
|
+
step: 1,
|
|
26
|
+
precision: 0,
|
|
27
|
+
}),
|
|
28
|
+
initialNumToRender: createStaticNumberProp({
|
|
29
|
+
label: "Initial Num To Render",
|
|
30
|
+
description: "How many items to render in the initial batch",
|
|
31
|
+
defaultValue: null,
|
|
32
|
+
}),
|
|
33
|
+
onEndReachedThreshold: createStaticNumberProp({
|
|
34
|
+
label: "End Reached Threshold",
|
|
35
|
+
description: "How far from the end (in units of visible length of the list) the bottom edge of the list must be from the end of the content to trigger the onEndReached callback. Thus a value of 0.5 will trigger onEndReached when the end of the content is within half the visible length of the list.",
|
|
36
|
+
defaultValue: 0.5,
|
|
37
|
+
}),
|
|
38
|
+
refreshColor: createColorProp({
|
|
39
|
+
label: "Refreshing Color",
|
|
40
|
+
description: "Color of the refresh indicator",
|
|
41
|
+
}),
|
|
42
|
+
showsHorizontalScrollIndicator: createStaticBoolProp({
|
|
43
|
+
label: "Show Horizontal Scroll Indicator",
|
|
44
|
+
description: "When true, shows a horizontal scroll indicator. The default value is true.",
|
|
45
|
+
defaultValue: true,
|
|
46
|
+
}),
|
|
47
|
+
showsVerticalScrollIndicator: createStaticBoolProp({
|
|
48
|
+
label: "Show Vertical Scroll Indicator",
|
|
49
|
+
description: "When true, shows a vertical scroll indicator. The default value is true.",
|
|
50
|
+
defaultValue: true,
|
|
51
|
+
}),
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
name: "FlashList",
|
|
56
|
+
tag: "FlashList",
|
|
57
|
+
description: "Flashlist by Shopify",
|
|
58
|
+
packageName: "@shopify/flash-list",
|
|
59
|
+
category: COMPONENT_TYPES.data,
|
|
60
|
+
stylesPanelSections: [
|
|
61
|
+
StylesPanelSections.Background,
|
|
62
|
+
StylesPanelSections.MarginsAndPaddings,
|
|
63
|
+
],
|
|
64
|
+
triggers: [Triggers.OnRefresh, Triggers.OnEndReached],
|
|
65
|
+
props: {
|
|
66
|
+
onRefresh: createActionProp(),
|
|
67
|
+
onEndReached: createActionProp(),
|
|
68
|
+
estimatedItemSize: createNumberProp({
|
|
69
|
+
group: GROUPS.basic,
|
|
70
|
+
label: "Est. Item Size",
|
|
71
|
+
description: "Approximate size of the items before rendering.",
|
|
72
|
+
defaultValue: 50,
|
|
73
|
+
step: 1,
|
|
74
|
+
precision: 0,
|
|
75
|
+
}),
|
|
76
|
+
horizontal: createStaticBoolProp({
|
|
77
|
+
label: "Horizontal",
|
|
78
|
+
description: "Render list horizontally",
|
|
79
|
+
}),
|
|
80
|
+
inverted: createStaticBoolProp({
|
|
81
|
+
label: "Inverted",
|
|
82
|
+
description: "If true, reverses the direction.",
|
|
83
|
+
}),
|
|
84
|
+
numColumns: createNumColumnsType({
|
|
85
|
+
editable: true,
|
|
86
|
+
}),
|
|
87
|
+
initialNumToRender: createStaticNumberProp({
|
|
88
|
+
label: "Initial Num To Render",
|
|
89
|
+
description: "How many items to render in the initial batch",
|
|
90
|
+
defaultValue: null,
|
|
91
|
+
}),
|
|
92
|
+
onEndReachedThreshold: createStaticNumberProp({
|
|
93
|
+
label: "End Reached Threshold",
|
|
94
|
+
description: "How far from the end (in units of visible length of the list) the bottom edge of the list must be from the end of the content to trigger the onEndReached callback. Thus a value of 0.5 will trigger onEndReached when the end of the content is within half the visible length of the list.",
|
|
95
|
+
defaultValue: 0.5,
|
|
96
|
+
}),
|
|
97
|
+
refreshColor: createColorProp({
|
|
98
|
+
label: "Refreshing Color",
|
|
99
|
+
description: "Color of the refresh indicator",
|
|
100
|
+
}),
|
|
101
|
+
showsHorizontalScrollIndicator: createStaticBoolProp({
|
|
102
|
+
label: "Show Horizontal Scroll Indicator",
|
|
103
|
+
description: "When true, shows a horizontal scroll indicator. The default value is true.",
|
|
104
|
+
defaultValue: true,
|
|
105
|
+
}),
|
|
106
|
+
showsVerticalScrollIndicator: createStaticBoolProp({
|
|
107
|
+
label: "Show Vertical Scroll Indicator",
|
|
108
|
+
description: "When true, shows a vertical scroll indicator. The default value is true.",
|
|
109
|
+
defaultValue: true,
|
|
110
|
+
}),
|
|
111
|
+
},
|
|
112
|
+
},
|
|
113
|
+
];
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import {
|
|
2
|
+
COMPONENT_TYPES,
|
|
3
|
+
createNumColumnsType,
|
|
4
|
+
createStaticBoolProp,
|
|
5
|
+
createNumberProp,
|
|
6
|
+
GROUPS,
|
|
7
|
+
Triggers,
|
|
8
|
+
createActionProp,
|
|
9
|
+
createStaticNumberProp,
|
|
10
|
+
createColorProp,
|
|
11
|
+
StylesPanelSections,
|
|
12
|
+
} from "@draftbit/types";
|
|
13
|
+
|
|
14
|
+
export const SEED_DATA = [
|
|
15
|
+
{
|
|
16
|
+
name: "Masonry List",
|
|
17
|
+
tag: "MasonryFlashList",
|
|
18
|
+
description: "Masonry Flashlist by Shopify",
|
|
19
|
+
packageName: "@shopify/flash-list",
|
|
20
|
+
category: COMPONENT_TYPES.data,
|
|
21
|
+
stylesPanelSections: [
|
|
22
|
+
StylesPanelSections.Background,
|
|
23
|
+
StylesPanelSections.MarginsAndPaddings,
|
|
24
|
+
],
|
|
25
|
+
triggers: [Triggers.OnRefresh, Triggers.OnEndReached],
|
|
26
|
+
props: {
|
|
27
|
+
onRefresh: createActionProp(),
|
|
28
|
+
onEndReached: createActionProp(),
|
|
29
|
+
numColumns: createNumColumnsType({
|
|
30
|
+
editable: true,
|
|
31
|
+
}),
|
|
32
|
+
estimatedItemSize: createNumberProp({
|
|
33
|
+
group: GROUPS.basic,
|
|
34
|
+
label: "Est. Item Size",
|
|
35
|
+
description: "Approximate size of the items before rendering.",
|
|
36
|
+
defaultValue: 50,
|
|
37
|
+
step: 1,
|
|
38
|
+
precision: 0,
|
|
39
|
+
}),
|
|
40
|
+
initialNumToRender: createStaticNumberProp({
|
|
41
|
+
label: "Initial Num To Render",
|
|
42
|
+
description: "How many items to render in the initial batch",
|
|
43
|
+
defaultValue: null,
|
|
44
|
+
}),
|
|
45
|
+
onEndReachedThreshold: createStaticNumberProp({
|
|
46
|
+
label: "End Reached Threshold",
|
|
47
|
+
description:
|
|
48
|
+
"How far from the end (in units of visible length of the list) the bottom edge of the list must be from the end of the content to trigger the onEndReached callback. Thus a value of 0.5 will trigger onEndReached when the end of the content is within half the visible length of the list.",
|
|
49
|
+
defaultValue: 0.5,
|
|
50
|
+
}),
|
|
51
|
+
refreshColor: createColorProp({
|
|
52
|
+
label: "Refreshing Color",
|
|
53
|
+
description: "Color of the refresh indicator",
|
|
54
|
+
}),
|
|
55
|
+
showsHorizontalScrollIndicator: createStaticBoolProp({
|
|
56
|
+
label: "Show Horizontal Scroll Indicator",
|
|
57
|
+
description:
|
|
58
|
+
"When true, shows a horizontal scroll indicator. The default value is true.",
|
|
59
|
+
defaultValue: true,
|
|
60
|
+
}),
|
|
61
|
+
showsVerticalScrollIndicator: createStaticBoolProp({
|
|
62
|
+
label: "Show Vertical Scroll Indicator",
|
|
63
|
+
description:
|
|
64
|
+
"When true, shows a vertical scroll indicator. The default value is true.",
|
|
65
|
+
defaultValue: true,
|
|
66
|
+
}),
|
|
67
|
+
},
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
name: "FlashList",
|
|
71
|
+
tag: "FlashList",
|
|
72
|
+
description: "Flashlist by Shopify",
|
|
73
|
+
packageName: "@shopify/flash-list",
|
|
74
|
+
category: COMPONENT_TYPES.data,
|
|
75
|
+
stylesPanelSections: [
|
|
76
|
+
StylesPanelSections.Background,
|
|
77
|
+
StylesPanelSections.MarginsAndPaddings,
|
|
78
|
+
],
|
|
79
|
+
triggers: [Triggers.OnRefresh, Triggers.OnEndReached],
|
|
80
|
+
props: {
|
|
81
|
+
onRefresh: createActionProp(),
|
|
82
|
+
onEndReached: createActionProp(),
|
|
83
|
+
estimatedItemSize: createNumberProp({
|
|
84
|
+
group: GROUPS.basic,
|
|
85
|
+
label: "Est. Item Size",
|
|
86
|
+
description: "Approximate size of the items before rendering.",
|
|
87
|
+
defaultValue: 50,
|
|
88
|
+
step: 1,
|
|
89
|
+
precision: 0,
|
|
90
|
+
}),
|
|
91
|
+
horizontal: createStaticBoolProp({
|
|
92
|
+
label: "Horizontal",
|
|
93
|
+
description: "Render list horizontally",
|
|
94
|
+
}),
|
|
95
|
+
inverted: createStaticBoolProp({
|
|
96
|
+
label: "Inverted",
|
|
97
|
+
description: "If true, reverses the direction.",
|
|
98
|
+
}),
|
|
99
|
+
numColumns: createNumColumnsType({
|
|
100
|
+
editable: true,
|
|
101
|
+
}),
|
|
102
|
+
initialNumToRender: createStaticNumberProp({
|
|
103
|
+
label: "Initial Num To Render",
|
|
104
|
+
description: "How many items to render in the initial batch",
|
|
105
|
+
defaultValue: null,
|
|
106
|
+
}),
|
|
107
|
+
onEndReachedThreshold: createStaticNumberProp({
|
|
108
|
+
label: "End Reached Threshold",
|
|
109
|
+
description:
|
|
110
|
+
"How far from the end (in units of visible length of the list) the bottom edge of the list must be from the end of the content to trigger the onEndReached callback. Thus a value of 0.5 will trigger onEndReached when the end of the content is within half the visible length of the list.",
|
|
111
|
+
defaultValue: 0.5,
|
|
112
|
+
}),
|
|
113
|
+
refreshColor: createColorProp({
|
|
114
|
+
label: "Refreshing Color",
|
|
115
|
+
description: "Color of the refresh indicator",
|
|
116
|
+
}),
|
|
117
|
+
showsHorizontalScrollIndicator: createStaticBoolProp({
|
|
118
|
+
label: "Show Horizontal Scroll Indicator",
|
|
119
|
+
description:
|
|
120
|
+
"When true, shows a horizontal scroll indicator. The default value is true.",
|
|
121
|
+
defaultValue: true,
|
|
122
|
+
}),
|
|
123
|
+
showsVerticalScrollIndicator: createStaticBoolProp({
|
|
124
|
+
label: "Show Vertical Scroll Indicator",
|
|
125
|
+
description:
|
|
126
|
+
"When true, shows a vertical scroll indicator. The default value is true.",
|
|
127
|
+
defaultValue: true,
|
|
128
|
+
}),
|
|
129
|
+
},
|
|
130
|
+
},
|
|
131
|
+
];
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, createNumColumnsType, createStaticBoolProp, CONTAINER_COMPONENT_STYLES_SECTIONS, Triggers, createActionProp, createStaticNumberProp, createColorProp, } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = {
|
|
3
|
+
name: "List",
|
|
4
|
+
tag: "FlatList",
|
|
5
|
+
description: "A basic List component",
|
|
6
|
+
category: COMPONENT_TYPES.data,
|
|
7
|
+
stylesPanelSections: CONTAINER_COMPONENT_STYLES_SECTIONS,
|
|
8
|
+
layout: {
|
|
9
|
+
flex: 1,
|
|
10
|
+
},
|
|
11
|
+
triggers: [Triggers.OnRefresh, Triggers.OnEndReached],
|
|
12
|
+
props: {
|
|
13
|
+
onRefresh: createActionProp(),
|
|
14
|
+
onEndReached: createActionProp(),
|
|
15
|
+
horizontal: createStaticBoolProp({
|
|
16
|
+
label: "Horizontal",
|
|
17
|
+
description: "Render list horizontally",
|
|
18
|
+
}),
|
|
19
|
+
inverted: createStaticBoolProp({
|
|
20
|
+
label: "Inverted",
|
|
21
|
+
description: "If true, reverses the direction.",
|
|
22
|
+
}),
|
|
23
|
+
numColumns: createNumColumnsType({
|
|
24
|
+
editable: true,
|
|
25
|
+
}),
|
|
26
|
+
initialNumToRender: createStaticNumberProp({
|
|
27
|
+
label: "Initial Num To Render",
|
|
28
|
+
description: "How many items to render in the initial batch",
|
|
29
|
+
defaultValue: null,
|
|
30
|
+
}),
|
|
31
|
+
onEndReachedThreshold: createStaticNumberProp({
|
|
32
|
+
label: "End Reached Threshold",
|
|
33
|
+
description: "How far from the end (in units of visible length of the list) the bottom edge of the list must be from the end of the content to trigger the onEndReached callback. Thus a value of 0.5 will trigger onEndReached when the end of the content is within half the visible length of the list.",
|
|
34
|
+
defaultValue: 0.5,
|
|
35
|
+
}),
|
|
36
|
+
refreshColor: createColorProp({
|
|
37
|
+
label: "Refreshing Color",
|
|
38
|
+
description: "Color of the refresh indicator",
|
|
39
|
+
}),
|
|
40
|
+
showsHorizontalScrollIndicator: createStaticBoolProp({
|
|
41
|
+
label: "Show Horizontal Scroll Indicator",
|
|
42
|
+
description: "When true, shows a horizontal scroll indicator. The default value is true.",
|
|
43
|
+
defaultValue: true,
|
|
44
|
+
}),
|
|
45
|
+
showsVerticalScrollIndicator: createStaticBoolProp({
|
|
46
|
+
label: "Show Vertical Scroll Indicator",
|
|
47
|
+
description: "When true, shows a vertical scroll indicator. The default value is true.",
|
|
48
|
+
defaultValue: true,
|
|
49
|
+
}),
|
|
50
|
+
},
|
|
51
|
+
};
|