@kdcloudjs/kdesign 1.7.68-stable.8 → 1.7.68-stable.9
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/CHANGELOG.md +33 -0
- package/dist/kdesign-complete.less +110 -0
- package/dist/kdesign.css +365 -1
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +3876 -167
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +3 -3
- package/dist/kdesign.min.js +12 -12
- package/dist/kdesign.min.js.map +1 -1
- package/es/_utils/useId.d.ts +2 -0
- package/es/_utils/useId.js +30 -0
- package/es/city-picker/city-picker.js +16 -28
- package/es/city-picker/option.js +1 -5
- package/es/city-picker/style/index.css +8 -0
- package/es/city-picker/style/index.less +10 -0
- package/es/config-provider/compDefaultProps.d.ts +0 -1
- package/es/config-provider/compDefaultProps.js +0 -1
- package/es/locale/locale.d.ts +1 -0
- package/es/locale/zh-CN.d.ts +1 -0
- package/es/locale/zh-CN.js +1 -0
- package/es/popper/index.d.ts +61 -0
- package/es/popper/index.js +550 -0
- package/es/popper/style/css.js +2 -0
- package/es/popper/style/index.css +355 -0
- package/es/popper/style/index.d.ts +2 -0
- package/es/popper/style/index.js +2 -0
- package/es/popper/style/index.less +99 -0
- package/lib/_utils/useId.d.ts +2 -0
- package/lib/_utils/useId.js +43 -0
- package/lib/city-picker/city-picker.js +16 -28
- package/lib/city-picker/option.js +1 -5
- package/lib/city-picker/style/index.css +8 -0
- package/lib/city-picker/style/index.less +10 -0
- package/lib/config-provider/compDefaultProps.d.ts +0 -1
- package/lib/config-provider/compDefaultProps.js +0 -1
- package/lib/locale/locale.d.ts +1 -0
- package/lib/locale/zh-CN.d.ts +1 -0
- package/lib/locale/zh-CN.js +1 -0
- package/lib/popper/index.d.ts +61 -0
- package/lib/popper/index.js +567 -0
- package/lib/popper/style/css.js +4 -0
- package/lib/popper/style/index.css +355 -0
- package/lib/popper/style/index.d.ts +2 -0
- package/lib/popper/style/index.js +4 -0
- package/lib/popper/style/index.less +99 -0
- package/lib/style/components.less +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,36 @@
|
|
|
1
|
+
## [1.8.21](https://github.com/kingdee/kdesign/compare/v1.8.20...v1.8.21) (2024-11-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* [cli] 更新总览页面分割线缩略图 fix [#979](https://github.com/kingdee/kdesign/issues/979) ([818ad8d](https://github.com/kingdee/kdesign/commit/818ad8d7ef60683f7713422d23637a9bd400f61b))
|
|
7
|
+
* [color-picker] 将rotate样式属性改为兼容性更高的transform:rotate()方法 fix [#967](https://github.com/kingdee/kdesign/issues/967) ([a4ffc49](https://github.com/kingdee/kdesign/commit/a4ffc49a559339f995c9dc6f41fa8a0f350d7c5a))
|
|
8
|
+
* [date-picker]更新en-us添加monthBeforeYear ([96eb4c3](https://github.com/kingdee/kdesign/commit/96eb4c34329ca0fea27aef1daf17dfbc3c90c058))
|
|
9
|
+
* [select] 修复onDeselect回调事件触发时机错误问题 fix [#949](https://github.com/kingdee/kdesign/issues/949) ([8fb3049](https://github.com/kingdee/kdesign/commit/8fb30490e53c6d930fbcf1763e14b66e224293c4))
|
|
10
|
+
* [tree] 修复设置树节点样式与类名不生效问题 fix [#930](https://github.com/kingdee/kdesign/issues/930) ([68b732e](https://github.com/kingdee/kdesign/commit/68b732ed2855592c959089d49e398d076b26051e))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* [color-picker] 新增 popperClassName api,同时将原有的className和style属性放至input外层容器中 fix [#942](https://github.com/kingdee/kdesign/issues/942) fix [#968](https://github.com/kingdee/kdesign/issues/968) ([7535fa1](https://github.com/kingdee/kdesign/commit/7535fa186ed6df9c982db580d1855b5568b7b6d8))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
## [1.8.20](https://github.com/kingdee/kdesign/compare/v1.8.19...v1.8.20) (2024-11-22)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* [cli] 修复安装依赖后yarn test报错问题 [#935](https://github.com/kingdee/kdesign/issues/935) ([0ebd81d](https://github.com/kingdee/kdesign/commit/0ebd81d849da9efe4732354b441585438e1f3a90))
|
|
25
|
+
* [popper]修复onVisibleChange问题 fix [#937](https://github.com/kingdee/kdesign/issues/937) ([f9194f1](https://github.com/kingdee/kdesign/commit/f9194f16e0bd507fbe1ebc187e6af63d0996536e))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* [date-picker]更新年月快捷选择交互 fix [#931](https://github.com/kingdee/kdesign/issues/931) ([28a094c](https://github.com/kingdee/kdesign/commit/28a094ca1d6dcedcbcb0b9b12f7150418611b6e4))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
1
34
|
## [1.8.19](https://github.com/kingdee/kdesign/compare/v1.8.18...v1.8.19) (2024-11-07)
|
|
2
35
|
|
|
3
36
|
|
|
@@ -2612,6 +2612,7 @@
|
|
|
2612
2612
|
|
|
2613
2613
|
@city-picker-prefix-cls: ~'@{kd-prefix}-city-picker';
|
|
2614
2614
|
@tabs-prefix-cls: ~'@{kd-prefix}-tabs';
|
|
2615
|
+
@popper-prefix-cls: ~'@{kd-prefix}-popper';
|
|
2615
2616
|
|
|
2616
2617
|
.@{city-picker-prefix-cls} {
|
|
2617
2618
|
position: relative;
|
|
@@ -2764,6 +2765,15 @@
|
|
|
2764
2765
|
outline: none;
|
|
2765
2766
|
box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
|
|
2766
2767
|
|
|
2768
|
+
&.@{popper-prefix-cls}-bottom-start {
|
|
2769
|
+
&-in {
|
|
2770
|
+
animation-name: kdSlideUpIn;
|
|
2771
|
+
}
|
|
2772
|
+
|
|
2773
|
+
&-out {
|
|
2774
|
+
animation-name: kdSlideUpOut;
|
|
2775
|
+
}
|
|
2776
|
+
}
|
|
2767
2777
|
// 调整tabs样式
|
|
2768
2778
|
.@{tabs-prefix-cls}-tab-list {
|
|
2769
2779
|
width: 100%;
|
|
@@ -8851,6 +8861,106 @@ textarea {
|
|
|
8851
8861
|
@popconfirm-border-radius: var(~'@{popconfirm-custom-prefix}-radius-border', @radius-border);
|
|
8852
8862
|
|
|
8853
8863
|
|
|
8864
|
+
|
|
8865
|
+
@popper-prefix-cls: ~'@{kd-prefix}-popper';
|
|
8866
|
+
|
|
8867
|
+
.@{popper-prefix-cls} {
|
|
8868
|
+
opacity: 1;
|
|
8869
|
+
z-index: @z-index-popper;
|
|
8870
|
+
visibility: visible;
|
|
8871
|
+
|
|
8872
|
+
&.hidden {
|
|
8873
|
+
opacity: 0;
|
|
8874
|
+
visibility: hidden;
|
|
8875
|
+
pointer-events: none;
|
|
8876
|
+
}
|
|
8877
|
+
|
|
8878
|
+
.arrow {
|
|
8879
|
+
visibility: hidden;
|
|
8880
|
+
|
|
8881
|
+
&::before {
|
|
8882
|
+
visibility: visible;
|
|
8883
|
+
position: absolute;
|
|
8884
|
+
border-style: solid;
|
|
8885
|
+
border-color: transparent;
|
|
8886
|
+
border-width: var(--arrowSize);
|
|
8887
|
+
content: '';
|
|
8888
|
+
transform: rotate(45deg);
|
|
8889
|
+
}
|
|
8890
|
+
}
|
|
8891
|
+
|
|
8892
|
+
&[data-popper-placement^='top'] .arrow {
|
|
8893
|
+
bottom: calc(1.05 * var(--arrowSize));
|
|
8894
|
+
|
|
8895
|
+
&::before {
|
|
8896
|
+
left: calc(-1 * var(--arrowSize));
|
|
8897
|
+
border-top-color: transparent;
|
|
8898
|
+
border-left-color: transparent;
|
|
8899
|
+
}
|
|
8900
|
+
}
|
|
8901
|
+
|
|
8902
|
+
&[data-popper-placement^='bottom'] .arrow {
|
|
8903
|
+
top: calc(-0.85 * var(--arrowSize));
|
|
8904
|
+
|
|
8905
|
+
&::before {
|
|
8906
|
+
left: calc(-1 * var(--arrowSize));
|
|
8907
|
+
border-bottom-color: transparent;
|
|
8908
|
+
border-right-color: transparent;
|
|
8909
|
+
}
|
|
8910
|
+
}
|
|
8911
|
+
|
|
8912
|
+
&[data-popper-placement^='left'] .arrow {
|
|
8913
|
+
right: calc(1.05 * var(--arrowSize));
|
|
8914
|
+
|
|
8915
|
+
&::before {
|
|
8916
|
+
top: calc(-1 * var(--arrowSize));
|
|
8917
|
+
border-left-color: transparent;
|
|
8918
|
+
border-bottom-color: transparent;
|
|
8919
|
+
}
|
|
8920
|
+
}
|
|
8921
|
+
|
|
8922
|
+
&[data-popper-placement^='right'] .arrow {
|
|
8923
|
+
left: calc(-0.85 * var(--arrowSize));
|
|
8924
|
+
|
|
8925
|
+
&::before {
|
|
8926
|
+
top: calc(-1 * var(--arrowSize));
|
|
8927
|
+
border-top-color: transparent;
|
|
8928
|
+
border-right-color: transparent;
|
|
8929
|
+
}
|
|
8930
|
+
}
|
|
8931
|
+
}
|
|
8932
|
+
|
|
8933
|
+
.popper-motion(@className, @keyframeName, @duration: calc(@transition-duration - 0.1s)) {
|
|
8934
|
+
.@{className} {
|
|
8935
|
+
animation-duration: @duration;
|
|
8936
|
+
|
|
8937
|
+
&-in {
|
|
8938
|
+
animation-name: ~'@{keyframeName}In';
|
|
8939
|
+
animation-timing-function: @ease-out;
|
|
8940
|
+
}
|
|
8941
|
+
|
|
8942
|
+
&-out {
|
|
8943
|
+
animation-name: ~'@{keyframeName}Out';
|
|
8944
|
+
animation-timing-function: @ease-in;
|
|
8945
|
+
}
|
|
8946
|
+
}
|
|
8947
|
+
}
|
|
8948
|
+
|
|
8949
|
+
.popper-motion(~'@{popper-prefix-cls}-top', kdZoomBottom);
|
|
8950
|
+
.popper-motion(~'@{popper-prefix-cls}-left', kdZoomRight);
|
|
8951
|
+
.popper-motion(~'@{popper-prefix-cls}-right', kdZoomLeft);
|
|
8952
|
+
.popper-motion(~'@{popper-prefix-cls}-bottom', kdZoomTop);
|
|
8953
|
+
.popper-motion(~'@{popper-prefix-cls}-top-start', kdZoomLeftBottom);
|
|
8954
|
+
.popper-motion(~'@{popper-prefix-cls}-right-end', kdZoomLeftBottom);
|
|
8955
|
+
.popper-motion(~'@{popper-prefix-cls}-top-end', kdZoomRightBottom);
|
|
8956
|
+
.popper-motion(~'@{popper-prefix-cls}-left-end', kdZoomRightBottom);
|
|
8957
|
+
.popper-motion(~'@{popper-prefix-cls}-left-start', kdZoomTopRight);
|
|
8958
|
+
.popper-motion(~'@{popper-prefix-cls}-bottom-end', kdZoomTopRight);
|
|
8959
|
+
.popper-motion(~'@{popper-prefix-cls}-right-start', kdZoomTopLeft);
|
|
8960
|
+
.popper-motion(~'@{popper-prefix-cls}-bottom-start', kdZoomTopLeft);
|
|
8961
|
+
|
|
8962
|
+
|
|
8963
|
+
|
|
8854
8964
|
@progress-prefix-cls: ~'@{kd-prefix}-progress';
|
|
8855
8965
|
|
|
8856
8966
|
.@{progress-prefix-cls} {
|
package/dist/kdesign.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/kdesign v1.7.68-stable.
|
|
3
|
+
* @kdcloudjs/kdesign v1.7.68-stable.9
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -5725,6 +5725,14 @@ template {
|
|
|
5725
5725
|
-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
|
|
5726
5726
|
box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
|
|
5727
5727
|
}
|
|
5728
|
+
.kd-city-picker-dropdown.kd-popper-bottom-start-in {
|
|
5729
|
+
-webkit-animation-name: kdSlideUpIn;
|
|
5730
|
+
animation-name: kdSlideUpIn;
|
|
5731
|
+
}
|
|
5732
|
+
.kd-city-picker-dropdown.kd-popper-bottom-start-out {
|
|
5733
|
+
-webkit-animation-name: kdSlideUpOut;
|
|
5734
|
+
animation-name: kdSlideUpOut;
|
|
5735
|
+
}
|
|
5728
5736
|
.kd-city-picker-dropdown .kd-tabs-tab-list {
|
|
5729
5737
|
width: 100%;
|
|
5730
5738
|
}
|
|
@@ -13974,6 +13982,362 @@ textarea {
|
|
|
13974
13982
|
普通组件内部自身层级应设置在0-100间
|
|
13975
13983
|
*/
|
|
13976
13984
|
/* ----------- zIndex ——————---- end */
|
|
13985
|
+
/* 多行显示省略号 */
|
|
13986
|
+
/* 单行显示省略号 */
|
|
13987
|
+
/** 浮层箭头样式 **/
|
|
13988
|
+
.kd-popper {
|
|
13989
|
+
opacity: 1;
|
|
13990
|
+
z-index: var(--kd-g-z-index-popper, 1050);
|
|
13991
|
+
visibility: visible;
|
|
13992
|
+
}
|
|
13993
|
+
.kd-popper.hidden {
|
|
13994
|
+
opacity: 0;
|
|
13995
|
+
visibility: hidden;
|
|
13996
|
+
pointer-events: none;
|
|
13997
|
+
}
|
|
13998
|
+
.kd-popper .arrow {
|
|
13999
|
+
visibility: hidden;
|
|
14000
|
+
}
|
|
14001
|
+
.kd-popper .arrow::before {
|
|
14002
|
+
visibility: visible;
|
|
14003
|
+
position: absolute;
|
|
14004
|
+
border-style: solid;
|
|
14005
|
+
border-color: transparent;
|
|
14006
|
+
border-width: var(--arrowSize);
|
|
14007
|
+
content: '';
|
|
14008
|
+
-webkit-transform: rotate(45deg);
|
|
14009
|
+
transform: rotate(45deg);
|
|
14010
|
+
}
|
|
14011
|
+
.kd-popper[data-popper-placement^='top'] .arrow {
|
|
14012
|
+
bottom: calc(1.05 * var(--arrowSize));
|
|
14013
|
+
}
|
|
14014
|
+
.kd-popper[data-popper-placement^='top'] .arrow::before {
|
|
14015
|
+
left: calc(-1 * var(--arrowSize));
|
|
14016
|
+
border-top-color: transparent;
|
|
14017
|
+
border-left-color: transparent;
|
|
14018
|
+
}
|
|
14019
|
+
.kd-popper[data-popper-placement^='bottom'] .arrow {
|
|
14020
|
+
top: calc(-0.85 * var(--arrowSize));
|
|
14021
|
+
}
|
|
14022
|
+
.kd-popper[data-popper-placement^='bottom'] .arrow::before {
|
|
14023
|
+
left: calc(-1 * var(--arrowSize));
|
|
14024
|
+
border-bottom-color: transparent;
|
|
14025
|
+
border-right-color: transparent;
|
|
14026
|
+
}
|
|
14027
|
+
.kd-popper[data-popper-placement^='left'] .arrow {
|
|
14028
|
+
right: calc(1.05 * var(--arrowSize));
|
|
14029
|
+
}
|
|
14030
|
+
.kd-popper[data-popper-placement^='left'] .arrow::before {
|
|
14031
|
+
top: calc(-1 * var(--arrowSize));
|
|
14032
|
+
border-left-color: transparent;
|
|
14033
|
+
border-bottom-color: transparent;
|
|
14034
|
+
}
|
|
14035
|
+
.kd-popper[data-popper-placement^='right'] .arrow {
|
|
14036
|
+
left: calc(-0.85 * var(--arrowSize));
|
|
14037
|
+
}
|
|
14038
|
+
.kd-popper[data-popper-placement^='right'] .arrow::before {
|
|
14039
|
+
top: calc(-1 * var(--arrowSize));
|
|
14040
|
+
border-top-color: transparent;
|
|
14041
|
+
border-right-color: transparent;
|
|
14042
|
+
}
|
|
14043
|
+
.kd-popper-top {
|
|
14044
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14045
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14046
|
+
}
|
|
14047
|
+
.kd-popper-top-in {
|
|
14048
|
+
-webkit-animation-name: kdZoomBottomIn;
|
|
14049
|
+
animation-name: kdZoomBottomIn;
|
|
14050
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14051
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14052
|
+
}
|
|
14053
|
+
.kd-popper-top-out {
|
|
14054
|
+
-webkit-animation-name: kdZoomBottomOut;
|
|
14055
|
+
animation-name: kdZoomBottomOut;
|
|
14056
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14057
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14058
|
+
}
|
|
14059
|
+
.kd-popper-left {
|
|
14060
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14061
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14062
|
+
}
|
|
14063
|
+
.kd-popper-left-in {
|
|
14064
|
+
-webkit-animation-name: kdZoomRightIn;
|
|
14065
|
+
animation-name: kdZoomRightIn;
|
|
14066
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14067
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14068
|
+
}
|
|
14069
|
+
.kd-popper-left-out {
|
|
14070
|
+
-webkit-animation-name: kdZoomRightOut;
|
|
14071
|
+
animation-name: kdZoomRightOut;
|
|
14072
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14073
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14074
|
+
}
|
|
14075
|
+
.kd-popper-right {
|
|
14076
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14077
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14078
|
+
}
|
|
14079
|
+
.kd-popper-right-in {
|
|
14080
|
+
-webkit-animation-name: kdZoomLeftIn;
|
|
14081
|
+
animation-name: kdZoomLeftIn;
|
|
14082
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14083
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14084
|
+
}
|
|
14085
|
+
.kd-popper-right-out {
|
|
14086
|
+
-webkit-animation-name: kdZoomLeftOut;
|
|
14087
|
+
animation-name: kdZoomLeftOut;
|
|
14088
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14089
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14090
|
+
}
|
|
14091
|
+
.kd-popper-bottom {
|
|
14092
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14093
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14094
|
+
}
|
|
14095
|
+
.kd-popper-bottom-in {
|
|
14096
|
+
-webkit-animation-name: kdZoomTopIn;
|
|
14097
|
+
animation-name: kdZoomTopIn;
|
|
14098
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14099
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14100
|
+
}
|
|
14101
|
+
.kd-popper-bottom-out {
|
|
14102
|
+
-webkit-animation-name: kdZoomTopOut;
|
|
14103
|
+
animation-name: kdZoomTopOut;
|
|
14104
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14105
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14106
|
+
}
|
|
14107
|
+
.kd-popper-top-start {
|
|
14108
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14109
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14110
|
+
}
|
|
14111
|
+
.kd-popper-top-start-in {
|
|
14112
|
+
-webkit-animation-name: kdZoomLeftBottomIn;
|
|
14113
|
+
animation-name: kdZoomLeftBottomIn;
|
|
14114
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14115
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14116
|
+
}
|
|
14117
|
+
.kd-popper-top-start-out {
|
|
14118
|
+
-webkit-animation-name: kdZoomLeftBottomOut;
|
|
14119
|
+
animation-name: kdZoomLeftBottomOut;
|
|
14120
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14121
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14122
|
+
}
|
|
14123
|
+
.kd-popper-right-end {
|
|
14124
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14125
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14126
|
+
}
|
|
14127
|
+
.kd-popper-right-end-in {
|
|
14128
|
+
-webkit-animation-name: kdZoomLeftBottomIn;
|
|
14129
|
+
animation-name: kdZoomLeftBottomIn;
|
|
14130
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14131
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14132
|
+
}
|
|
14133
|
+
.kd-popper-right-end-out {
|
|
14134
|
+
-webkit-animation-name: kdZoomLeftBottomOut;
|
|
14135
|
+
animation-name: kdZoomLeftBottomOut;
|
|
14136
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14137
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14138
|
+
}
|
|
14139
|
+
.kd-popper-top-end {
|
|
14140
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14141
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14142
|
+
}
|
|
14143
|
+
.kd-popper-top-end-in {
|
|
14144
|
+
-webkit-animation-name: kdZoomRightBottomIn;
|
|
14145
|
+
animation-name: kdZoomRightBottomIn;
|
|
14146
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14147
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14148
|
+
}
|
|
14149
|
+
.kd-popper-top-end-out {
|
|
14150
|
+
-webkit-animation-name: kdZoomRightBottomOut;
|
|
14151
|
+
animation-name: kdZoomRightBottomOut;
|
|
14152
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14153
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14154
|
+
}
|
|
14155
|
+
.kd-popper-left-end {
|
|
14156
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14157
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14158
|
+
}
|
|
14159
|
+
.kd-popper-left-end-in {
|
|
14160
|
+
-webkit-animation-name: kdZoomRightBottomIn;
|
|
14161
|
+
animation-name: kdZoomRightBottomIn;
|
|
14162
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14163
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14164
|
+
}
|
|
14165
|
+
.kd-popper-left-end-out {
|
|
14166
|
+
-webkit-animation-name: kdZoomRightBottomOut;
|
|
14167
|
+
animation-name: kdZoomRightBottomOut;
|
|
14168
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14169
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14170
|
+
}
|
|
14171
|
+
.kd-popper-left-start {
|
|
14172
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14173
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14174
|
+
}
|
|
14175
|
+
.kd-popper-left-start-in {
|
|
14176
|
+
-webkit-animation-name: kdZoomTopRightIn;
|
|
14177
|
+
animation-name: kdZoomTopRightIn;
|
|
14178
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14179
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14180
|
+
}
|
|
14181
|
+
.kd-popper-left-start-out {
|
|
14182
|
+
-webkit-animation-name: kdZoomTopRightOut;
|
|
14183
|
+
animation-name: kdZoomTopRightOut;
|
|
14184
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14185
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14186
|
+
}
|
|
14187
|
+
.kd-popper-bottom-end {
|
|
14188
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14189
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14190
|
+
}
|
|
14191
|
+
.kd-popper-bottom-end-in {
|
|
14192
|
+
-webkit-animation-name: kdZoomTopRightIn;
|
|
14193
|
+
animation-name: kdZoomTopRightIn;
|
|
14194
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14195
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14196
|
+
}
|
|
14197
|
+
.kd-popper-bottom-end-out {
|
|
14198
|
+
-webkit-animation-name: kdZoomTopRightOut;
|
|
14199
|
+
animation-name: kdZoomTopRightOut;
|
|
14200
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14201
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14202
|
+
}
|
|
14203
|
+
.kd-popper-right-start {
|
|
14204
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14205
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14206
|
+
}
|
|
14207
|
+
.kd-popper-right-start-in {
|
|
14208
|
+
-webkit-animation-name: kdZoomTopLeftIn;
|
|
14209
|
+
animation-name: kdZoomTopLeftIn;
|
|
14210
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14211
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14212
|
+
}
|
|
14213
|
+
.kd-popper-right-start-out {
|
|
14214
|
+
-webkit-animation-name: kdZoomTopLeftOut;
|
|
14215
|
+
animation-name: kdZoomTopLeftOut;
|
|
14216
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14217
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14218
|
+
}
|
|
14219
|
+
.kd-popper-bottom-start {
|
|
14220
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14221
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14222
|
+
}
|
|
14223
|
+
.kd-popper-bottom-start-in {
|
|
14224
|
+
-webkit-animation-name: kdZoomTopLeftIn;
|
|
14225
|
+
animation-name: kdZoomTopLeftIn;
|
|
14226
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14227
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14228
|
+
}
|
|
14229
|
+
.kd-popper-bottom-start-out {
|
|
14230
|
+
-webkit-animation-name: kdZoomTopLeftOut;
|
|
14231
|
+
animation-name: kdZoomTopLeftOut;
|
|
14232
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14233
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14234
|
+
}
|
|
14235
|
+
|
|
14236
|
+
/* ----------- color ——————---- start */
|
|
14237
|
+
/* ----------- color ——————---- end */
|
|
14238
|
+
/* ----------- motion ——————---- start */
|
|
14239
|
+
/* ----------- motion ——————---- end */
|
|
14240
|
+
/* ----------- transition ——————---- start */
|
|
14241
|
+
/* ----------- transition ——————---- end */
|
|
14242
|
+
/* ----------- font ——————---- start */
|
|
14243
|
+
/* ----------- font ——————---- end */
|
|
14244
|
+
/* ----------- zIndex ——————---- start */
|
|
14245
|
+
/*
|
|
14246
|
+
普通组件内部自身层级应设置在0-100间
|
|
14247
|
+
*/
|
|
14248
|
+
/* ----------- zIndex ——————---- end */
|
|
14249
|
+
/* ----------- Button ——————---- start */
|
|
14250
|
+
/* ----------- Button ——————---- end */
|
|
14251
|
+
/* ----------- Collapse ——————---- start */
|
|
14252
|
+
/* ----------- Collapse ——————---- end */
|
|
14253
|
+
/* ----------- Card ——————---- start */
|
|
14254
|
+
/* ----------- Card ——————---- end */
|
|
14255
|
+
/* ----------- Carousel ——————---- start */
|
|
14256
|
+
/* ----------- Carousel ——————---- end */
|
|
14257
|
+
/* ----------- Cascader ——————---- start */
|
|
14258
|
+
/* ----------- Cascader ——————---- end */
|
|
14259
|
+
/* ----------- Switch ——————---- start */
|
|
14260
|
+
/* ----------- Switch ——————---- end */
|
|
14261
|
+
/* ----------- Input ——————---- start */
|
|
14262
|
+
/* ----------- Input ——————---- end */
|
|
14263
|
+
/* ----------- InputNumber ——————---- start */
|
|
14264
|
+
/* ----------- InputNumber ——————---- end */
|
|
14265
|
+
/* ----------- checkbox ——————---- start */
|
|
14266
|
+
/* ----------- checkbox ——————---- start */
|
|
14267
|
+
/* ----------- checkbox ——————---- end */
|
|
14268
|
+
/* ----------- Radio ——————---- start */
|
|
14269
|
+
/* ----------- Radio ——————---- end */
|
|
14270
|
+
/* ----------- icon ——————---- start */
|
|
14271
|
+
/* ----------- icon ——————---- end */
|
|
14272
|
+
/* ----------- Popconfirm ——————---- start */
|
|
14273
|
+
/* ----------- Popconfirm ——————---- end */
|
|
14274
|
+
/* ----------- Progress ——————---- start */
|
|
14275
|
+
/* ----------- Progress ——————---- end */
|
|
14276
|
+
/* ----------- Pagination ——————---- start */
|
|
14277
|
+
/* ----------- Pagination ——————---- end */
|
|
14278
|
+
/* ----------- Timeline ——————---- start */
|
|
14279
|
+
/* ----------- Timeline ——————---- end */
|
|
14280
|
+
/* ----------- Tabs ——————---- start */
|
|
14281
|
+
/* ----------- Tabs ——————---- end */
|
|
14282
|
+
/* ----------- Select ——————---- start */
|
|
14283
|
+
/* ----------- Select ——————---- end */
|
|
14284
|
+
/* ----------- Rate ——————---- start */
|
|
14285
|
+
/* ----------- Rate ——————---- end */
|
|
14286
|
+
/* ----------- Dropdown ——————---- start */
|
|
14287
|
+
/* ----------- Dropdown ——————---- end */
|
|
14288
|
+
/* ----------- Tooltip ——————---- start */
|
|
14289
|
+
/* ----------- Tooltip ——————---- end */
|
|
14290
|
+
/* ----------- Transfer ——————---- start */
|
|
14291
|
+
/* ----------- Transfer ——————---- end */
|
|
14292
|
+
/* ----------- DatePicker ——————---- start */
|
|
14293
|
+
/* ----------- DatePicker ——————---- end */
|
|
14294
|
+
/* ----------- ColorPicker ——————---- start */
|
|
14295
|
+
/* ----------- ColorPicker ——————---- end */
|
|
14296
|
+
/* ----------- Tree ——————---- start */
|
|
14297
|
+
/* ----------- Tree ——————---- end */
|
|
14298
|
+
/* ----------- Alert ——————---- start */
|
|
14299
|
+
/* ----------- Alert ——————---- end */
|
|
14300
|
+
/* ----------- Split-Panel ——————---- start */
|
|
14301
|
+
/* ----------- Split-Panel ——————---- end */
|
|
14302
|
+
/* ----------- Modal ——————---- start */
|
|
14303
|
+
/* ----------- Modal ——————---- end */
|
|
14304
|
+
/* ----------- Steps ——————---- start */
|
|
14305
|
+
/* ----------- Steps ——————---- end */
|
|
14306
|
+
/* ----------- Form ——————---- start */
|
|
14307
|
+
/* ----------- Form ——————---- end */
|
|
14308
|
+
/* ----------- Tag ——————---- start */
|
|
14309
|
+
/* ----------- Tag ——————---- end */
|
|
14310
|
+
/* ----------- Menu ——————---- start */
|
|
14311
|
+
/* ----------- Menu ——————---- end */
|
|
14312
|
+
/* ----------- notice ——————---- start */
|
|
14313
|
+
/* ----------- message ——————---- end */
|
|
14314
|
+
/* ----------- Spin ——————---- start */
|
|
14315
|
+
/* ----------- Spin ——————---- end */
|
|
14316
|
+
/* ----------- Spin ——————---- start */
|
|
14317
|
+
/* ----------- Spin ——————---- end */
|
|
14318
|
+
/* ----------- Layout ——————---- start */
|
|
14319
|
+
/* ----------- Layout ——————---- end */
|
|
14320
|
+
/* ----------- Typography ——————---- start */
|
|
14321
|
+
/* ----------- Typography ——————---- start */
|
|
14322
|
+
/* ----------- Search ——————---- start */
|
|
14323
|
+
/* ----------- Search ——————---- start */
|
|
14324
|
+
/* ----------- Badge ——————---- start */
|
|
14325
|
+
/* ----------- Badge ——————---- end */
|
|
14326
|
+
/* ----------- Anchor ——————---- start */
|
|
14327
|
+
/* ----------- Anchor ——————---- end */
|
|
14328
|
+
/* ----------- Avatar ——————---- start */
|
|
14329
|
+
/* ----------- Avatar ——————---- end */
|
|
14330
|
+
/* ----------- AdvancedSelector ——————---- start */
|
|
14331
|
+
/* ----------- AdvancedSelector ——————---- end */
|
|
14332
|
+
/* ----------- motion ——————---- start */
|
|
14333
|
+
/* ----------- motion ——————---- end */
|
|
14334
|
+
/* ----------- transition ——————---- start */
|
|
14335
|
+
/* ----------- transition ——————---- end */
|
|
14336
|
+
/* ----------- zIndex ——————---- start */
|
|
14337
|
+
/*
|
|
14338
|
+
普通组件内部自身层级应设置在0-100间
|
|
14339
|
+
*/
|
|
14340
|
+
/* ----------- zIndex ——————---- end */
|
|
13977
14341
|
.kd-progress {
|
|
13978
14342
|
display: inline-block;
|
|
13979
14343
|
font-variant: tabular-nums;
|