yahee-components 0.0.96 → 0.0.98-beta
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/common-import/common-import.vue.js +183 -156
- package/es/complex-search/complex-search.vue.js +12 -12
- package/es/complex-search/complex-search.vue2.js +105 -112
- package/es/complex-search/props.js +1 -1
- package/es/filter-container/filter-container.vue.js +70 -0
- package/es/filter-container/filter-container.vue2.js +4 -0
- package/es/filter-container/index.js +7 -0
- package/es/filter-container/key.js +4 -0
- package/es/filter-wrapper/filter-wrapper.vue.js +7 -0
- package/es/filter-wrapper/filter-wrapper.vue2.js +60 -0
- package/es/filter-wrapper/index.js +7 -0
- package/es/help-tag/help-tag.vue.js +16 -14
- package/es/index.js +38 -34
- package/es/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_Symbol.js +5 -0
- package/es/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseGetTag.js +10 -0
- package/es/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseTrim.js +8 -0
- package/es/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_freeGlobal.js +4 -0
- package/es/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getRawTag.js +15 -0
- package/es/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_objectToString.js +7 -0
- package/es/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_root.js +5 -0
- package/es/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_trimmedEndIndex.js +9 -0
- package/es/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/debounce.js +54 -0
- package/es/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isObject.js +7 -0
- package/es/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isObjectLike.js +6 -0
- package/es/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isSymbol.js +9 -0
- package/es/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/now.js +7 -0
- package/es/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/toNumber.js +22 -0
- package/es/utils/get-domain-base-url.js +4 -0
- package/es/yahee-components.css +1 -1
- package/package.json +1 -1
- package/types/src/complex-search/props.d.ts +1 -1
- package/types/src/components.d.ts +2 -0
- package/types/src/filter-container/filter-container.vue.d.ts +7 -15
- package/types/src/filter-container/key.d.ts +21 -0
- package/types/src/filter-wrapper/filter-wrapper.vue.d.ts +4 -5
- package/types/src/left-condition/index.d.ts +1 -1
- package/types/src/left-condition/left-condition.vue.d.ts +1 -1
- package/types/src/left-condition-enum/index.d.ts +1 -1
- package/types/src/left-condition-enum/left-condition-enum.vue.d.ts +1 -1
- package/types/src/utils/get-domain-base-url.d.ts +1 -0
package/es/index.js
CHANGED
|
@@ -1,53 +1,57 @@
|
|
|
1
|
-
import { makeInstaller as
|
|
1
|
+
import { makeInstaller as o } from "./utils/install.js";
|
|
2
2
|
import r from "./installs.js";
|
|
3
3
|
import { config as t } from "./utils/config.js";
|
|
4
4
|
import { YaheeInput as i } from "./input/index.js";
|
|
5
|
-
import { YaheeComplexSearch as
|
|
5
|
+
import { YaheeComplexSearch as d } from "./complex-search/index.js";
|
|
6
6
|
import { YaheeCopy as u } from "./copy/index.js";
|
|
7
|
-
import { YaheeImageUpload as
|
|
7
|
+
import { YaheeImageUpload as c } from "./image-upload/index.js";
|
|
8
8
|
import { YaheeAnnexUpload as P } from "./annex-upload/index.js";
|
|
9
9
|
import { YaheeOperationLog as I } from "./operation-log/index.js";
|
|
10
10
|
import { YaheeCountryPlatformShopCondition as E } from "./country-platform-shop-condition/index.js";
|
|
11
11
|
import { YaheeLeftCondition as L } from "./left-condition/index.js";
|
|
12
|
-
import { YaheeLeftConditionEnum as
|
|
13
|
-
import { YaheeDropDownCondition as
|
|
14
|
-
import { YaheeCommonImport as
|
|
15
|
-
import { YaheeBorderWrap as
|
|
16
|
-
import { YaheeEchartGauge as
|
|
17
|
-
import { YaheeScaleScreen as
|
|
18
|
-
import { YaheeHelpTag as
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
12
|
+
import { YaheeLeftConditionEnum as B } from "./left-condition-enum/index.js";
|
|
13
|
+
import { YaheeDropDownCondition as F } from "./drop-down-condition/index.js";
|
|
14
|
+
import { YaheeCommonImport as T } from "./common-import/index.js";
|
|
15
|
+
import { YaheeBorderWrap as b } from "./border-wrap/index.js";
|
|
16
|
+
import { YaheeEchartGauge as w } from "./echart-gauge/index.js";
|
|
17
|
+
import { YaheeScaleScreen as O } from "./scale-screen/index.js";
|
|
18
|
+
import { YaheeHelpTag as q } from "./help-tag/index.js";
|
|
19
|
+
import { YaheeFilterContainer as z } from "./filter-container/index.js";
|
|
20
|
+
import { YaheeFilterWrapper as K } from "./filter-wrapper/index.js";
|
|
21
|
+
import { defaultComplexSearchProps as N } from "./complex-search/props.js";
|
|
22
|
+
import { defaultCopyProps as R } from "./copy/props.js";
|
|
23
|
+
import { defaultBorderWrapPropsProps as X } from "./border-wrap/props.js";
|
|
24
|
+
import { defaultEchartGaugeProps as _ } from "./echart-gauge/props.js";
|
|
25
|
+
import { defaultScaleScreenProps as ee } from "./scale-screen/props.js";
|
|
26
|
+
import { defaultHelpTagProps as re } from "./help-tag/props.js";
|
|
27
|
+
const { setConfig: p } = t(), n = o([...r]);
|
|
28
|
+
function x(e) {
|
|
29
|
+
p(e);
|
|
28
30
|
}
|
|
29
31
|
export {
|
|
30
32
|
P as YaheeAnnexUpload,
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
33
|
+
b as YaheeBorderWrap,
|
|
34
|
+
T as YaheeCommonImport,
|
|
35
|
+
d as YaheeComplexSearch,
|
|
34
36
|
u as YaheeCopy,
|
|
35
37
|
E as YaheeCountryPlatformShopCondition,
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
F as YaheeDropDownCondition,
|
|
39
|
+
w as YaheeEchartGauge,
|
|
40
|
+
z as YaheeFilterContainer,
|
|
41
|
+
K as YaheeFilterWrapper,
|
|
42
|
+
q as YaheeHelpTag,
|
|
43
|
+
c as YaheeImageUpload,
|
|
40
44
|
i as YaheeInput,
|
|
41
45
|
L as YaheeLeftCondition,
|
|
42
|
-
|
|
46
|
+
B as YaheeLeftConditionEnum,
|
|
43
47
|
I as YaheeOperationLog,
|
|
44
|
-
|
|
48
|
+
O as YaheeScaleScreen,
|
|
45
49
|
n as default,
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
50
|
+
X as defaultBorderWrapPropsProps,
|
|
51
|
+
N as defaultComplexSearchProps,
|
|
52
|
+
R as defaultCopyProps,
|
|
53
|
+
_ as defaultEchartGaugeProps,
|
|
54
|
+
re as defaultHelpTagProps,
|
|
55
|
+
ee as defaultScaleScreenProps,
|
|
52
56
|
x as useGlobalConfig
|
|
53
57
|
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import t from "./_Symbol.js";
|
|
2
|
+
import e from "./_getRawTag.js";
|
|
3
|
+
import o from "./_objectToString.js";
|
|
4
|
+
var i = "[object Null]", f = "[object Undefined]", r = t ? t.toStringTag : void 0;
|
|
5
|
+
function m(n) {
|
|
6
|
+
return n == null ? n === void 0 ? f : i : r && r in Object(n) ? e(n) : o(n);
|
|
7
|
+
}
|
|
8
|
+
export {
|
|
9
|
+
m as default
|
|
10
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import e from "./_Symbol.js";
|
|
2
|
+
var o = Object.prototype, c = o.hasOwnProperty, f = o.toString, r = e ? e.toStringTag : void 0;
|
|
3
|
+
function p(t) {
|
|
4
|
+
var a = c.call(t, r), n = t[r];
|
|
5
|
+
try {
|
|
6
|
+
t[r] = void 0;
|
|
7
|
+
var i = !0;
|
|
8
|
+
} catch {
|
|
9
|
+
}
|
|
10
|
+
var g = f.call(t);
|
|
11
|
+
return i && (a ? t[r] = n : delete t[r]), g;
|
|
12
|
+
}
|
|
13
|
+
export {
|
|
14
|
+
p as default
|
|
15
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import S from "./isObject.js";
|
|
2
|
+
import h from "./now.js";
|
|
3
|
+
import W from "./toNumber.js";
|
|
4
|
+
var y = "Expected a function", R = Math.max, A = Math.min;
|
|
5
|
+
function _(x, i, u) {
|
|
6
|
+
var a, d, c, f, n, r, l = 0, E = !1, m = !1, g = !0;
|
|
7
|
+
if (typeof x != "function")
|
|
8
|
+
throw new TypeError(y);
|
|
9
|
+
i = W(i) || 0, S(u) && (E = !!u.leading, m = "maxWait" in u, c = m ? R(W(u.maxWait) || 0, i) : c, g = "trailing" in u ? !!u.trailing : g);
|
|
10
|
+
function v(e) {
|
|
11
|
+
var t = a, o = d;
|
|
12
|
+
return a = d = void 0, l = e, f = x.apply(o, t), f;
|
|
13
|
+
}
|
|
14
|
+
function b(e) {
|
|
15
|
+
return l = e, n = setTimeout(s, i), E ? v(e) : f;
|
|
16
|
+
}
|
|
17
|
+
function C(e) {
|
|
18
|
+
var t = e - r, o = e - l, p = i - t;
|
|
19
|
+
return m ? A(p, c - o) : p;
|
|
20
|
+
}
|
|
21
|
+
function k(e) {
|
|
22
|
+
var t = e - r, o = e - l;
|
|
23
|
+
return r === void 0 || t >= i || t < 0 || m && o >= c;
|
|
24
|
+
}
|
|
25
|
+
function s() {
|
|
26
|
+
var e = h();
|
|
27
|
+
if (k(e))
|
|
28
|
+
return I(e);
|
|
29
|
+
n = setTimeout(s, C(e));
|
|
30
|
+
}
|
|
31
|
+
function I(e) {
|
|
32
|
+
return n = void 0, g && a ? v(e) : (a = d = void 0, f);
|
|
33
|
+
}
|
|
34
|
+
function L() {
|
|
35
|
+
n !== void 0 && clearTimeout(n), l = 0, a = r = d = n = void 0;
|
|
36
|
+
}
|
|
37
|
+
function M() {
|
|
38
|
+
return n === void 0 ? f : I(h());
|
|
39
|
+
}
|
|
40
|
+
function T() {
|
|
41
|
+
var e = h(), t = k(e);
|
|
42
|
+
if (a = arguments, d = this, r = e, t) {
|
|
43
|
+
if (n === void 0)
|
|
44
|
+
return b(r);
|
|
45
|
+
if (m)
|
|
46
|
+
return clearTimeout(n), n = setTimeout(s, i), v(r);
|
|
47
|
+
}
|
|
48
|
+
return n === void 0 && (n = setTimeout(s, i)), f;
|
|
49
|
+
}
|
|
50
|
+
return T.cancel = L, T.flush = M, T;
|
|
51
|
+
}
|
|
52
|
+
export {
|
|
53
|
+
_ as default
|
|
54
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import n from "./_baseTrim.js";
|
|
2
|
+
import f from "./isObject.js";
|
|
3
|
+
import o from "./isSymbol.js";
|
|
4
|
+
var s = NaN, m = /^[-+]0x[0-9a-f]+$/i, p = /^0b[01]+$/i, e = /^0o[0-7]+$/i, b = parseInt;
|
|
5
|
+
function O(r) {
|
|
6
|
+
if (typeof r == "number")
|
|
7
|
+
return r;
|
|
8
|
+
if (o(r))
|
|
9
|
+
return s;
|
|
10
|
+
if (f(r)) {
|
|
11
|
+
var t = typeof r.valueOf == "function" ? r.valueOf() : r;
|
|
12
|
+
r = f(t) ? t + "" : t;
|
|
13
|
+
}
|
|
14
|
+
if (typeof r != "string")
|
|
15
|
+
return r === 0 ? r : +r;
|
|
16
|
+
r = n(r);
|
|
17
|
+
var i = p.test(r);
|
|
18
|
+
return i || e.test(r) ? b(r.slice(2), i ? 2 : 8) : m.test(r) ? s : +r;
|
|
19
|
+
}
|
|
20
|
+
export {
|
|
21
|
+
O as default
|
|
22
|
+
};
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
const o = () => {
|
|
2
2
|
const e = window.location.hostname;
|
|
3
3
|
return e.includes("localhost") ? "http://localhost:33658" : e.includes("yahee.com") ? "http://qas-newerp.yahee.com.cn:8088/Common/latest/" : "//newserp.yaheecloud.com/common/";
|
|
4
|
+
}, t = () => {
|
|
5
|
+
const e = window.location.hostname;
|
|
6
|
+
return e.includes("localhost") ? "http://localhost:33658" : e.includes("yahee.com") ? "http://qas-newerp.yahee.com.cn:8088/PMS/Latest/" : "https://newerp.yaheecloud.com/PMS/Report/";
|
|
4
7
|
};
|
|
5
8
|
export {
|
|
9
|
+
t as getDomainBaseReportUrl,
|
|
6
10
|
o as getDomainBaseUrl
|
|
7
11
|
};
|
package/es/yahee-components.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.yahee-complex-search[data-v-
|
|
1
|
+
.yahee-complex-search[data-v-715db21e]{width:100%}.search-type-checkbox[data-v-715db21e]{display:flex;justify-content:space-between;margin-top:8px;align-items:center}.row-class[data-v-715db21e]{margin-bottom:16px}.dialog-footer[data-v-715db21e]{display:flex;justify-content:flex-end;gap:12px}.container[data-v-d3e37633]{box-sizing:initial;display:inline-block;text-align:center;border-radius:50%;overflow:hidden}.spinner[data-v-d3e37633]{box-sizing:initial;border:2px solid #a1a1a1;border-right-color:transparent;width:23px;height:23px;border-radius:50%;animation:spin-d3e37633 .9s linear infinite}@keyframes spin-d3e37633{to{transform:rotate(360deg)}}.v3-infinite-loading[data-v-4bdee133]{width:100%;height:44px}.state-error[data-v-4bdee133]{display:flex;flex-direction:column;align-items:center}.retry[data-v-4bdee133]{margin-top:8px;padding:2px 6px 4px;width:60px;color:inherit;font-size:14px;font-family:inherit;background:transparent;border:2px solid currentColor;border-radius:5px;outline:none;cursor:pointer}.retry[data-v-4bdee133]:hover{opacity:.8}.filter-wrapper[data-v-ad18c668]{display:inline-block;margin-right:16px;margin-bottom:16px;vertical-align:top}
|
package/package.json
CHANGED
|
@@ -65,7 +65,7 @@ export declare function defaultComplexSearchProps(): {
|
|
|
65
65
|
options: () => SearchOptions[];
|
|
66
66
|
placeholderText: string;
|
|
67
67
|
showPatchSearch: false;
|
|
68
|
-
showWithinFilterCheckbox:
|
|
68
|
+
showWithinFilterCheckbox: true;
|
|
69
69
|
specialOptions: () => SearchDataOptions[];
|
|
70
70
|
normalOptions: () => SearchDataOptions[];
|
|
71
71
|
showSelect: false;
|
|
@@ -1,17 +1,9 @@
|
|
|
1
|
+
import { FilterChangeEvent, SearchItem } from './key';
|
|
1
2
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
-
type Primitive = string | number | boolean | null | undefined;
|
|
3
|
-
type FilterValue = Primitive | Primitive[];
|
|
4
|
-
interface FilterChangeEvent {
|
|
5
|
-
filterKey: string;
|
|
6
|
-
checkedValues: FilterValue[];
|
|
7
|
-
}
|
|
8
|
-
interface SearchItem {
|
|
9
|
-
[key: string]: FilterValue;
|
|
10
|
-
}
|
|
11
3
|
interface FilterContainerProps {
|
|
12
4
|
debounceInterval?: number;
|
|
13
5
|
immediate?: boolean;
|
|
14
|
-
initialSearchItem?:
|
|
6
|
+
initialSearchItem?: Record<string, unknown>;
|
|
15
7
|
showSearchSection?: boolean;
|
|
16
8
|
}
|
|
17
9
|
declare function __VLS_template(): {
|
|
@@ -29,15 +21,15 @@ declare const __VLS_component: DefineComponent<FilterContainerProps, {
|
|
|
29
21
|
getCurrentSearchItem: () => SearchItem;
|
|
30
22
|
updateSearchItem: (changes: FilterChangeEvent | FilterChangeEvent[]) => void;
|
|
31
23
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
32
|
-
change: (searchItem:
|
|
33
|
-
search: (searchItem:
|
|
24
|
+
change: (searchItem: Record<string, unknown>) => any;
|
|
25
|
+
search: (searchItem: Record<string, unknown>) => any;
|
|
34
26
|
}, string, PublicProps, Readonly<FilterContainerProps> & Readonly<{
|
|
35
|
-
onChange?: (searchItem:
|
|
36
|
-
onSearch?: (searchItem:
|
|
27
|
+
onChange?: (searchItem: Record<string, unknown>) => any;
|
|
28
|
+
onSearch?: (searchItem: Record<string, unknown>) => any;
|
|
37
29
|
}>, {
|
|
38
30
|
debounceInterval: number;
|
|
39
31
|
immediate: boolean;
|
|
40
|
-
initialSearchItem:
|
|
32
|
+
initialSearchItem: Record<string, unknown>;
|
|
41
33
|
showSearchSection: boolean;
|
|
42
34
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
43
35
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { InjectionKey } from 'vue';
|
|
2
|
+
export type Primitive = string | number | boolean | null | undefined;
|
|
3
|
+
export interface FilterChangeEvent {
|
|
4
|
+
filterKey: string;
|
|
5
|
+
checkedValues: Array<Primitive | Primitive[] | Record<string, unknown>>;
|
|
6
|
+
}
|
|
7
|
+
export type FilterValue = Primitive | Primitive[] | Record<string, unknown>;
|
|
8
|
+
export type SearchItem = Record<string, FilterValue>;
|
|
9
|
+
export interface ComponentMethods {
|
|
10
|
+
reset?: () => void;
|
|
11
|
+
getValue?: () => unknown;
|
|
12
|
+
setValue?: (value: unknown) => void;
|
|
13
|
+
}
|
|
14
|
+
export interface FilterContainerApi {
|
|
15
|
+
registerComponent: (id: string, component: ComponentMethods, type?: 'filter' | 'search') => void;
|
|
16
|
+
unregisterComponent: (id: string) => void;
|
|
17
|
+
updateSearchItem: (changes: FilterChangeEvent | FilterChangeEvent[]) => void;
|
|
18
|
+
handleSearch: (searchData: SearchItem) => void;
|
|
19
|
+
getCurrentSearchItem: () => SearchItem;
|
|
20
|
+
}
|
|
21
|
+
export declare const filterContainerKey: InjectionKey<FilterContainerApi>;
|
|
@@ -1,9 +1,7 @@
|
|
|
1
|
+
import { FilterValue as SharedFilterValue, SearchItem as SharedSearchItem } from '../filter-container/key';
|
|
1
2
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
-
type
|
|
3
|
-
type
|
|
4
|
-
interface SearchItem {
|
|
5
|
-
[key: string]: FilterValue;
|
|
6
|
-
}
|
|
3
|
+
type FilterValue = SharedFilterValue;
|
|
4
|
+
type SearchItem = SharedSearchItem;
|
|
7
5
|
interface ComponentMethods {
|
|
8
6
|
reset?: () => void;
|
|
9
7
|
getValue?: () => FilterValue;
|
|
@@ -37,6 +35,7 @@ declare const __VLS_component: DefineComponent<FilterWrapperProps, {
|
|
|
37
35
|
handleSearch: (searchData: SearchItem) => void;
|
|
38
36
|
reset: () => void;
|
|
39
37
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<FilterWrapperProps> & Readonly<{}>, {
|
|
38
|
+
reset: () => void;
|
|
40
39
|
type: "filter" | "search";
|
|
41
40
|
immediate: boolean;
|
|
42
41
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
@@ -52,7 +52,6 @@ export declare const YaheeLeftCondition: SFCWithInstall<DefineComponent<{
|
|
|
52
52
|
onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
|
|
53
53
|
}>, {
|
|
54
54
|
label: string;
|
|
55
|
-
filterKey: string;
|
|
56
55
|
multiSelectList: Array<any>;
|
|
57
56
|
countList: Array<any>;
|
|
58
57
|
hasNum: boolean;
|
|
@@ -66,6 +65,7 @@ export declare const YaheeLeftCondition: SFCWithInstall<DefineComponent<{
|
|
|
66
65
|
allIsEmpty: boolean;
|
|
67
66
|
staticSearch: boolean;
|
|
68
67
|
noNeedRefreshNumFilterName: string;
|
|
68
|
+
filterKey: string;
|
|
69
69
|
defaultValues: Array<string | number | boolean>;
|
|
70
70
|
showTotal: boolean;
|
|
71
71
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
@@ -34,7 +34,6 @@ declare const _default: DefineComponent<__VLS_Props, {
|
|
|
34
34
|
onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
|
|
35
35
|
}>, {
|
|
36
36
|
label: string;
|
|
37
|
-
filterKey: string;
|
|
38
37
|
multiSelectList: Array<any>;
|
|
39
38
|
countList: Array<any>;
|
|
40
39
|
hasNum: boolean;
|
|
@@ -48,6 +47,7 @@ declare const _default: DefineComponent<__VLS_Props, {
|
|
|
48
47
|
allIsEmpty: boolean;
|
|
49
48
|
staticSearch: boolean;
|
|
50
49
|
noNeedRefreshNumFilterName: string;
|
|
50
|
+
filterKey: string;
|
|
51
51
|
defaultValues: Array<string | number | boolean>;
|
|
52
52
|
showTotal: boolean;
|
|
53
53
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
@@ -32,11 +32,11 @@ export declare const YaheeLeftConditionEnum: SFCWithInstall<DefineComponent<{
|
|
|
32
32
|
onFilterChange?: (...args: any[]) => any;
|
|
33
33
|
onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
|
|
34
34
|
}>, {
|
|
35
|
-
filterKey: string;
|
|
36
35
|
countList: any[];
|
|
37
36
|
selectList: Option[];
|
|
38
37
|
totalCount: number;
|
|
39
38
|
noNeedRefreshNumFilterName: string;
|
|
39
|
+
filterKey: string;
|
|
40
40
|
defaultValues: (string | boolean | number)[];
|
|
41
41
|
enumEntity: string;
|
|
42
42
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>> & Record<string, any>;
|
|
@@ -20,11 +20,11 @@ declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOp
|
|
|
20
20
|
onFilterChange?: (...args: any[]) => any;
|
|
21
21
|
onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
|
|
22
22
|
}>, {
|
|
23
|
-
filterKey: string;
|
|
24
23
|
countList: any[];
|
|
25
24
|
selectList: Option[];
|
|
26
25
|
totalCount: number;
|
|
27
26
|
noNeedRefreshNumFilterName: string;
|
|
27
|
+
filterKey: string;
|
|
28
28
|
defaultValues: (string | boolean | number)[];
|
|
29
29
|
enumEntity: string;
|
|
30
30
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|