@steedos-widgets/amis-object 6.10.18 → 6.10.20
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/AmisInstanceDetail.d.ts +34 -0
- package/dist/amis-object.umd.css +6 -0
- package/dist/amis-object.umd.js +216 -233
- package/dist/amis-object.umd.js.map +1 -1
- package/dist/assets.json +5 -5
- package/dist/meta.js +3 -0
- package/package.json +4 -3
|
@@ -226,6 +226,10 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
226
226
|
drawerContainer: () => HTMLElement;
|
|
227
227
|
body: {
|
|
228
228
|
type: string;
|
|
229
|
+
initApi: {
|
|
230
|
+
method: string;
|
|
231
|
+
url: string;
|
|
232
|
+
};
|
|
229
233
|
debug: boolean;
|
|
230
234
|
id: string;
|
|
231
235
|
resetAfterSubmit: boolean;
|
|
@@ -307,6 +311,12 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
307
311
|
judge: string;
|
|
308
312
|
};
|
|
309
313
|
};
|
|
314
|
+
onEvent: {
|
|
315
|
+
change: {
|
|
316
|
+
weight: number;
|
|
317
|
+
actions: any[];
|
|
318
|
+
};
|
|
319
|
+
};
|
|
310
320
|
}[];
|
|
311
321
|
id: string;
|
|
312
322
|
md?: undefined;
|
|
@@ -335,6 +345,12 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
335
345
|
name: string;
|
|
336
346
|
hiddenOn: string;
|
|
337
347
|
required: boolean;
|
|
348
|
+
onEvent: {
|
|
349
|
+
change: {
|
|
350
|
+
weight: number;
|
|
351
|
+
actions: any[];
|
|
352
|
+
};
|
|
353
|
+
};
|
|
338
354
|
multiple?: undefined;
|
|
339
355
|
id?: undefined;
|
|
340
356
|
source?: undefined;
|
|
@@ -350,6 +366,12 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
350
366
|
hiddenOn: string;
|
|
351
367
|
required: boolean;
|
|
352
368
|
multiple: boolean;
|
|
369
|
+
onEvent: {
|
|
370
|
+
change: {
|
|
371
|
+
weight: number;
|
|
372
|
+
actions: any[];
|
|
373
|
+
};
|
|
374
|
+
};
|
|
353
375
|
id?: undefined;
|
|
354
376
|
source?: undefined;
|
|
355
377
|
labelField?: undefined;
|
|
@@ -387,6 +409,12 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
387
409
|
value: string;
|
|
388
410
|
joinValues: boolean;
|
|
389
411
|
extractValue: boolean;
|
|
412
|
+
onEvent: {
|
|
413
|
+
change: {
|
|
414
|
+
weight: number;
|
|
415
|
+
actions: any[];
|
|
416
|
+
};
|
|
417
|
+
};
|
|
390
418
|
})[];
|
|
391
419
|
id: string;
|
|
392
420
|
md?: undefined;
|
|
@@ -425,6 +453,9 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
425
453
|
args: {};
|
|
426
454
|
}[];
|
|
427
455
|
};
|
|
456
|
+
inited: {
|
|
457
|
+
actions: any[];
|
|
458
|
+
};
|
|
428
459
|
};
|
|
429
460
|
}[];
|
|
430
461
|
id: string;
|
|
@@ -509,6 +540,9 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
|
|
|
509
540
|
body: {
|
|
510
541
|
type: string;
|
|
511
542
|
tpl: string;
|
|
543
|
+
className: string | {
|
|
544
|
+
"steedos-field-required": string;
|
|
545
|
+
};
|
|
512
546
|
}[];
|
|
513
547
|
style: {
|
|
514
548
|
borderLeftColor: string;
|
package/dist/amis-object.umd.css
CHANGED
|
@@ -3286,6 +3286,12 @@ steedosfieldset.antd-Collapse .antd-Collapse-header.is-mobile:hover {
|
|
|
3286
3286
|
.instance-applicant-view .antd-Picker .antd-Picker-btn {
|
|
3287
3287
|
display: none;
|
|
3288
3288
|
}
|
|
3289
|
+
.instance-form-view .antd-Form-star {
|
|
3290
|
+
display: none;
|
|
3291
|
+
}
|
|
3292
|
+
.instance-form-view .steedos-field-required .antd-Form-star {
|
|
3293
|
+
display: inline;
|
|
3294
|
+
}
|
|
3289
3295
|
|
|
3290
3296
|
.steedos-input-table .steedos-delete-button:hover {
|
|
3291
3297
|
color: rgb(239 68 68) !important;
|