@steedos-widgets/amis-object 1.0.25 → 1.0.28

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.
@@ -25,14 +25,23 @@ export declare const AmisRecordDetail: (props: any) => Promise<{
25
25
  id: string;
26
26
  onEvent: {
27
27
  recordLoaded: {
28
- actions: {
28
+ actions: ({
29
29
  actionType: string;
30
30
  data: {
31
31
  name: string;
32
32
  record: string;
33
33
  recordLoaded: boolean;
34
34
  };
35
- }[];
35
+ componentId?: undefined;
36
+ } | {
37
+ actionType: string;
38
+ componentId: string;
39
+ data: {
40
+ name: string;
41
+ record: string;
42
+ recordLoaded: boolean;
43
+ };
44
+ })[];
36
45
  };
37
46
  };
38
47
  })[];
@@ -12,6 +12,7 @@ export declare const AmisRecordDetailHeader: (props: any) => Promise<{
12
12
  };
13
13
  body: {
14
14
  type: string;
15
+ id: string;
15
16
  data: {
16
17
  "&": string;
17
18
  objectName: any;
@@ -401,6 +401,9 @@ body {
401
401
  .w-6 {
402
402
  width: 1.5rem
403
403
  }
404
+ .w-72 {
405
+ width: 18rem
406
+ }
404
407
  .w-4 {
405
408
  width: 1rem
406
409
  }
@@ -434,12 +437,12 @@ body {
434
437
  .max-w-md {
435
438
  max-width: 28rem
436
439
  }
437
- .flex-none {
438
- flex: none
439
- }
440
440
  .flex-auto {
441
441
  flex: 1 1 auto
442
442
  }
443
+ .flex-none {
444
+ flex: none
445
+ }
443
446
  .flex-shrink-0 {
444
447
  flex-shrink: 0
445
448
  }
@@ -507,6 +510,9 @@ body {
507
510
  .border-b {
508
511
  border-bottom-width: 1px
509
512
  }
513
+ .border-r {
514
+ border-right-width: 1px
515
+ }
510
516
  .border-solid {
511
517
  border-style: solid
512
518
  }