@kdcloudjs/kdesign 1.3.7 → 1.3.8

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 CHANGED
@@ -1,3 +1,22 @@
1
+ ## [1.3.7](https://github.com/kdcloudone/kdesign/compare/v1.3.6...v1.3.7) (2022-06-30)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * [button] 修复loading按钮以及单个图标按钮默认居中的视觉问题 ([efc3eb8](https://github.com/kdcloudone/kdesign/commit/efc3eb853685cdd9f6eeeca662e07ea600099f10))
7
+ * [checkbox] 修复ref取值为null的bug ([19da577](https://github.com/kdcloudone/kdesign/commit/19da577d3466c15d2446f741482edde7d10a8d25))
8
+
9
+
10
+
11
+ ## [1.3.6](https://github.com/kdcloudone/kdesign/compare/v1.3.5...v1.3.6) (2022-06-27)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * [table] 更新table版本 ([860ac40](https://github.com/kdcloudone/kdesign/commit/860ac408ffb9bf6486477f8160decb1fdd4b1c2d))
17
+
18
+
19
+
1
20
  ## [1.3.5](https://github.com/kdcloudone/kdesign/compare/v1.3.4...v1.3.5) (2022-06-23)
2
21
 
3
22
 
@@ -246,7 +246,7 @@
246
246
  content: '';
247
247
  height: 0;
248
248
  width: 40px;
249
- border-bottom: @anchor-ink-line-width dashed @anchor-disabled-border-color;
249
+ border-bottom: @anchor-line-slider-width dashed @anchor-disabled-border-color;
250
250
  margin: 4px;
251
251
  }
252
252
  }
@@ -286,7 +286,7 @@
286
286
  }
287
287
  }
288
288
 
289
- &-ink {
289
+ &-line {
290
290
  position: absolute;
291
291
  left: @anchor-link-left;
292
292
  top: 0;
@@ -294,19 +294,19 @@
294
294
  &::before {
295
295
  position: relative;
296
296
  display: block;
297
- width: @anchor-ink-line-width;
297
+ width: @anchor-line-slider-width;
298
298
  height: 100%;
299
299
  margin: 0 auto;
300
300
  background-color: @anchor-border-color;
301
301
  content: '';
302
302
  }
303
303
 
304
- &-line {
304
+ &-slider {
305
305
  position: absolute;
306
306
  display: none;
307
307
  width: 0;
308
308
  height: 16px;
309
- border-right: @anchor-ink-line-width solid @anchor-color-theme;
309
+ border-right: @anchor-line-slider-width solid @anchor-color-theme;
310
310
  transition: top 0.3s ease-in-out;
311
311
  &.visible {
312
312
  display: inline-block;
@@ -392,7 +392,7 @@
392
392
  @anchor-link-secondary-padding: var(~'@{anchor-prefix}-secondary-spacing-padding', 12px 8px);
393
393
  @anchor-advanced-padding-top: var(~'@{anchor-prefix}-advanced-spacing-padding-top', 8px);
394
394
  @anchor-advanced-padding-bottom: var(~'@{anchor-prefix}-advanced-spacing-padding-bottom', 7px);
395
- @anchor-ink-line-width: var(~'@{anchor-prefix}-ink-line-spacing-width', 1px);
395
+ @anchor-line-slider-width: var(~'@{anchor-prefix}-line-slider-spacing-width', 1px);
396
396
 
397
397
 
398
398
  // font
@@ -12205,7 +12205,7 @@ template {
12205
12205
 
12206
12206
  // line-height
12207
12207
  @switch-large-line-height: var(~'@{switch-prefix}-large-line-height', 20px);
12208
- @switch-small-line-height: var(~'@{switch-prefix}-small-line-height', 14px);
12208
+ @switch-small-line-height: var(~'@{switch-prefix}-small-line-height', 16px);
12209
12209
 
12210
12210
  //radius
12211
12211
  @switch-small-border-radius: var(~'@{switch-prefix}-small-radius-border', 8px);
package/dist/kdesign.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * @kdcloudjs/kdesign v1.3.6
3
+ * @kdcloudjs/kdesign v1.3.7
4
4
  *
5
5
  * Copyright 2020-present, Kingdee, Inc.
6
6
  * All rights reserved.
@@ -2480,7 +2480,7 @@ template {
2480
2480
  content: '';
2481
2481
  height: 0;
2482
2482
  width: 40px;
2483
- border-bottom: var(--kd-c-anchor-ink-line-spacing-width, 1px) dashed var(--kd-c-anchor-color-border-disabled, var(--kd-g-color-border-disabled, #ccc));
2483
+ border-bottom: var(--kd-c-anchor-line-slider-spacing-width, 1px) dashed var(--kd-c-anchor-color-border-disabled, var(--kd-g-color-border-disabled, #ccc));
2484
2484
  margin: 4px;
2485
2485
  }
2486
2486
  .kd-anchor-advanced-arrows {
@@ -2518,31 +2518,31 @@ template {
2518
2518
  .kd-anchor-advanced .kd-anchor {
2519
2519
  max-width: var(--kd-c-anchor-advanced-sizing-width, 160px);
2520
2520
  }
2521
- .kd-anchor-ink {
2521
+ .kd-anchor-line {
2522
2522
  position: absolute;
2523
2523
  left: var(--kd-c-anchor-spacing-horizontal, 7px);
2524
2524
  top: 0;
2525
2525
  height: 100%;
2526
2526
  }
2527
- .kd-anchor-ink::before {
2527
+ .kd-anchor-line::before {
2528
2528
  position: relative;
2529
2529
  display: block;
2530
- width: var(--kd-c-anchor-ink-line-spacing-width, 1px);
2530
+ width: var(--kd-c-anchor-line-slider-spacing-width, 1px);
2531
2531
  height: 100%;
2532
2532
  margin: 0 auto;
2533
2533
  background-color: var(--kd-c-anchor-color-border, var(--kd-g-color-border-strong, #d9d9d9));
2534
2534
  content: '';
2535
2535
  }
2536
- .kd-anchor-ink-line {
2536
+ .kd-anchor-line-slider {
2537
2537
  position: absolute;
2538
2538
  display: none;
2539
2539
  width: 0;
2540
2540
  height: 16px;
2541
- border-right: var(--kd-c-anchor-ink-line-spacing-width, 1px) solid var(--kd-c-anchor-color-theme, var(--kd-g-color-theme, #5582f3));
2541
+ border-right: var(--kd-c-anchor-line-slider-spacing-width, 1px) solid var(--kd-c-anchor-color-theme, var(--kd-g-color-theme, #5582f3));
2542
2542
  -webkit-transition: top 0.3s ease-in-out;
2543
2543
  transition: top 0.3s ease-in-out;
2544
2544
  }
2545
- .kd-anchor-ink-line.visible {
2545
+ .kd-anchor-line-slider.visible {
2546
2546
  display: inline-block;
2547
2547
  }
2548
2548
  .kd-anchor-link {
@@ -16142,7 +16142,7 @@ textarea {
16142
16142
  .kd-switch-size-small {
16143
16143
  height: var(--kd-c-switch-small-sizing-height, 16px);
16144
16144
  min-width: var(--kd-c-switch-small-sizing-width, 32px);
16145
- line-height: var(--kd-c-switch-small-line-height, 14px);
16145
+ line-height: var(--kd-c-switch-small-line-height, 16px);
16146
16146
  font-size: var(--kd-c-switch-small-font-size, var(--kd-g-font-size-small, 12px));
16147
16147
  border-radius: var(--kd-c-switch-small-radius-border, 8px);
16148
16148
  }