mblabs-roccato-frontend-commons 0.2.7 → 0.2.8
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/index.d.ts
CHANGED
|
@@ -1353,7 +1353,7 @@ export declare const MASKS: {
|
|
|
1353
1353
|
|
|
1354
1354
|
export declare type MaskType = keyof typeof MASKS;
|
|
1355
1355
|
|
|
1356
|
-
export declare const MAX_ZOOM =
|
|
1356
|
+
export declare const MAX_ZOOM = 3;
|
|
1357
1357
|
|
|
1358
1358
|
export declare function Menu01(props: ComponentProps<'svg'>): JSX.Element;
|
|
1359
1359
|
|
|
@@ -1488,6 +1488,8 @@ declare interface PDFViewerProps {
|
|
|
1488
1488
|
loading?: string;
|
|
1489
1489
|
error?: string;
|
|
1490
1490
|
loadingPage?: string;
|
|
1491
|
+
page?: string;
|
|
1492
|
+
pages?: string;
|
|
1491
1493
|
};
|
|
1492
1494
|
}
|
|
1493
1495
|
|
|
@@ -1971,6 +1973,7 @@ export declare const usePDFZoom: () => {
|
|
|
1971
1973
|
isMaxZoom: boolean;
|
|
1972
1974
|
zoomIn: () => void;
|
|
1973
1975
|
zoomOut: () => void;
|
|
1976
|
+
setScale: (newScale: number) => void;
|
|
1974
1977
|
};
|
|
1975
1978
|
|
|
1976
1979
|
export declare function User01(props: ComponentProps<'svg'>): JSX.Element;
|