yahee-components 0.0.10 → 0.0.12

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.
Files changed (46) hide show
  1. package/es/api/server.js +26 -10
  2. package/es/country-platform-shop-condition/country-platform-shop-condition.vue.js +218 -0
  3. package/es/country-platform-shop-condition/country-platform-shop-condition.vue2.js +4 -0
  4. package/es/country-platform-shop-condition/index.js +7 -0
  5. package/es/country-platform-shop-condition/style/index.css +48 -0
  6. package/es/drop-down-condition/drop-down-condition.vue.js +215 -0
  7. package/es/drop-down-condition/drop-down-condition.vue2.js +4 -0
  8. package/es/drop-down-condition/index.js +7 -0
  9. package/es/drop-down-condition/style/index.css +45 -0
  10. package/es/index.js +23 -15
  11. package/es/installs.js +18 -10
  12. package/es/left-condition/index.js +7 -0
  13. package/es/left-condition/left-condition-sub.vue.js +95 -0
  14. package/es/left-condition/left-condition-sub.vue2.js +4 -0
  15. package/es/left-condition/left-condition.vue.js +214 -0
  16. package/es/left-condition/left-condition.vue2.js +4 -0
  17. package/es/left-condition/style/index.css +11 -0
  18. package/es/left-condition-enum/index.js +7 -0
  19. package/es/left-condition-enum/left-condition-enum.vue.js +76 -0
  20. package/es/left-condition-enum/left-condition-enum.vue2.js +4 -0
  21. package/es/left-condition-enum/style/index.css +0 -0
  22. package/es/static/CommonObject.js +4 -0
  23. package/es/style.css +81 -196
  24. package/es/utils/style.js +28 -0
  25. package/es/utils/translate.js +39 -22
  26. package/lib/country-platform-shop-condition/style/index.css +48 -0
  27. package/lib/drop-down-condition/style/index.css +45 -0
  28. package/lib/left-condition/style/index.css +11 -0
  29. package/lib/left-condition-enum/style/index.css +0 -0
  30. package/lib/style.css +81 -196
  31. package/package.json +1 -1
  32. package/types/src/components.d.ts +4 -0
  33. package/types/src/country-platform-shop-condition/country-platform-shop-condition.d.ts +17 -0
  34. package/types/src/country-platform-shop-condition/country-platform-shop-condition.vue.d.ts +14 -0
  35. package/types/src/country-platform-shop-condition/index.d.ts +16 -0
  36. package/types/src/drop-down-condition/drop-down-condition.d.ts +6 -0
  37. package/types/src/drop-down-condition/drop-down-condition.vue.d.ts +38 -0
  38. package/types/src/drop-down-condition/index.d.ts +40 -0
  39. package/types/src/installs.d.ts +259 -2
  40. package/types/src/left-condition/index.d.ts +69 -0
  41. package/types/src/left-condition/left-condition-sub.vue.d.ts +47 -0
  42. package/types/src/left-condition/left-condition.d.ts +5 -0
  43. package/types/src/left-condition/left-condition.vue.d.ts +68 -0
  44. package/types/src/left-condition-enum/index.d.ts +153 -0
  45. package/types/src/left-condition-enum/left-condition-enum.d.ts +5 -0
  46. package/types/src/left-condition-enum/left-condition-enum.vue.d.ts +151 -0
@@ -1,11 +1,14 @@
1
1
  import { SFCWithInstall } from './utils/typescript';
2
- import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, VNodeProps, AllowedComponentProps, ComponentCustomProps, GlobalComponents, GlobalDirectives, ComponentOptionsBase } from 'vue';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, VNodeProps, AllowedComponentProps, ComponentCustomProps, GlobalComponents, GlobalDirectives, ComponentOptionsBase, ExtractPropTypes } from 'vue';
3
3
  import { InputProps } from './input';
4
4
  import { SearchOptions } from './comprehensive-search';
5
5
  import { CopyProps } from './copy';
6
6
  import { ImageUploadProps } from './image-upload';
7
7
  import { OperationLogProps } from './operation-log';
8
8
  import { AnnexUploadProps } from './annex-upload';
9
+ import { Option } from './static/CommonObject';
10
+ import { DropdownEntity } from './drop-down-condition/drop-down-condition';
11
+ import { data } from './country-platform-shop-condition/country-platform-shop-condition';
9
12
  declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
10
13
  focus: () => void;
11
14
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
@@ -274,5 +277,259 @@ declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
274
277
  default?(_: {}): any;
275
278
  tip?(_: {}): any;
276
279
  };
277
- })> & Record<string, any>))[];
280
+ })> & Record<string, any>) | ( SFCWithInstall<DefineComponent<{
281
+ multiSelectList?: Array<any>;
282
+ selectList: Array< Option>;
283
+ countList?: Array<any>;
284
+ totalCount?: number;
285
+ hasNum?: boolean;
286
+ displayRangeInput?: boolean;
287
+ rangeLabel?: string;
288
+ rangeStartKey?: string;
289
+ rangeEndKey?: string;
290
+ rangeDelimiter?: string;
291
+ allIsCheckbox?: boolean;
292
+ allIsEmpty?: boolean;
293
+ translateUserId?: boolean;
294
+ staticSearch?: boolean;
295
+ label?: string;
296
+ noNeedRefreshNumFilterName?: string;
297
+ filterKey: string;
298
+ defaultValues?: Array<string | number | boolean>;
299
+ }, {
300
+ clickAllSelected: () => void;
301
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
302
+ filterChange: (...args: any[]) => void;
303
+ setNoNeedRefreshNumFilterName: (...args: any[]) => void;
304
+ }, string, PublicProps, Readonly<{
305
+ multiSelectList?: Array<any>;
306
+ selectList: Array< Option>;
307
+ countList?: Array<any>;
308
+ totalCount?: number;
309
+ hasNum?: boolean;
310
+ displayRangeInput?: boolean;
311
+ rangeLabel?: string;
312
+ rangeStartKey?: string;
313
+ rangeEndKey?: string;
314
+ rangeDelimiter?: string;
315
+ allIsCheckbox?: boolean;
316
+ allIsEmpty?: boolean;
317
+ translateUserId?: boolean;
318
+ staticSearch?: boolean;
319
+ label?: string;
320
+ noNeedRefreshNumFilterName?: string;
321
+ filterKey: string;
322
+ defaultValues?: Array<string | number | boolean>;
323
+ }> & Readonly<{
324
+ onFilterChange?: (...args: any[]) => any;
325
+ onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
326
+ }>, {
327
+ label: string;
328
+ multiSelectList: Array<any>;
329
+ countList: Array<any>;
330
+ hasNum: boolean;
331
+ selectList: Array< Option>;
332
+ totalCount: number;
333
+ displayRangeInput: boolean;
334
+ rangeLabel: string;
335
+ rangeStartKey: string;
336
+ rangeEndKey: string;
337
+ rangeDelimiter: string;
338
+ allIsEmpty: boolean;
339
+ staticSearch: boolean;
340
+ noNeedRefreshNumFilterName: string;
341
+ filterKey: string;
342
+ defaultValues: Array<string | number | boolean>;
343
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>> & Record<string, any>) | ( SFCWithInstall<DefineComponent<ExtractPropTypes<{
344
+ selectList: {
345
+ type: {
346
+ (arrayLength: number): Option[];
347
+ (...items: Option[]): Option[];
348
+ new (arrayLength: number): Option[];
349
+ new (...items: Option[]): Option[];
350
+ isArray(arg: any): arg is any[];
351
+ readonly prototype: any[];
352
+ from<T>(arrayLike: ArrayLike<T>): T[];
353
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
354
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
355
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
356
+ of<T>(...items: T[]): T[];
357
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
358
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
359
+ readonly [Symbol.species]: ArrayConstructor;
360
+ };
361
+ default: () => Option[];
362
+ };
363
+ countList: {
364
+ type: {
365
+ (arrayLength: number): any[];
366
+ (...items: any[]): any[];
367
+ new (arrayLength: number): any[];
368
+ new (...items: any[]): any[];
369
+ isArray(arg: any): arg is any[];
370
+ readonly prototype: any[];
371
+ from<T>(arrayLike: ArrayLike<T>): T[];
372
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
373
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
374
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
375
+ of<T>(...items: T[]): T[];
376
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
377
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
378
+ readonly [Symbol.species]: ArrayConstructor;
379
+ };
380
+ required: false;
381
+ };
382
+ enumEntity: {
383
+ type: StringConstructor;
384
+ default: string;
385
+ };
386
+ filterKey: {
387
+ type: StringConstructor;
388
+ default: string;
389
+ };
390
+ totalCount: {
391
+ type: NumberConstructor;
392
+ required: false;
393
+ };
394
+ noNeedRefreshNumFilterName: {
395
+ type: StringConstructor;
396
+ required: false;
397
+ };
398
+ allIsCheckbox: {
399
+ type: BooleanConstructor;
400
+ required: false;
401
+ };
402
+ allIsEmpty: {
403
+ type: BooleanConstructor;
404
+ required: false;
405
+ };
406
+ translateUserId: {
407
+ type: BooleanConstructor;
408
+ required: false;
409
+ };
410
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
411
+ filterChange: (...args: any[]) => void;
412
+ setNoNeedRefreshNumFilterName: (...args: any[]) => void;
413
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
414
+ selectList: {
415
+ type: {
416
+ (arrayLength: number): Option[];
417
+ (...items: Option[]): Option[];
418
+ new (arrayLength: number): Option[];
419
+ new (...items: Option[]): Option[];
420
+ isArray(arg: any): arg is any[];
421
+ readonly prototype: any[];
422
+ from<T>(arrayLike: ArrayLike<T>): T[];
423
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
424
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
425
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
426
+ of<T>(...items: T[]): T[];
427
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
428
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
429
+ readonly [Symbol.species]: ArrayConstructor;
430
+ };
431
+ default: () => Option[];
432
+ };
433
+ countList: {
434
+ type: {
435
+ (arrayLength: number): any[];
436
+ (...items: any[]): any[];
437
+ new (arrayLength: number): any[];
438
+ new (...items: any[]): any[];
439
+ isArray(arg: any): arg is any[];
440
+ readonly prototype: any[];
441
+ from<T>(arrayLike: ArrayLike<T>): T[];
442
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
443
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
444
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
445
+ of<T>(...items: T[]): T[];
446
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
447
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
448
+ readonly [Symbol.species]: ArrayConstructor;
449
+ };
450
+ required: false;
451
+ };
452
+ enumEntity: {
453
+ type: StringConstructor;
454
+ default: string;
455
+ };
456
+ filterKey: {
457
+ type: StringConstructor;
458
+ default: string;
459
+ };
460
+ totalCount: {
461
+ type: NumberConstructor;
462
+ required: false;
463
+ };
464
+ noNeedRefreshNumFilterName: {
465
+ type: StringConstructor;
466
+ required: false;
467
+ };
468
+ allIsCheckbox: {
469
+ type: BooleanConstructor;
470
+ required: false;
471
+ };
472
+ allIsEmpty: {
473
+ type: BooleanConstructor;
474
+ required: false;
475
+ };
476
+ translateUserId: {
477
+ type: BooleanConstructor;
478
+ required: false;
479
+ };
480
+ }>> & Readonly<{
481
+ onFilterChange?: (...args: any[]) => any;
482
+ onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
483
+ }>, {
484
+ allIsCheckbox: boolean;
485
+ translateUserId: boolean;
486
+ selectList: Option[];
487
+ allIsEmpty: boolean;
488
+ filterKey: string;
489
+ enumEntity: string;
490
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>> & Record<string, any>) | ( SFCWithInstall<DefineComponent<{
491
+ filterList?: Array< DropdownEntity>;
492
+ totalCount?: number;
493
+ level1Count?: Array<{
494
+ value: string;
495
+ count: number;
496
+ }>;
497
+ level2Count?: Array<{
498
+ value: string;
499
+ count: number;
500
+ }>;
501
+ filterKey: string;
502
+ enumEntity: string;
503
+ noNeedRefreshNumFilterName?: string;
504
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
505
+ filterChange: (...args: any[]) => void;
506
+ setNoNeedRefreshNumFilterName: (...args: any[]) => void;
507
+ }, string, PublicProps, Readonly<{
508
+ filterList?: Array< DropdownEntity>;
509
+ totalCount?: number;
510
+ level1Count?: Array<{
511
+ value: string;
512
+ count: number;
513
+ }>;
514
+ level2Count?: Array<{
515
+ value: string;
516
+ count: number;
517
+ }>;
518
+ filterKey: string;
519
+ enumEntity: string;
520
+ noNeedRefreshNumFilterName?: string;
521
+ }> & Readonly<{
522
+ onFilterChange?: (...args: any[]) => any;
523
+ onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
524
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>> & Record<string, any>) | ( SFCWithInstall<DefineComponent<{
525
+ xyFilters?: data;
526
+ filterKey: string;
527
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
528
+ filterChange: (...args: any[]) => void;
529
+ }, string, PublicProps, Readonly<{
530
+ xyFilters?: data;
531
+ filterKey: string;
532
+ }> & Readonly<{
533
+ onFilterChange?: (...args: any[]) => any;
534
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>> & Record<string, any>))[];
278
535
  export default _default;
@@ -0,0 +1,69 @@
1
+ import { SFCWithInstall } from '../utils/typescript';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ import { Option } from '../static/CommonObject';
4
+ export declare const YaheeLeftCondition: SFCWithInstall<DefineComponent<{
5
+ multiSelectList?: Array<any>;
6
+ selectList: Array< Option>;
7
+ countList?: Array<any>;
8
+ totalCount?: number;
9
+ hasNum?: boolean;
10
+ displayRangeInput?: boolean;
11
+ rangeLabel?: string;
12
+ rangeStartKey?: string;
13
+ rangeEndKey?: string;
14
+ rangeDelimiter?: string;
15
+ allIsCheckbox?: boolean;
16
+ allIsEmpty?: boolean;
17
+ translateUserId?: boolean;
18
+ staticSearch?: boolean;
19
+ label?: string;
20
+ noNeedRefreshNumFilterName?: string;
21
+ filterKey: string;
22
+ defaultValues?: Array<string | number | boolean>;
23
+ }, {
24
+ clickAllSelected: () => void;
25
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
26
+ filterChange: (...args: any[]) => void;
27
+ setNoNeedRefreshNumFilterName: (...args: any[]) => void;
28
+ }, string, PublicProps, Readonly<{
29
+ multiSelectList?: Array<any>;
30
+ selectList: Array< Option>;
31
+ countList?: Array<any>;
32
+ totalCount?: number;
33
+ hasNum?: boolean;
34
+ displayRangeInput?: boolean;
35
+ rangeLabel?: string;
36
+ rangeStartKey?: string;
37
+ rangeEndKey?: string;
38
+ rangeDelimiter?: string;
39
+ allIsCheckbox?: boolean;
40
+ allIsEmpty?: boolean;
41
+ translateUserId?: boolean;
42
+ staticSearch?: boolean;
43
+ label?: string;
44
+ noNeedRefreshNumFilterName?: string;
45
+ filterKey: string;
46
+ defaultValues?: Array<string | number | boolean>;
47
+ }> & Readonly<{
48
+ onFilterChange?: (...args: any[]) => any;
49
+ onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
50
+ }>, {
51
+ label: string;
52
+ multiSelectList: Array<any>;
53
+ countList: Array<any>;
54
+ hasNum: boolean;
55
+ selectList: Array< Option>;
56
+ totalCount: number;
57
+ displayRangeInput: boolean;
58
+ rangeLabel: string;
59
+ rangeStartKey: string;
60
+ rangeEndKey: string;
61
+ rangeDelimiter: string;
62
+ allIsEmpty: boolean;
63
+ staticSearch: boolean;
64
+ noNeedRefreshNumFilterName: string;
65
+ filterKey: string;
66
+ defaultValues: Array<string | number | boolean>;
67
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>> & Record<string, any>;
68
+ export default YaheeLeftCondition;
69
+ export * from './left-condition.vue';
@@ -0,0 +1,47 @@
1
+ import { Option } from '../static/CommonObject';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare function setCheckboxValue(val: boolean): void;
4
+ declare function setCurrentValue(val: boolean): void;
5
+ declare function resetValue(): void;
6
+ declare function getValue(): Option;
7
+ declare const _default: DefineComponent<{
8
+ multiSelectList: Array<any>;
9
+ countList?: Array<any>;
10
+ item: Option;
11
+ hasNum: boolean;
12
+ allIsCheckbox?: boolean;
13
+ translateUserId: boolean;
14
+ }, {
15
+ resetValue: typeof resetValue;
16
+ getValue: typeof getValue;
17
+ setCurrentValue: typeof setCurrentValue;
18
+ setCheckboxValue: typeof setCheckboxValue;
19
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
20
+ resetAllCheckedValue: (...args: any[]) => void;
21
+ setSelectedStatusMap: (...args: any[]) => void;
22
+ resetRange: (...args: any[]) => void;
23
+ resetIsSelectAll: (...args: any[]) => void;
24
+ notifyParent: (...args: any[]) => void;
25
+ setNoNeedRefreshNumFilterName: (...args: any[]) => void;
26
+ }, string, PublicProps, Readonly<{
27
+ multiSelectList: Array<any>;
28
+ countList?: Array<any>;
29
+ item: Option;
30
+ hasNum: boolean;
31
+ allIsCheckbox?: boolean;
32
+ translateUserId: boolean;
33
+ }> & Readonly<{
34
+ onResetAllCheckedValue?: (...args: any[]) => any;
35
+ onSetSelectedStatusMap?: (...args: any[]) => any;
36
+ onResetRange?: (...args: any[]) => any;
37
+ onResetIsSelectAll?: (...args: any[]) => any;
38
+ onNotifyParent?: (...args: any[]) => any;
39
+ onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
40
+ }>, {
41
+ item: Option;
42
+ multiSelectList: Array<any>;
43
+ hasNum: boolean;
44
+ allIsCheckbox: boolean;
45
+ translateUserId: boolean;
46
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
47
+ export default _default;
@@ -0,0 +1,5 @@
1
+ export type SelectStatus = {
2
+ label: string;
3
+ value: any;
4
+ selected: boolean;
5
+ };
@@ -0,0 +1,68 @@
1
+ import { Option } from '../static/CommonObject';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare function clickAllSelected(): void;
4
+ declare const _default: DefineComponent<{
5
+ multiSelectList?: Array<any>;
6
+ selectList: Array<Option>;
7
+ countList?: Array<any>;
8
+ totalCount?: number;
9
+ hasNum?: boolean;
10
+ displayRangeInput?: boolean;
11
+ rangeLabel?: string;
12
+ rangeStartKey?: string;
13
+ rangeEndKey?: string;
14
+ rangeDelimiter?: string;
15
+ allIsCheckbox?: boolean;
16
+ allIsEmpty?: boolean;
17
+ translateUserId?: boolean;
18
+ staticSearch?: boolean;
19
+ label?: string;
20
+ noNeedRefreshNumFilterName?: string;
21
+ filterKey: string;
22
+ defaultValues?: Array<string | number | boolean>;
23
+ }, {
24
+ clickAllSelected: typeof clickAllSelected;
25
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
26
+ filterChange: (...args: any[]) => void;
27
+ setNoNeedRefreshNumFilterName: (...args: any[]) => void;
28
+ }, string, PublicProps, Readonly<{
29
+ multiSelectList?: Array<any>;
30
+ selectList: Array<Option>;
31
+ countList?: Array<any>;
32
+ totalCount?: number;
33
+ hasNum?: boolean;
34
+ displayRangeInput?: boolean;
35
+ rangeLabel?: string;
36
+ rangeStartKey?: string;
37
+ rangeEndKey?: string;
38
+ rangeDelimiter?: string;
39
+ allIsCheckbox?: boolean;
40
+ allIsEmpty?: boolean;
41
+ translateUserId?: boolean;
42
+ staticSearch?: boolean;
43
+ label?: string;
44
+ noNeedRefreshNumFilterName?: string;
45
+ filterKey: string;
46
+ defaultValues?: Array<string | number | boolean>;
47
+ }> & Readonly<{
48
+ onFilterChange?: (...args: any[]) => any;
49
+ onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
50
+ }>, {
51
+ label: string;
52
+ multiSelectList: Array<any>;
53
+ countList: Array<any>;
54
+ hasNum: boolean;
55
+ selectList: Array<Option>;
56
+ totalCount: number;
57
+ displayRangeInput: boolean;
58
+ rangeLabel: string;
59
+ rangeStartKey: string;
60
+ rangeEndKey: string;
61
+ rangeDelimiter: string;
62
+ allIsEmpty: boolean;
63
+ staticSearch: boolean;
64
+ noNeedRefreshNumFilterName: string;
65
+ filterKey: string;
66
+ defaultValues: Array<string | number | boolean>;
67
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
68
+ export default _default;
@@ -0,0 +1,153 @@
1
+ import { SFCWithInstall } from '../utils/typescript';
2
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ import { Option } from '../static/CommonObject';
4
+ export declare const YaheeLeftConditionEnum: SFCWithInstall<DefineComponent<ExtractPropTypes<{
5
+ selectList: {
6
+ type: {
7
+ (arrayLength: number): Option[];
8
+ (...items: Option[]): Option[];
9
+ new (arrayLength: number): Option[];
10
+ new (...items: Option[]): Option[];
11
+ isArray(arg: any): arg is any[];
12
+ readonly prototype: any[];
13
+ from<T>(arrayLike: ArrayLike<T>): T[];
14
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
15
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
16
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
17
+ of<T>(...items: T[]): T[];
18
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
19
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
20
+ readonly [Symbol.species]: ArrayConstructor;
21
+ };
22
+ default: () => Option[];
23
+ };
24
+ countList: {
25
+ type: {
26
+ (arrayLength: number): any[];
27
+ (...items: any[]): any[];
28
+ new (arrayLength: number): any[];
29
+ new (...items: any[]): any[];
30
+ isArray(arg: any): arg is any[];
31
+ readonly prototype: any[];
32
+ from<T>(arrayLike: ArrayLike<T>): T[];
33
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
34
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
35
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
36
+ of<T>(...items: T[]): T[];
37
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
38
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
39
+ readonly [Symbol.species]: ArrayConstructor;
40
+ };
41
+ required: false;
42
+ };
43
+ enumEntity: {
44
+ type: StringConstructor;
45
+ default: string;
46
+ };
47
+ filterKey: {
48
+ type: StringConstructor;
49
+ default: string;
50
+ };
51
+ totalCount: {
52
+ type: NumberConstructor;
53
+ required: false;
54
+ };
55
+ noNeedRefreshNumFilterName: {
56
+ type: StringConstructor;
57
+ required: false;
58
+ };
59
+ allIsCheckbox: {
60
+ type: BooleanConstructor;
61
+ required: false;
62
+ };
63
+ allIsEmpty: {
64
+ type: BooleanConstructor;
65
+ required: false;
66
+ };
67
+ translateUserId: {
68
+ type: BooleanConstructor;
69
+ required: false;
70
+ };
71
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
72
+ filterChange: (...args: any[]) => void;
73
+ setNoNeedRefreshNumFilterName: (...args: any[]) => void;
74
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
75
+ selectList: {
76
+ type: {
77
+ (arrayLength: number): Option[];
78
+ (...items: Option[]): Option[];
79
+ new (arrayLength: number): Option[];
80
+ new (...items: Option[]): Option[];
81
+ isArray(arg: any): arg is any[];
82
+ readonly prototype: any[];
83
+ from<T>(arrayLike: ArrayLike<T>): T[];
84
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
85
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
86
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
87
+ of<T>(...items: T[]): T[];
88
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
89
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
90
+ readonly [Symbol.species]: ArrayConstructor;
91
+ };
92
+ default: () => Option[];
93
+ };
94
+ countList: {
95
+ type: {
96
+ (arrayLength: number): any[];
97
+ (...items: any[]): any[];
98
+ new (arrayLength: number): any[];
99
+ new (...items: any[]): any[];
100
+ isArray(arg: any): arg is any[];
101
+ readonly prototype: any[];
102
+ from<T>(arrayLike: ArrayLike<T>): T[];
103
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
104
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
105
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
106
+ of<T>(...items: T[]): T[];
107
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
108
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
109
+ readonly [Symbol.species]: ArrayConstructor;
110
+ };
111
+ required: false;
112
+ };
113
+ enumEntity: {
114
+ type: StringConstructor;
115
+ default: string;
116
+ };
117
+ filterKey: {
118
+ type: StringConstructor;
119
+ default: string;
120
+ };
121
+ totalCount: {
122
+ type: NumberConstructor;
123
+ required: false;
124
+ };
125
+ noNeedRefreshNumFilterName: {
126
+ type: StringConstructor;
127
+ required: false;
128
+ };
129
+ allIsCheckbox: {
130
+ type: BooleanConstructor;
131
+ required: false;
132
+ };
133
+ allIsEmpty: {
134
+ type: BooleanConstructor;
135
+ required: false;
136
+ };
137
+ translateUserId: {
138
+ type: BooleanConstructor;
139
+ required: false;
140
+ };
141
+ }>> & Readonly<{
142
+ onFilterChange?: (...args: any[]) => any;
143
+ onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
144
+ }>, {
145
+ allIsCheckbox: boolean;
146
+ translateUserId: boolean;
147
+ selectList: Option[];
148
+ allIsEmpty: boolean;
149
+ filterKey: string;
150
+ enumEntity: string;
151
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>> & Record<string, any>;
152
+ export default YaheeLeftConditionEnum;
153
+ export * from './left-condition-enum.vue';
@@ -0,0 +1,5 @@
1
+ export type SelectStatus = {
2
+ label: string;
3
+ value: any;
4
+ selected: boolean;
5
+ };