@steedos-widgets/amis-lib 1.1.1 → 1.1.3-beta.10
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/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/index.cjs.js +38 -7
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +38 -7
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +38 -7
- package/dist/index.umd.js.map +1 -1
- package/dist/types/schema/standard_delete.amis.d.ts +14 -0
- package/dist/types/schema/standard_new.amis.d.ts +1 -0
- package/dist/types/standard/button.d.ts +15 -0
- package/package.json +2 -2
|
@@ -31,6 +31,7 @@ export function getSchema(uiSchema: any): {
|
|
|
31
31
|
};
|
|
32
32
|
actionType: string;
|
|
33
33
|
data?: undefined;
|
|
34
|
+
expression?: undefined;
|
|
34
35
|
} | {
|
|
35
36
|
actionType: string;
|
|
36
37
|
args: {
|
|
@@ -42,6 +43,19 @@ export function getSchema(uiSchema: any): {
|
|
|
42
43
|
objectName: string;
|
|
43
44
|
__deletedRecord: boolean;
|
|
44
45
|
};
|
|
46
|
+
expression?: undefined;
|
|
47
|
+
} | {
|
|
48
|
+
actionType: string;
|
|
49
|
+
args: {
|
|
50
|
+
eventName: string;
|
|
51
|
+
api?: undefined;
|
|
52
|
+
messages?: undefined;
|
|
53
|
+
};
|
|
54
|
+
data: {
|
|
55
|
+
objectName: string;
|
|
56
|
+
__deletedRecord?: undefined;
|
|
57
|
+
};
|
|
58
|
+
expression: string;
|
|
45
59
|
})[];
|
|
46
60
|
};
|
|
47
61
|
};
|
|
@@ -17,6 +17,7 @@ export namespace StandardButtons {
|
|
|
17
17
|
type: string;
|
|
18
18
|
data: {
|
|
19
19
|
$master: string;
|
|
20
|
+
_master: string;
|
|
20
21
|
defaultData: string;
|
|
21
22
|
appId: string;
|
|
22
23
|
objectName: string;
|
|
@@ -136,6 +137,7 @@ export namespace StandardButtons {
|
|
|
136
137
|
};
|
|
137
138
|
actionType: string;
|
|
138
139
|
data?: undefined;
|
|
140
|
+
expression?: undefined;
|
|
139
141
|
} | {
|
|
140
142
|
actionType: string;
|
|
141
143
|
args: {
|
|
@@ -147,6 +149,19 @@ export namespace StandardButtons {
|
|
|
147
149
|
objectName: string;
|
|
148
150
|
__deletedRecord: boolean;
|
|
149
151
|
};
|
|
152
|
+
expression?: undefined;
|
|
153
|
+
} | {
|
|
154
|
+
actionType: string;
|
|
155
|
+
args: {
|
|
156
|
+
eventName: string;
|
|
157
|
+
api?: undefined;
|
|
158
|
+
messages?: undefined;
|
|
159
|
+
};
|
|
160
|
+
data: {
|
|
161
|
+
objectName: string;
|
|
162
|
+
__deletedRecord?: undefined;
|
|
163
|
+
};
|
|
164
|
+
expression: string;
|
|
150
165
|
})[];
|
|
151
166
|
};
|
|
152
167
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos-widgets/amis-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.3-beta.10",
|
|
5
5
|
"unpkg": "./dist/index.umd.js",
|
|
6
6
|
"main": "./dist/index.cjs.js",
|
|
7
7
|
"module": "./dist/index.esm.js",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"lodash": "^4.17.21"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "069ada362ffb63551ab47e3e5d5a08faf974991c"
|
|
63
63
|
}
|