@douyinfe/semi-ui 2.25.0 → 2.25.2
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/css/semi.css +18 -11
- package/dist/css/semi.min.css +1 -1
- package/dist/umd/semi-ui.js +216 -108
- package/dist/umd/semi-ui.js.map +1 -1
- package/dist/umd/semi-ui.min.js +1 -1
- package/dist/umd/semi-ui.min.js.map +1 -1
- package/lib/cjs/overflowList/index.d.ts +805 -6
- package/lib/cjs/overflowList/index.js +145 -60
- package/lib/cjs/select/index.js +7 -2
- package/lib/cjs/tag/index.js +2 -2
- package/lib/cjs/tagInput/index.js +5 -6
- package/lib/es/overflowList/index.d.ts +805 -6
- package/lib/es/overflowList/index.js +143 -62
- package/lib/es/select/index.js +7 -2
- package/lib/es/tag/index.js +2 -2
- package/lib/es/tagInput/index.js +5 -6
- package/package.json +8 -8
package/dist/css/semi.css
CHANGED
|
@@ -3189,13 +3189,13 @@ body {
|
|
|
3189
3189
|
background: transparent;
|
|
3190
3190
|
margin-left: -4px;
|
|
3191
3191
|
}
|
|
3192
|
-
.semi-cascader-selection .semi-tagInput
|
|
3192
|
+
.semi-cascader-selection .semi-tagInput {
|
|
3193
3193
|
min-height: 30px;
|
|
3194
3194
|
}
|
|
3195
|
-
.semi-cascader-selection .semi-tagInput-
|
|
3195
|
+
.semi-cascader-selection .semi-tagInput-small {
|
|
3196
3196
|
min-height: 22px;
|
|
3197
3197
|
}
|
|
3198
|
-
.semi-cascader-selection .semi-tagInput-
|
|
3198
|
+
.semi-cascader-selection .semi-tagInput-large {
|
|
3199
3199
|
min-height: 38px;
|
|
3200
3200
|
}
|
|
3201
3201
|
.semi-cascader-selection .semi-tagInput .semi-input-wrapper {
|
|
@@ -18475,6 +18475,15 @@ img[src=""], img:not([src]) {
|
|
|
18475
18475
|
.semi-tagInput-suffix-text {
|
|
18476
18476
|
color: var(--semi-color-text-2);
|
|
18477
18477
|
}
|
|
18478
|
+
.semi-tagInput-tag-content-wrapper {
|
|
18479
|
+
display: flex;
|
|
18480
|
+
align-items: center;
|
|
18481
|
+
}
|
|
18482
|
+
.semi-tagInput-sortable-list {
|
|
18483
|
+
display: flex;
|
|
18484
|
+
flex-flow: row wrap;
|
|
18485
|
+
width: 100%;
|
|
18486
|
+
}
|
|
18478
18487
|
|
|
18479
18488
|
.semi-rtl .semi-tagInput,
|
|
18480
18489
|
.semi-portal-rtl .semi-tagInput {
|
|
@@ -19891,20 +19900,18 @@ img[src=""], img:not([src]) {
|
|
|
19891
19900
|
.semi-tree-select-selection .semi-tagInput {
|
|
19892
19901
|
border: hidden;
|
|
19893
19902
|
background: transparent;
|
|
19894
|
-
}
|
|
19895
|
-
.semi-tree-select-selection .semi-tagInput .semi-tagInput-wrapper {
|
|
19896
|
-
padding-left: 4px;
|
|
19897
|
-
padding-right: 4px;
|
|
19898
|
-
}
|
|
19899
|
-
.semi-tree-select-selection .semi-tagInput .semi-tagInput-wrapper-default {
|
|
19900
19903
|
min-height: 30px;
|
|
19901
19904
|
}
|
|
19902
|
-
.semi-tree-select-selection .semi-tagInput
|
|
19905
|
+
.semi-tree-select-selection .semi-tagInput-small {
|
|
19903
19906
|
min-height: 22px;
|
|
19904
19907
|
}
|
|
19905
|
-
.semi-tree-select-selection .semi-tagInput
|
|
19908
|
+
.semi-tree-select-selection .semi-tagInput-large {
|
|
19906
19909
|
min-height: 38px;
|
|
19907
19910
|
}
|
|
19911
|
+
.semi-tree-select-selection .semi-tagInput .semi-tagInput-wrapper {
|
|
19912
|
+
padding-left: 4px;
|
|
19913
|
+
padding-right: 4px;
|
|
19914
|
+
}
|
|
19908
19915
|
.semi-tree-select-selection .semi-tagInput .semi-tagInput-wrapper .semi-input-wrapper .semi-input {
|
|
19909
19916
|
padding-left: 0;
|
|
19910
19917
|
}
|