design-system-silkhaus 2.17.0-beta.notifications.6 → 2.17.0-beta.notifications.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.cjs +41 -41
- package/dist/index.d.ts +19 -0
- package/dist/index.js +6116 -5994
- 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';
|
|
@@ -140,6 +141,14 @@ export declare const BedRegularIcon: FC<{
|
|
|
140
141
|
className?: string;
|
|
141
142
|
}>;
|
|
142
143
|
|
|
144
|
+
export declare const BellIcon: FC<{
|
|
145
|
+
className?: string;
|
|
146
|
+
}>;
|
|
147
|
+
|
|
148
|
+
export declare const BellSolidIcon: FC<{
|
|
149
|
+
className?: string;
|
|
150
|
+
}>;
|
|
151
|
+
|
|
143
152
|
export declare const BoltIcon: FC<{
|
|
144
153
|
className?: string;
|
|
145
154
|
}>;
|
|
@@ -885,6 +894,14 @@ export declare interface PopoverProps {
|
|
|
885
894
|
* Pass this value to control the open state
|
|
886
895
|
*/
|
|
887
896
|
isOpen?: boolean;
|
|
897
|
+
/**
|
|
898
|
+
* Adjust the height of the popover to fit the content in viewport
|
|
899
|
+
*/
|
|
900
|
+
adjustHeight?: boolean | number;
|
|
901
|
+
/**
|
|
902
|
+
* Adjust the width of the popover to fit the content in viewport
|
|
903
|
+
*/
|
|
904
|
+
adjustWidth?: boolean;
|
|
888
905
|
}
|
|
889
906
|
|
|
890
907
|
export declare const PreviewIcon: FC<{
|
|
@@ -1102,6 +1119,8 @@ export declare type SlickImageCarouselProps = {
|
|
|
1102
1119
|
infinite?: boolean;
|
|
1103
1120
|
className?: string;
|
|
1104
1121
|
onClick?: () => void;
|
|
1122
|
+
lazyLoad?: LazyLoadTypes | undefined;
|
|
1123
|
+
aspectRatio?: string | number | undefined;
|
|
1105
1124
|
};
|
|
1106
1125
|
|
|
1107
1126
|
export declare const SofaIcon: FC<{
|