@qqt-product/ui 12.0.5 → 12.0.7

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.
@@ -134,7 +134,6 @@ export interface PageButtonDeleteFileRow extends Omit<PageButton, 'args'> {
134
134
  };
135
135
  groupCode: string;
136
136
  ids: string[];
137
- attachmentIds?: string[];
138
137
  rows: RecordString[];
139
138
  }
140
139
  export type ValidateStatus = 'success' | 'fail' | 'unset';
@@ -344,7 +343,6 @@ export type VxePayload = {
344
343
  setItemRequiredOrDisabled?: SetItemRequiredOrDisabled;
345
344
  Decimal?: typeof Decimal;
346
345
  topEmit?: () => void;
347
- selectedOptions?: CascaderProps['options'];
348
346
  };
349
347
  export interface UploadExtend {
350
348
  businessType?: string;
@@ -1,7 +1,7 @@
1
1
  import type { SrmI18n } from '../../utils/type';
2
2
  import type { VxeTableProps, VxeTableDataRow, VxeGridInstance } from 'vxe-table';
3
3
  import type { RequestMethod, ModalConfig, ModalType, OpenFuncType, TablePage } from './src/field-select-modal-types';
4
- import type { DefineComponent, PropType, ComputedRef, Ref, ShallowRef, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
4
+ import type { DefineComponent, PropType, ComputedRef, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
5
5
  import type { SFCWithInstall } from '@qqt-product/utils/dist/modules/withInstall';
6
6
  import QFieldSelectModal from './src/field-select-modal.vue';
7
7
  export * from './src/field-select-modal-types';
@@ -100,7 +100,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
100
100
  getPagerConfig: ComputedRef<any>;
101
101
  modalTitle: Ref<string>;
102
102
  placeholder: Ref<string>;
103
- open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm, showCheckItem, checkItemParams }: OpenFuncType) => void;
103
+ open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm }: OpenFuncType) => void;
104
104
  close: () => void;
105
105
  onSearch: () => void;
106
106
  handlePageChange: ({ currentPage, pageSize }: TablePage) => void;
@@ -113,9 +113,6 @@ declare const _default: SFCWithInstall<DefineComponent<{
113
113
  type: string;
114
114
  }) => Promise<never> | undefined;
115
115
  restParams: () => void;
116
- isShowCheckItem: ShallowRef<boolean>;
117
- checktableData: Ref<Record<string, unknown>[]>;
118
- onCheckboxChange: () => void;
119
116
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
120
117
  modalTitle: {
121
118
  type: StringConstructor;
@@ -20,9 +20,6 @@ export interface OpenFuncType {
20
20
  columns: Columns[];
21
21
  selectModal?: ModalType;
22
22
  requestMethod?: RequestMethod;
23
- showCheckItem?: boolean;
24
- checkItemField?: string;
25
- checkItemParams?: object;
26
23
  }
27
24
  interface BasePage {
28
25
  total?: number;
@@ -1,5 +1,5 @@
1
1
  import type { SrmI18n } from '../../../utils/type';
2
- import type { DefineComponent, PropType, Ref, ShallowRef, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, ComputedRef } from 'vue';
2
+ import type { DefineComponent, PropType, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, ComputedRef } from 'vue';
3
3
  import type { RequestMethod, ModalConfig, ModalType, OpenFuncType, TablePage } from './field-select-modal-types';
4
4
  import type { VxeTableProps, VxeTableDataRow, VxeGridInstance } from 'vxe-table';
5
5
  declare const _sfc_main: DefineComponent<{
@@ -96,7 +96,7 @@ declare const _sfc_main: DefineComponent<{
96
96
  getPagerConfig: ComputedRef<any>;
97
97
  modalTitle: Ref<string>;
98
98
  placeholder: Ref<string>;
99
- open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm, showCheckItem, checkItemParams }: OpenFuncType) => void;
99
+ open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm }: OpenFuncType) => void;
100
100
  close: () => void;
101
101
  onSearch: () => void;
102
102
  handlePageChange: ({ currentPage, pageSize }: TablePage) => void;
@@ -109,9 +109,6 @@ declare const _sfc_main: DefineComponent<{
109
109
  type: string;
110
110
  }) => Promise<never> | undefined;
111
111
  restParams: () => void;
112
- isShowCheckItem: ShallowRef<boolean>;
113
- checktableData: Ref<Record<string, unknown>[]>;
114
- onCheckboxChange: () => void;
115
112
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
116
113
  modalTitle: {
117
114
  type: StringConstructor;
@@ -2,7 +2,7 @@ import type { VxeTableProps, VxeTableDataRow, VxeGridInstance } from 'vxe-table'
2
2
  import type { RequestMethod, ModalConfig, ModalType, OpenFuncType, TablePage } from '../field-select-modal';
3
3
  import type { SrmI18n } from '../../utils/type';
4
4
  import type { Config, RecordString, Extend } from './src/select-modal-types';
5
- import type { DefineComponent, PropType, ComputedRef, Ref, ComponentInternalInstance, VNodeRef, VNode, RendererNode, RendererElement, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes, ShallowRef, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
5
+ import type { DefineComponent, PropType, ComputedRef, Ref, ComponentInternalInstance, VNodeRef, VNode, RendererNode, RendererElement, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
6
6
  import type { SFCWithInstall } from '@qqt-product/utils/dist/modules/withInstall';
7
7
  import QSelectModal from './src/select-modal.vue';
8
8
  export * from './src/select-modal-types';
@@ -200,7 +200,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
200
200
  getPagerConfig: ComputedRef<any>;
201
201
  modalTitle: Ref<string>;
202
202
  placeholder: Ref<string>;
203
- open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm, showCheckItem, checkItemParams }: OpenFuncType) => void;
203
+ open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm }: OpenFuncType) => void;
204
204
  close: () => void;
205
205
  onSearch: () => void;
206
206
  handlePageChange: ({ currentPage, pageSize }: TablePage) => void;
@@ -213,9 +213,6 @@ declare const _default: SFCWithInstall<DefineComponent<{
213
213
  type: string;
214
214
  }) => Promise<never> | undefined;
215
215
  restParams: () => void;
216
- isShowCheckItem: ShallowRef<boolean>;
217
- checktableData: Ref<Record<string, unknown>[]>;
218
- onCheckboxChange: () => void;
219
216
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
220
217
  modalTitle: string;
221
218
  apiUrls: string;
@@ -339,7 +336,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
339
336
  getPagerConfig: ComputedRef<any>;
340
337
  modalTitle: Ref<string>;
341
338
  placeholder: Ref<string>;
342
- open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm, showCheckItem, checkItemParams }: OpenFuncType) => void;
339
+ open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm }: OpenFuncType) => void;
343
340
  close: () => void;
344
341
  onSearch: () => void;
345
342
  handlePageChange: ({ currentPage, pageSize }: TablePage) => void;
@@ -352,9 +349,6 @@ declare const _default: SFCWithInstall<DefineComponent<{
352
349
  type: string;
353
350
  }) => Promise<never> | undefined;
354
351
  restParams: () => void;
355
- isShowCheckItem: ShallowRef<boolean>;
356
- checktableData: Ref<Record<string, unknown>[]>;
357
- onCheckboxChange: () => void;
358
352
  }> & {} & ComponentCustomProperties & {}) | undefined>;
359
353
  openSelectModal: () => void;
360
354
  onChange: (checkedValues: RecordString[]) => void;
@@ -30,8 +30,6 @@ export interface Extend {
30
30
  modalConfigs?: unknown[];
31
31
  modalParams?: ModalParams;
32
32
  params?: ModalParams;
33
- checkItemParams?: ModalParams;
34
- showCheckItem?: boolean;
35
33
  selectModal?: ModalType;
36
34
  requestMethod?: RequestMethod;
37
35
  isTree?: boolean;
@@ -1,7 +1,7 @@
1
1
  import type { VxeTableProps, VxeTableDataRow, VxeGridInstance } from 'vxe-table';
2
2
  import type { RequestMethod, ModalConfig, ModalType, OpenFuncType, TablePage } from './../../field-select-modal';
3
3
  import type { SrmI18n } from '../../../utils/type';
4
- import type { DefineComponent, PropType, Ref, ComponentInternalInstance, VNodeRef, VNode, RendererNode, RendererElement, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes, ShallowRef, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComputedRef } from 'vue';
4
+ import type { DefineComponent, PropType, Ref, ComponentInternalInstance, VNodeRef, VNode, RendererNode, RendererElement, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComputedRef } from 'vue';
5
5
  import type { Config, RecordString, Extend } from './select-modal-types';
6
6
  declare const _sfc_main: DefineComponent<{
7
7
  value: {
@@ -196,7 +196,7 @@ declare const _sfc_main: DefineComponent<{
196
196
  getPagerConfig: ComputedRef<any>;
197
197
  modalTitle: Ref<string>;
198
198
  placeholder: Ref<string>;
199
- open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm, showCheckItem, checkItemParams }: OpenFuncType) => void;
199
+ open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm }: OpenFuncType) => void;
200
200
  close: () => void;
201
201
  onSearch: () => void;
202
202
  handlePageChange: ({ currentPage, pageSize }: TablePage) => void;
@@ -209,9 +209,6 @@ declare const _sfc_main: DefineComponent<{
209
209
  type: string;
210
210
  }) => Promise<never> | undefined;
211
211
  restParams: () => void;
212
- isShowCheckItem: ShallowRef<boolean>;
213
- checktableData: Ref<Record<string, unknown>[]>;
214
- onCheckboxChange: () => void;
215
212
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
216
213
  modalTitle: string;
217
214
  apiUrls: string;
@@ -335,7 +332,7 @@ declare const _sfc_main: DefineComponent<{
335
332
  getPagerConfig: ComputedRef<any>;
336
333
  modalTitle: Ref<string>;
337
334
  placeholder: Ref<string>;
338
- open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm, showCheckItem, checkItemParams }: OpenFuncType) => void;
335
+ open: ({ url, params, columns: col, selectModal: sm, requestMethod: rm }: OpenFuncType) => void;
339
336
  close: () => void;
340
337
  onSearch: () => void;
341
338
  handlePageChange: ({ currentPage, pageSize }: TablePage) => void;
@@ -348,9 +345,6 @@ declare const _sfc_main: DefineComponent<{
348
345
  type: string;
349
346
  }) => Promise<never> | undefined;
350
347
  restParams: () => void;
351
- isShowCheckItem: ShallowRef<boolean>;
352
- checktableData: Ref<Record<string, unknown>[]>;
353
- onCheckboxChange: () => void;
354
348
  }> & {} & ComponentCustomProperties & {}) | undefined>;
355
349
  openSelectModal: () => void;
356
350
  onChange: (checkedValues: RecordString[]) => void;