@kdcloudjs/kdesign 1.8.55 → 1.8.56
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 +32 -16
- 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/_utils/usePopper.js +27 -12
- 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/lib/_utils/usePopper.js +27 -12
- 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/package.json +1 -1
|
@@ -10550,6 +10550,10 @@ textarea {
|
|
|
10550
10550
|
margin-right: @popconfirm-button-spacing;
|
|
10551
10551
|
}
|
|
10552
10552
|
}
|
|
10553
|
+
|
|
10554
|
+
.arrow::before {
|
|
10555
|
+
border-color: @tooltip-background-color;
|
|
10556
|
+
}
|
|
10553
10557
|
}
|
|
10554
10558
|
.@{popconfirm-prefix-cls}-rtl {
|
|
10555
10559
|
direction: rtl;
|
|
@@ -10572,6 +10576,7 @@ textarea {
|
|
|
10572
10576
|
/*! rtl:end:ignore */
|
|
10573
10577
|
|
|
10574
10578
|
|
|
10579
|
+
|
|
10575
10580
|
@popconfirm-custom-prefix: ~'--@{kd-prefix}-c-popconfirm';
|
|
10576
10581
|
|
|
10577
10582
|
// spacing
|
package/dist/kdesign.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/kdesign v1.8.
|
|
3
|
+
* @kdcloudjs/kdesign v1.8.56
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -16197,6 +16197,9 @@ textarea {
|
|
|
16197
16197
|
.kd-popconfirm-interaction button:not(:last-child) {
|
|
16198
16198
|
margin-right: var(--kd-c-popconfirm-button-spacing, 12px);
|
|
16199
16199
|
}
|
|
16200
|
+
.kd-popconfirm .arrow::before {
|
|
16201
|
+
border-color: #fff;
|
|
16202
|
+
}
|
|
16200
16203
|
.kd-popconfirm-rtl {
|
|
16201
16204
|
direction: rtl;
|
|
16202
16205
|
}
|