@dev-blinq/ui-systems 1.0.87 → 1.0.89

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.
@@ -1,2 +1,2 @@
1
1
  import { IconButtonProps } from '@mui/material';
2
- export declare const IconButtonCustom: ({ size, children, sx, ...rest }: IconButtonProps) => import("react/jsx-runtime").JSX.Element;
2
+ export declare const IconButtonCustom: ({ size, children, ...rest }: IconButtonProps) => import("react/jsx-runtime").JSX.Element;
@@ -25,6 +25,7 @@ interface SelectProps {
25
25
  disabled?: boolean;
26
26
  maxChar?: number;
27
27
  showWarningForTextLength?: boolean;
28
+ defaultLabel?: string;
28
29
  }
29
- export declare function MUISelect({ value, onChange, options, onEdit, label, placeholder, showEditIcon, showAddOption, showDeleteIcon, addOptionLabel, fullWidth, onSave, noInlineAction, onDelete, disabledAddOption, menuWidth, width, disabled, maxChar, showWarningForTextLength, }: SelectProps): import("react/jsx-runtime").JSX.Element;
30
+ 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, }: SelectProps): import("react/jsx-runtime").JSX.Element;
30
31
  export {};
@@ -2,7 +2,7 @@ import { ReactNode } from 'react';
2
2
  import { TypographyProps } from '@mui/material';
3
3
  type size = "xxs" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl" | "heading" | "headingXL";
4
4
  type weight = "medium" | "semi" | "bold" | "extra";
5
- export declare function CustomText({ value, size, weight, type, shouldTruncate, ...rest }: {
5
+ export declare function CustomText({ value, size, weight, shouldTruncate, ...rest }: {
6
6
  value: string | number | ReactNode;
7
7
  size?: size;
8
8
  weight?: weight;
@@ -1,6 +1,5 @@
1
1
  export * from './IconButton/IconButton';
2
2
  export * from './Tabs/Tabs';
3
- export * from './Tag/Tag';
4
3
  export * from './Tooltip/Tooltip';
5
4
  export * from './Text/Text';
6
5
  export * from './Menu/Menu';
@@ -9,4 +8,3 @@ export * from './Button/Button';
9
8
  export * from './Input/Input';
10
9
  export * from './Select/Select';
11
10
  export * from './Checkbox/Checkbox';
12
- export * from './Theme';
package/dist/index.d.ts CHANGED
@@ -7,4 +7,5 @@ export { default as CustomToggleSwitch } from './components/CustomToggler/Custom
7
7
  export { CustomTextArea } from './components/CustomInput/CustomInput';
8
8
  export { default as Transitioner } from './components/Transitioner/Transitioner';
9
9
  export * from './components/generic';
10
+ export * from './theme/ThemeProvider';
10
11
  export { textShortner, isTextLarge } from './functionalities/text-shortner';