@kdcloudjs/kdesign 1.8.21 → 1.8.23
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/kdesign-complete.less +258 -13
- package/dist/kdesign.css +688 -240
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +125 -64
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +4 -4
- package/dist/kdesign.min.js +9 -9
- package/dist/kdesign.min.js.map +1 -1
- package/es/cascader/style/index.less +4 -3
- package/es/color-picker/color-picker-panel.js +41 -24
- package/es/color-picker/color-picker.d.ts +3 -3
- package/es/color-picker/color-picker.js +20 -5
- package/es/color-picker/interface.d.ts +6 -0
- package/es/color-picker/style/index.css +17 -6
- package/es/color-picker/style/index.less +16 -5
- package/es/color-picker/utils/removeTransparency.d.ts +3 -0
- package/es/color-picker/utils/removeTransparency.js +4 -0
- package/es/config-provider/compDefaultProps.d.ts +2 -3
- package/es/config-provider/compDefaultProps.js +2 -3
- package/es/icon/icon.js +9 -4
- package/es/icon/style/index.less +2 -2
- package/es/input/style/index.css +3 -3
- package/es/input/style/index.less +1 -1
- package/es/input/style/token.less +1 -1
- package/es/style/icon/kdicon.less +231 -0
- package/es/style/index.css +667 -1
- package/es/style/index.less +1 -1
- package/es/switch/style/index.less +2 -1
- package/lib/cascader/style/index.less +4 -3
- package/lib/color-picker/color-picker-panel.js +41 -24
- package/lib/color-picker/color-picker.d.ts +3 -3
- package/lib/color-picker/color-picker.js +19 -4
- package/lib/color-picker/interface.d.ts +6 -0
- package/lib/color-picker/style/index.css +17 -6
- package/lib/color-picker/style/index.less +16 -5
- package/lib/color-picker/utils/removeTransparency.d.ts +3 -0
- package/lib/color-picker/utils/removeTransparency.js +11 -0
- package/lib/config-provider/compDefaultProps.d.ts +2 -3
- package/lib/config-provider/compDefaultProps.js +2 -3
- package/lib/icon/icon.js +9 -4
- package/lib/icon/style/index.less +2 -2
- package/lib/input/style/index.css +3 -3
- package/lib/input/style/index.less +1 -1
- package/lib/input/style/token.less +1 -1
- package/lib/style/icon/kdicon.less +231 -0
- package/lib/style/index.css +667 -1
- package/lib/style/index.less +1 -1
- package/lib/switch/style/index.less +2 -1
- package/package.json +1 -1
- package/es/style/icon/kdicon.css +0 -229
- package/lib/style/icon/kdicon.css +0 -229
|
@@ -1932,6 +1932,7 @@
|
|
|
1932
1932
|
@cascader-picker-prefix-cls: ~'@{kd-prefix}-cascader-picker';
|
|
1933
1933
|
@cascader-menus-prefix-cls: ~'@{kd-prefix}-cascader-menus';
|
|
1934
1934
|
@cascader-menu-prefix-cls: ~'@{kd-prefix}-cascader-menu';
|
|
1935
|
+
@icon-prefix-cls: ~'@{kd-prefix}icon';
|
|
1935
1936
|
|
|
1936
1937
|
.@{cascader-picker-prefix-cls} {
|
|
1937
1938
|
position: relative;
|
|
@@ -1945,7 +1946,7 @@
|
|
|
1945
1946
|
border-color: @color-border-strong;
|
|
1946
1947
|
|
|
1947
1948
|
.@{kd-prefix}-input-suffix,
|
|
1948
|
-
i[class*='
|
|
1949
|
+
i[class*='@{icon-prefix-cls}'] {
|
|
1949
1950
|
color: @cascader-disabled-color;
|
|
1950
1951
|
}
|
|
1951
1952
|
}
|
|
@@ -1974,13 +1975,13 @@
|
|
|
1974
1975
|
}
|
|
1975
1976
|
|
|
1976
1977
|
&.expand {
|
|
1977
|
-
i[class*='
|
|
1978
|
+
i[class*='@{icon-prefix-cls}'] {
|
|
1978
1979
|
transform: rotate(180deg);
|
|
1979
1980
|
}
|
|
1980
1981
|
}
|
|
1981
1982
|
|
|
1982
1983
|
.@{kd-prefix}-input-suffix,
|
|
1983
|
-
i[class*='
|
|
1984
|
+
i[class*='@{icon-prefix-cls}'] {
|
|
1984
1985
|
transition: all 0.2s;
|
|
1985
1986
|
}
|
|
1986
1987
|
}
|
|
@@ -3372,7 +3373,6 @@
|
|
|
3372
3373
|
height: 100%;
|
|
3373
3374
|
width: 100%;
|
|
3374
3375
|
padding: 0 8px;
|
|
3375
|
-
border-bottom: 1px solid rgba(217, 217, 217, 1);
|
|
3376
3376
|
font-size: @color-picker-input-font-size;
|
|
3377
3377
|
}
|
|
3378
3378
|
|
|
@@ -3406,15 +3406,27 @@
|
|
|
3406
3406
|
width: @color-picker-panel-sizing-width;
|
|
3407
3407
|
|
|
3408
3408
|
&.topLeft.hidden,
|
|
3409
|
+
&.topRight.hidden {
|
|
3410
|
+
animation-name: kdSlideDownOut;
|
|
3411
|
+
}
|
|
3412
|
+
|
|
3413
|
+
&.topLeft,
|
|
3414
|
+
&.topRight {
|
|
3415
|
+
animation-name: kdSlideDownIn;
|
|
3416
|
+
}
|
|
3417
|
+
|
|
3409
3418
|
&.bottomLeft.hidden,
|
|
3410
|
-
&.topRight.hidden,
|
|
3411
3419
|
&.bottomRight.hidden {
|
|
3412
|
-
|
|
3413
|
-
|
|
3414
|
-
|
|
3420
|
+
animation-name: kdSlideUpOut;
|
|
3421
|
+
}
|
|
3422
|
+
|
|
3423
|
+
&.bottomLeft,
|
|
3424
|
+
&.bottomRight {
|
|
3425
|
+
animation-name: kdSlideUpIn;
|
|
3415
3426
|
}
|
|
3416
3427
|
|
|
3417
3428
|
.@{color-picker-prefix-cls}-panel {
|
|
3429
|
+
position: relative;
|
|
3418
3430
|
box-sizing: border-box;
|
|
3419
3431
|
width: @color-picker-panel-sizing-width;
|
|
3420
3432
|
padding: 4px 12px 16px;
|
|
@@ -5823,9 +5835,9 @@
|
|
|
5823
5835
|
|
|
5824
5836
|
|
|
5825
5837
|
|
|
5826
|
-
@icon-prefix-cls: ~'@{
|
|
5838
|
+
@icon-prefix-cls: ~'@{kd-prefix}icon';
|
|
5827
5839
|
|
|
5828
|
-
[class^="
|
|
5840
|
+
[class^="@{icon-prefix-cls}"] {
|
|
5829
5841
|
display: inline-block;
|
|
5830
5842
|
text-align: center;
|
|
5831
5843
|
vertical-align: middle;
|
|
@@ -6495,7 +6507,7 @@ textarea {
|
|
|
6495
6507
|
&-disabled {
|
|
6496
6508
|
background-color: @input-background-color-disabled-inner;
|
|
6497
6509
|
border-color: @input-border-color-disabled-inner;
|
|
6498
|
-
color: @
|
|
6510
|
+
color: @color-text-primary;
|
|
6499
6511
|
cursor: not-allowed;
|
|
6500
6512
|
}
|
|
6501
6513
|
|
|
@@ -6843,7 +6855,7 @@ textarea {
|
|
|
6843
6855
|
@input-border-color-disabled-inner: var(~'@{input-prefix}-color-border-disabled', @color-border-strong);
|
|
6844
6856
|
@input-underline-border-color-disabled-inner: var(~'@{input-prefix}-underline-color-border-disabled', @color-border-weak);
|
|
6845
6857
|
@input-color-disabled-inner: var(~'@{input-prefix}-color-disabled', @color-disabled);
|
|
6846
|
-
@input-affix-color: var(~'@{input-prefix}-affix-color-text', #
|
|
6858
|
+
@input-affix-color: var(~'@{input-prefix}-affix-color-text', #999);
|
|
6847
6859
|
@input-error-color: var(~'@{input-prefix}-color-error', @color-error);
|
|
6848
6860
|
|
|
6849
6861
|
// font
|
|
@@ -13225,6 +13237,238 @@ template {
|
|
|
13225
13237
|
border-radius: 10px;
|
|
13226
13238
|
}
|
|
13227
13239
|
|
|
13240
|
+
@icon-prefix-cls: ~'@{kd-prefix}icon';
|
|
13241
|
+
|
|
13242
|
+
@font-face {
|
|
13243
|
+
font-family: "kdicon";
|
|
13244
|
+
src: url("kdicon.woff?t=1668600442688") format("woff")
|
|
13245
|
+
}
|
|
13246
|
+
.@{icon-prefix-cls} {
|
|
13247
|
+
font-family: "kdicon" !important;
|
|
13248
|
+
font-style:normal;
|
|
13249
|
+
-webkit-font-smoothing: antialiased;
|
|
13250
|
+
-moz-osx-font-smoothing: grayscale;
|
|
13251
|
+
}
|
|
13252
|
+
.@{icon-prefix-cls}-add-child:before { content: "\e6c0"; }
|
|
13253
|
+
.@{icon-prefix-cls}-add-indentation:before { content: "\e6a7"; }
|
|
13254
|
+
.@{icon-prefix-cls}-add-line:before { content: "\e6c5"; }
|
|
13255
|
+
.@{icon-prefix-cls}-add-solid:before { content: "\e643"; }
|
|
13256
|
+
.@{icon-prefix-cls}-add-word:before { content: "\e6ed"; }
|
|
13257
|
+
.@{icon-prefix-cls}-add:before { content: "\e628"; }
|
|
13258
|
+
.@{icon-prefix-cls}-address:before { content: "\e6cc"; }
|
|
13259
|
+
.@{icon-prefix-cls}-align-center:before { content: "\e69a"; }
|
|
13260
|
+
.@{icon-prefix-cls}-align-left:before { content: "\e6af"; }
|
|
13261
|
+
.@{icon-prefix-cls}-align-right:before { content: "\e67a"; }
|
|
13262
|
+
.@{icon-prefix-cls}-all-border:before { content: "\e677"; }
|
|
13263
|
+
.@{icon-prefix-cls}-allowance-workbench:before { content: "\e714"; }
|
|
13264
|
+
.@{icon-prefix-cls}-analysis:before { content: "\e6ce"; }
|
|
13265
|
+
.@{icon-prefix-cls}-arrow-down-solid:before { content: "\e656"; }
|
|
13266
|
+
.@{icon-prefix-cls}-arrow-down:before { content: "\e627"; }
|
|
13267
|
+
.@{icon-prefix-cls}-arrow-left-circle-solid:before { content: "\e720"; }
|
|
13268
|
+
.@{icon-prefix-cls}-arrow-left-solid:before { content: "\e657"; }
|
|
13269
|
+
.@{icon-prefix-cls}-arrow-left:before { content: "\e63f"; }
|
|
13270
|
+
.@{icon-prefix-cls}-arrow-right-circle-solid:before { content: "\e71f"; }
|
|
13271
|
+
.@{icon-prefix-cls}-arrow-right-solid:before { content: "\e655"; }
|
|
13272
|
+
.@{icon-prefix-cls}-arrow-right:before { content: "\e62c"; }
|
|
13273
|
+
.@{icon-prefix-cls}-arrow-up-solid:before { content: "\e654"; }
|
|
13274
|
+
.@{icon-prefix-cls}-arrow-up:before { content: "\e62b"; }
|
|
13275
|
+
.@{icon-prefix-cls}-arrow:before { content: "\e69c"; }
|
|
13276
|
+
.@{icon-prefix-cls}-attachment:before { content: "\e694"; }
|
|
13277
|
+
.@{icon-prefix-cls}-avatar-default:before { content: "\e717"; }
|
|
13278
|
+
.@{icon-prefix-cls}-avatar-head-default:before { content: "\e718"; }
|
|
13279
|
+
.@{icon-prefix-cls}-avatar-solid:before { content: "\e711"; }
|
|
13280
|
+
.@{icon-prefix-cls}-back:before { content: "\e6cd"; }
|
|
13281
|
+
.@{icon-prefix-cls}-bankcard:before { content: "\e705"; }
|
|
13282
|
+
.@{icon-prefix-cls}-bellOutlined:before { content: "\e71a"; }
|
|
13283
|
+
.@{icon-prefix-cls}-bold-solid:before { content: "\e668"; }
|
|
13284
|
+
.@{icon-prefix-cls}-border:before { content: "\e6f9"; }
|
|
13285
|
+
.@{icon-prefix-cls}-bottom-border:before { content: "\e704"; }
|
|
13286
|
+
.@{icon-prefix-cls}-business-type:before { content: "\e716"; }
|
|
13287
|
+
.@{icon-prefix-cls}-cancel:before { content: "\e68f"; }
|
|
13288
|
+
.@{icon-prefix-cls}-cell:before { content: "\e692"; }
|
|
13289
|
+
.@{icon-prefix-cls}-change:before { content: "\e6e2"; }
|
|
13290
|
+
.@{icon-prefix-cls}-chart-display:before { content: "\e710"; }
|
|
13291
|
+
.@{icon-prefix-cls}-chart:before { content: "\e6d0"; }
|
|
13292
|
+
.@{icon-prefix-cls}-classify:before { content: "\e6d4"; }
|
|
13293
|
+
.@{icon-prefix-cls}-close-bold:before { content: "\e647"; }
|
|
13294
|
+
.@{icon-prefix-cls}-close-full-screen:before { content: "\e679"; }
|
|
13295
|
+
.@{icon-prefix-cls}-close-solid:before { content: "\e644"; }
|
|
13296
|
+
.@{icon-prefix-cls}-close:before { content: "\e62f"; }
|
|
13297
|
+
.@{icon-prefix-cls}-cn:before { content: "\e6b5"; }
|
|
13298
|
+
.@{icon-prefix-cls}-code:before { content: "\e6ca"; }
|
|
13299
|
+
.@{icon-prefix-cls}-collect:before { content: "\e6ec"; }
|
|
13300
|
+
.@{icon-prefix-cls}-comment:before { content: "\e6bc"; }
|
|
13301
|
+
.@{icon-prefix-cls}-communication-solid:before { content: "\e65e"; }
|
|
13302
|
+
.@{icon-prefix-cls}-contract:before { content: "\e69f"; }
|
|
13303
|
+
.@{icon-prefix-cls}-cooperation:before { content: "\e6fb"; }
|
|
13304
|
+
.@{icon-prefix-cls}-copy-code:before { content: "\e6e1"; }
|
|
13305
|
+
.@{icon-prefix-cls}-copy:before { content: "\e678"; }
|
|
13306
|
+
.@{icon-prefix-cls}-counterclockwise:before { content: "\e6e5"; }
|
|
13307
|
+
.@{icon-prefix-cls}-customize:before { content: "\e707"; }
|
|
13308
|
+
.@{icon-prefix-cls}-dashboard:before { content: "\e71c"; }
|
|
13309
|
+
.@{icon-prefix-cls}-date-selection:before { content: "\e70f"; }
|
|
13310
|
+
.@{icon-prefix-cls}-date:before { content: "\e6eb"; }
|
|
13311
|
+
.@{icon-prefix-cls}-delete-indentation:before { content: "\e697"; }
|
|
13312
|
+
.@{icon-prefix-cls}-delete-line:before { content: "\e68c"; }
|
|
13313
|
+
.@{icon-prefix-cls}-delete-solid:before { content: "\e667"; }
|
|
13314
|
+
.@{icon-prefix-cls}-delete:before { content: "\e6ee"; }
|
|
13315
|
+
.@{icon-prefix-cls}-detail:before { content: "\e6c4"; }
|
|
13316
|
+
.@{icon-prefix-cls}-detect:before { content: "\e68e"; }
|
|
13317
|
+
.@{icon-prefix-cls}-division-solid:before { content: "\e65a"; }
|
|
13318
|
+
.@{icon-prefix-cls}-double-arrow-left:before { content: "\e64a"; }
|
|
13319
|
+
.@{icon-prefix-cls}-double-arrow-right:before { content: "\e649"; }
|
|
13320
|
+
.@{icon-prefix-cls}-download:before { content: "\e70a"; }
|
|
13321
|
+
.@{icon-prefix-cls}-edit-border:before { content: "\e6c8"; }
|
|
13322
|
+
.@{icon-prefix-cls}-edit-view:before { content: "\e6c7"; }
|
|
13323
|
+
.@{icon-prefix-cls}-edit:before { content: "\e6a6"; }
|
|
13324
|
+
.@{icon-prefix-cls}-education:before { content: "\e69d"; }
|
|
13325
|
+
.@{icon-prefix-cls}-eliminate-solid:before { content: "\e659"; }
|
|
13326
|
+
.@{icon-prefix-cls}-en:before { content: "\e6b6"; }
|
|
13327
|
+
.@{icon-prefix-cls}-enlarge:before { content: "\e6d5"; }
|
|
13328
|
+
.@{icon-prefix-cls}-equal:before { content: "\e6a3"; }
|
|
13329
|
+
.@{icon-prefix-cls}-exclamatory:before { content: "\e64e"; }
|
|
13330
|
+
.@{icon-prefix-cls}-expand:before { content: "\e651"; }
|
|
13331
|
+
.@{icon-prefix-cls}-experience:before { content: "\e6ff"; }
|
|
13332
|
+
.@{icon-prefix-cls}-fail:before { content: "\e6a5"; }
|
|
13333
|
+
.@{icon-prefix-cls}-feedback:before { content: "\e6d6"; }
|
|
13334
|
+
.@{icon-prefix-cls}-female:before { content: "\e684"; }
|
|
13335
|
+
.@{icon-prefix-cls}-filter-solid:before { content: "\e66a"; }
|
|
13336
|
+
.@{icon-prefix-cls}-filter-switch:before { content: "\e6b1"; }
|
|
13337
|
+
.@{icon-prefix-cls}-filter:before { content: "\e6a0"; }
|
|
13338
|
+
.@{icon-prefix-cls}-finish:before { content: "\e6dc"; }
|
|
13339
|
+
.@{icon-prefix-cls}-first:before { content: "\e630"; }
|
|
13340
|
+
.@{icon-prefix-cls}-fixed-shrink:before { content: "\e693"; }
|
|
13341
|
+
.@{icon-prefix-cls}-fixed-solid:before { content: "\e65f"; }
|
|
13342
|
+
.@{icon-prefix-cls}-fixed-window:before { content: "\e6d1"; }
|
|
13343
|
+
.@{icon-prefix-cls}-fixed:before { content: "\e6e3"; }
|
|
13344
|
+
.@{icon-prefix-cls}-fold:before { content: "\e71d"; }
|
|
13345
|
+
.@{icon-prefix-cls}-foldmenu:before { content: "\e70e"; }
|
|
13346
|
+
.@{icon-prefix-cls}-font-background-solid:before { content: "\e673"; }
|
|
13347
|
+
.@{icon-prefix-cls}-font-color-solid:before { content: "\e674"; }
|
|
13348
|
+
.@{icon-prefix-cls}-forbid:before { content: "\e69b"; }
|
|
13349
|
+
.@{icon-prefix-cls}-git:before { content: "\e6c1"; }
|
|
13350
|
+
.@{icon-prefix-cls}-graffiti:before { content: "\e6fe"; }
|
|
13351
|
+
.@{icon-prefix-cls}-greater-equal:before { content: "\e6d7"; }
|
|
13352
|
+
.@{icon-prefix-cls}-have-attachment:before { content: "\e6a8"; }
|
|
13353
|
+
.@{icon-prefix-cls}-hide:before { content: "\e6a9"; }
|
|
13354
|
+
.@{icon-prefix-cls}-hyperlink:before { content: "\e6c9"; }
|
|
13355
|
+
.@{icon-prefix-cls}-image:before { content: "\e687"; }
|
|
13356
|
+
.@{icon-prefix-cls}-import:before { content: "\e6cb"; }
|
|
13357
|
+
.@{icon-prefix-cls}-international:before { content: "\e719"; }
|
|
13358
|
+
.@{icon-prefix-cls}-job-info:before { content: "\e68d"; }
|
|
13359
|
+
.@{icon-prefix-cls}-last:before { content: "\e631"; }
|
|
13360
|
+
.@{icon-prefix-cls}-left-border:before { content: "\e708"; }
|
|
13361
|
+
.@{icon-prefix-cls}-left-extension:before { content: "\e6ae"; }
|
|
13362
|
+
.@{icon-prefix-cls}-left-unfold-solid:before { content: "\e675"; }
|
|
13363
|
+
.@{icon-prefix-cls}-left-unfold:before { content: "\e709"; }
|
|
13364
|
+
.@{icon-prefix-cls}-like:before { content: "\e67f"; }
|
|
13365
|
+
.@{icon-prefix-cls}-list:before { content: "\e6e6"; }
|
|
13366
|
+
.@{icon-prefix-cls}-little-k:before { content: "\e700"; }
|
|
13367
|
+
.@{icon-prefix-cls}-loadding-circle:before { content: "\e645"; }
|
|
13368
|
+
.@{icon-prefix-cls}-loadding:before { content: "\e62d"; }
|
|
13369
|
+
.@{icon-prefix-cls}-location-solid:before { content: "\e640"; }
|
|
13370
|
+
.@{icon-prefix-cls}-location:before { content: "\e695"; }
|
|
13371
|
+
.@{icon-prefix-cls}-lock-solid:before { content: "\e66b"; }
|
|
13372
|
+
.@{icon-prefix-cls}-lock:before { content: "\e68b"; }
|
|
13373
|
+
.@{icon-prefix-cls}-male:before { content: "\e683"; }
|
|
13374
|
+
.@{icon-prefix-cls}-material:before { content: "\e6db"; }
|
|
13375
|
+
.@{icon-prefix-cls}-medical-report:before { content: "\e703"; }
|
|
13376
|
+
.@{icon-prefix-cls}-menu:before { content: "\e6d8"; }
|
|
13377
|
+
.@{icon-prefix-cls}-merge-cell:before { content: "\e6f3"; }
|
|
13378
|
+
.@{icon-prefix-cls}-more-info-solid:before { content: "\e660"; }
|
|
13379
|
+
.@{icon-prefix-cls}-more-info:before { content: "\e6e4"; }
|
|
13380
|
+
.@{icon-prefix-cls}-more-item:before { content: "\e6f4"; }
|
|
13381
|
+
.@{icon-prefix-cls}-more:before { content: "\e6a1"; }
|
|
13382
|
+
.@{icon-prefix-cls}-mosaic-solid:before { content: "\e663"; }
|
|
13383
|
+
.@{icon-prefix-cls}-multiply:before { content: "\e65b"; }
|
|
13384
|
+
.@{icon-prefix-cls}-my-receipt:before { content: "\e715"; }
|
|
13385
|
+
.@{icon-prefix-cls}-no-border:before { content: "\e6f8"; }
|
|
13386
|
+
.@{icon-prefix-cls}-not-equal:before { content: "\e6dd"; }
|
|
13387
|
+
.@{icon-prefix-cls}-notice:before { content: "\e658"; }
|
|
13388
|
+
.@{icon-prefix-cls}-oblique-solid:before { content: "\e66e"; }
|
|
13389
|
+
.@{icon-prefix-cls}-operating-element:before { content: "\e6a4"; }
|
|
13390
|
+
.@{icon-prefix-cls}-order-facet:before { content: "\e713"; }
|
|
13391
|
+
.@{icon-prefix-cls}-order:before { content: "\e6d2"; }
|
|
13392
|
+
.@{icon-prefix-cls}-ordered-list:before { content: "\e6fa"; }
|
|
13393
|
+
.@{icon-prefix-cls}-person-solid:before { content: "\e669"; }
|
|
13394
|
+
.@{icon-prefix-cls}-phone:before { content: "\e6d3"; }
|
|
13395
|
+
.@{icon-prefix-cls}-platform:before { content: "\e6f1"; }
|
|
13396
|
+
.@{icon-prefix-cls}-preview-view:before { content: "\e6ba"; }
|
|
13397
|
+
.@{icon-prefix-cls}-preview:before { content: "\e6ac"; }
|
|
13398
|
+
.@{icon-prefix-cls}-print:before { content: "\e690"; }
|
|
13399
|
+
.@{icon-prefix-cls}-processing-solid:before { content: "\e665"; }
|
|
13400
|
+
.@{icon-prefix-cls}-project:before { content: "\e681"; }
|
|
13401
|
+
.@{icon-prefix-cls}-push-down:before { content: "\e702"; }
|
|
13402
|
+
.@{icon-prefix-cls}-put-bottom:before { content: "\e6b4"; }
|
|
13403
|
+
.@{icon-prefix-cls}-put-off:before { content: "\e685"; }
|
|
13404
|
+
.@{icon-prefix-cls}-put-on:before { content: "\e6bd"; }
|
|
13405
|
+
.@{icon-prefix-cls}-put-top:before { content: "\e6b3"; }
|
|
13406
|
+
.@{icon-prefix-cls}-qrcode:before { content: "\e6df"; }
|
|
13407
|
+
.@{icon-prefix-cls}-qualification-info:before { content: "\e6b2"; }
|
|
13408
|
+
.@{icon-prefix-cls}-quit:before { content: "\e6fc"; }
|
|
13409
|
+
.@{icon-prefix-cls}-quote-solid:before { content: "\e66d"; }
|
|
13410
|
+
.@{icon-prefix-cls}-reduce:before { content: "\e696"; }
|
|
13411
|
+
.@{icon-prefix-cls}-reduction:before { content: "\e6f2"; }
|
|
13412
|
+
.@{icon-prefix-cls}-refresh-solid:before { content: "\e642"; }
|
|
13413
|
+
.@{icon-prefix-cls}-refresh:before { content: "\e629"; }
|
|
13414
|
+
.@{icon-prefix-cls}-report-form:before { content: "\e712"; }
|
|
13415
|
+
.@{icon-prefix-cls}-reset:before { content: "\e6b9"; }
|
|
13416
|
+
.@{icon-prefix-cls}-resign-report:before { content: "\e699"; }
|
|
13417
|
+
.@{icon-prefix-cls}-return:before { content: "\e6e0"; }
|
|
13418
|
+
.@{icon-prefix-cls}-right-bold:before { content: "\e648"; }
|
|
13419
|
+
.@{icon-prefix-cls}-right-border:before { content: "\e67c"; }
|
|
13420
|
+
.@{icon-prefix-cls}-right-extension:before { content: "\e6aa"; }
|
|
13421
|
+
.@{icon-prefix-cls}-right-solid:before { content: "\e641"; }
|
|
13422
|
+
.@{icon-prefix-cls}-right-unfold-solid:before { content: "\e672"; }
|
|
13423
|
+
.@{icon-prefix-cls}-right-unfold:before { content: "\e6ab"; }
|
|
13424
|
+
.@{icon-prefix-cls}-right:before { content: "\e62e"; }
|
|
13425
|
+
.@{icon-prefix-cls}-rough-border:before { content: "\e6de"; }
|
|
13426
|
+
.@{icon-prefix-cls}-save:before { content: "\e6c2"; }
|
|
13427
|
+
.@{icon-prefix-cls}-scanning:before { content: "\e67d"; }
|
|
13428
|
+
.@{icon-prefix-cls}-search-border:before { content: "\e6da"; }
|
|
13429
|
+
.@{icon-prefix-cls}-search:before { content: "\e62a"; }
|
|
13430
|
+
.@{icon-prefix-cls}-setting:before { content: "\e652"; }
|
|
13431
|
+
.@{icon-prefix-cls}-share:before { content: "\e6cf"; }
|
|
13432
|
+
.@{icon-prefix-cls}-shoppingcart:before { content: "\e6bf"; }
|
|
13433
|
+
.@{icon-prefix-cls}-shrink:before { content: "\e6fd"; }
|
|
13434
|
+
.@{icon-prefix-cls}-shutdown:before { content: "\e686"; }
|
|
13435
|
+
.@{icon-prefix-cls}-sigma:before { content: "\e71b"; }
|
|
13436
|
+
.@{icon-prefix-cls}-spin:before { content: "\e6f7"; }
|
|
13437
|
+
.@{icon-prefix-cls}-split:before { content: "\e6c3"; }
|
|
13438
|
+
.@{icon-prefix-cls}-star:before { content: "\e653"; }
|
|
13439
|
+
.@{icon-prefix-cls}-stop:before { content: "\e691"; }
|
|
13440
|
+
.@{icon-prefix-cls}-strike-solid:before { content: "\e664"; }
|
|
13441
|
+
.@{icon-prefix-cls}-sun-solid:before { content: "\e670"; }
|
|
13442
|
+
.@{icon-prefix-cls}-switch-down:before { content: "\e698"; }
|
|
13443
|
+
.@{icon-prefix-cls}-switch-up:before { content: "\e680"; }
|
|
13444
|
+
.@{icon-prefix-cls}-switch:before { content: "\e6e7"; }
|
|
13445
|
+
.@{icon-prefix-cls}-table-setting:before { content: "\e6c6"; }
|
|
13446
|
+
.@{icon-prefix-cls}-task-process:before { content: "\e6ea"; }
|
|
13447
|
+
.@{icon-prefix-cls}-timezone-solid:before { content: "\e662"; }
|
|
13448
|
+
.@{icon-prefix-cls}-tips-solid:before { content: "\e66c"; }
|
|
13449
|
+
.@{icon-prefix-cls}-tips:before { content: "\e650"; }
|
|
13450
|
+
.@{icon-prefix-cls}-title-solid:before { content: "\e65c"; }
|
|
13451
|
+
.@{icon-prefix-cls}-top-border:before { content: "\e6ef"; }
|
|
13452
|
+
.@{icon-prefix-cls}-two-window:before { content: "\e6f6"; }
|
|
13453
|
+
.@{icon-prefix-cls}-underline-solid:before { content: "\e671"; }
|
|
13454
|
+
.@{icon-prefix-cls}-unfold-all:before { content: "\e6ad"; }
|
|
13455
|
+
.@{icon-prefix-cls}-unfold:before { content: "\e71e"; }
|
|
13456
|
+
.@{icon-prefix-cls}-unfoldmenu:before { content: "\e70d"; }
|
|
13457
|
+
.@{icon-prefix-cls}-unlock-solid:before { content: "\e666"; }
|
|
13458
|
+
.@{icon-prefix-cls}-unlock:before { content: "\e69e"; }
|
|
13459
|
+
.@{icon-prefix-cls}-upload-cloud:before { content: "\e632"; }
|
|
13460
|
+
.@{icon-prefix-cls}-upload:before { content: "\e70b"; }
|
|
13461
|
+
.@{icon-prefix-cls}-user-info:before { content: "\e682"; }
|
|
13462
|
+
.@{icon-prefix-cls}-vertical-center:before { content: "\e6f5"; }
|
|
13463
|
+
.@{icon-prefix-cls}-voice:before { content: "\e6d9"; }
|
|
13464
|
+
.@{icon-prefix-cls}-waiting:before { content: "\e64b"; }
|
|
13465
|
+
.@{icon-prefix-cls}-warning-solid:before { content: "\e64c"; }
|
|
13466
|
+
.@{icon-prefix-cls}-warning:before { content: "\e64d"; }
|
|
13467
|
+
.@{icon-prefix-cls}-workbench:before { content: "\e64f"; }
|
|
13468
|
+
.@{icon-prefix-cls}-wrap:before { content: "\e6b0"; }
|
|
13469
|
+
.@{icon-prefix-cls}-yunzhijia:before { content: "\e706"; }
|
|
13470
|
+
.@{icon-prefix-cls}-zoom:before { content: "\e70c"; }
|
|
13471
|
+
|
|
13228
13472
|
|
|
13229
13473
|
|
|
13230
13474
|
|
|
@@ -14200,6 +14444,7 @@ template {
|
|
|
14200
14444
|
|
|
14201
14445
|
|
|
14202
14446
|
@switch-prefix-cls: ~'@{kd-prefix}-switch';
|
|
14447
|
+
@icon-prefix-cls: ~'@{kd-prefix}icon';
|
|
14203
14448
|
|
|
14204
14449
|
|
|
14205
14450
|
.@{switch-prefix-cls} {
|
|
@@ -14220,7 +14465,7 @@ template {
|
|
|
14220
14465
|
transform: translateY(-50%);
|
|
14221
14466
|
z-index: 10;
|
|
14222
14467
|
|
|
14223
|
-
|
|
14468
|
+
.@{icon-prefix-cls}-loadding-circle {
|
|
14224
14469
|
animation: loadingcircle 1s infinite;
|
|
14225
14470
|
animation-timing-function: cubic-bezier(0.42, 0.00, 0.58, 1.00);
|
|
14226
14471
|
font-size: @switch-small-font-size;
|