@dev-blinq/ui-systems 1.0.133 → 1.0.135

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 @@
1
+ export declare function ResizeSeparator(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Resizable separator (vertical – left/right)
3
+ */
4
+ export declare const StyledSeparator: import('@emotion/styled').StyledComponent<import('react').HTMLAttributes<HTMLDivElement> & {
5
+ className?: string | undefined;
6
+ elementRef?: import('react').Ref<HTMLDivElement> | undefined;
7
+ id?: string | number | undefined;
8
+ style?: import('react').CSSProperties | undefined;
9
+ } & {
10
+ theme?: import('@emotion/react').Theme;
11
+ }, {}, {}>;
12
+ /**
13
+ * Floating grip box
14
+ */
15
+ export declare const GripBox: import('@emotion/styled').StyledComponent<{
16
+ theme?: import('@emotion/react').Theme;
17
+ as?: import('react').ElementType;
18
+ }, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -8,3 +8,4 @@ export * from './Steps/Step';
8
8
  export * from './Steps/index.style';
9
9
  export * from './Steps/util';
10
10
  export * from './TourGuide/TourGuide';
11
+ export * from './ResizeSeparator/ResizeSeparator';
@@ -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 {};
@@ -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';