design-system-silkhaus 3.11.0-beta-image-viewer.12 → 3.11.0-beta-image-viewer.13
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 -0
- package/dist/index.js +5146 -5109
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -416,6 +416,12 @@ export declare interface DateRangeCalendarProps {
|
|
|
416
416
|
renderDayContents?: (day: Moment, modifiers: ModifiersShape) => default_2.ReactNode | null | undefined;
|
|
417
417
|
getParentWidth: () => number;
|
|
418
418
|
buttonText: string;
|
|
419
|
+
/**
|
|
420
|
+
* Used for RTL.
|
|
421
|
+
* Pass this as true when you have direction=rtl in your HTML
|
|
422
|
+
* @default false
|
|
423
|
+
*/
|
|
424
|
+
rtl?: boolean;
|
|
419
425
|
}
|
|
420
426
|
|
|
421
427
|
export declare const DateRangePicker: default_2.ForwardRefExoticComponent<DateRangePickerProps & default_2.RefAttributes<HTMLDivElement>>;
|