acud 1.2.16 → 1.2.18
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/acud.js +12437 -19476
- package/dist/acud.js.map +1 -1
- package/es/menu/style/index.css +1 -1
- package/es/menu/style/index.less +1 -1
- package/es/pagination/style/index.css +6 -0
- package/es/pagination/style/index.less +10 -0
- package/es/style/themes/default/components/tabs.less +1 -1
- package/es/tabs/style/index.css +1 -1
- package/es/tree-select/index.js +4 -3
- package/lib/menu/style/index.css +1 -1
- package/lib/menu/style/index.less +1 -1
- package/lib/pagination/style/index.css +6 -0
- package/lib/pagination/style/index.less +10 -0
- package/lib/style/themes/default/components/tabs.less +1 -1
- package/lib/tabs/style/index.css +1 -1
- package/lib/tree-select/index.js +4 -3
- package/package.json +1 -1
- package/dist/acud.css +0 -27654
- package/dist/acud.css.map +0 -1
- package/dist/acud.min.css +0 -2
- package/dist/acud.min.css.map +0 -1
- package/dist/acud.min.js +0 -144
- package/dist/acud.min.js.map +0 -1
package/es/menu/style/index.css
CHANGED
package/es/menu/style/index.less
CHANGED
|
@@ -960,6 +960,12 @@
|
|
|
960
960
|
.acud-pagination.acud-pagination-disabled .acud-pagination-item-ellipsis {
|
|
961
961
|
opacity: 1;
|
|
962
962
|
}
|
|
963
|
+
.acud-pagination-simple-pager {
|
|
964
|
+
line-height: 32px;
|
|
965
|
+
}
|
|
966
|
+
.acud-pagination-simple-pager input {
|
|
967
|
+
text-align: center;
|
|
968
|
+
}
|
|
963
969
|
@media only screen and (max-width: 992px) {
|
|
964
970
|
.acud-pagination-item-after-jump-prev,
|
|
965
971
|
.acud-pagination-item-before-jump-next {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
@tabs-horizontal-gutter: 32px;
|
|
25
25
|
@tabs-horizontal-margin: 0 0 0 @tabs-horizontal-gutter;
|
|
26
26
|
@tabs-horizontal-margin-rtl: 0 0 0 32px;
|
|
27
|
-
@tabs-horizontal-padding: @padding-sm
|
|
27
|
+
@tabs-horizontal-padding: @padding-sm 0;
|
|
28
28
|
@tabs-horizontal-padding-lg: @padding-md 0;
|
|
29
29
|
@tabs-horizontal-padding-sm: @padding-xs 0;
|
|
30
30
|
@tabs-vertical-padding: @padding-xs @padding-lg;
|
package/es/tabs/style/index.css
CHANGED
package/es/tree-select/index.js
CHANGED
|
@@ -52,6 +52,7 @@ var InternalTreeSelect = function InternalTreeSelect(_a, ref) {
|
|
|
52
52
|
listItemHeight = _a$listItemHeight === void 0 ? 26 : _a$listItemHeight,
|
|
53
53
|
placement = _a.placement,
|
|
54
54
|
notFoundContent = _a.notFoundContent,
|
|
55
|
+
switcherIcon = _a.switcherIcon,
|
|
55
56
|
treeLine = _a.treeLine,
|
|
56
57
|
getPopupContainer = _a.getPopupContainer,
|
|
57
58
|
dropdownClassName = _a.dropdownClassName,
|
|
@@ -63,7 +64,7 @@ var InternalTreeSelect = function InternalTreeSelect(_a, ref) {
|
|
|
63
64
|
customStatus = _a.status,
|
|
64
65
|
showArrow = _a.showArrow,
|
|
65
66
|
treeExpandAction = _a.treeExpandAction,
|
|
66
|
-
props = __rest(_a, ["prefixCls", "size", "disabled", "bordered", "className", "treeCheckable", "multiple", "listHeight", "listItemHeight", "placement", "notFoundContent", "treeLine", "getPopupContainer", "dropdownClassName", "treeIcon", "transitionName", "choiceTransitionName", "status", "showArrow", "treeExpandAction"]);
|
|
67
|
+
props = __rest(_a, ["prefixCls", "size", "disabled", "bordered", "className", "treeCheckable", "multiple", "listHeight", "listItemHeight", "placement", "notFoundContent", "switcherIcon", "treeLine", "getPopupContainer", "dropdownClassName", "treeIcon", "transitionName", "choiceTransitionName", "status", "showArrow", "treeExpandAction"]);
|
|
67
68
|
var _React$useContext = React.useContext(ConfigContext),
|
|
68
69
|
getContextPopupContainer = _React$useContext.getPopupContainer,
|
|
69
70
|
getPrefixCls = _React$useContext.getPrefixCls,
|
|
@@ -138,9 +139,9 @@ var InternalTreeSelect = function InternalTreeSelect(_a, ref) {
|
|
|
138
139
|
placement: getPlacement(),
|
|
139
140
|
removeIcon: removeIcon,
|
|
140
141
|
clearIcon: clearIcon,
|
|
141
|
-
switcherIcon: function
|
|
142
|
+
switcherIcon: !switcherIcon ? function (nodeProps) {
|
|
142
143
|
return renderSwitcherIcon(treePrefixCls, null, false, nodeProps);
|
|
143
|
-
},
|
|
144
|
+
} : switcherIcon,
|
|
144
145
|
showTreeIcon: treeIcon,
|
|
145
146
|
notFoundContent: mergedNotFound,
|
|
146
147
|
getPopupContainer: getPopupContainer || getContextPopupContainer,
|
package/lib/menu/style/index.css
CHANGED
|
@@ -960,6 +960,12 @@
|
|
|
960
960
|
.acud-pagination.acud-pagination-disabled .acud-pagination-item-ellipsis {
|
|
961
961
|
opacity: 1;
|
|
962
962
|
}
|
|
963
|
+
.acud-pagination-simple-pager {
|
|
964
|
+
line-height: 32px;
|
|
965
|
+
}
|
|
966
|
+
.acud-pagination-simple-pager input {
|
|
967
|
+
text-align: center;
|
|
968
|
+
}
|
|
963
969
|
@media only screen and (max-width: 992px) {
|
|
964
970
|
.acud-pagination-item-after-jump-prev,
|
|
965
971
|
.acud-pagination-item-before-jump-next {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
@tabs-horizontal-gutter: 32px;
|
|
25
25
|
@tabs-horizontal-margin: 0 0 0 @tabs-horizontal-gutter;
|
|
26
26
|
@tabs-horizontal-margin-rtl: 0 0 0 32px;
|
|
27
|
-
@tabs-horizontal-padding: @padding-sm
|
|
27
|
+
@tabs-horizontal-padding: @padding-sm 0;
|
|
28
28
|
@tabs-horizontal-padding-lg: @padding-md 0;
|
|
29
29
|
@tabs-horizontal-padding-sm: @padding-xs 0;
|
|
30
30
|
@tabs-vertical-padding: @padding-xs @padding-lg;
|
package/lib/tabs/style/index.css
CHANGED
package/lib/tree-select/index.js
CHANGED
|
@@ -68,6 +68,7 @@ var InternalTreeSelect = function InternalTreeSelect(_a, ref) {
|
|
|
68
68
|
listItemHeight = _a$listItemHeight === void 0 ? 26 : _a$listItemHeight,
|
|
69
69
|
placement = _a.placement,
|
|
70
70
|
notFoundContent = _a.notFoundContent,
|
|
71
|
+
switcherIcon = _a.switcherIcon,
|
|
71
72
|
treeLine = _a.treeLine,
|
|
72
73
|
getPopupContainer = _a.getPopupContainer,
|
|
73
74
|
dropdownClassName = _a.dropdownClassName,
|
|
@@ -79,7 +80,7 @@ var InternalTreeSelect = function InternalTreeSelect(_a, ref) {
|
|
|
79
80
|
customStatus = _a.status,
|
|
80
81
|
showArrow = _a.showArrow,
|
|
81
82
|
treeExpandAction = _a.treeExpandAction,
|
|
82
|
-
props = __rest(_a, ["prefixCls", "size", "disabled", "bordered", "className", "treeCheckable", "multiple", "listHeight", "listItemHeight", "placement", "notFoundContent", "treeLine", "getPopupContainer", "dropdownClassName", "treeIcon", "transitionName", "choiceTransitionName", "status", "showArrow", "treeExpandAction"]);
|
|
83
|
+
props = __rest(_a, ["prefixCls", "size", "disabled", "bordered", "className", "treeCheckable", "multiple", "listHeight", "listItemHeight", "placement", "notFoundContent", "switcherIcon", "treeLine", "getPopupContainer", "dropdownClassName", "treeIcon", "transitionName", "choiceTransitionName", "status", "showArrow", "treeExpandAction"]);
|
|
83
84
|
var _React$useContext = React.useContext(_configProvider.ConfigContext),
|
|
84
85
|
getContextPopupContainer = _React$useContext.getPopupContainer,
|
|
85
86
|
getPrefixCls = _React$useContext.getPrefixCls,
|
|
@@ -154,9 +155,9 @@ var InternalTreeSelect = function InternalTreeSelect(_a, ref) {
|
|
|
154
155
|
placement: getPlacement(),
|
|
155
156
|
removeIcon: removeIcon,
|
|
156
157
|
clearIcon: clearIcon,
|
|
157
|
-
switcherIcon: function
|
|
158
|
+
switcherIcon: !switcherIcon ? function (nodeProps) {
|
|
158
159
|
return (0, _iconHelper.renderSwitcherIcon)(treePrefixCls, null, false, nodeProps);
|
|
159
|
-
},
|
|
160
|
+
} : switcherIcon,
|
|
160
161
|
showTreeIcon: treeIcon,
|
|
161
162
|
notFoundContent: mergedNotFound,
|
|
162
163
|
getPopupContainer: getPopupContainer || getContextPopupContainer,
|