@qqt-product/system 7.0.1 → 8.0.0

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 (33) hide show
  1. package/dist/index.es.js +22930 -19462
  2. package/dist/index.umd.js +316 -42
  3. package/dist/lib/components/QAccountList/src/QAccountCreate.vue.d.ts +33 -0
  4. package/dist/lib/components/QAccountList/src/QAccountDetail.vue.d.ts +33 -0
  5. package/dist/lib/components/QAccountList/src/QAccountEdit.vue.d.ts +33 -0
  6. package/dist/lib/components/QCostCustomConfigEdit/component/AddDictCodeModal.vue.d.ts +25 -0
  7. package/dist/lib/components/QCostCustomConfigEdit/component/TempalePreviewModal.vue.d.ts +31 -0
  8. package/dist/lib/components/QCostCustomConfigEdit/component/dataFormatComponent.d.ts +46 -0
  9. package/dist/lib/components/QCostCustomConfigEdit/component/regexComponent.d.ts +40 -0
  10. package/dist/lib/components/QCostCustomConfigEdit/src/QCostCustomConfigEdit.vue.d.ts +1209 -0
  11. package/dist/lib/components/QCostCustomConfigEdit/src/QcustomConfigRender.d.ts +12 -0
  12. package/dist/lib/components/QCostCustomConfigEdit/src/types.d.ts +61 -0
  13. package/dist/lib/components/QCostCustomConfigEdit/src/useConfigComputed.d.ts +7 -0
  14. package/dist/lib/components/QCostCustomConfigEdit/src/useConfigData.d.ts +86 -0
  15. package/dist/lib/components/QCostCustomConfigEdit/src/useConfigMethods.d.ts +16 -0
  16. package/dist/lib/components/QCostCustomConfigEdit/src/useConstant.d.ts +18 -0
  17. package/dist/lib/components/QCostCustomConfigList/src/QCostCustomConfigList.vue.d.ts +105 -0
  18. package/dist/lib/components/QCostCustomConfigList/src/useConfigData.d.ts +17 -0
  19. package/dist/lib/components/QCostCustomConfigList/src/useMethods.d.ts +15 -0
  20. package/dist/lib/components/QElsMsgRecordList/src/QElsMsgRecordDetail.vue.d.ts +33 -0
  21. package/dist/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsDetail.vue.d.ts +33 -0
  22. package/dist/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsEdit.vue.d.ts +33 -0
  23. package/dist/lib/components/QPermissionDataList/src/QPermissionDataEdit.vue.d.ts +33 -0
  24. package/dist/lib/components/QPermissionDataList/src/QPermissionDataList.vue.d.ts +1 -0
  25. package/dist/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeDetail.vue.d.ts +33 -0
  26. package/dist/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeEdit.vue.d.ts +33 -0
  27. package/dist/lib/components/QcustomConfigEdit/src/QcustomConfigEdit.vue.d.ts +10 -1
  28. package/dist/lib/components/index.d.ts +3 -1
  29. package/dist/lib/components/integratedNodesList/src/QIntegratedNodesDetail.vue.d.ts +33 -0
  30. package/dist/lib/components/integratedNodesList/src/QIntegratedNodesEdit.vue.d.ts +33 -0
  31. package/dist/lib/components/integratedReportSearchList/src/index.vue.d.ts +10 -0
  32. package/dist/style.css +1 -1
  33. package/package.json +9 -9
@@ -1,4 +1,5 @@
1
1
  import type { SizeType, VxeTableDataRow, VxePagerPropTypes, VxeColumnSlotTypes, SlotVNodeType, VxeColumnPropTypes, VxeTablePropTypes, VxeTooltipPropTypes, VxeTableDefines, VxeTableConstructor, VxeTablePrivateMethods, VxeGridConstructor, VxeTableProDefines, VxeGridPropTypes, VxeButtonPropTypes, VxeToolbarPropTypes, VxeFormPropTypes, VxeFormItemPropTypes, VxeFormItemProps, FormItemTitleRenderParams, FormItemContentRenderParams } from 'vxe-table';
2
+ import type { FileDataType } from '@qqt-product/ui/dist/lib/components/upload-file';
2
3
  import type { DefineComponent, ShallowRef, Ref, ComponentOptionsBase, VNode, RendererNode, RendererElement, Slot, ComponentInternalInstance, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, ComponentPublicInstance } from 'vue';
3
4
  import type { GlobalPageLayoutTypes } from '@qqt-product/ui';
4
5
  import * as customConfigEdits from '../../../utils/global.types';
@@ -84,6 +85,38 @@ declare const _sfc_main: DefineComponent<{
84
85
  handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
85
86
  handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
86
87
  callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
88
+ }[] | {
89
+ onConfirmBeforeUpload?: ((formData: FileDataType) => boolean) | undefined;
90
+ title: string;
91
+ i18nKey?: string | undefined;
92
+ key: string | symbol;
93
+ args: GlobalPageLayoutTypes.PageButtonArgsFunctionType | {
94
+ [x: string]: unknown;
95
+ url: string;
96
+ };
97
+ authorityCode?: string | undefined;
98
+ attrs?: GlobalPageLayoutTypes.RecordString | undefined;
99
+ icon?: {
100
+ type: string;
101
+ size: number;
102
+ color?: string | undefined;
103
+ } | undefined;
104
+ emit?: boolean | undefined;
105
+ emitKey?: string | undefined;
106
+ showMessage?: boolean | undefined;
107
+ checkBefore?: boolean | undefined;
108
+ confirm?: {
109
+ title: string;
110
+ content: string;
111
+ } | undefined;
112
+ dropdown?: boolean | undefined;
113
+ isExistFrozenSource?: boolean | undefined;
114
+ isExistFrozenSourceUrl?: string | undefined;
115
+ isExistFrozenSourceParams?: ((pageData: GlobalPageLayoutTypes.RecordString) => GlobalPageLayoutTypes.RecordString) | undefined;
116
+ disabled?: ((pageData: GlobalPageLayoutTypes.RecordString) => boolean) | undefined;
117
+ handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
118
+ handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
119
+ callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
87
120
  }[] | undefined;
88
121
  extend?: {
89
122
  [x: string]: any;
@@ -1,4 +1,5 @@
1
1
  import type { SizeType, VxeTableDataRow, VxePagerPropTypes, VxeColumnSlotTypes, SlotVNodeType, VxeColumnPropTypes, VxeTablePropTypes, VxeTooltipPropTypes, VxeTableDefines, VxeTableConstructor, VxeTablePrivateMethods, VxeGridConstructor, VxeTableProDefines, VxeGridPropTypes, VxeButtonPropTypes, VxeToolbarPropTypes, VxeFormPropTypes, VxeFormItemPropTypes, VxeFormItemProps, FormItemTitleRenderParams, FormItemContentRenderParams } from 'vxe-table';
2
+ import type { FileDataType } from '@qqt-product/ui/dist/lib/components/upload-file';
2
3
  import * as customConfigEdits from '../../../utils/global.types';
3
4
  import type { DefineComponent, Ref, ComponentOptionsBase, VNode, RendererNode, RendererElement, Slot, ComponentInternalInstance, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, ComponentPublicInstance } from 'vue';
4
5
  import type { GlobalPageLayoutTypes } from '@qqt-product/ui';
@@ -84,6 +85,38 @@ declare const _sfc_main: DefineComponent<{
84
85
  handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
85
86
  handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
86
87
  callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
88
+ }[] | {
89
+ onConfirmBeforeUpload?: ((formData: FileDataType) => boolean) | undefined;
90
+ title: string;
91
+ i18nKey?: string | undefined;
92
+ key: string | symbol;
93
+ args: GlobalPageLayoutTypes.PageButtonArgsFunctionType | {
94
+ [x: string]: unknown;
95
+ url: string;
96
+ };
97
+ authorityCode?: string | undefined;
98
+ attrs?: GlobalPageLayoutTypes.RecordString | undefined;
99
+ icon?: {
100
+ type: string;
101
+ size: number;
102
+ color?: string | undefined;
103
+ } | undefined;
104
+ emit?: boolean | undefined;
105
+ emitKey?: string | undefined;
106
+ showMessage?: boolean | undefined;
107
+ checkBefore?: boolean | undefined;
108
+ confirm?: {
109
+ title: string;
110
+ content: string;
111
+ } | undefined;
112
+ dropdown?: boolean | undefined;
113
+ isExistFrozenSource?: boolean | undefined;
114
+ isExistFrozenSourceUrl?: string | undefined;
115
+ isExistFrozenSourceParams?: ((pageData: GlobalPageLayoutTypes.RecordString) => GlobalPageLayoutTypes.RecordString) | undefined;
116
+ disabled?: ((pageData: GlobalPageLayoutTypes.RecordString) => boolean) | undefined;
117
+ handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
118
+ handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
119
+ callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
87
120
  }[] | undefined;
88
121
  extend?: {
89
122
  [x: string]: any;
@@ -1,4 +1,5 @@
1
1
  import type { SizeType, VxeTableDataRow, VxePagerPropTypes, VxeColumnSlotTypes, SlotVNodeType, VxeColumnPropTypes, VxeTablePropTypes, VxeTooltipPropTypes, VxeTableDefines, VxeTableConstructor, VxeTablePrivateMethods, VxeGridConstructor, VxeTableProDefines, VxeGridPropTypes, VxeButtonPropTypes, VxeToolbarPropTypes, VxeFormPropTypes, VxeFormItemPropTypes, VxeFormItemProps, FormItemTitleRenderParams, FormItemContentRenderParams } from 'vxe-table';
2
+ import type { FileDataType } from '@qqt-product/ui/dist/lib/components/upload-file';
2
3
  import type { DefineComponent, ShallowRef, Ref, ComponentOptionsBase, VNode, RendererNode, RendererElement, Slot, ComponentInternalInstance, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, ComponentPublicInstance } from 'vue';
3
4
  import type { GlobalPageLayoutTypes } from '@qqt-product/ui';
4
5
  import * as customConfigEdits from '../../../utils/global.types';
@@ -84,6 +85,38 @@ declare const _sfc_main: DefineComponent<{
84
85
  handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
85
86
  handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
86
87
  callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
88
+ }[] | {
89
+ onConfirmBeforeUpload?: ((formData: FileDataType) => boolean) | undefined;
90
+ title: string;
91
+ i18nKey?: string | undefined;
92
+ key: string | symbol;
93
+ args: GlobalPageLayoutTypes.PageButtonArgsFunctionType | {
94
+ [x: string]: unknown;
95
+ url: string;
96
+ };
97
+ authorityCode?: string | undefined;
98
+ attrs?: GlobalPageLayoutTypes.RecordString | undefined;
99
+ icon?: {
100
+ type: string;
101
+ size: number;
102
+ color?: string | undefined;
103
+ } | undefined;
104
+ emit?: boolean | undefined;
105
+ emitKey?: string | undefined;
106
+ showMessage?: boolean | undefined;
107
+ checkBefore?: boolean | undefined;
108
+ confirm?: {
109
+ title: string;
110
+ content: string;
111
+ } | undefined;
112
+ dropdown?: boolean | undefined;
113
+ isExistFrozenSource?: boolean | undefined;
114
+ isExistFrozenSourceUrl?: string | undefined;
115
+ isExistFrozenSourceParams?: ((pageData: GlobalPageLayoutTypes.RecordString) => GlobalPageLayoutTypes.RecordString) | undefined;
116
+ disabled?: ((pageData: GlobalPageLayoutTypes.RecordString) => boolean) | undefined;
117
+ handleBefore?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
118
+ handleAfter?: ((args: GlobalPageLayoutTypes.ExposeWithPageButtons) => Promise<GlobalPageLayoutTypes.ExposeWithPageButtons>) | undefined;
119
+ callback?: ((payload: GlobalPageLayoutTypes.PageButtonPayload) => void) | undefined;
87
120
  }[] | undefined;
88
121
  extend?: {
89
122
  [x: string]: any;
@@ -0,0 +1,25 @@
1
+ import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
2
+ import { MapObjectNoneType } from '../../../utils/global.types';
3
+ import type { VxeTableDataRow, VxeGridPropTypes, VxeTableDefines } from 'vxe-table';
4
+ declare const _sfc_main: DefineComponent<{}, {}, {
5
+ visible: boolean;
6
+ loading: boolean;
7
+ confirmLoading: boolean;
8
+ inputType: string;
9
+ dataSource: string;
10
+ keyWord: string;
11
+ columns: VxeTableDefines.ColumnOptions<VxeTableDataRow>[];
12
+ url: string;
13
+ queryParams: {};
14
+ tableData: never[];
15
+ tablePage: VxeGridPropTypes.PagerConfig;
16
+ }, {}, {
17
+ hanldeRadioChange(e: MapObjectNoneType): void;
18
+ loadData(): void;
19
+ open(): void;
20
+ close(): void;
21
+ selectedOk(): void;
22
+ handlePageChange({ currentPage, pageSize }: MapObjectNoneType): void;
23
+ onSearch(keyWord: string): void;
24
+ }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
25
+ export default _sfc_main;
@@ -0,0 +1,31 @@
1
+ import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
2
+ declare const _sfc_main: DefineComponent<{
3
+ currentEditRow: {
4
+ type: ObjectConstructor;
5
+ default(): {};
6
+ };
7
+ openTure: {
8
+ type: BooleanConstructor;
9
+ default: boolean;
10
+ };
11
+ }, unknown, {
12
+ visible: boolean;
13
+ loading: boolean;
14
+ remoteJsFilePath: string;
15
+ modelLayout: string;
16
+ }, {}, {}, never, ComponentOptionsMixin, "update:openTure"[], "update:openTure", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
17
+ currentEditRow: {
18
+ type: ObjectConstructor;
19
+ default(): {};
20
+ };
21
+ openTure: {
22
+ type: BooleanConstructor;
23
+ default: boolean;
24
+ };
25
+ }>> & {
26
+ "onUpdate:openTure"?: ((...args: any[]) => any) | undefined;
27
+ }, {
28
+ openTure: boolean;
29
+ currentEditRow: Record<string, any>;
30
+ }, {}>;
31
+ export default _sfc_main;
@@ -0,0 +1,46 @@
1
+ import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
2
+ declare const _default: DefineComponent<{
3
+ value: {
4
+ type: StringConstructor;
5
+ default: string;
6
+ };
7
+ configData: {
8
+ type: ObjectConstructor;
9
+ default: () => {};
10
+ };
11
+ dictCode: {
12
+ type: StringConstructor;
13
+ default: string;
14
+ };
15
+ }, unknown, {
16
+ dataFormatOptions: string[];
17
+ dataFloatOptions: {
18
+ key: number;
19
+ value: string;
20
+ }[];
21
+ realVue: string;
22
+ }, {}, {
23
+ inputChange(e: Event): void;
24
+ selectChange(val: string | number): void;
25
+ floatChange(val: string | number): void;
26
+ }, ComponentOptionsMixin, ComponentOptionsMixin, "change"[], "change", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
27
+ value: {
28
+ type: StringConstructor;
29
+ default: string;
30
+ };
31
+ configData: {
32
+ type: ObjectConstructor;
33
+ default: () => {};
34
+ };
35
+ dictCode: {
36
+ type: StringConstructor;
37
+ default: string;
38
+ };
39
+ }>> & {
40
+ onChange?: ((...args: any[]) => any) | undefined;
41
+ }, {
42
+ value: string;
43
+ dictCode: string;
44
+ configData: Record<string, any>;
45
+ }, {}>;
46
+ export default _default;
@@ -0,0 +1,40 @@
1
+ import type { DefineComponent, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
2
+ declare const _default: DefineComponent<{
3
+ modelValue: {
4
+ type: StringConstructor;
5
+ default: string;
6
+ };
7
+ configData: {
8
+ type: ObjectConstructor;
9
+ default: () => {};
10
+ };
11
+ dictCode: {
12
+ type: StringConstructor;
13
+ default: string;
14
+ };
15
+ }, {
16
+ realVal: Ref<string>;
17
+ selectChange: (val: string | number) => void;
18
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "updateInfo" | "update:modelValue")[], "change" | "updateInfo" | "update:modelValue", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
19
+ modelValue: {
20
+ type: StringConstructor;
21
+ default: string;
22
+ };
23
+ configData: {
24
+ type: ObjectConstructor;
25
+ default: () => {};
26
+ };
27
+ dictCode: {
28
+ type: StringConstructor;
29
+ default: string;
30
+ };
31
+ }>> & {
32
+ onChange?: ((...args: any[]) => any) | undefined;
33
+ onUpdateInfo?: ((...args: any[]) => any) | undefined;
34
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
35
+ }, {
36
+ dictCode: string;
37
+ configData: Record<string, any>;
38
+ modelValue: string;
39
+ }, {}>;
40
+ export default _default;