@aplus-frontend/ui 0.4.10 → 0.4.11
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/es/index.mjs +42 -36
- package/es/src/ap-field/date/index.vue.mjs +98 -65
- package/es/src/ap-field/date-range/index.vue.mjs +98 -70
- package/es/src/ap-field/hooks/use-date-timezone.d.ts +7 -0
- package/es/src/ap-field/hooks/use-date-timezone.mjs +10 -0
- package/es/src/ap-field/hooks/use-default-presets.d.ts +3 -2
- package/es/src/ap-field/hooks/use-default-presets.mjs +8 -8
- package/es/src/ap-field/interface.d.ts +8 -2
- package/es/src/business/ap-ladder/ApLadder.vue.d.ts +6 -2
- package/es/src/business/ap-ladder/ApLadder.vue2.mjs +118 -95
- package/es/src/business/ap-ladder/index.d.ts +3 -1
- package/es/src/full-screen/index.d.ts +3 -0
- package/es/src/full-screen/index.mjs +2 -0
- package/es/src/full-screen/index.vue.d.ts +43 -0
- package/es/src/full-screen/index.vue.mjs +84 -0
- package/es/src/full-screen/index.vue2.mjs +4 -0
- package/es/src/full-screen/interface.d.ts +50 -0
- package/es/src/full-screen/interface.mjs +1 -0
- package/es/src/full-screen/style/css.d.ts +0 -0
- package/es/src/full-screen/style/css.js +1 -0
- package/es/src/full-screen/style/index.d.ts +0 -0
- package/es/src/full-screen/style/index.js +1 -0
- package/es/src/hooks/index.d.ts +1 -0
- package/es/src/hooks/index.mjs +6 -4
- package/es/src/hooks/useFullScreen.d.ts +8 -0
- package/es/src/hooks/useFullScreen.mjs +50 -0
- package/es/src/index.d.ts +2 -0
- package/es/src/index.mjs +243 -237
- package/es/src/path-map.mjs +3 -1
- package/es/src/portal/index.d.ts +3 -0
- package/es/src/portal/index.mjs +2 -0
- package/es/src/portal/index.vue.d.ts +18 -0
- package/es/src/portal/index.vue.mjs +21 -0
- package/es/src/portal/index.vue2.mjs +4 -0
- package/es/src/portal/interface.d.ts +2 -0
- package/es/src/portal/interface.mjs +1 -0
- package/es/src/portal/style/css.d.ts +1 -0
- package/es/src/portal/style/css.js +1 -0
- package/es/src/portal/style/index.d.ts +1 -0
- package/es/src/portal/style/index.js +1 -0
- package/lib/index.js +1 -1
- package/lib/src/ap-field/date/index.vue.js +1 -1
- package/lib/src/ap-field/date-range/index.vue.js +1 -1
- package/lib/src/ap-field/hooks/use-date-timezone.d.ts +7 -0
- package/lib/src/ap-field/hooks/use-date-timezone.js +1 -0
- package/lib/src/ap-field/hooks/use-default-presets.d.ts +3 -2
- package/lib/src/ap-field/hooks/use-default-presets.js +1 -1
- package/lib/src/ap-field/interface.d.ts +8 -2
- package/lib/src/business/ap-ladder/ApLadder.vue.d.ts +6 -2
- package/lib/src/business/ap-ladder/ApLadder.vue2.js +1 -1
- package/lib/src/business/ap-ladder/index.d.ts +3 -1
- package/lib/src/full-screen/index.d.ts +3 -0
- package/lib/src/full-screen/index.js +1 -0
- package/lib/src/full-screen/index.vue.d.ts +43 -0
- package/lib/src/full-screen/index.vue.js +1 -0
- package/lib/src/full-screen/index.vue2.js +1 -0
- package/lib/src/full-screen/interface.d.ts +50 -0
- package/lib/src/full-screen/interface.js +1 -0
- package/lib/src/full-screen/style/css.cjs +1 -0
- package/lib/src/full-screen/style/css.d.ts +0 -0
- package/lib/src/full-screen/style/index.cjs +1 -0
- package/lib/src/full-screen/style/index.d.ts +0 -0
- package/lib/src/hooks/index.d.ts +1 -0
- package/lib/src/hooks/index.js +1 -1
- package/lib/src/hooks/useFullScreen.d.ts +8 -0
- package/lib/src/hooks/useFullScreen.js +1 -0
- package/lib/src/index.d.ts +2 -0
- package/lib/src/index.js +1 -1
- package/lib/src/path-map.js +1 -1
- package/lib/src/portal/index.d.ts +3 -0
- package/lib/src/portal/index.js +1 -0
- package/lib/src/portal/index.vue.d.ts +18 -0
- package/lib/src/portal/index.vue.js +1 -0
- package/lib/src/portal/index.vue2.js +1 -0
- package/lib/src/portal/interface.d.ts +2 -0
- package/lib/src/portal/interface.js +1 -0
- package/lib/src/portal/style/css.cjs +1 -0
- package/lib/src/portal/style/css.d.ts +1 -0
- package/lib/src/portal/style/index.cjs +1 -0
- package/lib/src/portal/style/index.d.ts +1 -0
- package/package.json +3 -3
- package/theme/ap-form/ap-form-item.css +4 -0
- package/theme/ap-form/ap-form-item.less +7 -0
- package/theme/ap-form/index.css +18 -0
- package/theme/ap-form/item-text-group.css +14 -0
- package/theme/ap-form/item-text-group.less +11 -1
- package/theme/ap-form/item-text.css +14 -0
- package/theme/ap-form/search-form.css +4 -0
- package/theme/ap-table/ap-table.css +18 -0
- package/theme/ap-table-modal/index.css +18 -0
- package/theme/editable-table/index.css +18 -0
- package/theme/full-screen/index.css +6 -0
- package/theme/full-screen/index.less +12 -0
- package/theme/index.css +24 -0
- package/theme/index.less +1 -0
package/lib/src/path-map.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e={ApActionItem:["ap-action","item"],ApActionItemModal:["ap-action","item-modal"],ApActionItemPopconfirm:["ap-action","item-popconfirm"],ApActionItemDropdown:["ap-action","item-dropdown"],ApActionGroup:["ap-action","group"],ApButton:["ap-button"],ApActionButton:["ap-action-button"],ApDescriptions:["ap-descriptions"],ApDownload:["ap-download"],ApField:["ap-field"],ApFieldText:["ap-field","text"],ApFieldCheckbox:["ap-field","checkbox"],ApFieldDate:["ap-field","date"],ApFieldNumber:["ap-field","number"],ApFieldRadio:["ap-field","radio"],ApFieldSwitch:["ap-field","switch"],ApFieldTextArea:["ap-field","text-area"],ApFieldDateRange:["ap-field","date-range"],ApFieldSelect:["ap-field","select"],ApFieldPassword:["ap-field","password"],ApFieldSlider:["ap-field","slider"],ApFieldSegmented:["ap-field","segmented"],ApFieldDateRate:["ap-field","rate"],ApForm:["ap-form"],ApFormItem:["ap-form","item"],ApFormItemGroup:["ap-form","item-group"],ApFormList:["ap-form","list"],ApFormSearchForm:["ap-form","search-form"],ApFormModalForm:["ap-form","modal-form"],ApFormDependency:["ap-form","dependency"],ApFormSet:["ap-form","set"],ApFormDrawerForm:["ap-form","drawer-form"],ApFormItemText:["ap-form","item-text"],ApFormItemTextArea:["ap-form","item-text-area"],ApFormItemNumber:["ap-form","item-number"],ApFormItemDate:["ap-form","item-date"],ApFormItemDateRange:["ap-form","item-date-range"],ApFormItemRadio:["ap-form","item-radio"],ApFormItemSelect:["ap-form","item-select"],ApFormItemSwitch:["ap-form","item-switch"],ApFormItemCheckbox:["ap-form","item-checkbox"],ApFormItemTextPassword:["ap-form","item-text-password"],ApFormItemTextGroup:["ap-form","item-text-group"],ApInfoLayout:["ap-info-layout"],ApList:["ap-list"],ApModal:["ap-modal"],ApDrawer:["ap-drawer"],ApTable:["ap-table"],ApTag:["ap-tag"],ApTagGroup:["ap-tag","group"],ApUpload:["ap-upload"],CheckCard:["check-card"],CheckCardGroup:["check-card","group"],ConfigProvider:["config-provider"],EditableTable:["editable-table"],EditableTableFormItem:["editable-table","form-item"],WorkOrderModal:["work-order-modal"],ApAttachment:["business","ap-attachment"],ApBatchAction:["business","ap-batch-action"],ApBatchActionGroup:["business","ap-batch-action-group"],ApButtonGroup:["business","ap-button-group"],ApCard:["business","ap-card"],ApExpandAlert:["business","ap-expand-alert"],ApExportGroup:["business","ap-export-group"],ApImage:["business","ap-image"],ApInputRadio:["business","ap-input-radio"],ApSizeInput:["business","ap-size-input"],ApLabel:["business","ap-label"],ApLabelGroup:["business","ap-label","group"],ApLadder:["business","ap-ladder"],ApSelectLayout:["business","ap-select-layout"],ApStatus:["business","ap-status"],ApStatusGroup:["business","ap-status","group"],ApTableModal:["business","ap-table-modal"],useTableModal:["business","ap-table-modal"],useTableSelectModal:["business","ap-table-modal"],ApTitle:["business","ap-title"],ApSummary:["business","ap-summary"],ScrollBar:["scroll-bar"],ScrollView:["scroll-view"],ApAppendix:["business","ap-appendix"],ApGroupSearch:["business","ap-group-search"],ApPopoverSelect:["business","ap-group-search","popover-select"],ApExtensionSelect:["business","ap-group-search","extension-select"],ApUploadSingle:["business","ap-upload-file","ap-upload-single"],BatchInputGroup:["business","batch-input-group"],ApFormControlRender:["ap-form","render"],ApFormItemRender:["ap-form","render"]};exports.default=e;
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e={ApActionItem:["ap-action","item"],ApActionItemModal:["ap-action","item-modal"],ApActionItemPopconfirm:["ap-action","item-popconfirm"],ApActionItemDropdown:["ap-action","item-dropdown"],ApActionGroup:["ap-action","group"],ApButton:["ap-button"],ApActionButton:["ap-action-button"],ApDescriptions:["ap-descriptions"],ApDownload:["ap-download"],ApField:["ap-field"],ApFieldText:["ap-field","text"],ApFieldCheckbox:["ap-field","checkbox"],ApFieldDate:["ap-field","date"],ApFieldNumber:["ap-field","number"],ApFieldRadio:["ap-field","radio"],ApFieldSwitch:["ap-field","switch"],ApFieldTextArea:["ap-field","text-area"],ApFieldDateRange:["ap-field","date-range"],ApFieldSelect:["ap-field","select"],ApFieldPassword:["ap-field","password"],ApFieldSlider:["ap-field","slider"],ApFieldSegmented:["ap-field","segmented"],ApFieldDateRate:["ap-field","rate"],ApForm:["ap-form"],ApFormItem:["ap-form","item"],ApFormItemGroup:["ap-form","item-group"],ApFormList:["ap-form","list"],ApFormSearchForm:["ap-form","search-form"],ApFormModalForm:["ap-form","modal-form"],ApFormDependency:["ap-form","dependency"],ApFormSet:["ap-form","set"],ApFormDrawerForm:["ap-form","drawer-form"],ApFormItemText:["ap-form","item-text"],ApFormItemTextArea:["ap-form","item-text-area"],ApFormItemNumber:["ap-form","item-number"],ApFormItemDate:["ap-form","item-date"],ApFormItemDateRange:["ap-form","item-date-range"],ApFormItemRadio:["ap-form","item-radio"],ApFormItemSelect:["ap-form","item-select"],ApFormItemSwitch:["ap-form","item-switch"],ApFormItemCheckbox:["ap-form","item-checkbox"],ApFormItemTextPassword:["ap-form","item-text-password"],ApFormItemTextGroup:["ap-form","item-text-group"],ApInfoLayout:["ap-info-layout"],ApList:["ap-list"],ApModal:["ap-modal"],ApDrawer:["ap-drawer"],ApTable:["ap-table"],ApTag:["ap-tag"],ApTagGroup:["ap-tag","group"],ApUpload:["ap-upload"],CheckCard:["check-card"],CheckCardGroup:["check-card","group"],ConfigProvider:["config-provider"],EditableTable:["editable-table"],EditableTableFormItem:["editable-table","form-item"],WorkOrderModal:["work-order-modal"],ApAttachment:["business","ap-attachment"],ApBatchAction:["business","ap-batch-action"],ApBatchActionGroup:["business","ap-batch-action-group"],ApButtonGroup:["business","ap-button-group"],ApCard:["business","ap-card"],ApExpandAlert:["business","ap-expand-alert"],ApExportGroup:["business","ap-export-group"],ApImage:["business","ap-image"],ApInputRadio:["business","ap-input-radio"],ApSizeInput:["business","ap-size-input"],ApLabel:["business","ap-label"],ApLabelGroup:["business","ap-label","group"],ApLadder:["business","ap-ladder"],ApSelectLayout:["business","ap-select-layout"],ApStatus:["business","ap-status"],ApStatusGroup:["business","ap-status","group"],ApTableModal:["business","ap-table-modal"],useTableModal:["business","ap-table-modal"],useTableSelectModal:["business","ap-table-modal"],ApTitle:["business","ap-title"],ApSummary:["business","ap-summary"],ScrollBar:["scroll-bar"],ScrollView:["scroll-view"],ApAppendix:["business","ap-appendix"],ApGroupSearch:["business","ap-group-search"],ApPopoverSelect:["business","ap-group-search","popover-select"],ApExtensionSelect:["business","ap-group-search","extension-select"],ApUploadSingle:["business","ap-upload-file","ap-upload-single"],BatchInputGroup:["business","batch-input-group"],ApFormControlRender:["ap-form","render"],ApFormItemRender:["ap-form","render"],Portal:["portal"],FullScreen:["full-screen"]};exports.default=e;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";require("./index.vue2.js");require("./interface.js");
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { DefineComponent, TeleportProps, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {};
|
|
8
|
+
rootEl: any;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
+
declare const __VLS_component: DefineComponent<Partial< TeleportProps>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Partial< TeleportProps>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
13
|
+
export default _default;
|
|
14
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
15
|
+
new (): {
|
|
16
|
+
$slots: S;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),n=e.defineComponent({name:"Portal",__name:"index",props:{to:{},disabled:{type:Boolean},defer:{type:Boolean}},setup(t){const r=t;return(o,l)=>(e.openBlock(),e.createBlock(e.Teleport,e.mergeProps(r,{to:o.to||"body"}),[e.renderSlot(o.$slots,"default")],16,["to"]))}});exports.default=n;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("./index.vue.js");exports.default=e.default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aplus-frontend/ui",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.11",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
"sortablejs": "^1.15.2",
|
|
66
66
|
"vue-virtual-scroller": "2.0.0-beta.8",
|
|
67
67
|
"vuedraggable": "^4.1.0",
|
|
68
|
-
"@aplus-frontend/
|
|
69
|
-
"@aplus-frontend/
|
|
68
|
+
"@aplus-frontend/hooks": "1.0.7",
|
|
69
|
+
"@aplus-frontend/utils": "1.0.48"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
72
|
"@aplus-frontend/antdv": "^1.0.11",
|
|
@@ -16,6 +16,10 @@
|
|
|
16
16
|
.aplus-ap-form-item--bordered .ant-picker {
|
|
17
17
|
padding: 0;
|
|
18
18
|
}
|
|
19
|
+
.aplus-ap-form-item--bordered .ant-input-group .ant-select + .ant-picker {
|
|
20
|
+
padding-inline: 11px;
|
|
21
|
+
flex: 1;
|
|
22
|
+
}
|
|
19
23
|
.aplus-ap-form-item--bordered .ant-space-compact-block .ant-input {
|
|
20
24
|
padding-left: 11px;
|
|
21
25
|
}
|
package/theme/ap-form/index.css
CHANGED
|
@@ -25,6 +25,10 @@
|
|
|
25
25
|
.aplus-ap-form-item--bordered .ant-picker {
|
|
26
26
|
padding: 0;
|
|
27
27
|
}
|
|
28
|
+
.aplus-ap-form-item--bordered .ant-input-group .ant-select + .ant-picker {
|
|
29
|
+
padding-inline: 11px;
|
|
30
|
+
flex: 1;
|
|
31
|
+
}
|
|
28
32
|
.aplus-ap-form-item--bordered .ant-space-compact-block .ant-input {
|
|
29
33
|
padding-left: 11px;
|
|
30
34
|
}
|
|
@@ -141,15 +145,29 @@
|
|
|
141
145
|
border-start-end-radius: 0;
|
|
142
146
|
border-end-end-radius: 0;
|
|
143
147
|
}
|
|
148
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:first-child .ant-form-item-control-input-content > .ant-input-group > :last-child,
|
|
149
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:first-child .ant-select-selector {
|
|
150
|
+
border-start-end-radius: 0;
|
|
151
|
+
border-end-end-radius: 0;
|
|
152
|
+
}
|
|
144
153
|
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-form-item-control-input-content > :first-child,
|
|
145
154
|
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-select-selector {
|
|
146
155
|
border-start-start-radius: 0;
|
|
147
156
|
border-end-start-radius: 0;
|
|
148
157
|
}
|
|
158
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-form-item-control-input-content > .ant-input-group > :first-child,
|
|
159
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-select-selector {
|
|
160
|
+
border-start-start-radius: 0;
|
|
161
|
+
border-end-start-radius: 0;
|
|
162
|
+
}
|
|
149
163
|
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-form-item-control-input-content > :first-child,
|
|
150
164
|
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-select-selector {
|
|
151
165
|
border-radius: 0;
|
|
152
166
|
}
|
|
167
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-form-item-control-input-content > .ant-input-group > *,
|
|
168
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-select-selector {
|
|
169
|
+
border-radius: 0;
|
|
170
|
+
}
|
|
153
171
|
.aplus-ap-form-item-text-group-compact .ant-input-group-addon:first-child {
|
|
154
172
|
border-radius: 0;
|
|
155
173
|
}
|
|
@@ -21,15 +21,29 @@
|
|
|
21
21
|
border-start-end-radius: 0;
|
|
22
22
|
border-end-end-radius: 0;
|
|
23
23
|
}
|
|
24
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:first-child .ant-form-item-control-input-content > .ant-input-group > :last-child,
|
|
25
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:first-child .ant-select-selector {
|
|
26
|
+
border-start-end-radius: 0;
|
|
27
|
+
border-end-end-radius: 0;
|
|
28
|
+
}
|
|
24
29
|
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-form-item-control-input-content > :first-child,
|
|
25
30
|
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-select-selector {
|
|
26
31
|
border-start-start-radius: 0;
|
|
27
32
|
border-end-start-radius: 0;
|
|
28
33
|
}
|
|
34
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-form-item-control-input-content > .ant-input-group > :first-child,
|
|
35
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-select-selector {
|
|
36
|
+
border-start-start-radius: 0;
|
|
37
|
+
border-end-start-radius: 0;
|
|
38
|
+
}
|
|
29
39
|
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-form-item-control-input-content > :first-child,
|
|
30
40
|
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-select-selector {
|
|
31
41
|
border-radius: 0;
|
|
32
42
|
}
|
|
43
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-form-item-control-input-content > .ant-input-group > *,
|
|
44
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-select-selector {
|
|
45
|
+
border-radius: 0;
|
|
46
|
+
}
|
|
33
47
|
.aplus-ap-form-item-text-group-compact .ant-input-group-addon:first-child {
|
|
34
48
|
border-radius: 0;
|
|
35
49
|
}
|
|
@@ -31,18 +31,28 @@
|
|
|
31
31
|
border-start-end-radius: 0;
|
|
32
32
|
border-end-end-radius: 0;
|
|
33
33
|
}
|
|
34
|
+
.ant-form-item-control-input-content > .ant-input-group > :last-child, .ant-select-selector {
|
|
35
|
+
border-start-end-radius: 0;
|
|
36
|
+
border-end-end-radius: 0;
|
|
37
|
+
}
|
|
34
38
|
}
|
|
35
39
|
.ant-form-item:last-child {
|
|
36
40
|
.ant-form-item-control-input-content > :first-child, .ant-select-selector {
|
|
37
41
|
border-start-start-radius: 0;
|
|
38
42
|
border-end-start-radius: 0;
|
|
39
43
|
}
|
|
40
|
-
|
|
44
|
+
.ant-form-item-control-input-content > .ant-input-group > :first-child, .ant-select-selector {
|
|
45
|
+
border-start-start-radius: 0;
|
|
46
|
+
border-end-start-radius: 0;
|
|
47
|
+
}
|
|
41
48
|
}
|
|
42
49
|
.ant-form-item:not(:first-child):not(:last-child) {
|
|
43
50
|
.ant-form-item-control-input-content > :first-child, .ant-select-selector {
|
|
44
51
|
border-radius: 0;
|
|
45
52
|
}
|
|
53
|
+
.ant-form-item-control-input-content > .ant-input-group > *, .ant-select-selector {
|
|
54
|
+
border-radius: 0;
|
|
55
|
+
}
|
|
46
56
|
}
|
|
47
57
|
.ant-input-group-addon:first-child {
|
|
48
58
|
border-radius: 0;
|
|
@@ -21,15 +21,29 @@
|
|
|
21
21
|
border-start-end-radius: 0;
|
|
22
22
|
border-end-end-radius: 0;
|
|
23
23
|
}
|
|
24
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:first-child .ant-form-item-control-input-content > .ant-input-group > :last-child,
|
|
25
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:first-child .ant-select-selector {
|
|
26
|
+
border-start-end-radius: 0;
|
|
27
|
+
border-end-end-radius: 0;
|
|
28
|
+
}
|
|
24
29
|
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-form-item-control-input-content > :first-child,
|
|
25
30
|
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-select-selector {
|
|
26
31
|
border-start-start-radius: 0;
|
|
27
32
|
border-end-start-radius: 0;
|
|
28
33
|
}
|
|
34
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-form-item-control-input-content > .ant-input-group > :first-child,
|
|
35
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-select-selector {
|
|
36
|
+
border-start-start-radius: 0;
|
|
37
|
+
border-end-start-radius: 0;
|
|
38
|
+
}
|
|
29
39
|
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-form-item-control-input-content > :first-child,
|
|
30
40
|
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-select-selector {
|
|
31
41
|
border-radius: 0;
|
|
32
42
|
}
|
|
43
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-form-item-control-input-content > .ant-input-group > *,
|
|
44
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-select-selector {
|
|
45
|
+
border-radius: 0;
|
|
46
|
+
}
|
|
33
47
|
.aplus-ap-form-item-text-group-compact .ant-input-group-addon:first-child {
|
|
34
48
|
border-radius: 0;
|
|
35
49
|
}
|
|
@@ -16,6 +16,10 @@
|
|
|
16
16
|
.aplus-ap-form-item--bordered .ant-picker {
|
|
17
17
|
padding: 0;
|
|
18
18
|
}
|
|
19
|
+
.aplus-ap-form-item--bordered .ant-input-group .ant-select + .ant-picker {
|
|
20
|
+
padding-inline: 11px;
|
|
21
|
+
flex: 1;
|
|
22
|
+
}
|
|
19
23
|
.aplus-ap-form-item--bordered .ant-space-compact-block .ant-input {
|
|
20
24
|
padding-left: 11px;
|
|
21
25
|
}
|
|
@@ -211,6 +211,10 @@
|
|
|
211
211
|
.aplus-ap-form-item--bordered .ant-picker {
|
|
212
212
|
padding: 0;
|
|
213
213
|
}
|
|
214
|
+
.aplus-ap-form-item--bordered .ant-input-group .ant-select + .ant-picker {
|
|
215
|
+
padding-inline: 11px;
|
|
216
|
+
flex: 1;
|
|
217
|
+
}
|
|
214
218
|
.aplus-ap-form-item--bordered .ant-space-compact-block .ant-input {
|
|
215
219
|
padding-left: 11px;
|
|
216
220
|
}
|
|
@@ -327,15 +331,29 @@
|
|
|
327
331
|
border-start-end-radius: 0;
|
|
328
332
|
border-end-end-radius: 0;
|
|
329
333
|
}
|
|
334
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:first-child .ant-form-item-control-input-content > .ant-input-group > :last-child,
|
|
335
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:first-child .ant-select-selector {
|
|
336
|
+
border-start-end-radius: 0;
|
|
337
|
+
border-end-end-radius: 0;
|
|
338
|
+
}
|
|
330
339
|
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-form-item-control-input-content > :first-child,
|
|
331
340
|
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-select-selector {
|
|
332
341
|
border-start-start-radius: 0;
|
|
333
342
|
border-end-start-radius: 0;
|
|
334
343
|
}
|
|
344
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-form-item-control-input-content > .ant-input-group > :first-child,
|
|
345
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-select-selector {
|
|
346
|
+
border-start-start-radius: 0;
|
|
347
|
+
border-end-start-radius: 0;
|
|
348
|
+
}
|
|
335
349
|
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-form-item-control-input-content > :first-child,
|
|
336
350
|
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-select-selector {
|
|
337
351
|
border-radius: 0;
|
|
338
352
|
}
|
|
353
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-form-item-control-input-content > .ant-input-group > *,
|
|
354
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-select-selector {
|
|
355
|
+
border-radius: 0;
|
|
356
|
+
}
|
|
339
357
|
.aplus-ap-form-item-text-group-compact .ant-input-group-addon:first-child {
|
|
340
358
|
border-radius: 0;
|
|
341
359
|
}
|
|
@@ -211,6 +211,10 @@
|
|
|
211
211
|
.aplus-ap-form-item--bordered .ant-picker {
|
|
212
212
|
padding: 0;
|
|
213
213
|
}
|
|
214
|
+
.aplus-ap-form-item--bordered .ant-input-group .ant-select + .ant-picker {
|
|
215
|
+
padding-inline: 11px;
|
|
216
|
+
flex: 1;
|
|
217
|
+
}
|
|
214
218
|
.aplus-ap-form-item--bordered .ant-space-compact-block .ant-input {
|
|
215
219
|
padding-left: 11px;
|
|
216
220
|
}
|
|
@@ -327,15 +331,29 @@
|
|
|
327
331
|
border-start-end-radius: 0;
|
|
328
332
|
border-end-end-radius: 0;
|
|
329
333
|
}
|
|
334
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:first-child .ant-form-item-control-input-content > .ant-input-group > :last-child,
|
|
335
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:first-child .ant-select-selector {
|
|
336
|
+
border-start-end-radius: 0;
|
|
337
|
+
border-end-end-radius: 0;
|
|
338
|
+
}
|
|
330
339
|
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-form-item-control-input-content > :first-child,
|
|
331
340
|
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-select-selector {
|
|
332
341
|
border-start-start-radius: 0;
|
|
333
342
|
border-end-start-radius: 0;
|
|
334
343
|
}
|
|
344
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-form-item-control-input-content > .ant-input-group > :first-child,
|
|
345
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-select-selector {
|
|
346
|
+
border-start-start-radius: 0;
|
|
347
|
+
border-end-start-radius: 0;
|
|
348
|
+
}
|
|
335
349
|
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-form-item-control-input-content > :first-child,
|
|
336
350
|
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-select-selector {
|
|
337
351
|
border-radius: 0;
|
|
338
352
|
}
|
|
353
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-form-item-control-input-content > .ant-input-group > *,
|
|
354
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-select-selector {
|
|
355
|
+
border-radius: 0;
|
|
356
|
+
}
|
|
339
357
|
.aplus-ap-form-item-text-group-compact .ant-input-group-addon:first-child {
|
|
340
358
|
border-radius: 0;
|
|
341
359
|
}
|
|
@@ -25,6 +25,10 @@
|
|
|
25
25
|
.aplus-ap-form-item--bordered .ant-picker {
|
|
26
26
|
padding: 0;
|
|
27
27
|
}
|
|
28
|
+
.aplus-ap-form-item--bordered .ant-input-group .ant-select + .ant-picker {
|
|
29
|
+
padding-inline: 11px;
|
|
30
|
+
flex: 1;
|
|
31
|
+
}
|
|
28
32
|
.aplus-ap-form-item--bordered .ant-space-compact-block .ant-input {
|
|
29
33
|
padding-left: 11px;
|
|
30
34
|
}
|
|
@@ -141,15 +145,29 @@
|
|
|
141
145
|
border-start-end-radius: 0;
|
|
142
146
|
border-end-end-radius: 0;
|
|
143
147
|
}
|
|
148
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:first-child .ant-form-item-control-input-content > .ant-input-group > :last-child,
|
|
149
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:first-child .ant-select-selector {
|
|
150
|
+
border-start-end-radius: 0;
|
|
151
|
+
border-end-end-radius: 0;
|
|
152
|
+
}
|
|
144
153
|
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-form-item-control-input-content > :first-child,
|
|
145
154
|
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-select-selector {
|
|
146
155
|
border-start-start-radius: 0;
|
|
147
156
|
border-end-start-radius: 0;
|
|
148
157
|
}
|
|
158
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-form-item-control-input-content > .ant-input-group > :first-child,
|
|
159
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-select-selector {
|
|
160
|
+
border-start-start-radius: 0;
|
|
161
|
+
border-end-start-radius: 0;
|
|
162
|
+
}
|
|
149
163
|
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-form-item-control-input-content > :first-child,
|
|
150
164
|
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-select-selector {
|
|
151
165
|
border-radius: 0;
|
|
152
166
|
}
|
|
167
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-form-item-control-input-content > .ant-input-group > *,
|
|
168
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-select-selector {
|
|
169
|
+
border-radius: 0;
|
|
170
|
+
}
|
|
153
171
|
.aplus-ap-form-item-text-group-compact .ant-input-group-addon:first-child {
|
|
154
172
|
border-radius: 0;
|
|
155
173
|
}
|
package/theme/index.css
CHANGED
|
@@ -375,6 +375,10 @@
|
|
|
375
375
|
.aplus-ap-form-item--bordered .ant-picker {
|
|
376
376
|
padding: 0;
|
|
377
377
|
}
|
|
378
|
+
.aplus-ap-form-item--bordered .ant-input-group .ant-select + .ant-picker {
|
|
379
|
+
padding-inline: 11px;
|
|
380
|
+
flex: 1;
|
|
381
|
+
}
|
|
378
382
|
.aplus-ap-form-item--bordered .ant-space-compact-block .ant-input {
|
|
379
383
|
padding-left: 11px;
|
|
380
384
|
}
|
|
@@ -491,15 +495,29 @@
|
|
|
491
495
|
border-start-end-radius: 0;
|
|
492
496
|
border-end-end-radius: 0;
|
|
493
497
|
}
|
|
498
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:first-child .ant-form-item-control-input-content > .ant-input-group > :last-child,
|
|
499
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:first-child .ant-select-selector {
|
|
500
|
+
border-start-end-radius: 0;
|
|
501
|
+
border-end-end-radius: 0;
|
|
502
|
+
}
|
|
494
503
|
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-form-item-control-input-content > :first-child,
|
|
495
504
|
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-select-selector {
|
|
496
505
|
border-start-start-radius: 0;
|
|
497
506
|
border-end-start-radius: 0;
|
|
498
507
|
}
|
|
508
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-form-item-control-input-content > .ant-input-group > :first-child,
|
|
509
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:last-child .ant-select-selector {
|
|
510
|
+
border-start-start-radius: 0;
|
|
511
|
+
border-end-start-radius: 0;
|
|
512
|
+
}
|
|
499
513
|
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-form-item-control-input-content > :first-child,
|
|
500
514
|
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-select-selector {
|
|
501
515
|
border-radius: 0;
|
|
502
516
|
}
|
|
517
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-form-item-control-input-content > .ant-input-group > *,
|
|
518
|
+
.aplus-ap-form-item-text-group-compact .ant-form-item:not(:first-child):not(:last-child) .ant-select-selector {
|
|
519
|
+
border-radius: 0;
|
|
520
|
+
}
|
|
503
521
|
.aplus-ap-form-item-text-group-compact .ant-input-group-addon:first-child {
|
|
504
522
|
border-radius: 0;
|
|
505
523
|
}
|
|
@@ -2113,3 +2131,9 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2113
2131
|
right: 0;
|
|
2114
2132
|
height: 100%;
|
|
2115
2133
|
}
|
|
2134
|
+
.aplus-full-screen-wrapper--full {
|
|
2135
|
+
position: fixed;
|
|
2136
|
+
top: 0;
|
|
2137
|
+
width: 100vw;
|
|
2138
|
+
height: 100vh;
|
|
2139
|
+
}
|
package/theme/index.less
CHANGED