@steedos-widgets/amis-object 6.3.7 → 6.3.9
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/AmisSteedosFieldGroup.d.ts +9 -0
- package/dist/amis/AmisSteedosObject.d.ts +8 -0
- package/dist/amis/index.d.ts +3 -0
- package/dist/amis/steedos-fields/index.d.ts +4 -0
- package/dist/amis-object.cjs.css +13 -0
- package/dist/amis-object.cjs.js +3096 -299
- package/dist/amis-object.cjs.js.map +1 -1
- package/dist/amis-object.esm.css +13 -0
- package/dist/amis-object.esm.js +3079 -312
- package/dist/amis-object.esm.js.map +1 -1
- package/dist/amis-object.umd.css +13 -0
- package/dist/amis-object.umd.js +894 -39
- package/dist/amis-object.umd.js.map +1 -1
- package/dist/assets.json +21 -21
- package/dist/components/SteedosFieldSet.d.ts +143 -0
- package/dist/components/SteedosObject.d.ts +108 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/meta.js +2592 -424
- package/dist/metas/AmisSteedosFieldGroup.d.ts +2 -0
- package/dist/metas/AmisSteedosObject.d.ts +2 -0
- package/dist/metas/steedos-fields/index.d.ts +2 -0
- package/package.json +3 -3
package/dist/amis/index.d.ts
CHANGED
|
@@ -20,3 +20,6 @@ export * from './AmisSelectFlow';
|
|
|
20
20
|
export * from './AmisInstanceDetail';
|
|
21
21
|
export * from './AmisInputTable';
|
|
22
22
|
export * from './AmisRecordDetailMini';
|
|
23
|
+
export * from './steedos-fields/index';
|
|
24
|
+
export * from './AmisSteedosFieldGroup';
|
|
25
|
+
export * from './AmisSteedosObject';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import './index.less';
|
|
2
|
+
declare const generatedFunctions: any;
|
|
3
|
+
export declare const SteedosFieldText: any, SteedosFieldTextarea: any, SteedosFieldHtml: any, SteedosFieldLookup: any, SteedosFieldMasterDetail: any, SteedosFieldSelect: any, SteedosFieldBoolean: any, SteedosFieldDate: any, SteedosFieldDatetime: any, SteedosFieldTime: any, SteedosFieldNumber: any, SteedosFieldCurrency: any, SteedosFieldPercent: any, SteedosFieldImage: any, SteedosFieldFile: any, SteedosFieldCode: any, SteedosFieldMarkdown: any, SteedosFieldColor: any, SteedosFieldToggle: any, SteedosFieldPassword: any, SteedosFieldAutonumber: any, SteedosFieldUrl: any, SteedosFieldEmail: any, SteedosFieldLocation: any, SteedosFieldFormula: any, SteedosFieldSummary: any;
|
|
4
|
+
export default generatedFunctions;
|
package/dist/amis-object.cjs.css
CHANGED
|
@@ -452,6 +452,11 @@ fieldset.antd-Collapse > legend{
|
|
|
452
452
|
margin-bottom: 0.5rem;
|
|
453
453
|
}
|
|
454
454
|
}
|
|
455
|
+
|
|
456
|
+
/* 设计器内字段布局样式 */
|
|
457
|
+
/* .steedos-amis-form.steedos-field-layout-page .antd-Collapse .antd-Form--normal>div[data-editor-id]{
|
|
458
|
+
display: contents;
|
|
459
|
+
} */
|
|
455
460
|
.ant-dropdown{
|
|
456
461
|
z-index: 1400;
|
|
457
462
|
}
|
|
@@ -638,6 +643,10 @@ fieldset.antd-Collapse > legend{
|
|
|
638
643
|
margin-left: 0px !important;
|
|
639
644
|
margin-right: 0px !important
|
|
640
645
|
}
|
|
646
|
+
.mx-10 {
|
|
647
|
+
margin-left: 2.5rem;
|
|
648
|
+
margin-right: 2.5rem
|
|
649
|
+
}
|
|
641
650
|
.my-2 {
|
|
642
651
|
margin-top: 0.5rem;
|
|
643
652
|
margin-bottom: 0.5rem
|
|
@@ -2497,6 +2506,9 @@ body.steedos {
|
|
|
2497
2506
|
margin: 0 0.5rem;
|
|
2498
2507
|
margin-bottom: 0.5rem;
|
|
2499
2508
|
}
|
|
2509
|
+
.steedos-header-container-line-two .ant-dropdown-placement-bottomLeft {
|
|
2510
|
+
left: -15px !important;
|
|
2511
|
+
}
|
|
2500
2512
|
|
|
2501
2513
|
#steedosGlobalFooterRoot .steedos-global-footer {
|
|
2502
2514
|
height: 4rem;
|
|
@@ -2839,6 +2851,7 @@ body.sidebar #sidebar {
|
|
|
2839
2851
|
}
|
|
2840
2852
|
|
|
2841
2853
|
|
|
2854
|
+
|
|
2842
2855
|
.steedos-record-selected {
|
|
2843
2856
|
background: var(--Table-onChecked-bg) !important;
|
|
2844
2857
|
color: var(--Table-onChecked-color) !important;
|