cnhis-design-vue 3.1.51-beta.0 → 3.1.51-beta.2

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 (44) hide show
  1. package/es/components/base-search/index.d.ts +0 -1
  2. package/es/components/base-search/src/index.vue.d.ts +0 -1
  3. package/es/components/classification/index.d.ts +57 -15
  4. package/es/components/classification/src/components/search-filter/index.vue.d.ts +57 -15
  5. package/es/components/classification/src/components/set-classification/index.vue.d.ts +57 -15
  6. package/es/components/classification/src/index.vue.d.ts +57 -15
  7. package/es/components/fabric-chart/src/hooks/birthProcess/useBirthProcess.js +1 -1
  8. package/es/components/fabric-chart/src/hooks/birthProcess/useBirthProcessChart.js +1 -1
  9. package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useCenter.js +1 -1
  10. package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useLeft.js +1 -1
  11. package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useOther.js +1 -1
  12. package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useTop.js +1 -1
  13. package/es/components/fabric-chart/src/hooks/temperature/useBottom.js +1 -1
  14. package/es/components/fabric-chart/src/hooks/temperature/useCenter.js +1 -1
  15. package/es/components/fabric-chart/src/hooks/temperature/useLeft.js +1 -1
  16. package/es/components/fabric-chart/src/hooks/temperature/useOther.js +1 -1
  17. package/es/components/fabric-chart/src/hooks/temperature/useTemperatureChart.js +1 -1
  18. package/es/components/fabric-chart/src/hooks/temperature/useTop.js +1 -1
  19. package/es/components/form-render/src/components/renderer/remoteSearch.d.ts +79 -2
  20. package/es/components/form-render/src/components/renderer/remoteSearch.js +1 -1
  21. package/es/components/form-render/src/components/renderer/select.d.ts +10 -1
  22. package/es/components/form-render/src/components/renderer/select.js +1 -1
  23. package/es/components/form-render/src/hooks/useFieldListAdaptor.js +1 -1
  24. package/es/components/form-render/src/hooks/useFormRenderOptions.d.ts +16 -10
  25. package/es/components/form-render/src/hooks/useFormRenderOptions.js +1 -1
  26. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/editSelect.d.ts +1 -1
  27. package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +52 -7
  28. package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue2.js +1 -1
  29. package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +1 -1
  30. package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +1 -1
  31. package/es/components/table-filter/src/components/classify-filter/components/InputFilter.vue.d.ts +34 -2
  32. package/es/components/table-filter/src/components/classify-filter/components/InputFilter.vue2.js +1 -1
  33. package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +36 -4
  34. package/es/components/table-filter/src/components/classify-filter/hooks/useFilterConditions.d.ts +1 -6
  35. package/es/components/table-filter/src/components/classify-filter/hooks/useFilterConditions.js +1 -1
  36. package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +57 -15
  37. package/es/components/table-filter/src/components/classify-filter/index.vue2.js +1 -1
  38. package/es/components/table-filter/src/hooks/useAdvanced.js +1 -1
  39. package/es/components/table-filter/src/hooks/useRenderWidget.js +1 -1
  40. package/es/components/table-filter/src/tool/transformData.d.ts +1 -6
  41. package/es/components/table-filter/src/tool/transformData.js +1 -1
  42. package/es/components/table-filter/src/types/index.d.ts +11 -2
  43. package/es/shared/package.json.js +1 -1
  44. package/package.json +2 -2
@@ -103,7 +103,6 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
103
103
  con: string;
104
104
  value: string[];
105
105
  unit: "custom" | null;
106
- switchEnable?: boolean | undefined;
107
106
  isAccurateSearch?: boolean | undefined;
108
107
  accurateSearchKey?: string | undefined;
109
108
  }[]>;
@@ -104,7 +104,6 @@ declare const _default: import("vue").DefineComponent<{
104
104
  con: string;
105
105
  value: string[];
106
106
  unit: "custom" | null;
107
- switchEnable?: boolean | undefined;
108
107
  isAccurateSearch?: boolean | undefined;
109
108
  accurateSearchKey?: string | undefined;
110
109
  }[]>;
@@ -647,10 +647,12 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
647
647
  className: string;
648
648
  displayCategory: string;
649
649
  filterConditions: {
650
- value: string;
651
- key: string;
652
650
  condition: string;
651
+ key: string;
653
652
  presetVal: string;
653
+ value: string;
654
+ isAccurateSearch?: boolean | undefined;
655
+ accurateSearchKey?: string | undefined;
654
656
  }[];
655
657
  };
656
658
  loading: import("vue").Ref<boolean>;
@@ -678,12 +680,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
678
680
  updateCondition: (index: number, val: any) => void;
679
681
  getParamCfg: (key: string) => any;
680
682
  initFilterConditions: (tableId: string, rawConditions: import("..").ISearchConfigType) => Promise<void>;
681
- getRawFilterConditions: () => {
682
- field_key: any;
683
- con: any;
684
- value: any;
685
- unit: any;
686
- }[];
683
+ getRawFilterConditions: () => any[];
687
684
  findConditionByDisplayCategory: (sid: string) => unknown;
688
685
  handleDisplayCategorySelectProxy: (item: import("..").ICategoryItemType) => void;
689
686
  clearFormData: () => void;
@@ -714,6 +711,9 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
714
711
  type: StringConstructor;
715
712
  default: null;
716
713
  };
714
+ isAccurate: {
715
+ type: BooleanConstructor;
716
+ };
717
717
  }, {
718
718
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
719
719
  paramCfg: {
@@ -728,13 +728,18 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
728
728
  type: StringConstructor;
729
729
  default: null;
730
730
  };
731
+ isAccurate: {
732
+ type: BooleanConstructor;
733
+ };
731
734
  }>> & {
732
735
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
736
+ "onUpdate:isAccurate"?: ((...args: any[]) => any) | undefined;
733
737
  "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
734
738
  }>>;
735
- emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
739
+ emit: (event: "update:modelValue" | "update:isAccurate" | "update:presetVal", ...args: any[]) => void;
736
740
  valueCp: import("vue").WritableComputedRef<any>;
737
741
  presetValCp: import("vue").WritableComputedRef<string>;
742
+ isAccurateCp: import("vue").WritableComputedRef<boolean>;
738
743
  widgetType: import("vue").ComputedRef<any>;
739
744
  Date: import("vue").DefineComponent<{
740
745
  componentCfg: {
@@ -884,35 +889,67 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
884
889
  "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
885
890
  }, {
886
891
  modelValue: string | number | unknown[];
887
- presetVal: string;
888
892
  paramCfg: Record<string, any>;
893
+ presetVal: string;
889
894
  }>;
890
895
  InputFilter: import("vue").DefineComponent<{
896
+ paramCfg: {
897
+ type: ObjectConstructor;
898
+ default: null;
899
+ };
891
900
  modelValue: {
892
901
  type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
893
902
  default: null;
894
903
  };
904
+ isAccurateFilter: {
905
+ type: BooleanConstructor;
906
+ };
895
907
  }, {
896
908
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
909
+ paramCfg: {
910
+ type: ObjectConstructor;
911
+ default: null;
912
+ };
897
913
  modelValue: {
898
914
  type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
899
915
  default: null;
900
916
  };
917
+ isAccurateFilter: {
918
+ type: BooleanConstructor;
919
+ };
901
920
  }>> & {
902
921
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
922
+ "onUpdate:isAccurateFilter"?: ((...args: any[]) => any) | undefined;
903
923
  }>>;
904
- emit: (event: "update:modelValue", ...args: any[]) => void;
924
+ emit: (event: "update:modelValue" | "update:isAccurateFilter", ...args: any[]) => void;
925
+ optionList: import("vue").Ref<{
926
+ label: string;
927
+ value: number;
928
+ }[]>;
905
929
  valueCp: import("vue").WritableComputedRef<any>;
930
+ isAccurateFilterCp: import("vue").WritableComputedRef<number>;
931
+ isShowSearch: import("vue").ComputedRef<any>;
906
932
  NInput: any;
907
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
933
+ NSelect: any;
934
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:isAccurateFilter")[], "update:modelValue" | "update:isAccurateFilter", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
935
+ paramCfg: {
936
+ type: ObjectConstructor;
937
+ default: null;
938
+ };
908
939
  modelValue: {
909
940
  type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
910
941
  default: null;
911
942
  };
943
+ isAccurateFilter: {
944
+ type: BooleanConstructor;
945
+ };
912
946
  }>> & {
913
947
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
948
+ "onUpdate:isAccurateFilter"?: ((...args: any[]) => any) | undefined;
914
949
  }, {
915
950
  modelValue: string | number | unknown[];
951
+ paramCfg: Record<string, any>;
952
+ isAccurateFilter: boolean;
916
953
  }>;
917
954
  InputNumber: import("vue").DefineComponent<{
918
955
  modelValue: {
@@ -1441,8 +1478,8 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
1441
1478
  "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
1442
1479
  }, {
1443
1480
  modelValue: string | number | unknown[];
1444
- presetVal: string;
1445
1481
  paramCfg: Record<string, any>;
1482
+ presetVal: string;
1446
1483
  }>;
1447
1484
  SelectLabel: import("vue").DefineComponent<{
1448
1485
  paramCfg: {
@@ -1508,7 +1545,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
1508
1545
  SELECTLABEL: string;
1509
1546
  SELECTDYNAMIC: string;
1510
1547
  };
1511
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:presetVal")[], "update:modelValue" | "update:presetVal", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1548
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:isAccurate" | "update:presetVal")[], "update:modelValue" | "update:isAccurate" | "update:presetVal", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1512
1549
  paramCfg: {
1513
1550
  type: ObjectConstructor;
1514
1551
  default: null;
@@ -1521,13 +1558,18 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
1521
1558
  type: StringConstructor;
1522
1559
  default: null;
1523
1560
  };
1561
+ isAccurate: {
1562
+ type: BooleanConstructor;
1563
+ };
1524
1564
  }>> & {
1525
1565
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1566
+ "onUpdate:isAccurate"?: ((...args: any[]) => any) | undefined;
1526
1567
  "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
1527
1568
  }, {
1528
1569
  modelValue: string | number | unknown[];
1529
- presetVal: string;
1530
1570
  paramCfg: Record<string, any>;
1571
+ presetVal: string;
1572
+ isAccurate: boolean;
1531
1573
  }>;
1532
1574
  ConditionEnums: {
1533
1575
  NULL: string;
@@ -124,10 +124,12 @@ declare const _default: import("vue").DefineComponent<{
124
124
  className: string;
125
125
  displayCategory: string;
126
126
  filterConditions: {
127
- value: string;
128
- key: string;
129
127
  condition: string;
128
+ key: string;
130
129
  presetVal: string;
130
+ value: string;
131
+ isAccurateSearch?: boolean | undefined;
132
+ accurateSearchKey?: string | undefined;
131
133
  }[];
132
134
  };
133
135
  loading: import("vue").Ref<boolean>;
@@ -155,12 +157,7 @@ declare const _default: import("vue").DefineComponent<{
155
157
  updateCondition: (index: number, val: any) => void;
156
158
  getParamCfg: (key: string) => any;
157
159
  initFilterConditions: (tableId: string, rawConditions: import("../../../..").ISearchConfigType) => Promise<void>;
158
- getRawFilterConditions: () => {
159
- field_key: any;
160
- con: any;
161
- value: any;
162
- unit: any;
163
- }[];
160
+ getRawFilterConditions: () => any[];
164
161
  findConditionByDisplayCategory: (sid: string) => unknown;
165
162
  handleDisplayCategorySelectProxy: (item: import("../../../..").ICategoryItemType) => void;
166
163
  clearFormData: () => void;
@@ -191,6 +188,9 @@ declare const _default: import("vue").DefineComponent<{
191
188
  type: StringConstructor;
192
189
  default: null;
193
190
  };
191
+ isAccurate: {
192
+ type: BooleanConstructor;
193
+ };
194
194
  }, {
195
195
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
196
196
  paramCfg: {
@@ -205,13 +205,18 @@ declare const _default: import("vue").DefineComponent<{
205
205
  type: StringConstructor;
206
206
  default: null;
207
207
  };
208
+ isAccurate: {
209
+ type: BooleanConstructor;
210
+ };
208
211
  }>> & {
209
212
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
213
+ "onUpdate:isAccurate"?: ((...args: any[]) => any) | undefined;
210
214
  "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
211
215
  }>>;
212
- emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
216
+ emit: (event: "update:modelValue" | "update:isAccurate" | "update:presetVal", ...args: any[]) => void;
213
217
  valueCp: import("vue").WritableComputedRef<any>;
214
218
  presetValCp: import("vue").WritableComputedRef<string>;
219
+ isAccurateCp: import("vue").WritableComputedRef<boolean>;
215
220
  widgetType: import("vue").ComputedRef<any>;
216
221
  Date: import("vue").DefineComponent<{
217
222
  componentCfg: {
@@ -361,35 +366,67 @@ declare const _default: import("vue").DefineComponent<{
361
366
  "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
362
367
  }, {
363
368
  modelValue: string | number | unknown[];
364
- presetVal: string;
365
369
  paramCfg: Record<string, any>;
370
+ presetVal: string;
366
371
  }>;
367
372
  InputFilter: import("vue").DefineComponent<{
373
+ paramCfg: {
374
+ type: ObjectConstructor;
375
+ default: null;
376
+ };
368
377
  modelValue: {
369
378
  type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
370
379
  default: null;
371
380
  };
381
+ isAccurateFilter: {
382
+ type: BooleanConstructor;
383
+ };
372
384
  }, {
373
385
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
386
+ paramCfg: {
387
+ type: ObjectConstructor;
388
+ default: null;
389
+ };
374
390
  modelValue: {
375
391
  type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
376
392
  default: null;
377
393
  };
394
+ isAccurateFilter: {
395
+ type: BooleanConstructor;
396
+ };
378
397
  }>> & {
379
398
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
399
+ "onUpdate:isAccurateFilter"?: ((...args: any[]) => any) | undefined;
380
400
  }>>;
381
- emit: (event: "update:modelValue", ...args: any[]) => void;
401
+ emit: (event: "update:modelValue" | "update:isAccurateFilter", ...args: any[]) => void;
402
+ optionList: import("vue").Ref<{
403
+ label: string;
404
+ value: number;
405
+ }[]>;
382
406
  valueCp: import("vue").WritableComputedRef<any>;
407
+ isAccurateFilterCp: import("vue").WritableComputedRef<number>;
408
+ isShowSearch: import("vue").ComputedRef<any>;
383
409
  NInput: any;
384
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
410
+ NSelect: any;
411
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:isAccurateFilter")[], "update:modelValue" | "update:isAccurateFilter", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
412
+ paramCfg: {
413
+ type: ObjectConstructor;
414
+ default: null;
415
+ };
385
416
  modelValue: {
386
417
  type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
387
418
  default: null;
388
419
  };
420
+ isAccurateFilter: {
421
+ type: BooleanConstructor;
422
+ };
389
423
  }>> & {
390
424
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
425
+ "onUpdate:isAccurateFilter"?: ((...args: any[]) => any) | undefined;
391
426
  }, {
392
427
  modelValue: string | number | unknown[];
428
+ paramCfg: Record<string, any>;
429
+ isAccurateFilter: boolean;
393
430
  }>;
394
431
  InputNumber: import("vue").DefineComponent<{
395
432
  modelValue: {
@@ -918,8 +955,8 @@ declare const _default: import("vue").DefineComponent<{
918
955
  "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
919
956
  }, {
920
957
  modelValue: string | number | unknown[];
921
- presetVal: string;
922
958
  paramCfg: Record<string, any>;
959
+ presetVal: string;
923
960
  }>;
924
961
  SelectLabel: import("vue").DefineComponent<{
925
962
  paramCfg: {
@@ -985,7 +1022,7 @@ declare const _default: import("vue").DefineComponent<{
985
1022
  SELECTLABEL: string;
986
1023
  SELECTDYNAMIC: string;
987
1024
  };
988
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:presetVal")[], "update:modelValue" | "update:presetVal", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1025
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:isAccurate" | "update:presetVal")[], "update:modelValue" | "update:isAccurate" | "update:presetVal", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
989
1026
  paramCfg: {
990
1027
  type: ObjectConstructor;
991
1028
  default: null;
@@ -998,13 +1035,18 @@ declare const _default: import("vue").DefineComponent<{
998
1035
  type: StringConstructor;
999
1036
  default: null;
1000
1037
  };
1038
+ isAccurate: {
1039
+ type: BooleanConstructor;
1040
+ };
1001
1041
  }>> & {
1002
1042
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1043
+ "onUpdate:isAccurate"?: ((...args: any[]) => any) | undefined;
1003
1044
  "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
1004
1045
  }, {
1005
1046
  modelValue: string | number | unknown[];
1006
- presetVal: string;
1007
1047
  paramCfg: Record<string, any>;
1048
+ presetVal: string;
1049
+ isAccurate: boolean;
1008
1050
  }>;
1009
1051
  ConditionEnums: {
1010
1052
  NULL: string;
@@ -434,10 +434,12 @@ declare const _default: import("vue").DefineComponent<{
434
434
  className: string;
435
435
  displayCategory: string;
436
436
  filterConditions: {
437
- value: string;
438
- key: string;
439
437
  condition: string;
438
+ key: string;
440
439
  presetVal: string;
440
+ value: string;
441
+ isAccurateSearch?: boolean | undefined;
442
+ accurateSearchKey?: string | undefined;
441
443
  }[];
442
444
  };
443
445
  loading: import("vue").Ref<boolean>;
@@ -465,12 +467,7 @@ declare const _default: import("vue").DefineComponent<{
465
467
  updateCondition: (index: number, val: any) => void;
466
468
  getParamCfg: (key: string) => any;
467
469
  initFilterConditions: (tableId: string, rawConditions: import("../../../../../../es/components/table-filter/src/types").ISearchConfigType) => Promise<void>;
468
- getRawFilterConditions: () => {
469
- field_key: any;
470
- con: any;
471
- value: any;
472
- unit: any;
473
- }[];
470
+ getRawFilterConditions: () => any[];
474
471
  findConditionByDisplayCategory: (sid: string) => unknown;
475
472
  handleDisplayCategorySelectProxy: (item: import("../../../../../../es/components/table-filter/src/types").ICategoryItemType) => void;
476
473
  clearFormData: () => void;
@@ -501,6 +498,9 @@ declare const _default: import("vue").DefineComponent<{
501
498
  type: StringConstructor;
502
499
  default: null;
503
500
  };
501
+ isAccurate: {
502
+ type: BooleanConstructor;
503
+ };
504
504
  }, {
505
505
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
506
506
  paramCfg: {
@@ -515,13 +515,18 @@ declare const _default: import("vue").DefineComponent<{
515
515
  type: StringConstructor;
516
516
  default: null;
517
517
  };
518
+ isAccurate: {
519
+ type: BooleanConstructor;
520
+ };
518
521
  }>> & {
519
522
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
523
+ "onUpdate:isAccurate"?: ((...args: any[]) => any) | undefined;
520
524
  "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
521
525
  }>>;
522
- emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
526
+ emit: (event: "update:modelValue" | "update:isAccurate" | "update:presetVal", ...args: any[]) => void;
523
527
  valueCp: import("vue").WritableComputedRef<any>;
524
528
  presetValCp: import("vue").WritableComputedRef<string>;
529
+ isAccurateCp: import("vue").WritableComputedRef<boolean>;
525
530
  widgetType: import("vue").ComputedRef<any>;
526
531
  Date: import("vue").DefineComponent<{
527
532
  componentCfg: {
@@ -671,35 +676,67 @@ declare const _default: import("vue").DefineComponent<{
671
676
  "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
672
677
  }, {
673
678
  modelValue: string | number | unknown[];
674
- presetVal: string;
675
679
  paramCfg: Record<string, any>;
680
+ presetVal: string;
676
681
  }>;
677
682
  InputFilter: import("vue").DefineComponent<{
683
+ paramCfg: {
684
+ type: ObjectConstructor;
685
+ default: null;
686
+ };
678
687
  modelValue: {
679
688
  type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
680
689
  default: null;
681
690
  };
691
+ isAccurateFilter: {
692
+ type: BooleanConstructor;
693
+ };
682
694
  }, {
683
695
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
696
+ paramCfg: {
697
+ type: ObjectConstructor;
698
+ default: null;
699
+ };
684
700
  modelValue: {
685
701
  type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
686
702
  default: null;
687
703
  };
704
+ isAccurateFilter: {
705
+ type: BooleanConstructor;
706
+ };
688
707
  }>> & {
689
708
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
709
+ "onUpdate:isAccurateFilter"?: ((...args: any[]) => any) | undefined;
690
710
  }>>;
691
- emit: (event: "update:modelValue", ...args: any[]) => void;
711
+ emit: (event: "update:modelValue" | "update:isAccurateFilter", ...args: any[]) => void;
712
+ optionList: import("vue").Ref<{
713
+ label: string;
714
+ value: number;
715
+ }[]>;
692
716
  valueCp: import("vue").WritableComputedRef<any>;
717
+ isAccurateFilterCp: import("vue").WritableComputedRef<number>;
718
+ isShowSearch: import("vue").ComputedRef<any>;
693
719
  NInput: any;
694
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
720
+ NSelect: any;
721
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:isAccurateFilter")[], "update:modelValue" | "update:isAccurateFilter", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
722
+ paramCfg: {
723
+ type: ObjectConstructor;
724
+ default: null;
725
+ };
695
726
  modelValue: {
696
727
  type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
697
728
  default: null;
698
729
  };
730
+ isAccurateFilter: {
731
+ type: BooleanConstructor;
732
+ };
699
733
  }>> & {
700
734
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
735
+ "onUpdate:isAccurateFilter"?: ((...args: any[]) => any) | undefined;
701
736
  }, {
702
737
  modelValue: string | number | unknown[];
738
+ paramCfg: Record<string, any>;
739
+ isAccurateFilter: boolean;
703
740
  }>;
704
741
  InputNumber: import("vue").DefineComponent<{
705
742
  modelValue: {
@@ -1228,8 +1265,8 @@ declare const _default: import("vue").DefineComponent<{
1228
1265
  "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
1229
1266
  }, {
1230
1267
  modelValue: string | number | unknown[];
1231
- presetVal: string;
1232
1268
  paramCfg: Record<string, any>;
1269
+ presetVal: string;
1233
1270
  }>;
1234
1271
  SelectLabel: import("vue").DefineComponent<{
1235
1272
  paramCfg: {
@@ -1295,7 +1332,7 @@ declare const _default: import("vue").DefineComponent<{
1295
1332
  SELECTLABEL: string;
1296
1333
  SELECTDYNAMIC: string;
1297
1334
  };
1298
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:presetVal")[], "update:modelValue" | "update:presetVal", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1335
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:isAccurate" | "update:presetVal")[], "update:modelValue" | "update:isAccurate" | "update:presetVal", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1299
1336
  paramCfg: {
1300
1337
  type: ObjectConstructor;
1301
1338
  default: null;
@@ -1308,13 +1345,18 @@ declare const _default: import("vue").DefineComponent<{
1308
1345
  type: StringConstructor;
1309
1346
  default: null;
1310
1347
  };
1348
+ isAccurate: {
1349
+ type: BooleanConstructor;
1350
+ };
1311
1351
  }>> & {
1312
1352
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1353
+ "onUpdate:isAccurate"?: ((...args: any[]) => any) | undefined;
1313
1354
  "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
1314
1355
  }, {
1315
1356
  modelValue: string | number | unknown[];
1316
- presetVal: string;
1317
1357
  paramCfg: Record<string, any>;
1358
+ presetVal: string;
1359
+ isAccurate: boolean;
1318
1360
  }>;
1319
1361
  ConditionEnums: {
1320
1362
  NULL: string;