@dev-blinq/ui-systems 1.0.68 → 1.0.70

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,3 @@
1
+ import { default as React } from 'react';
2
+ import { ButtonProps as MUIButtonProps } from '@mui/material';
3
+ export declare const MUIButton: React.FC<MUIButtonProps>;
@@ -1,6 +1,6 @@
1
1
  export declare const StyledIconButton: import('@emotion/styled').StyledComponent<import('@mui/material').IconButtonOwnProps & Omit<import('@mui/material').ButtonBaseOwnProps, "classes"> & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
2
2
  ref?: ((instance: HTMLButtonElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLButtonElement> | null | undefined;
3
- }, "disabled" | "size" | "className" | "style" | "classes" | "color" | "children" | "sx" | "tabIndex" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge"> & {
3
+ }, "disabled" | "size" | "className" | "style" | "classes" | "color" | "children" | "sx" | "tabIndex" | "action" | "loading" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "loadingIndicator"> & {
4
4
  theme?: import('@emotion/react').Theme;
5
5
  } & {
6
6
  component?: import('react').ElementType;
@@ -0,0 +1,9 @@
1
+ import { default as React } from 'react';
2
+ import { TextFieldProps } from '@mui/material';
3
+ type MUIInputProps = TextFieldProps & {
4
+ startIcon?: React.ReactNode;
5
+ endIcon?: React.ReactNode;
6
+ labelText?: string;
7
+ };
8
+ export declare const MUIInput: React.FC<MUIInputProps>;
9
+ export {};
@@ -6,5 +6,5 @@ interface TabsProps extends MUITabsprops {
6
6
  count?: number;
7
7
  }[];
8
8
  }
9
- export declare function Tabs({ value, onChange, tabs }: TabsProps): import("react/jsx-runtime").JSX.Element;
9
+ export declare function MUITabs({ value, onChange, tabs }: TabsProps): import("react/jsx-runtime").JSX.Element;
10
10
  export {};
@@ -1,6 +1,6 @@
1
1
  export declare const StyledTabs: import('@emotion/styled').StyledComponent<import('@mui/material').TabsOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
2
2
  ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
3
- }, "className" | "style" | "classes" | "children" | "sx" | "variant" | "aria-label" | "aria-labelledby" | "onChange" | "orientation" | "value" | "action" | "allowScrollButtonsMobile" | "centered" | "slots" | "slotProps" | "indicatorColor" | "ScrollButtonComponent" | "scrollButtons" | "selectionFollowsFocus" | "TabIndicatorProps" | "TabScrollButtonProps" | "textColor" | "visibleScrollbar"> & {
3
+ }, "className" | "style" | "classes" | "children" | "sx" | "variant" | "aria-label" | "aria-labelledby" | "onChange" | "orientation" | "value" | "action" | "allowScrollButtonsMobile" | "centered" | "indicatorColor" | "ScrollButtonComponent" | "scrollButtons" | "selectionFollowsFocus" | "TabIndicatorProps" | "TabScrollButtonProps" | "textColor" | "visibleScrollbar" | "slots" | "slotProps"> & {
4
4
  theme?: import('@emotion/react').Theme;
5
5
  }, {}, {}>;
6
6
  export declare const StyledTab: import('@emotion/styled').StyledComponent<import('@mui/material').TabOwnProps & Omit<import('@mui/material').ButtonBaseOwnProps, "classes"> & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
@@ -0,0 +1,9 @@
1
+ export * from './IconButton/IconButton';
2
+ export * from './Tabs/Tabs';
3
+ export * from './Tag/Tag';
4
+ export * from './Tooltip/Tooltip';
5
+ export * from './Text/Text';
6
+ export * from './Menu/Menu';
7
+ export * from './Loading/LinearProgressBar';
8
+ export * from './Button/Button';
9
+ export * from './Input/Input';
package/dist/index.d.ts CHANGED
@@ -6,5 +6,5 @@ export { default as TypographyCustom } from './components/Typography/Typography'
6
6
  export { default as CustomToggleSwitch } from './components/CustomToggler/CustomToggler';
7
7
  export { CustomTextArea } from './components/CustomInput/CustomInput';
8
8
  export { default as Transitioner } from './components/Transitioner/Transitioner';
9
- export * from './components/core';
9
+ export * from './components/generic';
10
10
  export { textShortner, isTextLarge } from './functionalities/text-shortner';