@draftbit/core 47.0.1-2aab54.2 → 47.0.1-411297.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/Checkbox/CheckboxGroup.js +2 -17
- package/lib/commonjs/index.js +82 -25
- package/lib/commonjs/mappings/FlashList.js +45 -2
- package/lib/commonjs/mappings/FlatList.js +12 -0
- package/lib/module/index.js +31 -121
- package/lib/module/mappings/FlashList.js +46 -3
- package/lib/module/mappings/FlatList.js +13 -1
- package/lib/typescript/src/index.d.ts +29 -102
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/mappings/FlashList.d.ts +112 -2
- package/lib/typescript/src/mappings/FlashList.d.ts.map +1 -1
- package/lib/typescript/src/mappings/FlatList.d.ts +42 -0
- package/lib/typescript/src/mappings/FlatList.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/index.js +31 -112
- package/src/index.tsx +43 -123
- package/src/mappings/FlashList.js +77 -31
- package/src/mappings/FlashList.ts +82 -30
- package/src/mappings/FlatList.js +13 -1
- package/src/mappings/FlatList.ts +16 -0
- package/lib/commonjs/mappings/NativeBase/AlertDialog.js +0 -93
- package/lib/commonjs/mappings/NativeBase/Button.js +0 -84
- package/lib/commonjs/mappings/NativeBase/DataDisplay.js +0 -48
- package/lib/commonjs/mappings/NativeBase/Feedback.js +0 -74
- package/lib/commonjs/mappings/NativeBase/Layout.js +0 -114
- package/lib/commonjs/mappings/NativeBase/Media.js +0 -49
- package/lib/commonjs/mappings/NativeBase/Menu.js +0 -111
- package/lib/commonjs/mappings/NativeBase/Modal.js +0 -93
- package/lib/commonjs/mappings/NativeBase/Other.js +0 -94
- package/lib/commonjs/mappings/NativeBase/Popover.js +0 -99
- package/lib/module/mappings/NativeBase/AlertDialog.js +0 -86
- package/lib/module/mappings/NativeBase/Button.js +0 -86
- package/lib/module/mappings/NativeBase/DataDisplay.js +0 -41
- package/lib/module/mappings/NativeBase/Feedback.js +0 -67
- package/lib/module/mappings/NativeBase/Layout.js +0 -107
- package/lib/module/mappings/NativeBase/Media.js +0 -42
- package/lib/module/mappings/NativeBase/Menu.js +0 -104
- package/lib/module/mappings/NativeBase/Modal.js +0 -86
- package/lib/module/mappings/NativeBase/Other.js +0 -87
- package/lib/module/mappings/NativeBase/Popover.js +0 -92
- package/lib/typescript/src/mappings/NativeBase/AlertDialog.d.ts +0 -134
- package/lib/typescript/src/mappings/NativeBase/AlertDialog.d.ts.map +0 -1
- package/lib/typescript/src/mappings/NativeBase/Button.d.ts +0 -1
- package/lib/typescript/src/mappings/NativeBase/Button.d.ts.map +0 -1
- package/lib/typescript/src/mappings/NativeBase/DataDisplay.d.ts +0 -70
- package/lib/typescript/src/mappings/NativeBase/DataDisplay.d.ts.map +0 -1
- package/lib/typescript/src/mappings/NativeBase/Feedback.d.ts +0 -2
- package/lib/typescript/src/mappings/NativeBase/Feedback.d.ts.map +0 -1
- package/lib/typescript/src/mappings/NativeBase/Layout.d.ts +0 -146
- package/lib/typescript/src/mappings/NativeBase/Layout.d.ts.map +0 -1
- package/lib/typescript/src/mappings/NativeBase/Media.d.ts +0 -48
- package/lib/typescript/src/mappings/NativeBase/Media.d.ts.map +0 -1
- package/lib/typescript/src/mappings/NativeBase/Menu.d.ts +0 -227
- package/lib/typescript/src/mappings/NativeBase/Menu.d.ts.map +0 -1
- package/lib/typescript/src/mappings/NativeBase/Modal.d.ts +0 -133
- package/lib/typescript/src/mappings/NativeBase/Modal.d.ts.map +0 -1
- package/lib/typescript/src/mappings/NativeBase/Other.d.ts +0 -179
- package/lib/typescript/src/mappings/NativeBase/Other.d.ts.map +0 -1
- package/lib/typescript/src/mappings/NativeBase/Popover.d.ts +0 -136
- package/lib/typescript/src/mappings/NativeBase/Popover.d.ts.map +0 -1
- package/src/mappings/NativeBase/AlertDialog.js +0 -103
- package/src/mappings/NativeBase/AlertDialog.ts +0 -118
- package/src/mappings/NativeBase/Button.js +0 -84
- package/src/mappings/NativeBase/Button.ts +0 -83
- package/src/mappings/NativeBase/DataDisplay.js +0 -54
- package/src/mappings/NativeBase/DataDisplay.ts +0 -64
- package/src/mappings/NativeBase/Feedback.js +0 -89
- package/src/mappings/NativeBase/Feedback.ts +0 -100
- package/src/mappings/NativeBase/Layout.js +0 -140
- package/src/mappings/NativeBase/Layout.ts +0 -152
- package/src/mappings/NativeBase/Media.js +0 -56
- package/src/mappings/NativeBase/Media.ts +0 -65
- package/src/mappings/NativeBase/Menu.js +0 -134
- package/src/mappings/NativeBase/Menu.ts +0 -150
- package/src/mappings/NativeBase/Modal.js +0 -103
- package/src/mappings/NativeBase/Modal.ts +0 -118
- package/src/mappings/NativeBase/Other.js +0 -123
- package/src/mappings/NativeBase/Other.ts +0 -139
- package/src/mappings/NativeBase/Popover.js +0 -123
- package/src/mappings/NativeBase/Popover.ts +0 -136
|
@@ -2,123 +2,50 @@ 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
|
-
|
|
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";
|
|
5
|
+
export { Link } from "./components/Text";
|
|
19
6
|
export { default as Banner } from "./components/Banner";
|
|
20
7
|
export { Button, ButtonSolid, ButtonOutline } from "./components/Button";
|
|
21
|
-
export {
|
|
8
|
+
export { default as Avatar } from "./components/CircleImage";
|
|
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";
|
|
22
18
|
export { default as IconButton } from "./components/IconButton";
|
|
23
|
-
export { default as
|
|
24
|
-
export { default as
|
|
25
|
-
export { default as DatePicker } from "./components/DatePicker/DatePicker";
|
|
19
|
+
export { default as Image } from "./components/Image";
|
|
20
|
+
export { default as SVG } from "./components/SVG";
|
|
26
21
|
export { default as NumberInput } from "./components/NumberInput";
|
|
27
|
-
export { default as
|
|
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";
|
|
22
|
+
export { default as ScreenContainer } from "./components/ScreenContainer";
|
|
34
23
|
export { default as StarRating } from "./components/StarRating";
|
|
24
|
+
export { default as Surface } from "./components/Surface";
|
|
35
25
|
export { default as Switch, SwitchRow } from "./components/Switch";
|
|
36
|
-
export { default as
|
|
37
|
-
export { default as
|
|
38
|
-
export { default as
|
|
39
|
-
export { default as CircleImage } from "./components/CircleImage";
|
|
40
|
-
export { Swiper, SwiperItem } from "./components/Swiper";
|
|
26
|
+
export { default as TextField } from "./components/TextField";
|
|
27
|
+
export { default as ToggleButton } from "./components/ToggleButton";
|
|
28
|
+
export { default as Touchable } from "./components/Touchable";
|
|
41
29
|
export { AccordionGroup, AccordionItem } from "./components/Accordion";
|
|
42
|
-
export { default as Surface } from "./components/Surface";
|
|
43
30
|
export { ActionSheet, ActionSheetItem, ActionSheetCancel, } from "./components/ActionSheet";
|
|
44
|
-
export {
|
|
45
|
-
export {
|
|
31
|
+
export { Swiper, SwiperItem } from "./components/Swiper";
|
|
32
|
+
export { Center, Circle, Square, Row, Stack, Spacer, } from "./components/Layout";
|
|
33
|
+
export { RadioButton, RadioButtonGroup, RadioButtonRow, RadioButtonFieldGroup, } from "./components/RadioButton/index";
|
|
34
|
+
export { default as CardBlock } from "./components/CardBlock";
|
|
35
|
+
export { default as CardContainer } from "./components/CardContainer";
|
|
36
|
+
export { default as CardContainerRating } from "./components/CardContainerRating";
|
|
37
|
+
export { default as CardInline } from "./components/CardInline";
|
|
38
|
+
export { default as DatePicker } from "./components/DatePicker/DatePicker";
|
|
46
39
|
export { default as HeaderLarge } from "./components/HeaderLarge";
|
|
47
40
|
export { default as HeaderMedium } from "./components/HeaderMedium";
|
|
48
41
|
export { default as HeaderOverline } from "./components/HeaderOverline";
|
|
42
|
+
export { default as Picker } from "./components/Picker/Picker";
|
|
49
43
|
export { default as ProgressBar } from "./components/ProgressBar";
|
|
50
44
|
export { default as ProgressCircle } from "./components/ProgressCircle";
|
|
51
45
|
export { default as RowBodyIcon } from "./components/RowBodyIcon";
|
|
52
46
|
export { default as RowHeadlineImageCaption } from "./components/RowHeadlineImageCaption";
|
|
53
47
|
export { default as RowHeadlineImageIcon } from "./components/RowHeadlineImageIcon";
|
|
54
|
-
export { default as
|
|
55
|
-
export { default as
|
|
56
|
-
export { default as CardContainer } from "./components/CardContainer";
|
|
57
|
-
export { default as CardContainerRating } from "./components/CardContainerRating";
|
|
58
|
-
export { default as CardInline } from "./components/CardInline";
|
|
48
|
+
export { default as Slider } from "./components/Slider";
|
|
49
|
+
export { default as Stepper } from "./components/Stepper";
|
|
59
50
|
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
|
-
* */
|
|
124
51
|
//# 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
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const SEED_DATA: {
|
|
1
|
+
export declare const SEED_DATA: ({
|
|
2
2
|
name: string;
|
|
3
3
|
tag: string;
|
|
4
4
|
description: string;
|
|
@@ -8,7 +8,105 @@ export declare const SEED_DATA: {
|
|
|
8
8
|
layout: {
|
|
9
9
|
flex: number;
|
|
10
10
|
};
|
|
11
|
+
triggers: string[];
|
|
11
12
|
props: {
|
|
13
|
+
onRefresh: {
|
|
14
|
+
label: string;
|
|
15
|
+
description: string;
|
|
16
|
+
editable: boolean;
|
|
17
|
+
required: boolean;
|
|
18
|
+
formType: string;
|
|
19
|
+
propType: string;
|
|
20
|
+
defaultValue: null;
|
|
21
|
+
group: string;
|
|
22
|
+
};
|
|
23
|
+
onEndReached: {
|
|
24
|
+
label: string;
|
|
25
|
+
description: string;
|
|
26
|
+
editable: boolean;
|
|
27
|
+
required: boolean;
|
|
28
|
+
formType: string;
|
|
29
|
+
propType: string;
|
|
30
|
+
defaultValue: null;
|
|
31
|
+
group: string;
|
|
32
|
+
};
|
|
33
|
+
numColumns: {
|
|
34
|
+
label: string;
|
|
35
|
+
description: string;
|
|
36
|
+
group: string;
|
|
37
|
+
formType: string;
|
|
38
|
+
propType: string;
|
|
39
|
+
defaultValue: number;
|
|
40
|
+
editable: boolean;
|
|
41
|
+
required: boolean;
|
|
42
|
+
};
|
|
43
|
+
estimatedItemSize: {
|
|
44
|
+
label: string;
|
|
45
|
+
description: string;
|
|
46
|
+
formType: string;
|
|
47
|
+
propType: string;
|
|
48
|
+
group: string;
|
|
49
|
+
defaultValue: null;
|
|
50
|
+
editable: boolean;
|
|
51
|
+
required: boolean;
|
|
52
|
+
step: number;
|
|
53
|
+
};
|
|
54
|
+
optimizeItemArrangement: {
|
|
55
|
+
label: string;
|
|
56
|
+
description: string;
|
|
57
|
+
formType: string;
|
|
58
|
+
propType: string;
|
|
59
|
+
defaultValue: boolean;
|
|
60
|
+
editable: boolean;
|
|
61
|
+
required: boolean;
|
|
62
|
+
group: string;
|
|
63
|
+
};
|
|
64
|
+
onEndReachedThreshold: {
|
|
65
|
+
label: string;
|
|
66
|
+
description: string;
|
|
67
|
+
formType: string;
|
|
68
|
+
propType: string;
|
|
69
|
+
group: string;
|
|
70
|
+
defaultValue: null;
|
|
71
|
+
editable: boolean;
|
|
72
|
+
required: boolean;
|
|
73
|
+
step: number;
|
|
74
|
+
};
|
|
75
|
+
horizontal?: undefined;
|
|
76
|
+
inverted?: undefined;
|
|
77
|
+
};
|
|
78
|
+
} | {
|
|
79
|
+
name: string;
|
|
80
|
+
tag: string;
|
|
81
|
+
description: string;
|
|
82
|
+
packageName: string;
|
|
83
|
+
category: string;
|
|
84
|
+
stylesPanelSections: string[];
|
|
85
|
+
layout: {
|
|
86
|
+
flex: number;
|
|
87
|
+
};
|
|
88
|
+
triggers: string[];
|
|
89
|
+
props: {
|
|
90
|
+
onRefresh: {
|
|
91
|
+
label: string;
|
|
92
|
+
description: string;
|
|
93
|
+
editable: boolean;
|
|
94
|
+
required: boolean;
|
|
95
|
+
formType: string;
|
|
96
|
+
propType: string;
|
|
97
|
+
defaultValue: null;
|
|
98
|
+
group: string;
|
|
99
|
+
};
|
|
100
|
+
onEndReached: {
|
|
101
|
+
label: string;
|
|
102
|
+
description: string;
|
|
103
|
+
editable: boolean;
|
|
104
|
+
required: boolean;
|
|
105
|
+
formType: string;
|
|
106
|
+
propType: string;
|
|
107
|
+
defaultValue: null;
|
|
108
|
+
group: string;
|
|
109
|
+
};
|
|
12
110
|
estimatedItemSize: {
|
|
13
111
|
label: string;
|
|
14
112
|
description: string;
|
|
@@ -50,6 +148,18 @@ export declare const SEED_DATA: {
|
|
|
50
148
|
editable: boolean;
|
|
51
149
|
required: boolean;
|
|
52
150
|
};
|
|
151
|
+
onEndReachedThreshold: {
|
|
152
|
+
label: string;
|
|
153
|
+
description: string;
|
|
154
|
+
formType: string;
|
|
155
|
+
propType: string;
|
|
156
|
+
group: string;
|
|
157
|
+
defaultValue: null;
|
|
158
|
+
editable: boolean;
|
|
159
|
+
required: boolean;
|
|
160
|
+
step: number;
|
|
161
|
+
};
|
|
162
|
+
optimizeItemArrangement?: undefined;
|
|
53
163
|
};
|
|
54
|
-
};
|
|
164
|
+
})[];
|
|
55
165
|
//# sourceMappingURL=FlashList.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FlashList.d.ts","sourceRoot":"","sources":["../../../../src/mappings/FlashList.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FlashList.d.ts","sourceRoot":"","sources":["../../../../src/mappings/FlashList.ts"],"names":[],"mappings":"AAYA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAgFrB,CAAC"}
|
|
@@ -7,7 +7,28 @@ export declare const SEED_DATA: {
|
|
|
7
7
|
layout: {
|
|
8
8
|
flex: number;
|
|
9
9
|
};
|
|
10
|
+
triggers: string[];
|
|
10
11
|
props: {
|
|
12
|
+
onRefresh: {
|
|
13
|
+
label: string;
|
|
14
|
+
description: string;
|
|
15
|
+
editable: boolean;
|
|
16
|
+
required: boolean;
|
|
17
|
+
formType: string;
|
|
18
|
+
propType: string;
|
|
19
|
+
defaultValue: null;
|
|
20
|
+
group: string;
|
|
21
|
+
};
|
|
22
|
+
onEndReached: {
|
|
23
|
+
label: string;
|
|
24
|
+
description: string;
|
|
25
|
+
editable: boolean;
|
|
26
|
+
required: boolean;
|
|
27
|
+
formType: string;
|
|
28
|
+
propType: string;
|
|
29
|
+
defaultValue: null;
|
|
30
|
+
group: string;
|
|
31
|
+
};
|
|
11
32
|
horizontal: {
|
|
12
33
|
label: string;
|
|
13
34
|
description: string;
|
|
@@ -38,6 +59,27 @@ export declare const SEED_DATA: {
|
|
|
38
59
|
editable: boolean;
|
|
39
60
|
required: boolean;
|
|
40
61
|
};
|
|
62
|
+
initialNumToRender: {
|
|
63
|
+
label: string;
|
|
64
|
+
description: string;
|
|
65
|
+
formType: string;
|
|
66
|
+
propType: string;
|
|
67
|
+
defaultValue: boolean;
|
|
68
|
+
editable: boolean;
|
|
69
|
+
required: boolean;
|
|
70
|
+
group: string;
|
|
71
|
+
};
|
|
72
|
+
onEndReachedThreshold: {
|
|
73
|
+
label: string;
|
|
74
|
+
description: string;
|
|
75
|
+
formType: string;
|
|
76
|
+
propType: string;
|
|
77
|
+
group: string;
|
|
78
|
+
defaultValue: null;
|
|
79
|
+
editable: boolean;
|
|
80
|
+
required: boolean;
|
|
81
|
+
step: number;
|
|
82
|
+
};
|
|
41
83
|
};
|
|
42
84
|
};
|
|
43
85
|
//# sourceMappingURL=FlatList.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FlatList.d.ts","sourceRoot":"","sources":["../../../../src/mappings/FlatList.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FlatList.d.ts","sourceRoot":"","sources":["../../../../src/mappings/FlatList.ts"],"names":[],"mappings":"AAUA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmCrB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@draftbit/core",
|
|
3
|
-
"version": "47.0.1-
|
|
3
|
+
"version": "47.0.1-411297.2+4112978",
|
|
4
4
|
"description": "Core (non-native) Components",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"module": "lib/module/index.js",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@date-io/date-fns": "^1.3.13",
|
|
43
43
|
"@draftbit/react-theme-provider": "^2.1.1",
|
|
44
|
-
"@draftbit/types": "^47.0.1-
|
|
44
|
+
"@draftbit/types": "^47.0.1-411297.2+4112978",
|
|
45
45
|
"@material-ui/core": "^4.11.0",
|
|
46
46
|
"@material-ui/pickers": "^3.2.10",
|
|
47
47
|
"@react-native-community/slider": "4.2.4",
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
]
|
|
92
92
|
]
|
|
93
93
|
},
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "411297805f3f3c6c7cbd2e6dd0154ed6e500d936"
|
|
95
95
|
}
|
package/src/index.js
CHANGED
|
@@ -2,132 +2,51 @@ 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
|
-
|
|
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
|
-
// BASIC
|
|
19
|
-
export { default as ScreenContainer } from "./components/ScreenContainer";
|
|
5
|
+
export { Link } from "./components/Text";
|
|
20
6
|
export { default as Banner } from "./components/Banner";
|
|
21
|
-
// BUTTONS
|
|
22
7
|
export { Button, ButtonSolid, ButtonOutline } from "./components/Button";
|
|
23
|
-
export {
|
|
8
|
+
export { default as Avatar } from "./components/CircleImage";
|
|
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";
|
|
24
18
|
export { default as IconButton } from "./components/IconButton";
|
|
25
|
-
export { default as
|
|
26
|
-
export { default as
|
|
27
|
-
// INPUTS
|
|
28
|
-
export { default as DatePicker } from "./components/DatePicker/DatePicker";
|
|
19
|
+
export { default as Image } from "./components/Image";
|
|
20
|
+
export { default as SVG } from "./components/SVG";
|
|
29
21
|
export { default as NumberInput } from "./components/NumberInput";
|
|
30
|
-
export { default as
|
|
31
|
-
export { default as FieldSearchBarFull } from "./components/FieldSearchBarFull";
|
|
32
|
-
export { default as Picker } from "./components/Picker/Picker";
|
|
33
|
-
// CONTROLS
|
|
34
|
-
export { Checkbox, CheckboxGroup, CheckboxRow } from "./components/Checkbox";
|
|
35
|
-
export { RadioButton, RadioButtonGroup, RadioButtonRow, RadioButtonFieldGroup, } from "./components/RadioButton/index";
|
|
36
|
-
export { default as Slider } from "./components/Slider";
|
|
37
|
-
export { default as Stepper } from "./components/Stepper";
|
|
22
|
+
export { default as ScreenContainer } from "./components/ScreenContainer";
|
|
38
23
|
export { default as StarRating } from "./components/StarRating";
|
|
24
|
+
export { default as Surface } from "./components/Surface";
|
|
39
25
|
export { default as Switch, SwitchRow } from "./components/Switch";
|
|
40
|
-
|
|
41
|
-
export { default as
|
|
42
|
-
export { default as
|
|
43
|
-
// export { default as Avatar } from "./components/CircleImage"; Replaced by NativeBase
|
|
44
|
-
export { default as AvatarEdit } from "./components/AvatarEdit";
|
|
45
|
-
export { default as CircleImage } from "./components/CircleImage";
|
|
46
|
-
// SWIPER
|
|
47
|
-
export { Swiper, SwiperItem } from "./components/Swiper";
|
|
48
|
-
// CONTAINERS
|
|
26
|
+
export { default as TextField } from "./components/TextField";
|
|
27
|
+
export { default as ToggleButton } from "./components/ToggleButton";
|
|
28
|
+
export { default as Touchable } from "./components/Touchable";
|
|
49
29
|
export { AccordionGroup, AccordionItem } from "./components/Accordion";
|
|
50
|
-
export { default as Surface } from "./components/Surface";
|
|
51
|
-
// ACTIONSHEET
|
|
52
30
|
export { ActionSheet, ActionSheetItem, ActionSheetCancel, } from "./components/ActionSheet";
|
|
53
|
-
|
|
54
|
-
export {
|
|
55
|
-
export {
|
|
31
|
+
export { Swiper, SwiperItem } from "./components/Swiper";
|
|
32
|
+
export { Center, Circle, Square, Row, Stack, Spacer, } from "./components/Layout";
|
|
33
|
+
export { RadioButton, RadioButtonGroup, RadioButtonRow, RadioButtonFieldGroup, } from "./components/RadioButton/index";
|
|
34
|
+
/* Deprecated: Fix or Delete! */
|
|
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";
|
|
56
40
|
export { default as HeaderLarge } from "./components/HeaderLarge";
|
|
57
41
|
export { default as HeaderMedium } from "./components/HeaderMedium";
|
|
58
42
|
export { default as HeaderOverline } from "./components/HeaderOverline";
|
|
43
|
+
export { default as Picker } from "./components/Picker/Picker";
|
|
59
44
|
export { default as ProgressBar } from "./components/ProgressBar";
|
|
60
45
|
export { default as ProgressCircle } from "./components/ProgressCircle";
|
|
61
46
|
export { default as RowBodyIcon } from "./components/RowBodyIcon";
|
|
62
47
|
export { default as RowHeadlineImageCaption } from "./components/RowHeadlineImageCaption";
|
|
63
48
|
export { default as RowHeadlineImageIcon } from "./components/RowHeadlineImageIcon";
|
|
64
|
-
export { default as
|
|
65
|
-
export { default as
|
|
66
|
-
export { default as CardContainer } from "./components/CardContainer";
|
|
67
|
-
export { default as CardContainerRating } from "./components/CardContainerRating";
|
|
68
|
-
export { default as CardInline } from "./components/CardInline";
|
|
49
|
+
export { default as Slider } from "./components/Slider";
|
|
50
|
+
export { default as Stepper } from "./components/Stepper";
|
|
69
51
|
export { useAuthState } from "./components/useAuthState";
|
|
70
|
-
|
|
71
|
-
* NativeBase Components Jan 2023
|
|
72
|
-
*
|
|
73
|
-
* ALERT
|
|
74
|
-
* - AlertDialog
|
|
75
|
-
* - AlertDialog.Header
|
|
76
|
-
* - AlertDialog.Body
|
|
77
|
-
* - AlertDialog.Footer
|
|
78
|
-
* - AlertDialog.Content
|
|
79
|
-
* - AlertDialog.CloseButton
|
|
80
|
-
*
|
|
81
|
-
* FORMS
|
|
82
|
-
* - Button -- COMMENTED OUT
|
|
83
|
-
* - Button.Group -- COMMENTED OUT
|
|
84
|
-
* - Fab
|
|
85
|
-
*
|
|
86
|
-
* DATA DISPLAY
|
|
87
|
-
* - Badge
|
|
88
|
-
* - Divider
|
|
89
|
-
*
|
|
90
|
-
* FEEDBACK
|
|
91
|
-
* - Alert
|
|
92
|
-
* - Alert.Icon
|
|
93
|
-
* - Progress
|
|
94
|
-
*
|
|
95
|
-
* LAYOUT
|
|
96
|
-
* - AspectRatio
|
|
97
|
-
* - Box
|
|
98
|
-
* - Center
|
|
99
|
-
* - Square
|
|
100
|
-
* - Circle
|
|
101
|
-
* - Column
|
|
102
|
-
* - Container
|
|
103
|
-
* - Flex
|
|
104
|
-
* - Spacer
|
|
105
|
-
* - Row
|
|
106
|
-
* - Stack
|
|
107
|
-
* - ZStack
|
|
108
|
-
*
|
|
109
|
-
* MEDIA
|
|
110
|
-
* - Avatar
|
|
111
|
-
* - Avatar.Badge
|
|
112
|
-
* - Avatar.Group
|
|
113
|
-
*
|
|
114
|
-
* MENU
|
|
115
|
-
* - Menu
|
|
116
|
-
* - Menu.Item
|
|
117
|
-
* - Menu.Group
|
|
118
|
-
* - Menu.OptionGroup
|
|
119
|
-
* - Menu.ItemOption
|
|
120
|
-
* - Menu.Trigger
|
|
121
|
-
*
|
|
122
|
-
* MODAL
|
|
123
|
-
* - Modal
|
|
124
|
-
* - Modal.Content
|
|
125
|
-
* - Modal.Header
|
|
126
|
-
* - Modal.Footer
|
|
127
|
-
* - Modal.Body
|
|
128
|
-
* - Modal.CloseButton
|
|
129
|
-
*
|
|
130
|
-
* OTHER
|
|
131
|
-
* - Tooltip
|
|
132
|
-
*
|
|
133
|
-
* */
|
|
52
|
+
// a comment to fix sourcemap comment issue
|