@zy-frontend/business 1.1.6 → 1.1.8
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/dist/components/AdvancedSearch/Index.vue.d.ts +52 -0
- package/dist/components/AdvancedSearch/components/Actions.vue.d.ts +47 -0
- package/dist/components/AdvancedSearch/components/Autocomplete.vue.d.ts +52 -0
- package/dist/components/AdvancedSearch/components/Condition.vue.d.ts +35 -0
- package/dist/components/AdvancedSearch/components/ConditionGroup.vue.d.ts +65 -0
- package/dist/components/AdvancedSearch/components/FieldPicker.vue.d.ts +6 -0
- package/dist/components/AdvancedSearch/components/FieldTreePicker.vue.d.ts +14 -0
- package/dist/components/AdvancedSearch/components/HistoryList.vue.d.ts +8 -0
- package/dist/components/AdvancedSearch/components/LogicalOperatorSelect.vue.d.ts +12 -0
- package/dist/components/AdvancedSearch/components/OperatorSelect.vue.d.ts +18 -0
- package/dist/components/AdvancedSearch/components/StatWaySelect.vue.d.ts +8 -0
- package/dist/components/AdvancedSearch/const.d.ts +1 -0
- package/dist/components/AdvancedSearch/index.d.ts +5 -0
- package/dist/components/AdvancedSearch/interface.d.ts +48 -0
- package/dist/components/AdvancedSearch/utils.d.ts +34 -0
- package/dist/components/AnchorTabs/AnchorTabItem.vue.d.ts +22 -0
- package/dist/components/AnchorTabs/AnchorTabs.vue.d.ts +51 -0
- package/dist/components/AnchorTabs/index.d.ts +4 -0
- package/dist/components/AnchorTabs/interface.d.ts +12 -0
- package/dist/components/AnchorTabs/utils.d.ts +6 -0
- package/dist/components/ChartList/Chart.vue.d.ts +128 -0
- package/dist/components/ChartList/ChartList.vue.d.ts +143 -0
- package/dist/components/ChartList/ChartViewDialog.vue.d.ts +25 -0
- package/dist/components/ChartList/TableViewDialog.vue.d.ts +4 -0
- package/dist/components/ChartList/index.d.ts +7 -0
- package/dist/components/ChartList/interface.d.ts +22 -0
- package/dist/components/ColumnCustomizableTable/ColumnCustomizeDrawer.vue.d.ts +29 -0
- package/dist/components/ColumnCustomizableTable/ColumnCustomizeExportDrawer.vue.d.ts +25 -0
- package/dist/components/ColumnCustomizableTable/Index.vue.d.ts +132 -0
- package/dist/components/ColumnCustomizableTable/InputPopConfirm.vue.d.ts +66 -0
- package/dist/components/ColumnCustomizableTable/TemplateTagList.vue.d.ts +14 -0
- package/dist/components/ColumnCustomizableTable/hooks.d.ts +26 -0
- package/dist/components/ColumnCustomizableTable/index.d.ts +9 -0
- package/dist/components/ColumnCustomizableTable/interface.d.ts +37 -0
- package/dist/components/ColumnCustomizableTable/utils.d.ts +16 -0
- package/dist/components/GlobalProvider/global-provider.d.ts +47 -0
- package/dist/components/GlobalProvider/index.d.ts +43 -0
- package/dist/components/IconButton/IconButton.vue.d.ts +43 -0
- package/dist/components/IconButton/index.d.ts +4 -0
- package/dist/components/Layout/Container.vue.d.ts +29 -0
- package/dist/components/Layout/Layout.vue.d.ts +24 -0
- package/dist/components/Layout/LayoutItem.vue.d.ts +24 -0
- package/dist/components/Layout/index.d.ts +7 -0
- package/dist/components/Layout/interface.d.ts +6 -0
- package/dist/components/OverflowTooltip/OverflowTooltip.vue.d.ts +33 -0
- package/dist/components/OverflowTooltip/index.d.ts +4 -0
- package/dist/components/ScoreDialog/AsaScore.vue.d.ts +35 -0
- package/dist/components/ScoreDialog/CommonScore.vue.d.ts +38 -0
- package/dist/components/ScoreDialog/IssAisScore.vue.d.ts +29 -0
- package/dist/components/ScoreDialog/QuestionnaireScore.vue.d.ts +38 -0
- package/dist/components/ScoreDialog/index.d.ts +5 -0
- package/dist/components/ScoreDialog/index.vue.d.ts +25 -0
- package/dist/components/ScoreDialog/interface.d.ts +35 -0
- package/dist/components/ScoreDialog/useScoreData.d.ts +10 -0
- package/dist/components/ScoreDialog/utils.d.ts +1 -0
- package/dist/components/ScoreTable/gcsScore.vue.d.ts +25 -0
- package/dist/components/ScoreTable/index.d.ts +6 -0
- package/dist/components/ScoreTable/index.vue.d.ts +13 -0
- package/dist/components/ScoreTable/interface.d.ts +83 -0
- package/dist/components/ScoreTable/issAisScore.vue.d.ts +30 -0
- package/dist/components/ScoreTable/rtsScore.vue.d.ts +19 -0
- package/dist/components/ScoreTable/useScoreData.d.ts +11 -0
- package/dist/components/SearchForm/Index.vue.d.ts +111 -0
- package/dist/components/SearchForm/MoreDrawer.vue.d.ts +38 -0
- package/dist/components/SearchForm/components/Checkbox.vue.d.ts +36 -0
- package/dist/components/SearchForm/components/CustomSearchFormDialog.vue.d.ts +19 -0
- package/dist/components/SearchForm/components/DateTimePicker.vue.d.ts +82 -0
- package/dist/components/SearchForm/components/FieldPicker.vue.d.ts +34 -0
- package/dist/components/SearchForm/components/Input.vue.d.ts +80 -0
- package/dist/components/SearchForm/components/OperatorSelect.vue.d.ts +18 -0
- package/dist/components/SearchForm/components/Radio.vue.d.ts +53 -0
- package/dist/components/SearchForm/components/Select/Index.vue.d.ts +118 -0
- package/dist/components/SearchForm/components/Select/Select.vue.d.ts +53 -0
- package/dist/components/SearchForm/components/Select/TiledOptions.vue.d.ts +43 -0
- package/dist/components/SearchForm/components/Select/index.d.ts +3 -0
- package/dist/components/SearchForm/components/SingleCondition.vue.d.ts +76 -0
- package/dist/components/SearchForm/components/TimeFieldPicker.vue.d.ts +71 -0
- package/dist/components/SearchForm/components/TimeTypeSelect.vue.d.ts +24 -0
- package/dist/components/SearchForm/const.d.ts +3 -0
- package/dist/components/SearchForm/hooks.d.ts +10 -0
- package/dist/components/SearchForm/index.d.ts +9 -0
- package/dist/components/SearchForm/interface.d.ts +52 -0
- package/dist/components/SearchForm/utils.d.ts +1 -0
- package/dist/components/SortableFieldPicker/FieldTreeSelect.vue.d.ts +72 -0
- package/dist/components/SortableFieldPicker/Index.vue.d.ts +16 -0
- package/dist/components/SortableFieldPicker/index.d.ts +6 -0
- package/dist/components/SortableFieldPicker/interface.d.ts +19 -0
- package/dist/components/Splitter/Index.vue.d.ts +64 -0
- package/dist/components/Splitter/Panel.vue.d.ts +63 -0
- package/dist/components/Splitter/index.d.ts +6 -0
- package/dist/components/Splitter/interface.d.ts +96 -0
- package/dist/components/Splitter/registry.d.ts +10 -0
- package/dist/components/Table/Column.vue.d.ts +22 -0
- package/dist/components/Table/ColumnAction.vue.d.ts +19 -0
- package/dist/components/Table/ColumnRenderer.d.ts +24 -0
- package/dist/components/Table/Index.vue.d.ts +33 -0
- package/dist/components/Table/SimpleTable.vue.d.ts +54 -0
- package/dist/components/Table/index.d.ts +13 -0
- package/dist/components/Table/interface.d.ts +107 -0
- package/dist/components/Table/utils.d.ts +6 -0
- package/dist/components/index.d.ts +14 -0
- package/dist/const.d.ts +32 -0
- package/dist/hooks/use-async-queue.d.ts +6 -0
- package/dist/hooks/use-element-size.d.ts +14 -0
- package/dist/hooks/use-global-config.d.ts +39 -0
- package/dist/hooks/use-global-storage.d.ts +32 -0
- package/dist/hooks/use-resize.d.ts +38 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.es.js +1427 -1423
- package/dist/interface.d.ts +61 -0
- package/dist/main.d.ts +1 -0
- package/dist/service/diagram.d.ts +14 -0
- package/dist/service/download.d.ts +10 -0
- package/dist/service/index.d.ts +53 -0
- package/dist/service/score.d.ts +9 -0
- package/dist/stores/index.d.ts +1 -0
- package/dist/utils/index.d.ts +13 -0
- package/dist/utils/lazy-load.d.ts +6 -0
- package/package.json +3 -2
- package/dist/index.es.d.ts +0 -2119
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import { ZYSearchFormItem } from './interface';
|
|
2
|
+
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
"extra-action"?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
7
|
+
modelValue: {
|
|
8
|
+
required: true;
|
|
9
|
+
type: import('vue').PropType<Record<string, any>>;
|
|
10
|
+
};
|
|
11
|
+
projectId: {
|
|
12
|
+
type: import('vue').PropType<string | number>;
|
|
13
|
+
};
|
|
14
|
+
eventId: {
|
|
15
|
+
type: import('vue').PropType<string | number>;
|
|
16
|
+
};
|
|
17
|
+
items: {
|
|
18
|
+
type: import('vue').PropType<ZYSearchFormItem[]>;
|
|
19
|
+
};
|
|
20
|
+
configCode: {
|
|
21
|
+
type: import('vue').PropType<string>;
|
|
22
|
+
};
|
|
23
|
+
showAll: {
|
|
24
|
+
type: import('vue').PropType<boolean>;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
maxRowNum: {
|
|
28
|
+
type: import('vue').PropType<number>;
|
|
29
|
+
default: number;
|
|
30
|
+
};
|
|
31
|
+
customize: {
|
|
32
|
+
type: import('vue').PropType<boolean>;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
foldMinRowNum: {
|
|
36
|
+
type: import('vue').PropType<number>;
|
|
37
|
+
default: number;
|
|
38
|
+
};
|
|
39
|
+
defaultFormData: {
|
|
40
|
+
type: import('vue').PropType<Record<string, any>>;
|
|
41
|
+
};
|
|
42
|
+
customComponents: {
|
|
43
|
+
type: import('vue').PropType<Record<string, any>>;
|
|
44
|
+
};
|
|
45
|
+
}>, {
|
|
46
|
+
updateInitialFormDataBackup: () => void;
|
|
47
|
+
getFormattedFormData: (data?: Record<string, any>) => Record<string, any>[];
|
|
48
|
+
search: () => Promise<void>;
|
|
49
|
+
reset: (refresh?: boolean) => void;
|
|
50
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
51
|
+
search: (...args: any[]) => void;
|
|
52
|
+
reset: (...args: any[]) => void;
|
|
53
|
+
change: (...args: any[]) => void;
|
|
54
|
+
"config-loaded": (...args: any[]) => void;
|
|
55
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
56
|
+
modelValue: {
|
|
57
|
+
required: true;
|
|
58
|
+
type: import('vue').PropType<Record<string, any>>;
|
|
59
|
+
};
|
|
60
|
+
projectId: {
|
|
61
|
+
type: import('vue').PropType<string | number>;
|
|
62
|
+
};
|
|
63
|
+
eventId: {
|
|
64
|
+
type: import('vue').PropType<string | number>;
|
|
65
|
+
};
|
|
66
|
+
items: {
|
|
67
|
+
type: import('vue').PropType<ZYSearchFormItem[]>;
|
|
68
|
+
};
|
|
69
|
+
configCode: {
|
|
70
|
+
type: import('vue').PropType<string>;
|
|
71
|
+
};
|
|
72
|
+
showAll: {
|
|
73
|
+
type: import('vue').PropType<boolean>;
|
|
74
|
+
default: boolean;
|
|
75
|
+
};
|
|
76
|
+
maxRowNum: {
|
|
77
|
+
type: import('vue').PropType<number>;
|
|
78
|
+
default: number;
|
|
79
|
+
};
|
|
80
|
+
customize: {
|
|
81
|
+
type: import('vue').PropType<boolean>;
|
|
82
|
+
default: boolean;
|
|
83
|
+
};
|
|
84
|
+
foldMinRowNum: {
|
|
85
|
+
type: import('vue').PropType<number>;
|
|
86
|
+
default: number;
|
|
87
|
+
};
|
|
88
|
+
defaultFormData: {
|
|
89
|
+
type: import('vue').PropType<Record<string, any>>;
|
|
90
|
+
};
|
|
91
|
+
customComponents: {
|
|
92
|
+
type: import('vue').PropType<Record<string, any>>;
|
|
93
|
+
};
|
|
94
|
+
}>> & Readonly<{
|
|
95
|
+
onSearch?: ((...args: any[]) => any) | undefined;
|
|
96
|
+
onReset?: ((...args: any[]) => any) | undefined;
|
|
97
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
98
|
+
"onConfig-loaded"?: ((...args: any[]) => any) | undefined;
|
|
99
|
+
}>, {
|
|
100
|
+
showAll: boolean;
|
|
101
|
+
maxRowNum: number;
|
|
102
|
+
customize: boolean;
|
|
103
|
+
foldMinRowNum: number;
|
|
104
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
105
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
106
|
+
export default _default;
|
|
107
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
108
|
+
new (): {
|
|
109
|
+
$slots: S;
|
|
110
|
+
};
|
|
111
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
modelValue: {
|
|
3
|
+
required: true;
|
|
4
|
+
type: import('vue').PropType<Record<string, any>>;
|
|
5
|
+
};
|
|
6
|
+
visible: {
|
|
7
|
+
required: true;
|
|
8
|
+
type: import('vue').PropType<boolean>;
|
|
9
|
+
};
|
|
10
|
+
items: {
|
|
11
|
+
type: import('vue').PropType<import('./interface').ZYSearchFormItem[]>;
|
|
12
|
+
required: true;
|
|
13
|
+
default: () => never[];
|
|
14
|
+
};
|
|
15
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
search: (...args: any[]) => void;
|
|
17
|
+
reset: (...args: any[]) => void;
|
|
18
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
19
|
+
modelValue: {
|
|
20
|
+
required: true;
|
|
21
|
+
type: import('vue').PropType<Record<string, any>>;
|
|
22
|
+
};
|
|
23
|
+
visible: {
|
|
24
|
+
required: true;
|
|
25
|
+
type: import('vue').PropType<boolean>;
|
|
26
|
+
};
|
|
27
|
+
items: {
|
|
28
|
+
type: import('vue').PropType<import('./interface').ZYSearchFormItem[]>;
|
|
29
|
+
required: true;
|
|
30
|
+
default: () => never[];
|
|
31
|
+
};
|
|
32
|
+
}>> & Readonly<{
|
|
33
|
+
onSearch?: ((...args: any[]) => any) | undefined;
|
|
34
|
+
onReset?: ((...args: any[]) => any) | undefined;
|
|
35
|
+
}>, {
|
|
36
|
+
items: import('./interface').ZYSearchFormItem[];
|
|
37
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
38
|
+
export default _default;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
modelValue: {
|
|
3
|
+
required: true;
|
|
4
|
+
type: import('vue').PropType<boolean>;
|
|
5
|
+
};
|
|
6
|
+
label: {
|
|
7
|
+
type: import('vue').PropType<string>;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
valueFormatter: {
|
|
11
|
+
type: import('vue').PropType<any>;
|
|
12
|
+
};
|
|
13
|
+
description: {
|
|
14
|
+
type: import('vue').PropType<string>;
|
|
15
|
+
};
|
|
16
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17
|
+
change: (...args: any[]) => void;
|
|
18
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
19
|
+
modelValue: {
|
|
20
|
+
required: true;
|
|
21
|
+
type: import('vue').PropType<boolean>;
|
|
22
|
+
};
|
|
23
|
+
label: {
|
|
24
|
+
type: import('vue').PropType<string>;
|
|
25
|
+
required: true;
|
|
26
|
+
};
|
|
27
|
+
valueFormatter: {
|
|
28
|
+
type: import('vue').PropType<any>;
|
|
29
|
+
};
|
|
30
|
+
description: {
|
|
31
|
+
type: import('vue').PropType<string>;
|
|
32
|
+
};
|
|
33
|
+
}>> & Readonly<{
|
|
34
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
35
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
36
|
+
export default _default;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ZYCustomSearchFormProps } from '../interface';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ZYCustomSearchFormProps>>, {
|
|
4
|
+
start: () => void;
|
|
5
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
|
+
refresh: (...args: any[]) => void;
|
|
7
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ZYCustomSearchFormProps>>> & Readonly<{
|
|
8
|
+
onRefresh?: ((...args: any[]) => any) | undefined;
|
|
9
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
10
|
+
export default _default;
|
|
11
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
12
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
13
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
14
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
15
|
+
} : {
|
|
16
|
+
type: import('vue').PropType<T[K]>;
|
|
17
|
+
required: true;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { ZYCondition } from '../../../interface';
|
|
2
|
+
import { ZYSearchFormComponentType } from '../interface';
|
|
3
|
+
|
|
4
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
|
+
modelValue: {
|
|
6
|
+
required: true;
|
|
7
|
+
type: import('vue').PropType<Pick<ZYCondition, "operator" | "value"> & {
|
|
8
|
+
field?: string;
|
|
9
|
+
}>;
|
|
10
|
+
};
|
|
11
|
+
label: {
|
|
12
|
+
type: import('vue').PropType<string>;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
type: {
|
|
16
|
+
type: import('vue').PropType<ZYSearchFormComponentType>;
|
|
17
|
+
required: true;
|
|
18
|
+
};
|
|
19
|
+
valueFormat: {
|
|
20
|
+
type: import('vue').PropType<string>;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
startPlaceholder: {
|
|
24
|
+
type: import('vue').PropType<string>;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
endPlaceholder: {
|
|
28
|
+
type: import('vue').PropType<string>;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
valueFormatter: {
|
|
32
|
+
type: import('vue').PropType<any>;
|
|
33
|
+
};
|
|
34
|
+
pickerType: {
|
|
35
|
+
type: import('vue').PropType<"date" | "year" | "month" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange">;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
39
|
+
change: (...args: any[]) => void;
|
|
40
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
41
|
+
modelValue: {
|
|
42
|
+
required: true;
|
|
43
|
+
type: import('vue').PropType<Pick<ZYCondition, "operator" | "value"> & {
|
|
44
|
+
field?: string;
|
|
45
|
+
}>;
|
|
46
|
+
};
|
|
47
|
+
label: {
|
|
48
|
+
type: import('vue').PropType<string>;
|
|
49
|
+
required: true;
|
|
50
|
+
};
|
|
51
|
+
type: {
|
|
52
|
+
type: import('vue').PropType<ZYSearchFormComponentType>;
|
|
53
|
+
required: true;
|
|
54
|
+
};
|
|
55
|
+
valueFormat: {
|
|
56
|
+
type: import('vue').PropType<string>;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
startPlaceholder: {
|
|
60
|
+
type: import('vue').PropType<string>;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
endPlaceholder: {
|
|
64
|
+
type: import('vue').PropType<string>;
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
67
|
+
valueFormatter: {
|
|
68
|
+
type: import('vue').PropType<any>;
|
|
69
|
+
};
|
|
70
|
+
pickerType: {
|
|
71
|
+
type: import('vue').PropType<"date" | "year" | "month" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange">;
|
|
72
|
+
default: string;
|
|
73
|
+
};
|
|
74
|
+
}>> & Readonly<{
|
|
75
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
76
|
+
}>, {
|
|
77
|
+
valueFormat: string;
|
|
78
|
+
startPlaceholder: string;
|
|
79
|
+
endPlaceholder: string;
|
|
80
|
+
pickerType: "year" | "month" | "date" | "datetime" | "week" | "datetimerange" | "daterange" | "monthrange" | "yearrange";
|
|
81
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
82
|
+
export default _default;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
modelValue: import('vue').PropType<Record<string, any> | Record<string, any>[]>;
|
|
3
|
+
projectId: {
|
|
4
|
+
type: import('vue').PropType<string>;
|
|
5
|
+
};
|
|
6
|
+
eventId: {
|
|
7
|
+
type: import('vue').PropType<string>;
|
|
8
|
+
};
|
|
9
|
+
multiple: {
|
|
10
|
+
type: import('vue').PropType<boolean>;
|
|
11
|
+
default: boolean;
|
|
12
|
+
};
|
|
13
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
14
|
+
select: (...args: any[]) => void;
|
|
15
|
+
change: (...args: any[]) => void;
|
|
16
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
17
|
+
modelValue: import('vue').PropType<Record<string, any> | Record<string, any>[]>;
|
|
18
|
+
projectId: {
|
|
19
|
+
type: import('vue').PropType<string>;
|
|
20
|
+
};
|
|
21
|
+
eventId: {
|
|
22
|
+
type: import('vue').PropType<string>;
|
|
23
|
+
};
|
|
24
|
+
multiple: {
|
|
25
|
+
type: import('vue').PropType<boolean>;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
}>> & Readonly<{
|
|
29
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
30
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
31
|
+
}>, {
|
|
32
|
+
multiple: boolean;
|
|
33
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default _default;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
modelValue: {
|
|
3
|
+
required: true;
|
|
4
|
+
type: import('vue').PropType<string>;
|
|
5
|
+
};
|
|
6
|
+
label: {
|
|
7
|
+
type: import('vue').PropType<string>;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
placeholder: {
|
|
11
|
+
type: import('vue').PropType<string>;
|
|
12
|
+
required: true;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
clearable: {
|
|
16
|
+
type: import('vue').PropType<boolean>;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
prop: {
|
|
20
|
+
type: import('vue').PropType<string>;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
description: {
|
|
24
|
+
type: import('vue').PropType<string>;
|
|
25
|
+
};
|
|
26
|
+
valueFormatter: {
|
|
27
|
+
type: import('vue').PropType<any>;
|
|
28
|
+
};
|
|
29
|
+
labelPosition: {
|
|
30
|
+
type: import('vue').PropType<"top" | "left">;
|
|
31
|
+
};
|
|
32
|
+
remoteOption: {
|
|
33
|
+
type: import('vue').PropType<boolean>;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
37
|
+
change: (...args: any[]) => void;
|
|
38
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
39
|
+
modelValue: {
|
|
40
|
+
required: true;
|
|
41
|
+
type: import('vue').PropType<string>;
|
|
42
|
+
};
|
|
43
|
+
label: {
|
|
44
|
+
type: import('vue').PropType<string>;
|
|
45
|
+
required: true;
|
|
46
|
+
};
|
|
47
|
+
placeholder: {
|
|
48
|
+
type: import('vue').PropType<string>;
|
|
49
|
+
required: true;
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
52
|
+
clearable: {
|
|
53
|
+
type: import('vue').PropType<boolean>;
|
|
54
|
+
default: boolean;
|
|
55
|
+
};
|
|
56
|
+
prop: {
|
|
57
|
+
type: import('vue').PropType<string>;
|
|
58
|
+
required: true;
|
|
59
|
+
};
|
|
60
|
+
description: {
|
|
61
|
+
type: import('vue').PropType<string>;
|
|
62
|
+
};
|
|
63
|
+
valueFormatter: {
|
|
64
|
+
type: import('vue').PropType<any>;
|
|
65
|
+
};
|
|
66
|
+
labelPosition: {
|
|
67
|
+
type: import('vue').PropType<"top" | "left">;
|
|
68
|
+
};
|
|
69
|
+
remoteOption: {
|
|
70
|
+
type: import('vue').PropType<boolean>;
|
|
71
|
+
default: boolean;
|
|
72
|
+
};
|
|
73
|
+
}>> & Readonly<{
|
|
74
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
75
|
+
}>, {
|
|
76
|
+
placeholder: string;
|
|
77
|
+
clearable: boolean;
|
|
78
|
+
remoteOption: boolean;
|
|
79
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
80
|
+
export default _default;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ZYDataType } from '../../../interface';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
modelValue: import('vue').PropType<string>;
|
|
5
|
+
dataType: {
|
|
6
|
+
type: import('vue').PropType<ZYDataType>;
|
|
7
|
+
};
|
|
8
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
|
+
change: (...args: any[]) => void;
|
|
10
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
11
|
+
modelValue: import('vue').PropType<string>;
|
|
12
|
+
dataType: {
|
|
13
|
+
type: import('vue').PropType<ZYDataType>;
|
|
14
|
+
};
|
|
15
|
+
}>> & Readonly<{
|
|
16
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
17
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
18
|
+
export default _default;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { ZYOption } from '../../../interface';
|
|
2
|
+
|
|
3
|
+
type RadioOption = ZYOption<string | number>;
|
|
4
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
|
+
modelValue: {
|
|
6
|
+
required: true;
|
|
7
|
+
type: import('vue').PropType<string>;
|
|
8
|
+
};
|
|
9
|
+
label: {
|
|
10
|
+
type: import('vue').PropType<string>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
options: {
|
|
14
|
+
type: import('vue').PropType<RadioOption[]>;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
description: {
|
|
18
|
+
type: import('vue').PropType<string>;
|
|
19
|
+
};
|
|
20
|
+
valueFormatter: {
|
|
21
|
+
type: import('vue').PropType<any>;
|
|
22
|
+
};
|
|
23
|
+
labelPosition: {
|
|
24
|
+
type: import('vue').PropType<"top" | "left">;
|
|
25
|
+
};
|
|
26
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
27
|
+
change: (...args: any[]) => void;
|
|
28
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
29
|
+
modelValue: {
|
|
30
|
+
required: true;
|
|
31
|
+
type: import('vue').PropType<string>;
|
|
32
|
+
};
|
|
33
|
+
label: {
|
|
34
|
+
type: import('vue').PropType<string>;
|
|
35
|
+
required: true;
|
|
36
|
+
};
|
|
37
|
+
options: {
|
|
38
|
+
type: import('vue').PropType<RadioOption[]>;
|
|
39
|
+
required: true;
|
|
40
|
+
};
|
|
41
|
+
description: {
|
|
42
|
+
type: import('vue').PropType<string>;
|
|
43
|
+
};
|
|
44
|
+
valueFormatter: {
|
|
45
|
+
type: import('vue').PropType<any>;
|
|
46
|
+
};
|
|
47
|
+
labelPosition: {
|
|
48
|
+
type: import('vue').PropType<"top" | "left">;
|
|
49
|
+
};
|
|
50
|
+
}>> & Readonly<{
|
|
51
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
52
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
53
|
+
export default _default;
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import { ZYOption } from '../../../../interface';
|
|
2
|
+
|
|
3
|
+
type SelectOption = ZYOption<string | number | Record<string, any>>;
|
|
4
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
|
+
modelValue: {
|
|
6
|
+
required: true;
|
|
7
|
+
type: import('vue').PropType<SelectOption["value"] | SelectOption["value"][] | SelectOption["value"][][]>;
|
|
8
|
+
};
|
|
9
|
+
label: {
|
|
10
|
+
type: import('vue').PropType<string>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
placeholder: {
|
|
14
|
+
type: import('vue').PropType<string>;
|
|
15
|
+
required: true;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
options: {
|
|
19
|
+
type: import('vue').PropType<SelectOption[] | SelectOption[][]>;
|
|
20
|
+
required: true;
|
|
21
|
+
default: () => never[];
|
|
22
|
+
};
|
|
23
|
+
clearable: {
|
|
24
|
+
type: import('vue').PropType<boolean>;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
valueKey: {
|
|
28
|
+
type: import('vue').PropType<string>;
|
|
29
|
+
};
|
|
30
|
+
multiple: {
|
|
31
|
+
type: import('vue').PropType<boolean>;
|
|
32
|
+
};
|
|
33
|
+
width: {
|
|
34
|
+
type: import('vue').PropType<string>;
|
|
35
|
+
};
|
|
36
|
+
prop: {
|
|
37
|
+
type: import('vue').PropType<string>;
|
|
38
|
+
required: true;
|
|
39
|
+
};
|
|
40
|
+
valueFormatter: {
|
|
41
|
+
type: import('vue').PropType<any>;
|
|
42
|
+
};
|
|
43
|
+
labelPosition: {
|
|
44
|
+
type: import('vue').PropType<"top" | "left">;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
remoteOption: {
|
|
48
|
+
type: import('vue').PropType<boolean>;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
51
|
+
tiledOptions: {
|
|
52
|
+
type: import('vue').PropType<boolean>;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
56
|
+
change: (...args: any[]) => void;
|
|
57
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
58
|
+
modelValue: {
|
|
59
|
+
required: true;
|
|
60
|
+
type: import('vue').PropType<SelectOption["value"] | SelectOption["value"][] | SelectOption["value"][][]>;
|
|
61
|
+
};
|
|
62
|
+
label: {
|
|
63
|
+
type: import('vue').PropType<string>;
|
|
64
|
+
required: true;
|
|
65
|
+
};
|
|
66
|
+
placeholder: {
|
|
67
|
+
type: import('vue').PropType<string>;
|
|
68
|
+
required: true;
|
|
69
|
+
default: string;
|
|
70
|
+
};
|
|
71
|
+
options: {
|
|
72
|
+
type: import('vue').PropType<SelectOption[] | SelectOption[][]>;
|
|
73
|
+
required: true;
|
|
74
|
+
default: () => never[];
|
|
75
|
+
};
|
|
76
|
+
clearable: {
|
|
77
|
+
type: import('vue').PropType<boolean>;
|
|
78
|
+
default: boolean;
|
|
79
|
+
};
|
|
80
|
+
valueKey: {
|
|
81
|
+
type: import('vue').PropType<string>;
|
|
82
|
+
};
|
|
83
|
+
multiple: {
|
|
84
|
+
type: import('vue').PropType<boolean>;
|
|
85
|
+
};
|
|
86
|
+
width: {
|
|
87
|
+
type: import('vue').PropType<string>;
|
|
88
|
+
};
|
|
89
|
+
prop: {
|
|
90
|
+
type: import('vue').PropType<string>;
|
|
91
|
+
required: true;
|
|
92
|
+
};
|
|
93
|
+
valueFormatter: {
|
|
94
|
+
type: import('vue').PropType<any>;
|
|
95
|
+
};
|
|
96
|
+
labelPosition: {
|
|
97
|
+
type: import('vue').PropType<"top" | "left">;
|
|
98
|
+
default: string;
|
|
99
|
+
};
|
|
100
|
+
remoteOption: {
|
|
101
|
+
type: import('vue').PropType<boolean>;
|
|
102
|
+
default: boolean;
|
|
103
|
+
};
|
|
104
|
+
tiledOptions: {
|
|
105
|
+
type: import('vue').PropType<boolean>;
|
|
106
|
+
default: boolean;
|
|
107
|
+
};
|
|
108
|
+
}>> & Readonly<{
|
|
109
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
110
|
+
}>, {
|
|
111
|
+
placeholder: string;
|
|
112
|
+
options: SelectOption[] | SelectOption[][];
|
|
113
|
+
clearable: boolean;
|
|
114
|
+
labelPosition: "left" | "top";
|
|
115
|
+
remoteOption: boolean;
|
|
116
|
+
tiledOptions: boolean;
|
|
117
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
118
|
+
export default _default;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { ZYOption } from '../../../../interface';
|
|
2
|
+
|
|
3
|
+
type SelectOption = ZYOption<string | number | Record<string, any>>;
|
|
4
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
|
+
modelValue: {
|
|
6
|
+
required: true;
|
|
7
|
+
type: import('vue').PropType<SelectOption["value"] | SelectOption["value"][]>;
|
|
8
|
+
};
|
|
9
|
+
options: {
|
|
10
|
+
type: import('vue').PropType<SelectOption[]>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
clearable: {
|
|
14
|
+
type: import('vue').PropType<boolean>;
|
|
15
|
+
};
|
|
16
|
+
placeholder: {
|
|
17
|
+
type: import('vue').PropType<string>;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
valueKey: {
|
|
21
|
+
type: import('vue').PropType<string>;
|
|
22
|
+
};
|
|
23
|
+
width: {
|
|
24
|
+
type: import('vue').PropType<string>;
|
|
25
|
+
};
|
|
26
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
27
|
+
change: (...args: any[]) => void;
|
|
28
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
29
|
+
modelValue: {
|
|
30
|
+
required: true;
|
|
31
|
+
type: import('vue').PropType<SelectOption["value"] | SelectOption["value"][]>;
|
|
32
|
+
};
|
|
33
|
+
options: {
|
|
34
|
+
type: import('vue').PropType<SelectOption[]>;
|
|
35
|
+
required: true;
|
|
36
|
+
};
|
|
37
|
+
clearable: {
|
|
38
|
+
type: import('vue').PropType<boolean>;
|
|
39
|
+
};
|
|
40
|
+
placeholder: {
|
|
41
|
+
type: import('vue').PropType<string>;
|
|
42
|
+
required: true;
|
|
43
|
+
};
|
|
44
|
+
valueKey: {
|
|
45
|
+
type: import('vue').PropType<string>;
|
|
46
|
+
};
|
|
47
|
+
width: {
|
|
48
|
+
type: import('vue').PropType<string>;
|
|
49
|
+
};
|
|
50
|
+
}>> & Readonly<{
|
|
51
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
52
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
53
|
+
export default _default;
|