bk-magic-vue 2.5.8-beta.1 → 2.5.8-beta.11
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/bk-magic-vue.css +80 -58
- package/dist/bk-magic-vue.js +528 -209
- package/dist/bk-magic-vue.min.css +1 -1
- package/dist/bk-magic-vue.min.css.gz +0 -0
- package/dist/bk-magic-vue.min.css.map +1 -1
- package/dist/bk-magic-vue.min.js +1 -1
- package/dist/bk-magic-vue.min.js.gz +0 -0
- package/dist/bk-magic-vue.min.js.map +1 -1
- package/dist/fonts/iconcool.eot +0 -0
- package/dist/fonts/iconcool.svg +15 -0
- package/dist/fonts/iconcool.ttf +0 -0
- package/dist/fonts/iconcool.woff +0 -0
- package/lib/date-picker.js +43 -5
- package/lib/message.js +916 -151
- package/lib/option.js +2 -1
- package/lib/pagination.js +8561 -8564
- package/lib/select.js +2 -1
- package/lib/swiper.js +0 -1
- package/lib/table.js +5 -9
- package/lib/ui/bk-magic-vue.css +80 -58
- package/lib/ui/bk-magic-vue.min.css +1 -1
- package/lib/ui/bk-magic-vue.min.css.gz +0 -0
- package/lib/ui/bk-magic-vue.min.css.map +1 -1
- package/lib/ui/common.css +20 -0
- package/lib/ui/common.min.css +1 -1
- package/lib/ui/common.min.css.map +1 -1
- package/lib/ui/fonts/iconcool.eot +0 -0
- package/lib/ui/fonts/iconcool.svg +15 -0
- package/lib/ui/fonts/iconcool.ttf +0 -0
- package/lib/ui/fonts/iconcool.woff +0 -0
- package/lib/ui/iconfont.css +20 -0
- package/lib/ui/iconfont.min.css +1 -1
- package/lib/ui/iconfont.min.css.map +1 -1
- package/lib/ui/message.css +68 -59
- package/lib/ui/message.min.css +1 -1
- package/lib/ui/message.min.css.map +1 -1
- package/package.json +1 -1
package/dist/bk-magic-vue.css
CHANGED
|
@@ -2957,6 +2957,12 @@ url("fonts/iconcool.eot?#iefix") format("embedded-opentype");
|
|
|
2957
2957
|
.icon-data-line:before{
|
|
2958
2958
|
content:"\e20b";
|
|
2959
2959
|
}
|
|
2960
|
+
.icon-arrow-up:before{
|
|
2961
|
+
content:"\e213";
|
|
2962
|
+
}
|
|
2963
|
+
.icon-arrow-down:before{
|
|
2964
|
+
content:"\e214";
|
|
2965
|
+
}
|
|
2960
2966
|
.icon-qiehuan:before{
|
|
2961
2967
|
content:"\e20c";
|
|
2962
2968
|
}
|
|
@@ -2975,6 +2981,15 @@ url("fonts/iconcool.eot?#iefix") format("embedded-opentype");
|
|
|
2975
2981
|
.icon-fix-shape:before{
|
|
2976
2982
|
content:"\e212";
|
|
2977
2983
|
}
|
|
2984
|
+
.icon-arrow-left:before{
|
|
2985
|
+
content:"\e215";
|
|
2986
|
+
}
|
|
2987
|
+
.icon-arrow-right:before{
|
|
2988
|
+
content:"\e216";
|
|
2989
|
+
}
|
|
2990
|
+
.icon-assistant:before{
|
|
2991
|
+
content:"\e217";
|
|
2992
|
+
}
|
|
2978
2993
|
.f10{
|
|
2979
2994
|
font-size:10px!important;
|
|
2980
2995
|
}
|
|
@@ -7217,6 +7232,14 @@ span.bk-date-picker-cells-cell-disabled.bk-date-picker-cells-cell-selected em{
|
|
|
7217
7232
|
.bk-message-content.multi .message-detail .message-tree .message-row label::after{
|
|
7218
7233
|
content:':';
|
|
7219
7234
|
}
|
|
7235
|
+
.bk-message-content.multi .message-detail .message-tree .message-row .copy-value{
|
|
7236
|
+
padding:0px 4px
|
|
7237
|
+
}
|
|
7238
|
+
.bk-message-content.multi .message-detail .message-tree .message-row .copy-value:hover{
|
|
7239
|
+
background:rgba(186, 188, 192, 0.2);
|
|
7240
|
+
cursor:pointer;
|
|
7241
|
+
border-radius:2px;
|
|
7242
|
+
}
|
|
7220
7243
|
.bk-message-content.multi .message-detail .message-copy{
|
|
7221
7244
|
position:absolute;
|
|
7222
7245
|
top:20px;
|
|
@@ -7227,68 +7250,67 @@ span.bk-date-picker-cells-cell-disabled.bk-date-picker-cells-cell-selected em{
|
|
|
7227
7250
|
.bk-message-content.multi .message-detail .message-copy:hover span{
|
|
7228
7251
|
color:#3a84ff;
|
|
7229
7252
|
}
|
|
7230
|
-
.bk-message-content.multi .message-detail .
|
|
7231
|
-
|
|
7232
|
-
|
|
7253
|
+
.bk-message-content.multi .message-detail .copy-status{
|
|
7254
|
+
display:none;
|
|
7255
|
+
padding-bottom:4px;
|
|
7256
|
+
}
|
|
7257
|
+
.bk-message-content.multi .message-detail .copy-status .inner{
|
|
7258
|
+
position:relative;
|
|
7259
|
+
display:-webkit-box;
|
|
7260
|
+
display:-ms-flexbox;
|
|
7261
|
+
display:flex;
|
|
7262
|
+
padding:6px 8px;
|
|
7263
|
+
font-size:12px;
|
|
7264
|
+
line-height:20px;
|
|
7265
|
+
color:#63656e;
|
|
7266
|
+
background:#fff;
|
|
7267
|
+
border:1px solid #dcdee5;
|
|
7268
|
+
-webkit-box-shadow:0 2px 6px 0 rgba(0,0,0,0.10196);
|
|
7269
|
+
box-shadow:0 2px 6px 0 rgba(0,0,0,0.10196);
|
|
7270
|
+
-webkit-box-align:center;
|
|
7271
|
+
-ms-flex-align:center;
|
|
7272
|
+
align-items:center;
|
|
7233
7273
|
}
|
|
7234
|
-
.bk-message-content.multi .message-detail .
|
|
7235
|
-
|
|
7236
|
-
|
|
7237
|
-
|
|
7238
|
-
|
|
7239
|
-
|
|
7240
|
-
|
|
7241
|
-
|
|
7242
|
-
|
|
7274
|
+
.bk-message-content.multi .message-detail .copy-status .inner span{
|
|
7275
|
+
margin-right:4px;
|
|
7276
|
+
}
|
|
7277
|
+
.bk-message-content.multi .message-detail .copy-status .inner::after{
|
|
7278
|
+
position:absolute;
|
|
7279
|
+
bottom:0;
|
|
7280
|
+
left:50%;
|
|
7281
|
+
width:8px;
|
|
7282
|
+
height:8px;
|
|
7243
7283
|
background:#fff;
|
|
7244
|
-
border
|
|
7245
|
-
-
|
|
7246
|
-
|
|
7247
|
-
|
|
7248
|
-
|
|
7249
|
-
|
|
7250
|
-
|
|
7251
|
-
|
|
7252
|
-
|
|
7284
|
+
border-color:#dcdee5;
|
|
7285
|
+
border-style:solid;
|
|
7286
|
+
border-width:0px 1px 1px 0px;
|
|
7287
|
+
content:'';
|
|
7288
|
+
-webkit-transform:translate(0, 4px) rotate(45deg);
|
|
7289
|
+
transform:translate(0, 4px) rotate(45deg);
|
|
7290
|
+
-webkit-box-shadow:5px 3px 6px 0 rgba(0,0,0,0.10196);
|
|
7291
|
+
box-shadow:5px 3px 6px 0 rgba(0,0,0,0.10196);
|
|
7292
|
+
-webkit-box-sizing:border-box;
|
|
7293
|
+
box-sizing:border-box;
|
|
7294
|
+
}
|
|
7295
|
+
.bk-message-content.multi .message-detail .copy-status.success .inner span{
|
|
7296
|
+
color:#2dcb9d;
|
|
7253
7297
|
}
|
|
7254
|
-
.bk-message-content.multi .message-detail .
|
|
7255
|
-
|
|
7256
|
-
bottom:0;
|
|
7257
|
-
left:50%;
|
|
7258
|
-
width:8px;
|
|
7259
|
-
height:8px;
|
|
7260
|
-
background:#fff;
|
|
7261
|
-
border-color:#dcdee5;
|
|
7262
|
-
border-style:solid;
|
|
7263
|
-
border-width:0px 1px 1px 0px;
|
|
7264
|
-
content:'';
|
|
7265
|
-
-webkit-transform:translate(0, 4px) rotate(45deg);
|
|
7266
|
-
transform:translate(0, 4px) rotate(45deg);
|
|
7267
|
-
-webkit-box-shadow:5px 3px 6px 0 rgba(0,0,0,0.10196);
|
|
7268
|
-
box-shadow:5px 3px 6px 0 rgba(0,0,0,0.10196);
|
|
7269
|
-
-webkit-box-sizing:border-box;
|
|
7270
|
-
box-sizing:border-box;
|
|
7298
|
+
.bk-message-content.multi .message-detail .copy-status.error .inner span{
|
|
7299
|
+
color:#ea3636;
|
|
7271
7300
|
}
|
|
7272
|
-
.bk-message-content.multi .message-detail .
|
|
7273
|
-
|
|
7274
|
-
|
|
7275
|
-
|
|
7276
|
-
|
|
7277
|
-
|
|
7278
|
-
|
|
7279
|
-
|
|
7280
|
-
|
|
7281
|
-
|
|
7282
|
-
|
|
7283
|
-
|
|
7284
|
-
|
|
7285
|
-
white-space:nowrap;
|
|
7286
|
-
-webkit-transform:translate(-50%, -100%);
|
|
7287
|
-
transform:translate(-50%, -100%);
|
|
7288
|
-
}
|
|
7289
|
-
.bk-message-content.multi .message-detail .message-copy .copy-status.is-hidden{
|
|
7290
|
-
display:none;
|
|
7291
|
-
}
|
|
7301
|
+
.bk-message-content.multi .message-detail .copy-status.is-show{
|
|
7302
|
+
position:absolute;
|
|
7303
|
+
top:0;
|
|
7304
|
+
left:0;
|
|
7305
|
+
display:-webkit-inline-box;
|
|
7306
|
+
display:-ms-inline-flexbox;
|
|
7307
|
+
display:inline-flex;
|
|
7308
|
+
white-space:nowrap;
|
|
7309
|
+
}
|
|
7310
|
+
.bk-message-content.multi .message-detail .copy-status.is-hidden{
|
|
7311
|
+
top:-9999;
|
|
7312
|
+
left:-9999;
|
|
7313
|
+
}
|
|
7292
7314
|
.bk-notify{
|
|
7293
7315
|
display:-webkit-box;
|
|
7294
7316
|
display:-ms-flexbox;
|