@kdcloudjs/kdesign 1.7.39 → 1.7.41
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 +35 -0
- package/dist/kdesign-complete.less +182 -14
- package/dist/kdesign.css +249 -3
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +1664 -129
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +3 -3
- package/dist/kdesign.min.js +14 -9
- package/dist/kdesign.min.js.map +1 -1
- package/es/alert/style/index.css +4 -2
- package/es/alert/style/index.less +3 -1
- package/es/button/index.d.ts +2 -1
- package/es/carousel/index.d.ts +2 -2
- package/es/city-picker/index.d.ts +2 -0
- package/es/collapse/index.d.ts +2 -2
- package/es/config-provider/compDefaultProps.d.ts +10 -0
- package/es/config-provider/compDefaultProps.js +11 -1
- package/es/date-picker/context.d.ts +4 -2
- package/es/date-picker/date-picker.d.ts +9 -0
- package/es/date-picker/date-picker.js +4 -2
- package/es/date-picker/panel/month/month.js +14 -9
- package/es/date-picker/panel/quarter/quarter.js +12 -4
- package/es/date-picker/panel/time/time-column.d.ts +2 -0
- package/es/date-picker/panel/time/time-column.js +14 -5
- package/es/date-picker/panel/time/time.js +8 -4
- package/es/date-picker/panel/week/week.js +20 -10
- package/es/date-picker/panel/year/year.js +12 -4
- package/es/date-picker/range-picker.js +11 -4
- package/es/index.d.ts +1 -0
- package/es/index.js +2 -1
- package/es/input/TextArea.js +16 -8
- package/es/input/style/index.css +3 -0
- package/es/input/style/index.less +9 -5
- package/es/modal/modal.d.ts +5 -0
- package/es/modal/modal.js +242 -15
- package/es/modal/style/index.css +86 -0
- package/es/modal/style/index.less +95 -9
- package/es/notification-base/notice.js +6 -1
- package/es/qr-code/index.d.ts +3 -0
- package/es/qr-code/index.js +3 -0
- package/es/qr-code/qr-code.d.ts +42 -0
- package/es/qr-code/qr-code.js +80 -0
- package/es/qr-code/style/css.js +2 -0
- package/es/qr-code/style/index.css +154 -0
- package/es/qr-code/style/index.d.ts +2 -0
- package/es/qr-code/style/index.js +2 -0
- package/es/qr-code/style/index.less +42 -0
- package/es/qr-code/style/mixin.less +6 -0
- package/es/qr-code/style/token.less +24 -0
- package/es/search/search-panel.d.ts +1 -1
- package/es/select/index.d.ts +1 -0
- package/es/select/index.js +1 -0
- package/es/tree/tree.js +2 -2
- package/es/tree/treeHooks.d.ts +1 -1
- package/es/tree/treeHooks.js +2 -2
- package/lib/alert/style/index.css +4 -2
- package/lib/alert/style/index.less +3 -1
- package/lib/button/index.d.ts +2 -1
- package/lib/carousel/index.d.ts +2 -2
- package/lib/city-picker/index.d.ts +2 -0
- package/lib/collapse/index.d.ts +2 -2
- package/lib/config-provider/compDefaultProps.d.ts +10 -0
- package/lib/config-provider/compDefaultProps.js +11 -1
- package/lib/date-picker/context.d.ts +4 -2
- package/lib/date-picker/date-picker.d.ts +9 -0
- package/lib/date-picker/date-picker.js +4 -2
- package/lib/date-picker/panel/month/month.js +14 -9
- package/lib/date-picker/panel/quarter/quarter.js +12 -4
- package/lib/date-picker/panel/time/time-column.d.ts +2 -0
- package/lib/date-picker/panel/time/time-column.js +14 -5
- package/lib/date-picker/panel/time/time.js +8 -4
- package/lib/date-picker/panel/week/week.js +20 -10
- package/lib/date-picker/panel/year/year.js +12 -4
- package/lib/date-picker/range-picker.js +11 -4
- package/lib/index.d.ts +1 -0
- package/lib/index.js +7 -0
- package/lib/input/TextArea.js +16 -8
- package/lib/input/style/index.css +3 -0
- package/lib/input/style/index.less +9 -5
- package/lib/modal/modal.d.ts +5 -0
- package/lib/modal/modal.js +242 -15
- package/lib/modal/style/index.css +86 -0
- package/lib/modal/style/index.less +95 -9
- package/lib/notification-base/notice.js +6 -1
- package/lib/qr-code/index.d.ts +3 -0
- package/lib/qr-code/index.js +27 -0
- package/lib/qr-code/qr-code.d.ts +42 -0
- package/lib/qr-code/qr-code.js +96 -0
- package/lib/qr-code/style/css.js +4 -0
- package/lib/qr-code/style/index.css +154 -0
- package/lib/qr-code/style/index.d.ts +2 -0
- package/lib/qr-code/style/index.js +4 -0
- package/lib/qr-code/style/index.less +42 -0
- package/lib/qr-code/style/mixin.less +6 -0
- package/lib/qr-code/style/token.less +24 -0
- package/lib/search/search-panel.d.ts +1 -1
- package/lib/select/index.d.ts +1 -0
- package/lib/select/index.js +14 -0
- package/lib/style/components.less +1 -0
- package/lib/tree/tree.js +2 -2
- package/lib/tree/treeHooks.d.ts +1 -1
- package/lib/tree/treeHooks.js +2 -2
- package/package.json +11 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
## [1.7.40](https://github.com/kdcloudone/kdesign/compare/v1.7.39...v1.7.40) (2023-11-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* [alert] 修复点击关闭按钮依旧占位的问题 fix [#652](https://github.com/kdcloudone/kdesign/issues/652) ([f22c2a3](https://github.com/kdcloudone/kdesign/commit/f22c2a3c8b6f864a59e3c1db91ae4ebab06508e0))
|
|
7
|
+
* [cli] 添加剪切板组件预览图 ([0317fb9](https://github.com/kdcloudone/kdesign/commit/0317fb977edaacdff7f658e31d9b968f99d7dee2))
|
|
8
|
+
* [cli] 修复demo中多余的name属性 ([01260a9](https://github.com/kdcloudone/kdesign/commit/01260a984d419e2d948621e6a4a46863b36ad716))
|
|
9
|
+
* [modal] 修复弹窗超出视口高度时无法滚动的问题 fix [#226](https://github.com/kdcloudone/kdesign/issues/226) fix [#581](https://github.com/kdcloudone/kdesign/issues/581) ([11e3d8e](https://github.com/kdcloudone/kdesign/commit/11e3d8ead40e50267acdd70e6ea3646f48c7d60b))
|
|
10
|
+
* [tree] 修复树组件搜索不生效问题 fix [#644](https://github.com/kdcloudone/kdesign/issues/644) ([4cad188](https://github.com/kdcloudone/kdesign/commit/4cad188d6c638da9a1e57c6285536195064ded6d))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* [date-picker]新增自定义单元格API fix [#266](https://github.com/kdcloudone/kdesign/issues/266) ([a70026f](https://github.com/kdcloudone/kdesign/commit/a70026ff77715ac439f0e6570cb39ec5ffd078bb))
|
|
16
|
+
* [QRCode] 新增二维码组件 [#626](https://github.com/kdcloudone/kdesign/issues/626) ([f5f61d6](https://github.com/kdcloudone/kdesign/commit/f5f61d689c0b2cfcd19ad1585dfe47efd6e4c76f))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## [1.7.39](https://github.com/kdcloudone/kdesign/compare/v1.7.37...v1.7.39) (2023-10-27)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* [cascader] 修复多选选中项很多时,滚动内容清空按钮不垂直居中问题 fix [#332](https://github.com/kdcloudone/kdesign/issues/332) ([77e64a8](https://github.com/kdcloudone/kdesign/commit/77e64a8cdafcf0229bc55cc9b3265246c08bf81c))
|
|
26
|
+
* [input-number] 修复配置digitLength和decimalLength时的交互问题 fix [#630](https://github.com/kdcloudone/kdesign/issues/630) ([717187c](https://github.com/kdcloudone/kdesign/commit/717187cf6a7269899d435b9f929c832e5e204d17))
|
|
27
|
+
* [tree-select] 修复单选设置placeholder不生效问题 fix [#631](https://github.com/kdcloudone/kdesign/issues/631) ([10687cb](https://github.com/kdcloudone/kdesign/commit/10687cba08535e225bb0dca487a5ca552548be9a))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Features
|
|
31
|
+
|
|
32
|
+
* [cli] readme文件新增官网链接 ([15e33e3](https://github.com/kdcloudone/kdesign/commit/15e33e3359b47c26acf5ede8c7177edf97c957d0))
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
1
36
|
## [1.7.37](https://github.com/kdcloudone/kdesign/compare/v1.7.35...v1.7.37) (2023-10-19)
|
|
2
37
|
|
|
3
38
|
|
|
@@ -81,10 +81,12 @@
|
|
|
81
81
|
cursor: default;
|
|
82
82
|
}
|
|
83
83
|
&-leave {
|
|
84
|
-
transition:
|
|
84
|
+
transition: padding @duration-promptly @alert-transition-fn, opacity @duration-promptly @alert-transition-fn,
|
|
85
85
|
margin @duration-promptly @alert-transition-fn, height @duration-promptly @alert-transition-fn,
|
|
86
86
|
line-height @duration-promptly @alert-transition-fn;
|
|
87
87
|
display: flex;
|
|
88
|
+
padding: 0 @alert-padding-horizontal;
|
|
89
|
+
border-width: 0;
|
|
88
90
|
min-height: 0;
|
|
89
91
|
margin: 0 !important;
|
|
90
92
|
overflow: hidden;
|
|
@@ -5981,12 +5983,16 @@ textarea {
|
|
|
5981
5983
|
font-size: @input-small-font-size-inner;
|
|
5982
5984
|
line-height: 18px;
|
|
5983
5985
|
background-color: #fff;
|
|
5984
|
-
}
|
|
5985
5986
|
|
|
5986
|
-
|
|
5987
|
-
|
|
5988
|
-
|
|
5989
|
-
|
|
5987
|
+
&-inner {
|
|
5988
|
+
top: auto;
|
|
5989
|
+
bottom: 5px;
|
|
5990
|
+
right: 8px;
|
|
5991
|
+
}
|
|
5992
|
+
|
|
5993
|
+
&-error {
|
|
5994
|
+
color: @input-error-color;
|
|
5995
|
+
}
|
|
5990
5996
|
}
|
|
5991
5997
|
}
|
|
5992
5998
|
|
|
@@ -7387,15 +7393,13 @@ textarea {
|
|
|
7387
7393
|
}
|
|
7388
7394
|
|
|
7389
7395
|
&-hidden {
|
|
7390
|
-
display: none
|
|
7396
|
+
display: none;
|
|
7391
7397
|
}
|
|
7392
7398
|
}
|
|
7393
7399
|
&-mask {
|
|
7394
7400
|
.overlay(@modal-mask-color-background, 0);
|
|
7395
7401
|
}
|
|
7396
|
-
// &-mask + &-container-box {
|
|
7397
7402
|
|
|
7398
|
-
// }
|
|
7399
7403
|
&-has-container-box {
|
|
7400
7404
|
position: fixed;
|
|
7401
7405
|
left: 50%;
|
|
@@ -7474,16 +7478,104 @@ textarea {
|
|
|
7474
7478
|
color: @modal-footer-font-color;
|
|
7475
7479
|
flex-shrink: 0;
|
|
7476
7480
|
}
|
|
7477
|
-
|
|
7478
|
-
|
|
7479
|
-
|
|
7480
|
-
|
|
7481
|
-
|
|
7481
|
+
|
|
7482
|
+
.@{modal-prefix-cls}-resise {
|
|
7483
|
+
&-handle {
|
|
7484
|
+
position: absolute;
|
|
7485
|
+
}
|
|
7486
|
+
|
|
7487
|
+
&-n {
|
|
7488
|
+
top: 0;
|
|
7489
|
+
left: 0;
|
|
7490
|
+
width: 100%;
|
|
7491
|
+
height: 6px;
|
|
7492
|
+
cursor: ns-resize;
|
|
7493
|
+
}
|
|
7494
|
+
&-e {
|
|
7495
|
+
top: 0;
|
|
7496
|
+
right: 0;
|
|
7497
|
+
height: 100%;
|
|
7498
|
+
width: 6px;
|
|
7499
|
+
cursor: ew-resize;
|
|
7500
|
+
}
|
|
7501
|
+
&-s {
|
|
7502
|
+
bottom: 0;
|
|
7503
|
+
left: 0;
|
|
7504
|
+
height: 6px;
|
|
7505
|
+
width: 100%;
|
|
7506
|
+
cursor: ns-resize;
|
|
7507
|
+
}
|
|
7508
|
+
&-w {
|
|
7509
|
+
left: 0;
|
|
7510
|
+
top: 0;
|
|
7511
|
+
height: 100%;
|
|
7512
|
+
width: 6px;
|
|
7513
|
+
cursor: ew-resize;
|
|
7514
|
+
}
|
|
7515
|
+
&-ne {
|
|
7516
|
+
top: 0;
|
|
7517
|
+
right: 0;
|
|
7518
|
+
width: 6px;
|
|
7519
|
+
height: 6px;
|
|
7520
|
+
cursor: nesw-resize;
|
|
7521
|
+
}
|
|
7522
|
+
&-se {
|
|
7523
|
+
bottom: 0;
|
|
7524
|
+
right: 0;
|
|
7525
|
+
width: 6px;
|
|
7526
|
+
height: 6px;
|
|
7527
|
+
cursor: nwse-resize;
|
|
7528
|
+
}
|
|
7529
|
+
&-sw {
|
|
7530
|
+
bottom: 0;
|
|
7531
|
+
left: 0;
|
|
7532
|
+
width: 6px;
|
|
7533
|
+
height: 6px;
|
|
7534
|
+
cursor: nesw-resize;
|
|
7535
|
+
}
|
|
7536
|
+
&-nw {
|
|
7537
|
+
top: 0;
|
|
7538
|
+
left: 0;
|
|
7539
|
+
width: 6px;
|
|
7540
|
+
height: 6px;
|
|
7541
|
+
cursor: nwse-resize;
|
|
7542
|
+
}
|
|
7543
|
+
}
|
|
7482
7544
|
}
|
|
7483
7545
|
|
|
7484
7546
|
&-margin-btn {
|
|
7485
7547
|
margin-right: @modal-footer-button-spacing;
|
|
7486
7548
|
}
|
|
7549
|
+
|
|
7550
|
+
&-wrapper {
|
|
7551
|
+
position: fixed;
|
|
7552
|
+
top: 0;
|
|
7553
|
+
right: 0;
|
|
7554
|
+
bottom: 0;
|
|
7555
|
+
left: 0;
|
|
7556
|
+
overflow: auto;
|
|
7557
|
+
text-align: center;
|
|
7558
|
+
|
|
7559
|
+
&::before {
|
|
7560
|
+
display: inline-block;
|
|
7561
|
+
width: 0;
|
|
7562
|
+
height: 100%;
|
|
7563
|
+
vertical-align: middle;
|
|
7564
|
+
content: '';
|
|
7565
|
+
}
|
|
7566
|
+
|
|
7567
|
+
&-resizable {
|
|
7568
|
+
text-align: unset;
|
|
7569
|
+
&::before {
|
|
7570
|
+
height: 0;
|
|
7571
|
+
}
|
|
7572
|
+
}
|
|
7573
|
+
}
|
|
7574
|
+
&-dialog {
|
|
7575
|
+
display: inline-block;
|
|
7576
|
+
vertical-align: middle;
|
|
7577
|
+
max-width: calc(100vw);
|
|
7578
|
+
}
|
|
7487
7579
|
}
|
|
7488
7580
|
|
|
7489
7581
|
.@{modal-prefix-cls}-showline {
|
|
@@ -7496,6 +7588,7 @@ textarea {
|
|
|
7496
7588
|
}
|
|
7497
7589
|
|
|
7498
7590
|
|
|
7591
|
+
|
|
7499
7592
|
.modal-title-icon-type(@squareWidth) {
|
|
7500
7593
|
border-radius: 50% 50%;
|
|
7501
7594
|
width: @squareWidth;
|
|
@@ -8748,6 +8841,81 @@ textarea {
|
|
|
8748
8841
|
|
|
8749
8842
|
|
|
8750
8843
|
|
|
8844
|
+
@qrcode-prefix-cls: ~'@{kd-prefix}-qrcode';
|
|
8845
|
+
@qrcode-prefix-icon-cls: ~'@{kd-prefix}-icon';
|
|
8846
|
+
@--kd-c-spin-page-dot-spin-sizing-square: 30px;
|
|
8847
|
+
|
|
8848
|
+
.@{qrcode-prefix-cls} {
|
|
8849
|
+
.qrcode;
|
|
8850
|
+
position: relative;
|
|
8851
|
+
box-sizing: border-box;
|
|
8852
|
+
display: flex;
|
|
8853
|
+
justify-content: center;
|
|
8854
|
+
align-items: center;
|
|
8855
|
+
margin: 0;
|
|
8856
|
+
border-radius: @qrcode-border-radius;
|
|
8857
|
+
border: @qrcode-size-boder solid @qrcode-color-border;
|
|
8858
|
+
padding: @qrcode-spacing-padding-horizontal;
|
|
8859
|
+
font-size: @qrcode-font-size;
|
|
8860
|
+
list-style: none;
|
|
8861
|
+
overflow: hidden;
|
|
8862
|
+
|
|
8863
|
+
&-expired{
|
|
8864
|
+
margin-bottom: @qrcode-spacing-margin-vertical;
|
|
8865
|
+
}
|
|
8866
|
+
|
|
8867
|
+
&-mask{
|
|
8868
|
+
position: absolute;
|
|
8869
|
+
z-index: 10;
|
|
8870
|
+
display: flex;
|
|
8871
|
+
flex-direction: column;
|
|
8872
|
+
justify-content: center;
|
|
8873
|
+
align-items: center;
|
|
8874
|
+
width: 100%;
|
|
8875
|
+
height: 100%;
|
|
8876
|
+
color: @qrcode-color-text;
|
|
8877
|
+
background: @qrcode-color-background;
|
|
8878
|
+
text-align: center;
|
|
8879
|
+
}
|
|
8880
|
+
&-borderless{
|
|
8881
|
+
border: none;
|
|
8882
|
+
}
|
|
8883
|
+
}
|
|
8884
|
+
|
|
8885
|
+
|
|
8886
|
+
|
|
8887
|
+
.qrcode() {
|
|
8888
|
+
// color: @qrcode-color-text;
|
|
8889
|
+
// font-size: @qrcode-font-size;
|
|
8890
|
+
}
|
|
8891
|
+
|
|
8892
|
+
|
|
8893
|
+
@qrcode-custom-prefix: ~'--@{kd-prefix}-c-qrcode';
|
|
8894
|
+
// color
|
|
8895
|
+
@qrcode-color-text: var(~'@{qrcode-custom-prefix}-color-text', #111111);
|
|
8896
|
+
@qrcode-color-border: var(~'@{qrcode-custom-prefix}-color-border',rgba(5, 5, 5, 0.06));
|
|
8897
|
+
@qrcode-color-background: var(~'@{qrcode-custom-prefix}-color-background',rgba(255, 255, 255, 0.96));
|
|
8898
|
+
// font
|
|
8899
|
+
@qrcode-font-size: var(~'@{qrcode-custom-prefix}-font-size', 12px); // 组件级token
|
|
8900
|
+
|
|
8901
|
+
// line-height
|
|
8902
|
+
|
|
8903
|
+
// motion
|
|
8904
|
+
|
|
8905
|
+
// radius
|
|
8906
|
+
@qrcode-border-radius: var(~'@{qrcode-custom-prefix}-border-radius', 2px);
|
|
8907
|
+
// shadow
|
|
8908
|
+
|
|
8909
|
+
// sizing
|
|
8910
|
+
@qrcode-size-boder: var(~'@{qrcode-custom-prefix}-size-border',1px);
|
|
8911
|
+
@qrcode-size-spin: var(--kd-c-spin-page-dot-spin-sizing-square,28px);
|
|
8912
|
+
// spacing
|
|
8913
|
+
@qrcode-spacing-padding-horizontal: var(~'@{qrcode-custom-prefix}-spacing-padding-horizontal', 8px);
|
|
8914
|
+
@qrcode-spacing-margin-vertical: var(~'@{qrcode-custom-prefix}-spacing-margin-vertical',4px);
|
|
8915
|
+
// z-index
|
|
8916
|
+
|
|
8917
|
+
|
|
8918
|
+
|
|
8751
8919
|
|
|
8752
8920
|
@radio-prefix-cls: ~'@{kd-prefix}-radio';
|
|
8753
8921
|
@radio-square-prefix-cls: ~'@{radio-prefix-cls}-square';
|
package/dist/kdesign.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/kdesign v1.7.
|
|
3
|
+
* @kdcloudjs/kdesign v1.7.40
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -2291,11 +2291,13 @@ template {
|
|
|
2291
2291
|
cursor: default;
|
|
2292
2292
|
}
|
|
2293
2293
|
.kd-alert-leave {
|
|
2294
|
-
-webkit-transition:
|
|
2295
|
-
transition:
|
|
2294
|
+
-webkit-transition: padding var(--kd-g-duration, 0.3s) cubic-bezier(0.32, 0.94, 0.6, 1), opacity var(--kd-g-duration, 0.3s) cubic-bezier(0.32, 0.94, 0.6, 1), margin var(--kd-g-duration, 0.3s) cubic-bezier(0.32, 0.94, 0.6, 1), height var(--kd-g-duration, 0.3s) cubic-bezier(0.32, 0.94, 0.6, 1), line-height var(--kd-g-duration, 0.3s) cubic-bezier(0.32, 0.94, 0.6, 1);
|
|
2295
|
+
transition: padding var(--kd-g-duration, 0.3s) cubic-bezier(0.32, 0.94, 0.6, 1), opacity var(--kd-g-duration, 0.3s) cubic-bezier(0.32, 0.94, 0.6, 1), margin var(--kd-g-duration, 0.3s) cubic-bezier(0.32, 0.94, 0.6, 1), height var(--kd-g-duration, 0.3s) cubic-bezier(0.32, 0.94, 0.6, 1), line-height var(--kd-g-duration, 0.3s) cubic-bezier(0.32, 0.94, 0.6, 1);
|
|
2296
2296
|
display: -webkit-box;
|
|
2297
2297
|
display: -ms-flexbox;
|
|
2298
2298
|
display: flex;
|
|
2299
|
+
padding: 0 var(--kd-c-alert-sizing-padding-horizontal, 20px);
|
|
2300
|
+
border-width: 0;
|
|
2299
2301
|
min-height: 0;
|
|
2300
2302
|
margin: 0 !important;
|
|
2301
2303
|
overflow: hidden;
|
|
@@ -10155,6 +10157,9 @@ textarea {
|
|
|
10155
10157
|
bottom: 5px;
|
|
10156
10158
|
right: 8px;
|
|
10157
10159
|
}
|
|
10160
|
+
.kd-input-textarea-mark-error {
|
|
10161
|
+
color: var(--kd-c-input-color-error, var(--kd-g-color-error, #fb2323));
|
|
10162
|
+
}
|
|
10158
10163
|
.kd-input-no-resize {
|
|
10159
10164
|
resize: none;
|
|
10160
10165
|
}
|
|
@@ -12077,9 +12082,95 @@ textarea {
|
|
|
12077
12082
|
-ms-flex-negative: 0;
|
|
12078
12083
|
flex-shrink: 0;
|
|
12079
12084
|
}
|
|
12085
|
+
.kd-modal-container-box .kd-modal-resise-handle {
|
|
12086
|
+
position: absolute;
|
|
12087
|
+
}
|
|
12088
|
+
.kd-modal-container-box .kd-modal-resise-n {
|
|
12089
|
+
top: 0;
|
|
12090
|
+
left: 0;
|
|
12091
|
+
width: 100%;
|
|
12092
|
+
height: 6px;
|
|
12093
|
+
cursor: ns-resize;
|
|
12094
|
+
}
|
|
12095
|
+
.kd-modal-container-box .kd-modal-resise-e {
|
|
12096
|
+
top: 0;
|
|
12097
|
+
right: 0;
|
|
12098
|
+
height: 100%;
|
|
12099
|
+
width: 6px;
|
|
12100
|
+
cursor: ew-resize;
|
|
12101
|
+
}
|
|
12102
|
+
.kd-modal-container-box .kd-modal-resise-s {
|
|
12103
|
+
bottom: 0;
|
|
12104
|
+
left: 0;
|
|
12105
|
+
height: 6px;
|
|
12106
|
+
width: 100%;
|
|
12107
|
+
cursor: ns-resize;
|
|
12108
|
+
}
|
|
12109
|
+
.kd-modal-container-box .kd-modal-resise-w {
|
|
12110
|
+
left: 0;
|
|
12111
|
+
top: 0;
|
|
12112
|
+
height: 100%;
|
|
12113
|
+
width: 6px;
|
|
12114
|
+
cursor: ew-resize;
|
|
12115
|
+
}
|
|
12116
|
+
.kd-modal-container-box .kd-modal-resise-ne {
|
|
12117
|
+
top: 0;
|
|
12118
|
+
right: 0;
|
|
12119
|
+
width: 6px;
|
|
12120
|
+
height: 6px;
|
|
12121
|
+
cursor: nesw-resize;
|
|
12122
|
+
}
|
|
12123
|
+
.kd-modal-container-box .kd-modal-resise-se {
|
|
12124
|
+
bottom: 0;
|
|
12125
|
+
right: 0;
|
|
12126
|
+
width: 6px;
|
|
12127
|
+
height: 6px;
|
|
12128
|
+
cursor: nwse-resize;
|
|
12129
|
+
}
|
|
12130
|
+
.kd-modal-container-box .kd-modal-resise-sw {
|
|
12131
|
+
bottom: 0;
|
|
12132
|
+
left: 0;
|
|
12133
|
+
width: 6px;
|
|
12134
|
+
height: 6px;
|
|
12135
|
+
cursor: nesw-resize;
|
|
12136
|
+
}
|
|
12137
|
+
.kd-modal-container-box .kd-modal-resise-nw {
|
|
12138
|
+
top: 0;
|
|
12139
|
+
left: 0;
|
|
12140
|
+
width: 6px;
|
|
12141
|
+
height: 6px;
|
|
12142
|
+
cursor: nwse-resize;
|
|
12143
|
+
}
|
|
12080
12144
|
.kd-modal-margin-btn {
|
|
12081
12145
|
margin-right: var(--kd-c-modal-footer-button-spacing, 12px);
|
|
12082
12146
|
}
|
|
12147
|
+
.kd-modal-wrapper {
|
|
12148
|
+
position: fixed;
|
|
12149
|
+
top: 0;
|
|
12150
|
+
right: 0;
|
|
12151
|
+
bottom: 0;
|
|
12152
|
+
left: 0;
|
|
12153
|
+
overflow: auto;
|
|
12154
|
+
text-align: center;
|
|
12155
|
+
}
|
|
12156
|
+
.kd-modal-wrapper::before {
|
|
12157
|
+
display: inline-block;
|
|
12158
|
+
width: 0;
|
|
12159
|
+
height: 100%;
|
|
12160
|
+
vertical-align: middle;
|
|
12161
|
+
content: '';
|
|
12162
|
+
}
|
|
12163
|
+
.kd-modal-wrapper-resizable {
|
|
12164
|
+
text-align: unset;
|
|
12165
|
+
}
|
|
12166
|
+
.kd-modal-wrapper-resizable::before {
|
|
12167
|
+
height: 0;
|
|
12168
|
+
}
|
|
12169
|
+
.kd-modal-dialog {
|
|
12170
|
+
display: inline-block;
|
|
12171
|
+
vertical-align: middle;
|
|
12172
|
+
max-width: calc(100vw);
|
|
12173
|
+
}
|
|
12083
12174
|
.kd-modal-showline .kd-modal-header {
|
|
12084
12175
|
border-bottom: var(--kd-c-modal-sizing-border, 1px) solid var(--kd-c-modal-color-border, var(--kd-g-color-border-strong-2, #d9d9d9));
|
|
12085
12176
|
}
|
|
@@ -13766,6 +13857,161 @@ textarea {
|
|
|
13766
13857
|
普通组件内部自身层级应设置在0-100间
|
|
13767
13858
|
*/
|
|
13768
13859
|
/* ----------- zIndex ——————---- end */
|
|
13860
|
+
.kd-qrcode {
|
|
13861
|
+
position: relative;
|
|
13862
|
+
-webkit-box-sizing: border-box;
|
|
13863
|
+
box-sizing: border-box;
|
|
13864
|
+
display: -webkit-box;
|
|
13865
|
+
display: -ms-flexbox;
|
|
13866
|
+
display: flex;
|
|
13867
|
+
-webkit-box-pack: center;
|
|
13868
|
+
-ms-flex-pack: center;
|
|
13869
|
+
justify-content: center;
|
|
13870
|
+
-webkit-box-align: center;
|
|
13871
|
+
-ms-flex-align: center;
|
|
13872
|
+
align-items: center;
|
|
13873
|
+
margin: 0;
|
|
13874
|
+
border-radius: var(--kd-c-qrcode-border-radius, 2px);
|
|
13875
|
+
border: var(--kd-c-qrcode-size-border, 1px) solid var(--kd-c-qrcode-color-border, rgba(5, 5, 5, 0.06));
|
|
13876
|
+
padding: var(--kd-c-qrcode-spacing-padding-horizontal, 8px);
|
|
13877
|
+
font-size: var(--kd-c-qrcode-font-size, 12px);
|
|
13878
|
+
list-style: none;
|
|
13879
|
+
overflow: hidden;
|
|
13880
|
+
}
|
|
13881
|
+
.kd-qrcode-expired {
|
|
13882
|
+
margin-bottom: var(--kd-c-qrcode-spacing-margin-vertical, 4px);
|
|
13883
|
+
}
|
|
13884
|
+
.kd-qrcode-mask {
|
|
13885
|
+
position: absolute;
|
|
13886
|
+
z-index: 10;
|
|
13887
|
+
display: -webkit-box;
|
|
13888
|
+
display: -ms-flexbox;
|
|
13889
|
+
display: flex;
|
|
13890
|
+
-webkit-box-orient: vertical;
|
|
13891
|
+
-webkit-box-direction: normal;
|
|
13892
|
+
-ms-flex-direction: column;
|
|
13893
|
+
flex-direction: column;
|
|
13894
|
+
-webkit-box-pack: center;
|
|
13895
|
+
-ms-flex-pack: center;
|
|
13896
|
+
justify-content: center;
|
|
13897
|
+
-webkit-box-align: center;
|
|
13898
|
+
-ms-flex-align: center;
|
|
13899
|
+
align-items: center;
|
|
13900
|
+
width: 100%;
|
|
13901
|
+
height: 100%;
|
|
13902
|
+
color: var(--kd-c-qrcode-color-text, #111111);
|
|
13903
|
+
background: var(--kd-c-qrcode-color-background, rgba(255, 255, 255, 0.96));
|
|
13904
|
+
text-align: center;
|
|
13905
|
+
}
|
|
13906
|
+
.kd-qrcode-borderless {
|
|
13907
|
+
border: none;
|
|
13908
|
+
}
|
|
13909
|
+
|
|
13910
|
+
/* ----------- color ——————---- start */
|
|
13911
|
+
/* ----------- color ——————---- end */
|
|
13912
|
+
/* ----------- motion ——————---- start */
|
|
13913
|
+
/* ----------- motion ——————---- end */
|
|
13914
|
+
/* ----------- transition ——————---- start */
|
|
13915
|
+
/* ----------- transition ——————---- end */
|
|
13916
|
+
/* ----------- font ——————---- start */
|
|
13917
|
+
/* ----------- font ——————---- end */
|
|
13918
|
+
/* ----------- zIndex ——————---- start */
|
|
13919
|
+
/*
|
|
13920
|
+
普通组件内部自身层级应设置在0-100间
|
|
13921
|
+
*/
|
|
13922
|
+
/* ----------- zIndex ——————---- end */
|
|
13923
|
+
/* ----------- Button ——————---- start */
|
|
13924
|
+
/* ----------- Button ——————---- end */
|
|
13925
|
+
/* ----------- Collapse ——————---- start */
|
|
13926
|
+
/* ----------- Collapse ——————---- end */
|
|
13927
|
+
/* ----------- Card ——————---- start */
|
|
13928
|
+
/* ----------- Card ——————---- end */
|
|
13929
|
+
/* ----------- Carousel ——————---- start */
|
|
13930
|
+
/* ----------- Carousel ——————---- end */
|
|
13931
|
+
/* ----------- Cascader ——————---- start */
|
|
13932
|
+
/* ----------- Cascader ——————---- end */
|
|
13933
|
+
/* ----------- Switch ——————---- start */
|
|
13934
|
+
/* ----------- Switch ——————---- end */
|
|
13935
|
+
/* ----------- Input ——————---- start */
|
|
13936
|
+
/* ----------- Input ——————---- end */
|
|
13937
|
+
/* ----------- InputNumber ——————---- start */
|
|
13938
|
+
/* ----------- InputNumber ——————---- end */
|
|
13939
|
+
/* ----------- checkbox ——————---- start */
|
|
13940
|
+
/* ----------- checkbox ——————---- start */
|
|
13941
|
+
/* ----------- checkbox ——————---- end */
|
|
13942
|
+
/* ----------- Radio ——————---- start */
|
|
13943
|
+
/* ----------- Radio ——————---- end */
|
|
13944
|
+
/* ----------- icon ——————---- start */
|
|
13945
|
+
/* ----------- icon ——————---- end */
|
|
13946
|
+
/* ----------- Popconfirm ——————---- start */
|
|
13947
|
+
/* ----------- Popconfirm ——————---- end */
|
|
13948
|
+
/* ----------- Progress ——————---- start */
|
|
13949
|
+
/* ----------- Progress ——————---- end */
|
|
13950
|
+
/* ----------- Pagination ——————---- start */
|
|
13951
|
+
/* ----------- Pagination ——————---- end */
|
|
13952
|
+
/* ----------- Timeline ——————---- start */
|
|
13953
|
+
/* ----------- Timeline ——————---- end */
|
|
13954
|
+
/* ----------- Tabs ——————---- start */
|
|
13955
|
+
/* ----------- Tabs ——————---- end */
|
|
13956
|
+
/* ----------- Select ——————---- start */
|
|
13957
|
+
/* ----------- Select ——————---- end */
|
|
13958
|
+
/* ----------- Rate ——————---- start */
|
|
13959
|
+
/* ----------- Rate ——————---- end */
|
|
13960
|
+
/* ----------- Dropdown ——————---- start */
|
|
13961
|
+
/* ----------- Dropdown ——————---- end */
|
|
13962
|
+
/* ----------- Tooltip ——————---- start */
|
|
13963
|
+
/* ----------- Tooltip ——————---- end */
|
|
13964
|
+
/* ----------- Transfer ——————---- start */
|
|
13965
|
+
/* ----------- Transfer ——————---- end */
|
|
13966
|
+
/* ----------- DatePicker ——————---- start */
|
|
13967
|
+
/* ----------- DatePicker ——————---- end */
|
|
13968
|
+
/* ----------- ColorPicker ——————---- start */
|
|
13969
|
+
/* ----------- ColorPicker ——————---- end */
|
|
13970
|
+
/* ----------- Tree ——————---- start */
|
|
13971
|
+
/* ----------- Tree ——————---- end */
|
|
13972
|
+
/* ----------- Alert ——————---- start */
|
|
13973
|
+
/* ----------- Alert ——————---- end */
|
|
13974
|
+
/* ----------- Split-Panel ——————---- start */
|
|
13975
|
+
/* ----------- Split-Panel ——————---- end */
|
|
13976
|
+
/* ----------- Modal ——————---- start */
|
|
13977
|
+
/* ----------- Modal ——————---- end */
|
|
13978
|
+
/* ----------- Steps ——————---- start */
|
|
13979
|
+
/* ----------- Steps ——————---- end */
|
|
13980
|
+
/* ----------- Form ——————---- start */
|
|
13981
|
+
/* ----------- Form ——————---- end */
|
|
13982
|
+
/* ----------- Tag ——————---- start */
|
|
13983
|
+
/* ----------- Tag ——————---- end */
|
|
13984
|
+
/* ----------- Menu ——————---- start */
|
|
13985
|
+
/* ----------- Menu ——————---- end */
|
|
13986
|
+
/* ----------- notice ——————---- start */
|
|
13987
|
+
/* ----------- message ——————---- end */
|
|
13988
|
+
/* ----------- Spin ——————---- start */
|
|
13989
|
+
/* ----------- Spin ——————---- end */
|
|
13990
|
+
/* ----------- Spin ——————---- start */
|
|
13991
|
+
/* ----------- Spin ——————---- end */
|
|
13992
|
+
/* ----------- Layout ——————---- start */
|
|
13993
|
+
/* ----------- Layout ——————---- end */
|
|
13994
|
+
/* ----------- Typography ——————---- start */
|
|
13995
|
+
/* ----------- Typography ——————---- start */
|
|
13996
|
+
/* ----------- Search ——————---- start */
|
|
13997
|
+
/* ----------- Search ——————---- start */
|
|
13998
|
+
/* ----------- Badge ——————---- start */
|
|
13999
|
+
/* ----------- Badge ——————---- end */
|
|
14000
|
+
/* ----------- Anchor ——————---- start */
|
|
14001
|
+
/* ----------- Anchor ——————---- end */
|
|
14002
|
+
/* ----------- Avatar ——————---- start */
|
|
14003
|
+
/* ----------- Avatar ——————---- end */
|
|
14004
|
+
/* ----------- AdvancedSelector ——————---- start */
|
|
14005
|
+
/* ----------- AdvancedSelector ——————---- end */
|
|
14006
|
+
/* ----------- motion ——————---- start */
|
|
14007
|
+
/* ----------- motion ——————---- end */
|
|
14008
|
+
/* ----------- transition ——————---- start */
|
|
14009
|
+
/* ----------- transition ——————---- end */
|
|
14010
|
+
/* ----------- zIndex ——————---- start */
|
|
14011
|
+
/*
|
|
14012
|
+
普通组件内部自身层级应设置在0-100间
|
|
14013
|
+
*/
|
|
14014
|
+
/* ----------- zIndex ——————---- end */
|
|
13769
14015
|
/* 多行显示省略号 */
|
|
13770
14016
|
/* 单行显示省略号 */
|
|
13771
14017
|
/** 浮层箭头样式 **/
|