@inntechcorp/it-design 2.2.87 → 2.2.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.
@@ -3,6 +3,7 @@ declare const CheckboxInnerWrapper: import("styled-components/dist/types").IStyl
3
3
  declare const Checkmark: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {
4
4
  $isChecked: boolean;
5
5
  $isAnimated: boolean;
6
+ $isIndeterminate?: boolean;
6
7
  }>> & string;
7
8
  declare const CheckboxInput: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, never>> & string;
8
9
  declare const ErrorTooltip: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
@@ -0,0 +1,8 @@
1
+ import { ReactNode } from 'react';
2
+ import type { ITDTheme } from '../types/Theme';
3
+ export type ITDThemeProviderProps = {
4
+ themeName?: 'light' | 'dark';
5
+ customTheme?: Partial<ITDTheme>;
6
+ children: ReactNode;
7
+ };
8
+ export default function ITDThemeProvider({ themeName, customTheme, children }: ITDThemeProviderProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,3 @@
1
+ import type { ITDTheme } from '../../types/Theme';
2
+ declare const darkTheme: ITDTheme;
3
+ export default darkTheme;
@@ -0,0 +1,5 @@
1
+ export { default as AddDefaultThemeStyle } from './AddDefaultThemeStyle';
2
+ export { default as UpdateThemeStyle } from './UpdateThemeStyle';
3
+ export { default as lightTheme } from './light';
4
+ export { default as darkTheme } from './dark';
5
+ export { default as themes } from './themes.js';
@@ -0,0 +1,3 @@
1
+ import type { ITDTheme } from '../../types/Theme';
2
+ declare const lightTheme: ITDTheme;
3
+ export default lightTheme;
@@ -0,0 +1,5 @@
1
+ declare const themes: {
2
+ light: import("./index").ITDTheme;
3
+ dark: import("./index").ITDTheme;
4
+ };
5
+ export default themes;