bm-admin-ui 1.0.7-alpha → 1.0.10-alpha
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/es/components/feedback/index.js +6 -19
- package/es/components/multi-cascader-compose/index.js +4 -17
- package/es/components/search-filter/index.d.ts +28 -1
- package/es/components/search-filter/index.js +69 -51
- package/es/components/search-filter/src/{serach-filter.d.ts → search-filter.d.ts} +12 -0
- package/es/components/search-filter/src/search-filter.vue.d.ts +28 -1
- package/es/components/search-filter/src/search-reset-btn.vue.d.ts +14 -0
- package/es/components/shops-filter/index.js +4 -17
- package/es/components/staffs-selector/index.js +4 -17
- package/es/components/upload/index.js +4 -17
- package/index.esm.js +37019 -969
- package/index.js +37017 -967
- package/lib/components/feedback/index.js +5 -18
- package/lib/components/multi-cascader-compose/index.js +4 -17
- package/lib/components/search-filter/index.d.ts +28 -1
- package/lib/components/search-filter/index.js +69 -51
- package/lib/components/search-filter/src/{serach-filter.d.ts → search-filter.d.ts} +12 -0
- package/lib/components/search-filter/src/search-filter.vue.d.ts +28 -1
- package/lib/components/search-filter/src/search-reset-btn.vue.d.ts +14 -0
- package/lib/components/shops-filter/index.js +4 -17
- package/lib/components/staffs-selector/index.js +4 -17
- package/lib/components/upload/index.js +4 -17
- package/package.json +29 -29
- package/theme-chalk/button.css +1 -1
- package/theme-chalk/feedback.css +1 -0
- package/theme-chalk/float-table.css +1 -0
- package/theme-chalk/floating-vue.css +1 -0
- package/theme-chalk/flow-designer.css +1 -0
- package/theme-chalk/index.css +1 -0
- package/theme-chalk/modal.css +1 -0
- package/theme-chalk/multi-cascader-compose.css +1 -0
- package/theme-chalk/over-tooltips.css +1 -0
- package/theme-chalk/search-filter.css +1 -0
- package/theme-chalk/shops-filter.css +1 -0
- package/theme-chalk/staffs-selector.css +1 -0
- package/theme-chalk/timeline.css +1 -0
- package/theme-chalk/upload.css +1 -0
- package/types/components/search-filter/index.d.ts +28 -1
- package/types/components/search-filter/src/{serach-filter.d.ts → search-filter.d.ts} +12 -0
- package/types/components/search-filter/src/search-filter.vue.d.ts +28 -1
- package/types/components/search-filter/src/search-reset-btn.vue.d.ts +14 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { notification, Modal, Button } from 'ant-design-vue';
|
|
2
2
|
import { withInstall } from 'bm-admin-ui/es/utils/with-install';
|
|
3
3
|
import { h, nextTick, createVNode, defineComponent, computed, openBlock, createBlock, unref, withCtx, resolveDynamicComponent, renderSlot, useSlots, resolveComponent, createSlots, createElementVNode, createTextVNode } from 'vue';
|
|
4
4
|
import AAlert from 'ant-design-vue/lib/alert';
|
|
5
5
|
import AModal$1 from 'ant-design-vue/lib/modal';
|
|
6
6
|
import message from 'ant-design-vue/lib/message';
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
/******************************************************************************
|
|
9
9
|
Copyright (c) Microsoft Corporation.
|
|
10
10
|
|
|
11
11
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
@@ -94,7 +94,7 @@ function boundAlpha(a) {
|
|
|
94
94
|
*/
|
|
95
95
|
function convertToPercentage(n) {
|
|
96
96
|
if (n <= 1) {
|
|
97
|
-
return Number(n) * 100
|
|
97
|
+
return "".concat(Number(n) * 100, "%");
|
|
98
98
|
}
|
|
99
99
|
return n;
|
|
100
100
|
}
|
|
@@ -476,12 +476,12 @@ var CSS_INTEGER = '[-\\+]?\\d+%?';
|
|
|
476
476
|
// <http://www.w3.org/TR/css3-values/#number-value>
|
|
477
477
|
var CSS_NUMBER = '[-\\+]?\\d*\\.\\d+%?';
|
|
478
478
|
// Allow positive/negative integer/number. Don't capture the either/or, just the entire outcome.
|
|
479
|
-
var CSS_UNIT = "(?:"
|
|
479
|
+
var CSS_UNIT = "(?:".concat(CSS_NUMBER, ")|(?:").concat(CSS_INTEGER, ")");
|
|
480
480
|
// Actual matching.
|
|
481
481
|
// Parentheses and commas are optional, but not required.
|
|
482
482
|
// Whitespace can take the place of commas or opening paren
|
|
483
|
-
var PERMISSIVE_MATCH3 = "[\\s|\\(]+("
|
|
484
|
-
var PERMISSIVE_MATCH4 = "[\\s|\\(]+("
|
|
483
|
+
var PERMISSIVE_MATCH3 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
|
|
484
|
+
var PERMISSIVE_MATCH4 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
|
|
485
485
|
var matchers = {
|
|
486
486
|
CSS_UNIT: new RegExp(CSS_UNIT),
|
|
487
487
|
rgb: new RegExp('rgb' + PERMISSIVE_MATCH3),
|
|
@@ -806,19 +806,6 @@ Object.keys(presetPrimaryColors).forEach(function (key) {
|
|
|
806
806
|
});
|
|
807
807
|
presetDarkPalettes[key].primary = presetDarkPalettes[key][5];
|
|
808
808
|
});
|
|
809
|
-
presetPalettes.red;
|
|
810
|
-
presetPalettes.volcano;
|
|
811
|
-
presetPalettes.gold;
|
|
812
|
-
presetPalettes.orange;
|
|
813
|
-
presetPalettes.yellow;
|
|
814
|
-
presetPalettes.lime;
|
|
815
|
-
presetPalettes.green;
|
|
816
|
-
presetPalettes.cyan;
|
|
817
|
-
presetPalettes.blue;
|
|
818
|
-
presetPalettes.geekblue;
|
|
819
|
-
presetPalettes.purple;
|
|
820
|
-
presetPalettes.magenta;
|
|
821
|
-
presetPalettes.grey;
|
|
822
809
|
|
|
823
810
|
// https://github.com/substack/insert-css
|
|
824
811
|
var containers = []; // will store container HTMLElement references
|
|
@@ -65,7 +65,7 @@ function boundAlpha(a) {
|
|
|
65
65
|
*/
|
|
66
66
|
function convertToPercentage(n) {
|
|
67
67
|
if (n <= 1) {
|
|
68
|
-
return Number(n) * 100
|
|
68
|
+
return "".concat(Number(n) * 100, "%");
|
|
69
69
|
}
|
|
70
70
|
return n;
|
|
71
71
|
}
|
|
@@ -447,12 +447,12 @@ var CSS_INTEGER = '[-\\+]?\\d+%?';
|
|
|
447
447
|
// <http://www.w3.org/TR/css3-values/#number-value>
|
|
448
448
|
var CSS_NUMBER = '[-\\+]?\\d*\\.\\d+%?';
|
|
449
449
|
// Allow positive/negative integer/number. Don't capture the either/or, just the entire outcome.
|
|
450
|
-
var CSS_UNIT = "(?:"
|
|
450
|
+
var CSS_UNIT = "(?:".concat(CSS_NUMBER, ")|(?:").concat(CSS_INTEGER, ")");
|
|
451
451
|
// Actual matching.
|
|
452
452
|
// Parentheses and commas are optional, but not required.
|
|
453
453
|
// Whitespace can take the place of commas or opening paren
|
|
454
|
-
var PERMISSIVE_MATCH3 = "[\\s|\\(]+("
|
|
455
|
-
var PERMISSIVE_MATCH4 = "[\\s|\\(]+("
|
|
454
|
+
var PERMISSIVE_MATCH3 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
|
|
455
|
+
var PERMISSIVE_MATCH4 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
|
|
456
456
|
var matchers = {
|
|
457
457
|
CSS_UNIT: new RegExp(CSS_UNIT),
|
|
458
458
|
rgb: new RegExp('rgb' + PERMISSIVE_MATCH3),
|
|
@@ -777,19 +777,6 @@ Object.keys(presetPrimaryColors).forEach(function (key) {
|
|
|
777
777
|
});
|
|
778
778
|
presetDarkPalettes[key].primary = presetDarkPalettes[key][5];
|
|
779
779
|
});
|
|
780
|
-
presetPalettes.red;
|
|
781
|
-
presetPalettes.volcano;
|
|
782
|
-
presetPalettes.gold;
|
|
783
|
-
presetPalettes.orange;
|
|
784
|
-
presetPalettes.yellow;
|
|
785
|
-
presetPalettes.lime;
|
|
786
|
-
presetPalettes.green;
|
|
787
|
-
presetPalettes.cyan;
|
|
788
|
-
presetPalettes.blue;
|
|
789
|
-
presetPalettes.geekblue;
|
|
790
|
-
presetPalettes.purple;
|
|
791
|
-
presetPalettes.magenta;
|
|
792
|
-
presetPalettes.grey;
|
|
793
780
|
|
|
794
781
|
// https://github.com/substack/insert-css
|
|
795
782
|
var containers = []; // will store container HTMLElement references
|
|
@@ -3,6 +3,10 @@ declare const BmSearchFilter: import("bm-admin-ui/es/utils/with-install").SFCWit
|
|
|
3
3
|
type: BooleanConstructor;
|
|
4
4
|
default: boolean;
|
|
5
5
|
};
|
|
6
|
+
showSearchIcon: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
6
10
|
userRule: {
|
|
7
11
|
type: ArrayConstructor;
|
|
8
12
|
default(): never[];
|
|
@@ -21,6 +25,10 @@ declare const BmSearchFilter: import("bm-admin-ui/es/utils/with-install").SFCWit
|
|
|
21
25
|
type: ObjectConstructor;
|
|
22
26
|
default(): {};
|
|
23
27
|
};
|
|
28
|
+
gutter: {
|
|
29
|
+
type: ArrayConstructor;
|
|
30
|
+
default(): number[];
|
|
31
|
+
};
|
|
24
32
|
fixedCount: {
|
|
25
33
|
type: NumberConstructor;
|
|
26
34
|
default: number;
|
|
@@ -39,6 +47,10 @@ declare const BmSearchFilter: import("bm-admin-ui/es/utils/with-install").SFCWit
|
|
|
39
47
|
type: BooleanConstructor;
|
|
40
48
|
default: boolean;
|
|
41
49
|
};
|
|
50
|
+
showSearchIcon: {
|
|
51
|
+
type: BooleanConstructor;
|
|
52
|
+
default: boolean;
|
|
53
|
+
};
|
|
42
54
|
userRule: {
|
|
43
55
|
type: ArrayConstructor;
|
|
44
56
|
default(): never[];
|
|
@@ -57,6 +69,10 @@ declare const BmSearchFilter: import("bm-admin-ui/es/utils/with-install").SFCWit
|
|
|
57
69
|
type: ObjectConstructor;
|
|
58
70
|
default(): {};
|
|
59
71
|
};
|
|
72
|
+
gutter: {
|
|
73
|
+
type: ArrayConstructor;
|
|
74
|
+
default(): number[];
|
|
75
|
+
};
|
|
60
76
|
fixedCount: {
|
|
61
77
|
type: NumberConstructor;
|
|
62
78
|
default: number;
|
|
@@ -81,6 +97,7 @@ declare const BmSearchFilter: import("bm-admin-ui/es/utils/with-install").SFCWit
|
|
|
81
97
|
type: string;
|
|
82
98
|
props: {
|
|
83
99
|
showExpandBtn: boolean;
|
|
100
|
+
showSearchIcon: boolean;
|
|
84
101
|
};
|
|
85
102
|
on: {
|
|
86
103
|
submit: () => void;
|
|
@@ -94,7 +111,7 @@ declare const BmSearchFilter: import("bm-admin-ui/es/utils/with-install").SFCWit
|
|
|
94
111
|
span: number;
|
|
95
112
|
};
|
|
96
113
|
row: {
|
|
97
|
-
gutter:
|
|
114
|
+
gutter: unknown[];
|
|
98
115
|
};
|
|
99
116
|
form: {
|
|
100
117
|
labelCol: Record<string, any>;
|
|
@@ -116,6 +133,10 @@ declare const BmSearchFilter: import("bm-admin-ui/es/utils/with-install").SFCWit
|
|
|
116
133
|
type: BooleanConstructor;
|
|
117
134
|
default: boolean;
|
|
118
135
|
};
|
|
136
|
+
showSearchIcon: {
|
|
137
|
+
type: BooleanConstructor;
|
|
138
|
+
default: boolean;
|
|
139
|
+
};
|
|
119
140
|
userRule: {
|
|
120
141
|
type: ArrayConstructor;
|
|
121
142
|
default(): never[];
|
|
@@ -134,6 +155,10 @@ declare const BmSearchFilter: import("bm-admin-ui/es/utils/with-install").SFCWit
|
|
|
134
155
|
type: ObjectConstructor;
|
|
135
156
|
default(): {};
|
|
136
157
|
};
|
|
158
|
+
gutter: {
|
|
159
|
+
type: ArrayConstructor;
|
|
160
|
+
default(): number[];
|
|
161
|
+
};
|
|
137
162
|
fixedCount: {
|
|
138
163
|
type: NumberConstructor;
|
|
139
164
|
default: number;
|
|
@@ -154,9 +179,11 @@ declare const BmSearchFilter: import("bm-admin-ui/es/utils/with-install").SFCWit
|
|
|
154
179
|
}, {
|
|
155
180
|
value: Record<string, any>;
|
|
156
181
|
showExpandBtn: boolean;
|
|
182
|
+
showSearchIcon: boolean;
|
|
157
183
|
userRule: unknown[];
|
|
158
184
|
labelCol: Record<string, any>;
|
|
159
185
|
ruleSpan: Record<string, any>;
|
|
186
|
+
gutter: unknown[];
|
|
160
187
|
fixedCount: number;
|
|
161
188
|
fixedFields: string[];
|
|
162
189
|
expandPlacement: "left" | "right";
|
|
@@ -66,7 +66,7 @@ function boundAlpha(a) {
|
|
|
66
66
|
*/
|
|
67
67
|
function convertToPercentage(n) {
|
|
68
68
|
if (n <= 1) {
|
|
69
|
-
return Number(n) * 100
|
|
69
|
+
return "".concat(Number(n) * 100, "%");
|
|
70
70
|
}
|
|
71
71
|
return n;
|
|
72
72
|
}
|
|
@@ -448,12 +448,12 @@ var CSS_INTEGER = '[-\\+]?\\d+%?';
|
|
|
448
448
|
// <http://www.w3.org/TR/css3-values/#number-value>
|
|
449
449
|
var CSS_NUMBER = '[-\\+]?\\d*\\.\\d+%?';
|
|
450
450
|
// Allow positive/negative integer/number. Don't capture the either/or, just the entire outcome.
|
|
451
|
-
var CSS_UNIT = "(?:"
|
|
451
|
+
var CSS_UNIT = "(?:".concat(CSS_NUMBER, ")|(?:").concat(CSS_INTEGER, ")");
|
|
452
452
|
// Actual matching.
|
|
453
453
|
// Parentheses and commas are optional, but not required.
|
|
454
454
|
// Whitespace can take the place of commas or opening paren
|
|
455
|
-
var PERMISSIVE_MATCH3 = "[\\s|\\(]+("
|
|
456
|
-
var PERMISSIVE_MATCH4 = "[\\s|\\(]+("
|
|
455
|
+
var PERMISSIVE_MATCH3 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
|
|
456
|
+
var PERMISSIVE_MATCH4 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
|
|
457
457
|
var matchers = {
|
|
458
458
|
CSS_UNIT: new RegExp(CSS_UNIT),
|
|
459
459
|
rgb: new RegExp('rgb' + PERMISSIVE_MATCH3),
|
|
@@ -778,19 +778,6 @@ Object.keys(presetPrimaryColors).forEach(function (key) {
|
|
|
778
778
|
});
|
|
779
779
|
presetDarkPalettes[key].primary = presetDarkPalettes[key][5];
|
|
780
780
|
});
|
|
781
|
-
presetPalettes.red;
|
|
782
|
-
presetPalettes.volcano;
|
|
783
|
-
presetPalettes.gold;
|
|
784
|
-
presetPalettes.orange;
|
|
785
|
-
presetPalettes.yellow;
|
|
786
|
-
presetPalettes.lime;
|
|
787
|
-
presetPalettes.green;
|
|
788
|
-
presetPalettes.cyan;
|
|
789
|
-
presetPalettes.blue;
|
|
790
|
-
presetPalettes.geekblue;
|
|
791
|
-
presetPalettes.purple;
|
|
792
|
-
presetPalettes.magenta;
|
|
793
|
-
presetPalettes.grey;
|
|
794
781
|
|
|
795
782
|
// https://github.com/substack/insert-css
|
|
796
783
|
var containers = []; // will store container HTMLElement references
|
|
@@ -852,9 +839,9 @@ function insertCss(css, options) {
|
|
|
852
839
|
return styleElement;
|
|
853
840
|
}
|
|
854
841
|
|
|
855
|
-
function _objectSpread$
|
|
842
|
+
function _objectSpread$8(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$8(target, key, source[key]); }); } return target; }
|
|
856
843
|
|
|
857
|
-
function _defineProperty$
|
|
844
|
+
function _defineProperty$8(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
858
845
|
function warn(valid, message) {
|
|
859
846
|
// Support uglify
|
|
860
847
|
if (process.env.NODE_ENV !== 'production' && !valid && console !== undefined) {
|
|
@@ -870,14 +857,14 @@ function isIconDefinition(target) {
|
|
|
870
857
|
}
|
|
871
858
|
function generate(node, key, rootProps) {
|
|
872
859
|
if (!rootProps) {
|
|
873
|
-
return h(node.tag, _objectSpread$
|
|
860
|
+
return h(node.tag, _objectSpread$8({
|
|
874
861
|
key: key
|
|
875
862
|
}, node.attrs), (node.children || []).map(function (child, index) {
|
|
876
863
|
return generate(child, "".concat(key, "-").concat(node.tag, "-").concat(index));
|
|
877
864
|
}));
|
|
878
865
|
}
|
|
879
866
|
|
|
880
|
-
return h(node.tag, _objectSpread$
|
|
867
|
+
return h(node.tag, _objectSpread$8({
|
|
881
868
|
key: key
|
|
882
869
|
}, rootProps, node.attrs), (node.children || []).map(function (child, index) {
|
|
883
870
|
return generate(child, "".concat(key, "-").concat(node.tag, "-").concat(index));
|
|
@@ -917,9 +904,9 @@ function _objectWithoutProperties$1(source, excluded) { if (source == null) retu
|
|
|
917
904
|
|
|
918
905
|
function _objectWithoutPropertiesLoose$1(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
919
906
|
|
|
920
|
-
function _objectSpread$
|
|
907
|
+
function _objectSpread$7(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$7(target, key, source[key]); }); } return target; }
|
|
921
908
|
|
|
922
|
-
function _defineProperty$
|
|
909
|
+
function _defineProperty$7(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
923
910
|
var twoToneColorPalette = {
|
|
924
911
|
primaryColor: '#333',
|
|
925
912
|
secondaryColor: '#E6E6E6',
|
|
@@ -935,11 +922,11 @@ function setTwoToneColors(_ref) {
|
|
|
935
922
|
}
|
|
936
923
|
|
|
937
924
|
function getTwoToneColors() {
|
|
938
|
-
return _objectSpread$
|
|
925
|
+
return _objectSpread$7({}, twoToneColorPalette);
|
|
939
926
|
}
|
|
940
927
|
|
|
941
928
|
var IconBase = function IconBase(props, context) {
|
|
942
|
-
var _props$context$attrs = _objectSpread$
|
|
929
|
+
var _props$context$attrs = _objectSpread$7({}, props, context.attrs),
|
|
943
930
|
icon = _props$context$attrs.icon,
|
|
944
931
|
primaryColor = _props$context$attrs.primaryColor,
|
|
945
932
|
secondaryColor = _props$context$attrs.secondaryColor,
|
|
@@ -964,12 +951,12 @@ var IconBase = function IconBase(props, context) {
|
|
|
964
951
|
var target = icon;
|
|
965
952
|
|
|
966
953
|
if (target && typeof target.icon === 'function') {
|
|
967
|
-
target = _objectSpread$
|
|
954
|
+
target = _objectSpread$7({}, target, {
|
|
968
955
|
icon: target.icon(colors.primaryColor, colors.secondaryColor)
|
|
969
956
|
});
|
|
970
957
|
}
|
|
971
958
|
|
|
972
|
-
return generate(target.icon, "svg-".concat(target.name), _objectSpread$
|
|
959
|
+
return generate(target.icon, "svg-".concat(target.name), _objectSpread$7({}, restProps, {
|
|
973
960
|
'data-icon': target.name,
|
|
974
961
|
width: '1em',
|
|
975
962
|
height: '1em',
|
|
@@ -1036,9 +1023,9 @@ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Sy
|
|
|
1036
1023
|
|
|
1037
1024
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
1038
1025
|
|
|
1039
|
-
function _objectSpread$
|
|
1026
|
+
function _objectSpread$6(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$6(target, key, source[key]); }); } return target; }
|
|
1040
1027
|
|
|
1041
|
-
function _defineProperty$
|
|
1028
|
+
function _defineProperty$6(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
1042
1029
|
|
|
1043
1030
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
1044
1031
|
|
|
@@ -1049,7 +1036,7 @@ setTwoToneColor('#1890ff');
|
|
|
1049
1036
|
var Icon = function Icon(props, context) {
|
|
1050
1037
|
var _classObj;
|
|
1051
1038
|
|
|
1052
|
-
var _props$context$attrs = _objectSpread$
|
|
1039
|
+
var _props$context$attrs = _objectSpread$6({}, props, context.attrs),
|
|
1053
1040
|
cls = _props$context$attrs["class"],
|
|
1054
1041
|
icon = _props$context$attrs.icon,
|
|
1055
1042
|
spin = _props$context$attrs.spin,
|
|
@@ -1061,7 +1048,7 @@ var Icon = function Icon(props, context) {
|
|
|
1061
1048
|
|
|
1062
1049
|
var classObj = (_classObj = {
|
|
1063
1050
|
anticon: true
|
|
1064
|
-
}, _defineProperty$
|
|
1051
|
+
}, _defineProperty$6(_classObj, "anticon-".concat(icon.name), Boolean(icon.name)), _defineProperty$6(_classObj, cls, cls), _classObj);
|
|
1065
1052
|
var svgClassString = spin === '' || !!spin || icon.name === 'loading' ? 'anticon-spin' : '';
|
|
1066
1053
|
var iconTabIndex = tabindex;
|
|
1067
1054
|
|
|
@@ -1080,7 +1067,7 @@ var Icon = function Icon(props, context) {
|
|
|
1080
1067
|
primaryColor = _normalizeTwoToneColo2[0],
|
|
1081
1068
|
secondaryColor = _normalizeTwoToneColo2[1];
|
|
1082
1069
|
|
|
1083
|
-
return createVNode("span", _objectSpread$
|
|
1070
|
+
return createVNode("span", _objectSpread$6({
|
|
1084
1071
|
"role": "img",
|
|
1085
1072
|
"aria-label": icon.name
|
|
1086
1073
|
}, restProps, {
|
|
@@ -1111,14 +1098,14 @@ var AntdIcon = Icon;
|
|
|
1111
1098
|
var CloseCircleFilled$2 = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm165.4 618.2l-66-.3L512 563.4l-99.3 118.4-66.1.3c-4.4 0-8-3.5-8-8 0-1.9.7-3.7 1.9-5.2l130.1-155L340.5 359a8.32 8.32 0 01-1.9-5.2c0-4.4 3.6-8 8-8l66.1.3L512 464.6l99.3-118.4 66-.3c4.4 0 8 3.5 8 8 0 1.9-.7 3.7-1.9 5.2L553.5 514l130 155c1.2 1.5 1.9 3.3 1.9 5.2 0 4.4-3.6 8-8 8z" } }] }, "name": "close-circle", "theme": "filled" };
|
|
1112
1099
|
var CloseCircleFilledSvg = CloseCircleFilled$2;
|
|
1113
1100
|
|
|
1114
|
-
function _objectSpread$
|
|
1101
|
+
function _objectSpread$5(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$5(target, key, source[key]); }); } return target; }
|
|
1115
1102
|
|
|
1116
|
-
function _defineProperty$
|
|
1103
|
+
function _defineProperty$5(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
1117
1104
|
|
|
1118
1105
|
var CloseCircleFilled = function CloseCircleFilled(props, context) {
|
|
1119
|
-
var p = _objectSpread$
|
|
1106
|
+
var p = _objectSpread$5({}, props, context.attrs);
|
|
1120
1107
|
|
|
1121
|
-
return createVNode(AntdIcon, _objectSpread$
|
|
1108
|
+
return createVNode(AntdIcon, _objectSpread$5({}, p, {
|
|
1122
1109
|
"icon": CloseCircleFilledSvg
|
|
1123
1110
|
}), null);
|
|
1124
1111
|
};
|
|
@@ -1131,14 +1118,14 @@ var CloseCircleFilled$1 = CloseCircleFilled;
|
|
|
1131
1118
|
var CloseOutlined$2 = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M563.8 512l262.5-312.9c4.4-5.2.7-13.1-6.1-13.1h-79.8c-4.7 0-9.2 2.1-12.3 5.7L511.6 449.8 295.1 191.7c-3-3.6-7.5-5.7-12.3-5.7H203c-6.8 0-10.5 7.9-6.1 13.1L459.4 512 196.9 824.9A7.95 7.95 0 00203 838h79.8c4.7 0 9.2-2.1 12.3-5.7l216.5-258.1 216.5 258.1c3 3.6 7.5 5.7 12.3 5.7h79.8c6.8 0 10.5-7.9 6.1-13.1L563.8 512z" } }] }, "name": "close", "theme": "outlined" };
|
|
1132
1119
|
var CloseOutlinedSvg = CloseOutlined$2;
|
|
1133
1120
|
|
|
1134
|
-
function _objectSpread$
|
|
1121
|
+
function _objectSpread$4(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$4(target, key, source[key]); }); } return target; }
|
|
1135
1122
|
|
|
1136
|
-
function _defineProperty$
|
|
1123
|
+
function _defineProperty$4(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
1137
1124
|
|
|
1138
1125
|
var CloseOutlined = function CloseOutlined(props, context) {
|
|
1139
|
-
var p = _objectSpread$
|
|
1126
|
+
var p = _objectSpread$4({}, props, context.attrs);
|
|
1140
1127
|
|
|
1141
|
-
return createVNode(AntdIcon, _objectSpread$
|
|
1128
|
+
return createVNode(AntdIcon, _objectSpread$4({}, p, {
|
|
1142
1129
|
"icon": CloseOutlinedSvg
|
|
1143
1130
|
}), null);
|
|
1144
1131
|
};
|
|
@@ -1151,14 +1138,14 @@ var CloseOutlined$1 = CloseOutlined;
|
|
|
1151
1138
|
var DownOutlined$2 = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M884 256h-75c-5.1 0-9.9 2.5-12.9 6.6L512 654.2 227.9 262.6c-3-4.1-7.8-6.6-12.9-6.6h-75c-6.5 0-10.3 7.4-6.5 12.7l352.6 486.1c12.8 17.6 39 17.6 51.7 0l352.6-486.1c3.9-5.3.1-12.7-6.4-12.7z" } }] }, "name": "down", "theme": "outlined" };
|
|
1152
1139
|
var DownOutlinedSvg = DownOutlined$2;
|
|
1153
1140
|
|
|
1154
|
-
function _objectSpread$
|
|
1141
|
+
function _objectSpread$3(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$3(target, key, source[key]); }); } return target; }
|
|
1155
1142
|
|
|
1156
|
-
function _defineProperty$
|
|
1143
|
+
function _defineProperty$3(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
1157
1144
|
|
|
1158
1145
|
var DownOutlined = function DownOutlined(props, context) {
|
|
1159
|
-
var p = _objectSpread$
|
|
1146
|
+
var p = _objectSpread$3({}, props, context.attrs);
|
|
1160
1147
|
|
|
1161
|
-
return createVNode(AntdIcon, _objectSpread$
|
|
1148
|
+
return createVNode(AntdIcon, _objectSpread$3({}, p, {
|
|
1162
1149
|
"icon": DownOutlinedSvg
|
|
1163
1150
|
}), null);
|
|
1164
1151
|
};
|
|
@@ -1171,14 +1158,14 @@ var DownOutlined$1 = DownOutlined;
|
|
|
1171
1158
|
var RightOutlined$2 = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z" } }] }, "name": "right", "theme": "outlined" };
|
|
1172
1159
|
var RightOutlinedSvg = RightOutlined$2;
|
|
1173
1160
|
|
|
1174
|
-
function _objectSpread$
|
|
1161
|
+
function _objectSpread$2(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$2(target, key, source[key]); }); } return target; }
|
|
1175
1162
|
|
|
1176
|
-
function _defineProperty$
|
|
1163
|
+
function _defineProperty$2(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
1177
1164
|
|
|
1178
1165
|
var RightOutlined = function RightOutlined(props, context) {
|
|
1179
|
-
var p = _objectSpread$
|
|
1166
|
+
var p = _objectSpread$2({}, props, context.attrs);
|
|
1180
1167
|
|
|
1181
|
-
return createVNode(AntdIcon, _objectSpread$
|
|
1168
|
+
return createVNode(AntdIcon, _objectSpread$2({}, p, {
|
|
1182
1169
|
"icon": RightOutlinedSvg
|
|
1183
1170
|
}), null);
|
|
1184
1171
|
};
|
|
@@ -1187,6 +1174,26 @@ RightOutlined.displayName = 'RightOutlined';
|
|
|
1187
1174
|
RightOutlined.inheritAttrs = false;
|
|
1188
1175
|
var RightOutlined$1 = RightOutlined;
|
|
1189
1176
|
|
|
1177
|
+
// This icon file is generated automatically.
|
|
1178
|
+
var SearchOutlined$2 = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M909.6 854.5L649.9 594.8C690.2 542.7 712 479 712 412c0-80.2-31.3-155.4-87.9-212.1-56.6-56.7-132-87.9-212.1-87.9s-155.5 31.3-212.1 87.9C143.2 256.5 112 331.8 112 412c0 80.1 31.3 155.5 87.9 212.1C256.5 680.8 331.8 712 412 712c67 0 130.6-21.8 182.7-62l259.7 259.6a8.2 8.2 0 0011.6 0l43.6-43.5a8.2 8.2 0 000-11.6zM570.4 570.4C528 612.7 471.8 636 412 636s-116-23.3-158.4-65.6C211.3 528 188 471.8 188 412s23.3-116.1 65.6-158.4C296 211.3 352.2 188 412 188s116.1 23.2 158.4 65.6S636 352.2 636 412s-23.3 116.1-65.6 158.4z" } }] }, "name": "search", "theme": "outlined" };
|
|
1179
|
+
var SearchOutlinedSvg = SearchOutlined$2;
|
|
1180
|
+
|
|
1181
|
+
function _objectSpread$1(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$1(target, key, source[key]); }); } return target; }
|
|
1182
|
+
|
|
1183
|
+
function _defineProperty$1(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
1184
|
+
|
|
1185
|
+
var SearchOutlined = function SearchOutlined(props, context) {
|
|
1186
|
+
var p = _objectSpread$1({}, props, context.attrs);
|
|
1187
|
+
|
|
1188
|
+
return createVNode(AntdIcon, _objectSpread$1({}, p, {
|
|
1189
|
+
"icon": SearchOutlinedSvg
|
|
1190
|
+
}), null);
|
|
1191
|
+
};
|
|
1192
|
+
|
|
1193
|
+
SearchOutlined.displayName = 'SearchOutlined';
|
|
1194
|
+
SearchOutlined.inheritAttrs = false;
|
|
1195
|
+
var SearchOutlined$1 = SearchOutlined;
|
|
1196
|
+
|
|
1190
1197
|
// This icon file is generated automatically.
|
|
1191
1198
|
var UpOutlined$2 = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M890.5 755.3L537.9 269.2c-12.8-17.6-39-17.6-51.7 0L133.5 755.3A8 8 0 00140 768h75c5.1 0 9.9-2.5 12.9-6.6L512 369.8l284.1 391.6c3 4.1 7.8 6.6 12.9 6.6h75c6.5 0 10.3-7.4 6.5-12.7z" } }] }, "name": "up", "theme": "outlined" };
|
|
1192
1199
|
var UpOutlinedSvg = UpOutlined$2;
|
|
@@ -1212,6 +1219,10 @@ const searchResetBtnProps = {
|
|
|
1212
1219
|
type: Boolean,
|
|
1213
1220
|
default: false,
|
|
1214
1221
|
},
|
|
1222
|
+
showSearchIcon: {
|
|
1223
|
+
type: Boolean,
|
|
1224
|
+
default: false,
|
|
1225
|
+
},
|
|
1215
1226
|
};
|
|
1216
1227
|
const searchFilterProps = Object.assign({ userRule: {
|
|
1217
1228
|
type: Array,
|
|
@@ -1235,6 +1246,11 @@ const searchFilterProps = Object.assign({ userRule: {
|
|
|
1235
1246
|
default() {
|
|
1236
1247
|
return {};
|
|
1237
1248
|
},
|
|
1249
|
+
}, gutter: {
|
|
1250
|
+
type: Array,
|
|
1251
|
+
default() {
|
|
1252
|
+
return [24, 16];
|
|
1253
|
+
},
|
|
1238
1254
|
}, fixedCount: {
|
|
1239
1255
|
type: Number,
|
|
1240
1256
|
default: 999999,
|
|
@@ -1261,7 +1277,7 @@ const _hoisted_2$1 = { class: "bm-search-filter-actions" };
|
|
|
1261
1277
|
const _hoisted_3$1 = /* @__PURE__ */ createTextVNode("\u91CD\u7F6E");
|
|
1262
1278
|
const _hoisted_4$1 = /* @__PURE__ */ createTextVNode("\u67E5\u8BE2");
|
|
1263
1279
|
const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
1264
|
-
|
|
1280
|
+
__name: "search-reset-btn",
|
|
1265
1281
|
props: searchResetBtnProps,
|
|
1266
1282
|
emits: ["submit", "reset", "expand"],
|
|
1267
1283
|
setup(__props, { emit: emits }) {
|
|
@@ -1300,6 +1316,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
1300
1316
|
onClick: handleSubmit
|
|
1301
1317
|
}, {
|
|
1302
1318
|
default: withCtx(() => [
|
|
1319
|
+
props.showSearchIcon ? (openBlock(), createBlock(unref(SearchOutlined$1), { key: 0 })) : createCommentVNode("v-if", true),
|
|
1303
1320
|
_hoisted_4$1
|
|
1304
1321
|
]),
|
|
1305
1322
|
_: 1
|
|
@@ -1841,7 +1858,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1841
1858
|
{
|
|
1842
1859
|
type: "SearchResetBtn",
|
|
1843
1860
|
props: {
|
|
1844
|
-
showExpandBtn: props.showExpandBtn
|
|
1861
|
+
showExpandBtn: props.showExpandBtn,
|
|
1862
|
+
showSearchIcon: props.showSearchIcon
|
|
1845
1863
|
},
|
|
1846
1864
|
on: {
|
|
1847
1865
|
submit() {
|
|
@@ -1864,7 +1882,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1864
1882
|
span: 8
|
|
1865
1883
|
},
|
|
1866
1884
|
row: {
|
|
1867
|
-
gutter:
|
|
1885
|
+
gutter: props.gutter
|
|
1868
1886
|
},
|
|
1869
1887
|
form: {
|
|
1870
1888
|
labelCol: props.labelCol,
|
|
@@ -4,12 +4,20 @@ export declare const searchResetBtnProps: {
|
|
|
4
4
|
type: BooleanConstructor;
|
|
5
5
|
default: boolean;
|
|
6
6
|
};
|
|
7
|
+
showSearchIcon: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
7
11
|
};
|
|
8
12
|
export declare const searchFilterProps: {
|
|
9
13
|
showExpandBtn: {
|
|
10
14
|
type: BooleanConstructor;
|
|
11
15
|
default: boolean;
|
|
12
16
|
};
|
|
17
|
+
showSearchIcon: {
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
default: boolean;
|
|
20
|
+
};
|
|
13
21
|
userRule: {
|
|
14
22
|
type: ArrayConstructor;
|
|
15
23
|
default(): never[];
|
|
@@ -28,6 +36,10 @@ export declare const searchFilterProps: {
|
|
|
28
36
|
type: ObjectConstructor;
|
|
29
37
|
default(): {};
|
|
30
38
|
};
|
|
39
|
+
gutter: {
|
|
40
|
+
type: ArrayConstructor;
|
|
41
|
+
default(): number[];
|
|
42
|
+
};
|
|
31
43
|
fixedCount: {
|
|
32
44
|
type: NumberConstructor;
|
|
33
45
|
default: number;
|
|
@@ -3,6 +3,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3
3
|
type: BooleanConstructor;
|
|
4
4
|
default: boolean;
|
|
5
5
|
};
|
|
6
|
+
showSearchIcon: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
6
10
|
userRule: {
|
|
7
11
|
type: ArrayConstructor;
|
|
8
12
|
default(): never[];
|
|
@@ -21,6 +25,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
21
25
|
type: ObjectConstructor;
|
|
22
26
|
default(): {};
|
|
23
27
|
};
|
|
28
|
+
gutter: {
|
|
29
|
+
type: ArrayConstructor;
|
|
30
|
+
default(): number[];
|
|
31
|
+
};
|
|
24
32
|
fixedCount: {
|
|
25
33
|
type: NumberConstructor;
|
|
26
34
|
default: number;
|
|
@@ -39,6 +47,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
39
47
|
type: BooleanConstructor;
|
|
40
48
|
default: boolean;
|
|
41
49
|
};
|
|
50
|
+
showSearchIcon: {
|
|
51
|
+
type: BooleanConstructor;
|
|
52
|
+
default: boolean;
|
|
53
|
+
};
|
|
42
54
|
userRule: {
|
|
43
55
|
type: ArrayConstructor;
|
|
44
56
|
default(): never[];
|
|
@@ -57,6 +69,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
57
69
|
type: ObjectConstructor;
|
|
58
70
|
default(): {};
|
|
59
71
|
};
|
|
72
|
+
gutter: {
|
|
73
|
+
type: ArrayConstructor;
|
|
74
|
+
default(): number[];
|
|
75
|
+
};
|
|
60
76
|
fixedCount: {
|
|
61
77
|
type: NumberConstructor;
|
|
62
78
|
default: number;
|
|
@@ -81,6 +97,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
81
97
|
type: string;
|
|
82
98
|
props: {
|
|
83
99
|
showExpandBtn: boolean;
|
|
100
|
+
showSearchIcon: boolean;
|
|
84
101
|
};
|
|
85
102
|
on: {
|
|
86
103
|
submit: () => void;
|
|
@@ -94,7 +111,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
94
111
|
span: number;
|
|
95
112
|
};
|
|
96
113
|
row: {
|
|
97
|
-
gutter:
|
|
114
|
+
gutter: unknown[];
|
|
98
115
|
};
|
|
99
116
|
form: {
|
|
100
117
|
labelCol: Record<string, any>;
|
|
@@ -116,6 +133,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
116
133
|
type: BooleanConstructor;
|
|
117
134
|
default: boolean;
|
|
118
135
|
};
|
|
136
|
+
showSearchIcon: {
|
|
137
|
+
type: BooleanConstructor;
|
|
138
|
+
default: boolean;
|
|
139
|
+
};
|
|
119
140
|
userRule: {
|
|
120
141
|
type: ArrayConstructor;
|
|
121
142
|
default(): never[];
|
|
@@ -134,6 +155,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
134
155
|
type: ObjectConstructor;
|
|
135
156
|
default(): {};
|
|
136
157
|
};
|
|
158
|
+
gutter: {
|
|
159
|
+
type: ArrayConstructor;
|
|
160
|
+
default(): number[];
|
|
161
|
+
};
|
|
137
162
|
fixedCount: {
|
|
138
163
|
type: NumberConstructor;
|
|
139
164
|
default: number;
|
|
@@ -154,9 +179,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
154
179
|
}, {
|
|
155
180
|
value: Record<string, any>;
|
|
156
181
|
showExpandBtn: boolean;
|
|
182
|
+
showSearchIcon: boolean;
|
|
157
183
|
userRule: unknown[];
|
|
158
184
|
labelCol: Record<string, any>;
|
|
159
185
|
ruleSpan: Record<string, any>;
|
|
186
|
+
gutter: unknown[];
|
|
160
187
|
fixedCount: number;
|
|
161
188
|
fixedFields: string[];
|
|
162
189
|
expandPlacement: "left" | "right";
|