cnhis-design-vue 3.1.41-beta.37 → 3.1.41-beta.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +87 -87
- package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
- package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +1 -0
- package/es/components/bpmn-workflow/types/ModelingModule.d.ts +1 -0
- package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +1 -0
- package/es/components/fabric-chart/src/hooks/useBirthProcess.js +1 -1
- package/es/components/fabric-chart/src/utils/index.d.ts +6823 -0
- package/es/components/iho-table/index.d.ts +1 -0
- package/es/components/iho-table/src/IhoTable.vue.d.ts +1 -0
- package/es/components/iho-table/src/IhoTable.vue.js +1 -1
- package/es/components/iho-table/src/constants/index.d.ts +2 -2
- package/es/components/iho-table/src/constants/index.js +1 -1
- package/es/components/iho-table/src/hooks/useTableTheme.d.ts +4 -0
- package/es/components/iho-table/src/hooks/useTableTheme.js +1 -0
- package/es/components/iho-table/src/plugins/defaultConfigPlugin/index.js +1 -1
- package/es/components/iho-table/src/plugins/virtualTreePlugin/index.js +1 -1
- package/es/components/iho-table/src/utils/index.d.ts +1 -0
- package/es/components/iho-table/src/utils/index.js +1 -1
- package/es/components/iho-table/style/index.css +1 -1
- package/es/components/index.css +1 -1
- package/es/components/scale-view/src/ScaleView.vue.js +1 -1
- package/es/components/scale-view/src/hooks/use-component.d.ts +82 -116
- package/es/components/select-label/index.d.ts +83 -169
- package/es/components/select-label/src/LabelFormContent.vue.d.ts +1 -53
- package/es/components/select-label/src/LabelFormContent.vue.js +1 -1
- package/es/components/select-label/src/SelectLabel.vue.d.ts +83 -116
- package/es/components/select-label/src/SelectLabel.vue2.js +1 -1
- package/es/components/select-label/src/components/label-classify.vue.js +1 -1
- package/es/components/select-label/style/iconfont.ttf +0 -0
- package/es/components/select-label/style/index.css +1 -1
- package/es/env.d.ts +24 -24
- package/es/shared/components/VueDraggable/src/vuedraggable.d.ts +86 -0
- package/es/shared/utils/index.d.ts +1 -0
- package/es/shared/utils/index.js +1 -1
- package/es/shared/utils/tapable/index.d.ts +139 -0
- package/package.json +2 -2
|
@@ -498,83 +498,115 @@ export declare const componentMap: {
|
|
|
498
498
|
}>>;
|
|
499
499
|
LABEL: import("vue").ShallowRef<import("../../../../shared/types").SFCWithInstall<import("vue").DefineComponent<{
|
|
500
500
|
selectedList: {
|
|
501
|
-
type:
|
|
502
|
-
required: false;
|
|
501
|
+
type: import("vue").PropType<any[]>;
|
|
503
502
|
default: () => never[];
|
|
504
503
|
};
|
|
505
504
|
item: {
|
|
506
|
-
type:
|
|
507
|
-
required: false;
|
|
505
|
+
type: import("vue").PropType<any>;
|
|
508
506
|
default: () => {};
|
|
509
507
|
};
|
|
510
508
|
isDetail: {
|
|
511
509
|
type: BooleanConstructor;
|
|
512
|
-
required: false;
|
|
513
510
|
default: boolean;
|
|
514
511
|
};
|
|
515
512
|
isLock: {
|
|
516
513
|
type: BooleanConstructor;
|
|
517
|
-
required: false;
|
|
518
514
|
default: boolean;
|
|
519
515
|
};
|
|
520
516
|
sourceType: {
|
|
521
517
|
type: StringConstructor;
|
|
522
|
-
required: false;
|
|
523
518
|
default: string;
|
|
524
519
|
};
|
|
520
|
+
explicit: {
|
|
521
|
+
type: BooleanConstructor;
|
|
522
|
+
default: boolean;
|
|
523
|
+
};
|
|
524
|
+
selectUsers: {
|
|
525
|
+
type: import("vue").PropType<any[]>;
|
|
526
|
+
default: () => never[];
|
|
527
|
+
};
|
|
525
528
|
getLabelList: {
|
|
526
529
|
type: FunctionConstructor;
|
|
527
|
-
required: false;
|
|
528
530
|
default: () => Promise<{
|
|
529
531
|
rows: never[];
|
|
530
532
|
}>;
|
|
531
533
|
};
|
|
532
|
-
explicit: {
|
|
533
|
-
type: BooleanConstructor;
|
|
534
|
-
required: false;
|
|
535
|
-
default: boolean;
|
|
536
|
-
};
|
|
537
|
-
explicitHeiht: {
|
|
538
|
-
type: StringConstructor;
|
|
539
|
-
required: false;
|
|
540
|
-
default: string;
|
|
541
|
-
};
|
|
542
534
|
queryCommonlabels: {
|
|
543
535
|
type: FunctionConstructor;
|
|
544
|
-
required: false;
|
|
545
536
|
default: () => Promise<{
|
|
546
537
|
data: {};
|
|
547
538
|
}>;
|
|
548
539
|
};
|
|
549
540
|
deleteLabel: {
|
|
550
541
|
type: FunctionConstructor;
|
|
551
|
-
required: false;
|
|
552
542
|
default: () => Promise<{
|
|
553
543
|
status: boolean;
|
|
554
544
|
}>;
|
|
555
545
|
};
|
|
556
546
|
saveLabelItem: {
|
|
557
547
|
type: FunctionConstructor;
|
|
558
|
-
required: false;
|
|
559
548
|
default: () => Promise<{
|
|
560
549
|
status: boolean;
|
|
561
550
|
}>;
|
|
562
551
|
};
|
|
563
552
|
}, {
|
|
564
|
-
props: {
|
|
565
|
-
selectedList:
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
553
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
554
|
+
selectedList: {
|
|
555
|
+
type: import("vue").PropType<any[]>;
|
|
556
|
+
default: () => never[];
|
|
557
|
+
};
|
|
558
|
+
item: {
|
|
559
|
+
type: import("vue").PropType<any>;
|
|
560
|
+
default: () => {};
|
|
561
|
+
};
|
|
562
|
+
isDetail: {
|
|
563
|
+
type: BooleanConstructor;
|
|
564
|
+
default: boolean;
|
|
565
|
+
};
|
|
566
|
+
isLock: {
|
|
567
|
+
type: BooleanConstructor;
|
|
568
|
+
default: boolean;
|
|
569
|
+
};
|
|
570
|
+
sourceType: {
|
|
571
|
+
type: StringConstructor;
|
|
572
|
+
default: string;
|
|
573
|
+
};
|
|
574
|
+
explicit: {
|
|
575
|
+
type: BooleanConstructor;
|
|
576
|
+
default: boolean;
|
|
577
|
+
};
|
|
578
|
+
selectUsers: {
|
|
579
|
+
type: import("vue").PropType<any[]>;
|
|
580
|
+
default: () => never[];
|
|
581
|
+
};
|
|
582
|
+
getLabelList: {
|
|
583
|
+
type: FunctionConstructor;
|
|
584
|
+
default: () => Promise<{
|
|
585
|
+
rows: never[];
|
|
586
|
+
}>;
|
|
587
|
+
};
|
|
588
|
+
queryCommonlabels: {
|
|
589
|
+
type: FunctionConstructor;
|
|
590
|
+
default: () => Promise<{
|
|
591
|
+
data: {};
|
|
592
|
+
}>;
|
|
593
|
+
};
|
|
594
|
+
deleteLabel: {
|
|
595
|
+
type: FunctionConstructor;
|
|
596
|
+
default: () => Promise<{
|
|
597
|
+
status: boolean;
|
|
598
|
+
}>;
|
|
599
|
+
};
|
|
600
|
+
saveLabelItem: {
|
|
601
|
+
type: FunctionConstructor;
|
|
602
|
+
default: () => Promise<{
|
|
603
|
+
status: boolean;
|
|
604
|
+
}>;
|
|
605
|
+
};
|
|
606
|
+
}>> & {
|
|
607
|
+
onOnChange?: ((...args: any[]) => any) | undefined;
|
|
608
|
+
}>>;
|
|
609
|
+
emit: (event: "onChange", ...args: any[]) => void;
|
|
578
610
|
labelFormContentRef: any;
|
|
579
611
|
state: {
|
|
580
612
|
labelVisible: boolean;
|
|
@@ -591,7 +623,6 @@ export declare const componentMap: {
|
|
|
591
623
|
};
|
|
592
624
|
updateCommonChecked: (value: boolean, item: any) => void;
|
|
593
625
|
item_is_edit: import("vue").ComputedRef<any>;
|
|
594
|
-
titleRender: () => JSX.Element;
|
|
595
626
|
hadleCommonlabels: (commonLabelList: any[], selectList: any[]) => void;
|
|
596
627
|
getCommonlabelsList: (type: any) => Promise<void>;
|
|
597
628
|
closeTag: (d: {
|
|
@@ -728,58 +759,6 @@ export declare const componentMap: {
|
|
|
728
759
|
anchorGetContainer: () => any;
|
|
729
760
|
handleResetOptions: () => void;
|
|
730
761
|
hanldeSetLabelItem: (id: string | number, status: boolean) => void;
|
|
731
|
-
NTabs: any;
|
|
732
|
-
NTabPane: import("vue").DefineComponent<{
|
|
733
|
-
readonly tab: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
734
|
-
[key: string]: any;
|
|
735
|
-
}> | (() => import("vue").VNodeChild)>;
|
|
736
|
-
readonly name: {
|
|
737
|
-
readonly type: import("vue").PropType<string | number>;
|
|
738
|
-
readonly required: true;
|
|
739
|
-
};
|
|
740
|
-
readonly disabled: BooleanConstructor;
|
|
741
|
-
readonly displayDirective: {
|
|
742
|
-
readonly type: import("vue").PropType<"if" | "show" | "show:lazy">;
|
|
743
|
-
readonly default: "if";
|
|
744
|
-
};
|
|
745
|
-
readonly closable: {
|
|
746
|
-
readonly type: import("vue").PropType<boolean | undefined>;
|
|
747
|
-
readonly default: undefined;
|
|
748
|
-
};
|
|
749
|
-
readonly tabProps: import("vue").PropType<import("vue").HTMLAttributes>;
|
|
750
|
-
readonly label: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
751
|
-
[key: string]: any;
|
|
752
|
-
}> | (() => import("vue").VNodeChild)>;
|
|
753
|
-
}, {
|
|
754
|
-
style: import("vue").Ref<string | import("vue").CSSProperties | undefined>;
|
|
755
|
-
class: import("vue").Ref<string | undefined>;
|
|
756
|
-
mergedClsPrefix: import("vue").Ref<string>;
|
|
757
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
758
|
-
readonly tab: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
759
|
-
[key: string]: any;
|
|
760
|
-
}> | (() => import("vue").VNodeChild)>;
|
|
761
|
-
readonly name: {
|
|
762
|
-
readonly type: import("vue").PropType<string | number>;
|
|
763
|
-
readonly required: true;
|
|
764
|
-
};
|
|
765
|
-
readonly disabled: BooleanConstructor;
|
|
766
|
-
readonly displayDirective: {
|
|
767
|
-
readonly type: import("vue").PropType<"if" | "show" | "show:lazy">;
|
|
768
|
-
readonly default: "if";
|
|
769
|
-
};
|
|
770
|
-
readonly closable: {
|
|
771
|
-
readonly type: import("vue").PropType<boolean | undefined>;
|
|
772
|
-
readonly default: undefined;
|
|
773
|
-
};
|
|
774
|
-
readonly tabProps: import("vue").PropType<import("vue").HTMLAttributes>;
|
|
775
|
-
readonly label: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
776
|
-
[key: string]: any;
|
|
777
|
-
}> | (() => import("vue").VNodeChild)>;
|
|
778
|
-
}>>, {
|
|
779
|
-
readonly disabled: boolean;
|
|
780
|
-
readonly closable: boolean | undefined;
|
|
781
|
-
readonly displayDirective: "if" | "show" | "show:lazy";
|
|
782
|
-
}>;
|
|
783
762
|
NAnchor: any;
|
|
784
763
|
NAnchorLink: import("vue").DefineComponent<{
|
|
785
764
|
readonly title: StringConstructor;
|
|
@@ -978,89 +957,76 @@ export declare const componentMap: {
|
|
|
978
957
|
item: any;
|
|
979
958
|
isLock: boolean;
|
|
980
959
|
sourceType: string;
|
|
981
|
-
getLabelList: Function;
|
|
982
960
|
explicit: boolean;
|
|
961
|
+
getLabelList: Function;
|
|
983
962
|
deleteLabel: Function;
|
|
984
963
|
saveLabelItem: Function;
|
|
985
964
|
}>;
|
|
986
965
|
handleLabelColor: typeof import("../../../../shared/utils/vexutils").handleLabelColor;
|
|
987
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
966
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onChange"[], "onChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
988
967
|
selectedList: {
|
|
989
|
-
type:
|
|
990
|
-
required: false;
|
|
968
|
+
type: import("vue").PropType<any[]>;
|
|
991
969
|
default: () => never[];
|
|
992
970
|
};
|
|
993
971
|
item: {
|
|
994
|
-
type:
|
|
995
|
-
required: false;
|
|
972
|
+
type: import("vue").PropType<any>;
|
|
996
973
|
default: () => {};
|
|
997
974
|
};
|
|
998
975
|
isDetail: {
|
|
999
976
|
type: BooleanConstructor;
|
|
1000
|
-
required: false;
|
|
1001
977
|
default: boolean;
|
|
1002
978
|
};
|
|
1003
979
|
isLock: {
|
|
1004
980
|
type: BooleanConstructor;
|
|
1005
|
-
required: false;
|
|
1006
981
|
default: boolean;
|
|
1007
982
|
};
|
|
1008
983
|
sourceType: {
|
|
1009
984
|
type: StringConstructor;
|
|
1010
|
-
required: false;
|
|
1011
985
|
default: string;
|
|
1012
986
|
};
|
|
987
|
+
explicit: {
|
|
988
|
+
type: BooleanConstructor;
|
|
989
|
+
default: boolean;
|
|
990
|
+
};
|
|
991
|
+
selectUsers: {
|
|
992
|
+
type: import("vue").PropType<any[]>;
|
|
993
|
+
default: () => never[];
|
|
994
|
+
};
|
|
1013
995
|
getLabelList: {
|
|
1014
996
|
type: FunctionConstructor;
|
|
1015
|
-
required: false;
|
|
1016
997
|
default: () => Promise<{
|
|
1017
998
|
rows: never[];
|
|
1018
999
|
}>;
|
|
1019
1000
|
};
|
|
1020
|
-
explicit: {
|
|
1021
|
-
type: BooleanConstructor;
|
|
1022
|
-
required: false;
|
|
1023
|
-
default: boolean;
|
|
1024
|
-
};
|
|
1025
|
-
explicitHeiht: {
|
|
1026
|
-
type: StringConstructor;
|
|
1027
|
-
required: false;
|
|
1028
|
-
default: string;
|
|
1029
|
-
};
|
|
1030
1001
|
queryCommonlabels: {
|
|
1031
1002
|
type: FunctionConstructor;
|
|
1032
|
-
required: false;
|
|
1033
1003
|
default: () => Promise<{
|
|
1034
1004
|
data: {};
|
|
1035
1005
|
}>;
|
|
1036
1006
|
};
|
|
1037
1007
|
deleteLabel: {
|
|
1038
1008
|
type: FunctionConstructor;
|
|
1039
|
-
required: false;
|
|
1040
1009
|
default: () => Promise<{
|
|
1041
1010
|
status: boolean;
|
|
1042
1011
|
}>;
|
|
1043
1012
|
};
|
|
1044
1013
|
saveLabelItem: {
|
|
1045
1014
|
type: FunctionConstructor;
|
|
1046
|
-
required: false;
|
|
1047
1015
|
default: () => Promise<{
|
|
1048
1016
|
status: boolean;
|
|
1049
1017
|
}>;
|
|
1050
1018
|
};
|
|
1051
1019
|
}>> & {
|
|
1052
1020
|
onOnChange?: ((...args: any[]) => any) | undefined;
|
|
1053
|
-
onScaleChange?: ((...args: any[]) => any) | undefined;
|
|
1054
|
-
onVodFileList?: ((...args: any[]) => any) | undefined;
|
|
1055
1021
|
}, {
|
|
1056
|
-
selectedList:
|
|
1022
|
+
selectedList: any[];
|
|
1057
1023
|
item: any;
|
|
1058
1024
|
isDetail: boolean;
|
|
1059
1025
|
isLock: boolean;
|
|
1060
1026
|
sourceType: string;
|
|
1061
|
-
getLabelList: Function;
|
|
1062
1027
|
explicit: boolean;
|
|
1063
|
-
|
|
1028
|
+
selectUsers: any[];
|
|
1029
|
+
getLabelList: Function;
|
|
1064
1030
|
queryCommonlabels: Function;
|
|
1065
1031
|
deleteLabel: Function;
|
|
1066
1032
|
saveLabelItem: Function;
|