@steedos-widgets/amis-lib 3.6.13 → 6.3.0-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 +145 -68
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +145 -68
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +50 -41
- package/dist/index.umd.js.map +1 -1
- package/dist/types/schema/standard_delete.amis.d.ts +1 -0
- package/dist/types/schema/standard_edit.amis.d.ts +13 -0
- package/dist/types/schema/standard_new.amis.d.ts +1 -1
- package/dist/types/standard/button.d.ts +15 -1
- package/package.json +2 -2
|
@@ -34,6 +34,19 @@ export function getSchema(uiSchema: any, ctx: any): Promise<{
|
|
|
34
34
|
}[];
|
|
35
35
|
};
|
|
36
36
|
};
|
|
37
|
+
actions: ({
|
|
38
|
+
type: string;
|
|
39
|
+
actionType: string;
|
|
40
|
+
label: string;
|
|
41
|
+
primary?: undefined;
|
|
42
|
+
close?: undefined;
|
|
43
|
+
} | {
|
|
44
|
+
type: string;
|
|
45
|
+
actionType: string;
|
|
46
|
+
label: string;
|
|
47
|
+
primary: boolean;
|
|
48
|
+
close: string;
|
|
49
|
+
})[];
|
|
37
50
|
};
|
|
38
51
|
}[];
|
|
39
52
|
weight: number;
|
|
@@ -105,7 +105,7 @@ export namespace StandardButtons {
|
|
|
105
105
|
actionType: string;
|
|
106
106
|
label: string;
|
|
107
107
|
primary: boolean;
|
|
108
|
-
close
|
|
108
|
+
close: string;
|
|
109
109
|
id?: undefined;
|
|
110
110
|
})[];
|
|
111
111
|
};
|
|
@@ -160,6 +160,19 @@ export namespace StandardButtons {
|
|
|
160
160
|
}[];
|
|
161
161
|
};
|
|
162
162
|
};
|
|
163
|
+
actions: ({
|
|
164
|
+
type: string;
|
|
165
|
+
actionType: string;
|
|
166
|
+
label: string;
|
|
167
|
+
primary?: undefined;
|
|
168
|
+
close?: undefined;
|
|
169
|
+
} | {
|
|
170
|
+
type: string;
|
|
171
|
+
actionType: string;
|
|
172
|
+
label: string;
|
|
173
|
+
primary: boolean;
|
|
174
|
+
close: string;
|
|
175
|
+
})[];
|
|
163
176
|
};
|
|
164
177
|
}[];
|
|
165
178
|
weight: number;
|
|
@@ -232,6 +245,7 @@ export namespace StandardButtons {
|
|
|
232
245
|
})[];
|
|
233
246
|
};
|
|
234
247
|
};
|
|
248
|
+
close: string;
|
|
235
249
|
}[];
|
|
236
250
|
regions: string[];
|
|
237
251
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos-widgets/amis-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "6.3.0-beta.10",
|
|
5
5
|
"unpkg": "./dist/index.umd.js",
|
|
6
6
|
"main": "./dist/index.cjs.js",
|
|
7
7
|
"module": "./dist/index.esm.js",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"lodash": "^4.17.21",
|
|
62
62
|
"react-i18next": "12.3.1"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "9bde0fd0766dc725e40940998b53e4f8fbeaea05"
|
|
65
65
|
}
|