@aplus-frontend/ui 6.14.0 → 6.16.0
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/src/ap-grid/utils/table.mjs +8 -8
- package/es/src/ap-list/hooks/use-offline-list.d.ts +3 -0
- package/es/src/ap-list/hooks/use-offline-list.mjs +25 -19
- package/es/src/ap-list/interface.d.ts +3 -5
- package/es/src/business/ap-batch-action/ApBatchAction.vue.d.ts +3 -1
- package/es/src/business/ap-batch-action/ApBatchAction.vue2.mjs +35 -31
- package/es/src/business/ap-batch-action/index.d.ts +9 -3
- package/es/src/business/ap-batch-action/interface.d.ts +4 -0
- package/es/src/business/ap-export-group/ApExportGroup.vue.d.ts +1 -1
- package/es/src/business/ap-export-group/ApExportGroup.vue2.mjs +153 -116
- package/es/src/business/ap-export-group/index.d.ts +3 -3
- package/es/src/business/ap-export-group/interface.d.ts +14 -2
- package/es/src/business/ap-table-modal/interface.d.ts +3 -1
- package/es/src/business/ap-table-modal/table-layout/index.vue2.mjs +32 -30
- package/es/src/design-token/index.mjs +1 -1
- package/es/src/editable-table/hooks/use-get-columns.mjs +18 -18
- package/es/src/text/index.vue.d.ts +1 -1
- package/es/src/text/index.vue.mjs +49 -43
- package/es/src/version.d.ts +1 -1
- package/es/src/version.mjs +1 -1
- package/es/test/setup.d.ts +1 -5
- package/lib/src/ap-grid/utils/table.js +1 -1
- package/lib/src/ap-list/hooks/use-offline-list.d.ts +3 -0
- package/lib/src/ap-list/hooks/use-offline-list.js +1 -1
- package/lib/src/ap-list/interface.d.ts +3 -5
- package/lib/src/business/ap-batch-action/ApBatchAction.vue.d.ts +3 -1
- package/lib/src/business/ap-batch-action/ApBatchAction.vue2.js +1 -1
- package/lib/src/business/ap-batch-action/index.d.ts +9 -3
- package/lib/src/business/ap-batch-action/interface.d.ts +4 -0
- package/lib/src/business/ap-export-group/ApExportGroup.vue.d.ts +1 -1
- package/lib/src/business/ap-export-group/ApExportGroup.vue2.js +1 -1
- package/lib/src/business/ap-export-group/index.d.ts +3 -3
- package/lib/src/business/ap-export-group/interface.d.ts +14 -2
- package/lib/src/business/ap-table-modal/interface.d.ts +3 -1
- package/lib/src/business/ap-table-modal/table-layout/index.vue2.js +1 -1
- package/lib/src/design-token/index.js +1 -1
- package/lib/src/editable-table/hooks/use-get-columns.js +1 -1
- package/lib/src/text/index.vue.d.ts +1 -1
- package/lib/src/text/index.vue.js +1 -1
- package/lib/src/version.d.ts +1 -1
- package/lib/src/version.js +1 -1
- package/lib/test/setup.d.ts +1 -5
- package/package.json +1 -1
- package/theme/ap-grid/index.css +11 -4
- package/theme/ap-grid/index.less +11 -2
- package/theme/ap-table-modal/index.css +3 -2
- package/theme/ap-table-modal/index.less +3 -2
- package/theme/index.css +17 -6
- package/theme/text/index.css +3 -0
- package/theme/text/index.less +3 -0
|
@@ -5,7 +5,7 @@ import { ApExportGroupProps } from './interface';
|
|
|
5
5
|
export * from './interface';
|
|
6
6
|
declare const ApExportGroup: {
|
|
7
7
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApExportGroupProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
8
|
-
type: "button" | "dropdown";
|
|
8
|
+
type: "button" | "dropdown" | "group";
|
|
9
9
|
exportField: boolean | {
|
|
10
10
|
key?: string;
|
|
11
11
|
convertField?: {
|
|
@@ -21,7 +21,7 @@ declare const ApExportGroup: {
|
|
|
21
21
|
M: {};
|
|
22
22
|
Defaults: {};
|
|
23
23
|
}, Readonly< ApExportGroupProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
24
|
-
type: "button" | "dropdown";
|
|
24
|
+
type: "button" | "dropdown" | "group";
|
|
25
25
|
exportField: boolean | {
|
|
26
26
|
key?: string;
|
|
27
27
|
convertField?: {
|
|
@@ -34,7 +34,7 @@ declare const ApExportGroup: {
|
|
|
34
34
|
__isTeleport?: never;
|
|
35
35
|
__isSuspense?: never;
|
|
36
36
|
} & ComponentOptionsBase<Readonly< ApExportGroupProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
37
|
-
type: "button" | "dropdown";
|
|
37
|
+
type: "button" | "dropdown" | "group";
|
|
38
38
|
exportField: boolean | {
|
|
39
39
|
key?: string;
|
|
40
40
|
convertField?: {
|
|
@@ -1,12 +1,23 @@
|
|
|
1
|
-
|
|
1
|
+
import { ApBatchActionGroupButtonProps } from '../ap-batch-action-group';
|
|
2
|
+
export type ApExportGroupProps = {
|
|
2
3
|
/**
|
|
3
4
|
* 类型
|
|
4
5
|
*/
|
|
5
|
-
type?: 'button' | 'dropdown';
|
|
6
|
+
type?: 'button' | 'dropdown' | 'group';
|
|
6
7
|
/**
|
|
7
8
|
* 选中行的Key列表
|
|
8
9
|
*/
|
|
9
10
|
selectedRowKeys?: any[];
|
|
11
|
+
/**
|
|
12
|
+
* 类型为group时配置,适用于多导出
|
|
13
|
+
*/
|
|
14
|
+
groupList?: ApExportGroupListItem[];
|
|
15
|
+
/**
|
|
16
|
+
* 类型为group时配置,和批量操作按钮组buttonProps一致
|
|
17
|
+
*/
|
|
18
|
+
buttonProps?: ApBatchActionGroupButtonProps;
|
|
19
|
+
} & ApExportGroupListItem;
|
|
20
|
+
export interface ApExportGroupListItem {
|
|
10
21
|
/**
|
|
11
22
|
* 是否禁用
|
|
12
23
|
*/
|
|
@@ -57,5 +68,6 @@ export declare enum ApExportGroupActionType {
|
|
|
57
68
|
}
|
|
58
69
|
export type ApExportGroupAntMenuInfo = {
|
|
59
70
|
key: string | number;
|
|
71
|
+
option?: ApExportGroupListItem;
|
|
60
72
|
};
|
|
61
73
|
export type ApExportGroupMixedParams<ParamsType> = Partial<ParamsType>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { VNode, VNodeChild } from 'vue';
|
|
1
|
+
import { StyleValue, VNode, VNodeChild } from 'vue';
|
|
2
2
|
import { ApTableProps } from '../../ap-table';
|
|
3
3
|
import { ModalProps, TableProps } from '@aplus-frontend/antdv';
|
|
4
4
|
/** table-modal的props类型 */
|
|
@@ -75,6 +75,8 @@ export interface TableLayoutConfig {
|
|
|
75
75
|
leftTitle?: string | VNodeChild;
|
|
76
76
|
/** 右侧标题 */
|
|
77
77
|
rightTitle?: (selectedCount: number) => string | VNodeChild;
|
|
78
|
+
/** 右侧内容样式 */
|
|
79
|
+
rightContentStyle?: StyleValue;
|
|
78
80
|
/** 已经选择item渲染, renderSelectedItem有值才为复杂布局 */
|
|
79
81
|
renderSelectedItem?: (record: any, actions: {
|
|
80
82
|
deleteItem: (record: any) => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../../config-provider/index.js");const c=require("../../ap-title/index.js"),n=require("@aplus-frontend/antdv"),y=require("../../../config-provider/hooks/use-locale.js"),
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../../config-provider/index.js");const c=require("../../ap-title/index.js"),n=require("@aplus-frontend/antdv"),y=require("../../../config-provider/hooks/use-locale.js"),g=require("../../../config-provider/hooks/use-namespace.js"),k=e.defineComponent({__name:"index",props:{leftTitle:{type:[String,Object,Number,Boolean,null,Array],default:""},rightTitle:{},rightContentStyle:{type:[Boolean,null,String,Object,Array]},renderSelectedItem:{},selectedList:{default:()=>[]}},emits:["clear","deleteItem"],setup(d,{emit:u}){const{t:r}=y.useLocale(),o=d,a=u,m=()=>{a("clear")},p=t=>{a("deleteItem",t)},f=t=>typeof o.rightTitle=="function"?o.rightTitle(t):`${r("ap.apTableModal.selected")} (${t})`,{m:l}=g.useNamespace("ap-table-modal");return(t,h)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([t.renderSelectedItem?e.unref(l)("table-layout"):"",{"complex-layout":!!t.renderSelectedItem}])},[t.renderSelectedItem?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[t.leftTitle?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(e.unref(l)("table-layout-left"))},[e.createVNode(e.unref(c.ApTitle),{style:{"margin-bottom":"16px"}},{prefix:e.withCtx(()=>[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(e.h(e.Fragment,[t.leftTitle]))))]),_:1}),e.createElementVNode("div",{class:e.normalizeClass(e.unref(l)("table-layout-left-content"))},[e.renderSlot(t.$slots,"default")],2)],2)):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(e.unref(l)("table-layout-right")),style:e.normalizeStyle(t.rightContentStyle)},[e.createVNode(e.unref(c.ApTitle),{title:`${e.unref(r)("ap.apTableModal.selected")} (${t.selectedList.length})`},{prefix:e.withCtx(()=>[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(e.h(e.Fragment,[f(t.selectedList.length)]))))]),suffix:e.withCtx(()=>[e.createVNode(e.unref(n.Button),{type:"link",style:{padding:"0px",height:"22px","border-width":"0px"},onClick:m},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(r)("ap.apTableModal.clear")),1)]),_:1})]),_:1},8,["title"]),e.createElementVNode("div",{class:e.normalizeClass(e.unref(l)("table-layout-right-content"))},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.selectedList,i=>{var s;return e.openBlock(),e.createBlock(e.resolveDynamicComponent((s=t.renderSelectedItem)==null?void 0:s.call(t,i,{deleteItem:p})),{key:i})}),128)),t.selectedList.length===0?(e.openBlock(),e.createBlock(e.unref(n.Empty),{key:0,image:e.unref(n.Empty).PRESENTED_IMAGE_SIMPLE,style:{"margin-top":"100px"}},null,8,["image"])):e.createCommentVNode("",!0)],2)],6)],64)):e.renderSlot(t.$slots,"default",{key:1})],2))}});exports.default=k;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o={borderRadius:4,fontSize:12,sizeStep:4,lineHeight:1.5,lineHeightSM:1.6,wireframe:!1,sizeUnit:3},r={...o,colorPrimary:"#0070FF",colorPrimaryHover:"#66A9FF",colorPrimaryActive:"#338CFF",colorTextBase:"#182948",colorText:"#182948",colorTextSecondary:"#526A90",colorTextTertiary:"#8896B0",colorTextPlaceholder:"#BFBFBF",colorBorder:"#DEE4ED",colorSplit:"#E9EDF3",colorInfo:"#0070FF",colorSuccess:"#2ED1A3",colorError:"#FF4D4F",colorWarning:"#FFA940",colorBgContainerDisabled:"#F2F6F9",wireframe:!1,colorBgLayout:"#F2F6F9",colorBgSpotlight:"#000000cc",controlItemBgActive:"#F5F9FF",controlItemBgActiveHover:"#EAF2FF",colorBorderSecondary:"#E9EDF3"},e={...o,colorPrimary:"#34B77C",colorPrimaryHover:"#85D4B0",colorPrimaryActive:"#5DC596",colorBgContainerDisabled:"#f5f5f5",colorTextBase:"#333333",colorText:"#333333",colorTextSecondary:"#666666",colorTextTertiary:"#999999",colorTextPlaceholder:"#ABB7CC",colorBorder:"#D9D9D9",colorSplit:"#E9E9E9",colorInfo:"#1890FF",colorSuccess:"#
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o={borderRadius:4,fontSize:12,sizeStep:4,lineHeight:1.5,lineHeightSM:1.6,wireframe:!1,sizeUnit:3},r={...o,colorPrimary:"#0070FF",colorPrimaryHover:"#66A9FF",colorPrimaryActive:"#338CFF",colorTextBase:"#182948",colorText:"#182948",colorTextSecondary:"#526A90",colorTextTertiary:"#8896B0",colorTextPlaceholder:"#BFBFBF",colorBorder:"#DEE4ED",colorSplit:"#E9EDF3",colorInfo:"#0070FF",colorSuccess:"#2ED1A3",colorError:"#FF4D4F",colorWarning:"#FFA940",colorBgContainerDisabled:"#F2F6F9",wireframe:!1,colorBgLayout:"#F2F6F9",colorBgSpotlight:"#000000cc",controlItemBgActive:"#F5F9FF",controlItemBgActiveHover:"#EAF2FF",colorBorderSecondary:"#E9EDF3"},e={...o,colorPrimary:"#34B77C",colorPrimaryHover:"#85D4B0",colorPrimaryActive:"#5DC596",colorBgContainerDisabled:"#f5f5f5",colorTextBase:"#333333",colorText:"#333333",colorTextSecondary:"#666666",colorTextTertiary:"#999999",colorTextPlaceholder:"#ABB7CC",colorBorder:"#D9D9D9",colorSplit:"#E9E9E9",colorInfo:"#1890FF",colorSuccess:"#34b77c",colorError:"#FF4D4F",colorWarning:"#FAAD14",colorLink:"#1890FF",wireframe:!1,colorBgLayout:"#FAFAFA",colorBgSpotlight:"#000000cc",controlItemBgActive:"#f3fbf7",controlItemBgActiveHover:"#e6f6ef",colorBorderSecondary:"#E9E9E9"};exports.adminToken=e;exports.aplusToken=r;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const r=require("vue"),d=require("lodash-unified"),c=require("../utils.js"),s=require("../../ap-table/utils.js");require("../../config-provider/index.js");const
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const r=require("vue"),d=require("lodash-unified"),c=require("../utils.js"),s=require("../../ap-table/utils.js");require("../../config-provider/index.js");const C=require("@aplus-frontend/antdv/es/theme/internal"),N=require("../../config-provider/hooks/use-namespace.js"),v=(l,x)=>{const{em:h,be:F}=N.useNamespace("editable-table"),T=r.useSlots(),[,q]=C.useToken();return r.computed(()=>{const i=l.columns;if(!i)return[];function b(I){return I.map(e=>({...d.omit(e,["ellipsis"]),children:b(e.children||[]),title:c.getEditableTableTitle(e,F("table-header","title"),h("header-cell","required"),T.headerCell,r.unref(q).colorTextTertiary),customRender({value:a,...n}){const u=d.isFunction(e.editable)?e.editable(n.text,n.record,n.index):!!e.editable;if(!e.valueType&&!e.customRender&&!e.customRenderFormItem)return console.warn("can not render table cell because no `valueType` / `customRender` / `customRenderFormItem`"),null;let o;if(u){const t=s.updateFormProps(e,s.getFieldProps(e.fieldProps,{value:a,...n})),m={};l.onFieldChange&&(m[`onUpdate:${t.valuePropName||"value"}`]=y=>{var g;return(g=l.onFieldChange)==null?void 0:g.call(l,n.index,e.dataIndex,y)});const R=d.isArray(e.dataIndex)?e.dataIndex:[e.dataIndex];o={name:[...d.isArray(l.name)?l.name:[l.name],n.index,...R],...t||{},field:{style:"width: 100%",...(t==null?void 0:t.field)||{},...m,class:c.mergeClass("is-editable",t.class)}}}else o={field:s.getTableRenderProps(e,{value:a,...n})};const f=c.getFinalNode(e,u,o,a,n.record,r.unref(x));return e.customRender?e.customRender({value:a,...n,editable:u,originalNode:f}):f}}))}return b(i)})};exports.default=v;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ApTextProps } from './interface';
|
|
2
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, CSSProperties, ComponentProvideOptions } from 'vue';
|
|
3
2
|
import { LinkProps } from '@aplus-frontend/antdv/es/typography/Link';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, CSSProperties, ComponentProvideOptions } from 'vue';
|
|
4
4
|
type ApTextSlots = {
|
|
5
5
|
default: any;
|
|
6
6
|
ellipsisSymbol: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),u=require("@aplus-frontend/antdv"),t=require("lodash-unified");require("../config-provider/index.js");const
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),u=require("@aplus-frontend/antdv"),t=require("lodash-unified");require("../config-provider/index.js");const g=require("./context.js"),S=require("../utils/index.js"),P=require("../config-provider/hooks/use-namespace.js"),N=e.defineComponent({name:"ApText",__name:"index",props:{ellipsis:{type:[Boolean,Object]},delete:{type:Boolean},type:{},code:{type:Boolean},mark:{type:Boolean},strong:{type:Boolean},content:{},underline:{type:Boolean},disabled:{type:Boolean},prefixCls:{},editable:{type:[Boolean,Object]},keyboard:{type:Boolean},copyable:{type:[Boolean,Object]},"onUpdate:content":{},label:{},colon:{type:Boolean,default:void 0},vertical:{type:Boolean,default:void 0},labelStyle:{default:void 0},link:{type:[Boolean,String]},linkProps:{default:()=>({})},onClickContent:{},class:{},style:{}},setup(d){const s=e.useSlots(),n=d,{b:p,e:a,em:f,m}=P.useNamespace("ap-text"),{colon:o,vertical:r,labelStyle:k}=g.useInjectApTextGroup(),y=e.computed(()=>t.isUndefined(n.colon)?t.isUndefined(o==null?void 0:o.value)?!0:o.value:n.colon),b=e.computed(()=>t.isUndefined(n.vertical)?t.isUndefined(r==null?void 0:r.value)?!1:r.value:n.vertical),B=e.computed(()=>{const l=e.unref(k)||{};return Object.assign(l,n.labelStyle||{}),l}),i=e.computed(()=>{if(n.label)return e.isVNode(n.label)?n.label:e.createVNode(e.Fragment,null,[n.label])}),v=e.computed(()=>{const l=S.isDef(n.linkProps.ellipsis)?n.linkProps.ellipsis:!!n.ellipsis;return{href:t.isString(n.link)?n.link:void 0,...t.omit(n,["linkProps"]),...n.linkProps,ellipsis:l}});return(l,h)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([e.unref(p)(),{[e.unref(m)("vertical")]:b.value}])},[i.value?(e.openBlock(),e.createElementBlock("span",{key:0,class:e.normalizeClass([e.unref(a)("label"),{[e.unref(f)("label","no-colon")]:!y.value}]),style:e.normalizeStyle(B.value)},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(i.value)))],6)):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(e.unref(a)("content"))},[l.link?(e.openBlock(),e.createBlock(e.unref(u.TypographyLink),e.mergeProps({key:0},v.value,{onClick:l.onClickContent}),{default:e.withCtx(()=>[e.renderSlot(l.$slots,"default")]),_:3},16,["onClick"])):(e.openBlock(),e.createBlock(e.unref(u.TypographyText),e.mergeProps({key:1},e.unref(t.omit)(n,["label","colon","link","linkProps","vertical","labelStyle"]),{onClick:l.onClickContent}),e.createSlots({default:e.withCtx(()=>[e.renderSlot(l.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(l.content||"--"),1)])]),_:2},[e.renderList(e.unref(t.omit)(s,["default","addonAfter"]),(q,c)=>({name:c,fn:e.withCtx(C=>[e.renderSlot(l.$slots,c,e.normalizeProps(e.guardReactiveProps(C||{})))])}))]),1040,["onClick"])),s.addonAfter?(e.openBlock(),e.createElementBlock("div",{key:2,class:e.normalizeClass(e.unref(a)("content-addon-after"))},[e.renderSlot(l.$slots,"addonAfter")],2)):e.createCommentVNode("",!0)],2)],2))}});exports.default=N;
|
package/lib/src/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "6.
|
|
1
|
+
declare const _default: "6.16.0";
|
|
2
2
|
export default _default;
|
package/lib/src/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="6.
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="6.16.0";exports.default=e;
|
package/lib/test/setup.d.ts
CHANGED
package/package.json
CHANGED
package/theme/ap-grid/index.css
CHANGED
|
@@ -513,19 +513,26 @@
|
|
|
513
513
|
.aplus-ap-grid ::-webkit-scrollbar-thumb:active {
|
|
514
514
|
background-color: var(--ap-scrollbar-thumb-color-hover);
|
|
515
515
|
}
|
|
516
|
-
.aplus-ap-grid .vxe-table--render-default.size--medium .vxe-body--column.is--padding div.vxe-cell
|
|
517
|
-
.aplus-ap-grid .vxe-table--render-default.size--medium .vxe-header--column.is--padding div.vxe-cell {
|
|
516
|
+
.aplus-ap-grid .vxe-table--render-default.size--medium .vxe-body--column.is--padding div.vxe-cell {
|
|
518
517
|
min-height: unset !important;
|
|
519
518
|
padding: 9px 12px;
|
|
520
519
|
font-size: 12px;
|
|
521
520
|
line-height: 18px;
|
|
522
521
|
}
|
|
523
|
-
.aplus-ap-grid .vxe-table--render-default.size--mini .vxe-body--column.is--padding div.vxe-cell
|
|
524
|
-
.aplus-ap-grid .vxe-table--render-default.size--mini .vxe-header--column.is--padding div.vxe-cell {
|
|
522
|
+
.aplus-ap-grid .vxe-table--render-default.size--mini .vxe-body--column.is--padding div.vxe-cell {
|
|
525
523
|
min-height: unset !important;
|
|
526
524
|
padding: 6px 9px;
|
|
527
525
|
line-height: 18px;
|
|
528
526
|
}
|
|
527
|
+
.aplus-ap-grid .vxe-table--render-default.size--medium .vxe-header--column.is--padding div.vxe-cell {
|
|
528
|
+
font-size: 12px;
|
|
529
|
+
line-height: 16px;
|
|
530
|
+
padding: 0px 12px;
|
|
531
|
+
}
|
|
532
|
+
.aplus-ap-grid .vxe-table--render-default.size--mini .vxe-header--column.is--padding div.vxe-cell {
|
|
533
|
+
line-height: 16px;
|
|
534
|
+
padding: 0 9px;
|
|
535
|
+
}
|
|
529
536
|
.aplus-ap-grid-adaptive {
|
|
530
537
|
height: 100%;
|
|
531
538
|
display: flex;
|
package/theme/ap-grid/index.less
CHANGED
|
@@ -11,17 +11,26 @@
|
|
|
11
11
|
|
|
12
12
|
.b(ap-grid, {
|
|
13
13
|
.reset-scrollbar();
|
|
14
|
-
.vxe-table--render-default.size--medium .vxe-body--column.is--padding div.vxe-cell
|
|
14
|
+
.vxe-table--render-default.size--medium .vxe-body--column.is--padding div.vxe-cell{
|
|
15
15
|
min-height: unset !important;
|
|
16
16
|
padding: 9px 12px;
|
|
17
17
|
font-size: @font-size-base;
|
|
18
18
|
line-height: @line-height-base;
|
|
19
19
|
}
|
|
20
|
-
.vxe-table--render-default.size--mini .vxe-body--column.is--padding div.vxe-cell
|
|
20
|
+
.vxe-table--render-default.size--mini .vxe-body--column.is--padding div.vxe-cell {
|
|
21
21
|
min-height: unset !important;
|
|
22
22
|
padding: 6px 9px;
|
|
23
23
|
line-height: @line-height-base;
|
|
24
24
|
}
|
|
25
|
+
.vxe-table--render-default.size--medium .vxe-header--column.is--padding div.vxe-cell {
|
|
26
|
+
font-size: @font-size-base;
|
|
27
|
+
line-height: 16px;
|
|
28
|
+
padding: 0px 12px;
|
|
29
|
+
}
|
|
30
|
+
.vxe-table--render-default.size--mini .vxe-header--column.is--padding div.vxe-cell {
|
|
31
|
+
line-height: 16px;
|
|
32
|
+
padding: 0 9px;
|
|
33
|
+
}
|
|
25
34
|
&-adaptive {
|
|
26
35
|
height: 100%;
|
|
27
36
|
display: flex;
|
|
@@ -918,7 +918,8 @@
|
|
|
918
918
|
position: relative;
|
|
919
919
|
}
|
|
920
920
|
.aplus-ap-table-modal--table-layout-left {
|
|
921
|
-
|
|
921
|
+
flex: 1;
|
|
922
|
+
min-width: 0px;
|
|
922
923
|
padding-right: 20px;
|
|
923
924
|
box-sizing: border-box;
|
|
924
925
|
display: flex;
|
|
@@ -931,6 +932,7 @@
|
|
|
931
932
|
height: 100%;
|
|
932
933
|
}
|
|
933
934
|
.aplus-ap-table-modal--table-layout-right {
|
|
935
|
+
max-height: 643px;
|
|
934
936
|
width: 410px;
|
|
935
937
|
padding-left: 20px;
|
|
936
938
|
position: relative;
|
|
@@ -939,7 +941,6 @@
|
|
|
939
941
|
}
|
|
940
942
|
.aplus-ap-table-modal--table-layout-right-content {
|
|
941
943
|
flex: 1;
|
|
942
|
-
max-height: 540px;
|
|
943
944
|
overflow-y: auto;
|
|
944
945
|
}
|
|
945
946
|
.aplus-ap-table-modal--table-layout-right::before {
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
&-left {
|
|
20
|
-
|
|
20
|
+
flex: 1;
|
|
21
|
+
min-width: 0px;
|
|
21
22
|
padding-right: 20px;
|
|
22
23
|
box-sizing: border-box;
|
|
23
24
|
display: flex;
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
&-right {
|
|
35
|
+
max-height: 643px;
|
|
34
36
|
width: 410px;
|
|
35
37
|
padding-left: 20px;
|
|
36
38
|
position: relative;
|
|
@@ -38,7 +40,6 @@
|
|
|
38
40
|
flex-direction: column;
|
|
39
41
|
&-content {
|
|
40
42
|
flex: 1;
|
|
41
|
-
max-height: 540px;
|
|
42
43
|
overflow-y: auto;
|
|
43
44
|
}
|
|
44
45
|
&::before {
|
package/theme/index.css
CHANGED
|
@@ -2937,7 +2937,8 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2937
2937
|
position: relative;
|
|
2938
2938
|
}
|
|
2939
2939
|
.aplus-ap-table-modal--table-layout-left {
|
|
2940
|
-
|
|
2940
|
+
flex: 1;
|
|
2941
|
+
min-width: 0px;
|
|
2941
2942
|
padding-right: 20px;
|
|
2942
2943
|
box-sizing: border-box;
|
|
2943
2944
|
display: flex;
|
|
@@ -2950,6 +2951,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2950
2951
|
height: 100%;
|
|
2951
2952
|
}
|
|
2952
2953
|
.aplus-ap-table-modal--table-layout-right {
|
|
2954
|
+
max-height: 643px;
|
|
2953
2955
|
width: 410px;
|
|
2954
2956
|
padding-left: 20px;
|
|
2955
2957
|
position: relative;
|
|
@@ -2958,7 +2960,6 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2958
2960
|
}
|
|
2959
2961
|
.aplus-ap-table-modal--table-layout-right-content {
|
|
2960
2962
|
flex: 1;
|
|
2961
|
-
max-height: 540px;
|
|
2962
2963
|
overflow-y: auto;
|
|
2963
2964
|
}
|
|
2964
2965
|
.aplus-ap-table-modal--table-layout-right::before {
|
|
@@ -3385,19 +3386,26 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3385
3386
|
.aplus-ap-grid ::-webkit-scrollbar-thumb:active {
|
|
3386
3387
|
background-color: var(--ap-scrollbar-thumb-color-hover);
|
|
3387
3388
|
}
|
|
3388
|
-
.aplus-ap-grid .vxe-table--render-default.size--medium .vxe-body--column.is--padding div.vxe-cell
|
|
3389
|
-
.aplus-ap-grid .vxe-table--render-default.size--medium .vxe-header--column.is--padding div.vxe-cell {
|
|
3389
|
+
.aplus-ap-grid .vxe-table--render-default.size--medium .vxe-body--column.is--padding div.vxe-cell {
|
|
3390
3390
|
min-height: unset !important;
|
|
3391
3391
|
padding: 9px 12px;
|
|
3392
3392
|
font-size: 12px;
|
|
3393
3393
|
line-height: 18px;
|
|
3394
3394
|
}
|
|
3395
|
-
.aplus-ap-grid .vxe-table--render-default.size--mini .vxe-body--column.is--padding div.vxe-cell
|
|
3396
|
-
.aplus-ap-grid .vxe-table--render-default.size--mini .vxe-header--column.is--padding div.vxe-cell {
|
|
3395
|
+
.aplus-ap-grid .vxe-table--render-default.size--mini .vxe-body--column.is--padding div.vxe-cell {
|
|
3397
3396
|
min-height: unset !important;
|
|
3398
3397
|
padding: 6px 9px;
|
|
3399
3398
|
line-height: 18px;
|
|
3400
3399
|
}
|
|
3400
|
+
.aplus-ap-grid .vxe-table--render-default.size--medium .vxe-header--column.is--padding div.vxe-cell {
|
|
3401
|
+
font-size: 12px;
|
|
3402
|
+
line-height: 16px;
|
|
3403
|
+
padding: 0px 12px;
|
|
3404
|
+
}
|
|
3405
|
+
.aplus-ap-grid .vxe-table--render-default.size--mini .vxe-header--column.is--padding div.vxe-cell {
|
|
3406
|
+
line-height: 16px;
|
|
3407
|
+
padding: 0 9px;
|
|
3408
|
+
}
|
|
3401
3409
|
.aplus-ap-grid-adaptive {
|
|
3402
3410
|
height: 100%;
|
|
3403
3411
|
display: flex;
|
|
@@ -3597,6 +3605,9 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
3597
3605
|
flex-direction: column;
|
|
3598
3606
|
align-items: flex-start;
|
|
3599
3607
|
}
|
|
3608
|
+
.aplus-ap-text--vertical > .aplus-ap-text__content {
|
|
3609
|
+
max-width: 100%;
|
|
3610
|
+
}
|
|
3600
3611
|
.aplus-ap-text__label {
|
|
3601
3612
|
display: inline-flex;
|
|
3602
3613
|
align-items: baseline;
|
package/theme/text/index.css
CHANGED