@faasjs/ant-design 0.0.2-beta.431 → 0.0.2-beta.432
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.ts +3 -3
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -221,16 +221,16 @@ declare type TimeProps = {
|
|
|
221
221
|
};
|
|
222
222
|
declare type ObjectProps = {
|
|
223
223
|
type: 'object';
|
|
224
|
-
object:
|
|
224
|
+
object: FormItemProps[];
|
|
225
225
|
disabled?: boolean;
|
|
226
226
|
required?: boolean;
|
|
227
227
|
};
|
|
228
228
|
declare type ObjectListProps = {
|
|
229
229
|
type: 'object[]';
|
|
230
|
-
object: (
|
|
230
|
+
object: (FormItemProps & {
|
|
231
231
|
/** default is 6 */
|
|
232
232
|
col?: number;
|
|
233
|
-
}
|
|
233
|
+
})[];
|
|
234
234
|
maxCount?: number;
|
|
235
235
|
disabled?: boolean;
|
|
236
236
|
required?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@faasjs/ant-design",
|
|
3
|
-
"version": "0.0.2-beta.
|
|
3
|
+
"version": "0.0.2-beta.432",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"lodash": "*",
|
|
29
29
|
"react": "*",
|
|
30
30
|
"react-dom": "*",
|
|
31
|
-
"@faasjs/react": "^0.0.2-beta.
|
|
31
|
+
"@faasjs/react": "^0.0.2-beta.432",
|
|
32
32
|
"react-router-dom": "*",
|
|
33
33
|
"dayjs": "*"
|
|
34
34
|
},
|