@qqt-product/ui 8.0.0 → 8.0.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 (43) hide show
  1. package/dist/index.es.js +26317 -26198
  2. package/dist/index.umd.js +103 -103
  3. package/dist/lib/components/audit-modal/index.d.ts +1 -1
  4. package/dist/lib/components/audit-modal/src/audit-modal.vue.d.ts +1 -1
  5. package/dist/lib/components/audit-modal/src/component/addNodeHistoryModal.vue.d.ts +1 -1
  6. package/dist/lib/components/audit-modal/src/component/approvalOpinionModal.vue.d.ts +1 -1
  7. package/dist/lib/components/code-editor-model/src/code-editor-model.vue.d.ts +1 -1
  8. package/dist/lib/components/currency/index.d.ts +2 -2
  9. package/dist/lib/components/currency/src/currency.vue.d.ts +2 -2
  10. package/dist/lib/components/detail-page-layout/index.d.ts +1 -0
  11. package/dist/lib/components/detail-page-layout/src/detail-page-layout.vue.d.ts +1 -0
  12. package/dist/lib/components/edit-form/src/hook/use-callback-hook.d.ts +16 -14
  13. package/dist/lib/components/edit-page-layout/index.d.ts +1 -0
  14. package/dist/lib/components/edit-page-layout/src/edit-page-layout-types.d.ts +1 -0
  15. package/dist/lib/components/edit-page-layout/src/edit-page-layout.vue.d.ts +1 -0
  16. package/dist/lib/components/item-wrap/index.d.ts +1 -1
  17. package/dist/lib/components/item-wrap/src/item-wrap.vue.d.ts +1 -1
  18. package/dist/lib/components/ladder-price/index.d.ts +1 -1
  19. package/dist/lib/components/ladder-price/src/ladder-price.vue.d.ts +1 -1
  20. package/dist/lib/components/layout-buttons/index.d.ts +1 -0
  21. package/dist/lib/components/layout-buttons/src/layout-buttons.vue.d.ts +1 -0
  22. package/dist/lib/components/layout-pattern/index.d.ts +2 -1
  23. package/dist/lib/components/layout-pattern/src/hook/use-audit-button-hook.d.ts +1 -1
  24. package/dist/lib/components/layout-pattern/src/layout-pattern.vue.d.ts +2 -1
  25. package/dist/lib/components/list-page-layout/src/symbolNames.d.ts +2 -0
  26. package/dist/lib/components/page-layout/src/constant/symbol.d.ts +49 -49
  27. package/dist/lib/components/page-layout/src/hook/use-promise-step.d.ts +1 -0
  28. package/dist/lib/components/page-layout/src/hook/use-uid-hook.d.ts +4 -0
  29. package/dist/lib/components/page-layout/src/token.d.ts +2 -0
  30. package/dist/lib/components/rich-editor-model/index.d.ts +1 -1
  31. package/dist/lib/components/rich-editor-model/src/rich-editor-model.vue.d.ts +1 -1
  32. package/dist/lib/components/select-modal/index.d.ts +1 -1
  33. package/dist/lib/components/select-modal/src/select-modal.vue.d.ts +1 -1
  34. package/dist/lib/components/upload-file/index.d.ts +12 -2
  35. package/dist/lib/components/upload-file/src/upload-file-types.d.ts +5 -1
  36. package/dist/lib/components/upload-file/src/upload-file.vue.d.ts +12 -2
  37. package/dist/lib/components/upload-image/index.d.ts +1 -1
  38. package/dist/lib/components/upload-image/src/upload-image.vue.d.ts +1 -1
  39. package/dist/lib/utils/ConstantManager.d.ts +10 -0
  40. package/dist/lib/utils/event.d.ts +1 -0
  41. package/dist/lib/utils/use-create-link-hook.d.ts +1 -1
  42. package/dist/style.css +1 -1
  43. package/package.json +8 -8
@@ -197,13 +197,13 @@ declare const _default: SFCWithInstall<DefineComponent<{
197
197
  onChange?: ((...args: any[]) => any) | undefined;
198
198
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
199
199
  }, {
200
- readonly disabled: boolean;
201
200
  readonly onChange: ((value: string) => void) | ((value: string) => void)[];
202
201
  readonly businessType: string;
203
202
  readonly accept: string;
204
203
  readonly multiple: boolean;
205
204
  readonly value: string;
206
205
  readonly 'onUpdate:value': ((value: string) => void) | ((value: string) => void)[];
206
+ readonly disabled: boolean;
207
207
  readonly actionRoutePath: string;
208
208
  readonly canRemove: boolean;
209
209
  readonly limit: number;
@@ -193,13 +193,13 @@ declare const _sfc_main: DefineComponent<{
193
193
  onChange?: ((...args: any[]) => any) | undefined;
194
194
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
195
195
  }, {
196
- readonly disabled: boolean;
197
196
  readonly onChange: ((value: string) => void) | ((value: string) => void)[];
198
197
  readonly businessType: string;
199
198
  readonly accept: string;
200
199
  readonly multiple: boolean;
201
200
  readonly value: string;
202
201
  readonly 'onUpdate:value': ((value: string) => void) | ((value: string) => void)[];
202
+ readonly disabled: boolean;
203
203
  readonly actionRoutePath: string;
204
204
  readonly canRemove: boolean;
205
205
  readonly limit: number;
@@ -0,0 +1,10 @@
1
+ declare class ConstantManager {
2
+ private static instance;
3
+ private constants;
4
+ private constructor();
5
+ static getInstance(symbolNames?: string[]): ConstantManager;
6
+ private setConstants;
7
+ getConstant(key: string): symbol;
8
+ getAllConstant(): Record<string, symbol>;
9
+ }
10
+ export default ConstantManager;
@@ -67,6 +67,7 @@ export type Events = {
67
67
  [SYMBOL_AUDIT_PRINT]: PageButton;
68
68
  [SYMBOL_AUDIT_ADD_NODE_HISTORY]: PageButton;
69
69
  [SYMBOL_AUDIT_CHAT]: PageButton;
70
+ [proName: string | symbol]: any;
70
71
  };
71
72
  declare const emitter: Emitter<Events>;
72
73
  export default emitter;
@@ -17,7 +17,7 @@ interface LinkClickParams {
17
17
  callback: (args: LinkClickCallbackParams) => void;
18
18
  [key: string]: any;
19
19
  }
20
- export default function (): {
20
+ export default function (Request: ObjectMap): {
21
21
  createLink: (fieldInfo: ObjectMap, type: Type, callback: (args: LinkClickCallbackParams) => void, customLinkConfig?: LinkParams) => void;
22
22
  linkClick: ({ title, row, column, formData, linkConfig, fieldInfo, callback }: LinkClickParams, type: Type) => void;
23
23
  };