@dev-blinq/ui-systems 1.0.132 → 1.0.134

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/colors.css CHANGED
@@ -139,4 +139,5 @@
139
139
  /* Figma */
140
140
  --light-blue: #dbeaff;
141
141
  --medium-grey: #f3f3f5;
142
+ --background1: #f6f7f8;
142
143
  }
@@ -0,0 +1,6 @@
1
+ import { DialogProps } from '@mui/material';
2
+ interface CustomDialogProps {
3
+ onClose?: () => void;
4
+ }
5
+ export declare const Dialog: ({ onClose, children, ...props }: CustomDialogProps & DialogProps) => import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -0,0 +1,13 @@
1
+ import { ReactNode } from 'react';
2
+ interface DialogHeaderProps {
3
+ icon?: ReactNode;
4
+ onClose?: () => void;
5
+ title?: string;
6
+ titleDescription?: string;
7
+ secondButton?: {
8
+ icon: ReactNode;
9
+ action: () => void;
10
+ };
11
+ }
12
+ export declare const DialogHeader: ({ onClose, title, titleDescription }: DialogHeaderProps) => import("react/jsx-runtime").JSX.Element;
13
+ export {};
@@ -0,0 +1,3 @@
1
+ export declare const StyledDialog: import('@emotion/styled').StyledComponent<import('@mui/material').DialogProps & {
2
+ theme?: import('@emotion/react').Theme;
3
+ }, {}, {}>;
@@ -1,3 +1,4 @@
1
+ import { PopoverOrigin } from '@mui/material';
1
2
  interface MenuProps {
2
3
  items: {
3
4
  title: React.ReactNode | string;
@@ -12,6 +13,8 @@ interface MenuProps {
12
13
  minWidth?: string;
13
14
  width?: string;
14
15
  id?: string;
16
+ anchorOrigin?: PopoverOrigin | undefined;
17
+ transformOrigin?: PopoverOrigin | undefined;
15
18
  }
16
- export declare function CustomMenu({ items, anchorEl, handleClose, onClick, minWidth, width, id, }: MenuProps): import("react/jsx-runtime").JSX.Element;
19
+ export declare function CustomMenu({ items, anchorEl, handleClose, onClick, minWidth, width, id, anchorOrigin, transformOrigin, }: MenuProps): import("react/jsx-runtime").JSX.Element;
17
20
  export {};
@@ -33,6 +33,8 @@ interface SelectProps {
33
33
  id?: string;
34
34
  dontDeleteSelected?: boolean;
35
35
  anchorOrigin?: PopoverOrigin | undefined;
36
+ dontShowPlaceholder?: boolean;
37
+ icon?: React.ReactNode;
36
38
  }
37
- export declare function MUISelect({ value, onChange, options, onEdit, label, placeholder, showEditIcon, showAddOption, showDeleteIcon, addOptionLabel, fullWidth, onSave, noInlineAction, onDelete, disabledAddOption, menuWidth, width, disabled, maxChar, showWarningForTextLength, defaultLabel, size, id, dontDeleteSelected, showCopyIcon, onCopy, anchorOrigin, }: SelectProps): import("react/jsx-runtime").JSX.Element;
39
+ export declare function MUISelect({ value, onChange, options, onEdit, label, placeholder, showEditIcon, showAddOption, showDeleteIcon, addOptionLabel, fullWidth, onSave, noInlineAction, onDelete, disabledAddOption, menuWidth, width, disabled, maxChar, showWarningForTextLength, defaultLabel, size, id, dontDeleteSelected, showCopyIcon, onCopy, anchorOrigin, dontShowPlaceholder, icon, }: SelectProps): import("react/jsx-runtime").JSX.Element;
38
40
  export {};
@@ -9,3 +9,5 @@ export * from './Input/Input';
9
9
  export * from './Select/Select';
10
10
  export * from './Checkbox/Checkbox';
11
11
  export * from './Accordion/Accordion';
12
+ export * from './Dialog/Dialog';
13
+ export * from './Dialog/DialogHeader';