@web-utils/component 2.7.0 → 2.7.1
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/{tabs → fy-tabs}/index.js +1 -1
- package/dist/components/{tabs → fy-tabs}/style.css +0 -0
- package/dist/components/{tree → fy-tree}/index.js +1 -1
- package/dist/components/{tree → fy-tree}/style.css +0 -0
- package/dist/index.css +39 -39
- package/dist/index.es.js +7956 -7956
- package/package.json +1 -1
- package/web-types.json +157 -157
|
File without changes
|
|
File without changes
|
package/dist/index.css
CHANGED
|
@@ -3447,6 +3447,45 @@ body {
|
|
|
3447
3447
|
font-size: 18px;
|
|
3448
3448
|
margin: 5px 10px;
|
|
3449
3449
|
}
|
|
3450
|
+
.avue-tree {
|
|
3451
|
+
position: relative;
|
|
3452
|
+
height: 100%;
|
|
3453
|
+
}
|
|
3454
|
+
.avue-tree__menu {
|
|
3455
|
+
width: 200px;
|
|
3456
|
+
position: fixed;
|
|
3457
|
+
z-index: 1024;
|
|
3458
|
+
flex-wrap: wrap;
|
|
3459
|
+
background-color: #fff;
|
|
3460
|
+
}
|
|
3461
|
+
.avue-tree__dialog .el-dialog__body {
|
|
3462
|
+
padding: 30px 20px 0;
|
|
3463
|
+
}
|
|
3464
|
+
.avue-tree__item {
|
|
3465
|
+
position: relative;
|
|
3466
|
+
height: 34px;
|
|
3467
|
+
line-height: 34px;
|
|
3468
|
+
outline: none;
|
|
3469
|
+
padding: 0 10px;
|
|
3470
|
+
white-space: nowrap;
|
|
3471
|
+
overflow: hidden;
|
|
3472
|
+
text-overflow: ellipsis;
|
|
3473
|
+
width: 100%;
|
|
3474
|
+
color: #666;
|
|
3475
|
+
}
|
|
3476
|
+
.avue-tree__item:hover {
|
|
3477
|
+
cursor: pointer;
|
|
3478
|
+
color: #409eff;
|
|
3479
|
+
}
|
|
3480
|
+
.avue-tree__filter {
|
|
3481
|
+
margin-bottom: 5px;
|
|
3482
|
+
display: flex;
|
|
3483
|
+
align-items: center;
|
|
3484
|
+
}
|
|
3485
|
+
.avue-tree__content {
|
|
3486
|
+
padding: 5px 0;
|
|
3487
|
+
height: calc(100% - 32px);
|
|
3488
|
+
}
|
|
3450
3489
|
.avue-upload--upload .el-upload,
|
|
3451
3490
|
.avue-upload--upload .el-upload__tip {
|
|
3452
3491
|
display: none;
|
|
@@ -5281,45 +5320,6 @@ body {
|
|
|
5281
5320
|
.form-toolbar-button .form-toolbar-button .el-button:hover {
|
|
5282
5321
|
border-color: transparent;
|
|
5283
5322
|
}
|
|
5284
|
-
.avue-tree {
|
|
5285
|
-
position: relative;
|
|
5286
|
-
height: 100%;
|
|
5287
|
-
}
|
|
5288
|
-
.avue-tree__menu {
|
|
5289
|
-
width: 200px;
|
|
5290
|
-
position: fixed;
|
|
5291
|
-
z-index: 1024;
|
|
5292
|
-
flex-wrap: wrap;
|
|
5293
|
-
background-color: #fff;
|
|
5294
|
-
}
|
|
5295
|
-
.avue-tree__dialog .el-dialog__body {
|
|
5296
|
-
padding: 30px 20px 0;
|
|
5297
|
-
}
|
|
5298
|
-
.avue-tree__item {
|
|
5299
|
-
position: relative;
|
|
5300
|
-
height: 34px;
|
|
5301
|
-
line-height: 34px;
|
|
5302
|
-
outline: none;
|
|
5303
|
-
padding: 0 10px;
|
|
5304
|
-
white-space: nowrap;
|
|
5305
|
-
overflow: hidden;
|
|
5306
|
-
text-overflow: ellipsis;
|
|
5307
|
-
width: 100%;
|
|
5308
|
-
color: #666;
|
|
5309
|
-
}
|
|
5310
|
-
.avue-tree__item:hover {
|
|
5311
|
-
cursor: pointer;
|
|
5312
|
-
color: #409eff;
|
|
5313
|
-
}
|
|
5314
|
-
.avue-tree__filter {
|
|
5315
|
-
margin-bottom: 5px;
|
|
5316
|
-
display: flex;
|
|
5317
|
-
align-items: center;
|
|
5318
|
-
}
|
|
5319
|
-
.avue-tree__content {
|
|
5320
|
-
padding: 5px 0;
|
|
5321
|
-
height: calc(100% - 32px);
|
|
5322
|
-
}
|
|
5323
5323
|
.avue-verify__item {
|
|
5324
5324
|
padding: 5px 10px;
|
|
5325
5325
|
display: inline-block;
|