@m4l/graphics 0.0.4 → 0.0.7

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,6 +1,6 @@
1
1
  import { LinkProps as MuiLinkProps } from '@mui/material';
2
2
  import { To } from 'history';
3
- import { SkeletonProps } from '~/lib/@types';
3
+ import { SkeletonProps } from '~/lib/types';
4
4
  export interface LinkWithRouteProps extends MuiLinkProps {
5
5
  to: To;
6
6
  skeletonProps: SkeletonProps;
@@ -1,5 +1,5 @@
1
1
  import { TypographyProps as MUITypographyProps } from '@mui/material';
2
- import { SkeletonProps } from '~/lib/@types';
2
+ import { SkeletonProps } from '~/lib/types';
3
3
  export interface TypographyProps extends MUITypographyProps {
4
4
  skeletonProps?: SkeletonProps;
5
5
  }
@@ -1,5 +1,4 @@
1
1
  export * from './ModalContext';
2
2
  export * from './LocalesContext';
3
3
  export * from './HostThemeContext';
4
- export type { HostThemeType } from './HostThemeContext/types';
5
4
  export { HelmetProvider } from 'react-helmet-async';
@@ -8,3 +8,4 @@ export type { ChartPaletteOptions } from './theme/palette';
8
8
  export type { GridPaletteOptions } from './theme/palette';
9
9
  export { defaultThemeOptions } from './theme/defaultThemeOptions';
10
10
  export { default as fnComponentsOverrides } from './theme/overrides';
11
+ export type { HostThemeType } from './types';
@@ -4,3 +4,4 @@ export interface SkeletonProps {
4
4
  height?: string | number;
5
5
  }
6
6
  export declare type ThemeColorPresets = 'default' | 'purple' | 'cyan' | 'blue' | 'orange' | 'red';
7
+ export type { HostThemeType } from '../contexts/HostThemeContext/types';
@@ -1,4 +1,4 @@
1
- import { ThemeColorPresets } from '../@types';
1
+ import { ThemeColorPresets } from '../types';
2
2
  export declare const colorPresets: ({
3
3
  LightSelected: string;
4
4
  LightSelectedHover: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@m4l/graphics",
3
3
  "private": false,
4
- "version": "0.0.4",
4
+ "version": "0.0.7",
5
5
  "license": "UNLICENSED",
6
6
  "author": "M4L Team",
7
7
  "scripts": {