react-crud-mobile 1.3.511 → 1.3.513
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/dist/index.d.mts +44 -44
- package/dist/index.d.ts +44 -44
- package/dist/index.js +700 -565
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +660 -525
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { ListType, UserType, DefineType, InputType, ButtonType, LinkType, IconType, ContainerType, TabsType, ChartType, ListInputType, SliderType } from 'react-crud-utils';
|
|
3
3
|
import { StyleProp, ViewStyle } from 'react-native';
|
|
4
4
|
|
|
@@ -7,51 +7,51 @@ interface SafeViewType {
|
|
|
7
7
|
viewStyle?: StyleProp<ViewStyle> | any;
|
|
8
8
|
children?: any;
|
|
9
9
|
}
|
|
10
|
-
declare function SafeView(props: SafeViewType):
|
|
10
|
+
declare function SafeView(props: SafeViewType): react_jsx_runtime.JSX.Element;
|
|
11
11
|
|
|
12
12
|
declare const UI: {
|
|
13
|
-
Order: (props: ListType) =>
|
|
14
|
-
List: (props: ListType) =>
|
|
15
|
-
Row: (props: UserType) =>
|
|
16
|
-
Value: (props: UserType) =>
|
|
17
|
-
Label: (props: UserType) =>
|
|
18
|
-
Repeat: (props: ListType) =>
|
|
19
|
-
Define: (props: DefineType) =>
|
|
20
|
-
Include: (props: DefineType) =>
|
|
21
|
-
Column: ({ type, ...props }: UserType) =>
|
|
22
|
-
Input: (props: InputType) =>
|
|
23
|
-
Text: (props: InputType) =>
|
|
24
|
-
Textarea: (props: InputType) =>
|
|
25
|
-
Email: (props: InputType) =>
|
|
26
|
-
Button: (props: ButtonType) =>
|
|
27
|
-
Link: (props: LinkType) =>
|
|
28
|
-
Icon: (props: IconType) =>
|
|
29
|
-
Output: (props: ContainerType) =>
|
|
30
|
-
Form: (props: ContainerType) =>
|
|
31
|
-
Crud: (props: ContainerType) =>
|
|
32
|
-
View: (props: ContainerType) =>
|
|
33
|
-
Bottom: (props: ContainerType) =>
|
|
34
|
-
Dialog: (props: ContainerType) =>
|
|
35
|
-
Content: (props: ContainerType) =>
|
|
36
|
-
Top: (props: ContainerType) =>
|
|
37
|
-
Card: (props: ContainerType) =>
|
|
38
|
-
Tab: (props: ContainerType) =>
|
|
39
|
-
Tabs: (props: TabsType) =>
|
|
40
|
-
Step: (props: ContainerType) =>
|
|
41
|
-
Stepper: (props: TabsType) =>
|
|
42
|
-
Money: (props: InputType) =>
|
|
43
|
-
Chart: (props: ChartType) =>
|
|
44
|
-
Password: (props: InputType) =>
|
|
45
|
-
Complete: (props: InputType) =>
|
|
46
|
-
Checkbox: (props: InputType) =>
|
|
47
|
-
Switch: (props: InputType) =>
|
|
48
|
-
Radio: (props: ListInputType) =>
|
|
49
|
-
Select: (props: ListInputType) =>
|
|
50
|
-
Toggle: (props: ListInputType) =>
|
|
51
|
-
Entity: (props: ListInputType) =>
|
|
52
|
-
Element: (props: ListInputType) =>
|
|
53
|
-
Quantity: (props: ListInputType) =>
|
|
54
|
-
Slider: (props: SliderType) =>
|
|
13
|
+
Order: (props: ListType) => react_jsx_runtime.JSX.Element;
|
|
14
|
+
List: (props: ListType) => react_jsx_runtime.JSX.Element;
|
|
15
|
+
Row: (props: UserType) => react_jsx_runtime.JSX.Element;
|
|
16
|
+
Value: (props: UserType) => react_jsx_runtime.JSX.Element;
|
|
17
|
+
Label: (props: UserType) => react_jsx_runtime.JSX.Element;
|
|
18
|
+
Repeat: (props: ListType) => react_jsx_runtime.JSX.Element;
|
|
19
|
+
Define: (props: DefineType) => react_jsx_runtime.JSX.Element;
|
|
20
|
+
Include: (props: DefineType) => react_jsx_runtime.JSX.Element;
|
|
21
|
+
Column: ({ type, ...props }: UserType) => react_jsx_runtime.JSX.Element;
|
|
22
|
+
Input: (props: InputType) => react_jsx_runtime.JSX.Element;
|
|
23
|
+
Text: (props: InputType) => react_jsx_runtime.JSX.Element;
|
|
24
|
+
Textarea: (props: InputType) => react_jsx_runtime.JSX.Element;
|
|
25
|
+
Email: (props: InputType) => react_jsx_runtime.JSX.Element;
|
|
26
|
+
Button: (props: ButtonType) => react_jsx_runtime.JSX.Element;
|
|
27
|
+
Link: (props: LinkType) => react_jsx_runtime.JSX.Element;
|
|
28
|
+
Icon: (props: IconType) => react_jsx_runtime.JSX.Element;
|
|
29
|
+
Output: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
30
|
+
Form: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
31
|
+
Crud: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
32
|
+
View: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
33
|
+
Bottom: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
34
|
+
Dialog: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
35
|
+
Content: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
36
|
+
Top: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
37
|
+
Card: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
38
|
+
Tab: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
39
|
+
Tabs: (props: TabsType) => react_jsx_runtime.JSX.Element;
|
|
40
|
+
Step: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
41
|
+
Stepper: (props: TabsType) => react_jsx_runtime.JSX.Element;
|
|
42
|
+
Money: (props: InputType) => react_jsx_runtime.JSX.Element;
|
|
43
|
+
Chart: (props: ChartType) => react_jsx_runtime.JSX.Element;
|
|
44
|
+
Password: (props: InputType) => react_jsx_runtime.JSX.Element;
|
|
45
|
+
Complete: (props: InputType) => react_jsx_runtime.JSX.Element;
|
|
46
|
+
Checkbox: (props: InputType) => react_jsx_runtime.JSX.Element;
|
|
47
|
+
Switch: (props: InputType) => react_jsx_runtime.JSX.Element;
|
|
48
|
+
Radio: (props: ListInputType) => react_jsx_runtime.JSX.Element;
|
|
49
|
+
Select: (props: ListInputType) => react_jsx_runtime.JSX.Element;
|
|
50
|
+
Toggle: (props: ListInputType) => react_jsx_runtime.JSX.Element;
|
|
51
|
+
Entity: (props: ListInputType) => react_jsx_runtime.JSX.Element;
|
|
52
|
+
Element: (props: ListInputType) => react_jsx_runtime.JSX.Element;
|
|
53
|
+
Quantity: (props: ListInputType) => react_jsx_runtime.JSX.Element;
|
|
54
|
+
Slider: (props: SliderType) => react_jsx_runtime.JSX.Element;
|
|
55
55
|
SafeView: typeof SafeView;
|
|
56
56
|
};
|
|
57
57
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { ListType, UserType, DefineType, InputType, ButtonType, LinkType, IconType, ContainerType, TabsType, ChartType, ListInputType, SliderType } from 'react-crud-utils';
|
|
3
3
|
import { StyleProp, ViewStyle } from 'react-native';
|
|
4
4
|
|
|
@@ -7,51 +7,51 @@ interface SafeViewType {
|
|
|
7
7
|
viewStyle?: StyleProp<ViewStyle> | any;
|
|
8
8
|
children?: any;
|
|
9
9
|
}
|
|
10
|
-
declare function SafeView(props: SafeViewType):
|
|
10
|
+
declare function SafeView(props: SafeViewType): react_jsx_runtime.JSX.Element;
|
|
11
11
|
|
|
12
12
|
declare const UI: {
|
|
13
|
-
Order: (props: ListType) =>
|
|
14
|
-
List: (props: ListType) =>
|
|
15
|
-
Row: (props: UserType) =>
|
|
16
|
-
Value: (props: UserType) =>
|
|
17
|
-
Label: (props: UserType) =>
|
|
18
|
-
Repeat: (props: ListType) =>
|
|
19
|
-
Define: (props: DefineType) =>
|
|
20
|
-
Include: (props: DefineType) =>
|
|
21
|
-
Column: ({ type, ...props }: UserType) =>
|
|
22
|
-
Input: (props: InputType) =>
|
|
23
|
-
Text: (props: InputType) =>
|
|
24
|
-
Textarea: (props: InputType) =>
|
|
25
|
-
Email: (props: InputType) =>
|
|
26
|
-
Button: (props: ButtonType) =>
|
|
27
|
-
Link: (props: LinkType) =>
|
|
28
|
-
Icon: (props: IconType) =>
|
|
29
|
-
Output: (props: ContainerType) =>
|
|
30
|
-
Form: (props: ContainerType) =>
|
|
31
|
-
Crud: (props: ContainerType) =>
|
|
32
|
-
View: (props: ContainerType) =>
|
|
33
|
-
Bottom: (props: ContainerType) =>
|
|
34
|
-
Dialog: (props: ContainerType) =>
|
|
35
|
-
Content: (props: ContainerType) =>
|
|
36
|
-
Top: (props: ContainerType) =>
|
|
37
|
-
Card: (props: ContainerType) =>
|
|
38
|
-
Tab: (props: ContainerType) =>
|
|
39
|
-
Tabs: (props: TabsType) =>
|
|
40
|
-
Step: (props: ContainerType) =>
|
|
41
|
-
Stepper: (props: TabsType) =>
|
|
42
|
-
Money: (props: InputType) =>
|
|
43
|
-
Chart: (props: ChartType) =>
|
|
44
|
-
Password: (props: InputType) =>
|
|
45
|
-
Complete: (props: InputType) =>
|
|
46
|
-
Checkbox: (props: InputType) =>
|
|
47
|
-
Switch: (props: InputType) =>
|
|
48
|
-
Radio: (props: ListInputType) =>
|
|
49
|
-
Select: (props: ListInputType) =>
|
|
50
|
-
Toggle: (props: ListInputType) =>
|
|
51
|
-
Entity: (props: ListInputType) =>
|
|
52
|
-
Element: (props: ListInputType) =>
|
|
53
|
-
Quantity: (props: ListInputType) =>
|
|
54
|
-
Slider: (props: SliderType) =>
|
|
13
|
+
Order: (props: ListType) => react_jsx_runtime.JSX.Element;
|
|
14
|
+
List: (props: ListType) => react_jsx_runtime.JSX.Element;
|
|
15
|
+
Row: (props: UserType) => react_jsx_runtime.JSX.Element;
|
|
16
|
+
Value: (props: UserType) => react_jsx_runtime.JSX.Element;
|
|
17
|
+
Label: (props: UserType) => react_jsx_runtime.JSX.Element;
|
|
18
|
+
Repeat: (props: ListType) => react_jsx_runtime.JSX.Element;
|
|
19
|
+
Define: (props: DefineType) => react_jsx_runtime.JSX.Element;
|
|
20
|
+
Include: (props: DefineType) => react_jsx_runtime.JSX.Element;
|
|
21
|
+
Column: ({ type, ...props }: UserType) => react_jsx_runtime.JSX.Element;
|
|
22
|
+
Input: (props: InputType) => react_jsx_runtime.JSX.Element;
|
|
23
|
+
Text: (props: InputType) => react_jsx_runtime.JSX.Element;
|
|
24
|
+
Textarea: (props: InputType) => react_jsx_runtime.JSX.Element;
|
|
25
|
+
Email: (props: InputType) => react_jsx_runtime.JSX.Element;
|
|
26
|
+
Button: (props: ButtonType) => react_jsx_runtime.JSX.Element;
|
|
27
|
+
Link: (props: LinkType) => react_jsx_runtime.JSX.Element;
|
|
28
|
+
Icon: (props: IconType) => react_jsx_runtime.JSX.Element;
|
|
29
|
+
Output: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
30
|
+
Form: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
31
|
+
Crud: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
32
|
+
View: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
33
|
+
Bottom: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
34
|
+
Dialog: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
35
|
+
Content: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
36
|
+
Top: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
37
|
+
Card: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
38
|
+
Tab: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
39
|
+
Tabs: (props: TabsType) => react_jsx_runtime.JSX.Element;
|
|
40
|
+
Step: (props: ContainerType) => react_jsx_runtime.JSX.Element;
|
|
41
|
+
Stepper: (props: TabsType) => react_jsx_runtime.JSX.Element;
|
|
42
|
+
Money: (props: InputType) => react_jsx_runtime.JSX.Element;
|
|
43
|
+
Chart: (props: ChartType) => react_jsx_runtime.JSX.Element;
|
|
44
|
+
Password: (props: InputType) => react_jsx_runtime.JSX.Element;
|
|
45
|
+
Complete: (props: InputType) => react_jsx_runtime.JSX.Element;
|
|
46
|
+
Checkbox: (props: InputType) => react_jsx_runtime.JSX.Element;
|
|
47
|
+
Switch: (props: InputType) => react_jsx_runtime.JSX.Element;
|
|
48
|
+
Radio: (props: ListInputType) => react_jsx_runtime.JSX.Element;
|
|
49
|
+
Select: (props: ListInputType) => react_jsx_runtime.JSX.Element;
|
|
50
|
+
Toggle: (props: ListInputType) => react_jsx_runtime.JSX.Element;
|
|
51
|
+
Entity: (props: ListInputType) => react_jsx_runtime.JSX.Element;
|
|
52
|
+
Element: (props: ListInputType) => react_jsx_runtime.JSX.Element;
|
|
53
|
+
Quantity: (props: ListInputType) => react_jsx_runtime.JSX.Element;
|
|
54
|
+
Slider: (props: SliderType) => react_jsx_runtime.JSX.Element;
|
|
55
55
|
SafeView: typeof SafeView;
|
|
56
56
|
};
|
|
57
57
|
|