@douyinfe/semi-ui 2.23.1 → 2.23.3
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 +42 -1
- package/dist/css/semi.min.css +1 -1
- package/dist/umd/semi-ui.js +3 -14
- 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/input/index.d.ts +0 -2
- package/lib/cjs/input/index.js +1 -8
- package/lib/cjs/tagInput/index.js +2 -2
- package/lib/es/input/index.d.ts +0 -2
- package/lib/es/input/index.js +1 -8
- package/lib/es/tagInput/index.js +2 -2
- package/package.json +7 -7
package/dist/css/semi.css
CHANGED
|
@@ -5581,6 +5581,7 @@ body {
|
|
|
5581
5581
|
font-weight: 600;
|
|
5582
5582
|
color: var(--semi-color-text-0);
|
|
5583
5583
|
margin-bottom: 4px;
|
|
5584
|
+
padding-right: 16px;
|
|
5584
5585
|
display: inline-block;
|
|
5585
5586
|
vertical-align: middle;
|
|
5586
5587
|
font-size: 14px;
|
|
@@ -5764,6 +5765,7 @@ body {
|
|
|
5764
5765
|
.semi-rtl .semi-form-field-label,
|
|
5765
5766
|
.semi-portal-rtl .semi-form-field-label {
|
|
5766
5767
|
padding-right: 0;
|
|
5768
|
+
padding-left: 16px;
|
|
5767
5769
|
}
|
|
5768
5770
|
.semi-rtl .semi-form-field-label-with-extra .semi-form-field-label-extra,
|
|
5769
5771
|
.semi-portal-rtl .semi-form-field-label-with-extra .semi-form-field-label-extra {
|
|
@@ -16423,7 +16425,7 @@ img[src=""], img:not([src]) {
|
|
|
16423
16425
|
background-color: rgba(var(--semi-white), 1);
|
|
16424
16426
|
box-sizing: border-box;
|
|
16425
16427
|
position: absolute;
|
|
16426
|
-
left:
|
|
16428
|
+
left: 0px;
|
|
16427
16429
|
right: auto;
|
|
16428
16430
|
transition: transform 200ms ease-in-out, width 200ms ease-in-out;
|
|
16429
16431
|
width: 18px;
|
|
@@ -18266,6 +18268,15 @@ img[src=""], img:not([src]) {
|
|
|
18266
18268
|
padding-right: 4px;
|
|
18267
18269
|
overflow: hidden;
|
|
18268
18270
|
}
|
|
18271
|
+
.semi-tagInput-wrapper-small {
|
|
18272
|
+
min-height: 24px;
|
|
18273
|
+
}
|
|
18274
|
+
.semi-tagInput-wrapper-default {
|
|
18275
|
+
min-height: 32px;
|
|
18276
|
+
}
|
|
18277
|
+
.semi-tagInput-wrapper-large {
|
|
18278
|
+
min-height: 40px;
|
|
18279
|
+
}
|
|
18269
18280
|
.semi-tagInput-wrapper-tag {
|
|
18270
18281
|
margin-right: 4px;
|
|
18271
18282
|
white-space: pre;
|
|
@@ -18318,6 +18329,36 @@ img[src=""], img:not([src]) {
|
|
|
18318
18329
|
.semi-tagInput-wrapper .semi-tagInput-wrapper-input:not(:first-child) > input {
|
|
18319
18330
|
padding-left: 0;
|
|
18320
18331
|
}
|
|
18332
|
+
.semi-tagInput-wrapper .semi-tagInput-wrapper-input-small {
|
|
18333
|
+
height: 20px;
|
|
18334
|
+
margin-top: 1px;
|
|
18335
|
+
margin-bottom: 1px;
|
|
18336
|
+
line-height: 20px;
|
|
18337
|
+
}
|
|
18338
|
+
.semi-tagInput-wrapper .semi-tagInput-wrapper-input-small .semi-input-small {
|
|
18339
|
+
height: 20px;
|
|
18340
|
+
line-height: 20px;
|
|
18341
|
+
}
|
|
18342
|
+
.semi-tagInput-wrapper .semi-tagInput-wrapper-input-default {
|
|
18343
|
+
height: 24px;
|
|
18344
|
+
margin-top: 2px;
|
|
18345
|
+
margin-bottom: 2px;
|
|
18346
|
+
line-height: 24px;
|
|
18347
|
+
}
|
|
18348
|
+
.semi-tagInput-wrapper .semi-tagInput-wrapper-input-default .semi-input-default {
|
|
18349
|
+
height: 24px;
|
|
18350
|
+
line-height: 24px;
|
|
18351
|
+
}
|
|
18352
|
+
.semi-tagInput-wrapper .semi-tagInput-wrapper-input-large {
|
|
18353
|
+
height: 24px;
|
|
18354
|
+
margin-top: 3px;
|
|
18355
|
+
margin-bottom: 3px;
|
|
18356
|
+
line-height: 24px;
|
|
18357
|
+
}
|
|
18358
|
+
.semi-tagInput-wrapper .semi-tagInput-wrapper-input-large .semi-input-large {
|
|
18359
|
+
height: 24px;
|
|
18360
|
+
line-height: 24px;
|
|
18361
|
+
}
|
|
18321
18362
|
.semi-tagInput-clearBtn {
|
|
18322
18363
|
display: flex;
|
|
18323
18364
|
justify-content: center;
|