@zealicsolutions/web-ui 0.1.64 → 0.1.65
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 -1
- 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 -1
- package/dist/esm/src/molecules/PdfDocument/PdfDocument.stories.d.ts +1 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
@@ -1,5 +1,6 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
export declare type PdfDocumentProps = {
|
3
3
|
source: string;
|
4
|
+
isMobile?: boolean;
|
4
5
|
};
|
5
|
-
export declare const PdfDocument: ({ source }: PdfDocumentProps) => JSX.Element;
|
6
|
+
export declare const PdfDocument: ({ source, isMobile }: 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 }: import("molecules").PdfDocumentProps) => JSX.Element;
|
6
|
+
component: ({ source, isMobile }: import("molecules").PdfDocumentProps) => JSX.Element;
|
7
7
|
};
|
8
8
|
export default _default;
|
9
9
|
export declare const PdfDocument: ComponentStory<typeof PdfDocumentComponent>;
|
package/dist/index.d.ts
CHANGED
@@ -583,8 +583,9 @@ declare const Stepper: ({ active, steps, orientation }: StepperProps) => JSX.Ele
|
|
583
583
|
|
584
584
|
declare type PdfDocumentProps = {
|
585
585
|
source: string;
|
586
|
+
isMobile?: boolean;
|
586
587
|
};
|
587
|
-
declare const PdfDocument: ({ source }: PdfDocumentProps) => JSX.Element;
|
588
|
+
declare const PdfDocument: ({ source, isMobile }: PdfDocumentProps) => JSX.Element;
|
588
589
|
|
589
590
|
declare type SetPasswordRuleValidation = {
|
590
591
|
label: string;
|