@steedos-widgets/amis-object 1.0.18 → 1.0.19

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.
@@ -13,57 +13,53 @@ export declare const AmisRecordDetailHeader: (props: any) => Promise<{
13
13
  type: string;
14
14
  body: {
15
15
  type: string;
16
- className: string;
17
- body: {
18
- type: string;
19
- columns: ({
20
- body: {
21
- type: string;
22
- columns: ({
23
- body: {
24
- type: string;
25
- className: string;
26
- tpl: string;
27
- };
28
- md: string;
16
+ columns: ({
17
+ body: {
18
+ type: string;
19
+ columns: ({
20
+ body: {
21
+ type: string;
29
22
  className: string;
30
- columnClassName: string;
31
- } | {
32
- body: {
33
- type: string;
34
- tpl: string;
35
- inline: boolean;
36
- wrapperComponent: string;
37
- className: string;
38
- }[];
39
- columnClassName: string;
40
- md?: undefined;
41
- className?: undefined;
42
- })[];
23
+ tpl: string;
24
+ };
25
+ md: string;
43
26
  className: string;
44
- }[];
45
- md: string;
46
- hiddenOn?: undefined;
47
- } | {
48
- body: {
49
- type: string;
50
- items: {
27
+ columnClassName: string;
28
+ } | {
29
+ body: {
51
30
  type: string;
52
- name: any;
53
- objectName: any;
54
- visibleOn: any;
31
+ tpl: string;
32
+ inline: boolean;
33
+ wrapperComponent: string;
55
34
  className: string;
56
35
  }[];
57
- };
58
- md: string;
59
- hiddenOn: string;
60
- })[];
61
- className: string;
62
- }[];
63
- size: string;
36
+ columnClassName: string;
37
+ md?: undefined;
38
+ className?: undefined;
39
+ })[];
40
+ className: string;
41
+ }[];
42
+ md: string;
43
+ hiddenOn?: undefined;
44
+ } | {
45
+ body: {
46
+ type: string;
47
+ items: {
48
+ type: string;
49
+ name: any;
50
+ objectName: any;
51
+ visibleOn: any;
52
+ className: string;
53
+ }[];
54
+ };
55
+ md: string;
56
+ hiddenOn: string;
57
+ })[];
58
+ className: string;
64
59
  }[];
65
60
  messages: {};
66
61
  }[];
62
+ className: string;
67
63
  } & {
68
64
  onEvent: any;
69
65
  }>;
@@ -235,6 +235,10 @@ body {
235
235
  .m-2 {
236
236
  margin: 0.5rem
237
237
  }
238
+ .my-2 {
239
+ margin-top: 0.5rem;
240
+ margin-bottom: 0.5rem
241
+ }
238
242
  .mb-4 {
239
243
  margin-bottom: 1rem
240
244
  }
@@ -619,6 +623,10 @@ body {
619
623
  .sm\:border {
620
624
  border-width: 1px
621
625
  }
626
+ .sm\:border-gray-300 {
627
+ --tw-border-opacity: 1;
628
+ border-color: rgb(209 213 219 / var(--tw-border-opacity))
629
+ }
622
630
  .sm\:p-0 {
623
631
  padding: 0px
624
632
  }
@@ -719,6 +727,9 @@ body {
719
727
  left: 30px;
720
728
  right: 30px;
721
729
  }
730
+ .steedos-listview .antd-Table-toolbar .antd-Crud-loadMore .antd-Button.is-disabled {
731
+ display: none;
732
+ }
722
733
  .antd-Crud-toolbar {
723
734
  flex-basis: 0;
724
735
  flex-grow: 1;
@@ -764,6 +775,13 @@ body {
764
775
  margin-bottom: 0;
765
776
  }
766
777
  }
778
+ .steedos-amis-form .antd-ComboControl .antd-Combo .antd-Form-row {
779
+ display: grid;
780
+ grid-template-columns: repeat(1, minmax(0, 1fr));
781
+ row-gap: 0rem;
782
+ -moz-column-gap: 1rem;
783
+ column-gap: 1rem;
784
+ }
767
785
 
768
786
  .steedos-context-bar .antd-Nav-list {
769
787
  border-bottom: 0px;
@@ -821,4 +839,19 @@ body.sidebar.sidebar-open #main {
821
839
  body.sidebar.sidebar-open #main {
822
840
  padding-left: 0;
823
841
  }
842
+ .sidebar-overlay {
843
+ display: none;
844
+ }
845
+ body.sidebar.sidebar-open .sidebar-overlay {
846
+ display: block;
847
+ transition: ease-out opacity 0.2s;
848
+ position: fixed;
849
+ top: 50px;
850
+ right: 0;
851
+ bottom: 0;
852
+ left: 0;
853
+ z-index: 1;
854
+ background: rgba(0, 0, 0, 0.6);
855
+ opacity: 1;
856
+ }
824
857
  }