@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,63 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, createStaticBoolProp, CONTAINER_COMPONENT_STYLES_SECTIONS, Triggers, createActionProp, createColorProp, createStaticNumberProp, createArrayProp, } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = {
|
|
3
|
+
name: "Bottom Sheet",
|
|
4
|
+
tag: "BottomSheet",
|
|
5
|
+
description: "A draggable Bottom sheet that snaps to specific points. Renders children in ScrollView",
|
|
6
|
+
category: COMPONENT_TYPES.bottomsheet,
|
|
7
|
+
stylesPanelSections: CONTAINER_COMPONENT_STYLES_SECTIONS,
|
|
8
|
+
triggers: [Triggers.OnSettle],
|
|
9
|
+
props: {
|
|
10
|
+
onSettle: createActionProp({
|
|
11
|
+
label: "On settle",
|
|
12
|
+
description: "Action to execute when sheet settles on a snap point",
|
|
13
|
+
}),
|
|
14
|
+
snapPoints: createArrayProp({
|
|
15
|
+
label: "Snap points",
|
|
16
|
+
description: "An array of numerical values (that represent distance from the top) where bottom sheet can snap to place. Accepts numbers and percentages (minimum 2 snap points)",
|
|
17
|
+
defaultValue: ["10%", "50%", "80%"],
|
|
18
|
+
}),
|
|
19
|
+
initialSnapIndex: createStaticNumberProp({
|
|
20
|
+
label: "Initial snap index",
|
|
21
|
+
description: "Index of the snap point to be used as the initial point",
|
|
22
|
+
defaultValue: 0,
|
|
23
|
+
required: false,
|
|
24
|
+
}),
|
|
25
|
+
showHandle: createStaticBoolProp({
|
|
26
|
+
label: "Show handle",
|
|
27
|
+
description: "Whether to show the top sheet handle or not",
|
|
28
|
+
defaultValue: true,
|
|
29
|
+
}),
|
|
30
|
+
handleColor: createColorProp({
|
|
31
|
+
label: "Handle color",
|
|
32
|
+
description: "Color of the top handle",
|
|
33
|
+
defaultValue: "divider",
|
|
34
|
+
}),
|
|
35
|
+
topBorderRadius: createStaticNumberProp({
|
|
36
|
+
label: "Top border radius",
|
|
37
|
+
description: "Border radius of top corners",
|
|
38
|
+
defaultValue: 20,
|
|
39
|
+
required: false,
|
|
40
|
+
}),
|
|
41
|
+
borderWidth: createStaticNumberProp({
|
|
42
|
+
label: "Border width",
|
|
43
|
+
description: "Width of bottom sheet borders",
|
|
44
|
+
defaultValue: 1,
|
|
45
|
+
required: false,
|
|
46
|
+
}),
|
|
47
|
+
borderColor: createColorProp({
|
|
48
|
+
label: "Border color",
|
|
49
|
+
description: "Color of bottom sheet borders",
|
|
50
|
+
defaultValue: "divider",
|
|
51
|
+
}),
|
|
52
|
+
showsVerticalScrollIndicator: createStaticBoolProp({
|
|
53
|
+
label: "Show Vertical Scroll Indicator",
|
|
54
|
+
description: "When true, shows a vertical scroll indicator. The default value is true.",
|
|
55
|
+
defaultValue: true,
|
|
56
|
+
}),
|
|
57
|
+
bounces: createStaticBoolProp({
|
|
58
|
+
label: "Bounce",
|
|
59
|
+
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.",
|
|
60
|
+
defaultValue: true,
|
|
61
|
+
}),
|
|
62
|
+
},
|
|
63
|
+
};
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import {
|
|
2
|
+
COMPONENT_TYPES,
|
|
3
|
+
createStaticBoolProp,
|
|
4
|
+
CONTAINER_COMPONENT_STYLES_SECTIONS,
|
|
5
|
+
Triggers,
|
|
6
|
+
createActionProp,
|
|
7
|
+
createColorProp,
|
|
8
|
+
createStaticNumberProp,
|
|
9
|
+
createArrayProp,
|
|
10
|
+
} from "@draftbit/types";
|
|
11
|
+
|
|
12
|
+
export const SEED_DATA = {
|
|
13
|
+
name: "Bottom Sheet",
|
|
14
|
+
tag: "BottomSheet",
|
|
15
|
+
description:
|
|
16
|
+
"A draggable Bottom sheet that snaps to specific points. Renders children in ScrollView",
|
|
17
|
+
category: COMPONENT_TYPES.bottomsheet,
|
|
18
|
+
stylesPanelSections: CONTAINER_COMPONENT_STYLES_SECTIONS,
|
|
19
|
+
triggers: [Triggers.OnSettle],
|
|
20
|
+
props: {
|
|
21
|
+
onSettle: createActionProp({
|
|
22
|
+
label: "On settle",
|
|
23
|
+
description: "Action to execute when sheet settles on a snap point",
|
|
24
|
+
}),
|
|
25
|
+
snapPoints: createArrayProp({
|
|
26
|
+
label: "Snap points",
|
|
27
|
+
description:
|
|
28
|
+
"An array of numerical values (that represent distance from the top) where bottom sheet can snap to place. Accepts numbers and percentages (minimum 2 snap points)",
|
|
29
|
+
defaultValue: ["10%", "50%", "80%"],
|
|
30
|
+
}),
|
|
31
|
+
initialSnapIndex: createStaticNumberProp({
|
|
32
|
+
label: "Initial snap index",
|
|
33
|
+
description: "Index of the snap point to be used as the initial point",
|
|
34
|
+
defaultValue: 0,
|
|
35
|
+
required: false,
|
|
36
|
+
}),
|
|
37
|
+
showHandle: createStaticBoolProp({
|
|
38
|
+
label: "Show handle",
|
|
39
|
+
description: "Whether to show the top sheet handle or not",
|
|
40
|
+
defaultValue: true,
|
|
41
|
+
}),
|
|
42
|
+
handleColor: createColorProp({
|
|
43
|
+
label: "Handle color",
|
|
44
|
+
description: "Color of the top handle",
|
|
45
|
+
defaultValue: "divider",
|
|
46
|
+
}),
|
|
47
|
+
topBorderRadius: createStaticNumberProp({
|
|
48
|
+
label: "Top border radius",
|
|
49
|
+
description: "Border radius of top corners",
|
|
50
|
+
defaultValue: 20,
|
|
51
|
+
required: false,
|
|
52
|
+
}),
|
|
53
|
+
borderWidth: createStaticNumberProp({
|
|
54
|
+
label: "Border width",
|
|
55
|
+
description: "Width of bottom sheet borders",
|
|
56
|
+
defaultValue: 1,
|
|
57
|
+
required: false,
|
|
58
|
+
}),
|
|
59
|
+
borderColor: createColorProp({
|
|
60
|
+
label: "Border color",
|
|
61
|
+
description: "Color of bottom sheet borders",
|
|
62
|
+
defaultValue: "divider",
|
|
63
|
+
}),
|
|
64
|
+
showsVerticalScrollIndicator: createStaticBoolProp({
|
|
65
|
+
label: "Show Vertical Scroll Indicator",
|
|
66
|
+
description:
|
|
67
|
+
"When true, shows a vertical scroll indicator. The default value is true.",
|
|
68
|
+
defaultValue: true,
|
|
69
|
+
}),
|
|
70
|
+
bounces: createStaticBoolProp({
|
|
71
|
+
label: "Bounce",
|
|
72
|
+
description:
|
|
73
|
+
"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.",
|
|
74
|
+
defaultValue: true,
|
|
75
|
+
}),
|
|
76
|
+
},
|
|
77
|
+
};
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, createIconProp, createTextProp, createDisabledProp, createLoadingProp, createActionProp, Triggers, StylesPanelSections, createStaticNumberProp, } from "@draftbit/types";
|
|
2
|
+
const SEED_DATA_TRIGGERS = [Triggers.OnPress, Triggers.OnLongPress];
|
|
3
|
+
const SEED_DATA_PROPS = {
|
|
4
|
+
onPress: createActionProp(),
|
|
5
|
+
onLongPress: createActionProp(),
|
|
6
|
+
icon: createIconProp({
|
|
7
|
+
defaultValue: null,
|
|
8
|
+
required: false,
|
|
9
|
+
}),
|
|
10
|
+
title: createTextProp({
|
|
11
|
+
label: "Label",
|
|
12
|
+
description: "Button Label",
|
|
13
|
+
defaultValue: "Get Started",
|
|
14
|
+
}),
|
|
15
|
+
disabled: createDisabledProp(),
|
|
16
|
+
loading: createLoadingProp(),
|
|
17
|
+
activeOpacity: createStaticNumberProp({
|
|
18
|
+
label: "Active Opacity",
|
|
19
|
+
description: "Opacity of the button when active.",
|
|
20
|
+
defaultValue: null,
|
|
21
|
+
min: 0,
|
|
22
|
+
max: 1,
|
|
23
|
+
step: 0.01,
|
|
24
|
+
precision: 2,
|
|
25
|
+
required: false,
|
|
26
|
+
}),
|
|
27
|
+
disabledOpacity: createStaticNumberProp({
|
|
28
|
+
label: "Disabled Opacity",
|
|
29
|
+
description: "Opacity of the button when disabled.",
|
|
30
|
+
defaultValue: null,
|
|
31
|
+
min: 0,
|
|
32
|
+
max: 1,
|
|
33
|
+
step: 0.01,
|
|
34
|
+
precision: 2,
|
|
35
|
+
required: false,
|
|
36
|
+
}),
|
|
37
|
+
delayLongPress: createStaticNumberProp({
|
|
38
|
+
label: "Delay Long Press",
|
|
39
|
+
description: "Duration (in milliseconds) from onPressIn before onLongPress is called.",
|
|
40
|
+
required: false,
|
|
41
|
+
}),
|
|
42
|
+
hitSlop: createStaticNumberProp({
|
|
43
|
+
label: "Hit Slop",
|
|
44
|
+
description: "Sets additional distance outside of element in which a press can be detected",
|
|
45
|
+
required: false,
|
|
46
|
+
}),
|
|
47
|
+
};
|
|
48
|
+
export const SEED_DATA = [
|
|
49
|
+
{
|
|
50
|
+
name: "Button Outline",
|
|
51
|
+
tag: "ButtonOutline",
|
|
52
|
+
category: COMPONENT_TYPES.deprecated,
|
|
53
|
+
stylesPanelSections: [
|
|
54
|
+
StylesPanelSections.Typography,
|
|
55
|
+
StylesPanelSections.Background,
|
|
56
|
+
StylesPanelSections.Borders,
|
|
57
|
+
StylesPanelSections.Size,
|
|
58
|
+
StylesPanelSections.MarginsAndPaddings,
|
|
59
|
+
StylesPanelSections.Position,
|
|
60
|
+
StylesPanelSections.Effects,
|
|
61
|
+
],
|
|
62
|
+
layout: {
|
|
63
|
+
borderRadius: 8,
|
|
64
|
+
fontFamily: "system-700",
|
|
65
|
+
backgroundColor: "transparent",
|
|
66
|
+
borderWidth: 1,
|
|
67
|
+
textAlign: "center",
|
|
68
|
+
},
|
|
69
|
+
triggers: SEED_DATA_TRIGGERS,
|
|
70
|
+
props: SEED_DATA_PROPS,
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: "Button Solid",
|
|
74
|
+
tag: "ButtonSolid",
|
|
75
|
+
category: COMPONENT_TYPES.deprecated,
|
|
76
|
+
stylesPanelSections: [
|
|
77
|
+
StylesPanelSections.Typography,
|
|
78
|
+
StylesPanelSections.Background,
|
|
79
|
+
StylesPanelSections.Borders,
|
|
80
|
+
StylesPanelSections.Size,
|
|
81
|
+
StylesPanelSections.MarginsAndPaddings,
|
|
82
|
+
StylesPanelSections.Position,
|
|
83
|
+
StylesPanelSections.Effects,
|
|
84
|
+
],
|
|
85
|
+
layout: {
|
|
86
|
+
borderRadius: 8,
|
|
87
|
+
fontFamily: "system-700",
|
|
88
|
+
backgroundColor: "primary",
|
|
89
|
+
textAlign: "center",
|
|
90
|
+
},
|
|
91
|
+
triggers: SEED_DATA_TRIGGERS,
|
|
92
|
+
props: SEED_DATA_PROPS,
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
name: "Button",
|
|
96
|
+
tag: "Button",
|
|
97
|
+
category: COMPONENT_TYPES.button,
|
|
98
|
+
stylesPanelSections: [
|
|
99
|
+
StylesPanelSections.Typography,
|
|
100
|
+
StylesPanelSections.Background,
|
|
101
|
+
StylesPanelSections.Borders,
|
|
102
|
+
StylesPanelSections.Size,
|
|
103
|
+
StylesPanelSections.MarginsAndPaddings,
|
|
104
|
+
StylesPanelSections.Position,
|
|
105
|
+
StylesPanelSections.Effects,
|
|
106
|
+
],
|
|
107
|
+
layout: {
|
|
108
|
+
borderRadius: 8,
|
|
109
|
+
fontFamily: "system-700",
|
|
110
|
+
backgroundColor: "primary",
|
|
111
|
+
textAlign: "center",
|
|
112
|
+
},
|
|
113
|
+
triggers: SEED_DATA_TRIGGERS,
|
|
114
|
+
props: SEED_DATA_PROPS,
|
|
115
|
+
},
|
|
116
|
+
];
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import {
|
|
2
|
+
COMPONENT_TYPES,
|
|
3
|
+
createIconProp,
|
|
4
|
+
createTextProp,
|
|
5
|
+
createDisabledProp,
|
|
6
|
+
createLoadingProp,
|
|
7
|
+
createActionProp,
|
|
8
|
+
Triggers,
|
|
9
|
+
StylesPanelSections,
|
|
10
|
+
createStaticNumberProp,
|
|
11
|
+
} from "@draftbit/types";
|
|
12
|
+
|
|
13
|
+
const SEED_DATA_TRIGGERS = [Triggers.OnPress, Triggers.OnLongPress];
|
|
14
|
+
const SEED_DATA_PROPS = {
|
|
15
|
+
onPress: createActionProp(),
|
|
16
|
+
onLongPress: createActionProp(),
|
|
17
|
+
icon: createIconProp({
|
|
18
|
+
defaultValue: null,
|
|
19
|
+
required: false,
|
|
20
|
+
}),
|
|
21
|
+
title: createTextProp({
|
|
22
|
+
label: "Label",
|
|
23
|
+
description: "Button Label",
|
|
24
|
+
defaultValue: "Get Started",
|
|
25
|
+
}),
|
|
26
|
+
disabled: createDisabledProp(),
|
|
27
|
+
loading: createLoadingProp(),
|
|
28
|
+
activeOpacity: createStaticNumberProp({
|
|
29
|
+
label: "Active Opacity",
|
|
30
|
+
description: "Opacity of the button when active.",
|
|
31
|
+
defaultValue: null,
|
|
32
|
+
min: 0,
|
|
33
|
+
max: 1,
|
|
34
|
+
step: 0.01,
|
|
35
|
+
precision: 2,
|
|
36
|
+
required: false,
|
|
37
|
+
}),
|
|
38
|
+
disabledOpacity: createStaticNumberProp({
|
|
39
|
+
label: "Disabled Opacity",
|
|
40
|
+
description: "Opacity of the button when disabled.",
|
|
41
|
+
defaultValue: null,
|
|
42
|
+
min: 0,
|
|
43
|
+
max: 1,
|
|
44
|
+
step: 0.01,
|
|
45
|
+
precision: 2,
|
|
46
|
+
required: false,
|
|
47
|
+
}),
|
|
48
|
+
delayLongPress: createStaticNumberProp({
|
|
49
|
+
label: "Delay Long Press",
|
|
50
|
+
description:
|
|
51
|
+
"Duration (in milliseconds) from onPressIn before onLongPress is called.",
|
|
52
|
+
required: false,
|
|
53
|
+
}),
|
|
54
|
+
hitSlop: createStaticNumberProp({
|
|
55
|
+
label: "Hit Slop",
|
|
56
|
+
description:
|
|
57
|
+
"Sets additional distance outside of element in which a press can be detected",
|
|
58
|
+
required: false,
|
|
59
|
+
}),
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
export const SEED_DATA = [
|
|
63
|
+
{
|
|
64
|
+
name: "Button Outline",
|
|
65
|
+
tag: "ButtonOutline",
|
|
66
|
+
category: COMPONENT_TYPES.deprecated,
|
|
67
|
+
stylesPanelSections: [
|
|
68
|
+
StylesPanelSections.Typography,
|
|
69
|
+
StylesPanelSections.Background,
|
|
70
|
+
StylesPanelSections.Borders,
|
|
71
|
+
StylesPanelSections.Size,
|
|
72
|
+
StylesPanelSections.MarginsAndPaddings,
|
|
73
|
+
StylesPanelSections.Position,
|
|
74
|
+
StylesPanelSections.Effects,
|
|
75
|
+
],
|
|
76
|
+
layout: {
|
|
77
|
+
borderRadius: 8,
|
|
78
|
+
fontFamily: "system-700",
|
|
79
|
+
backgroundColor: "transparent",
|
|
80
|
+
borderWidth: 1,
|
|
81
|
+
textAlign: "center",
|
|
82
|
+
},
|
|
83
|
+
triggers: SEED_DATA_TRIGGERS,
|
|
84
|
+
props: SEED_DATA_PROPS,
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
name: "Button Solid",
|
|
88
|
+
tag: "ButtonSolid",
|
|
89
|
+
category: COMPONENT_TYPES.deprecated,
|
|
90
|
+
stylesPanelSections: [
|
|
91
|
+
StylesPanelSections.Typography,
|
|
92
|
+
StylesPanelSections.Background,
|
|
93
|
+
StylesPanelSections.Borders,
|
|
94
|
+
StylesPanelSections.Size,
|
|
95
|
+
StylesPanelSections.MarginsAndPaddings,
|
|
96
|
+
StylesPanelSections.Position,
|
|
97
|
+
StylesPanelSections.Effects,
|
|
98
|
+
],
|
|
99
|
+
layout: {
|
|
100
|
+
borderRadius: 8,
|
|
101
|
+
fontFamily: "system-700",
|
|
102
|
+
backgroundColor: "primary",
|
|
103
|
+
textAlign: "center",
|
|
104
|
+
},
|
|
105
|
+
triggers: SEED_DATA_TRIGGERS,
|
|
106
|
+
props: SEED_DATA_PROPS,
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
name: "Button",
|
|
110
|
+
tag: "Button",
|
|
111
|
+
category: COMPONENT_TYPES.button,
|
|
112
|
+
stylesPanelSections: [
|
|
113
|
+
StylesPanelSections.Typography,
|
|
114
|
+
StylesPanelSections.Background,
|
|
115
|
+
StylesPanelSections.Borders,
|
|
116
|
+
StylesPanelSections.Size,
|
|
117
|
+
StylesPanelSections.MarginsAndPaddings,
|
|
118
|
+
StylesPanelSections.Position,
|
|
119
|
+
StylesPanelSections.Effects,
|
|
120
|
+
],
|
|
121
|
+
layout: {
|
|
122
|
+
borderRadius: 8,
|
|
123
|
+
fontFamily: "system-700",
|
|
124
|
+
backgroundColor: "primary",
|
|
125
|
+
textAlign: "center",
|
|
126
|
+
},
|
|
127
|
+
triggers: SEED_DATA_TRIGGERS,
|
|
128
|
+
props: SEED_DATA_PROPS,
|
|
129
|
+
},
|
|
130
|
+
];
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, createElevationType, createTextProp, createImageProp, createIconProp, createAspectRatioProp, createStaticBoolProp, createTextStyle, createActionProp, Triggers, } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = {
|
|
3
|
+
name: "Card",
|
|
4
|
+
tag: "Card",
|
|
5
|
+
description: "A card you can customize however you'd like",
|
|
6
|
+
category: COMPONENT_TYPES.card,
|
|
7
|
+
triggers: [Triggers.OnPress, Triggers.OnPressIcon],
|
|
8
|
+
props: {
|
|
9
|
+
onPress: createActionProp(),
|
|
10
|
+
onPressIcon: createActionProp({
|
|
11
|
+
handlerPropName: "onPressIcon",
|
|
12
|
+
}),
|
|
13
|
+
elevation: createElevationType(3),
|
|
14
|
+
image: createImageProp(),
|
|
15
|
+
title: createTextProp({
|
|
16
|
+
label: "Title",
|
|
17
|
+
description: "Large title text",
|
|
18
|
+
// defaultValue: "Title",
|
|
19
|
+
defaultValue: null,
|
|
20
|
+
}),
|
|
21
|
+
titleStyle: createTextStyle({
|
|
22
|
+
label: "Title Style",
|
|
23
|
+
}),
|
|
24
|
+
subtitle: createTextProp({
|
|
25
|
+
label: "Subtitle",
|
|
26
|
+
description: "Text underneath the title",
|
|
27
|
+
defaultValue: null,
|
|
28
|
+
// defaultValue: "Edit me in the props panel on the right",
|
|
29
|
+
}),
|
|
30
|
+
subtitleStyle: createTextStyle({
|
|
31
|
+
label: "Subtitle Style",
|
|
32
|
+
}),
|
|
33
|
+
description: createTextProp({
|
|
34
|
+
label: "Description",
|
|
35
|
+
description: "Smallest text underneath subtitle",
|
|
36
|
+
// defaultValue:
|
|
37
|
+
// "This bottom text is optional, but shows up to make your life a little easier!",
|
|
38
|
+
defaultValue: null,
|
|
39
|
+
}),
|
|
40
|
+
descriptionStyle: createTextStyle({
|
|
41
|
+
label: "Description Style",
|
|
42
|
+
}),
|
|
43
|
+
icon: createIconProp(),
|
|
44
|
+
aspectRatio: createAspectRatioProp({
|
|
45
|
+
defaultValue: 1.5,
|
|
46
|
+
}),
|
|
47
|
+
textCentered: createStaticBoolProp({
|
|
48
|
+
label: "Centered Text",
|
|
49
|
+
description: "Places your title and subtitle in the center",
|
|
50
|
+
}),
|
|
51
|
+
},
|
|
52
|
+
};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import {
|
|
2
|
+
COMPONENT_TYPES,
|
|
3
|
+
createElevationType,
|
|
4
|
+
createTextProp,
|
|
5
|
+
createImageProp,
|
|
6
|
+
createIconProp,
|
|
7
|
+
createAspectRatioProp,
|
|
8
|
+
createStaticBoolProp,
|
|
9
|
+
createTextStyle,
|
|
10
|
+
createActionProp,
|
|
11
|
+
Triggers,
|
|
12
|
+
} from "@draftbit/types";
|
|
13
|
+
|
|
14
|
+
export const SEED_DATA = {
|
|
15
|
+
name: "Card",
|
|
16
|
+
tag: "Card",
|
|
17
|
+
description: "A card you can customize however you'd like",
|
|
18
|
+
category: COMPONENT_TYPES.card,
|
|
19
|
+
triggers: [Triggers.OnPress, Triggers.OnPressIcon],
|
|
20
|
+
props: {
|
|
21
|
+
onPress: createActionProp(),
|
|
22
|
+
onPressIcon: createActionProp({
|
|
23
|
+
handlerPropName: "onPressIcon",
|
|
24
|
+
}),
|
|
25
|
+
elevation: createElevationType(3),
|
|
26
|
+
image: createImageProp(),
|
|
27
|
+
title: createTextProp({
|
|
28
|
+
label: "Title",
|
|
29
|
+
description: "Large title text",
|
|
30
|
+
// defaultValue: "Title",
|
|
31
|
+
defaultValue: null,
|
|
32
|
+
}),
|
|
33
|
+
titleStyle: createTextStyle({
|
|
34
|
+
label: "Title Style",
|
|
35
|
+
}),
|
|
36
|
+
subtitle: createTextProp({
|
|
37
|
+
label: "Subtitle",
|
|
38
|
+
description: "Text underneath the title",
|
|
39
|
+
defaultValue: null,
|
|
40
|
+
// defaultValue: "Edit me in the props panel on the right",
|
|
41
|
+
}),
|
|
42
|
+
subtitleStyle: createTextStyle({
|
|
43
|
+
label: "Subtitle Style",
|
|
44
|
+
}),
|
|
45
|
+
description: createTextProp({
|
|
46
|
+
label: "Description",
|
|
47
|
+
description: "Smallest text underneath subtitle",
|
|
48
|
+
// defaultValue:
|
|
49
|
+
// "This bottom text is optional, but shows up to make your life a little easier!",
|
|
50
|
+
defaultValue: null,
|
|
51
|
+
}),
|
|
52
|
+
descriptionStyle: createTextStyle({
|
|
53
|
+
label: "Description Style",
|
|
54
|
+
}),
|
|
55
|
+
icon: createIconProp(),
|
|
56
|
+
aspectRatio: createAspectRatioProp({
|
|
57
|
+
defaultValue: 1.5,
|
|
58
|
+
}),
|
|
59
|
+
textCentered: createStaticBoolProp({
|
|
60
|
+
label: "Centered Text",
|
|
61
|
+
description: "Places your title and subtitle in the center",
|
|
62
|
+
}),
|
|
63
|
+
},
|
|
64
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, createResizeModeProp, createColorProp, BLOCK_STYLES_SECTIONS, } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = [
|
|
3
|
+
{
|
|
4
|
+
name: "Carousel",
|
|
5
|
+
tag: "Carousel",
|
|
6
|
+
category: COMPONENT_TYPES.deprecated,
|
|
7
|
+
stylesPanelSections: BLOCK_STYLES_SECTIONS,
|
|
8
|
+
description: "A horizontal scrolling carousel of images",
|
|
9
|
+
layout: {
|
|
10
|
+
height: 250,
|
|
11
|
+
},
|
|
12
|
+
props: {
|
|
13
|
+
resizeMode: createResizeModeProp(),
|
|
14
|
+
dotColor: createColorProp({
|
|
15
|
+
label: "Dot color",
|
|
16
|
+
}),
|
|
17
|
+
},
|
|
18
|
+
},
|
|
19
|
+
];
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import {
|
|
2
|
+
COMPONENT_TYPES,
|
|
3
|
+
createResizeModeProp,
|
|
4
|
+
createColorProp,
|
|
5
|
+
BLOCK_STYLES_SECTIONS,
|
|
6
|
+
} from "@draftbit/types";
|
|
7
|
+
|
|
8
|
+
export const SEED_DATA = [
|
|
9
|
+
{
|
|
10
|
+
name: "Carousel",
|
|
11
|
+
tag: "Carousel",
|
|
12
|
+
category: COMPONENT_TYPES.deprecated,
|
|
13
|
+
stylesPanelSections: BLOCK_STYLES_SECTIONS,
|
|
14
|
+
description: "A horizontal scrolling carousel of images",
|
|
15
|
+
layout: {
|
|
16
|
+
height: 250,
|
|
17
|
+
},
|
|
18
|
+
props: {
|
|
19
|
+
resizeMode: createResizeModeProp(),
|
|
20
|
+
dotColor: createColorProp({
|
|
21
|
+
label: "Dot color",
|
|
22
|
+
}),
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
];
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { COMPONENT_TYPES, createBoolProp, createIconProp, createStaticNumberProp, createColorProp, createFieldNameProp, GROUPS, Triggers, BLOCK_STYLES_SECTIONS, } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = {
|
|
3
|
+
name: "Checkbox",
|
|
4
|
+
tag: "Checkbox",
|
|
5
|
+
category: COMPONENT_TYPES.control,
|
|
6
|
+
stylesPanelSections: BLOCK_STYLES_SECTIONS,
|
|
7
|
+
triggers: [Triggers.OnPress, Triggers.OnCheck, Triggers.OnUncheck],
|
|
8
|
+
props: {
|
|
9
|
+
fieldName: createFieldNameProp({
|
|
10
|
+
defaultValue: "checkboxValue",
|
|
11
|
+
valuePropName: "status",
|
|
12
|
+
handlerPropName: "onPress",
|
|
13
|
+
}),
|
|
14
|
+
color: createColorProp({
|
|
15
|
+
group: GROUPS.basic,
|
|
16
|
+
label: "Color",
|
|
17
|
+
description: "Color for the button (used when the checkbox is checked)",
|
|
18
|
+
defaultValue: null,
|
|
19
|
+
}),
|
|
20
|
+
uncheckedColor: createColorProp({
|
|
21
|
+
group: GROUPS.basic,
|
|
22
|
+
label: "Unselected Color",
|
|
23
|
+
description: "Color for the button when the checkbox is unchecked",
|
|
24
|
+
defaultValue: null,
|
|
25
|
+
}),
|
|
26
|
+
disabled: createBoolProp({
|
|
27
|
+
label: "Disabled",
|
|
28
|
+
description: "Whether the checkbox is disabled",
|
|
29
|
+
}),
|
|
30
|
+
size: createStaticNumberProp({
|
|
31
|
+
label: "Size",
|
|
32
|
+
description: "Specifies the size of the icon",
|
|
33
|
+
defaultValue: null,
|
|
34
|
+
}),
|
|
35
|
+
checkedIcon: createIconProp({
|
|
36
|
+
label: "Checked Icon",
|
|
37
|
+
description: 'Icon to show when the checkbox status is "checked"',
|
|
38
|
+
defaultValue: null,
|
|
39
|
+
}),
|
|
40
|
+
uncheckedIcon: createIconProp({
|
|
41
|
+
label: "Unchecked Icon",
|
|
42
|
+
description: 'Icon to show when the checkbox status is "unchecked"',
|
|
43
|
+
defaultValue: null,
|
|
44
|
+
}),
|
|
45
|
+
},
|
|
46
|
+
};
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import {
|
|
2
|
+
COMPONENT_TYPES,
|
|
3
|
+
createBoolProp,
|
|
4
|
+
createIconProp,
|
|
5
|
+
createStaticNumberProp,
|
|
6
|
+
createColorProp,
|
|
7
|
+
createFieldNameProp,
|
|
8
|
+
GROUPS,
|
|
9
|
+
Triggers,
|
|
10
|
+
BLOCK_STYLES_SECTIONS,
|
|
11
|
+
} from "@draftbit/types";
|
|
12
|
+
|
|
13
|
+
export const SEED_DATA = {
|
|
14
|
+
name: "Checkbox",
|
|
15
|
+
tag: "Checkbox",
|
|
16
|
+
category: COMPONENT_TYPES.control,
|
|
17
|
+
stylesPanelSections: BLOCK_STYLES_SECTIONS,
|
|
18
|
+
triggers: [Triggers.OnPress, Triggers.OnCheck, Triggers.OnUncheck],
|
|
19
|
+
props: {
|
|
20
|
+
fieldName: createFieldNameProp({
|
|
21
|
+
defaultValue: "checkboxValue",
|
|
22
|
+
valuePropName: "status",
|
|
23
|
+
handlerPropName: "onPress",
|
|
24
|
+
}),
|
|
25
|
+
color: createColorProp({
|
|
26
|
+
group: GROUPS.basic,
|
|
27
|
+
label: "Color",
|
|
28
|
+
description: "Color for the button (used when the checkbox is checked)",
|
|
29
|
+
defaultValue: null,
|
|
30
|
+
}),
|
|
31
|
+
uncheckedColor: createColorProp({
|
|
32
|
+
group: GROUPS.basic,
|
|
33
|
+
label: "Unselected Color",
|
|
34
|
+
description: "Color for the button when the checkbox is unchecked",
|
|
35
|
+
defaultValue: null,
|
|
36
|
+
}),
|
|
37
|
+
disabled: createBoolProp({
|
|
38
|
+
label: "Disabled",
|
|
39
|
+
description: "Whether the checkbox is disabled",
|
|
40
|
+
}),
|
|
41
|
+
size: createStaticNumberProp({
|
|
42
|
+
label: "Size",
|
|
43
|
+
description: "Specifies the size of the icon",
|
|
44
|
+
defaultValue: null,
|
|
45
|
+
}),
|
|
46
|
+
checkedIcon: createIconProp({
|
|
47
|
+
label: "Checked Icon",
|
|
48
|
+
description: 'Icon to show when the checkbox status is "checked"',
|
|
49
|
+
defaultValue: null,
|
|
50
|
+
}),
|
|
51
|
+
uncheckedIcon: createIconProp({
|
|
52
|
+
label: "Unchecked Icon",
|
|
53
|
+
description: 'Icon to show when the checkbox status is "unchecked"',
|
|
54
|
+
defaultValue: null,
|
|
55
|
+
}),
|
|
56
|
+
},
|
|
57
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { GROUPS, COMPONENT_TYPES, FORM_TYPES, createTextProp, PROP_TYPES, createFieldNameProp, createDirectionProp, Triggers, StylesPanelSections, } from "@draftbit/types";
|
|
2
|
+
export const SEED_DATA = {
|
|
3
|
+
name: "Checkbox Group",
|
|
4
|
+
tag: "CheckboxGroup",
|
|
5
|
+
category: COMPONENT_TYPES.deprecated,
|
|
6
|
+
layout: {},
|
|
7
|
+
triggers: [Triggers.OnValueChange],
|
|
8
|
+
stylesPanelSections: [StylesPanelSections.Margins],
|
|
9
|
+
props: {
|
|
10
|
+
direction: createDirectionProp(),
|
|
11
|
+
values: createTextProp({
|
|
12
|
+
group: GROUPS.data,
|
|
13
|
+
formType: FORM_TYPES.flatArray,
|
|
14
|
+
propType: PROP_TYPES.ARRAY,
|
|
15
|
+
label: "Values",
|
|
16
|
+
description: "Currently selected values of the checkbox group",
|
|
17
|
+
required: true,
|
|
18
|
+
defaultValue: null,
|
|
19
|
+
}),
|
|
20
|
+
fieldName: createFieldNameProp({
|
|
21
|
+
defaultValue: "checkboxGroupValue",
|
|
22
|
+
handlerPropName: "onValueChange",
|
|
23
|
+
valuePropName: "value",
|
|
24
|
+
}),
|
|
25
|
+
},
|
|
26
|
+
};
|