@zealicsolutions/web-ui 0.2.54 → 0.2.55
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.
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/molecules/PdfDocument/PdfDocument.d.ts +2 -2
- package/dist/cjs/src/molecules/PdfDocument/PdfDocument.stories.d.ts +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/molecules/PdfDocument/PdfDocument.d.ts +2 -2
- package/dist/esm/src/molecules/PdfDocument/PdfDocument.stories.d.ts +1 -1
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
@@ -8,9 +8,9 @@ export type PdfDocumentProps = {
|
|
8
8
|
wrapperBackgroundColor: ThemeColors | string;
|
9
9
|
pageNumberColor: ThemeColors | string;
|
10
10
|
pageWidth: number;
|
11
|
+
pageHeight: number;
|
11
12
|
paginationArrowColor: ThemeColors | string;
|
12
13
|
disabledPaginationArrowColor: ThemeColors | string;
|
13
14
|
}>;
|
14
15
|
};
|
15
|
-
export declare const
|
16
|
-
export declare const PdfDocument: ({ source, isMobile, customDocumentStyles }: PdfDocumentProps) => JSX.Element;
|
16
|
+
export declare const PdfDocument: ({ source, isMobile, customDocumentStyles, }: PdfDocumentProps) => JSX.Element;
|
@@ -3,7 +3,7 @@ import { ComponentStory } from '@storybook/react';
|
|
3
3
|
import { PdfDocument as PdfDocumentComponent } from 'molecules';
|
4
4
|
declare const _default: {
|
5
5
|
title: string;
|
6
|
-
component: ({ source, isMobile, customDocumentStyles }: import("molecules").PdfDocumentProps) => JSX.Element;
|
6
|
+
component: ({ source, isMobile, customDocumentStyles, }: import("molecules").PdfDocumentProps) => JSX.Element;
|
7
7
|
};
|
8
8
|
export default _default;
|
9
9
|
export declare const PdfDocument: ComponentStory<typeof PdfDocumentComponent>;
|