design-system-silkhaus 2.16.2-beta.buttonfix.1 → 2.16.4-beta.carousel.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.cjs +32 -32
- package/dist/index.d.ts +9 -0
- package/dist/index.js +1138 -1103
- package/dist/style.css +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { default as default_2 } from 'react';
|
|
|
5
5
|
import { FC } from 'react';
|
|
6
6
|
import { ForwardRefExoticComponent } from 'react';
|
|
7
7
|
import { HTMLAttributes } from 'react';
|
|
8
|
+
import { LazyLoadTypes } from 'react-slick';
|
|
8
9
|
import { ModifiersShape } from 'react-dates';
|
|
9
10
|
import { Moment } from 'moment';
|
|
10
11
|
import { Placement } from '@floating-ui/react';
|
|
@@ -331,7 +332,13 @@ declare interface DateRangePickerProps {
|
|
|
331
332
|
_mobileDaySize?: number;
|
|
332
333
|
mobileBreakPoint?: number;
|
|
333
334
|
isAdjustHeightForViewport?: boolean;
|
|
335
|
+
/**
|
|
336
|
+
* @default 'button'
|
|
337
|
+
*/
|
|
334
338
|
primaryBtnType?: 'button' | 'submit' | 'reset';
|
|
339
|
+
/**
|
|
340
|
+
* @default 'button'
|
|
341
|
+
*/
|
|
335
342
|
secondaryBtnType?: 'button' | 'submit' | 'reset';
|
|
336
343
|
}
|
|
337
344
|
|
|
@@ -1007,6 +1014,8 @@ export declare type SlickImageCarouselProps = {
|
|
|
1007
1014
|
infinite?: boolean;
|
|
1008
1015
|
className?: string;
|
|
1009
1016
|
onClick?: () => void;
|
|
1017
|
+
lazyLoad?: LazyLoadTypes | undefined;
|
|
1018
|
+
aspectRatio?: string | number | undefined;
|
|
1010
1019
|
};
|
|
1011
1020
|
|
|
1012
1021
|
export declare const SofaIcon: FC<{
|