@kdcloudjs/kdesign 1.8.53-stable.3 → 1.8.53-stable.5
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 +5 -0
- package/dist/kdesign.css +4 -1
- package/dist/kdesign.css.map +1 -1
- package/dist/kdesign.js +38 -32
- package/dist/kdesign.js.map +1 -1
- package/dist/kdesign.min.css +2 -2
- package/dist/kdesign.min.js +2 -2
- package/dist/kdesign.min.js.map +1 -1
- package/es/popconfirm/popconfirm.d.ts +1 -1
- package/es/popconfirm/popconfirm.js +4 -2
- package/es/popconfirm/style/index.css +3 -0
- package/es/popconfirm/style/index.less +5 -1
- package/es/tabs/tab-pane.d.ts +1 -0
- package/es/tabs/tab-pane.js +5 -4
- package/lib/popconfirm/popconfirm.d.ts +1 -1
- package/lib/popconfirm/popconfirm.js +4 -2
- package/lib/popconfirm/style/index.css +3 -0
- package/lib/popconfirm/style/index.less +5 -1
- package/lib/tabs/tab-pane.d.ts +1 -0
- package/lib/tabs/tab-pane.js +5 -4
- package/package.json +1 -1
|
@@ -10531,6 +10531,10 @@ textarea {
|
|
|
10531
10531
|
margin-right: @popconfirm-button-spacing;
|
|
10532
10532
|
}
|
|
10533
10533
|
}
|
|
10534
|
+
|
|
10535
|
+
.arrow::before {
|
|
10536
|
+
border-color: @tooltip-background-color;
|
|
10537
|
+
}
|
|
10534
10538
|
}
|
|
10535
10539
|
.@{popconfirm-prefix-cls}-rtl {
|
|
10536
10540
|
direction: rtl;
|
|
@@ -10553,6 +10557,7 @@ textarea {
|
|
|
10553
10557
|
/*! rtl:end:ignore */
|
|
10554
10558
|
|
|
10555
10559
|
|
|
10560
|
+
|
|
10556
10561
|
@popconfirm-custom-prefix: ~'--@{kd-prefix}-c-popconfirm';
|
|
10557
10562
|
|
|
10558
10563
|
// spacing
|
package/dist/kdesign.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/kdesign v1.8.53-stable.
|
|
3
|
+
* @kdcloudjs/kdesign v1.8.53-stable.4
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -16175,6 +16175,9 @@ textarea {
|
|
|
16175
16175
|
.kd-popconfirm-interaction button:not(:last-child) {
|
|
16176
16176
|
margin-right: var(--kd-c-popconfirm-button-spacing, 12px);
|
|
16177
16177
|
}
|
|
16178
|
+
.kd-popconfirm .arrow::before {
|
|
16179
|
+
border-color: #fff;
|
|
16180
|
+
}
|
|
16178
16181
|
.kd-popconfirm-rtl {
|
|
16179
16182
|
direction: rtl;
|
|
16180
16183
|
}
|