@draftbit/core 47.0.1-d41acb.2 → 47.0.1-e04fa3.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/Button.js +3 -3
- package/lib/commonjs/components/Checkbox/Checkbox.js +3 -1
- package/lib/commonjs/components/Checkbox/CheckboxGroupRow.js +2 -1
- package/lib/commonjs/components/Checkbox/CheckboxRow.js +2 -1
- package/lib/commonjs/components/DeprecatedButton.js +27 -3
- package/lib/commonjs/components/DeprecatedFAB.js +2 -1
- package/lib/commonjs/components/Touchable.js +3 -8
- package/lib/commonjs/index.js +25 -89
- package/lib/commonjs/mappings/Button.js +10 -39
- package/lib/commonjs/mappings/NativeBase/AlertDialog.js +102 -0
- package/lib/commonjs/mappings/NativeBase/Button.js +84 -0
- package/lib/commonjs/mappings/NativeBase/DataDisplay.js +61 -0
- package/lib/commonjs/mappings/NativeBase/Feedback.js +74 -0
- package/lib/commonjs/mappings/NativeBase/Layout.js +114 -0
- package/lib/commonjs/mappings/NativeBase/Media.js +49 -0
- package/lib/commonjs/mappings/NativeBase/Menu.js +111 -0
- package/lib/commonjs/mappings/NativeBase/Modal.js +93 -0
- package/lib/commonjs/mappings/NativeBase/Other.js +94 -0
- package/lib/commonjs/mappings/NativeBase/Popover.js +99 -0
- package/lib/commonjs/mappings/NativeBase/Select.js +65 -0
- package/lib/commonjs/mappings/NativeBase/Slider.js +81 -0
- package/lib/commonjs/mappings/Touchable.js +7 -47
- package/lib/module/components/Button.js +3 -3
- package/lib/module/components/Checkbox/Checkbox.js +3 -2
- package/lib/module/components/Checkbox/CheckboxGroupRow.js +3 -2
- package/lib/module/components/Checkbox/CheckboxRow.js +3 -2
- package/lib/module/components/DeprecatedButton.js +28 -4
- package/lib/module/components/DeprecatedFAB.js +3 -2
- package/lib/module/components/Touchable.js +3 -8
- package/lib/module/index.js +121 -32
- package/lib/module/mappings/Button.js +11 -40
- package/lib/module/mappings/NativeBase/AlertDialog.js +95 -0
- package/lib/module/mappings/NativeBase/Button.js +86 -0
- package/lib/module/mappings/NativeBase/DataDisplay.js +54 -0
- package/lib/module/mappings/NativeBase/Feedback.js +67 -0
- package/lib/module/mappings/NativeBase/Layout.js +107 -0
- package/lib/module/mappings/NativeBase/Media.js +42 -0
- package/lib/module/mappings/NativeBase/Menu.js +104 -0
- package/lib/module/mappings/NativeBase/Modal.js +86 -0
- package/lib/module/mappings/NativeBase/Other.js +87 -0
- package/lib/module/mappings/NativeBase/Popover.js +92 -0
- package/lib/module/mappings/NativeBase/Select.js +58 -0
- package/lib/module/mappings/NativeBase/Slider.js +74 -0
- package/lib/module/mappings/Touchable.js +9 -49
- package/lib/typescript/src/components/Button.d.ts.map +1 -1
- package/lib/typescript/src/components/Checkbox/Checkbox.d.ts +2 -2
- package/lib/typescript/src/components/Checkbox/Checkbox.d.ts.map +1 -1
- package/lib/typescript/src/components/Checkbox/CheckboxGroupRow.d.ts.map +1 -1
- package/lib/typescript/src/components/Checkbox/CheckboxRow.d.ts.map +1 -1
- package/lib/typescript/src/components/DeprecatedButton.d.ts +2 -2
- package/lib/typescript/src/components/DeprecatedButton.d.ts.map +1 -1
- package/lib/typescript/src/components/DeprecatedFAB.d.ts +2 -2
- package/lib/typescript/src/components/DeprecatedFAB.d.ts.map +1 -1
- package/lib/typescript/src/components/Touchable.d.ts +2 -7
- package/lib/typescript/src/components/Touchable.d.ts.map +1 -1
- package/lib/typescript/src/index.d.ts +102 -30
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/mappings/Button.d.ts +4 -113
- package/lib/typescript/src/mappings/Button.d.ts.map +1 -1
- package/lib/typescript/src/mappings/NativeBase/AlertDialog.d.ts +146 -0
- package/lib/typescript/src/mappings/NativeBase/AlertDialog.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Button.d.ts +1 -0
- package/lib/typescript/src/mappings/NativeBase/Button.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/DataDisplay.d.ts +96 -0
- package/lib/typescript/src/mappings/NativeBase/DataDisplay.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Feedback.d.ts +2 -0
- package/lib/typescript/src/mappings/NativeBase/Feedback.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Layout.d.ts +146 -0
- package/lib/typescript/src/mappings/NativeBase/Layout.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Media.d.ts +48 -0
- package/lib/typescript/src/mappings/NativeBase/Media.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Menu.d.ts +227 -0
- package/lib/typescript/src/mappings/NativeBase/Menu.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Modal.d.ts +133 -0
- package/lib/typescript/src/mappings/NativeBase/Modal.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Other.d.ts +179 -0
- package/lib/typescript/src/mappings/NativeBase/Other.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Popover.d.ts +136 -0
- package/lib/typescript/src/mappings/NativeBase/Popover.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Select.d.ts +156 -0
- package/lib/typescript/src/mappings/NativeBase/Select.d.ts.map +1 -0
- package/lib/typescript/src/mappings/NativeBase/Slider.d.ts +200 -0
- package/lib/typescript/src/mappings/NativeBase/Slider.d.ts.map +1 -0
- package/lib/typescript/src/mappings/Touchable.d.ts +5 -59
- package/lib/typescript/src/mappings/Touchable.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/components/Button.js +3 -3
- package/src/components/Button.tsx +4 -14
- package/src/components/Checkbox/Checkbox.js +3 -2
- package/src/components/Checkbox/Checkbox.tsx +7 -5
- package/src/components/Checkbox/CheckboxGroupRow.js +3 -2
- package/src/components/Checkbox/CheckboxGroupRow.tsx +3 -3
- package/src/components/Checkbox/CheckboxRow.js +3 -2
- package/src/components/Checkbox/CheckboxRow.tsx +3 -3
- package/src/components/DeprecatedButton.js +16 -4
- package/src/components/DeprecatedButton.tsx +31 -7
- package/src/components/DeprecatedFAB.js +3 -2
- package/src/components/DeprecatedFAB.tsx +5 -5
- package/src/components/Touchable.js +3 -3
- package/src/components/Touchable.tsx +4 -14
- package/src/index.js +112 -32
- package/src/index.tsx +123 -44
- package/src/mappings/Button.js +10 -39
- package/src/mappings/Button.ts +10 -41
- package/src/mappings/NativeBase/AlertDialog.js +112 -0
- package/src/mappings/NativeBase/AlertDialog.ts +128 -0
- package/src/mappings/NativeBase/Button.js +84 -0
- package/src/mappings/NativeBase/Button.ts +83 -0
- package/src/mappings/NativeBase/DataDisplay.js +67 -0
- package/src/mappings/NativeBase/DataDisplay.ts +79 -0
- package/src/mappings/NativeBase/Feedback.js +89 -0
- package/src/mappings/NativeBase/Feedback.ts +100 -0
- package/src/mappings/NativeBase/Layout.js +140 -0
- package/src/mappings/NativeBase/Layout.ts +152 -0
- package/src/mappings/NativeBase/Media.js +56 -0
- package/src/mappings/NativeBase/Media.ts +65 -0
- package/src/mappings/NativeBase/Menu.js +134 -0
- package/src/mappings/NativeBase/Menu.ts +150 -0
- package/src/mappings/NativeBase/Modal.js +103 -0
- package/src/mappings/NativeBase/Modal.ts +118 -0
- package/src/mappings/NativeBase/Other.js +123 -0
- package/src/mappings/NativeBase/Other.ts +139 -0
- package/src/mappings/NativeBase/Popover.js +123 -0
- package/src/mappings/NativeBase/Popover.ts +136 -0
- package/src/mappings/NativeBase/Select.js +71 -0
- package/src/mappings/NativeBase/Select.ts +85 -0
- package/src/mappings/NativeBase/Slider.js +89 -0
- package/src/mappings/NativeBase/Slider.ts +105 -0
- package/src/mappings/Touchable.js +7 -50
- package/src/mappings/Touchable.ts +6 -53
- package/lib/commonjs/components/Pressable.js +0 -37
- package/lib/module/components/Pressable.js +0 -30
- package/lib/typescript/src/components/Pressable.d.ts +0 -16
- package/lib/typescript/src/components/Pressable.d.ts.map +0 -1
- package/src/components/Pressable.js +0 -12
- package/src/components/Pressable.tsx +0 -50
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DeprecatedButton.d.ts","sourceRoot":"","sources":["../../../../src/components/DeprecatedButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAKL,SAAS,EACT,SAAS,
|
|
1
|
+
{"version":3,"file":"DeprecatedButton.d.ts","sourceRoot":"","sources":["../../../../src/components/DeprecatedButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAKL,uBAAuB,EACvB,SAAS,EACT,SAAS,EAEV,MAAM,cAAc,CAAC;AAOtB,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAC;AACpD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAEnD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AAEH,aAAK,KAAK,GAAG;IACX,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,OAAO,GAAG,SAAS,GAAG,MAAM,CAAC;IACpC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,KAAK,EAAE,KAAK,CAAC;CACd,GAAG,uBAAuB,GACzB,QAAQ,CAAC;;;;AAmJX,wBAAiC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import { StyleProp, ViewStyle
|
|
2
|
+
import { TouchableHighlightProps, StyleProp, ViewStyle } from "react-native";
|
|
3
3
|
import type { Theme } from "../styles/DefaultTheme";
|
|
4
4
|
import type { IconSlot } from "../interfaces/Icon";
|
|
5
5
|
/**
|
|
@@ -48,7 +48,7 @@ declare type Props = {
|
|
|
48
48
|
elevation?: number;
|
|
49
49
|
theme: Theme;
|
|
50
50
|
style?: StyleProp<ViewStyle>;
|
|
51
|
-
} &
|
|
51
|
+
} & TouchableHighlightProps & IconSlot;
|
|
52
52
|
declare const _default: React.ComponentType<import("@draftbit/react-theme-provider").$Without<React.PropsWithChildren<Props>, "theme"> & {
|
|
53
53
|
theme?: import("@draftbit/react-theme-provider").$DeepPartial<any> | undefined;
|
|
54
54
|
}> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<React.ComponentType<React.PropsWithChildren<Props>> & React.FC<React.PropsWithChildren<Props>>, {}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DeprecatedFAB.d.ts","sourceRoot":"","sources":["../../../../src/components/DeprecatedFAB.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAIL,SAAS,EACT,SAAS,
|
|
1
|
+
{"version":3,"file":"DeprecatedFAB.d.ts","sourceRoot":"","sources":["../../../../src/components/DeprecatedFAB.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAIL,uBAAuB,EACvB,SAAS,EACT,SAAS,EAEV,MAAM,cAAc,CAAC;AAQtB,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAC;AACpD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAEnD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AAEH,aAAK,KAAK,GAAG;IACX,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,OAAO,GAAG,UAAU,GAAG,SAAS,GAAG,OAAO,GAAG,UAAU,CAAC;IAC/D,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,KAAK,CAAC;IACb,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC9B,GAAG,uBAAuB,GACzB,QAAQ,CAAC;;;;AAkKX,wBAA8B"}
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import {
|
|
2
|
+
import { ViewStyle, PressableProps } from "react-native";
|
|
3
3
|
declare type Props = {
|
|
4
4
|
disabled?: boolean;
|
|
5
5
|
children: React.ReactNode;
|
|
6
6
|
style?: ViewStyle;
|
|
7
7
|
onPress?: () => void;
|
|
8
|
-
onLongPress?: () => void;
|
|
9
|
-
delayLongPress?: number;
|
|
10
|
-
hitSlop?: number;
|
|
11
|
-
activeOpacity?: number;
|
|
12
|
-
disabledOpacity?: number;
|
|
13
8
|
} & PressableProps;
|
|
14
|
-
export default function Touchable({ children, disabled, onPress,
|
|
9
|
+
export default function Touchable({ children, disabled, onPress, style, ...props }: Props): JSX.Element;
|
|
15
10
|
export {};
|
|
16
11
|
//# sourceMappingURL=Touchable.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Touchable.d.ts","sourceRoot":"","sources":["../../../../src/components/Touchable.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAa,
|
|
1
|
+
{"version":3,"file":"Touchable.d.ts","sourceRoot":"","sources":["../../../../src/components/Touchable.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAa,SAAS,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAEpE,aAAK,KAAK,GAAG;IACX,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB,GAAG,cAAc,CAAC;AAEnB,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,EAChC,QAAQ,EACR,QAAQ,EACR,OAAO,EACP,KAAK,EACL,GAAG,KAAK,EACT,EAAE,KAAK,eAmBP"}
|
|
@@ -2,51 +2,123 @@ export { injectIcon } from "./interfaces/Icon";
|
|
|
2
2
|
export { withTheme, ThemeProvider } from "./theming";
|
|
3
3
|
export { default as Provider } from "./Provider";
|
|
4
4
|
export { default as DefaultTheme } from "./styles/DefaultTheme";
|
|
5
|
-
|
|
5
|
+
/** Replaced By NativeBase
|
|
6
|
+
* export { default as Avatar } from "./components/CircleImage";
|
|
7
|
+
* export { default as Container } from "./components/Container";
|
|
8
|
+
* export { default as FAB } from "./components/FAB";
|
|
9
|
+
* export {
|
|
10
|
+
Center,
|
|
11
|
+
Circle,
|
|
12
|
+
Square,
|
|
13
|
+
Row,
|
|
14
|
+
Stack,
|
|
15
|
+
Spacer,
|
|
16
|
+
} from "./components/Layout";
|
|
17
|
+
*/
|
|
18
|
+
export { default as ScreenContainer } from "./components/ScreenContainer";
|
|
6
19
|
export { default as Banner } from "./components/Banner";
|
|
7
20
|
export { Button, ButtonSolid, ButtonOutline } from "./components/Button";
|
|
8
|
-
export {
|
|
9
|
-
export { default as AvatarEdit } from "./components/AvatarEdit";
|
|
10
|
-
export { default as Card } from "./components/Card";
|
|
11
|
-
export { default as Carousel } from "./components/Carousel";
|
|
12
|
-
export { Checkbox, CheckboxGroup, CheckboxRow } from "./components/Checkbox";
|
|
13
|
-
export { default as CircleImage } from "./components/CircleImage";
|
|
14
|
-
export { default as Container } from "./components/Container";
|
|
15
|
-
export { default as Divider } from "./components/Divider";
|
|
16
|
-
export { default as FAB } from "./components/FAB";
|
|
17
|
-
export { default as FieldSearchBarFull } from "./components/FieldSearchBarFull";
|
|
21
|
+
export { Link } from "./components/Text";
|
|
18
22
|
export { default as IconButton } from "./components/IconButton";
|
|
19
|
-
export { default as
|
|
20
|
-
export { default as
|
|
23
|
+
export { default as Touchable } from "./components/Touchable";
|
|
24
|
+
export { default as ToggleButton } from "./components/ToggleButton";
|
|
25
|
+
export { default as DatePicker } from "./components/DatePicker/DatePicker";
|
|
21
26
|
export { default as NumberInput } from "./components/NumberInput";
|
|
22
|
-
export { default as
|
|
27
|
+
export { default as TextField } from "./components/TextField";
|
|
28
|
+
export { default as FieldSearchBarFull } from "./components/FieldSearchBarFull";
|
|
29
|
+
export { default as Picker } from "./components/Picker/Picker";
|
|
30
|
+
export { Checkbox, CheckboxGroup, CheckboxRow } from "./components/Checkbox";
|
|
31
|
+
export { RadioButton, RadioButtonGroup, RadioButtonRow, RadioButtonFieldGroup, } from "./components/RadioButton/index";
|
|
32
|
+
export { default as Slider } from "./components/Slider";
|
|
33
|
+
export { default as Stepper } from "./components/Stepper";
|
|
23
34
|
export { default as StarRating } from "./components/StarRating";
|
|
24
|
-
export { default as Surface } from "./components/Surface";
|
|
25
35
|
export { default as Switch, SwitchRow } from "./components/Switch";
|
|
26
|
-
export { default as
|
|
27
|
-
export { default as
|
|
28
|
-
export { default as
|
|
29
|
-
export { default as
|
|
36
|
+
export { default as SVG } from "./components/SVG";
|
|
37
|
+
export { default as Image } from "./components/Image";
|
|
38
|
+
export { default as AvatarEdit } from "./components/AvatarEdit";
|
|
39
|
+
export { default as CircleImage } from "./components/CircleImage";
|
|
40
|
+
export { Swiper, SwiperItem } from "./components/Swiper";
|
|
30
41
|
export { AccordionGroup, AccordionItem } from "./components/Accordion";
|
|
42
|
+
export { default as Surface } from "./components/Surface";
|
|
31
43
|
export { ActionSheet, ActionSheetItem, ActionSheetCancel, } from "./components/ActionSheet";
|
|
32
|
-
export {
|
|
33
|
-
export {
|
|
34
|
-
export { RadioButton, RadioButtonGroup, RadioButtonRow, RadioButtonFieldGroup, } from "./components/RadioButton/index";
|
|
35
|
-
export { default as CardBlock } from "./components/CardBlock";
|
|
36
|
-
export { default as CardContainer } from "./components/CardContainer";
|
|
37
|
-
export { default as CardContainerRating } from "./components/CardContainerRating";
|
|
38
|
-
export { default as CardInline } from "./components/CardInline";
|
|
39
|
-
export { default as DatePicker } from "./components/DatePicker/DatePicker";
|
|
44
|
+
export { default as Carousel } from "./components/Carousel";
|
|
45
|
+
export { default as Divider } from "./components/Divider";
|
|
40
46
|
export { default as HeaderLarge } from "./components/HeaderLarge";
|
|
41
47
|
export { default as HeaderMedium } from "./components/HeaderMedium";
|
|
42
48
|
export { default as HeaderOverline } from "./components/HeaderOverline";
|
|
43
|
-
export { default as Picker } from "./components/Picker/Picker";
|
|
44
49
|
export { default as ProgressBar } from "./components/ProgressBar";
|
|
45
50
|
export { default as ProgressCircle } from "./components/ProgressCircle";
|
|
46
51
|
export { default as RowBodyIcon } from "./components/RowBodyIcon";
|
|
47
52
|
export { default as RowHeadlineImageCaption } from "./components/RowHeadlineImageCaption";
|
|
48
53
|
export { default as RowHeadlineImageIcon } from "./components/RowHeadlineImageIcon";
|
|
49
|
-
export { default as
|
|
50
|
-
export { default as
|
|
54
|
+
export { default as Card } from "./components/Card";
|
|
55
|
+
export { default as CardBlock } from "./components/CardBlock";
|
|
56
|
+
export { default as CardContainer } from "./components/CardContainer";
|
|
57
|
+
export { default as CardContainerRating } from "./components/CardContainerRating";
|
|
58
|
+
export { default as CardInline } from "./components/CardInline";
|
|
51
59
|
export { useAuthState } from "./components/useAuthState";
|
|
60
|
+
/**
|
|
61
|
+
* NativeBase Components Jan 2023
|
|
62
|
+
*
|
|
63
|
+
* ALERT
|
|
64
|
+
* - AlertDialog
|
|
65
|
+
* - AlertDialog.Header
|
|
66
|
+
* - AlertDialog.Body
|
|
67
|
+
* - AlertDialog.Footer
|
|
68
|
+
* - AlertDialog.Content
|
|
69
|
+
* - AlertDialog.CloseButton
|
|
70
|
+
*
|
|
71
|
+
* FORMS
|
|
72
|
+
* - Button -- COMMENTED OUT
|
|
73
|
+
* - Button.Group -- COMMENTED OUT
|
|
74
|
+
* - Fab
|
|
75
|
+
*
|
|
76
|
+
* DATA DISPLAY
|
|
77
|
+
* - Badge
|
|
78
|
+
* - Divider
|
|
79
|
+
*
|
|
80
|
+
* FEEDBACK
|
|
81
|
+
* - Alert
|
|
82
|
+
* - Alert.Icon
|
|
83
|
+
* - Progress
|
|
84
|
+
*
|
|
85
|
+
* LAYOUT
|
|
86
|
+
* - AspectRatio
|
|
87
|
+
* - Box
|
|
88
|
+
* - Center
|
|
89
|
+
* - Square
|
|
90
|
+
* - Circle
|
|
91
|
+
* - Column
|
|
92
|
+
* - Container
|
|
93
|
+
* - Flex
|
|
94
|
+
* - Spacer
|
|
95
|
+
* - Row
|
|
96
|
+
* - Stack
|
|
97
|
+
* - ZStack
|
|
98
|
+
*
|
|
99
|
+
* MEDIA
|
|
100
|
+
* - Avatar
|
|
101
|
+
* - Avatar.Badge
|
|
102
|
+
* - Avatar.Group
|
|
103
|
+
*
|
|
104
|
+
* MENU
|
|
105
|
+
* - Menu
|
|
106
|
+
* - Menu.Item
|
|
107
|
+
* - Menu.Group
|
|
108
|
+
* - Menu.OptionGroup
|
|
109
|
+
* - Menu.ItemOption
|
|
110
|
+
* - Menu.Trigger
|
|
111
|
+
*
|
|
112
|
+
* MODAL
|
|
113
|
+
* - Modal
|
|
114
|
+
* - Modal.Content
|
|
115
|
+
* - Modal.Header
|
|
116
|
+
* - Modal.Footer
|
|
117
|
+
* - Modal.Body
|
|
118
|
+
* - Modal.CloseButton
|
|
119
|
+
*
|
|
120
|
+
* OTHER
|
|
121
|
+
* - Tooltip
|
|
122
|
+
*
|
|
123
|
+
* */
|
|
52
124
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAEhE,OAAO,EAAE,IAAI,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"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"}
|
|
@@ -4,11 +4,11 @@ export declare const SEED_DATA: ({
|
|
|
4
4
|
category: string;
|
|
5
5
|
stylesPanelSections: string[];
|
|
6
6
|
layout: {
|
|
7
|
-
borderRadius: number;
|
|
8
|
-
fontFamily: string;
|
|
9
7
|
backgroundColor: string;
|
|
10
8
|
borderWidth: number;
|
|
11
9
|
textAlign: string;
|
|
10
|
+
borderRadius: number;
|
|
11
|
+
fontFamily: string;
|
|
12
12
|
};
|
|
13
13
|
triggers: string[];
|
|
14
14
|
props: {
|
|
@@ -22,16 +22,6 @@ export declare const SEED_DATA: ({
|
|
|
22
22
|
defaultValue: null;
|
|
23
23
|
group: string;
|
|
24
24
|
};
|
|
25
|
-
onLongPress: {
|
|
26
|
-
label: string;
|
|
27
|
-
description: string;
|
|
28
|
-
editable: boolean;
|
|
29
|
-
required: boolean;
|
|
30
|
-
formType: string;
|
|
31
|
-
propType: string;
|
|
32
|
-
defaultValue: null;
|
|
33
|
-
group: string;
|
|
34
|
-
};
|
|
35
25
|
icon: {
|
|
36
26
|
label: string;
|
|
37
27
|
description: string;
|
|
@@ -63,50 +53,6 @@ export declare const SEED_DATA: ({
|
|
|
63
53
|
propType: string;
|
|
64
54
|
defaultValue: null;
|
|
65
55
|
};
|
|
66
|
-
activeOpacity: {
|
|
67
|
-
label: string;
|
|
68
|
-
description: string;
|
|
69
|
-
formType: string;
|
|
70
|
-
propType: string;
|
|
71
|
-
group: string;
|
|
72
|
-
defaultValue: null;
|
|
73
|
-
editable: boolean;
|
|
74
|
-
required: boolean;
|
|
75
|
-
step: number;
|
|
76
|
-
};
|
|
77
|
-
disabledOpacity: {
|
|
78
|
-
label: string;
|
|
79
|
-
description: string;
|
|
80
|
-
formType: string;
|
|
81
|
-
propType: string;
|
|
82
|
-
group: string;
|
|
83
|
-
defaultValue: null;
|
|
84
|
-
editable: boolean;
|
|
85
|
-
required: boolean;
|
|
86
|
-
step: number;
|
|
87
|
-
};
|
|
88
|
-
delayLongPress: {
|
|
89
|
-
label: string;
|
|
90
|
-
description: string;
|
|
91
|
-
formType: string;
|
|
92
|
-
propType: string;
|
|
93
|
-
group: string;
|
|
94
|
-
defaultValue: null;
|
|
95
|
-
editable: boolean;
|
|
96
|
-
required: boolean;
|
|
97
|
-
step: number;
|
|
98
|
-
};
|
|
99
|
-
hitSlop: {
|
|
100
|
-
label: string;
|
|
101
|
-
description: string;
|
|
102
|
-
formType: string;
|
|
103
|
-
propType: string;
|
|
104
|
-
group: string;
|
|
105
|
-
defaultValue: null;
|
|
106
|
-
editable: boolean;
|
|
107
|
-
required: boolean;
|
|
108
|
-
step: number;
|
|
109
|
-
};
|
|
110
56
|
};
|
|
111
57
|
} | {
|
|
112
58
|
name: string;
|
|
@@ -114,11 +60,10 @@ export declare const SEED_DATA: ({
|
|
|
114
60
|
category: string;
|
|
115
61
|
stylesPanelSections: string[];
|
|
116
62
|
layout: {
|
|
117
|
-
borderRadius: number;
|
|
118
|
-
fontFamily: string;
|
|
119
63
|
backgroundColor: string;
|
|
120
64
|
textAlign: string;
|
|
121
|
-
|
|
65
|
+
borderRadius: number;
|
|
66
|
+
fontFamily: string;
|
|
122
67
|
};
|
|
123
68
|
triggers: string[];
|
|
124
69
|
props: {
|
|
@@ -132,16 +77,6 @@ export declare const SEED_DATA: ({
|
|
|
132
77
|
defaultValue: null;
|
|
133
78
|
group: string;
|
|
134
79
|
};
|
|
135
|
-
onLongPress: {
|
|
136
|
-
label: string;
|
|
137
|
-
description: string;
|
|
138
|
-
editable: boolean;
|
|
139
|
-
required: boolean;
|
|
140
|
-
formType: string;
|
|
141
|
-
propType: string;
|
|
142
|
-
defaultValue: null;
|
|
143
|
-
group: string;
|
|
144
|
-
};
|
|
145
80
|
icon: {
|
|
146
81
|
label: string;
|
|
147
82
|
description: string;
|
|
@@ -173,50 +108,6 @@ export declare const SEED_DATA: ({
|
|
|
173
108
|
propType: string;
|
|
174
109
|
defaultValue: null;
|
|
175
110
|
};
|
|
176
|
-
activeOpacity: {
|
|
177
|
-
label: string;
|
|
178
|
-
description: string;
|
|
179
|
-
formType: string;
|
|
180
|
-
propType: string;
|
|
181
|
-
group: string;
|
|
182
|
-
defaultValue: null;
|
|
183
|
-
editable: boolean;
|
|
184
|
-
required: boolean;
|
|
185
|
-
step: number;
|
|
186
|
-
};
|
|
187
|
-
disabledOpacity: {
|
|
188
|
-
label: string;
|
|
189
|
-
description: string;
|
|
190
|
-
formType: string;
|
|
191
|
-
propType: string;
|
|
192
|
-
group: string;
|
|
193
|
-
defaultValue: null;
|
|
194
|
-
editable: boolean;
|
|
195
|
-
required: boolean;
|
|
196
|
-
step: number;
|
|
197
|
-
};
|
|
198
|
-
delayLongPress: {
|
|
199
|
-
label: string;
|
|
200
|
-
description: string;
|
|
201
|
-
formType: string;
|
|
202
|
-
propType: string;
|
|
203
|
-
group: string;
|
|
204
|
-
defaultValue: null;
|
|
205
|
-
editable: boolean;
|
|
206
|
-
required: boolean;
|
|
207
|
-
step: number;
|
|
208
|
-
};
|
|
209
|
-
hitSlop: {
|
|
210
|
-
label: string;
|
|
211
|
-
description: string;
|
|
212
|
-
formType: string;
|
|
213
|
-
propType: string;
|
|
214
|
-
group: string;
|
|
215
|
-
defaultValue: null;
|
|
216
|
-
editable: boolean;
|
|
217
|
-
required: boolean;
|
|
218
|
-
step: number;
|
|
219
|
-
};
|
|
220
111
|
};
|
|
221
112
|
})[];
|
|
222
113
|
//# sourceMappingURL=Button.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../src/mappings/Button.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../src/mappings/Button.ts"],"names":[],"mappings":"AAiCA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAiErB,CAAC"}
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
export declare const SEED_DATA: ({
|
|
2
|
+
triggers: string[];
|
|
3
|
+
props: {
|
|
4
|
+
isOpen: {
|
|
5
|
+
label: string;
|
|
6
|
+
description: string;
|
|
7
|
+
formType: string;
|
|
8
|
+
propType: string;
|
|
9
|
+
defaultValue: boolean;
|
|
10
|
+
editable: boolean;
|
|
11
|
+
required: boolean;
|
|
12
|
+
group: string;
|
|
13
|
+
};
|
|
14
|
+
defaultIsOpen: {
|
|
15
|
+
label: string;
|
|
16
|
+
description: string;
|
|
17
|
+
formType: string;
|
|
18
|
+
propType: string;
|
|
19
|
+
defaultValue: boolean;
|
|
20
|
+
editable: boolean;
|
|
21
|
+
required: boolean;
|
|
22
|
+
group: string;
|
|
23
|
+
};
|
|
24
|
+
size: {
|
|
25
|
+
label: string;
|
|
26
|
+
description: string;
|
|
27
|
+
formType: string;
|
|
28
|
+
propType: string;
|
|
29
|
+
group: string;
|
|
30
|
+
defaultValue: null;
|
|
31
|
+
editable: boolean;
|
|
32
|
+
required: boolean;
|
|
33
|
+
step: number;
|
|
34
|
+
};
|
|
35
|
+
avoidKeyboard: {
|
|
36
|
+
label: string;
|
|
37
|
+
description: string;
|
|
38
|
+
formType: string;
|
|
39
|
+
propType: string;
|
|
40
|
+
defaultValue: boolean;
|
|
41
|
+
editable: boolean;
|
|
42
|
+
required: boolean;
|
|
43
|
+
group: string;
|
|
44
|
+
};
|
|
45
|
+
closeOnOverlayClick: {
|
|
46
|
+
label: string;
|
|
47
|
+
description: string;
|
|
48
|
+
formType: string;
|
|
49
|
+
propType: string;
|
|
50
|
+
defaultValue: boolean;
|
|
51
|
+
editable: boolean;
|
|
52
|
+
required: boolean;
|
|
53
|
+
group: string;
|
|
54
|
+
};
|
|
55
|
+
isKeyboardDismissable: {
|
|
56
|
+
label: string;
|
|
57
|
+
description: string;
|
|
58
|
+
formType: string;
|
|
59
|
+
propType: string;
|
|
60
|
+
defaultValue: boolean;
|
|
61
|
+
editable: boolean;
|
|
62
|
+
required: boolean;
|
|
63
|
+
group: string;
|
|
64
|
+
};
|
|
65
|
+
overlayVisible: {
|
|
66
|
+
label: string;
|
|
67
|
+
description: string;
|
|
68
|
+
formType: string;
|
|
69
|
+
propType: string;
|
|
70
|
+
defaultValue: boolean;
|
|
71
|
+
editable: boolean;
|
|
72
|
+
required: boolean;
|
|
73
|
+
group: string;
|
|
74
|
+
};
|
|
75
|
+
backdropVisible: {
|
|
76
|
+
label: string;
|
|
77
|
+
description: string;
|
|
78
|
+
formType: string;
|
|
79
|
+
propType: string;
|
|
80
|
+
defaultValue: boolean;
|
|
81
|
+
editable: boolean;
|
|
82
|
+
required: boolean;
|
|
83
|
+
group: string;
|
|
84
|
+
};
|
|
85
|
+
animationPreset: {
|
|
86
|
+
group: string;
|
|
87
|
+
label: string;
|
|
88
|
+
description: string;
|
|
89
|
+
editable: boolean;
|
|
90
|
+
required: boolean;
|
|
91
|
+
formType: string;
|
|
92
|
+
propType: string;
|
|
93
|
+
defaultValue: null;
|
|
94
|
+
options: never[];
|
|
95
|
+
};
|
|
96
|
+
useRNModal: {
|
|
97
|
+
label: string;
|
|
98
|
+
description: string;
|
|
99
|
+
formType: string;
|
|
100
|
+
propType: string;
|
|
101
|
+
defaultValue: boolean;
|
|
102
|
+
editable: boolean;
|
|
103
|
+
required: boolean;
|
|
104
|
+
group: string;
|
|
105
|
+
};
|
|
106
|
+
onClose: {
|
|
107
|
+
label: string;
|
|
108
|
+
description: string;
|
|
109
|
+
editable: boolean;
|
|
110
|
+
required: boolean;
|
|
111
|
+
formType: string;
|
|
112
|
+
propType: string;
|
|
113
|
+
defaultValue: null;
|
|
114
|
+
group: string;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
category: string;
|
|
118
|
+
packageName: string;
|
|
119
|
+
stylesPanelSections: string[];
|
|
120
|
+
layout: {};
|
|
121
|
+
name: string;
|
|
122
|
+
tag: string;
|
|
123
|
+
description: string;
|
|
124
|
+
} | {
|
|
125
|
+
props: {
|
|
126
|
+
isOpen?: undefined;
|
|
127
|
+
defaultIsOpen?: undefined;
|
|
128
|
+
size?: undefined;
|
|
129
|
+
avoidKeyboard?: undefined;
|
|
130
|
+
closeOnOverlayClick?: undefined;
|
|
131
|
+
isKeyboardDismissable?: undefined;
|
|
132
|
+
overlayVisible?: undefined;
|
|
133
|
+
backdropVisible?: undefined;
|
|
134
|
+
animationPreset?: undefined;
|
|
135
|
+
useRNModal?: undefined;
|
|
136
|
+
onClose?: undefined;
|
|
137
|
+
};
|
|
138
|
+
category: string;
|
|
139
|
+
packageName: string;
|
|
140
|
+
stylesPanelSections: string[];
|
|
141
|
+
layout: {};
|
|
142
|
+
name: string;
|
|
143
|
+
tag: string;
|
|
144
|
+
description: string;
|
|
145
|
+
})[];
|
|
146
|
+
//# sourceMappingURL=AlertDialog.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AlertDialog.d.ts","sourceRoot":"","sources":["../../../../../src/mappings/NativeBase/AlertDialog.ts"],"names":[],"mappings":"AA4BA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAmGrB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=Button.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../../src/mappings/NativeBase/Button.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
export declare const SEED_DATA: ({
|
|
2
|
+
props: {
|
|
3
|
+
leftIcon: {
|
|
4
|
+
label: string;
|
|
5
|
+
description: string;
|
|
6
|
+
formType: string;
|
|
7
|
+
propType: string;
|
|
8
|
+
defaultValue: string;
|
|
9
|
+
required: boolean;
|
|
10
|
+
editable: boolean;
|
|
11
|
+
group: string;
|
|
12
|
+
};
|
|
13
|
+
rightIcon: {
|
|
14
|
+
label: string;
|
|
15
|
+
description: string;
|
|
16
|
+
formType: string;
|
|
17
|
+
propType: string;
|
|
18
|
+
defaultValue: string;
|
|
19
|
+
required: boolean;
|
|
20
|
+
editable: boolean;
|
|
21
|
+
group: string;
|
|
22
|
+
};
|
|
23
|
+
startIcon: {
|
|
24
|
+
label: string;
|
|
25
|
+
description: string;
|
|
26
|
+
formType: string;
|
|
27
|
+
propType: string;
|
|
28
|
+
defaultValue: string;
|
|
29
|
+
required: boolean;
|
|
30
|
+
editable: boolean;
|
|
31
|
+
group: string;
|
|
32
|
+
};
|
|
33
|
+
endIcon: {
|
|
34
|
+
label: string;
|
|
35
|
+
description: string;
|
|
36
|
+
formType: string;
|
|
37
|
+
propType: string;
|
|
38
|
+
defaultValue: string;
|
|
39
|
+
required: boolean;
|
|
40
|
+
editable: boolean;
|
|
41
|
+
group: string;
|
|
42
|
+
};
|
|
43
|
+
orientation?: undefined;
|
|
44
|
+
thickness?: undefined;
|
|
45
|
+
};
|
|
46
|
+
category: string;
|
|
47
|
+
packageName: string;
|
|
48
|
+
stylesPanelSections: string[];
|
|
49
|
+
layout: {};
|
|
50
|
+
triggers: {};
|
|
51
|
+
name: string;
|
|
52
|
+
tag: string;
|
|
53
|
+
doc_link: string;
|
|
54
|
+
code_link: string;
|
|
55
|
+
description: string;
|
|
56
|
+
} | {
|
|
57
|
+
props: {
|
|
58
|
+
orientation: {
|
|
59
|
+
group: string;
|
|
60
|
+
label: string;
|
|
61
|
+
description: string;
|
|
62
|
+
editable: boolean;
|
|
63
|
+
required: boolean;
|
|
64
|
+
formType: string;
|
|
65
|
+
propType: string;
|
|
66
|
+
defaultValue: null;
|
|
67
|
+
options: never[];
|
|
68
|
+
};
|
|
69
|
+
thickness: {
|
|
70
|
+
label: string;
|
|
71
|
+
description: string;
|
|
72
|
+
formType: string;
|
|
73
|
+
propType: string;
|
|
74
|
+
group: string;
|
|
75
|
+
defaultValue: null;
|
|
76
|
+
editable: boolean;
|
|
77
|
+
required: boolean;
|
|
78
|
+
step: number;
|
|
79
|
+
};
|
|
80
|
+
leftIcon?: undefined;
|
|
81
|
+
rightIcon?: undefined;
|
|
82
|
+
startIcon?: undefined;
|
|
83
|
+
endIcon?: undefined;
|
|
84
|
+
};
|
|
85
|
+
category: string;
|
|
86
|
+
packageName: string;
|
|
87
|
+
stylesPanelSections: string[];
|
|
88
|
+
layout: {};
|
|
89
|
+
triggers: {};
|
|
90
|
+
name: string;
|
|
91
|
+
tag: string;
|
|
92
|
+
doc_link: string;
|
|
93
|
+
code_link: string;
|
|
94
|
+
description: string;
|
|
95
|
+
})[];
|
|
96
|
+
//# sourceMappingURL=DataDisplay.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataDisplay.d.ts","sourceRoot":"","sources":["../../../../../src/mappings/NativeBase/DataDisplay.ts"],"names":[],"mappings":"AA0BA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAoDrB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Feedback.d.ts","sourceRoot":"","sources":["../../../../../src/mappings/NativeBase/Feedback.ts"],"names":[],"mappings":"AA0BA,eAAO,MAAM,SAAS,MAyErB,CAAC"}
|