asma-core-ui 2.20.13 → 2.20.15

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.
@@ -0,0 +1,2 @@
1
+ import type { SVGProps } from 'react';
2
+ export declare function ConsentsIcon(props: SVGProps<SVGSVGElement>): JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './ConsentsIcon';
@@ -66,3 +66,6 @@ export * from './settings-menu-horizontal-icon';
66
66
  export * from './pencil-outline-icon';
67
67
  export * from './warning-icon';
68
68
  export * from './outline-calendar-month';
69
+ export * from './consents-icon';
70
+ export * from './minimize-icon';
71
+ export * from './keyboard-capslock-icon';
@@ -0,0 +1,2 @@
1
+ import type { SVGProps } from 'react';
2
+ export declare const KeyboardCapslockIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './KeyboardCapslockIcon';
@@ -0,0 +1,2 @@
1
+ import type { SVGProps } from 'react';
2
+ export declare const MinimizeIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './MinimizeIcon';
@@ -0,0 +1,19 @@
1
+ /// <reference types="react" />
2
+ export declare const MinimizableDialog: React.FC<{
3
+ onCloseText: string;
4
+ onMinimizeText: string;
5
+ onExpandText: string;
6
+ open: boolean;
7
+ onClose: () => void;
8
+ showCloseIcon?: boolean;
9
+ showMinimizeIcon?: boolean;
10
+ showExpandIcon?: boolean;
11
+ title: string;
12
+ label?: string;
13
+ children?: React.ReactNode;
14
+ className?: string;
15
+ primaryButtonText?: string;
16
+ secondaryButtonText?: string;
17
+ onPrimaryButtonClick?: () => void;
18
+ onSecondaryButtonClick?: () => void;
19
+ }>;
@@ -41,3 +41,4 @@ export * from './components/utils/popover';
41
41
  export * from './components/custom/widget/widget-title/StyledWidgetTitle';
42
42
  export * from './components/custom/module/module-title/StyledModuleTitle';
43
43
  export * from './components/filter-menu/StyledFilterMenu';
44
+ export * from './components/feedback/minimizable-dialog/MinimizableDialog';