@qqt-product/ui 0.0.13 → 0.0.15

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 (193) hide show
  1. package/dist/index.es.js +123349 -77525
  2. package/dist/index.umd.js +254 -15296
  3. package/dist/lib/components/audit-modal/index.d.ts +324 -0
  4. package/dist/lib/components/audit-modal/src/audit-modal-type.d.ts +65 -0
  5. package/dist/lib/components/audit-modal/src/audit-modal.vue.d.ts +320 -0
  6. package/dist/lib/components/audit-modal/src/component/addNodeHistoryModal.vue.d.ts +675 -0
  7. package/dist/lib/components/audit-modal/src/component/approvalOpinionModal.vue.d.ts +406 -0
  8. package/dist/lib/components/audit-modal/src/component/field-select-modal-types.d.ts +93 -0
  9. package/dist/lib/components/audit-modal/src/component/field-select-modal.vue.d.ts +163 -0
  10. package/dist/lib/components/audit-modal/src/component/use-field-select-modal.d.ts +6 -0
  11. package/dist/lib/components/audit-modal/src/hook/list-slot-hook.d.ts +16 -0
  12. package/dist/lib/components/audit-modal/src/hook/use-audit-config-hook.d.ts +6 -0
  13. package/dist/lib/components/audit-modal/src/hook/use-field-select-modal-hook.d.ts +9 -0
  14. package/dist/lib/components/breadcrumb/index.d.ts +1 -1
  15. package/dist/lib/components/breadcrumb/src/breadcrumb.vue.d.ts +1 -1
  16. package/dist/lib/components/card-list-layout/index.d.ts +8 -18
  17. package/dist/lib/components/card-list-layout/src/card-content.vue.d.ts +3 -3
  18. package/dist/lib/components/card-list-layout/src/cardItem.vue.d.ts +5 -5
  19. package/dist/lib/components/card-list-layout/src/index.vue.d.ts +8 -18
  20. package/dist/lib/components/card-list-layout/src/sidebar.vue.d.ts +1 -1
  21. package/dist/lib/components/cascader/index.d.ts +12 -10
  22. package/dist/lib/components/cascader/src/cascader.vue.d.ts +12 -10
  23. package/dist/lib/components/checkbox/index.d.ts +6 -6
  24. package/dist/lib/components/checkbox/src/checkbox.vue.d.ts +6 -6
  25. package/dist/lib/components/code-editor-model/src/code-editor-model.vue.d.ts +121 -0
  26. package/dist/lib/components/collapse-transition/index.d.ts +1 -1
  27. package/dist/lib/components/collapse-transition/src/collapse-transition.vue.d.ts +1 -1
  28. package/dist/lib/components/countdown/index.d.ts +122 -0
  29. package/dist/lib/components/countdown/src/countdown-types.d.ts +87 -0
  30. package/dist/lib/components/countdown/src/countdown.d.ts +118 -0
  31. package/dist/lib/components/countdown/src/use-countdown.d.ts +2 -0
  32. package/dist/lib/components/coutdown/index.d.ts +4 -14
  33. package/dist/lib/components/coutdown/src/coutdown.d.ts +0 -8
  34. package/dist/lib/components/coutdown/src/coutdown.vue.d.ts +4 -22
  35. package/dist/lib/components/currency/index.d.ts +2 -2
  36. package/dist/lib/components/currency/src/currency.vue.d.ts +2 -2
  37. package/dist/lib/components/detail-form/index.d.ts +27 -6
  38. package/dist/lib/components/detail-form/src/detail-form.vue.d.ts +27 -7
  39. package/dist/lib/components/detail-grid/index.d.ts +337 -288
  40. package/dist/lib/components/detail-grid/src/detail-grid.vue.d.ts +336 -288
  41. package/dist/lib/components/detail-grid/src/hook/use-grid-config-hook.d.ts +2 -2
  42. package/dist/lib/components/detail-page-layout/index.d.ts +21 -4
  43. package/dist/lib/components/detail-page-layout/src/detail-page-layout.vue.d.ts +20 -4
  44. package/dist/lib/components/edit-form/index.d.ts +31 -6
  45. package/dist/lib/components/edit-form/src/edit-form-types.d.ts +4 -0
  46. package/dist/lib/components/edit-form/src/edit-form.vue.d.ts +30 -6
  47. package/dist/lib/components/edit-form/src/hook/use-callback-hook.d.ts +7 -1
  48. package/dist/lib/components/edit-grid/index.d.ts +338 -289
  49. package/dist/lib/components/edit-grid/src/edit-grid-types.d.ts +2 -2
  50. package/dist/lib/components/edit-grid/src/edit-grid.vue.d.ts +337 -289
  51. package/dist/lib/components/edit-grid/src/hook/use-grid-config-hook.d.ts +4 -4
  52. package/dist/lib/components/edit-page-layout/index.d.ts +20 -4
  53. package/dist/lib/components/edit-page-layout/src/edit-page-layout-types.d.ts +151 -26
  54. package/dist/lib/components/edit-page-layout/src/edit-page-layout.vue.d.ts +20 -4
  55. package/dist/lib/components/edit-page-layout/src/types.d.ts +1 -1
  56. package/dist/lib/components/editor/index.d.ts +23 -9
  57. package/dist/lib/components/editor/src/index.vue.d.ts +23 -9
  58. package/dist/lib/components/field-select-modal/index.d.ts +29 -13
  59. package/dist/lib/components/field-select-modal/src/field-select-modal-types.d.ts +11 -4
  60. package/dist/lib/components/field-select-modal/src/field-select-modal.vue.d.ts +29 -13
  61. package/dist/lib/components/flow-view/index.d.ts +121 -0
  62. package/dist/lib/components/flow-view/src/flow-view-modal-types.d.ts +60 -0
  63. package/dist/lib/components/flow-view/src/flow-view.d.ts +118 -0
  64. package/dist/lib/components/flow-view/src/use-flow-view-modal.d.ts +2 -0
  65. package/dist/lib/components/import-modal/index.d.ts +90 -0
  66. package/dist/lib/components/import-modal/src/import-modal-types.d.ts +28 -0
  67. package/dist/lib/components/import-modal/src/import-modal.vue.d.ts +86 -0
  68. package/dist/lib/components/index.d.ts +11 -2
  69. package/dist/lib/components/item-wrap/index.d.ts +4 -4
  70. package/dist/lib/components/item-wrap/src/item-wrap.vue.d.ts +4 -4
  71. package/dist/lib/components/ladder-price/index.d.ts +58 -0
  72. package/dist/lib/components/ladder-price/src/LadderNotPriceModal.vue.d.ts +35 -0
  73. package/dist/lib/components/ladder-price/src/LadderPriceModal.vue.d.ts +38 -0
  74. package/dist/lib/components/ladder-price/src/ladder-not-price-modal-types.d.ts +16 -0
  75. package/dist/lib/components/ladder-price/src/ladder-price-modal-types.d.ts +15 -0
  76. package/dist/lib/components/ladder-price/src/ladder-price-types.d.ts +35 -0
  77. package/dist/lib/components/ladder-price/src/ladder-price.vue.d.ts +55 -0
  78. package/dist/lib/components/ladder-price/src/use-ladder-not-price-modal.d.ts +6 -0
  79. package/dist/lib/components/ladder-price/src/use-ladder-price.d.ts +6 -0
  80. package/dist/lib/components/layout/index.d.ts +2 -2
  81. package/dist/lib/components/layout/src/header/index.vue.d.ts +11 -11
  82. package/dist/lib/components/layout/src/header/navRight/customMessage.vue.d.ts +2 -2
  83. package/dist/lib/components/layout/src/header/navRight/customPerson.vue.d.ts +1 -1
  84. package/dist/lib/components/layout/src/header/navRight/index.vue.d.ts +9 -9
  85. package/dist/lib/components/layout/src/header/navRight/langSwitch.vue.d.ts +1 -1
  86. package/dist/lib/components/layout/src/header/navRight/rightTool.vue.d.ts +4 -4
  87. package/dist/lib/components/layout/src/header/navRight/settingDrawer.vue.d.ts +2 -2
  88. package/dist/lib/components/layout/src/index.vue.d.ts +2 -2
  89. package/dist/lib/components/layout/src/menu/deepCycleSubMenu.vue.d.ts +1 -1
  90. package/dist/lib/components/layout/src/menu/menu.vue.d.ts +2 -2
  91. package/dist/lib/components/layout/src/menu/secondLevelMenu.vue.d.ts +2 -2
  92. package/dist/lib/components/layout/src/menu/subSecondMenu.vue.d.ts +1 -1
  93. package/dist/lib/components/layout/src/sider/index.vue.d.ts +1 -1
  94. package/dist/lib/components/layout/src/sider/logo.vue.d.ts +2 -2
  95. package/dist/lib/components/layout/src/sider/search.vue.d.ts +1 -1
  96. package/dist/lib/components/layout/src/types.d.ts +1 -0
  97. package/dist/lib/components/layout-anchor/index.d.ts +3 -2
  98. package/dist/lib/components/layout-anchor/src/layout-auchor.vue.d.ts +3 -2
  99. package/dist/lib/components/layout-buttons/index.d.ts +5 -4
  100. package/dist/lib/components/layout-buttons/src/layout-buttons.vue.d.ts +3 -3
  101. package/dist/lib/components/layout-pattern/index.d.ts +13 -3
  102. package/dist/lib/components/layout-pattern/src/components/vertical.vue.d.ts +156 -7
  103. package/dist/lib/components/layout-pattern/src/hook/use-audit-button-hook.d.ts +46 -0
  104. package/dist/lib/components/layout-pattern/src/layout-pattern.vue.d.ts +13 -3
  105. package/dist/lib/components/list-page-layout/index.d.ts +80 -18
  106. package/dist/lib/components/list-page-layout/src/components/common/columnSetting/columnSetting.vue.d.ts +25 -24
  107. package/dist/lib/components/list-page-layout/src/components/common/edit-nav-modal/edit-nav-modal.vue.d.ts +1 -1
  108. package/dist/lib/components/list-page-layout/src/components/common/help-text-modal/help-text-modal.vue.d.ts +1 -1
  109. package/dist/lib/components/list-page-layout/src/components/common/import-modal/import-modal.vue.d.ts +3 -1
  110. package/dist/lib/components/list-page-layout/src/components/common/record-modal/record-modal.vue.d.ts +646 -556
  111. package/dist/lib/components/list-page-layout/src/components/list-content/events-helper.d.ts +1 -3
  112. package/dist/lib/components/list-page-layout/src/components/list-content/list-content.vue.d.ts +14 -12
  113. package/dist/lib/components/list-page-layout/src/components/list-content-buttons/list-content-buttons.vue.d.ts +1 -1
  114. package/dist/lib/components/list-page-layout/src/components/list-header/hooks/use-callback-hook.d.ts +3 -0
  115. package/dist/lib/components/list-page-layout/src/components/list-header/list-header.vue.d.ts +5 -3
  116. package/dist/lib/components/list-page-layout/src/components/list-header/module/query/index.vue.d.ts +9 -3
  117. package/dist/lib/components/list-page-layout/src/components/list-header/module/quick-nav/index.vue.d.ts +2 -1
  118. package/dist/lib/components/list-page-layout/src/components/list-header/module/searchExtend/index.vue.d.ts +14 -6
  119. package/dist/lib/components/list-page-layout/src/components/list-header/module/tabs/index.vue.d.ts +1 -1
  120. package/dist/lib/components/list-page-layout/src/hooks/auth-button.d.ts +4 -0
  121. package/dist/lib/components/list-page-layout/src/hooks/get-columns-hook.d.ts +1 -1
  122. package/dist/lib/components/list-page-layout/src/hooks/list-slot-hook.d.ts +10 -4
  123. package/dist/lib/components/list-page-layout/src/hooks/use-button-function-hook.d.ts +8 -0
  124. package/dist/lib/components/list-page-layout/src/layout.vue.d.ts +78 -17
  125. package/dist/lib/components/list-page-layout/src/list-page-layout-types.d.ts +62 -10
  126. package/dist/lib/components/list-page-layout/src/tokens.d.ts +2 -2
  127. package/dist/lib/components/list-page-layout/src/utils/gridConfig.d.ts +6 -21
  128. package/dist/lib/components/list-page-layout/src/utils/index.d.ts +2 -0
  129. package/dist/lib/components/page-layout/index.d.ts +3 -2
  130. package/dist/lib/components/page-layout/src/constant/buttons.d.ts +28 -2
  131. package/dist/lib/components/page-layout/src/constant/symbol.d.ts +35 -0
  132. package/dist/lib/components/page-layout/src/hook/use-merge-defaultValues-hook.d.ts +1 -1
  133. package/dist/lib/components/page-layout/src/hook/use-promise-step.d.ts +19 -9
  134. package/dist/lib/components/page-layout/src/page-layout.vue.d.ts +1 -1
  135. package/dist/lib/components/radio/index.d.ts +6 -6
  136. package/dist/lib/components/radio/src/radio.vue.d.ts +6 -6
  137. package/dist/lib/components/relation-graph/src/relation-graph-types.d.ts +23 -0
  138. package/dist/lib/components/remote-select/index.d.ts +31 -72
  139. package/dist/lib/components/remote-select/src/remote-select-types.d.ts +44 -28
  140. package/dist/lib/components/remote-select/src/remote-select.vue.d.ts +32 -73
  141. package/dist/lib/components/sale-template/index.d.ts +99 -0
  142. package/dist/lib/components/sale-template/src/sale-template-types.d.ts +41 -0
  143. package/dist/lib/components/sale-template/src/sale-template.vue.d.ts +95 -0
  144. package/dist/lib/components/sale-template/src/use-sale-template.d.ts +2 -0
  145. package/dist/lib/components/select/index.d.ts +9 -9
  146. package/dist/lib/components/select/src/select-types.d.ts +5 -1
  147. package/dist/lib/components/select/src/select.vue.d.ts +9 -9
  148. package/dist/lib/components/select-modal/index.d.ts +118 -76
  149. package/dist/lib/components/select-modal/src/select-modal-types.d.ts +24 -4
  150. package/dist/lib/components/select-modal/src/select-modal.vue.d.ts +118 -76
  151. package/dist/lib/components/select-template/index.d.ts +92 -0
  152. package/dist/lib/components/select-template/src/select-template-type.d.ts +32 -0
  153. package/dist/lib/components/select-template/src/select-template.vue.d.ts +88 -0
  154. package/dist/lib/components/switch/index.d.ts +2 -2
  155. package/dist/lib/components/switch/src/switch.vue.d.ts +2 -2
  156. package/dist/lib/components/tree-select/index.d.ts +10 -9
  157. package/dist/lib/components/tree-select/src/tree-select-types.d.ts +7 -1
  158. package/dist/lib/components/tree-select/src/tree-select.vue.d.ts +10 -9
  159. package/dist/lib/components/upload-file/index.d.ts +30 -31
  160. package/dist/lib/components/upload-file/src/hook/use-file-column-hook.d.ts +29 -16
  161. package/dist/lib/components/upload-file/src/hook/use-operation-column-button-hook.d.ts +1 -1
  162. package/dist/lib/components/upload-file/src/upload-file-types.d.ts +19 -28
  163. package/dist/lib/components/upload-file/src/upload-file.vue.d.ts +28 -29
  164. package/dist/lib/components/upload-file-vxe/index.d.ts +78 -0
  165. package/dist/lib/components/upload-file-vxe/src/upload-file-vxe-types.d.ts +38 -0
  166. package/dist/lib/components/upload-file-vxe/src/upload-file-vxe.vue.d.ts +75 -0
  167. package/dist/lib/components/upload-image/index.d.ts +3 -3
  168. package/dist/lib/components/upload-image/src/upload-image.vue.d.ts +3 -3
  169. package/dist/lib/components/useChart/index.d.ts +11 -0
  170. package/dist/lib/components/useChart/lib.d.ts +2 -0
  171. package/dist/lib/components/useChart/types.d.ts +21 -0
  172. package/dist/lib/components/vxe-select/index.d.ts +24 -6
  173. package/dist/lib/components/vxe-select/src/vxe-select-types.d.ts +7 -1
  174. package/dist/lib/components/vxe-select/src/vxe-select.vue.d.ts +24 -6
  175. package/dist/lib/index.d.ts +5 -3
  176. package/dist/lib/utils/event.d.ts +35 -2
  177. package/dist/style.css +1 -6
  178. package/package.json +35 -29
  179. package/dist/components/ComponentsDemo.vue.d.ts +0 -13
  180. package/dist/components/EditPage.vue.d.ts +0 -6011
  181. package/dist/components/PreviewList.vue.d.ts +0 -218
  182. package/dist/components/hook/use-field-select-modal-hook.d.ts +0 -288
  183. package/dist/components/login.vue.d.ts +0 -19
  184. package/dist/components/mock.d.ts +0 -260
  185. package/dist/components/mockList.d.ts +0 -44
  186. package/dist/lib/components/codeEditorModel/index.d.ts +0 -187
  187. package/dist/lib/components/codeEditorModel/src/codeEditorModel.vue.d.ts +0 -184
  188. package/dist/lib/components/list-page-layout/src/components/common/add-modal/add-modal.vue.d.ts +0 -21
  189. package/dist/lib/components/upload-file/src/hook/use-operation-column-hook.d.ts +0 -15
  190. package/dist/router/index.d.ts +0 -4
  191. package/dist/stores/user.d.ts +0 -25
  192. package/dist/utils/qApiPlugin.d.ts +0 -6
  193. package/dist/views/dashboard/workspace.vue.d.ts +0 -6972
@@ -22,8 +22,8 @@ declare const _sfc_main: DefineComponent<{
22
22
  classes: ComputedRef<{
23
23
  [key: string]: string | boolean;
24
24
  }>;
25
- label: string;
26
- helpText: string;
25
+ label: Ref<string>;
26
+ helpText: Ref<string>;
27
27
  required: Ref<"0" | "1">;
28
28
  disabled: Ref<boolean>;
29
29
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
@@ -46,8 +46,8 @@ declare const _sfc_main: DefineComponent<{
46
46
  };
47
47
  }>>, {
48
48
  readonly disabled: boolean;
49
+ readonly label: string;
49
50
  readonly required: "0" | "1";
50
51
  readonly helpText: string;
51
- readonly label: string;
52
- }>;
52
+ }, {}>;
53
53
  export default _sfc_main;
@@ -0,0 +1,58 @@
1
+ import type { RecordStringNumber } from '../select-modal';
2
+ import type { Config, Row } from './src/ladder-price-types';
3
+ import type { DefineComponent, PropType, ComputedRef, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
4
+ import type { SFCWithInstall } from '@qqt-product/utils/dist/modules/withInstall';
5
+ import QLadderPrice from './src/ladder-price.vue';
6
+ declare const _default: SFCWithInstall<DefineComponent<{
7
+ value: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ config: {
12
+ type: PropType<Config>;
13
+ default: () => {};
14
+ };
15
+ isRow: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
19
+ row: {
20
+ type: PropType<Row>;
21
+ default(): {};
22
+ };
23
+ }, {
24
+ classes: ComputedRef<{
25
+ [x: string]: boolean;
26
+ }>;
27
+ value: Ref<string>;
28
+ config: Ref<Config>;
29
+ showModal: () => void;
30
+ clearInputValue: () => void;
31
+ ladderPriceModal: Ref<any>;
32
+ ladderNotPriceModal: Ref<any>;
33
+ handleOk: (itemList: RecordStringNumber[]) => void;
34
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
35
+ value: {
36
+ type: StringConstructor;
37
+ default: string;
38
+ };
39
+ config: {
40
+ type: PropType<Config>;
41
+ default: () => {};
42
+ };
43
+ isRow: {
44
+ type: BooleanConstructor;
45
+ default: boolean;
46
+ };
47
+ row: {
48
+ type: PropType<Row>;
49
+ default(): {};
50
+ };
51
+ }>>, {
52
+ row: Row;
53
+ value: string;
54
+ config: Config;
55
+ isRow: boolean;
56
+ }, {}>>;
57
+ export default _default;
58
+ export { QLadderPrice };
@@ -0,0 +1,35 @@
1
+ import type { DefineComponent, ComputedRef, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
2
+ import type { Row } from './ladder-not-price-modal-types';
3
+ declare const _sfc_main: DefineComponent<{
4
+ isEmit: {
5
+ type: BooleanConstructor;
6
+ default: boolean;
7
+ };
8
+ }, {
9
+ classes: ComputedRef<{
10
+ [x: string]: boolean;
11
+ }>;
12
+ modalVisible: Ref<boolean>;
13
+ ladderQuantity: Ref<number>;
14
+ tableData: Ref<Record<string, unknown>[]>;
15
+ gridOptions: any;
16
+ selectGrid: Ref<any>;
17
+ title: Ref<string>;
18
+ modalDefault: {
19
+ width: number;
20
+ showFooter: boolean;
21
+ showClose: boolean;
22
+ };
23
+ open: (row: Row, curFieldValue: string) => void;
24
+ addLadderQuantity: () => void;
25
+ deleteLadder: () => void;
26
+ setLadderOk: () => void;
27
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
28
+ isEmit: {
29
+ type: BooleanConstructor;
30
+ default: boolean;
31
+ };
32
+ }>>, {
33
+ isEmit: boolean;
34
+ }, {}>;
35
+ export default _sfc_main;
@@ -0,0 +1,38 @@
1
+ import type { DefineComponent, ComputedRef, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
2
+ import type { Row } from './ladder-price-modal-types';
3
+ declare const _sfc_main: DefineComponent<{
4
+ isEmit: {
5
+ type: BooleanConstructor;
6
+ default: boolean;
7
+ };
8
+ }, {
9
+ classes: ComputedRef<{
10
+ [x: string]: boolean;
11
+ }>;
12
+ modalVisible: Ref<boolean>;
13
+ ladderQuantity: Ref<number>;
14
+ tableData: Ref<Record<string, unknown>[]>;
15
+ selectGrid: Ref<any>;
16
+ gridOptions: any;
17
+ modalDefault: {
18
+ width: any;
19
+ showFooter: boolean;
20
+ showClose: boolean;
21
+ };
22
+ open: ({ row, columns, value }: {
23
+ row: Row;
24
+ columns: any;
25
+ value: string;
26
+ }) => void;
27
+ addLadderQuantity: () => void;
28
+ deleteLadder: () => void;
29
+ setLadderOk: () => void;
30
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
31
+ isEmit: {
32
+ type: BooleanConstructor;
33
+ default: boolean;
34
+ };
35
+ }>>, {
36
+ isEmit: boolean;
37
+ }, {}>;
38
+ export default _sfc_main;
@@ -0,0 +1,16 @@
1
+ import { ExtractPropTypes } from 'vue';
2
+ import type { FormFieldsItem } from '../../edit-page-layout';
3
+ export interface Columns {
4
+ type?: string;
5
+ field?: string;
6
+ title?: string;
7
+ align?: string;
8
+ fieldLabelI18nKey?: string;
9
+ width?: number;
10
+ [key: string]: unknown;
11
+ }
12
+ export interface Row extends FormFieldsItem {
13
+ taxCode: string;
14
+ }
15
+ export declare const ladderNotPriceModalProps: {};
16
+ export type LadderNotPriceModalProps = ExtractPropTypes<typeof ladderNotPriceModalProps>;
@@ -0,0 +1,15 @@
1
+ import { ExtractPropTypes } from 'vue';
2
+ import type { FormFieldsItem } from '../../edit-page-layout';
3
+ export interface Columns {
4
+ type?: string;
5
+ field?: string;
6
+ title?: string;
7
+ align?: string;
8
+ fieldLabelI18nKey?: string;
9
+ width?: number;
10
+ }
11
+ export interface Row extends FormFieldsItem {
12
+ taxCode: string;
13
+ }
14
+ export declare const ladderNotPriceModalProps: {};
15
+ export type LadderNotPriceModalProps = ExtractPropTypes<typeof ladderNotPriceModalProps>;
@@ -0,0 +1,35 @@
1
+ import { ExtractPropTypes, PropType } from 'vue';
2
+ import type { FormFieldsItem, RecordStringNumber } from '../../edit-page-layout';
3
+ export type HandleBefore = (value?: RecordStringNumber) => Promise<string | boolean | void>;
4
+ export interface Extend {
5
+ current?: number;
6
+ modalConfigs?: unknown[];
7
+ }
8
+ export interface Config extends FormFieldsItem {
9
+ extend: Extend;
10
+ }
11
+ export interface Row extends FormFieldsItem {
12
+ taxCode: string;
13
+ }
14
+ export interface Form extends FormFieldsItem {
15
+ taxCode: string;
16
+ }
17
+ export declare const ladderPriceProps: {
18
+ value: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ config: {
23
+ type: PropType<Config>;
24
+ default: () => {};
25
+ };
26
+ isRow: {
27
+ type: BooleanConstructor;
28
+ default: boolean;
29
+ };
30
+ row: {
31
+ type: PropType<Row>;
32
+ default(): {};
33
+ };
34
+ };
35
+ export type LadderPriceProps = ExtractPropTypes<typeof ladderPriceProps>;
@@ -0,0 +1,55 @@
1
+ import type { Config, Row } from './ladder-price-types';
2
+ import type { DefineComponent, PropType, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, ComputedRef } from 'vue';
3
+ import { RecordStringNumber } from '../../edit-page-layout';
4
+ declare const _sfc_main: DefineComponent<{
5
+ value: {
6
+ type: StringConstructor;
7
+ default: string;
8
+ };
9
+ config: {
10
+ type: PropType<Config>;
11
+ default: () => {};
12
+ };
13
+ isRow: {
14
+ type: BooleanConstructor;
15
+ default: boolean;
16
+ };
17
+ row: {
18
+ type: PropType<Row>;
19
+ default(): {};
20
+ };
21
+ }, {
22
+ classes: ComputedRef<{
23
+ [x: string]: boolean;
24
+ }>;
25
+ value: Ref<string>;
26
+ config: Ref<Config>;
27
+ showModal: () => void;
28
+ clearInputValue: () => void;
29
+ ladderPriceModal: Ref<any>;
30
+ ladderNotPriceModal: Ref<any>;
31
+ handleOk: (itemList: RecordStringNumber[]) => void;
32
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
33
+ value: {
34
+ type: StringConstructor;
35
+ default: string;
36
+ };
37
+ config: {
38
+ type: PropType<Config>;
39
+ default: () => {};
40
+ };
41
+ isRow: {
42
+ type: BooleanConstructor;
43
+ default: boolean;
44
+ };
45
+ row: {
46
+ type: PropType<Row>;
47
+ default(): {};
48
+ };
49
+ }>>, {
50
+ row: Row;
51
+ value: string;
52
+ config: Config;
53
+ isRow: boolean;
54
+ }, {}>;
55
+ export default _sfc_main;
@@ -0,0 +1,6 @@
1
+ import type { ComputedRef } from 'vue';
2
+ export default function useLadderNotPriceModal(): {
3
+ classes: ComputedRef<{
4
+ [x: string]: boolean;
5
+ }>;
6
+ };
@@ -0,0 +1,6 @@
1
+ import type { ComputedRef } from 'vue';
2
+ export default function useLadderPrice(): {
3
+ classes: ComputedRef<{
4
+ [x: string]: boolean;
5
+ }>;
6
+ };
@@ -186,7 +186,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
186
186
  }, {
187
187
  menus: Menu[];
188
188
  layoutMode: string;
189
- internalOrExternal: boolean;
190
189
  collapsible: boolean;
191
- }>>;
190
+ internalOrExternal: boolean;
191
+ }, {}>>;
192
192
  export default _default;
@@ -50,7 +50,7 @@ declare const _sfc_main: DefineComponent<{}, {
50
50
  };
51
51
  }>>, {
52
52
  type: string;
53
- }>;
53
+ }, {}>;
54
54
  navRight: DefineComponent<{}, {
55
55
  showDrawer: Ref<boolean>;
56
56
  showGlobalStyleDrawer: () => void;
@@ -104,7 +104,7 @@ declare const _sfc_main: DefineComponent<{}, {
104
104
  };
105
105
  }>>, {
106
106
  type: string;
107
- }>;
107
+ }, {}>;
108
108
  message: DefineComponent<{}, {
109
109
  handleMsgRecord: () => void;
110
110
  srmI18n: (i18nKey: string, defaultValue: string, account?: string | number | undefined) => string;
@@ -138,9 +138,9 @@ declare const _sfc_main: DefineComponent<{}, {
138
138
  };
139
139
  }>>, {
140
140
  type: string;
141
- }>;
142
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
143
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
141
+ }, {}>;
142
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
143
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
144
144
  langSwitch: DefineComponent<{}, {
145
145
  request: Request;
146
146
  defaultLanguage: string;
@@ -166,7 +166,7 @@ declare const _sfc_main: DefineComponent<{}, {
166
166
  getData: () => void;
167
167
  currentLang: Ref<string>;
168
168
  changeLangHandle: () => void;
169
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
169
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
170
170
  customPerson: DefineComponent<{}, {
171
171
  srmI18n: (i18nKey: string, defaultValue: string, account?: string | number | undefined) => string;
172
172
  userInfo: {
@@ -187,7 +187,7 @@ declare const _sfc_main: DefineComponent<{}, {
187
187
  handlePersonalSettings: () => void;
188
188
  readonly SettingOutlined: SettingOutlinedIconType;
189
189
  readonly LogoutOutlined: LogoutOutlinedIconType;
190
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
190
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
191
191
  settingDrawer: DefineComponent<{
192
192
  visible: {
193
193
  type: BooleanConstructor;
@@ -197,7 +197,7 @@ declare const _sfc_main: DefineComponent<{}, {
197
197
  srmI18n: (i18nKey: string, defaultValue: string, account?: string | number | undefined) => string;
198
198
  props: any;
199
199
  emit: (event: "handleClosed", ...args: any[]) => void;
200
- drawerVisible: Ref<boolean>;
200
+ drawerVisible: any;
201
201
  primaryColor: Ref<string>;
202
202
  colorList: ColorListType[];
203
203
  changeColor: (color: string) => void;
@@ -217,7 +217,7 @@ declare const _sfc_main: DefineComponent<{}, {
217
217
  };
218
218
  }>> & {
219
219
  onHandleClosed?: ((...args: any[]) => any) | undefined;
220
- }, {}>;
221
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
222
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
220
+ }, {}, {}>;
221
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
222
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
223
223
  export default _sfc_main;
@@ -32,6 +32,6 @@ declare const _sfc_main: DefineComponent<{}, {
32
32
  };
33
33
  }>>, {
34
34
  type: string;
35
- }>;
36
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
35
+ }, {}>;
36
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
37
37
  export default _sfc_main;
@@ -21,5 +21,5 @@ declare const _sfc_main: DefineComponent<{}, {
21
21
  handlePersonalSettings: () => void;
22
22
  readonly SettingOutlined: SettingOutlinedIconType;
23
23
  readonly LogoutOutlined: LogoutOutlinedIconType;
24
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
24
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
25
25
  export default _sfc_main;
@@ -58,7 +58,7 @@ declare const _sfc_main: DefineComponent<{}, {
58
58
  };
59
59
  }>>, {
60
60
  type: string;
61
- }>;
61
+ }, {}>;
62
62
  message: DefineComponent<{}, {
63
63
  handleMsgRecord: () => void;
64
64
  srmI18n: (i18nKey: string, defaultValue: string, account?: string | number | undefined) => string;
@@ -92,9 +92,9 @@ declare const _sfc_main: DefineComponent<{}, {
92
92
  };
93
93
  }>>, {
94
94
  type: string;
95
- }>;
96
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
97
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
95
+ }, {}>;
96
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
97
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
98
98
  langSwitch: DefineComponent<{}, {
99
99
  request: Request;
100
100
  defaultLanguage: string;
@@ -120,7 +120,7 @@ declare const _sfc_main: DefineComponent<{}, {
120
120
  getData: () => void;
121
121
  currentLang: Ref<string>;
122
122
  changeLangHandle: () => void;
123
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
123
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
124
124
  customPerson: DefineComponent<{}, {
125
125
  srmI18n: (i18nKey: string, defaultValue: string, account?: string | number | undefined) => string;
126
126
  userInfo: {
@@ -141,7 +141,7 @@ declare const _sfc_main: DefineComponent<{}, {
141
141
  handlePersonalSettings: () => void;
142
142
  readonly SettingOutlined: SettingOutlinedIconType;
143
143
  readonly LogoutOutlined: LogoutOutlinedIconType;
144
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
144
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
145
145
  settingDrawer: DefineComponent<{
146
146
  visible: {
147
147
  type: BooleanConstructor;
@@ -151,7 +151,7 @@ declare const _sfc_main: DefineComponent<{}, {
151
151
  srmI18n: (i18nKey: string, defaultValue: string, account?: string | number | undefined) => string;
152
152
  props: any;
153
153
  emit: (event: "handleClosed", ...args: any[]) => void;
154
- drawerVisible: Ref<boolean>;
154
+ drawerVisible: any;
155
155
  primaryColor: Ref<string>;
156
156
  colorList: ColorListType[];
157
157
  changeColor: (color: string) => void;
@@ -171,6 +171,6 @@ declare const _sfc_main: DefineComponent<{}, {
171
171
  };
172
172
  }>> & {
173
173
  onHandleClosed?: ((...args: any[]) => any) | undefined;
174
- }, {}>;
175
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
174
+ }, {}, {}>;
175
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
176
176
  export default _sfc_main;
@@ -26,5 +26,5 @@ declare const _sfc_main: DefineComponent<{}, {
26
26
  getData: () => void;
27
27
  currentLang: Ref<string>;
28
28
  changeLangHandle: () => void;
29
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
29
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
30
30
  export default _sfc_main;
@@ -49,7 +49,7 @@ declare const _sfc_main: DefineComponent<{}, {
49
49
  };
50
50
  }>>, {
51
51
  type: string;
52
- }>;
52
+ }, {}>;
53
53
  message: DefineComponent<{}, {
54
54
  handleMsgRecord: () => void;
55
55
  srmI18n: (i18nKey: string, defaultValue: string, account?: string | number | undefined) => string;
@@ -83,7 +83,7 @@ declare const _sfc_main: DefineComponent<{}, {
83
83
  };
84
84
  }>>, {
85
85
  type: string;
86
- }>;
87
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
88
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
86
+ }, {}>;
87
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
88
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
89
89
  export default _sfc_main;
@@ -10,7 +10,7 @@ declare const _sfc_main: DefineComponent<{
10
10
  srmI18n: (i18nKey: string, defaultValue: string, account?: string | number) => string;
11
11
  props: any;
12
12
  emit: (event: "handleClosed", ...args: any[]) => void;
13
- drawerVisible: Ref<boolean>;
13
+ drawerVisible: any;
14
14
  primaryColor: Ref<string>;
15
15
  colorList: ColorListType[];
16
16
  changeColor: (color: string) => void;
@@ -30,5 +30,5 @@ declare const _sfc_main: DefineComponent<{
30
30
  };
31
31
  }>> & {
32
32
  onHandleClosed?: ((...args: any[]) => any) | undefined;
33
- }, {}>;
33
+ }, {}, {}>;
34
34
  export default _sfc_main;
@@ -183,7 +183,7 @@ declare const _sfc_main: DefineComponent<{
183
183
  }, {
184
184
  menus: Menu[];
185
185
  layoutMode: string;
186
- internalOrExternal: boolean;
187
186
  collapsible: boolean;
188
- }>;
187
+ internalOrExternal: boolean;
188
+ }, {}>;
189
189
  export default _sfc_main;
@@ -14,5 +14,5 @@ declare const _sfc_main: DefineComponent<{
14
14
  };
15
15
  }>>, {
16
16
  menuInfo: Record<string, any>;
17
- }>;
17
+ }, {}>;
18
18
  export default _sfc_main;
@@ -133,10 +133,10 @@ declare const _sfc_main: DefineComponent<{
133
133
  onUpdateHistoryList?: ((...args: any[]) => any) | undefined;
134
134
  }, {
135
135
  mode: string;
136
- menus: ExtendMenu[];
137
136
  collapsed: boolean;
137
+ menus: ExtendMenu[];
138
138
  searchState: boolean;
139
139
  currentSearchValue: string;
140
140
  secondMenuShow: boolean;
141
- }>;
141
+ }, {}>;
142
142
  export default _sfc_main;
@@ -63,7 +63,7 @@ declare const _sfc_main: DefineComponent<{
63
63
  }>> & {
64
64
  onMenuSelect?: ((...args: any[]) => any) | undefined;
65
65
  }, {
66
- mode: string;
67
66
  meta: FirstMenuMeta;
68
- }>;
67
+ mode: string;
68
+ }, {}>;
69
69
  export default _sfc_main;
@@ -94,5 +94,5 @@ declare const _sfc_main: DefineComponent<{
94
94
  mode: string;
95
95
  menus: Menu[];
96
96
  searchOpenKeys: string[];
97
- }>;
97
+ }, {}>;
98
98
  export default _sfc_main;
@@ -166,5 +166,5 @@ declare const _sfc_main: DefineComponent<{
166
166
  mode: string;
167
167
  secondMenuShow: boolean;
168
168
  collapsible: boolean;
169
- }>;
169
+ }, {}>;
170
170
  export default _sfc_main;
@@ -27,7 +27,7 @@ declare const _sfc_main: DefineComponent<{
27
27
  };
28
28
  }>>, {
29
29
  title: string;
30
- logoUrl: string;
31
30
  collapsed: boolean;
32
- }>;
31
+ logoUrl: string;
32
+ }, {}>;
33
33
  export default _sfc_main;
@@ -91,5 +91,5 @@ declare const _sfc_main: DefineComponent<{
91
91
  }, {
92
92
  collapsed: boolean;
93
93
  searchState: boolean;
94
- }>;
94
+ }, {}>;
95
95
  export default _sfc_main;
@@ -39,6 +39,7 @@ export interface FirstMenuMeta {
39
39
  }
40
40
  export interface RouterPropsType {
41
41
  path: string;
42
+ query?: Record<string, string>;
42
43
  }
43
44
  export interface BtnPropsType {
44
45
  title: string;
@@ -1,5 +1,5 @@
1
1
  import type { GroupItem } from '../edit-page-layout';
2
- import type { DefineComponent, PropType, ComputedRef, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
2
+ import type { DefineComponent, PropType, ComputedRef, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
3
3
  import type { SFCWithInstall } from '@qqt-product/utils/dist/modules/withInstall';
4
4
  import QLayoutAnchor from './src/layout-auchor.vue';
5
5
  export * from './src/layout-anchor-types';
@@ -18,6 +18,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
18
18
  title: any;
19
19
  href: string;
20
20
  }) => void;
21
+ groups: Ref<GroupItem[]>;
21
22
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
22
23
  groups: {
23
24
  type: PropType<GroupItem[]>;
@@ -25,5 +26,5 @@ declare const _default: SFCWithInstall<DefineComponent<{
25
26
  };
26
27
  }>>, {
27
28
  groups: GroupItem[];
28
- }>>;
29
+ }, {}>>;
29
30
  export default _default;
@@ -1,5 +1,5 @@
1
1
  import type { GroupItem } from '../../edit-page-layout';
2
- import type { DefineComponent, PropType, ComputedRef, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
2
+ import type { DefineComponent, PropType, ComputedRef, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
3
3
  declare const _sfc_main: DefineComponent<{
4
4
  groups: {
5
5
  type: PropType<GroupItem[]>;
@@ -14,6 +14,7 @@ declare const _sfc_main: DefineComponent<{
14
14
  title: any;
15
15
  href: string;
16
16
  }) => void;
17
+ groups: Ref<GroupItem[]>;
17
18
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
18
19
  groups: {
19
20
  type: PropType<GroupItem[]>;
@@ -21,5 +22,5 @@ declare const _sfc_main: DefineComponent<{
21
22
  };
22
23
  }>>, {
23
24
  groups: GroupItem[];
24
- }>;
25
+ }, {}>;
25
26
  export default _sfc_main;
@@ -1,4 +1,5 @@
1
- import type { PageButton, RecordStringNumber } from '../edit-page-layout';
1
+ import type { RecordStringNumber } from '../select-modal';
2
+ import type { PageButton } from '../edit-page-layout';
2
3
  import type { DefineComponent, PropType, ComputedRef, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
3
4
  import type { SFCWithInstall } from '@qqt-product/utils/dist/modules/withInstall';
4
5
  import QLayoutButtons from './src/layout-buttons.vue';
@@ -54,10 +55,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
54
55
  default: string;
55
56
  };
56
57
  }>>, {
57
- groupCode: string;
58
+ buttons: PageButton[];
58
59
  groupName: string;
59
60
  groupNameI18nKey: string;
61
+ groupCode: string;
60
62
  groupType: string;
61
- buttons: PageButton[];
62
- }>>;
63
+ }, {}>>;
63
64
  export default _default;