@kdcloudjs/kdesign 1.0.4 → 1.1.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 +77 -59
- package/dist/kdesign.css +64 -60
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +30 -46
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +3 -3
- package/dist/kdesign.min.js +6 -6
- package/dist/kdesign.min.js.map +1 -1
- package/es/anchor/style/index.css +5 -0
- package/es/anchor/style/index.less +5 -0
- package/es/button/style/index.css +4 -4
- package/es/button/style/index.less +1 -1
- package/es/button/style/token.less +9 -9
- package/es/card/card.d.ts +1 -0
- package/es/card/card.js +4 -1
- package/es/card/style/index.css +16 -0
- package/es/card/style/index.less +19 -0
- package/es/config-provider/compDefaultProps.d.ts +0 -1
- package/es/config-provider/compDefaultProps.js +1 -2
- package/es/drawer/drawer.d.ts +0 -1
- package/es/drawer/drawer.js +6 -26
- package/es/drawer/style/index.css +8 -11
- package/es/drawer/style/index.less +7 -9
- package/es/drawer/style/token.less +3 -1
- package/es/dropdown/dropdown.d.ts +1 -0
- package/es/dropdown/dropdown.js +9 -6
- package/es/dropdown/menu.d.ts +1 -1
- package/es/dropdown/menu.js +3 -3
- package/es/menu/menuItem.js +1 -2
- package/es/notification/content.js +1 -1
- package/es/notification/style/index.css +1 -1
- package/es/notification/style/index.less +1 -1
- package/es/pagination/pagination.js +2 -2
- package/es/split-panel/style/index.css +24 -42
- package/es/split-panel/style/index.less +14 -33
- package/es/split-panel/style/token.less +15 -4
- package/es/transfer/operation.js +2 -2
- package/es/transfer/style/index.css +5 -1
- package/es/transfer/style/index.less +4 -0
- package/es/transfer/style/token.less +1 -1
- package/lib/anchor/style/index.css +5 -0
- package/lib/anchor/style/index.less +5 -0
- package/lib/button/style/index.css +4 -4
- package/lib/button/style/index.less +1 -1
- package/lib/button/style/token.less +9 -9
- package/lib/card/card.d.ts +1 -0
- package/lib/card/card.js +4 -1
- package/lib/card/style/index.css +16 -0
- package/lib/card/style/index.less +19 -0
- package/lib/config-provider/compDefaultProps.d.ts +0 -1
- package/lib/config-provider/compDefaultProps.js +1 -2
- package/lib/drawer/drawer.d.ts +0 -1
- package/lib/drawer/drawer.js +6 -26
- package/lib/drawer/style/index.css +8 -11
- package/lib/drawer/style/index.less +7 -9
- package/lib/drawer/style/token.less +3 -1
- package/lib/dropdown/dropdown.d.ts +1 -0
- package/lib/dropdown/dropdown.js +9 -6
- package/lib/dropdown/menu.d.ts +1 -1
- package/lib/dropdown/menu.js +3 -3
- package/lib/menu/menuItem.js +1 -2
- package/lib/notification/content.js +1 -1
- package/lib/notification/style/index.css +1 -1
- package/lib/notification/style/index.less +1 -1
- package/lib/pagination/pagination.js +2 -2
- package/lib/split-panel/style/index.css +24 -42
- package/lib/split-panel/style/index.less +14 -33
- package/lib/split-panel/style/token.less +15 -4
- package/lib/transfer/operation.js +2 -2
- package/lib/transfer/style/index.css +5 -1
- package/lib/transfer/style/index.less +4 -0
- package/lib/transfer/style/token.less +1 -1
- package/package.json +1 -1
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
// text
|
|
25
25
|
@transfer-list-item-checked: var(~'@{transfer-custom-prefix}-list-item-color-text-checked', @color-theme);
|
|
26
26
|
@transfer-list-item-disabled: var(~'@{transfer-custom-prefix}-list-item-color-text-disabled', @color-disabled);
|
|
27
|
-
@transfer-search-prefix-icon-color: var(~'@{transfer-custom-prefix}-search-icon-color-text-prefix',
|
|
27
|
+
@transfer-search-prefix-icon-color: var(~'@{transfer-custom-prefix}-search-icon-color-text-prefix', #999);
|
|
28
28
|
@transfer-search-suffix-icon-color: var(~'@{transfer-custom-prefix}-search-icon-color-text-suffix', #bbb);
|
|
29
29
|
@transfer-search-suffix-icon-color-hover: var(~'@{transfer-custom-prefix}-search-icon-color-text-suffix-hover', #999);
|