design-system-silkhaus 3.12.1 → 3.12.2-beta.image-viewer-rtl.1
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 +6 -1
- package/dist/index.js +5174 -5187
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -750,7 +750,12 @@ export declare interface ImageViewerProps {
|
|
|
750
750
|
isOpen: boolean;
|
|
751
751
|
setOpen: (state: boolean) => void;
|
|
752
752
|
images: ImageItem[];
|
|
753
|
-
index?: number
|
|
753
|
+
index?: number /**
|
|
754
|
+
* Used for RTL.
|
|
755
|
+
* Pass this as true when you have direction=rtl in your HTML
|
|
756
|
+
* @default false
|
|
757
|
+
*/;
|
|
758
|
+
rtl?: boolean;
|
|
754
759
|
}
|
|
755
760
|
|
|
756
761
|
export declare const InfoIcon: FC<{
|