sun-biz 0.0.2-beta.21 → 0.0.2-beta.23

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.
@@ -1,7 +1,4 @@
1
- import { PropsTypes } from "./types";
2
- export declare const print: (options: PropsTypes) => Promise<void>;
3
- export default print;
4
- export { default as PrintComponent } from "./index.vue";
5
- export { usePrintReceipt } from "./hooks";
1
+ export { print } from "./print";
2
+ export { usePrintReceipt } from "./hooks/index";
6
3
  export type { MenuXReceiptReqItem, MenuXReceiptReqParams, MenuXReceiptListReqItem, } from "./types";
7
4
  export { default as PrintReceiptBtn } from "./composables/printReceiptBtn.vue";
@@ -0,0 +1,6 @@
1
+ import { PropsTypes, ReceiptTemplateList } from "./types";
2
+ /**
3
+ * 模板选择
4
+ */
5
+ export declare const templateConfirm: (template: ReceiptTemplateList | undefined) => Promise<void>;
6
+ export declare const print: (params: PropsTypes) => Promise<void>;
@@ -0,0 +1,4 @@
1
+ import { ReceiptTemplateList } from "./types";
2
+ export declare const createPrintTemplate: (options: {
3
+ printTemplateList: ReceiptTemplateList[];
4
+ }) => void;
@@ -11,7 +11,6 @@ export interface ModelItem {
11
11
  }
12
12
  export interface FormDescItem {
13
13
  autoConvertSpellNoAndWbNo?: boolean;
14
- formItemRightText?: string;
15
14
  supportCopyAndTips?: boolean;
16
15
  type?: string;
17
16
  name: string;