@aplus-frontend/ui 0.0.37 → 0.0.39
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-download/ap-download.vue.mjs +26 -35
- package/es/src/ap-download/hooks/index.d.ts +1 -6
- package/es/src/ap-download/hooks/index.mjs +12 -12
- package/es/src/ap-download/interface.d.ts +3 -13
- package/es/src/ap-download/style/ap-download.css +12 -12
- package/es/src/ap-form/ap-form-item-group/index.vue.mjs +28 -27
- package/es/src/ap-form/search-form/index.vue.mjs +107 -102
- package/es/src/ap-table/ap-table.vue.d.ts +10 -4
- package/es/src/ap-table/ap-table.vue.mjs +58 -57
- package/es/src/ap-table/constants.d.ts +8 -8
- package/es/src/ap-table/hooks/use-table-row-selection.d.ts +1 -1
- package/es/src/ap-table/interface.d.ts +6 -2
- package/es/src/business/ap-label/ApLabel.vue.d.ts +13 -2
- package/es/src/business/ap-label/ApLabel.vue2.mjs +43 -25
- package/es/src/business/ap-label/interface.d.ts +6 -3
- package/es/src/business/ap-label/style.css +2 -1
- package/es/src/business/expandAlert/ApExpandAlert.vue2.mjs +1 -1
- package/es/src/business/expandAlert/interface.d.ts +1 -1
- package/es/src/business/index.d.ts +53 -9
- package/es/src/theme/ap-download/ap-download.css +12 -12
- package/es/src/theme/ap-label/ap-label.css +2 -1
- package/lib/src/ap-download/ap-download.vue.js +1 -1
- package/lib/src/ap-download/hooks/index.d.ts +1 -6
- package/lib/src/ap-download/hooks/index.js +1 -1
- package/lib/src/ap-download/interface.d.ts +3 -13
- package/lib/src/ap-download/style/ap-download.css +12 -12
- package/lib/src/ap-form/ap-form-item-group/index.vue.js +1 -1
- package/lib/src/ap-form/search-form/index.vue.js +1 -1
- package/lib/src/ap-table/ap-table.vue.d.ts +10 -4
- package/lib/src/ap-table/ap-table.vue.js +1 -1
- package/lib/src/ap-table/constants.d.ts +8 -8
- package/lib/src/ap-table/hooks/use-table-row-selection.d.ts +1 -1
- package/lib/src/ap-table/interface.d.ts +6 -2
- package/lib/src/business/ap-label/ApLabel.vue.d.ts +13 -2
- package/lib/src/business/ap-label/ApLabel.vue2.js +1 -1
- package/lib/src/business/ap-label/interface.d.ts +6 -3
- package/lib/src/business/ap-label/style.css +2 -1
- package/lib/src/business/expandAlert/ApExpandAlert.vue2.js +1 -1
- package/lib/src/business/expandAlert/interface.d.ts +1 -1
- package/lib/src/business/index.d.ts +53 -9
- package/lib/src/theme/ap-download/ap-download.css +12 -12
- package/lib/src/theme/ap-label/ap-label.css +2 -1
- package/package.json +4 -4
|
@@ -2,22 +2,28 @@ import { ApLabelProps } from './interface';
|
|
|
2
2
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
import { TooltipPlacement } from 'ant-design-vue/es/tooltip';
|
|
4
4
|
|
|
5
|
-
declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ApLabelProps>, {
|
|
5
|
+
declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ApLabelProps>, {
|
|
6
6
|
status: string;
|
|
7
7
|
placement: string;
|
|
8
8
|
iconColor: string;
|
|
9
|
+
iconType: string;
|
|
10
|
+
iconSize: number;
|
|
9
11
|
text: string;
|
|
10
12
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ApLabelProps>, {
|
|
11
13
|
status: string;
|
|
12
14
|
placement: string;
|
|
13
15
|
iconColor: string;
|
|
16
|
+
iconType: string;
|
|
17
|
+
iconSize: number;
|
|
14
18
|
text: string;
|
|
15
19
|
}>>>, {
|
|
16
20
|
text: any;
|
|
17
21
|
placement: TooltipPlacement;
|
|
22
|
+
iconType: "ellipsis" | "warning" | "question";
|
|
18
23
|
status: "success" | "error" | "default" | "warning" | "processing";
|
|
24
|
+
iconSize: number;
|
|
19
25
|
iconColor: string;
|
|
20
|
-
}, {}
|
|
26
|
+
}, {}>, Partial<Record<string, (_: {}) => any>>>;
|
|
21
27
|
export default _default;
|
|
22
28
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
23
29
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -36,3 +42,8 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
36
42
|
type __VLS_Prettify<T> = {
|
|
37
43
|
[K in keyof T]: T[K];
|
|
38
44
|
} & {};
|
|
45
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
46
|
+
new (): {
|
|
47
|
+
$slots: S;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),n=require("ant-design-vue"),l=require("@aplus-frontend/icon");require("../../config-provider/index.js");const s=require("lodash-unified");require("./style.css");const u=require("../../config-provider/hooks/use-namespace.js"),i=e.defineComponent({name:"ApLabel",__name:"ApLabel",props:{count:{},showZero:{type:Boolean},overflowCount:{},dot:{type:Boolean},prefixCls:{},scrollNumberPrefixCls:{},status:{default:"default"},size:{},color:{},text:{default:""},offset:{},numberStyle:{},title:{},helpMessage:{},placement:{default:"top"},iconColor:{default:"#FF4D4F"},iconType:{default:"question"},iconSize:{default:16},slotName:{}},setup(r){const t=e.computed(()=>({color:o.iconColor,"font-size":o.iconSize+"px","margin-left":"6px"})),o=r,{b:a}=u.useNamespace("ap-label");return(c,p)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([e.unref(a)()])},[e.createVNode(e.unref(n.Badge),e.normalizeProps(e.guardReactiveProps(e.unref(s.omit)(o,["helpMessage","placement","iconColor"]))),null,16),o.slotName?e.renderSlot(c.$slots,o.slotName,{key:0}):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[o.helpMessage?(e.openBlock(),e.createBlock(e.unref(n.Tooltip),{key:0,placement:o.placement,title:o.helpMessage},{default:e.withCtx(()=>[o.iconType==="question"?(e.openBlock(),e.createBlock(e.unref(l.IconApAdLineAnnotation),{key:0,style:e.normalizeStyle(t.value)},null,8,["style"])):e.createCommentVNode("",!0),o.iconType==="warning"?(e.openBlock(),e.createBlock(e.unref(l.IconApAdFillWarn),{key:1,style:e.normalizeStyle(t.value)},null,8,["style"])):e.createCommentVNode("",!0),o.iconType==="ellipsis"?(e.openBlock(),e.createBlock(e.unref(l.IconApAdFillExecution),{key:2,style:e.normalizeStyle(t.value)},null,8,["style"])):e.createCommentVNode("",!0)]),_:1},8,["placement","title"])):e.createCommentVNode("",!0)],64))],2))}});exports.default=i;
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { BadgeProps } from 'ant-design-vue';
|
|
2
2
|
import { TooltipPlacement } from 'ant-design-vue/es/Tooltip';
|
|
3
3
|
|
|
4
|
-
export type ApLabelProps = BadgeProps & {
|
|
5
|
-
helpMessage
|
|
4
|
+
export type ApLabelProps = BadgeProps & Partial<{
|
|
5
|
+
helpMessage: string;
|
|
6
6
|
placement: TooltipPlacement;
|
|
7
7
|
iconColor: string;
|
|
8
|
-
|
|
8
|
+
iconType: 'question' | 'warning' | 'ellipsis';
|
|
9
|
+
iconSize: number;
|
|
10
|
+
slotName: string;
|
|
11
|
+
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),b=require("@ant-design/icons-vue"),c=require("ant-design-vue"),B=require("../../ap-action/index.js");require("../../config-provider/index.js");require("./style.css");const E=require("../../config-provider/hooks/use-namespace.js"),N=require("../../config-provider/hooks/use-global-config.js"),z={key:0},V=["onClick"],S=e.defineComponent({__name:"ApExpandAlert",props:{type:{default:"warning"},data:{default:()=>[]},prefix:{default:""},tipTitle:{default:"查看详情"},mapLabel:{},separator:{default:"|"},rows:{default:
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),b=require("@ant-design/icons-vue"),c=require("ant-design-vue"),B=require("../../ap-action/index.js");require("../../config-provider/index.js");require("./style.css");const E=require("../../config-provider/hooks/use-namespace.js"),N=require("../../config-provider/hooks/use-global-config.js"),z={key:0},V=["onClick"],S=e.defineComponent({__name:"ApExpandAlert",props:{type:{default:"warning"},data:{default:()=>[]},prefix:{default:""},tipTitle:{default:"查看详情"},mapLabel:{},separator:{default:"|"},rows:{default:2}},emits:["choose","expand"],setup(p,{expose:d,emit:f}){const m=f,i=p,a=e.ref(""),o=e.ref(null),v=e.computed(()=>({fontWeight:"400",wordBreak:"break-all",overflow:"hidden",display:"-webkit-box",webkitLineClamp:a.value,webkitBoxOrient:"vertical",lineHeight:"22px"}));function k(){a.value==="1"?a.value="":a.value="1",m("expand")}const g=e.computed(()=>a.value==="1"?"展开":"收起"),r=e.ref(!0),u=e.computed(()=>a.value!=="1");function y(t){t?a.value="":a.value="1"}e.watch(()=>i.data,()=>{a.value="",e.nextTick(()=>{if(o.value){const t=Number(o.value.clientHeight),s=Number(parseInt(o.value.style.lineHeight));t<s*Number(i.rows)&&u.value?r.value=!1:r.value=!0}})},{immediate:!0});const{b:C,e:l,m:h}=E.useNamespace("ap-expand-alert"),w=N.useGlobalConfig("uiMode","aplus");return d({setExpand:y}),(t,s)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([e.unref(C)(),`${e.unref(h)(e.unref(w))}`])},[e.createVNode(e.unref(c.Alert),{type:t.type,"show-icon":"",class:e.normalizeClass(e.unref(l)("antAlert"))},{action:e.withCtx(()=>[r.value?(e.openBlock(),e.createBlock(e.unref(B.ApActionItem),{key:0,size:"small",onClick:s[0]||(s[0]=n=>k()),style:{"font-size":"12px","padding-left":"16px"}},{default:e.withCtx(()=>[e.createElementVNode("span",{class:e.normalizeClass(e.unref(l)("expandText"))},e.toDisplayString(g.value),3),e.createVNode(e.unref(b.DownOutlined),{class:e.normalizeClass(u.value?e.unref(l)("expandIcon"):e.unref(l)("collapseIcon"))},null,8,["class"])]),_:1})):e.createCommentVNode("",!0)]),message:e.withCtx(()=>[e.createElementVNode("div",{style:e.normalizeStyle(v.value),class:e.normalizeClass(e.unref(l)("alertContent")),ref_key:"ellipsisBoxRef",ref:o},[e.renderSlot(t.$slots,"default",{},()=>[e.createElementVNode("span",{class:e.normalizeClass(e.unref(l)("prefix"))},e.toDisplayString(t.prefix),3),typeof t.data=="string"?(e.openBlock(),e.createElementBlock("span",z,e.toDisplayString(t.data),1)):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(t.data,(n,x)=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:n},[e.createVNode(e.unref(c.Tooltip),{title:t.tipTitle},{default:e.withCtx(()=>[e.createElementVNode("span",{class:e.normalizeClass(e.unref(l)("showItem")),onClick:q=>t.$emit("choose",n)},e.toDisplayString(t.mapLabel?n[t.mapLabel]:n),11,V)]),_:2},1032,["title"]),x!==t.data.length-1?(e.openBlock(),e.createElementBlock("span",{key:0,class:e.normalizeClass(e.unref(l)("spliter"))},e.toDisplayString(t.separator),3)):e.createCommentVNode("",!0)],64))),128))])],6)]),_:3},8,["type","class"])],2))}});exports.default=S;
|
|
@@ -356,12 +356,15 @@ export declare const ApLabel: {
|
|
|
356
356
|
};
|
|
357
357
|
placement: {
|
|
358
358
|
type: PropType<TooltipPlacement>;
|
|
359
|
-
required: true;
|
|
360
359
|
default: string;
|
|
361
360
|
};
|
|
362
361
|
title: {
|
|
363
362
|
type: PropType<string>;
|
|
364
363
|
};
|
|
364
|
+
iconType: {
|
|
365
|
+
type: PropType<"ellipsis" | "warning" | "question">;
|
|
366
|
+
default: string;
|
|
367
|
+
};
|
|
365
368
|
size: {
|
|
366
369
|
type: PropType<"default" | "small">;
|
|
367
370
|
};
|
|
@@ -390,14 +393,20 @@ export declare const ApLabel: {
|
|
|
390
393
|
numberStyle: {
|
|
391
394
|
type: PropType<CSSProperties>;
|
|
392
395
|
};
|
|
396
|
+
iconSize: {
|
|
397
|
+
type: PropType<number>;
|
|
398
|
+
default: number;
|
|
399
|
+
};
|
|
393
400
|
helpMessage: {
|
|
394
401
|
type: PropType<string>;
|
|
395
402
|
};
|
|
396
403
|
iconColor: {
|
|
397
404
|
type: PropType<string>;
|
|
398
|
-
required: true;
|
|
399
405
|
default: string;
|
|
400
406
|
};
|
|
407
|
+
slotName: {
|
|
408
|
+
type: PropType<string>;
|
|
409
|
+
};
|
|
401
410
|
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
|
|
402
411
|
text: {
|
|
403
412
|
type: PropType<any>;
|
|
@@ -411,12 +420,15 @@ export declare const ApLabel: {
|
|
|
411
420
|
};
|
|
412
421
|
placement: {
|
|
413
422
|
type: PropType<TooltipPlacement>;
|
|
414
|
-
required: true;
|
|
415
423
|
default: string;
|
|
416
424
|
};
|
|
417
425
|
title: {
|
|
418
426
|
type: PropType<string>;
|
|
419
427
|
};
|
|
428
|
+
iconType: {
|
|
429
|
+
type: PropType<"ellipsis" | "warning" | "question">;
|
|
430
|
+
default: string;
|
|
431
|
+
};
|
|
420
432
|
size: {
|
|
421
433
|
type: PropType<"default" | "small">;
|
|
422
434
|
};
|
|
@@ -445,18 +457,26 @@ export declare const ApLabel: {
|
|
|
445
457
|
numberStyle: {
|
|
446
458
|
type: PropType<CSSProperties>;
|
|
447
459
|
};
|
|
460
|
+
iconSize: {
|
|
461
|
+
type: PropType<number>;
|
|
462
|
+
default: number;
|
|
463
|
+
};
|
|
448
464
|
helpMessage: {
|
|
449
465
|
type: PropType<string>;
|
|
450
466
|
};
|
|
451
467
|
iconColor: {
|
|
452
468
|
type: PropType<string>;
|
|
453
|
-
required: true;
|
|
454
469
|
default: string;
|
|
455
470
|
};
|
|
471
|
+
slotName: {
|
|
472
|
+
type: PropType<string>;
|
|
473
|
+
};
|
|
456
474
|
}>>, {
|
|
457
475
|
text: any;
|
|
458
476
|
placement: TooltipPlacement;
|
|
477
|
+
iconType: "ellipsis" | "warning" | "question";
|
|
459
478
|
status: "success" | "error" | "default" | "warning" | "processing";
|
|
479
|
+
iconSize: number;
|
|
460
480
|
iconColor: string;
|
|
461
481
|
}, true, {}, {}, {
|
|
462
482
|
P: {};
|
|
@@ -478,12 +498,15 @@ export declare const ApLabel: {
|
|
|
478
498
|
};
|
|
479
499
|
placement: {
|
|
480
500
|
type: PropType<TooltipPlacement>;
|
|
481
|
-
required: true;
|
|
482
501
|
default: string;
|
|
483
502
|
};
|
|
484
503
|
title: {
|
|
485
504
|
type: PropType<string>;
|
|
486
505
|
};
|
|
506
|
+
iconType: {
|
|
507
|
+
type: PropType<"ellipsis" | "warning" | "question">;
|
|
508
|
+
default: string;
|
|
509
|
+
};
|
|
487
510
|
size: {
|
|
488
511
|
type: PropType<"default" | "small">;
|
|
489
512
|
};
|
|
@@ -512,18 +535,26 @@ export declare const ApLabel: {
|
|
|
512
535
|
numberStyle: {
|
|
513
536
|
type: PropType<CSSProperties>;
|
|
514
537
|
};
|
|
538
|
+
iconSize: {
|
|
539
|
+
type: PropType<number>;
|
|
540
|
+
default: number;
|
|
541
|
+
};
|
|
515
542
|
helpMessage: {
|
|
516
543
|
type: PropType<string>;
|
|
517
544
|
};
|
|
518
545
|
iconColor: {
|
|
519
546
|
type: PropType<string>;
|
|
520
|
-
required: true;
|
|
521
547
|
default: string;
|
|
522
548
|
};
|
|
549
|
+
slotName: {
|
|
550
|
+
type: PropType<string>;
|
|
551
|
+
};
|
|
523
552
|
}>>, {}, {}, {}, {}, {
|
|
524
553
|
text: any;
|
|
525
554
|
placement: TooltipPlacement;
|
|
555
|
+
iconType: "ellipsis" | "warning" | "question";
|
|
526
556
|
status: "success" | "error" | "default" | "warning" | "processing";
|
|
557
|
+
iconSize: number;
|
|
527
558
|
iconColor: string;
|
|
528
559
|
}>;
|
|
529
560
|
__isFragment?: undefined;
|
|
@@ -542,12 +573,15 @@ export declare const ApLabel: {
|
|
|
542
573
|
};
|
|
543
574
|
placement: {
|
|
544
575
|
type: PropType<TooltipPlacement>;
|
|
545
|
-
required: true;
|
|
546
576
|
default: string;
|
|
547
577
|
};
|
|
548
578
|
title: {
|
|
549
579
|
type: PropType<string>;
|
|
550
580
|
};
|
|
581
|
+
iconType: {
|
|
582
|
+
type: PropType<"ellipsis" | "warning" | "question">;
|
|
583
|
+
default: string;
|
|
584
|
+
};
|
|
551
585
|
size: {
|
|
552
586
|
type: PropType<"default" | "small">;
|
|
553
587
|
};
|
|
@@ -576,20 +610,30 @@ export declare const ApLabel: {
|
|
|
576
610
|
numberStyle: {
|
|
577
611
|
type: PropType<CSSProperties>;
|
|
578
612
|
};
|
|
613
|
+
iconSize: {
|
|
614
|
+
type: PropType<number>;
|
|
615
|
+
default: number;
|
|
616
|
+
};
|
|
579
617
|
helpMessage: {
|
|
580
618
|
type: PropType<string>;
|
|
581
619
|
};
|
|
582
620
|
iconColor: {
|
|
583
621
|
type: PropType<string>;
|
|
584
|
-
required: true;
|
|
585
622
|
default: string;
|
|
586
623
|
};
|
|
624
|
+
slotName: {
|
|
625
|
+
type: PropType<string>;
|
|
626
|
+
};
|
|
587
627
|
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
588
628
|
text: any;
|
|
589
629
|
placement: TooltipPlacement;
|
|
630
|
+
iconType: "ellipsis" | "warning" | "question";
|
|
590
631
|
status: "success" | "error" | "default" | "warning" | "processing";
|
|
632
|
+
iconSize: number;
|
|
591
633
|
iconColor: string;
|
|
592
|
-
}, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps &
|
|
634
|
+
}, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
635
|
+
$slots: Partial<Record<string, (_: {}) => any>>;
|
|
636
|
+
}) & Plugin & (new (...args: any[]) => {
|
|
593
637
|
$props: {
|
|
594
638
|
onClick?: (() => void) | undefined;
|
|
595
639
|
};
|
|
@@ -1,51 +1,51 @@
|
|
|
1
|
-
.aplus-download-wrapper {
|
|
1
|
+
.aplus-ap-download-wrapper {
|
|
2
2
|
text-wrap: nowrap;
|
|
3
3
|
display: inline-block;
|
|
4
4
|
display: flex;
|
|
5
5
|
}
|
|
6
|
-
.aplus-download-inner-wrapper {
|
|
6
|
+
.aplus-ap-download-inner-wrapper {
|
|
7
7
|
display: inline-block;
|
|
8
8
|
color: var(--download-main-color);
|
|
9
9
|
cursor: pointer;
|
|
10
10
|
display: flex;
|
|
11
11
|
align-items: center;
|
|
12
12
|
}
|
|
13
|
-
.aplus-download-inner-wrapper .icon {
|
|
13
|
+
.aplus-ap-download-inner-wrapper .icon {
|
|
14
14
|
position: relative;
|
|
15
15
|
font-size: 18px;
|
|
16
16
|
}
|
|
17
|
-
.aplus-download-inner-wrapper .text {
|
|
17
|
+
.aplus-ap-download-inner-wrapper .text {
|
|
18
18
|
margin-left: 5px;
|
|
19
19
|
}
|
|
20
|
-
.aplus-download-inner-wrapper:hover {
|
|
20
|
+
.aplus-ap-download-inner-wrapper:hover {
|
|
21
21
|
color: var(--download-main-color-opacity);
|
|
22
22
|
}
|
|
23
|
-
.aplus-download-inner-wrapper--large {
|
|
23
|
+
.aplus-ap-download-inner-wrapper--large {
|
|
24
24
|
line-height: 26px;
|
|
25
25
|
height: 28px;
|
|
26
26
|
font-size: 16px;
|
|
27
27
|
}
|
|
28
|
-
.aplus-download-inner-wrapper--middle {
|
|
28
|
+
.aplus-ap-download-inner-wrapper--middle {
|
|
29
29
|
line-height: 22px;
|
|
30
30
|
height: 24px;
|
|
31
31
|
font-size: 14px;
|
|
32
32
|
}
|
|
33
|
-
.aplus-download-inner-wrapper--small {
|
|
33
|
+
.aplus-ap-download-inner-wrapper--small {
|
|
34
34
|
line-height: 19px;
|
|
35
35
|
height: 20px;
|
|
36
36
|
font-size: 12px;
|
|
37
37
|
}
|
|
38
|
-
.aplus-download-inner-wrapper--disabled {
|
|
38
|
+
.aplus-ap-download-inner-wrapper--disabled {
|
|
39
39
|
color: #8896b0;
|
|
40
40
|
cursor: not-allowed;
|
|
41
41
|
}
|
|
42
|
-
.aplus-download-inner-wrapper--disabled:hover {
|
|
42
|
+
.aplus-ap-download-inner-wrapper--disabled:hover {
|
|
43
43
|
color: #8896b0;
|
|
44
44
|
}
|
|
45
|
-
.aplus-download-inner-wrapper--disabled-admin {
|
|
45
|
+
.aplus-ap-download-inner-wrapper--disabled-admin {
|
|
46
46
|
cursor: not-allowed;
|
|
47
47
|
color: #999;
|
|
48
48
|
}
|
|
49
|
-
.aplus-download-inner-wrapper--disabled-admin:hover {
|
|
49
|
+
.aplus-ap-download-inner-wrapper--disabled-admin:hover {
|
|
50
50
|
color: #999;
|
|
51
51
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aplus-frontend/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.39",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"module": "es/index.mjs",
|
|
6
6
|
"files": [
|
|
@@ -60,13 +60,13 @@
|
|
|
60
60
|
"sortablejs": "^1.15.2",
|
|
61
61
|
"mime": "^4.0.3",
|
|
62
62
|
"@aplus-frontend/hooks": "1.0.7",
|
|
63
|
-
"@aplus-frontend/utils": "1.0.
|
|
63
|
+
"@aplus-frontend/utils": "1.0.26"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
66
|
"ant-design-vue": "^4.2.1",
|
|
67
67
|
"vue": "^3.4.29",
|
|
68
|
-
"@aplus-frontend/oss": "1.0.
|
|
69
|
-
"@aplus-frontend/icon": "^1.0.
|
|
68
|
+
"@aplus-frontend/oss": "^1.0.19",
|
|
69
|
+
"@aplus-frontend/icon": "^1.0.20"
|
|
70
70
|
},
|
|
71
71
|
"scripts": {
|
|
72
72
|
"pub:cb": "pnpm publish --access public",
|