@inntechcorp/it-design 2.0.47 → 2.0.49
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/context/ITDContext.d.ts +0 -2
- package/dist/index.cjs.js +3 -3
- package/dist/index.d.ts +2 -3
- package/dist/index.esm.js +3 -3
- package/dist/spin/index.d.ts +2 -1
- package/dist/spin/styled.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -10,13 +10,11 @@ import { ModalProps as ModalProps$1 } from 'types/ModalProps';
|
|
|
10
10
|
type ITDContextType = {
|
|
11
11
|
theme: string;
|
|
12
12
|
brokenImage: string;
|
|
13
|
-
dummyTeamImage: string;
|
|
14
13
|
dateFormat: string;
|
|
15
14
|
language: string;
|
|
16
15
|
locale: string;
|
|
17
16
|
changeTheme: (value: string) => void;
|
|
18
17
|
changeBrokenImage: (value: string) => void;
|
|
19
|
-
changeDummyTeamImage: (value: string) => void;
|
|
20
18
|
changeDateFormat: (value: string) => void;
|
|
21
19
|
changeLocale: (value: string) => void;
|
|
22
20
|
changeLanguage: (value: string) => void;
|
|
@@ -614,11 +612,12 @@ declare const ALink: (props: any) => react_jsx_runtime.JSX.Element;
|
|
|
614
612
|
|
|
615
613
|
interface ISpin {
|
|
616
614
|
updating?: boolean;
|
|
615
|
+
opacity?: boolean;
|
|
617
616
|
size?: number;
|
|
618
617
|
className?: string;
|
|
619
618
|
children?: any;
|
|
620
619
|
}
|
|
621
|
-
declare const Spin: ({ updating, size, className, children }: ISpin) => react_jsx_runtime.JSX.Element | null;
|
|
620
|
+
declare const Spin: ({ updating, opacity, size, className, children }: ISpin) => react_jsx_runtime.JSX.Element | null;
|
|
622
621
|
|
|
623
622
|
declare function BackTop(props: any): react_jsx_runtime.JSX.Element;
|
|
624
623
|
|