cnhis-design-vue 3.1.41-beta.0 → 3.1.41-beta.1

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 (48) hide show
  1. package/README.md +87 -87
  2. package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
  3. package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +1 -0
  4. package/es/components/bpmn-workflow/types/ModelingModule.d.ts +1 -0
  5. package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +1 -0
  6. package/es/components/callback/src/components/form.d.ts +0 -0
  7. package/es/components/callback/src/components/page.d.ts +0 -0
  8. package/es/components/callback/src/components/table.d.ts +0 -0
  9. package/es/components/callback/src/types/index.d.ts +0 -0
  10. package/es/components/callback/src/types/index.js +1 -0
  11. package/es/components/fabric-chart/src/utils/index.d.ts +6823 -0
  12. package/es/components/form-config/index.d.ts +1 -0
  13. package/es/components/form-config/src/FormConfig.vue.d.ts +1 -0
  14. package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +1 -0
  15. package/es/components/form-render/src/components/renderer/date.d.ts +2 -0
  16. package/es/components/form-render/src/components/renderer/formItem.js +1 -1
  17. package/es/components/form-render/src/hooks/useFieldListAdaptor.js +1 -1
  18. package/es/components/form-render/src/hooks/useFormEvent.js +1 -1
  19. package/es/components/form-render/src/types/fieldItem.d.ts +3 -1
  20. package/es/components/index.css +1 -1
  21. package/es/components/scale-view/src/ScaleView.vue.d.ts +3 -0
  22. package/es/components/scale-view/src/ScaleView.vue.js +1 -1
  23. package/es/components/shortcut-setter/index.d.ts +1 -0
  24. package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +1 -0
  25. package/es/components/table-filter/index.d.ts +383 -249
  26. package/es/components/table-filter/src/base-search-com/BaseSearch.vue.d.ts +46 -260
  27. package/es/components/table-filter/src/base-search-com/BaseSearch.vue.js +1 -1
  28. package/es/components/table-filter/src/classification/Classification-com.vue.d.ts +350 -2
  29. package/es/components/table-filter/src/classification/Classification-com.vue.js +1 -1
  30. package/es/components/table-filter/src/classification/search-professional-model.vue.d.ts +318 -1
  31. package/es/components/table-filter/src/classification/search-professional-model.vue.js +1 -1
  32. package/es/components/table-filter/src/components/classify-filter/hooks/useDisplayCategory.d.ts +1 -1
  33. package/es/components/table-filter/src/components/classify-filter/hooks/useDisplayCategory.js +1 -1
  34. package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +27 -0
  35. package/es/components/table-filter/src/components/classify-filter/index.vue.js +1 -1
  36. package/es/components/table-filter/src/components/render-widget/index.vue.js +1 -1
  37. package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.js +1 -1
  38. package/es/components/table-filter/src/components/search-filter/SearchFilter.vue.d.ts +28 -1
  39. package/es/components/table-filter/src/components/search-modal/set-classification.vue.d.ts +28 -1
  40. package/es/components/table-filter/src/hooks/useAdvanced.d.ts +1 -1
  41. package/es/components/table-filter/src/hooks/useAdvanced.js +1 -1
  42. package/es/components/table-filter/src/hooks/useMixins.d.ts +2 -1
  43. package/es/components/table-filter/src/quick-search/QuickSearch.vue.d.ts +3 -4
  44. package/es/components/table-filter/style/index.css +1 -1
  45. package/es/env.d.ts +24 -24
  46. package/es/shared/components/VueDraggable/src/vuedraggable.d.ts +86 -0
  47. package/es/shared/utils/tapable/index.d.ts +139 -0
  48. package/package.json +2 -2
@@ -15,7 +15,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
15
15
  type: StringConstructor;
16
16
  };
17
17
  onSearch: {
18
- type: FunctionConstructor;
18
+ type: any;
19
19
  };
20
20
  rowBtnList: {
21
21
  type: import("vue").PropType<import("./src/types").IbtnType[]>;
@@ -46,7 +46,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
46
46
  default: () => {};
47
47
  };
48
48
  viewList: {
49
- type: ArrayConstructor;
49
+ type: any;
50
50
  default: () => never[];
51
51
  };
52
52
  TypeOfDisplay: {
@@ -70,7 +70,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
70
70
  type: ObjectConstructor;
71
71
  };
72
72
  onRelatedSearch: {
73
- type: FunctionConstructor;
73
+ type: any;
74
74
  };
75
75
  showResetFilterBtn: {
76
76
  type: BooleanConstructor;
@@ -204,7 +204,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
204
204
  'border-color': string;
205
205
  color?: undefined;
206
206
  };
207
- getRowOperatorIdSetting(row: any, btn: import("./src/types").IbtnType): any;
207
+ getRowOperatorIdSetting(row: any, btn: import("../../../es/shared/types").AnyObject): any;
208
208
  getAlphafloat(a: any, alpha?: any): number;
209
209
  hexToRGBA(hex: string, alpha?: any): "" | {
210
210
  r: any;
@@ -272,7 +272,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
272
272
  type: StringConstructor;
273
273
  };
274
274
  onSearch: {
275
- type: FunctionConstructor;
275
+ type: any;
276
276
  };
277
277
  rowBtnList: {
278
278
  type: import("vue").PropType<import("./src/types").IbtnType[]>;
@@ -303,7 +303,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
303
303
  default: () => {};
304
304
  };
305
305
  viewList: {
306
- type: ArrayConstructor;
306
+ type: any;
307
307
  default: () => never[];
308
308
  };
309
309
  TypeOfDisplay: {
@@ -327,7 +327,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
327
327
  type: ObjectConstructor;
328
328
  };
329
329
  onRelatedSearch: {
330
- type: FunctionConstructor;
330
+ type: any;
331
331
  };
332
332
  showResetFilterBtn: {
333
333
  type: BooleanConstructor;
@@ -532,171 +532,9 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
532
532
  updatedTime?: string | undefined;
533
533
  __printConfig?: any;
534
534
  }[]>;
535
- rowFoldBtnList: import("vue").Ref<{
536
- buttonType: string;
537
- color: string;
538
- icon: string;
539
- id: string;
540
- isShow: number;
541
- name: string;
542
- setting: string;
543
- settingList: string;
544
- settingObj: {
545
- obj_id: string;
546
- trigger_type: string;
547
- isTips: string;
548
- trigger_id?: string | undefined;
549
- trigger_name?: string | undefined;
550
- params?: {
551
- p_name: string;
552
- p_value: string;
553
- }[] | undefined;
554
- editAllRow?: number | undefined;
555
- tipsMsg?: any;
556
- newTitle?: string | undefined;
557
- display?: string | undefined;
558
- importComponentId?: string | undefined;
559
- importComponentName?: string | undefined;
560
- prevStepSetting?: any;
561
- linkShowType?: string | undefined;
562
- conditionExpression?: string | undefined;
563
- conditionParams?: any;
564
- }[];
565
- showStyle: string;
566
- sid: string;
567
- tableId: string;
568
- toggle: string;
569
- type: string;
570
- alias?: string | undefined;
571
- buttonRemark?: string | undefined;
572
- buttonGroup?: any;
573
- canHandleUniline?: boolean | undefined;
574
- chooseTwoData?: string | undefined;
575
- createdTime?: string | undefined;
576
- dataSource?: string | undefined;
577
- isButtonGroup?: boolean | undefined;
578
- isHide?: boolean | undefined;
579
- isImportGuage?: boolean | undefined;
580
- iconSetting?: string | undefined;
581
- isShowFoldGroupBtn?: boolean | undefined;
582
- isVisible?: boolean | undefined;
583
- printType?: any;
584
- quoteSetting?: string | undefined;
585
- showStyleSetting?: string | undefined;
586
- strategy?: string | undefined;
587
- updatedTime?: string | undefined;
588
- __printConfig?: any;
589
- }[]>;
590
- rowPrintBtnList: import("vue").Ref<{
591
- buttonType: string;
592
- color: string;
593
- icon: string;
594
- id: string;
595
- isShow: number;
596
- name: string;
597
- setting: string;
598
- settingList: string;
599
- settingObj: {
600
- obj_id: string;
601
- trigger_type: string;
602
- isTips: string;
603
- trigger_id?: string | undefined;
604
- trigger_name?: string | undefined;
605
- params?: {
606
- p_name: string;
607
- p_value: string;
608
- }[] | undefined;
609
- editAllRow?: number | undefined;
610
- tipsMsg?: any;
611
- newTitle?: string | undefined;
612
- display?: string | undefined;
613
- importComponentId?: string | undefined;
614
- importComponentName?: string | undefined;
615
- prevStepSetting?: any;
616
- linkShowType?: string | undefined;
617
- conditionExpression?: string | undefined;
618
- conditionParams?: any;
619
- }[];
620
- showStyle: string;
621
- sid: string;
622
- tableId: string;
623
- toggle: string;
624
- type: string;
625
- alias?: string | undefined;
626
- buttonRemark?: string | undefined;
627
- buttonGroup?: any;
628
- canHandleUniline?: boolean | undefined;
629
- chooseTwoData?: string | undefined;
630
- createdTime?: string | undefined;
631
- dataSource?: string | undefined;
632
- isButtonGroup?: boolean | undefined;
633
- isHide?: boolean | undefined;
634
- isImportGuage?: boolean | undefined;
635
- iconSetting?: string | undefined;
636
- isShowFoldGroupBtn?: boolean | undefined;
637
- isVisible?: boolean | undefined;
638
- printType?: any;
639
- quoteSetting?: string | undefined;
640
- showStyleSetting?: string | undefined;
641
- strategy?: string | undefined;
642
- updatedTime?: string | undefined;
643
- __printConfig?: any;
644
- }[]>;
645
- rowFoldHideBtnList: import("vue").Ref<{
646
- buttonType: string;
647
- color: string;
648
- icon: string;
649
- id: string;
650
- isShow: number;
651
- name: string;
652
- setting: string;
653
- settingList: string;
654
- settingObj: {
655
- obj_id: string;
656
- trigger_type: string;
657
- isTips: string;
658
- trigger_id?: string | undefined;
659
- trigger_name?: string | undefined;
660
- params?: {
661
- p_name: string;
662
- p_value: string;
663
- }[] | undefined;
664
- editAllRow?: number | undefined;
665
- tipsMsg?: any;
666
- newTitle?: string | undefined;
667
- display?: string | undefined;
668
- importComponentId?: string | undefined;
669
- importComponentName?: string | undefined;
670
- prevStepSetting?: any;
671
- linkShowType?: string | undefined;
672
- conditionExpression?: string | undefined;
673
- conditionParams?: any;
674
- }[];
675
- showStyle: string;
676
- sid: string;
677
- tableId: string;
678
- toggle: string;
679
- type: string;
680
- alias?: string | undefined;
681
- buttonRemark?: string | undefined;
682
- buttonGroup?: any;
683
- canHandleUniline?: boolean | undefined;
684
- chooseTwoData?: string | undefined;
685
- createdTime?: string | undefined;
686
- dataSource?: string | undefined;
687
- isButtonGroup?: boolean | undefined;
688
- isHide?: boolean | undefined;
689
- isImportGuage?: boolean | undefined;
690
- iconSetting?: string | undefined;
691
- isShowFoldGroupBtn?: boolean | undefined;
692
- isVisible?: boolean | undefined;
693
- printType?: any;
694
- quoteSetting?: string | undefined;
695
- showStyleSetting?: string | undefined;
696
- strategy?: string | undefined;
697
- updatedTime?: string | undefined;
698
- __printConfig?: any;
699
- }[]>;
535
+ rowFoldBtnList: import("vue").Ref<import("../../../es/shared/types").AnyObject[]>;
536
+ rowPrintBtnList: import("vue").Ref<import("../../../es/shared/types").AnyObject[]>;
537
+ rowFoldHideBtnList: import("vue").Ref<import("../../../es/shared/types").AnyObject[]>;
700
538
  rowFoldHideBtnListObj: import("vue").Ref<import("./src/types").IrowBtnListObj | undefined>;
701
539
  batchRelationBtnIds: import("vue").Ref<string[]>;
702
540
  relationBtnBatchBtnIds: import("vue").Ref<string[]>;
@@ -714,61 +552,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
714
552
  downloadDropdownWidth: import("vue").Ref<number>;
715
553
  diffWidth: import("vue").Ref<number>;
716
554
  resizeFlag: import("vue").Ref<boolean>;
717
- rowTileBtnListTree: import("vue").Ref<{
718
- buttonType: string;
719
- color: string;
720
- icon: string;
721
- id: string;
722
- isShow: number;
723
- name: string;
724
- setting: string;
725
- settingList: string;
726
- settingObj: {
727
- obj_id: string;
728
- trigger_type: string;
729
- isTips: string;
730
- trigger_id?: string | undefined;
731
- trigger_name?: string | undefined;
732
- params?: {
733
- p_name: string;
734
- p_value: string;
735
- }[] | undefined;
736
- editAllRow?: number | undefined;
737
- tipsMsg?: any;
738
- newTitle?: string | undefined;
739
- display?: string | undefined;
740
- importComponentId?: string | undefined;
741
- importComponentName?: string | undefined;
742
- prevStepSetting?: any;
743
- linkShowType?: string | undefined;
744
- conditionExpression?: string | undefined;
745
- conditionParams?: any;
746
- }[];
747
- showStyle: string;
748
- sid: string;
749
- tableId: string;
750
- toggle: string;
751
- type: string;
752
- alias?: string | undefined;
753
- buttonRemark?: string | undefined;
754
- buttonGroup?: any;
755
- canHandleUniline?: boolean | undefined;
756
- chooseTwoData?: string | undefined;
757
- createdTime?: string | undefined;
758
- dataSource?: string | undefined;
759
- isButtonGroup?: boolean | undefined;
760
- isHide?: boolean | undefined;
761
- isImportGuage?: boolean | undefined;
762
- iconSetting?: string | undefined;
763
- isShowFoldGroupBtn?: boolean | undefined;
764
- isVisible?: boolean | undefined;
765
- printType?: any;
766
- quoteSetting?: string | undefined;
767
- showStyleSetting?: string | undefined;
768
- strategy?: string | undefined;
769
- updatedTime?: string | undefined;
770
- __printConfig?: any;
771
- }[]>;
555
+ rowTileBtnListTree: import("vue").Ref<import("../../../es/shared/types").AnyObject[]>;
772
556
  outSearchFieldList: import("vue").Ref<{
773
557
  columnName: string;
774
558
  title: string;
@@ -970,11 +754,11 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
970
754
  showPlaceholderPrefix: import("vue").Ref<boolean>;
971
755
  isOrgAdmin: import("vue").ComputedRef<boolean>;
972
756
  currentValue: import("vue").ComputedRef<string | undefined>;
973
- allBtn: import("vue").ComputedRef<import("./src/types").IbtnType[]>;
757
+ allBtn: import("vue").ComputedRef<import("../../../es/shared/types").AnyObject[]>;
974
758
  isButtonFolding: import("vue").ComputedRef<boolean>;
975
759
  isShowSettingBtn: import("vue").ComputedRef<boolean | undefined>;
976
760
  showDownCurSelectData: import("vue").ComputedRef<any>;
977
- showRowFoldBtnList: import("vue").ComputedRef<(list: import("./src/types").IbtnType[], key?: string | undefined) => boolean>;
761
+ showRowFoldBtnList: import("vue").ComputedRef<(list: import("../../../es/shared/types").AnyObject[], key?: string | undefined) => boolean>;
978
762
  initPageResize: import("vue").ComputedRef<{
979
763
  showSettings: import("./src/types").IsettingsType;
980
764
  TypeOfDisplay: string;
@@ -986,9 +770,9 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
986
770
  defaultValue: import("moment").Moment[];
987
771
  }>;
988
772
  isShowGroupBtn: import("vue").ComputedRef<boolean>;
989
- showLi: import("vue").ComputedRef<(item: import("./src/types").IbtnType) => any>;
990
- showLiAdd: import("vue").ComputedRef<(b: import("./src/types").IbtnType) => any>;
991
- showLiFold: import("vue").ComputedRef<(b: import("./src/types").IbtnType) => any>;
773
+ showLi: import("vue").ComputedRef<(item: import("../../../es/shared/types").AnyObject) => any>;
774
+ showLiAdd: import("vue").ComputedRef<(b: import("../../../es/shared/types").AnyObject) => any>;
775
+ showLiFold: import("vue").ComputedRef<(b: import("../../../es/shared/types").AnyObject) => any>;
992
776
  getIsTile: import("vue").ComputedRef<any>;
993
777
  selectRowObj: import("vue").ComputedRef<any>;
994
778
  isInlineOperating: import("vue").ComputedRef<any>;
@@ -1023,9 +807,9 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
1023
807
  editTableGetConObj: () => any;
1024
808
  clearData: () => void;
1025
809
  handlePrint: (clickBtn: any, btn: import("./src/types").IbtnType, type: any, j: number) => void;
1026
- showDrawer: (btn: import("./src/types").IbtnType, j: number) => void;
1027
- getUnilineBtn: (BatchBtn: import("./src/types").IbtnType) => any;
1028
- handleBtnEvent: (btn: import("./src/types").IbtnType, j: number) => void;
810
+ showDrawer: (btn: import("../../../es/shared/types").AnyObject, j: number) => void;
811
+ getUnilineBtn: (BatchBtn: import("../../../es/shared/types").AnyObject) => any;
812
+ handleBtnEvent: (btn: import("../../../es/shared/types").AnyObject, j: number) => void;
1029
813
  updateTableCondiTion: () => Promise<void>;
1030
814
  CondiTionListInit: () => Promise<void>;
1031
815
  saveGetTableCondiTionList: (options: any) => Promise<void>;
@@ -1033,9 +817,9 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
1033
817
  changeSearchTile: (val: boolean) => void;
1034
818
  openSetting: () => void;
1035
819
  reloadList: (item: string) => void;
1036
- clickBtn: (data: any, item: import("./src/types").IbtnType, index: number, skip: boolean, j: number) => void;
1037
- handleDropdown: (key: string, item: import("./src/types").IbtnType) => void;
1038
- handlerOperate: (key: string, item: import("./src/types").IbtnType) => void;
820
+ clickBtn: (data: any, item: import("../../../es/shared/types").AnyObject, index: number, skip: boolean, j: number) => void;
821
+ handleDropdown: (key: string, item: import("../../../es/shared/types").AnyObject) => void;
822
+ handlerOperate: (key: string, item: import("../../../es/shared/types").AnyObject) => void;
1039
823
  handlerBtnlist: (key: string, item: import("./src/types").IbtnType, list: import("./src/types").IbtnType[]) => void;
1040
824
  clickGroupBtn: (btn: import("./src/types").IbtnType, j: number) => void;
1041
825
  handlerSetting: () => void;
@@ -1047,14 +831,14 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
1047
831
  handleButtonGroup: (buttonList: import("./src/types").IbtnType[]) => void;
1048
832
  formatRowBtnList: () => Promise<void>;
1049
833
  hideInlineOperationBtn: () => void;
1050
- isPrintBtn: (btn: import("./src/types").IbtnType) => boolean;
834
+ isPrintBtn: (btn: import("../../../es/shared/types").AnyObject) => boolean;
1051
835
  handleTileBtnWidth: () => void;
1052
836
  resetCheckStatus: () => void;
1053
837
  handleReset: () => void;
1054
838
  changeCardNewBatch: (val: boolean) => void;
1055
839
  handleUploadChange: (info: any) => void;
1056
840
  handleOtherConfigInit: () => void;
1057
- handleAddType: (key: string, btn: import("./src/types").IbtnType) => void;
841
+ handleAddType: (key: string, btn: import("../../../es/shared/types").AnyObject) => void;
1058
842
  getRowTileBtnList: (btnList: import("./src/types").IbtnType[]) => void;
1059
843
  relatedSearchInputBlur: () => void;
1060
844
  handleRequestedLabel: (v: string) => Promise<import("axios").AxiosResponse<any, any>>;
@@ -1063,8 +847,8 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
1063
847
  outFilterChange: (config?: {}) => void;
1064
848
  getConObj: (arr: any) => any;
1065
849
  getConObjParams: () => any;
1066
- visibleBtn: (btn: import("./src/types").IbtnType) => boolean;
1067
- getPrintBtnParams: (btn: import("./src/types").IbtnType) => any;
850
+ visibleBtn: (btn: import("../../../es/shared/types").AnyObject) => boolean;
851
+ getPrintBtnParams: (btn: import("../../../es/shared/types").AnyObject) => any;
1068
852
  setPrintNumberToBtnList: (printNumberList?: import("./src/types").IPrintType[], btnList?: import("./src/types").IbtnType[]) => import("./src/types").IbtnType[];
1069
853
  getPrintNumber: (list: import("./src/types").IbtnType[]) => Promise<any>;
1070
854
  receivePrintSuccessAboutPrint: (res: any, info: import("./src/types").IPrintAboutType) => Promise<void>;
@@ -1072,7 +856,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
1072
856
  receivePrintError: (res: any) => void;
1073
857
  resetAllPrintFnWatch: () => void;
1074
858
  printBtnPrevFnWatchSetTimeout: (reject: any) => void;
1075
- printBtnPrevFn: (clickBtn: any, btn: import("./src/types").IbtnType, type: number, j: number) => Promise<unknown>;
859
+ printBtnPrevFn: (clickBtn: any, btn: import("../../../es/shared/types").AnyObject, type: number, j: number) => Promise<unknown>;
1076
860
  inlineEditClick: () => void;
1077
861
  handleGetOutSearchInitValue: () => any;
1078
862
  getFiledRandom_key: (el: import("./src/types").ISearchType) => string;
@@ -3570,7 +3354,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
3570
3354
  type: StringConstructor;
3571
3355
  };
3572
3356
  onSearch: {
3573
- type: FunctionConstructor;
3357
+ type: any;
3574
3358
  };
3575
3359
  rowBtnList: {
3576
3360
  type: import("vue").PropType<import("./src/types").IbtnType[]>;
@@ -3601,7 +3385,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
3601
3385
  default: () => {};
3602
3386
  };
3603
3387
  viewList: {
3604
- type: ArrayConstructor;
3388
+ type: any;
3605
3389
  default: () => never[];
3606
3390
  };
3607
3391
  TypeOfDisplay: {
@@ -3625,7 +3409,7 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
3625
3409
  type: ObjectConstructor;
3626
3410
  };
3627
3411
  onRelatedSearch: {
3628
- type: FunctionConstructor;
3412
+ type: any;
3629
3413
  };
3630
3414
  showResetFilterBtn: {
3631
3415
  type: BooleanConstructor;
@@ -3771,15 +3555,17 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<{
3771
3555
  isBatchSelect: string | number | boolean;
3772
3556
  width: string;
3773
3557
  searchInputWidth: number;
3558
+ onSearch: any;
3774
3559
  rowBtnList: import("./src/types").IbtnType[];
3775
3560
  paramsData: any;
3776
3561
  searchFieldList: import("./src/types").ISearchType[];
3777
3562
  searchFieldLimit: Record<string, any>;
3778
- viewList: unknown[];
3563
+ viewList: any;
3779
3564
  TypeOfDisplay: string;
3780
3565
  tableAllCheck: boolean;
3781
3566
  editTableSource: string;
3782
3567
  showRelatedTreeBtn: boolean;
3568
+ onRelatedSearch: any;
3783
3569
  showResetFilterBtn: boolean;
3784
3570
  qqConObjCount: number;
3785
3571
  tabConditionNumObj: Record<string, any>;
@@ -6055,6 +5841,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
6055
5841
  ChevronForward: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
6056
5842
  Close: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
6057
5843
  searchProfessionalModel: import("vue").DefineComponent<{
5844
+ tableDataType: {
5845
+ type: StringConstructor;
5846
+ default: string;
5847
+ };
6058
5848
  originConditionList: {
6059
5849
  type: import("vue").PropType<import("./src/types").IClassifyListType[]>;
6060
5850
  default: () => never[];
@@ -6074,6 +5864,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
6074
5864
  }, {
6075
5865
  validConObj: (conObj: any, fieldList: import("./src/types").ISearchType[], fieldSearchLimit: any) => any;
6076
5866
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
5867
+ tableDataType: {
5868
+ type: StringConstructor;
5869
+ default: string;
5870
+ };
6077
5871
  originConditionList: {
6078
5872
  type: import("vue").PropType<import("./src/types").IClassifyListType[]>;
6079
5873
  default: () => never[];
@@ -6101,7 +5895,8 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
6101
5895
  instance: import("axios").AxiosInstance;
6102
5896
  $message: import("naive-ui").MessageApi;
6103
5897
  comWrap: any;
6104
- conditionRef: any;
5898
+ conditionApiRef: any;
5899
+ conditionSqlRef: any;
6105
5900
  className: any;
6106
5901
  actionList_prop: import("vue").Ref<import("./src/types").IClassifyListType | undefined>;
6107
5902
  conOjbConfig: import("vue").Ref<import("./src/types").IClassifyListType | undefined>;
@@ -6118,6 +5913,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
6118
5913
  conObjLen: import("vue").ComputedRef<any>;
6119
5914
  showConditionList: import("vue").ComputedRef<import("./src/types").IClassifyListType[]>;
6120
5915
  saveBtnName: import("vue").ComputedRef<"保存模板" | "另存为模板">;
5916
+ isApiFilter: import("vue").ComputedRef<boolean>;
6121
5917
  init: () => void;
6122
5918
  handleAddCondition: () => void;
6123
5919
  handleSearch: () => void;
@@ -6987,6 +6783,308 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
6987
6783
  showCompareField: boolean;
6988
6784
  hideAddBtn: boolean;
6989
6785
  }>;
6786
+ SearchConditionByApi: import("vue").DefineComponent<{
6787
+ actionList_prop: {
6788
+ type: import("vue").PropType<import("./src/types").IClassifyListType>;
6789
+ default: () => {};
6790
+ };
6791
+ conditionList: {
6792
+ type: ArrayConstructor;
6793
+ default: () => never[];
6794
+ };
6795
+ tableId: {
6796
+ type: StringConstructor;
6797
+ default: string;
6798
+ };
6799
+ showItemName: {
6800
+ type: BooleanConstructor;
6801
+ default: boolean;
6802
+ };
6803
+ hideAddBtn: {
6804
+ type: BooleanConstructor;
6805
+ default: boolean;
6806
+ };
6807
+ }, {
6808
+ $message: import("naive-ui").MessageApi;
6809
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
6810
+ actionList_prop: {
6811
+ type: import("vue").PropType<import("./src/types").IClassifyListType>;
6812
+ default: () => {};
6813
+ };
6814
+ conditionList: {
6815
+ type: ArrayConstructor;
6816
+ default: () => never[];
6817
+ };
6818
+ tableId: {
6819
+ type: StringConstructor;
6820
+ default: string;
6821
+ };
6822
+ showItemName: {
6823
+ type: BooleanConstructor;
6824
+ default: boolean;
6825
+ };
6826
+ hideAddBtn: {
6827
+ type: BooleanConstructor;
6828
+ default: boolean;
6829
+ };
6830
+ }>> & {
6831
+ onSaveAdd?: ((...args: any[]) => any) | undefined;
6832
+ onCancelSaveAdd?: ((...args: any[]) => any) | undefined;
6833
+ }>>;
6834
+ emit: (event: "saveAdd" | "cancelSaveAdd", ...args: any[]) => void;
6835
+ $attrs: {
6836
+ [x: string]: unknown;
6837
+ };
6838
+ FormState: {
6839
+ className: string;
6840
+ displayCategory: string;
6841
+ filterConditions: {
6842
+ value: string;
6843
+ key: string;
6844
+ condition: string;
6845
+ presetVal: string;
6846
+ }[];
6847
+ };
6848
+ loading: import("vue").Ref<boolean>;
6849
+ DisplayCategoryState: {
6850
+ addDisplayCategory: string;
6851
+ displayCategories: {
6852
+ disabled: boolean;
6853
+ value: string;
6854
+ }[];
6855
+ displayCategoryOriginLen: number;
6856
+ showAdd: boolean;
6857
+ };
6858
+ isEnableAddDisplayCategory: import("vue").ComputedRef<boolean>;
6859
+ editDisplayCategory: (e: any, item: import("./src/types").ICategoryItemType) => void;
6860
+ handleDisplayCategorySelect: (item: import("./src/types").ICategoryItemType) => void;
6861
+ handleDisplayCategoryRemove: (index: number, item: import("./src/types").ICategoryItemType) => void;
6862
+ handleDisplayCategoryAdd: (e: any) => void;
6863
+ handlerBlur: () => void;
6864
+ initDisplayCategories: (rawDataDisplayCategories: any, displayCategory: any) => void;
6865
+ FilterConditionsState: any;
6866
+ paramOptions: import("vue").ComputedRef<any>;
6867
+ addFilterCondition: () => void;
6868
+ delFilterCondition: (index: number) => void;
6869
+ updateKey: (index: number, val: any) => void;
6870
+ updateCondition: (index: number, val: any) => void;
6871
+ getParamCfg: (key: string) => any;
6872
+ initFilterConditions: (tableId: string, rawConditions: import("./src/types").ISearchConfigType) => Promise<void>;
6873
+ getRawFilterConditions: () => {
6874
+ field_key: any;
6875
+ con: any;
6876
+ value: any;
6877
+ unit: any;
6878
+ }[];
6879
+ findConditionByDisplayCategory: (displayCategory: string) => unknown;
6880
+ handleDisplayCategorySelectProxy: (item: import("./src/types").ICategoryItemType) => void;
6881
+ clearFormData: () => void;
6882
+ handleInitConditions: () => Promise<void>;
6883
+ validate: () => Promise<unknown>;
6884
+ saveAdd: () => void;
6885
+ cancelSaveAdd: () => void;
6886
+ checkActionList: () => boolean;
6887
+ NSpin: any;
6888
+ NIcon: any;
6889
+ NInput: any;
6890
+ NButton: any;
6891
+ NTooltip: any;
6892
+ NSelect: any;
6893
+ AddOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
6894
+ AddCircleSharp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
6895
+ CloseOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
6896
+ SvgIcon: import("vue").DefineComponent<{
6897
+ iconClass: {
6898
+ type: StringConstructor;
6899
+ required: true;
6900
+ default: string;
6901
+ };
6902
+ title: {
6903
+ type: StringConstructor;
6904
+ required: false;
6905
+ default: string;
6906
+ };
6907
+ className: {
6908
+ type: StringConstructor;
6909
+ required: false;
6910
+ };
6911
+ }, {
6912
+ props: {
6913
+ iconClass: string;
6914
+ title: string;
6915
+ className?: string | undefined;
6916
+ };
6917
+ iconName: import("vue").ComputedRef<string>;
6918
+ svgClass: import("vue").ComputedRef<string>;
6919
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
6920
+ iconClass: {
6921
+ type: StringConstructor;
6922
+ required: true;
6923
+ default: string;
6924
+ };
6925
+ title: {
6926
+ type: StringConstructor;
6927
+ required: false;
6928
+ default: string;
6929
+ };
6930
+ className: {
6931
+ type: StringConstructor;
6932
+ required: false;
6933
+ };
6934
+ }>>, {
6935
+ title: string;
6936
+ iconClass: string;
6937
+ }>;
6938
+ ValueCfg: import("vue").DefineComponent<{
6939
+ paramCfg: {
6940
+ type: ObjectConstructor;
6941
+ default: null;
6942
+ };
6943
+ modelValue: {
6944
+ type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
6945
+ default: null;
6946
+ };
6947
+ presetVal: {
6948
+ type: StringConstructor;
6949
+ default: null;
6950
+ };
6951
+ }, {
6952
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
6953
+ paramCfg: {
6954
+ type: ObjectConstructor;
6955
+ default: null;
6956
+ };
6957
+ modelValue: {
6958
+ type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
6959
+ default: null;
6960
+ };
6961
+ presetVal: {
6962
+ type: StringConstructor;
6963
+ default: null;
6964
+ };
6965
+ }>> & {
6966
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
6967
+ "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
6968
+ }>>;
6969
+ emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
6970
+ valueCp: import("vue").WritableComputedRef<unknown>;
6971
+ presetValCp: import("vue").WritableComputedRef<unknown>;
6972
+ widgetType: import("vue").ComputedRef<any>;
6973
+ optionSetting: import("vue").ComputedRef<any>;
6974
+ mappingConfig: import("vue").ComputedRef<any>;
6975
+ widgetOptions: import("vue").ComputedRef<{
6976
+ label: string;
6977
+ value: string;
6978
+ }[]>;
6979
+ NInputNumber: any;
6980
+ NInput: any;
6981
+ NSelect: any;
6982
+ NDatePicker: any;
6983
+ WidgetTypeEnums: {
6984
+ INPUT_NUMBER: string;
6985
+ INPUT: string;
6986
+ SELECT: string;
6987
+ DATE: string;
6988
+ DATE_TIME: string;
6989
+ };
6990
+ WidgetValEnums: {
6991
+ CUSTOM: string;
6992
+ FIRST_VAL: string;
6993
+ NOW: string;
6994
+ TODAY: string;
6995
+ TODAY_START: string;
6996
+ TODAY_END: string;
6997
+ TOMORROW: string;
6998
+ TOMORROW_START: string;
6999
+ TOMORROW_END: string;
7000
+ YESTERDAY: string;
7001
+ YESTERDAY_START: string;
7002
+ YESTERDAY_END: string;
7003
+ THIS_WEEK: string;
7004
+ WEEK_START: string;
7005
+ WEEK_END: string;
7006
+ NEXT_WEEK: string;
7007
+ LAST_WEEK: string;
7008
+ THIS_MONTH: string;
7009
+ MONTH_START: string;
7010
+ MONTH_END: string;
7011
+ NEXT_MONTH: string;
7012
+ LAST_MONTH: string;
7013
+ THIS_QUARTER: string;
7014
+ NEXT_QUARTER: string;
7015
+ LAST_QUARTER: string;
7016
+ THIS_YEAR: string;
7017
+ NEXT_YEAR: string;
7018
+ LAST_YEAR: string;
7019
+ };
7020
+ WidgetOptionEnums: {
7021
+ RADIO: string;
7022
+ MULTIPLE: string;
7023
+ ALL: string;
7024
+ SELECT_TIME: string;
7025
+ PAST_TIME: string;
7026
+ FUTURE_TIME: string;
7027
+ };
7028
+ }, 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<{
7029
+ paramCfg: {
7030
+ type: ObjectConstructor;
7031
+ default: null;
7032
+ };
7033
+ modelValue: {
7034
+ type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
7035
+ default: null;
7036
+ };
7037
+ presetVal: {
7038
+ type: StringConstructor;
7039
+ default: null;
7040
+ };
7041
+ }>> & {
7042
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
7043
+ "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
7044
+ }, {
7045
+ modelValue: string | number | unknown[];
7046
+ presetVal: string;
7047
+ paramCfg: Record<string, any>;
7048
+ }>;
7049
+ ConditionEnums: {
7050
+ NULL: string;
7051
+ EQUAL: string;
7052
+ };
7053
+ conditionOptions: {
7054
+ label: string;
7055
+ value: string;
7056
+ }[];
7057
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("saveAdd" | "cancelSaveAdd")[], "saveAdd" | "cancelSaveAdd", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
7058
+ actionList_prop: {
7059
+ type: import("vue").PropType<import("./src/types").IClassifyListType>;
7060
+ default: () => {};
7061
+ };
7062
+ conditionList: {
7063
+ type: ArrayConstructor;
7064
+ default: () => never[];
7065
+ };
7066
+ tableId: {
7067
+ type: StringConstructor;
7068
+ default: string;
7069
+ };
7070
+ showItemName: {
7071
+ type: BooleanConstructor;
7072
+ default: boolean;
7073
+ };
7074
+ hideAddBtn: {
7075
+ type: BooleanConstructor;
7076
+ default: boolean;
7077
+ };
7078
+ }>> & {
7079
+ onSaveAdd?: ((...args: any[]) => any) | undefined;
7080
+ onCancelSaveAdd?: ((...args: any[]) => any) | undefined;
7081
+ }, {
7082
+ tableId: string;
7083
+ actionList_prop: import("./src/types").IClassifyListType;
7084
+ showItemName: boolean;
7085
+ conditionList: unknown[];
7086
+ hideAddBtn: boolean;
7087
+ }>;
6990
7088
  TextOverTooltip: import("vue").DefineComponent<{
6991
7089
  content: {
6992
7090
  type: (NumberConstructor | StringConstructor)[];
@@ -7143,6 +7241,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
7143
7241
  showItemName: boolean;
7144
7242
  }>;
7145
7243
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("changeSearch" | "changeShowName" | "handleItemClick" | "reloadClassification")[], "changeSearch" | "changeShowName" | "handleItemClick" | "reloadClassification", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
7244
+ tableDataType: {
7245
+ type: StringConstructor;
7246
+ default: string;
7247
+ };
7146
7248
  originConditionList: {
7147
7249
  type: import("vue").PropType<import("./src/types").IClassifyListType[]>;
7148
7250
  default: () => never[];
@@ -7168,6 +7270,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
7168
7270
  searchFieldList: import("./src/types").ISearchType[];
7169
7271
  searchFieldLimit: Record<string, any>;
7170
7272
  originConditionList: import("./src/types").IClassifyListType[];
7273
+ tableDataType: string;
7171
7274
  treeData: import("./src/types").ITreeDataType[];
7172
7275
  }>;
7173
7276
  setClassification: import("vue").DefineComponent<{
@@ -8415,6 +8518,14 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
8415
8518
  type: StringConstructor;
8416
8519
  default: string;
8417
8520
  };
8521
+ showItemName: {
8522
+ type: BooleanConstructor;
8523
+ default: boolean;
8524
+ };
8525
+ hideAddBtn: {
8526
+ type: BooleanConstructor;
8527
+ default: boolean;
8528
+ };
8418
8529
  }, {
8419
8530
  $message: import("naive-ui").MessageApi;
8420
8531
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
@@ -8430,6 +8541,14 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
8430
8541
  type: StringConstructor;
8431
8542
  default: string;
8432
8543
  };
8544
+ showItemName: {
8545
+ type: BooleanConstructor;
8546
+ default: boolean;
8547
+ };
8548
+ hideAddBtn: {
8549
+ type: BooleanConstructor;
8550
+ default: boolean;
8551
+ };
8433
8552
  }>> & {
8434
8553
  onSaveAdd?: ((...args: any[]) => any) | undefined;
8435
8554
  onCancelSaveAdd?: ((...args: any[]) => any) | undefined;
@@ -8486,6 +8605,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
8486
8605
  validate: () => Promise<unknown>;
8487
8606
  saveAdd: () => void;
8488
8607
  cancelSaveAdd: () => void;
8608
+ checkActionList: () => boolean;
8489
8609
  NSpin: any;
8490
8610
  NIcon: any;
8491
8611
  NInput: any;
@@ -8669,13 +8789,23 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
8669
8789
  type: StringConstructor;
8670
8790
  default: string;
8671
8791
  };
8792
+ showItemName: {
8793
+ type: BooleanConstructor;
8794
+ default: boolean;
8795
+ };
8796
+ hideAddBtn: {
8797
+ type: BooleanConstructor;
8798
+ default: boolean;
8799
+ };
8672
8800
  }>> & {
8673
8801
  onSaveAdd?: ((...args: any[]) => any) | undefined;
8674
8802
  onCancelSaveAdd?: ((...args: any[]) => any) | undefined;
8675
8803
  }, {
8676
8804
  tableId: string;
8677
8805
  actionList_prop: import("./src/types").IClassifyListType;
8806
+ showItemName: boolean;
8678
8807
  conditionList: unknown[];
8808
+ hideAddBtn: boolean;
8679
8809
  }>;
8680
8810
  SvgIcon: import("vue").DefineComponent<{
8681
8811
  iconClass: {
@@ -8751,8 +8881,8 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
8751
8881
  modalTitle: string;
8752
8882
  searchFieldList: unknown[];
8753
8883
  filterApiConfig: Record<string, any>;
8754
- conditionList: unknown[];
8755
8884
  tableDataType: string;
8885
+ conditionList: unknown[];
8756
8886
  }>;
8757
8887
  DataTypeEnums: {
8758
8888
  SQL: string;
@@ -8796,6 +8926,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
8796
8926
  mounted(el: any, { value }: any): void;
8797
8927
  beforeUnmount(el: any): void;
8798
8928
  };
8929
+ DataTypeEnums: {
8930
+ SQL: string;
8931
+ API: string;
8932
+ };
8799
8933
  SvgIcon: import("vue").DefineComponent<{
8800
8934
  iconClass: {
8801
8935
  type: StringConstructor;