@kdcloudjs/kdesign 1.7.22 → 1.7.24
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 +41 -0
- package/dist/kdesign-complete.less +75 -21
- package/dist/kdesign.css +79 -12
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +425 -180
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +4 -4
- package/dist/kdesign.min.js +8 -8
- package/dist/kdesign.min.js.map +1 -1
- package/es/_utils/usePopper.js +36 -19
- package/es/button/style/index.css +3 -0
- package/es/button/style/index.less +3 -3
- package/es/button/style/mixin.less +2 -1
- package/es/button/style/token.less +3 -0
- package/es/checkbox/style/index.css +1 -0
- package/es/checkbox/style/index.less +1 -0
- package/es/checkbox/style/token.less +1 -0
- package/es/city-picker/city-picker.js +6 -3
- package/es/city-picker/interface.d.ts +1 -0
- package/es/city-picker/style/index.css +2 -0
- package/es/city-picker/style/index.less +1 -0
- package/es/filter/style/index.css +6 -0
- package/es/filter/style/index.less +7 -0
- package/es/filter/style/token.less +4 -0
- package/es/form/style/index.css +1 -1
- package/es/form/style/index.less +1 -1
- package/es/form/style/token.less +1 -1
- package/es/input-number/inputNumber.js +5 -2
- package/es/menu/style/index.css +2 -1
- package/es/menu/style/mixin.less +2 -1
- package/es/menu/style/token.less +2 -0
- package/es/radio/style/index.css +8 -0
- package/es/radio/style/index.less +6 -1
- package/es/radio/style/token.less +3 -0
- package/es/search/search.js +2 -1
- package/es/search/style/index.css +1 -0
- package/es/search/style/index.less +1 -0
- package/es/search/style/token.less +1 -0
- package/es/select/select.js +3 -2
- package/es/select/style/index.css +6 -3
- package/es/select/style/index.less +10 -4
- package/es/select/style/token.less +1 -1
- package/es/style/core/motion/slide.less +5 -2
- package/es/style/index.css +36 -4
- package/es/table/api.js +19 -3
- package/es/tag/style/index.css +6 -0
- package/es/tag/style/index.less +3 -3
- package/es/tag/style/mixin.less +3 -1
- package/es/tag/style/token.less +2 -0
- package/es/timeline/style/index.css +2 -0
- package/es/timeline/style/index.less +3 -0
- package/es/timeline/style/token.less +2 -0
- package/es/transfer/style/index.css +2 -2
- package/es/transfer/style/index.less +2 -2
- package/es/transfer/style/token.less +1 -0
- package/es/tree/style/index.css +2 -0
- package/es/tree/style/index.less +2 -0
- package/es/tree/style/token.less +2 -0
- package/lib/_utils/usePopper.js +36 -19
- package/lib/button/style/index.css +3 -0
- package/lib/button/style/index.less +3 -3
- package/lib/button/style/mixin.less +2 -1
- package/lib/button/style/token.less +3 -0
- package/lib/checkbox/style/index.css +1 -0
- package/lib/checkbox/style/index.less +1 -0
- package/lib/checkbox/style/token.less +1 -0
- package/lib/city-picker/city-picker.js +6 -3
- package/lib/city-picker/interface.d.ts +1 -0
- package/lib/city-picker/style/index.css +2 -0
- package/lib/city-picker/style/index.less +1 -0
- package/lib/filter/style/index.css +6 -0
- package/lib/filter/style/index.less +7 -0
- package/lib/filter/style/token.less +4 -0
- package/lib/form/style/index.css +1 -1
- package/lib/form/style/index.less +1 -1
- package/lib/form/style/token.less +1 -1
- package/lib/input-number/inputNumber.js +5 -2
- package/lib/menu/style/index.css +2 -1
- package/lib/menu/style/mixin.less +2 -1
- package/lib/menu/style/token.less +2 -0
- package/lib/radio/style/index.css +8 -0
- package/lib/radio/style/index.less +6 -1
- package/lib/radio/style/token.less +3 -0
- package/lib/search/search.js +2 -1
- package/lib/search/style/index.css +1 -0
- package/lib/search/style/index.less +1 -0
- package/lib/search/style/token.less +1 -0
- package/lib/select/select.js +3 -2
- package/lib/select/style/index.css +6 -3
- package/lib/select/style/index.less +10 -4
- package/lib/select/style/token.less +1 -1
- package/lib/style/core/motion/slide.less +5 -2
- package/lib/style/index.css +36 -4
- package/lib/table/api.js +19 -3
- package/lib/tag/style/index.css +6 -0
- package/lib/tag/style/index.less +3 -3
- package/lib/tag/style/mixin.less +3 -1
- package/lib/tag/style/token.less +2 -0
- package/lib/timeline/style/index.css +2 -0
- package/lib/timeline/style/index.less +3 -0
- package/lib/timeline/style/token.less +2 -0
- package/lib/transfer/style/index.css +2 -2
- package/lib/transfer/style/index.less +2 -2
- package/lib/transfer/style/token.less +1 -0
- package/lib/tree/style/index.css +2 -0
- package/lib/tree/style/index.less +2 -0
- package/lib/tree/style/token.less +2 -0
- package/package.json +2 -2
package/dist/kdesign.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/kdesign v1.7.
|
|
3
|
+
* @kdcloudjs/kdesign v1.7.23
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -1598,7 +1598,7 @@
|
|
|
1598
1598
|
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
1599
1599
|
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
1600
1600
|
}
|
|
1601
|
-
.kd-select.topLeft-active {
|
|
1601
|
+
.kd-select-dropdown-panel.topLeft-active {
|
|
1602
1602
|
-webkit-animation-name: kdSlideDownIn;
|
|
1603
1603
|
animation-name: kdSlideDownIn;
|
|
1604
1604
|
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
@@ -1606,7 +1606,7 @@
|
|
|
1606
1606
|
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
1607
1607
|
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
1608
1608
|
}
|
|
1609
|
-
.kd-select.topLeft.hidden {
|
|
1609
|
+
.kd-select-dropdown-panel.topLeft.hidden {
|
|
1610
1610
|
-webkit-animation-name: kdSlideDownOut;
|
|
1611
1611
|
animation-name: kdSlideDownOut;
|
|
1612
1612
|
-webkit-animation-duration: 0.1s;
|
|
@@ -1614,7 +1614,7 @@
|
|
|
1614
1614
|
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
1615
1615
|
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
1616
1616
|
}
|
|
1617
|
-
.kd-select.bottomLeft-active {
|
|
1617
|
+
.kd-select-dropdown-panel.bottomLeft-active {
|
|
1618
1618
|
-webkit-animation-name: kdSlideUpIn;
|
|
1619
1619
|
animation-name: kdSlideUpIn;
|
|
1620
1620
|
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
@@ -1622,7 +1622,7 @@
|
|
|
1622
1622
|
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
1623
1623
|
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
1624
1624
|
}
|
|
1625
|
-
.kd-select.bottomLeft.hidden {
|
|
1625
|
+
.kd-select-dropdown-panel.bottomLeft.hidden {
|
|
1626
1626
|
-webkit-animation-name: kdSlideUpOut;
|
|
1627
1627
|
animation-name: kdSlideUpOut;
|
|
1628
1628
|
-webkit-animation-duration: 0.1s;
|
|
@@ -1662,6 +1662,38 @@
|
|
|
1662
1662
|
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
1663
1663
|
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
1664
1664
|
}
|
|
1665
|
+
.kd-city-picker-dropdown.topLeft-active {
|
|
1666
|
+
-webkit-animation-name: kdSlideDownIn;
|
|
1667
|
+
animation-name: kdSlideDownIn;
|
|
1668
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
1669
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
1670
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
1671
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
1672
|
+
}
|
|
1673
|
+
.kd-city-picker-dropdown.topLeft.hidden {
|
|
1674
|
+
-webkit-animation-name: kdSlideDownOut;
|
|
1675
|
+
animation-name: kdSlideDownOut;
|
|
1676
|
+
-webkit-animation-duration: 0.1s;
|
|
1677
|
+
animation-duration: 0.1s;
|
|
1678
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
1679
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
1680
|
+
}
|
|
1681
|
+
.kd-city-picker-dropdown.bottomLeft-active {
|
|
1682
|
+
-webkit-animation-name: kdSlideUpIn;
|
|
1683
|
+
animation-name: kdSlideUpIn;
|
|
1684
|
+
-webkit-animation-duration: calc(0.3s - 0.1s);
|
|
1685
|
+
animation-duration: calc(0.3s - 0.1s);
|
|
1686
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
1687
|
+
animation-timing-function: cubic-bezier(0, 0.4, 0.4, 1);
|
|
1688
|
+
}
|
|
1689
|
+
.kd-city-picker-dropdown.bottomLeft.hidden {
|
|
1690
|
+
-webkit-animation-name: kdSlideUpOut;
|
|
1691
|
+
animation-name: kdSlideUpOut;
|
|
1692
|
+
-webkit-animation-duration: 0.1s;
|
|
1693
|
+
animation-duration: 0.1s;
|
|
1694
|
+
-webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
1695
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
|
|
1696
|
+
}
|
|
1665
1697
|
@-webkit-keyframes kdSlideCenterIn {
|
|
1666
1698
|
0% {
|
|
1667
1699
|
opacity: 0;
|
|
@@ -3600,6 +3632,7 @@ template {
|
|
|
3600
3632
|
line-height: calc(var(--kd-c-button-sizing-height-small, 24px) - (var(--kd-c-button-spacing-padding-vertical-small, 3px) * 2) - (var(--kd-c-button-sizing-border, 1px) * 2));
|
|
3601
3633
|
font-size: var(--kd-c-button-font-size-small, var(--kd-g-font-size-small, 12px));
|
|
3602
3634
|
padding: var(--kd-c-button-spacing-padding-vertical-small, 3px) var(--kd-c-button-spacing-padding-horizontal-small, 8px);
|
|
3635
|
+
max-width: var(--kd-c-button-sizing-max-width-small);
|
|
3603
3636
|
}
|
|
3604
3637
|
.kd-btn-size-small.kd-btn-icon-only {
|
|
3605
3638
|
font-size: var(--kd-c-button-icon-font-size-small, 14px);
|
|
@@ -3623,6 +3656,7 @@ template {
|
|
|
3623
3656
|
line-height: calc(var(--kd-c-button-sizing-height-middle, 28px) - (var(--kd-c-button-spacing-padding-vertical-middle, 5px) * 2) - (var(--kd-c-button-sizing-border, 1px) * 2));
|
|
3624
3657
|
font-size: var(--kd-c-button-font-size-middle, var(--kd-g-font-size-small, 12px));
|
|
3625
3658
|
padding: var(--kd-c-button-spacing-padding-vertical-middle, 5px) var(--kd-c-button-spacing-padding-horizontal-middle, 8px);
|
|
3659
|
+
max-width: var(--kd-c-button-sizing-max-width-middle);
|
|
3626
3660
|
}
|
|
3627
3661
|
.kd-btn-size-middle.kd-btn-icon-only {
|
|
3628
3662
|
font-size: var(--kd-c-button-icon-font-size-middle, 16px);
|
|
@@ -3646,6 +3680,7 @@ template {
|
|
|
3646
3680
|
line-height: calc(var(--kd-c-button-sizing-height-large, 32px) - (var(--kd-c-button-spacing-padding-vertical-large, 6px) * 2) - (var(--kd-c-button-sizing-border, 1px) * 2));
|
|
3647
3681
|
font-size: var(--kd-c-button-font-size-large, var(--kd-g-font-size-large, 16px));
|
|
3648
3682
|
padding: var(--kd-c-button-spacing-padding-vertical-large, 6px) var(--kd-c-button-spacing-padding-horizontal-large, 8px);
|
|
3683
|
+
max-width: var(--kd-c-button-sizing-max-width-large);
|
|
3649
3684
|
}
|
|
3650
3685
|
.kd-btn-size-large.kd-btn-icon-only {
|
|
3651
3686
|
font-size: var(--kd-c-button-icon-font-size-large, 18px);
|
|
@@ -4987,6 +5022,7 @@ template {
|
|
|
4987
5022
|
overflow: hidden;
|
|
4988
5023
|
white-space: nowrap;
|
|
4989
5024
|
text-overflow: ellipsis;
|
|
5025
|
+
max-width: var(--kd-c-checkbox-default-input-label-max-width);
|
|
4990
5026
|
}
|
|
4991
5027
|
.kd-checkbox-children .kd-input-underline {
|
|
4992
5028
|
background-color: transparent;
|
|
@@ -5534,6 +5570,8 @@ template {
|
|
|
5534
5570
|
padding: 8px 0;
|
|
5535
5571
|
max-height: 320px;
|
|
5536
5572
|
overflow-y: auto;
|
|
5573
|
+
-webkit-box-sizing: content-box;
|
|
5574
|
+
box-sizing: content-box;
|
|
5537
5575
|
}
|
|
5538
5576
|
.kd-city-picker-list-item {
|
|
5539
5577
|
position: relative;
|
|
@@ -8007,6 +8045,7 @@ template {
|
|
|
8007
8045
|
white-space: nowrap;
|
|
8008
8046
|
overflow: hidden;
|
|
8009
8047
|
text-overflow: ellipsis;
|
|
8048
|
+
display: block;
|
|
8010
8049
|
}
|
|
8011
8050
|
.kd-filter .kd-filter-header-search {
|
|
8012
8051
|
min-width: 200px;
|
|
@@ -8102,6 +8141,7 @@ template {
|
|
|
8102
8141
|
padding: 11px 0 10px;
|
|
8103
8142
|
color: var(--kd-g-color-text-third, #999);
|
|
8104
8143
|
line-height: 18px;
|
|
8144
|
+
width: var(--kd-c-filter-body-condition-label-width);
|
|
8105
8145
|
}
|
|
8106
8146
|
.kd-filter .kd-filter-body-condition-options {
|
|
8107
8147
|
display: -webkit-box;
|
|
@@ -8131,6 +8171,10 @@ template {
|
|
|
8131
8171
|
border: 1px solid transparent;
|
|
8132
8172
|
cursor: pointer;
|
|
8133
8173
|
white-space: nowrap;
|
|
8174
|
+
max-width: var(--kd-c-filter-body-condition-option-max-width);
|
|
8175
|
+
overflow: hidden;
|
|
8176
|
+
display: inline-block;
|
|
8177
|
+
text-overflow: ellipsis;
|
|
8134
8178
|
}
|
|
8135
8179
|
.kd-filter .kd-filter-body-condition-option:not(:last-child) {
|
|
8136
8180
|
margin-right: 24px;
|
|
@@ -8370,7 +8414,7 @@ template {
|
|
|
8370
8414
|
flex-direction: column;
|
|
8371
8415
|
}
|
|
8372
8416
|
.kd-form-field-vertical .kd-form-field-label {
|
|
8373
|
-
margin-bottom: 5px;
|
|
8417
|
+
margin-bottom: var(--kd-c-form-field-label-spacing-margin-bottom, 5px);
|
|
8374
8418
|
}
|
|
8375
8419
|
.kd-form-field-hidden {
|
|
8376
8420
|
display: none !important;
|
|
@@ -10857,7 +10901,8 @@ textarea {
|
|
|
10857
10901
|
position: relative;
|
|
10858
10902
|
width: 100%;
|
|
10859
10903
|
height: 100%;
|
|
10860
|
-
min-width: 138px;
|
|
10904
|
+
min-width: var(--kd-c-menu-sizing-min-width, 138px);
|
|
10905
|
+
max-width: var(--kd-c-menu-sizing-max-width);
|
|
10861
10906
|
background-color: var(--kd-c-menu-color-background, #343848);
|
|
10862
10907
|
color: var(--kd-c-menu-sub-color-text, rgba(255, 255, 255, 0.65));
|
|
10863
10908
|
}
|
|
@@ -13474,6 +13519,9 @@ textarea {
|
|
|
13474
13519
|
vertical-align: middle;
|
|
13475
13520
|
color: var(--kd-c-radio-color-font, var(--kd-g-color-text-primary, #212121));
|
|
13476
13521
|
font-size: var(--kd-c-radio-font-size, var(--kd-g-font-size-small, 12px));
|
|
13522
|
+
max-width: var(--kd-c-radio-default-label-max-width);
|
|
13523
|
+
overflow: hidden;
|
|
13524
|
+
min-height: var(--kd-c-radio-square-sizing-width-height, 14px);
|
|
13477
13525
|
}
|
|
13478
13526
|
.kd-radio::before {
|
|
13479
13527
|
position: absolute;
|
|
@@ -13605,6 +13653,7 @@ textarea {
|
|
|
13605
13653
|
border: var(--kd-c-radio-radius-border-width, 1px) solid var(--kd-c-radio-color-border, var(--kd-g-color-border-strong, #d9d9d9));
|
|
13606
13654
|
-webkit-transition: all 0.3s;
|
|
13607
13655
|
transition: all 0.3s;
|
|
13656
|
+
max-width: var(--kd-c-radio-square-label-max-width);
|
|
13608
13657
|
}
|
|
13609
13658
|
.kd-radio-square::after {
|
|
13610
13659
|
position: absolute;
|
|
@@ -13697,6 +13746,9 @@ textarea {
|
|
|
13697
13746
|
list-style: none;
|
|
13698
13747
|
-webkit-font-feature-settings: 'tnum';
|
|
13699
13748
|
font-feature-settings: 'tnum';
|
|
13749
|
+
white-space: nowrap;
|
|
13750
|
+
overflow: hidden;
|
|
13751
|
+
text-overflow: ellipsis;
|
|
13700
13752
|
position: relative;
|
|
13701
13753
|
display: inline-block;
|
|
13702
13754
|
height: var(--kd-c-radio-square-sizing-height, 32px);
|
|
@@ -13714,6 +13766,7 @@ textarea {
|
|
|
13714
13766
|
border-left: none;
|
|
13715
13767
|
-webkit-transition: all 0.3s;
|
|
13716
13768
|
transition: all 0.3s;
|
|
13769
|
+
max-width: var(--kd-c-radio-button-label-max-width);
|
|
13717
13770
|
}
|
|
13718
13771
|
.kd-radio-button:first-child {
|
|
13719
13772
|
border-radius: 2px 0 0 2px;
|
|
@@ -14346,6 +14399,7 @@ textarea {
|
|
|
14346
14399
|
overflow: hidden;
|
|
14347
14400
|
white-space: nowrap;
|
|
14348
14401
|
text-overflow: ellipsis;
|
|
14402
|
+
max-width: var(--kd-c-search-tag-sizing-max-width);
|
|
14349
14403
|
}
|
|
14350
14404
|
.kd-quick-search-selection-overflow-item-del {
|
|
14351
14405
|
height: 14px;
|
|
@@ -15099,7 +15153,7 @@ textarea {
|
|
|
15099
15153
|
z-index: var(--kd-c-select-z-index, var(--kd-g-z-index-popper, 1050));
|
|
15100
15154
|
-webkit-box-sizing: border-box;
|
|
15101
15155
|
box-sizing: border-box;
|
|
15102
|
-
padding: 8px 0;
|
|
15156
|
+
padding: var(--kd-c-select-dropdown-spacing-padding-vertical, 8px) 0;
|
|
15103
15157
|
margin: 0;
|
|
15104
15158
|
overflow: auto;
|
|
15105
15159
|
font-size: var(--kd-c-select-dropdown-font-size, 12px);
|
|
@@ -15122,6 +15176,9 @@ textarea {
|
|
|
15122
15176
|
.kd-select-dropdown-search-hidden {
|
|
15123
15177
|
display: none;
|
|
15124
15178
|
}
|
|
15179
|
+
.kd-select-multiple-dropdown-panel .kd-select-dropdown {
|
|
15180
|
+
padding-bottom: 0;
|
|
15181
|
+
}
|
|
15125
15182
|
.kd-select-item {
|
|
15126
15183
|
position: relative;
|
|
15127
15184
|
display: block;
|
|
@@ -15388,8 +15445,8 @@ textarea {
|
|
|
15388
15445
|
align-items: center;
|
|
15389
15446
|
width: 100%;
|
|
15390
15447
|
padding: 0 12px;
|
|
15391
|
-
height:
|
|
15392
|
-
line-height:
|
|
15448
|
+
height: 40px;
|
|
15449
|
+
line-height: 40px;
|
|
15393
15450
|
border-top: 1px solid #d9d9d9;
|
|
15394
15451
|
-webkit-box-sizing: border-box;
|
|
15395
15452
|
box-sizing: border-box;
|
|
@@ -18068,6 +18125,8 @@ textarea {
|
|
|
18068
18125
|
vertical-align: middle;
|
|
18069
18126
|
padding: 0 var(--kd-c-tag-spacing-padding-horizontal-small, 6px);
|
|
18070
18127
|
border-radius: calc(var(--kd-c-tag-sizing-height-small, 20px) / 2);
|
|
18128
|
+
max-width: var(--kd-c-tag-sizing-max-width);
|
|
18129
|
+
min-width: var(--kd-c-tag-sizing-min-width);
|
|
18071
18130
|
}
|
|
18072
18131
|
.kd-tag-size-middle {
|
|
18073
18132
|
font-size: var(--kd-c-tag-font-size-middle, var(--kd-g-font-size-small, 12px));
|
|
@@ -18083,6 +18142,8 @@ textarea {
|
|
|
18083
18142
|
vertical-align: middle;
|
|
18084
18143
|
padding: 0 var(--kd-c-tag-spacing-padding-horizontal-middle, 7px);
|
|
18085
18144
|
border-radius: calc(var(--kd-c-tag-sizing-height-middle, 20px) / 2);
|
|
18145
|
+
max-width: var(--kd-c-tag-sizing-max-width);
|
|
18146
|
+
min-width: var(--kd-c-tag-sizing-min-width);
|
|
18086
18147
|
}
|
|
18087
18148
|
.kd-tag-size-large {
|
|
18088
18149
|
font-size: var(--kd-c-tag-font-size-large, var(--kd-g-font-size-middle, 14px));
|
|
@@ -18098,6 +18159,8 @@ textarea {
|
|
|
18098
18159
|
vertical-align: middle;
|
|
18099
18160
|
padding: 0 var(--kd-c-tag-spacing-padding-horizontal-large, 8px);
|
|
18100
18161
|
border-radius: calc(var(--kd-c-tag-sizing-height-large, 24px) / 2);
|
|
18162
|
+
max-width: var(--kd-c-tag-sizing-max-width);
|
|
18163
|
+
min-width: var(--kd-c-tag-sizing-min-width);
|
|
18101
18164
|
}
|
|
18102
18165
|
.kd-tag-shape-status {
|
|
18103
18166
|
border: 1px solid var(--kd-c-tag-color-process, var(--kd-g-color-ongoing, #276ff5));
|
|
@@ -18647,6 +18710,8 @@ textarea {
|
|
|
18647
18710
|
margin: 0 0 0 calc(2 * (var(--kd-c-timeline-dot-sizing, 9px) - var(--kd-c-timeline-sizing-width, 1px)) + 8px);
|
|
18648
18711
|
word-break: break-word;
|
|
18649
18712
|
color: var(--kd-c-timeline-content-color-text, var(--kd-g-color-text-primary, #212121));
|
|
18713
|
+
max-width: var(--kd-c-timeline-content-sizing-max-width);
|
|
18714
|
+
min-width: var(--kd-c-timeline-content-sizing-min-width);
|
|
18650
18715
|
}
|
|
18651
18716
|
.kd-timeline .kd-timeline-item-content > * {
|
|
18652
18717
|
margin: 0;
|
|
@@ -19101,12 +19166,12 @@ textarea {
|
|
|
19101
19166
|
-webkit-box-direction: normal;
|
|
19102
19167
|
-ms-flex-direction: column;
|
|
19103
19168
|
flex-direction: column;
|
|
19104
|
-
width: 250px;
|
|
19169
|
+
width: var(--kd-c-transfer-list-sizing-width, 250px);
|
|
19105
19170
|
min-height: 300px;
|
|
19106
19171
|
border: 1px solid var(--kd-c-transfer-color-border, var(--kd-g-color-border-strong, #d9d9d9));
|
|
19107
19172
|
}
|
|
19108
19173
|
.kd-transfer-list-with-pagination {
|
|
19109
|
-
width: 250px;
|
|
19174
|
+
width: var(--kd-c-transfer-list-sizing-width, 250px);
|
|
19110
19175
|
height: auto;
|
|
19111
19176
|
}
|
|
19112
19177
|
.kd-transfer-list-header {
|
|
@@ -19962,6 +20027,8 @@ textarea {
|
|
|
19962
20027
|
color: var(--kd-c-tree-color-text, var(--kd-g-color-text-primary, #212121));
|
|
19963
20028
|
margin-left: var(--kd-c-tree-spacing-margin-left, 0px);
|
|
19964
20029
|
padding: var(--kd-c-tree-spacing-padding-vertical, 3px) 0;
|
|
20030
|
+
max-width: var(--kd-c-tree-root-sizing-max-width);
|
|
20031
|
+
min-width: var(--kd-c-tree-root-sizing-min-width);
|
|
19965
20032
|
}
|
|
19966
20033
|
.kd-tree-root {
|
|
19967
20034
|
min-width: 100%;
|