@kdcloudjs/kdesign 1.7.70 → 1.8.0
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 +105 -10
- package/dist/kdesign.css +361 -66
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +4202 -440
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +2 -2
- package/dist/kdesign.min.js +13 -13
- 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/date-picker/calendar.d.ts +3 -2
- package/es/date-picker/date-panel.d.ts +2 -1
- package/es/date-picker/date-picker.d.ts +4 -0
- package/es/date-picker/hooks/use-range-disabled.d.ts +3 -2
- package/es/date-picker/hooks/use-range-disabled.js +4 -2
- package/es/date-picker/interface.d.ts +2 -1
- package/es/date-picker/panel/month/month.d.ts +2 -2
- package/es/date-picker/panel/month/month.js +7 -3
- package/es/date-picker/panel/quarter/quarter.d.ts +2 -2
- package/es/date-picker/panel/quarter/quarter.js +7 -3
- package/es/date-picker/panel/week/week.d.ts +2 -1
- package/es/date-picker/panel/year/year.d.ts +2 -1
- package/es/date-picker/panel/year/year.js +7 -3
- package/es/date-picker/range-picker.js +3 -1
- package/es/date-picker/single/input-date.d.ts +2 -1
- package/es/popper/index.d.ts +54 -0
- package/es/popper/index.js +495 -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 +101 -0
- package/es/tooltip/style/index.css +4 -65
- package/es/tooltip/style/index.less +3 -10
- package/es/tooltip/tooltip.d.ts +3 -7
- package/es/tooltip/tooltip.js +10 -26
- package/lib/_utils/useId.d.ts +2 -0
- package/lib/_utils/useId.js +43 -0
- package/lib/date-picker/calendar.d.ts +3 -2
- package/lib/date-picker/date-panel.d.ts +2 -1
- package/lib/date-picker/date-picker.d.ts +4 -0
- package/lib/date-picker/hooks/use-range-disabled.d.ts +3 -2
- package/lib/date-picker/hooks/use-range-disabled.js +4 -2
- package/lib/date-picker/interface.d.ts +2 -1
- package/lib/date-picker/panel/month/month.d.ts +2 -2
- package/lib/date-picker/panel/month/month.js +7 -3
- package/lib/date-picker/panel/quarter/quarter.d.ts +2 -2
- package/lib/date-picker/panel/quarter/quarter.js +7 -3
- package/lib/date-picker/panel/week/week.d.ts +2 -1
- package/lib/date-picker/panel/year/year.d.ts +2 -1
- package/lib/date-picker/panel/year/year.js +7 -3
- package/lib/date-picker/range-picker.js +3 -1
- package/lib/date-picker/single/input-date.d.ts +2 -1
- package/lib/popper/index.d.ts +54 -0
- package/lib/popper/index.js +512 -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 +101 -0
- package/lib/style/components.less +1 -0
- package/lib/tooltip/style/index.css +4 -65
- package/lib/tooltip/style/index.less +3 -10
- package/lib/tooltip/tooltip.d.ts +3 -7
- package/lib/tooltip/tooltip.js +10 -31
- package/package.json +8 -3
|
@@ -8828,6 +8828,108 @@ textarea {
|
|
|
8828
8828
|
@popconfirm-border-radius: var(~'@{popconfirm-custom-prefix}-radius-border', @radius-border);
|
|
8829
8829
|
|
|
8830
8830
|
|
|
8831
|
+
|
|
8832
|
+
@popper-prefix-cls: ~'@{kd-prefix}-popper';
|
|
8833
|
+
|
|
8834
|
+
.@{popper-prefix-cls} {
|
|
8835
|
+
opacity: 1;
|
|
8836
|
+
z-index: @z-index-popper;
|
|
8837
|
+
visibility: visible;
|
|
8838
|
+
|
|
8839
|
+
&.hidden {
|
|
8840
|
+
opacity: 0;
|
|
8841
|
+
visibility: hidden;
|
|
8842
|
+
pointer-events: none;
|
|
8843
|
+
}
|
|
8844
|
+
|
|
8845
|
+
.arrow {
|
|
8846
|
+
visibility: hidden;
|
|
8847
|
+
|
|
8848
|
+
&::before {
|
|
8849
|
+
visibility: visible;
|
|
8850
|
+
position: absolute;
|
|
8851
|
+
border-style: solid;
|
|
8852
|
+
border-color: transparent;
|
|
8853
|
+
border-width: var(--arrowSize);
|
|
8854
|
+
content: '';
|
|
8855
|
+
transform: rotate(45deg);
|
|
8856
|
+
}
|
|
8857
|
+
}
|
|
8858
|
+
|
|
8859
|
+
&[data-popper-placement^='top'] .arrow {
|
|
8860
|
+
bottom: calc(0.9 * var(--arrowSize));
|
|
8861
|
+
|
|
8862
|
+
&::before {
|
|
8863
|
+
left: calc(-1 * var(--arrowSize));
|
|
8864
|
+
border-top-color: transparent;
|
|
8865
|
+
border-left-color: transparent;
|
|
8866
|
+
}
|
|
8867
|
+
}
|
|
8868
|
+
|
|
8869
|
+
&[data-popper-placement^='bottom'] .arrow {
|
|
8870
|
+
top: calc(-0.9 * var(--arrowSize));
|
|
8871
|
+
|
|
8872
|
+
&::before {
|
|
8873
|
+
left: calc(-1 * var(--arrowSize));
|
|
8874
|
+
border-bottom-color: transparent;
|
|
8875
|
+
border-right-color: transparent;
|
|
8876
|
+
}
|
|
8877
|
+
}
|
|
8878
|
+
|
|
8879
|
+
&[data-popper-placement^='left'] .arrow {
|
|
8880
|
+
right: calc(0.9 * var(--arrowSize));
|
|
8881
|
+
|
|
8882
|
+
&::before {
|
|
8883
|
+
top: calc(-1 * var(--arrowSize));
|
|
8884
|
+
border-left-color: transparent;
|
|
8885
|
+
border-bottom-color: transparent;
|
|
8886
|
+
}
|
|
8887
|
+
}
|
|
8888
|
+
|
|
8889
|
+
&[data-popper-placement^='right'] .arrow {
|
|
8890
|
+
left: calc(-0.9 * var(--arrowSize));
|
|
8891
|
+
|
|
8892
|
+
&::before {
|
|
8893
|
+
top: calc(-1 * var(--arrowSize));
|
|
8894
|
+
border-top-color: transparent;
|
|
8895
|
+
border-right-color: transparent;
|
|
8896
|
+
}
|
|
8897
|
+
}
|
|
8898
|
+
}
|
|
8899
|
+
|
|
8900
|
+
.popper-motion(@className, @keyframeName, @duration: calc(@transition-duration - 0.1s)) {
|
|
8901
|
+
.@{className} {
|
|
8902
|
+
animation-duration: @duration;
|
|
8903
|
+
|
|
8904
|
+
&-in {
|
|
8905
|
+
animation-name: ~'@{keyframeName}In';
|
|
8906
|
+
animation-timing-function: @ease-out;
|
|
8907
|
+
}
|
|
8908
|
+
|
|
8909
|
+
&-out {
|
|
8910
|
+
animation-name: ~'@{keyframeName}Out';
|
|
8911
|
+
animation-timing-function: @ease-in;
|
|
8912
|
+
}
|
|
8913
|
+
}
|
|
8914
|
+
}
|
|
8915
|
+
|
|
8916
|
+
.popper-motion(~'@{popper-prefix-cls}-top', kdZoomBottom);
|
|
8917
|
+
.popper-motion(~'@{popper-prefix-cls}-left', kdZoomRight);
|
|
8918
|
+
.popper-motion(~'@{popper-prefix-cls}-right', kdZoomLeft);
|
|
8919
|
+
.popper-motion(~'@{popper-prefix-cls}-bottom', kdZoomTop);
|
|
8920
|
+
.popper-motion(~'@{popper-prefix-cls}-top-start', kdZoomLeftBottom);
|
|
8921
|
+
.popper-motion(~'@{popper-prefix-cls}-right-end', kdZoomLeftBottom);
|
|
8922
|
+
.popper-motion(~'@{popper-prefix-cls}-top-end', kdZoomRightBottom);
|
|
8923
|
+
.popper-motion(~'@{popper-prefix-cls}-left-end', kdZoomRightBottom);
|
|
8924
|
+
.popper-motion(~'@{popper-prefix-cls}-left-start', kdZoomTopRight);
|
|
8925
|
+
.popper-motion(~'@{popper-prefix-cls}-bottom-end', kdZoomTopRight);
|
|
8926
|
+
.popper-motion(~'@{popper-prefix-cls}-right-start', kdZoomTopLeft);
|
|
8927
|
+
.popper-motion(~'@{popper-prefix-cls}-bottom-start', kdZoomTopLeft);
|
|
8928
|
+
|
|
8929
|
+
|
|
8930
|
+
|
|
8931
|
+
|
|
8932
|
+
|
|
8831
8933
|
@progress-prefix-cls: ~'@{kd-prefix}-progress';
|
|
8832
8934
|
|
|
8833
8935
|
.@{progress-prefix-cls} {
|
|
@@ -15022,18 +15124,11 @@ template {
|
|
|
15022
15124
|
font-size: @tooltip-font-size;
|
|
15023
15125
|
line-height: 1.5;
|
|
15024
15126
|
background-color: @tooltip-background-color;
|
|
15025
|
-
|
|
15026
|
-
opacity: 1;
|
|
15027
|
-
z-index: @z-index-popper;
|
|
15028
|
-
visibility: visible;
|
|
15127
|
+
filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
|
|
15029
15128
|
|
|
15030
|
-
|
|
15031
|
-
|
|
15032
|
-
visibility: hidden;
|
|
15129
|
+
.arrow::before {
|
|
15130
|
+
border-color: @tooltip-background-color;
|
|
15033
15131
|
}
|
|
15034
|
-
|
|
15035
|
-
// 箭头样式
|
|
15036
|
-
.popperArrow(@tooltip-background-color, @tooltip-horizontal-gap, @tooltip-box-shadow-blur);
|
|
15037
15132
|
}
|
|
15038
15133
|
|
|
15039
15134
|
|
package/dist/kdesign.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/kdesign v1.7.
|
|
3
|
+
* @kdcloudjs/kdesign v1.7.71
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -13954,6 +13954,362 @@ textarea {
|
|
|
13954
13954
|
普通组件内部自身层级应设置在0-100间
|
|
13955
13955
|
*/
|
|
13956
13956
|
/* ----------- zIndex ——————---- end */
|
|
13957
|
+
/* 多行显示省略号 */
|
|
13958
|
+
/* 单行显示省略号 */
|
|
13959
|
+
/** 浮层箭头样式 **/
|
|
13960
|
+
.kd-popper {
|
|
13961
|
+
opacity: 1;
|
|
13962
|
+
z-index: var(--kd-g-z-index-popper, 1050);
|
|
13963
|
+
visibility: visible;
|
|
13964
|
+
}
|
|
13965
|
+
.kd-popper.hidden {
|
|
13966
|
+
opacity: 0;
|
|
13967
|
+
visibility: hidden;
|
|
13968
|
+
pointer-events: none;
|
|
13969
|
+
}
|
|
13970
|
+
.kd-popper .arrow {
|
|
13971
|
+
visibility: hidden;
|
|
13972
|
+
}
|
|
13973
|
+
.kd-popper .arrow::before {
|
|
13974
|
+
visibility: visible;
|
|
13975
|
+
position: absolute;
|
|
13976
|
+
border-style: solid;
|
|
13977
|
+
border-color: transparent;
|
|
13978
|
+
border-width: var(--arrowSize);
|
|
13979
|
+
content: '';
|
|
13980
|
+
-webkit-transform: rotate(45deg);
|
|
13981
|
+
transform: rotate(45deg);
|
|
13982
|
+
}
|
|
13983
|
+
.kd-popper[data-popper-placement^='top'] .arrow {
|
|
13984
|
+
bottom: calc(0.9 * var(--arrowSize));
|
|
13985
|
+
}
|
|
13986
|
+
.kd-popper[data-popper-placement^='top'] .arrow::before {
|
|
13987
|
+
left: calc(-1 * var(--arrowSize));
|
|
13988
|
+
border-top-color: transparent;
|
|
13989
|
+
border-left-color: transparent;
|
|
13990
|
+
}
|
|
13991
|
+
.kd-popper[data-popper-placement^='bottom'] .arrow {
|
|
13992
|
+
top: calc(-0.9 * var(--arrowSize));
|
|
13993
|
+
}
|
|
13994
|
+
.kd-popper[data-popper-placement^='bottom'] .arrow::before {
|
|
13995
|
+
left: calc(-1 * var(--arrowSize));
|
|
13996
|
+
border-bottom-color: transparent;
|
|
13997
|
+
border-right-color: transparent;
|
|
13998
|
+
}
|
|
13999
|
+
.kd-popper[data-popper-placement^='left'] .arrow {
|
|
14000
|
+
right: calc(0.9 * var(--arrowSize));
|
|
14001
|
+
}
|
|
14002
|
+
.kd-popper[data-popper-placement^='left'] .arrow::before {
|
|
14003
|
+
top: calc(-1 * var(--arrowSize));
|
|
14004
|
+
border-left-color: transparent;
|
|
14005
|
+
border-bottom-color: transparent;
|
|
14006
|
+
}
|
|
14007
|
+
.kd-popper[data-popper-placement^='right'] .arrow {
|
|
14008
|
+
left: calc(-0.9 * var(--arrowSize));
|
|
14009
|
+
}
|
|
14010
|
+
.kd-popper[data-popper-placement^='right'] .arrow::before {
|
|
14011
|
+
top: calc(-1 * var(--arrowSize));
|
|
14012
|
+
border-top-color: transparent;
|
|
14013
|
+
border-right-color: transparent;
|
|
14014
|
+
}
|
|
14015
|
+
.kd-popper-top {
|
|
14016
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14017
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14018
|
+
}
|
|
14019
|
+
.kd-popper-top-in {
|
|
14020
|
+
-webkit-animation-name: kdZoomBottomIn;
|
|
14021
|
+
animation-name: kdZoomBottomIn;
|
|
14022
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14023
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14024
|
+
}
|
|
14025
|
+
.kd-popper-top-out {
|
|
14026
|
+
-webkit-animation-name: kdZoomBottomOut;
|
|
14027
|
+
animation-name: kdZoomBottomOut;
|
|
14028
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14029
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14030
|
+
}
|
|
14031
|
+
.kd-popper-left {
|
|
14032
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14033
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14034
|
+
}
|
|
14035
|
+
.kd-popper-left-in {
|
|
14036
|
+
-webkit-animation-name: kdZoomRightIn;
|
|
14037
|
+
animation-name: kdZoomRightIn;
|
|
14038
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14039
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14040
|
+
}
|
|
14041
|
+
.kd-popper-left-out {
|
|
14042
|
+
-webkit-animation-name: kdZoomRightOut;
|
|
14043
|
+
animation-name: kdZoomRightOut;
|
|
14044
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14045
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14046
|
+
}
|
|
14047
|
+
.kd-popper-right {
|
|
14048
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14049
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14050
|
+
}
|
|
14051
|
+
.kd-popper-right-in {
|
|
14052
|
+
-webkit-animation-name: kdZoomLeftIn;
|
|
14053
|
+
animation-name: kdZoomLeftIn;
|
|
14054
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14055
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14056
|
+
}
|
|
14057
|
+
.kd-popper-right-out {
|
|
14058
|
+
-webkit-animation-name: kdZoomLeftOut;
|
|
14059
|
+
animation-name: kdZoomLeftOut;
|
|
14060
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14061
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14062
|
+
}
|
|
14063
|
+
.kd-popper-bottom {
|
|
14064
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14065
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14066
|
+
}
|
|
14067
|
+
.kd-popper-bottom-in {
|
|
14068
|
+
-webkit-animation-name: kdZoomTopIn;
|
|
14069
|
+
animation-name: kdZoomTopIn;
|
|
14070
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14071
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14072
|
+
}
|
|
14073
|
+
.kd-popper-bottom-out {
|
|
14074
|
+
-webkit-animation-name: kdZoomTopOut;
|
|
14075
|
+
animation-name: kdZoomTopOut;
|
|
14076
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14077
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14078
|
+
}
|
|
14079
|
+
.kd-popper-top-start {
|
|
14080
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14081
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14082
|
+
}
|
|
14083
|
+
.kd-popper-top-start-in {
|
|
14084
|
+
-webkit-animation-name: kdZoomLeftBottomIn;
|
|
14085
|
+
animation-name: kdZoomLeftBottomIn;
|
|
14086
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14087
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14088
|
+
}
|
|
14089
|
+
.kd-popper-top-start-out {
|
|
14090
|
+
-webkit-animation-name: kdZoomLeftBottomOut;
|
|
14091
|
+
animation-name: kdZoomLeftBottomOut;
|
|
14092
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14093
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14094
|
+
}
|
|
14095
|
+
.kd-popper-right-end {
|
|
14096
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14097
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14098
|
+
}
|
|
14099
|
+
.kd-popper-right-end-in {
|
|
14100
|
+
-webkit-animation-name: kdZoomLeftBottomIn;
|
|
14101
|
+
animation-name: kdZoomLeftBottomIn;
|
|
14102
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14103
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14104
|
+
}
|
|
14105
|
+
.kd-popper-right-end-out {
|
|
14106
|
+
-webkit-animation-name: kdZoomLeftBottomOut;
|
|
14107
|
+
animation-name: kdZoomLeftBottomOut;
|
|
14108
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14109
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14110
|
+
}
|
|
14111
|
+
.kd-popper-top-end {
|
|
14112
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14113
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14114
|
+
}
|
|
14115
|
+
.kd-popper-top-end-in {
|
|
14116
|
+
-webkit-animation-name: kdZoomRightBottomIn;
|
|
14117
|
+
animation-name: kdZoomRightBottomIn;
|
|
14118
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14119
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14120
|
+
}
|
|
14121
|
+
.kd-popper-top-end-out {
|
|
14122
|
+
-webkit-animation-name: kdZoomRightBottomOut;
|
|
14123
|
+
animation-name: kdZoomRightBottomOut;
|
|
14124
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14125
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14126
|
+
}
|
|
14127
|
+
.kd-popper-left-end {
|
|
14128
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14129
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14130
|
+
}
|
|
14131
|
+
.kd-popper-left-end-in {
|
|
14132
|
+
-webkit-animation-name: kdZoomRightBottomIn;
|
|
14133
|
+
animation-name: kdZoomRightBottomIn;
|
|
14134
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14135
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14136
|
+
}
|
|
14137
|
+
.kd-popper-left-end-out {
|
|
14138
|
+
-webkit-animation-name: kdZoomRightBottomOut;
|
|
14139
|
+
animation-name: kdZoomRightBottomOut;
|
|
14140
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14141
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14142
|
+
}
|
|
14143
|
+
.kd-popper-left-start {
|
|
14144
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14145
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14146
|
+
}
|
|
14147
|
+
.kd-popper-left-start-in {
|
|
14148
|
+
-webkit-animation-name: kdZoomTopRightIn;
|
|
14149
|
+
animation-name: kdZoomTopRightIn;
|
|
14150
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14151
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14152
|
+
}
|
|
14153
|
+
.kd-popper-left-start-out {
|
|
14154
|
+
-webkit-animation-name: kdZoomTopRightOut;
|
|
14155
|
+
animation-name: kdZoomTopRightOut;
|
|
14156
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14157
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14158
|
+
}
|
|
14159
|
+
.kd-popper-bottom-end {
|
|
14160
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14161
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14162
|
+
}
|
|
14163
|
+
.kd-popper-bottom-end-in {
|
|
14164
|
+
-webkit-animation-name: kdZoomTopRightIn;
|
|
14165
|
+
animation-name: kdZoomTopRightIn;
|
|
14166
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14167
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14168
|
+
}
|
|
14169
|
+
.kd-popper-bottom-end-out {
|
|
14170
|
+
-webkit-animation-name: kdZoomTopRightOut;
|
|
14171
|
+
animation-name: kdZoomTopRightOut;
|
|
14172
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14173
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14174
|
+
}
|
|
14175
|
+
.kd-popper-right-start {
|
|
14176
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14177
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14178
|
+
}
|
|
14179
|
+
.kd-popper-right-start-in {
|
|
14180
|
+
-webkit-animation-name: kdZoomTopLeftIn;
|
|
14181
|
+
animation-name: kdZoomTopLeftIn;
|
|
14182
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14183
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14184
|
+
}
|
|
14185
|
+
.kd-popper-right-start-out {
|
|
14186
|
+
-webkit-animation-name: kdZoomTopLeftOut;
|
|
14187
|
+
animation-name: kdZoomTopLeftOut;
|
|
14188
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14189
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14190
|
+
}
|
|
14191
|
+
.kd-popper-bottom-start {
|
|
14192
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
14193
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
14194
|
+
}
|
|
14195
|
+
.kd-popper-bottom-start-in {
|
|
14196
|
+
-webkit-animation-name: kdZoomTopLeftIn;
|
|
14197
|
+
animation-name: kdZoomTopLeftIn;
|
|
14198
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14199
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
14200
|
+
}
|
|
14201
|
+
.kd-popper-bottom-start-out {
|
|
14202
|
+
-webkit-animation-name: kdZoomTopLeftOut;
|
|
14203
|
+
animation-name: kdZoomTopLeftOut;
|
|
14204
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14205
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
14206
|
+
}
|
|
14207
|
+
|
|
14208
|
+
/* ----------- color ——————---- start */
|
|
14209
|
+
/* ----------- color ——————---- end */
|
|
14210
|
+
/* ----------- motion ——————---- start */
|
|
14211
|
+
/* ----------- motion ——————---- end */
|
|
14212
|
+
/* ----------- transition ——————---- start */
|
|
14213
|
+
/* ----------- transition ——————---- end */
|
|
14214
|
+
/* ----------- font ——————---- start */
|
|
14215
|
+
/* ----------- font ——————---- end */
|
|
14216
|
+
/* ----------- zIndex ——————---- start */
|
|
14217
|
+
/*
|
|
14218
|
+
普通组件内部自身层级应设置在0-100间
|
|
14219
|
+
*/
|
|
14220
|
+
/* ----------- zIndex ——————---- end */
|
|
14221
|
+
/* ----------- Button ——————---- start */
|
|
14222
|
+
/* ----------- Button ——————---- end */
|
|
14223
|
+
/* ----------- Collapse ——————---- start */
|
|
14224
|
+
/* ----------- Collapse ——————---- end */
|
|
14225
|
+
/* ----------- Card ——————---- start */
|
|
14226
|
+
/* ----------- Card ——————---- end */
|
|
14227
|
+
/* ----------- Carousel ——————---- start */
|
|
14228
|
+
/* ----------- Carousel ——————---- end */
|
|
14229
|
+
/* ----------- Cascader ——————---- start */
|
|
14230
|
+
/* ----------- Cascader ——————---- end */
|
|
14231
|
+
/* ----------- Switch ——————---- start */
|
|
14232
|
+
/* ----------- Switch ——————---- end */
|
|
14233
|
+
/* ----------- Input ——————---- start */
|
|
14234
|
+
/* ----------- Input ——————---- end */
|
|
14235
|
+
/* ----------- InputNumber ——————---- start */
|
|
14236
|
+
/* ----------- InputNumber ——————---- end */
|
|
14237
|
+
/* ----------- checkbox ——————---- start */
|
|
14238
|
+
/* ----------- checkbox ——————---- start */
|
|
14239
|
+
/* ----------- checkbox ——————---- end */
|
|
14240
|
+
/* ----------- Radio ——————---- start */
|
|
14241
|
+
/* ----------- Radio ——————---- end */
|
|
14242
|
+
/* ----------- icon ——————---- start */
|
|
14243
|
+
/* ----------- icon ——————---- end */
|
|
14244
|
+
/* ----------- Popconfirm ——————---- start */
|
|
14245
|
+
/* ----------- Popconfirm ——————---- end */
|
|
14246
|
+
/* ----------- Progress ——————---- start */
|
|
14247
|
+
/* ----------- Progress ——————---- end */
|
|
14248
|
+
/* ----------- Pagination ——————---- start */
|
|
14249
|
+
/* ----------- Pagination ——————---- end */
|
|
14250
|
+
/* ----------- Timeline ——————---- start */
|
|
14251
|
+
/* ----------- Timeline ——————---- end */
|
|
14252
|
+
/* ----------- Tabs ——————---- start */
|
|
14253
|
+
/* ----------- Tabs ——————---- end */
|
|
14254
|
+
/* ----------- Select ——————---- start */
|
|
14255
|
+
/* ----------- Select ——————---- end */
|
|
14256
|
+
/* ----------- Rate ——————---- start */
|
|
14257
|
+
/* ----------- Rate ——————---- end */
|
|
14258
|
+
/* ----------- Dropdown ——————---- start */
|
|
14259
|
+
/* ----------- Dropdown ——————---- end */
|
|
14260
|
+
/* ----------- Tooltip ——————---- start */
|
|
14261
|
+
/* ----------- Tooltip ——————---- end */
|
|
14262
|
+
/* ----------- Transfer ——————---- start */
|
|
14263
|
+
/* ----------- Transfer ——————---- end */
|
|
14264
|
+
/* ----------- DatePicker ——————---- start */
|
|
14265
|
+
/* ----------- DatePicker ——————---- end */
|
|
14266
|
+
/* ----------- ColorPicker ——————---- start */
|
|
14267
|
+
/* ----------- ColorPicker ——————---- end */
|
|
14268
|
+
/* ----------- Tree ——————---- start */
|
|
14269
|
+
/* ----------- Tree ——————---- end */
|
|
14270
|
+
/* ----------- Alert ——————---- start */
|
|
14271
|
+
/* ----------- Alert ——————---- end */
|
|
14272
|
+
/* ----------- Split-Panel ——————---- start */
|
|
14273
|
+
/* ----------- Split-Panel ——————---- end */
|
|
14274
|
+
/* ----------- Modal ——————---- start */
|
|
14275
|
+
/* ----------- Modal ——————---- end */
|
|
14276
|
+
/* ----------- Steps ——————---- start */
|
|
14277
|
+
/* ----------- Steps ——————---- end */
|
|
14278
|
+
/* ----------- Form ——————---- start */
|
|
14279
|
+
/* ----------- Form ——————---- end */
|
|
14280
|
+
/* ----------- Tag ——————---- start */
|
|
14281
|
+
/* ----------- Tag ——————---- end */
|
|
14282
|
+
/* ----------- Menu ——————---- start */
|
|
14283
|
+
/* ----------- Menu ——————---- end */
|
|
14284
|
+
/* ----------- notice ——————---- start */
|
|
14285
|
+
/* ----------- message ——————---- end */
|
|
14286
|
+
/* ----------- Spin ——————---- start */
|
|
14287
|
+
/* ----------- Spin ——————---- end */
|
|
14288
|
+
/* ----------- Spin ——————---- start */
|
|
14289
|
+
/* ----------- Spin ——————---- end */
|
|
14290
|
+
/* ----------- Layout ——————---- start */
|
|
14291
|
+
/* ----------- Layout ——————---- end */
|
|
14292
|
+
/* ----------- Typography ——————---- start */
|
|
14293
|
+
/* ----------- Typography ——————---- start */
|
|
14294
|
+
/* ----------- Search ——————---- start */
|
|
14295
|
+
/* ----------- Search ——————---- start */
|
|
14296
|
+
/* ----------- Badge ——————---- start */
|
|
14297
|
+
/* ----------- Badge ——————---- end */
|
|
14298
|
+
/* ----------- Anchor ——————---- start */
|
|
14299
|
+
/* ----------- Anchor ——————---- end */
|
|
14300
|
+
/* ----------- Avatar ——————---- start */
|
|
14301
|
+
/* ----------- Avatar ——————---- end */
|
|
14302
|
+
/* ----------- AdvancedSelector ——————---- start */
|
|
14303
|
+
/* ----------- AdvancedSelector ——————---- end */
|
|
14304
|
+
/* ----------- motion ——————---- start */
|
|
14305
|
+
/* ----------- motion ——————---- end */
|
|
14306
|
+
/* ----------- transition ——————---- start */
|
|
14307
|
+
/* ----------- transition ——————---- end */
|
|
14308
|
+
/* ----------- zIndex ——————---- start */
|
|
14309
|
+
/*
|
|
14310
|
+
普通组件内部自身层级应设置在0-100间
|
|
14311
|
+
*/
|
|
14312
|
+
/* ----------- zIndex ——————---- end */
|
|
13957
14313
|
.kd-progress {
|
|
13958
14314
|
display: inline-block;
|
|
13959
14315
|
font-variant: tabular-nums;
|
|
@@ -20099,72 +20455,11 @@ textarea {
|
|
|
20099
20455
|
font-size: var(--kd-c-tooltip-color-text, var(--kd-g-font-size-small, 12px));
|
|
20100
20456
|
line-height: 1.5;
|
|
20101
20457
|
background-color: var(--kd-c-tooltip-color-background, var(--kd-g-color-background, #fff));
|
|
20102
|
-
-webkit-
|
|
20103
|
-
|
|
20104
|
-
opacity: 1;
|
|
20105
|
-
z-index: var(--kd-g-z-index-popper, 1050);
|
|
20106
|
-
visibility: visible;
|
|
20107
|
-
}
|
|
20108
|
-
.kd-tooltip.hidden {
|
|
20109
|
-
opacity: 0;
|
|
20110
|
-
visibility: hidden;
|
|
20111
|
-
}
|
|
20112
|
-
.kd-tooltip.arrow::before {
|
|
20113
|
-
position: absolute;
|
|
20114
|
-
z-index: -2;
|
|
20115
|
-
background: var(--kd-c-tooltip-color-background, var(--kd-g-color-background, #fff));
|
|
20116
|
-
border-style: solid;
|
|
20117
|
-
border-width: var(--arrowSize);
|
|
20118
|
-
-webkit-transform: rotate(45deg);
|
|
20119
|
-
transform: rotate(45deg);
|
|
20120
|
-
content: '';
|
|
20458
|
+
-webkit-filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
|
|
20459
|
+
filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
|
|
20121
20460
|
}
|
|
20122
|
-
.kd-tooltip.arrow::
|
|
20123
|
-
|
|
20124
|
-
z-index: -1;
|
|
20125
|
-
top: 0;
|
|
20126
|
-
right: 0;
|
|
20127
|
-
bottom: 0;
|
|
20128
|
-
left: 0;
|
|
20129
|
-
content: '';
|
|
20130
|
-
background: var(--kd-c-tooltip-color-background, var(--kd-g-color-background, #fff));
|
|
20131
|
-
border-radius: var(--kd-g-radius-border, 2px);
|
|
20132
|
-
}
|
|
20133
|
-
.kd-tooltip.arrow.bottomLeft::before,
|
|
20134
|
-
.kd-tooltip.arrow.bottom::before,
|
|
20135
|
-
.kd-tooltip.arrow.bottomRight::before {
|
|
20136
|
-
left: var(--arrowLeft);
|
|
20137
|
-
top: var(--arrowSpill);
|
|
20138
|
-
-webkit-box-shadow: -2px -2px calc(6px - 1px) rgba(0, 0, 0, 0.1);
|
|
20139
|
-
box-shadow: -2px -2px calc(6px - 1px) rgba(0, 0, 0, 0.1);
|
|
20140
|
-
border-color: var(--kd-c-tooltip-color-background, var(--kd-g-color-background, #fff)) transparent transparent var(--kd-c-tooltip-color-background, var(--kd-g-color-background, #fff));
|
|
20141
|
-
}
|
|
20142
|
-
.kd-tooltip.arrow.topLeft::before,
|
|
20143
|
-
.kd-tooltip.arrow.top::before,
|
|
20144
|
-
.kd-tooltip.arrow.topRight::before {
|
|
20145
|
-
left: var(--arrowLeft);
|
|
20146
|
-
bottom: var(--arrowSpill);
|
|
20147
|
-
-webkit-box-shadow: 3px 3px calc(6px + 1px) rgba(0, 0, 0, 0.15);
|
|
20148
|
-
box-shadow: 3px 3px calc(6px + 1px) rgba(0, 0, 0, 0.15);
|
|
20149
|
-
border-color: transparent var(--kd-c-tooltip-color-background, var(--kd-g-color-background, #fff)) var(--kd-c-tooltip-color-background, var(--kd-g-color-background, #fff)) transparent;
|
|
20150
|
-
}
|
|
20151
|
-
.kd-tooltip.arrow.leftTop::before,
|
|
20152
|
-
.kd-tooltip.arrow.left::before,
|
|
20153
|
-
.kd-tooltip.arrow.leftBottom::before {
|
|
20154
|
-
top: var(--arrowTop);
|
|
20155
|
-
right: var(--arrowSpill);
|
|
20156
|
-
-webkit-box-shadow: 3px 0 6px rgba(0, 0, 0, 0.12), 0 -2px 6px rgba(204, 149, 149, 0.12);
|
|
20157
|
-
box-shadow: 3px 0 6px rgba(0, 0, 0, 0.12), 0 -2px 6px rgba(204, 149, 149, 0.12);
|
|
20158
|
-
border-color: var(--kd-c-tooltip-color-background, var(--kd-g-color-background, #fff)) var(--kd-c-tooltip-color-background, var(--kd-g-color-background, #fff)) transparent transparent;
|
|
20159
|
-
}
|
|
20160
|
-
.kd-tooltip.arrow.rightTop::before,
|
|
20161
|
-
.kd-tooltip.arrow.right::before,
|
|
20162
|
-
.kd-tooltip.arrow.rightBottom::before {
|
|
20163
|
-
top: var(--arrowTop);
|
|
20164
|
-
left: var(--arrowSpill);
|
|
20165
|
-
-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), -2px 0 6px rgba(0, 0, 0, 0.1);
|
|
20166
|
-
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), -2px 0 6px rgba(0, 0, 0, 0.1);
|
|
20167
|
-
border-color: transparent transparent var(--kd-c-tooltip-color-background, var(--kd-g-color-background, #fff)) var(--kd-c-tooltip-color-background, var(--kd-g-color-background, #fff));
|
|
20461
|
+
.kd-tooltip .arrow::before {
|
|
20462
|
+
border-color: var(--kd-c-tooltip-color-background, var(--kd-g-color-background, #fff));
|
|
20168
20463
|
}
|
|
20169
20464
|
|
|
20170
20465
|
/* ----------- color ——————---- start */
|