@steedos-widgets/amis-object 1.0.26 → 1.0.29

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,17 +25,25 @@ 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
  })[];
39
- } & {
40
48
  onEvent: any;
41
49
  }>;
@@ -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;
@@ -1,9 +1 @@
1
- export declare const AmisSteedosField: (props: any) => Promise<{
2
- type: any;
3
- tpl: string;
4
- multiple: boolean;
5
- extractValue: boolean;
6
- className: any;
7
- quickEdit: boolean;
8
- visibleOn: string;
9
- }>;
1
+ export declare const AmisSteedosField: (props: any) => Promise<any>;
@@ -262,12 +262,24 @@ body {
262
262
  .absolute {
263
263
  position: absolute
264
264
  }
265
+ .inset-0 {
266
+ top: 0px;
267
+ right: 0px;
268
+ bottom: 0px;
269
+ left: 0px
270
+ }
265
271
  .bottom-4 {
266
272
  bottom: 1rem
267
273
  }
268
274
  .right-4 {
269
275
  right: 1rem
270
276
  }
277
+ .top-0 {
278
+ top: 0px
279
+ }
280
+ .bottom-0 {
281
+ bottom: 0px
282
+ }
271
283
  .col-span-2 {
272
284
  grid-column: span 2 / span 2
273
285
  }
@@ -353,6 +365,9 @@ body {
353
365
  .grid {
354
366
  display: grid
355
367
  }
368
+ .contents {
369
+ display: contents
370
+ }
356
371
  .hidden {
357
372
  display: none
358
373
  }
@@ -428,6 +443,12 @@ body {
428
443
  .w-8 {
429
444
  width: 2rem
430
445
  }
446
+ .w-1\/2 {
447
+ width: 50%
448
+ }
449
+ .w-\[388px\] {
450
+ width: 388px
451
+ }
431
452
  .\!min-w-\[160px\] {
432
453
  min-width: 160px !important
433
454
  }
@@ -724,9 +745,15 @@ body {
724
745
  background-color: rgb(240 249 255 / var(--tw-bg-opacity))
725
746
  }
726
747
  @media (min-width: 640px) {
748
+ .sm\:m-3 {
749
+ margin: 0.75rem
750
+ }
727
751
  .sm\:mt-3 {
728
752
  margin-top: 0.75rem
729
753
  }
754
+ .sm\:mb-0 {
755
+ margin-bottom: 0px
756
+ }
730
757
  .sm\:grid {
731
758
  display: grid
732
759
  }