@steedos-widgets/amis-object 1.0.28 → 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.
- package/dist/amis/AmisRecordDetail.d.ts +0 -1
- package/dist/amis/AmisSteedosField.d.ts +1 -9
- package/dist/amis-object.cjs.css +27 -0
- package/dist/amis-object.cjs.js +1 -1
- package/dist/amis-object.cjs.js.map +1 -1
- package/dist/amis-object.esm.css +27 -0
- package/dist/amis-object.esm.js +1 -1
- package/dist/amis-object.esm.js.map +1 -1
- package/dist/amis-object.umd.css +27 -0
- package/dist/amis-object.umd.js +1 -1
- package/dist/amis-object.umd.js.map +1 -1
- package/dist/assets.json +10 -10
- package/dist/meta.js +397 -349
- package/dist/pages/PageListView.d.ts +15 -1
- package/dist/pages/PageListView.meta.d.ts +2 -0
- package/dist/pages/PageRecordDetail.d.ts +15 -0
- package/dist/pages/PageRecordDetail.meta.d.ts +2 -0
- package/dist/pages/index.d.ts +1 -0
- package/package.json +3 -3
|
@@ -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>;
|
package/dist/amis-object.cjs.css
CHANGED
|
@@ -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
|
}
|