@steedos-widgets/amis-object 6.10.53-beta.2 → 6.10.53-beta.25
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/amis/AmisAppMenu.d.ts +3 -0
- package/dist/amis/AmisInputTable.d.ts +25 -0
- package/dist/amis/AmisInstanceHandler.d.ts +94 -25
- package/dist/amis-object.umd.css +436 -66
- package/dist/amis-object.umd.js +1 -1
- package/dist/amis-object.umd.js.map +1 -1
- package/dist/assets.json +5 -5
- package/dist/pages/PageObject.d.ts +23 -0
- package/package.json +4 -4
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
import './AmisInputTable.less';
|
|
2
2
|
export declare const AmisInputTable: (props: any) => Promise<{
|
|
3
|
+
type: string;
|
|
4
|
+
label: any;
|
|
5
|
+
labelClassName: any;
|
|
6
|
+
labelRemark: any;
|
|
7
|
+
labelAlign: any;
|
|
8
|
+
mode: any;
|
|
9
|
+
visibleOn: any;
|
|
10
|
+
visible: any;
|
|
11
|
+
hiddenOn: any;
|
|
12
|
+
hidden: any;
|
|
13
|
+
required: any;
|
|
14
|
+
className: string;
|
|
15
|
+
body: {
|
|
16
|
+
type: string;
|
|
17
|
+
className: string;
|
|
18
|
+
dataProvider: (data: any, setData: any) => void;
|
|
19
|
+
body: {
|
|
20
|
+
type: string;
|
|
21
|
+
className: string;
|
|
22
|
+
border: boolean;
|
|
23
|
+
padding: string;
|
|
24
|
+
trs: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
} | {
|
|
3
28
|
type: string;
|
|
4
29
|
body: {
|
|
5
30
|
type: string;
|
|
@@ -21,12 +21,8 @@ export declare const AmisInstanceHandler: (props: any) => Promise<{
|
|
|
21
21
|
required: boolean;
|
|
22
22
|
inputClassName: string;
|
|
23
23
|
multiple?: undefined;
|
|
24
|
-
source?: undefined;
|
|
25
|
-
labelField?: undefined;
|
|
26
|
-
valueField?: undefined;
|
|
27
|
-
joinValues?: undefined;
|
|
28
|
-
extractValue?: undefined;
|
|
29
24
|
className?: undefined;
|
|
25
|
+
body?: undefined;
|
|
30
26
|
tpl?: undefined;
|
|
31
27
|
visibleOn?: undefined;
|
|
32
28
|
} | {
|
|
@@ -38,29 +34,106 @@ export declare const AmisInstanceHandler: (props: any) => Promise<{
|
|
|
38
34
|
required: boolean;
|
|
39
35
|
multiple: boolean;
|
|
40
36
|
inputClassName: string;
|
|
41
|
-
source?: undefined;
|
|
42
|
-
labelField?: undefined;
|
|
43
|
-
valueField?: undefined;
|
|
44
|
-
joinValues?: undefined;
|
|
45
|
-
extractValue?: undefined;
|
|
46
37
|
className?: undefined;
|
|
38
|
+
body?: undefined;
|
|
47
39
|
tpl?: undefined;
|
|
48
40
|
visibleOn?: undefined;
|
|
49
41
|
} | {
|
|
50
42
|
type: string;
|
|
51
|
-
|
|
52
|
-
name: any;
|
|
53
|
-
id: any;
|
|
54
|
-
required: boolean;
|
|
43
|
+
className: string;
|
|
55
44
|
hiddenOn: string;
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
45
|
+
body: ({
|
|
46
|
+
type: string;
|
|
47
|
+
label: any;
|
|
48
|
+
name: any;
|
|
49
|
+
id: any;
|
|
50
|
+
required: boolean;
|
|
51
|
+
multiple: boolean;
|
|
52
|
+
source: string;
|
|
53
|
+
labelField: string;
|
|
54
|
+
valueField: string;
|
|
55
|
+
joinValues: boolean;
|
|
56
|
+
extractValue: boolean;
|
|
57
|
+
className: string;
|
|
58
|
+
visibleOn?: undefined;
|
|
59
|
+
placeholder?: undefined;
|
|
60
|
+
columnRatio?: undefined;
|
|
61
|
+
columnClassName?: undefined;
|
|
62
|
+
inputClassName?: undefined;
|
|
63
|
+
} | {
|
|
64
|
+
type: string;
|
|
65
|
+
name: any;
|
|
66
|
+
id: string;
|
|
67
|
+
visibleOn: string;
|
|
68
|
+
required: boolean;
|
|
69
|
+
multiple: boolean;
|
|
70
|
+
placeholder: string;
|
|
71
|
+
columnRatio: string;
|
|
72
|
+
columnClassName: string;
|
|
73
|
+
inputClassName: string;
|
|
74
|
+
label?: undefined;
|
|
75
|
+
source?: undefined;
|
|
76
|
+
labelField?: undefined;
|
|
77
|
+
valueField?: undefined;
|
|
78
|
+
joinValues?: undefined;
|
|
79
|
+
extractValue?: undefined;
|
|
80
|
+
className?: undefined;
|
|
81
|
+
})[];
|
|
82
|
+
label?: undefined;
|
|
83
|
+
name?: undefined;
|
|
84
|
+
id?: undefined;
|
|
85
|
+
required?: undefined;
|
|
86
|
+
inputClassName?: undefined;
|
|
87
|
+
multiple?: undefined;
|
|
88
|
+
tpl?: undefined;
|
|
89
|
+
visibleOn?: undefined;
|
|
90
|
+
} | {
|
|
91
|
+
type: string;
|
|
62
92
|
className: string;
|
|
93
|
+
hiddenOn: string;
|
|
94
|
+
body: ({
|
|
95
|
+
type: string;
|
|
96
|
+
label: any;
|
|
97
|
+
name: any;
|
|
98
|
+
id: any;
|
|
99
|
+
required: boolean;
|
|
100
|
+
multiple: boolean;
|
|
101
|
+
source: string;
|
|
102
|
+
labelField: string;
|
|
103
|
+
valueField: string;
|
|
104
|
+
joinValues: boolean;
|
|
105
|
+
extractValue: boolean;
|
|
106
|
+
className: string;
|
|
107
|
+
visibleOn?: undefined;
|
|
108
|
+
placeholder?: undefined;
|
|
109
|
+
columnRatio?: undefined;
|
|
110
|
+
columnClassName?: undefined;
|
|
111
|
+
inputClassName?: undefined;
|
|
112
|
+
} | {
|
|
113
|
+
type: string;
|
|
114
|
+
name: any;
|
|
115
|
+
id: string;
|
|
116
|
+
visibleOn: string;
|
|
117
|
+
required: boolean;
|
|
118
|
+
placeholder: string;
|
|
119
|
+
columnRatio: string;
|
|
120
|
+
columnClassName: string;
|
|
121
|
+
inputClassName: string;
|
|
122
|
+
label?: undefined;
|
|
123
|
+
multiple?: undefined;
|
|
124
|
+
source?: undefined;
|
|
125
|
+
labelField?: undefined;
|
|
126
|
+
valueField?: undefined;
|
|
127
|
+
joinValues?: undefined;
|
|
128
|
+
extractValue?: undefined;
|
|
129
|
+
className?: undefined;
|
|
130
|
+
})[];
|
|
131
|
+
label?: undefined;
|
|
132
|
+
name?: undefined;
|
|
133
|
+
id?: undefined;
|
|
134
|
+
required?: undefined;
|
|
63
135
|
inputClassName?: undefined;
|
|
136
|
+
multiple?: undefined;
|
|
64
137
|
tpl?: undefined;
|
|
65
138
|
visibleOn?: undefined;
|
|
66
139
|
} | {
|
|
@@ -74,12 +147,8 @@ export declare const AmisInstanceHandler: (props: any) => Promise<{
|
|
|
74
147
|
required?: undefined;
|
|
75
148
|
inputClassName?: undefined;
|
|
76
149
|
multiple?: undefined;
|
|
77
|
-
source?: undefined;
|
|
78
|
-
labelField?: undefined;
|
|
79
|
-
valueField?: undefined;
|
|
80
|
-
joinValues?: undefined;
|
|
81
|
-
extractValue?: undefined;
|
|
82
150
|
className?: undefined;
|
|
151
|
+
body?: undefined;
|
|
83
152
|
})[];
|
|
84
153
|
} | {
|
|
85
154
|
type: string;
|