asma-core-ui 3.1.0-beta.1 → 3.1.0-beta.2

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,5 @@
1
+ import React, { type ReactNode } from 'react';
2
+ export declare const StyledWidgetHeader: React.FC<{
3
+ actions?: ReactNode;
4
+ title?: string;
5
+ }>;
@@ -1,6 +1 @@
1
- export * from './SnackbarProvider';
2
- export { enqueueSnackbar, closeSnackbar, useSnackbar } from 'notistack';
3
1
  export * from './StyledSnackbar';
4
- export * from './processAlertSnackBar';
5
- export * from './processInfoSnackbar';
6
- export * from './message';
@@ -75,3 +75,4 @@ export * from './message-reply-icon';
75
75
  export * from './badge-icon';
76
76
  export * from './edit-square-icon';
77
77
  export * from './plus-icon';
78
+ export * from './plus-icon-circle';
@@ -0,0 +1,2 @@
1
+ import type { SVGProps } from 'react';
2
+ export declare function PlusIconCircle(props: SVGProps<SVGSVGElement>): JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './PlusIconCircle';
@@ -1,13 +1,12 @@
1
1
  import type { FC } from 'react';
2
2
  import ReactQuill from 'react-quill';
3
3
  export interface IRichInput extends ReactQuill.ReactQuillProps {
4
- isRequired?: boolean;
5
4
  disabled?: boolean;
6
5
  label?: string;
7
- error?: string;
6
+ isRequired?: boolean;
8
7
  is_error?: boolean;
9
- is_warning?: boolean;
10
- dataTest?: string;
8
+ helperText?: string;
9
+ dataTest: string;
11
10
  }
12
11
  declare const RichInput: FC<IRichInput>;
13
12
  export { RichInput };
@@ -1,9 +1,3 @@
1
1
  import type { Dispatch, SetStateAction } from 'react';
2
2
  export declare const getValue: (date?: Date, dateFormat?: string) => string;
3
- declare global {
4
- interface Window {
5
- rawWindow?: typeof window;
6
- }
7
- }
8
- export declare const realWindow: Window & typeof globalThis;
9
3
  export declare const setPickerPosition: (e: React.MouseEvent<HTMLDivElement>, setPositionAbove: Dispatch<SetStateAction<boolean>>) => void;
@@ -6,7 +6,6 @@ export * from './components/icons';
6
6
  export * from './components/data-display/typography';
7
7
  export * from './components/feedback/dialog';
8
8
  export * from './components/feedback/alert';
9
- export * from './components/feedback/snack-bar';
10
9
  export * from './components/inputs/button';
11
10
  export * from './components/inputs/checkbox';
12
11
  export * from './components/inputs/input-field';
@@ -18,6 +17,7 @@ export * from './components/inputs/slider';
18
17
  export * from './components/inputs/switch';
19
18
  export * from './components/inputs/radio-button';
20
19
  export * from './components/inputs/label';
20
+ export * from './components/feedback/snack-bar';
21
21
  export * from './components/pickers/date-picker';
22
22
  export * from './components/pickers/time-picker';
23
23
  export * from './components/miscellaneous/StyledFormControl';
@@ -34,6 +34,7 @@ export * from './components/utils/accordion';
34
34
  export * from './components/table';
35
35
  export * from './components/utils/popover';
36
36
  export * from './components/custom/widget/widget-title/StyledWidgetTitle';
37
+ export * from './components/custom/widget/widget-header/StyledWidgetHeader';
37
38
  export * from './components/custom/module/module-title/StyledModuleTitle';
38
39
  export * from './components/utils/filter-menu/StyledFilterMenu';
39
40
  export * from './components/feedback/minimizable-dialog/MinimizableDialog';