@fangzhongya/fang-ui 0.0.36 → 0.0.37
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/components/dates/index.css +1 -1
- package/dist/components/index.scss +2 -2
- package/dist/components/index2.scss +2 -2
- package/dist/components/input-array/src/index.cjs +6 -5
- package/dist/components/input-array/src/index.js +2 -1
- package/dist/components/input-select/index.cjs +3 -2
- package/dist/components/input-select/index.css +25 -11
- package/dist/components/input-select/index.d.ts +69 -210
- package/dist/components/input-select/index.js +3 -2
- package/dist/components/input-select/index.scss +4 -4
- package/dist/components/input-select/src/index.cjs +220 -5
- package/dist/components/input-select/src/index.d.ts +136 -419
- package/dist/components/input-select/src/index.js +220 -5
- package/dist/components/input-select/src/index2.cjs +2 -219
- package/dist/components/input-select/src/index2.js +1 -218
- package/dist/index.css +82 -24
- package/package.json +3 -3
- /package/dist/components/{time-picker → config-provider}/index.css +0 -0
- /package/dist/components/{forms-item → forms-items}/index.css +0 -0
package/dist/index.css
CHANGED
|
@@ -663,7 +663,7 @@
|
|
|
663
663
|
font-size: 0;
|
|
664
664
|
}
|
|
665
665
|
|
|
666
|
-
.dates dates-date {
|
|
666
|
+
.dates .dates-date {
|
|
667
667
|
height: 100%;
|
|
668
668
|
width: 100%;
|
|
669
669
|
box-sizing: border-box;
|
|
@@ -730,6 +730,65 @@
|
|
|
730
730
|
height: 100%;
|
|
731
731
|
}
|
|
732
732
|
|
|
733
|
+
.input-select-select-icon {
|
|
734
|
+
margin-left: 8px;
|
|
735
|
+
display: inline-flex;
|
|
736
|
+
pointer-events: all;
|
|
737
|
+
align-items: center;
|
|
738
|
+
justify-content: center;
|
|
739
|
+
cursor: pointer;
|
|
740
|
+
transform: rotate(0);
|
|
741
|
+
transition: transform 0.3s;
|
|
742
|
+
}
|
|
743
|
+
.input-select-select-icon.is-reverse {
|
|
744
|
+
transform: rotate(-180deg);
|
|
745
|
+
}
|
|
746
|
+
.input-select-select-icon svg {
|
|
747
|
+
width: 1rem;
|
|
748
|
+
height: 1rem;
|
|
749
|
+
}
|
|
750
|
+
.input-select.is-disabled .input-select-select-icon {
|
|
751
|
+
cursor: not-allowed;
|
|
752
|
+
}
|
|
753
|
+
.input-select-popper {
|
|
754
|
+
padding: 6px 0 !important;
|
|
755
|
+
}
|
|
756
|
+
.input-select-popper .input-select-select {
|
|
757
|
+
max-height: 274px;
|
|
758
|
+
height: 100%;
|
|
759
|
+
overflow-y: auto;
|
|
760
|
+
}
|
|
761
|
+
.input-select-popper .input-select-select .input-select-select-ul {
|
|
762
|
+
list-style: none;
|
|
763
|
+
margin: 6px 0;
|
|
764
|
+
padding: 0;
|
|
765
|
+
box-sizing: border-box;
|
|
766
|
+
}
|
|
767
|
+
.input-select-popper .input-select-select .input-select-select-li {
|
|
768
|
+
padding: 0 32px 0 20px;
|
|
769
|
+
position: relative;
|
|
770
|
+
white-space: nowrap;
|
|
771
|
+
overflow: hidden;
|
|
772
|
+
text-overflow: ellipsis;
|
|
773
|
+
color: #606266;
|
|
774
|
+
height: 34px;
|
|
775
|
+
line-height: 34px;
|
|
776
|
+
box-sizing: border-box;
|
|
777
|
+
cursor: pointer;
|
|
778
|
+
}
|
|
779
|
+
.input-select-popper .input-select-select .input-select-select-li.hover, .input-select-popper .input-select-select .input-select-select-li:hover {
|
|
780
|
+
background-color: #f5f7fa;
|
|
781
|
+
}
|
|
782
|
+
.input-select-popper .input-select-select .input-select-select-li.selected {
|
|
783
|
+
color: var(--bv-color-primary);
|
|
784
|
+
font-weight: 700;
|
|
785
|
+
}
|
|
786
|
+
.input-select-popper .input-select-select .input-select-select-li.is-disabled {
|
|
787
|
+
background-color: #ffffff;
|
|
788
|
+
color: #a8abb2;
|
|
789
|
+
cursor: not-allowed;
|
|
790
|
+
}
|
|
791
|
+
|
|
733
792
|
.inputs-input {
|
|
734
793
|
height: 100%;
|
|
735
794
|
}
|
|
@@ -746,29 +805,6 @@
|
|
|
746
805
|
height: 100%;
|
|
747
806
|
}
|
|
748
807
|
|
|
749
|
-
.tabless {
|
|
750
|
-
width: 100%;
|
|
751
|
-
height: var(--tabless-height);
|
|
752
|
-
flex: 1;
|
|
753
|
-
display: flex;
|
|
754
|
-
flex-direction: column;
|
|
755
|
-
}
|
|
756
|
-
.tabless-main {
|
|
757
|
-
display: flex;
|
|
758
|
-
flex-direction: column;
|
|
759
|
-
flex: 1;
|
|
760
|
-
width: 100%;
|
|
761
|
-
}
|
|
762
|
-
.tabless-main.is-radio .el-table__header .el-table-column--selection .el-checkbox {
|
|
763
|
-
display: none;
|
|
764
|
-
}
|
|
765
|
-
.tabless-paginat {
|
|
766
|
-
overflow: hidden;
|
|
767
|
-
}
|
|
768
|
-
.tabless-paginat .el-pagination {
|
|
769
|
-
justify-content: flex-end;
|
|
770
|
-
}
|
|
771
|
-
|
|
772
808
|
.tablesv {
|
|
773
809
|
width: 100%;
|
|
774
810
|
min-height: 100px;
|
|
@@ -846,4 +882,26 @@
|
|
|
846
882
|
left: 0;
|
|
847
883
|
z-index: 1;
|
|
848
884
|
opacity: 0;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.tablesvp {
|
|
888
|
+
width: 100%;
|
|
889
|
+
height: var(--tablesvp-height);
|
|
890
|
+
display: flex;
|
|
891
|
+
flex-direction: column;
|
|
892
|
+
}
|
|
893
|
+
.tablesvp-main {
|
|
894
|
+
display: flex;
|
|
895
|
+
flex-direction: column;
|
|
896
|
+
flex: 1;
|
|
897
|
+
width: 100%;
|
|
898
|
+
}
|
|
899
|
+
.tablesvp-main.is-radio .el-table__header .el-table-column--selection .el-checkbox {
|
|
900
|
+
display: none;
|
|
901
|
+
}
|
|
902
|
+
.tablesvp-paginat {
|
|
903
|
+
overflow: hidden;
|
|
904
|
+
}
|
|
905
|
+
.tablesvp-paginat .el-pagination {
|
|
906
|
+
justify-content: flex-end;
|
|
849
907
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fangzhongya/fang-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.37",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description ": "fang-ui",
|
|
7
7
|
"keywords": [
|
|
@@ -49,11 +49,11 @@
|
|
|
49
49
|
"vue-tsc": "^3.0.4",
|
|
50
50
|
"vuedraggable": "4.1.0",
|
|
51
51
|
"vxe-table": "4.14.8",
|
|
52
|
-
"@fang-ui/components": "0.0.1-0",
|
|
53
52
|
"@fang-ui/directives": "0.0.1-0",
|
|
54
53
|
"@fang-ui/hooks": "0.0.1-0",
|
|
55
|
-
"@fang-ui/icons": "0.0.1-0",
|
|
56
54
|
"@fang-ui/locale": "0.0.1-0",
|
|
55
|
+
"@fang-ui/components": "0.0.1-0",
|
|
56
|
+
"@fang-ui/icons": "0.0.1-0",
|
|
57
57
|
"@fang-ui/theme": "0.0.1-0",
|
|
58
58
|
"@fang-ui/types": "0.0.1-0",
|
|
59
59
|
"@fang-ui/utils": "0.0.1-0"
|
|
File without changes
|
|
File without changes
|