@aplus-frontend/ui 0.5.20 → 0.5.22
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-field/interface.d.ts +12 -0
- package/es/src/ap-field/text/index.vue2.mjs +45 -39
- package/es/src/ap-field/text-area/index.vue.mjs +31 -25
- package/es/src/ap-form/items/text/index.vue.d.ts +2 -0
- package/es/src/ap-table/constants.d.ts +1 -0
- package/es/src/ap-table/hooks/use-table-paging-ng.d.ts +1 -0
- package/es/src/ap-table/hooks/use-table-paging-ng.mjs +106 -102
- package/es/src/ap-table/interface.d.ts +3 -0
- package/es/src/ap-table/utils.d.ts +1 -0
- package/es/src/business/ap-ladder/components/ValueGroupMode.vue2.mjs +74 -67
- package/es/src/business/ap-ladder/interface.d.ts +4 -0
- package/es/src/business/batch-input-group/index.vue.d.ts +1 -0
- package/es/src/business/batch-input-group/index.vue.mjs +2 -1
- package/lib/src/ap-field/interface.d.ts +12 -0
- package/lib/src/ap-field/text/index.vue2.js +1 -1
- package/lib/src/ap-field/text-area/index.vue.js +1 -1
- package/lib/src/ap-form/items/text/index.vue.d.ts +2 -0
- package/lib/src/ap-table/constants.d.ts +1 -0
- package/lib/src/ap-table/hooks/use-table-paging-ng.d.ts +1 -0
- package/lib/src/ap-table/hooks/use-table-paging-ng.js +1 -1
- package/lib/src/ap-table/interface.d.ts +3 -0
- package/lib/src/ap-table/utils.d.ts +1 -0
- package/lib/src/business/ap-ladder/components/ValueGroupMode.vue2.js +1 -1
- package/lib/src/business/ap-ladder/interface.d.ts +4 -0
- package/lib/src/business/batch-input-group/index.vue.d.ts +1 -0
- package/lib/src/business/batch-input-group/index.vue.js +2 -2
- package/package.json +1 -1
- package/theme/ap-ladder/ap-ladder.css +16 -2
- package/theme/ap-ladder/ap-ladder.less +16 -3
- package/theme/index.css +16 -2
package/theme/index.css
CHANGED
|
@@ -601,11 +601,13 @@
|
|
|
601
601
|
white-space: nowrap;
|
|
602
602
|
min-width: 0;
|
|
603
603
|
}
|
|
604
|
+
.aplus-ap-ladder__value-group-value-end {
|
|
605
|
+
justify-content: flex-end;
|
|
606
|
+
}
|
|
604
607
|
.aplus-ap-ladder__value-group-label {
|
|
605
608
|
display: inline-block;
|
|
606
609
|
color: #8896B0;
|
|
607
610
|
word-break: break-all;
|
|
608
|
-
min-width: 50px;
|
|
609
611
|
}
|
|
610
612
|
.aplus-ap-ladder__value-group-value {
|
|
611
613
|
color: #182948;
|
|
@@ -619,6 +621,12 @@
|
|
|
619
621
|
color: #0070ff !important;
|
|
620
622
|
text-decoration: none !important;
|
|
621
623
|
}
|
|
624
|
+
.aplus-ap-ladder__label-align-left {
|
|
625
|
+
text-align: left;
|
|
626
|
+
}
|
|
627
|
+
.aplus-ap-ladder__label-align-right {
|
|
628
|
+
text-align: right;
|
|
629
|
+
}
|
|
622
630
|
.aplus-ap-ladder-base {
|
|
623
631
|
display: flex;
|
|
624
632
|
}
|
|
@@ -650,7 +658,7 @@
|
|
|
650
658
|
display: flex;
|
|
651
659
|
}
|
|
652
660
|
.aplus-ap-ladder__tooltip-label {
|
|
653
|
-
|
|
661
|
+
white-space: nowrap;
|
|
654
662
|
word-break: break-all;
|
|
655
663
|
}
|
|
656
664
|
.aplus-ap-ladder__tooltip-value {
|
|
@@ -700,6 +708,12 @@
|
|
|
700
708
|
color: #0070ff;
|
|
701
709
|
text-decoration: none;
|
|
702
710
|
}
|
|
711
|
+
.aplus-ap-ladder--admin .aplus-ap-ladder__value-group-label {
|
|
712
|
+
color: #999999;
|
|
713
|
+
}
|
|
714
|
+
.aplus-ap-ladder--admin .aplus-ap-ladder__value-group-value {
|
|
715
|
+
color: #333333;
|
|
716
|
+
}
|
|
703
717
|
.aplus-ap-ladder--admin .aplus-ap-ladder__major {
|
|
704
718
|
color: #333333;
|
|
705
719
|
}
|