@kdcloudjs/kdesign 1.7.12 → 1.7.13
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 +11 -5
- package/dist/kdesign.css +4 -2
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +34 -20
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +2 -2
- package/dist/kdesign.min.js +5 -5
- package/dist/kdesign.min.js.map +1 -1
- package/es/anchor/style/index.css +2 -0
- package/es/anchor/style/index.less +4 -2
- package/es/color-picker/style/index.css +1 -1
- package/es/color-picker/style/index.less +1 -1
- package/es/color-picker/style/token.less +6 -3
- package/es/modal/modal.js +3 -2
- package/es/stepper/stepper.js +23 -9
- package/es/tabs/tabs.js +0 -3
- package/es/tree/tree.js +2 -2
- package/es/tree-select/tree-select.js +4 -2
- package/lib/anchor/style/index.css +2 -0
- package/lib/anchor/style/index.less +4 -2
- package/lib/color-picker/style/index.css +1 -1
- package/lib/color-picker/style/index.less +1 -1
- package/lib/color-picker/style/token.less +6 -3
- package/lib/modal/modal.js +3 -2
- package/lib/stepper/stepper.js +23 -9
- package/lib/tabs/tabs.js +0 -3
- package/lib/tree/tree.js +1 -1
- package/lib/tree-select/tree-select.js +4 -2
- package/package.json +1 -1
|
@@ -196,6 +196,8 @@
|
|
|
196
196
|
position: relative;
|
|
197
197
|
padding-left: @anchor-link-left;
|
|
198
198
|
box-sizing: border-box;
|
|
199
|
+
background: @anchor-bg;
|
|
200
|
+
z-index: @zIndex-popper;
|
|
199
201
|
|
|
200
202
|
&-wrapper {
|
|
201
203
|
overflow: auto;
|
|
@@ -344,7 +346,7 @@
|
|
|
344
346
|
&-link {
|
|
345
347
|
padding: @anchor-link-padding;
|
|
346
348
|
|
|
347
|
-
|
|
349
|
+
& > .@{anchor-prefix-cls}-link {
|
|
348
350
|
padding: @anchor-link-secondary-padding;
|
|
349
351
|
}
|
|
350
352
|
|
|
@@ -383,7 +385,7 @@
|
|
|
383
385
|
&.hidden {
|
|
384
386
|
opacity: 0;
|
|
385
387
|
visibility: hidden;
|
|
386
|
-
transition: all calc(@anchor-transition-duration - 0.1s) cubic-bezier(0.4,0,0.6,1);
|
|
388
|
+
transition: all calc(@anchor-transition-duration - 0.1s) cubic-bezier(0.4, 0, 0.6, 1);
|
|
387
389
|
}
|
|
388
390
|
}
|
|
389
391
|
|
|
@@ -3136,7 +3138,7 @@
|
|
|
3136
3138
|
}
|
|
3137
3139
|
|
|
3138
3140
|
.active-option {
|
|
3139
|
-
background-color:
|
|
3141
|
+
background-color: @color-picker-panel-option-color-background;
|
|
3140
3142
|
}
|
|
3141
3143
|
}
|
|
3142
3144
|
|
|
@@ -3202,8 +3204,8 @@
|
|
|
3202
3204
|
|
|
3203
3205
|
@color-picker-custom-prefix: ~'--@{kd-prefix}-c-color-picker';
|
|
3204
3206
|
|
|
3205
|
-
//
|
|
3206
|
-
@color-picker-panel-
|
|
3207
|
+
// color
|
|
3208
|
+
@color-picker-panel-option-color-background: var(~'@{color-picker-custom-prefix}-panel-option-color-background-selected', @color-theme-3);
|
|
3207
3209
|
|
|
3208
3210
|
// font
|
|
3209
3211
|
@color-picker-input-font-size: var(~'@{color-picker-custom-prefix}-input-font-size', @font-size-middle);
|
|
@@ -3221,6 +3223,10 @@
|
|
|
3221
3223
|
@color-picker-panel-preset-sizing-width: var(~'@{color-picker-custom-prefix}-panel-preset-sizing-width', 16px);
|
|
3222
3224
|
@color-picker-panel-preset-sizing-height: var(~'@{color-picker-custom-prefix}-panel-preset-sizing-height', 16px);
|
|
3223
3225
|
|
|
3226
|
+
// z-index
|
|
3227
|
+
@color-picker-panel-z-index: var(~'@{color-picker-custom-prefix}-panel-z-index', @z-index-popper);
|
|
3228
|
+
|
|
3229
|
+
|
|
3224
3230
|
|
|
3225
3231
|
|
|
3226
3232
|
|
package/dist/kdesign.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/kdesign v1.7.
|
|
3
|
+
* @kdcloudjs/kdesign v1.7.12
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -2436,6 +2436,8 @@ template {
|
|
|
2436
2436
|
padding-left: var(--kd-c-anchor-spacing-horizontal, 7px);
|
|
2437
2437
|
-webkit-box-sizing: border-box;
|
|
2438
2438
|
box-sizing: border-box;
|
|
2439
|
+
background: var(--kd-c-anchor-color-background, var(--kd-g-color-background, #fff));
|
|
2440
|
+
z-index: 1050;
|
|
2439
2441
|
}
|
|
2440
2442
|
.kd-anchor-wrapper {
|
|
2441
2443
|
overflow: auto;
|
|
@@ -6181,7 +6183,7 @@ template {
|
|
|
6181
6183
|
left: 8px;
|
|
6182
6184
|
}
|
|
6183
6185
|
.kd-color-picker-pop .kd-color-picker-panel-input .active-option {
|
|
6184
|
-
background-color: #
|
|
6186
|
+
background-color: var(--kd-c-color-picker-panel-option-color-background-selected, var(--kd-g-color-theme-3, #e3eeff));
|
|
6185
6187
|
}
|
|
6186
6188
|
.kd-color-picker-pop .kd-color-picker-panel-transparent {
|
|
6187
6189
|
width: 60px;
|