asv-hlps 1.3.51 → 1.3.52

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,3 +1,4 @@
1
1
  export * from "./amountInvoice";
2
2
  export * from "./infoInvoice";
3
+ export * from "./pdfmake";
3
4
  export * from "./tools";
@@ -16,4 +16,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./amountInvoice"), exports);
18
18
  __exportStar(require("./infoInvoice"), exports);
19
+ __exportStar(require("./pdfmake"), exports);
19
20
  __exportStar(require("./tools"), exports);
@@ -0,0 +1,9 @@
1
+ export default interface PdfmakeTextProps {
2
+ text: string;
3
+ fontSize?: number;
4
+ style?: string;
5
+ alignment?: string;
6
+ bold?: boolean;
7
+ margin?: [number, number, number, number];
8
+ nLine?: string;
9
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,12 +1,4 @@
1
- export interface PdfmakeTextProps {
2
- text: string;
3
- fontSize?: number;
4
- style?: string;
5
- alignment?: string;
6
- bold?: boolean;
7
- margin?: [number, number, number, number];
8
- nLine?: string;
9
- }
1
+ import PdfmakeTextProps from "./PdfmakeTextProps";
10
2
  declare class HlpPdfMake {
11
3
  text: ({ text, nLine, fontSize, style, alignment, bold, margin }: PdfmakeTextProps) => {
12
4
  text: string;
@@ -1 +1,2 @@
1
- export { default as HlpPdfmake, default as PdfMakeTextProps } from "./hlpPdfmake";
1
+ export { default as PdfmakeTextProps } from "./PdfmakeTextProps";
2
+ export { default as HlpPdfmake } from "./hlpPdfmake";
@@ -3,7 +3,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.PdfMakeTextProps = exports.HlpPdfmake = void 0;
6
+ exports.HlpPdfmake = void 0;
7
7
  var hlpPdfmake_1 = require("./hlpPdfmake");
8
8
  Object.defineProperty(exports, "HlpPdfmake", { enumerable: true, get: function () { return __importDefault(hlpPdfmake_1).default; } });
9
- Object.defineProperty(exports, "PdfMakeTextProps", { enumerable: true, get: function () { return __importDefault(hlpPdfmake_1).default; } });
@@ -1,3 +1,4 @@
1
1
  export * from "./amountInvoice";
2
2
  export * from "./infoInvoice";
3
+ export * from "./pdfmake";
3
4
  export * from "./tools";
@@ -1,3 +1,4 @@
1
1
  export * from "./amountInvoice";
2
2
  export * from "./infoInvoice";
3
+ export * from "./pdfmake";
3
4
  export * from "./tools";
@@ -0,0 +1,9 @@
1
+ export default interface PdfmakeTextProps {
2
+ text: string;
3
+ fontSize?: number;
4
+ style?: string;
5
+ alignment?: string;
6
+ bold?: boolean;
7
+ margin?: [number, number, number, number];
8
+ nLine?: string;
9
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -1,12 +1,4 @@
1
- export interface PdfmakeTextProps {
2
- text: string;
3
- fontSize?: number;
4
- style?: string;
5
- alignment?: string;
6
- bold?: boolean;
7
- margin?: [number, number, number, number];
8
- nLine?: string;
9
- }
1
+ import PdfmakeTextProps from "./PdfmakeTextProps";
10
2
  declare class HlpPdfMake {
11
3
  text: ({ text, nLine, fontSize, style, alignment, bold, margin }: PdfmakeTextProps) => {
12
4
  text: string;
@@ -1 +1,2 @@
1
- export { default as HlpPdfmake, default as PdfMakeTextProps } from "./hlpPdfmake";
1
+ export { default as PdfmakeTextProps } from "./PdfmakeTextProps";
2
+ export { default as HlpPdfmake } from "./hlpPdfmake";
@@ -1 +1 @@
1
- export { default as HlpPdfmake, default as PdfMakeTextProps } from "./hlpPdfmake";
1
+ export { default as HlpPdfmake } from "./hlpPdfmake";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asv-hlps",
3
- "version": "1.3.51",
3
+ "version": "1.3.52",
4
4
  "description": "helpers",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",