@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 +1 -0
- package/dist/components/generic/Dialog/Dialog.d.ts +6 -0
- package/dist/components/generic/Dialog/DialogHeader.d.ts +13 -0
- package/dist/components/generic/Dialog/index.style.d.ts +3 -0
- package/dist/components/generic/Menu/Menu.d.ts +4 -1
- package/dist/components/generic/Select/Select.d.ts +3 -1
- package/dist/components/generic/index.d.ts +2 -0
- package/dist/index.js +139 -133
- package/dist/index.mjs +4255 -4212
- package/package.json +1 -1
package/dist/colors.css
CHANGED
|
@@ -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 {};
|
|
@@ -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 {};
|