@steedos-widgets/amis-object 6.10.1 → 6.10.2-beta.2

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.
@@ -447,71 +447,7 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
447
447
  label: string;
448
448
  onEvent: {
449
449
  click: {
450
- actions: ({
451
- componentId: string;
452
- args: {
453
- api?: undefined;
454
- messages?: undefined;
455
- blank?: undefined;
456
- url?: undefined;
457
- };
458
- actionType: string;
459
- script: string;
460
- expression?: undefined;
461
- } | {
462
- componentId: string;
463
- args: {
464
- api?: undefined;
465
- messages?: undefined;
466
- blank?: undefined;
467
- url?: undefined;
468
- };
469
- actionType: string;
470
- script: string;
471
- expression: string;
472
- } | {
473
- componentId: string;
474
- args: {
475
- api: {
476
- url: string;
477
- method: string;
478
- dataType: string;
479
- data: {
480
- "&": string;
481
- $scopeId: string;
482
- };
483
- headers: {
484
- Authorization: string;
485
- };
486
- requestAdaptor: string;
487
- };
488
- messages: {
489
- success: string;
490
- };
491
- blank?: undefined;
492
- url?: undefined;
493
- };
494
- actionType: string;
495
- expression: string;
496
- script?: undefined;
497
- } | {
498
- componentId: string;
499
- args: {
500
- blank: boolean;
501
- url: any;
502
- api?: undefined;
503
- messages?: undefined;
504
- };
505
- actionType: string;
506
- expression: string;
507
- script?: undefined;
508
- } | {
509
- actionType: string;
510
- expression: string;
511
- componentId?: undefined;
512
- args?: undefined;
513
- script?: undefined;
514
- })[];
450
+ actions: any[];
515
451
  };
516
452
  };
517
453
  id: string;
@@ -682,11 +618,7 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
682
618
  };
683
619
  change: {
684
620
  weight: number;
685
- actions: {
686
- actionType: string;
687
- componentId: string;
688
- args: {};
689
- }[];
621
+ actions: any[];
690
622
  };
691
623
  };
692
624
  })[];
@@ -701,14 +633,7 @@ export declare const AmisInstanceDetail: (props: any) => Promise<{
701
633
  }[];
702
634
  };
703
635
  inited: {
704
- actions: {
705
- actionType: string;
706
- componentId: string;
707
- args: {
708
- value: string;
709
- };
710
- expression: string;
711
- }[];
636
+ actions: any[];
712
637
  };
713
638
  };
714
639
  initApi: {
@@ -67,6 +67,11 @@
67
67
  --common-popover-border: none;
68
68
  }
69
69
 
70
+ .steedos-DropDown--show-label.antd-DropDown .antd-Button .antd-DropDown-caret{
71
+ /* 因上面全局设置 --DropDown-caret-marginLeft 为0了,这里允许设置DropDown的className为steedos-DropDown--show-label时恢复按钮label和右侧caret图标间距 */
72
+ margin-left: 0.5rem;
73
+ }
74
+
70
75
  /* 修正手机端字体小的问题 */
71
76
  @media (max-width: 767px) {
72
77
 
@@ -414,6 +419,28 @@ fieldset.antd-Collapse > legend{
414
419
  padding: 6px;
415
420
  }
416
421
 
422
+ .antd-Form-description ol{
423
+ margin-left: 1rem !important;
424
+ list-style-type: decimal;
425
+ }
426
+
427
+ .antd-Form-description ul{
428
+ margin-left: 1rem !important;
429
+ list-style-type: decimal;
430
+ }
431
+
432
+ .antd-RichTextControl ol{
433
+ list-style-type: decimal;
434
+ }
435
+
436
+ .antd-RichTextControl ul{
437
+ list-style-type: disc;
438
+ }
439
+
440
+ .steedos-static-readonly .antd-RichTextControl{
441
+ border: none !important;
442
+ margin-left: 1rem !important;
443
+ }
417
444
 
418
445
  :root, .antd-Nav-Menu {
419
446
  --Menu-light-fontColor: var(--Layout-light-fontColor);
@@ -1270,6 +1297,9 @@ fieldset.antd-Collapse > legend{
1270
1297
  .lowercase {
1271
1298
  text-transform: lowercase
1272
1299
  }
1300
+ .italic {
1301
+ font-style: italic
1302
+ }
1273
1303
  .leading-3 {
1274
1304
  line-height: .75rem
1275
1305
  }
@@ -1337,6 +1367,9 @@ fieldset.antd-Collapse > legend{
1337
1367
  --tw-text-opacity: 1;
1338
1368
  color: rgb(255 255 255 / var(--tw-text-opacity, 1))
1339
1369
  }
1370
+ .underline {
1371
+ text-decoration-line: underline
1372
+ }
1340
1373
  .no-underline {
1341
1374
  text-decoration-line: none
1342
1375
  }