design-system-silkhaus 2.4.0-beta.mission-values.1 → 2.4.0-beta.mission-values.3
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 +40 -40
- package/dist/index.d.ts +12 -0
- package/dist/index.js +8606 -8100
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { HTMLAttributes } from 'react';
|
|
|
7
7
|
import { ModifiersShape } from 'react-dates';
|
|
8
8
|
import { Moment } from 'moment';
|
|
9
9
|
import { Placement } from '@floating-ui/react';
|
|
10
|
+
import { Props } from 'simplebar-react';
|
|
10
11
|
import { PropsWithChildren } from 'react';
|
|
11
12
|
import * as React_2 from 'react';
|
|
12
13
|
import { ReactNode } from 'react';
|
|
@@ -26,6 +27,12 @@ export declare interface AccordionProps {
|
|
|
26
27
|
accordionContentClass?: string | undefined;
|
|
27
28
|
isEnabled?: boolean;
|
|
28
29
|
isExpanded?: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* @default true
|
|
32
|
+
* If false, accordion will collapse on clicking anywhere,
|
|
33
|
+
* otherwise it will only collapse on clicking the header
|
|
34
|
+
*/
|
|
35
|
+
isCollapseOnlyOnHeaderClick?: boolean;
|
|
29
36
|
}
|
|
30
37
|
|
|
31
38
|
export declare const ActionFooter: default_2.ForwardRefExoticComponent<ActionFooterProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
@@ -502,6 +509,11 @@ export declare const RulerRegularIcon: FC<{
|
|
|
502
509
|
|
|
503
510
|
export declare type ScreenSize = 'mobile' | 'tablet' | 'desktop';
|
|
504
511
|
|
|
512
|
+
export declare const Scrollbar: FC<ScrollbarProps>;
|
|
513
|
+
|
|
514
|
+
export declare interface ScrollbarProps extends Props {
|
|
515
|
+
}
|
|
516
|
+
|
|
505
517
|
export declare const SlickImageCarousel: default_2.ForwardRefExoticComponent<SlickImageCarouselProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
506
518
|
|
|
507
519
|
export declare type SlickImageCarouselProps = {
|