@inntechcorp/it-design 2.0.73 → 2.0.77
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/checkbox/styled.d.ts +1 -0
- package/dist/context/ITDContext.d.ts +2 -1
- package/dist/context/styled.d.ts +3 -0
- package/dist/enums/enum.d.ts +1 -1
- package/dist/global.css +55 -0
- package/dist/index.cjs.js +65 -65
- package/dist/index.d.ts +10 -4
- package/dist/index.esm.js +53 -53
- package/dist/output-DCvuWNga.css +241 -0
- package/dist/output-DjWTgiS1.css +241 -0
- package/dist/select/style.settings.d.ts +17 -8
- package/dist/select/toggle/Toggle.d.ts +1 -1
- package/dist/select/toggle/label/single/SingleLabel.d.ts +12 -3
- package/dist/select/toggle/label/single/styled.d.ts +3 -4
- package/dist/stories/root/index.d.ts +1 -1
- package/dist/types/SelectProps.d.ts +7 -2
- package/package.json +4 -3
|
@@ -3,6 +3,7 @@ declare const Wrapper: import("styled-components/dist/types").IStyledComponentBa
|
|
|
3
3
|
declare const CheckboxInnerWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
4
4
|
declare const Checkmark: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {
|
|
5
5
|
$isChecked: boolean;
|
|
6
|
+
$isAnimated: 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;
|
|
@@ -13,7 +13,8 @@ export type ITDContextType = {
|
|
|
13
13
|
changeLanguage: (value: string) => void;
|
|
14
14
|
};
|
|
15
15
|
export type ITDProviderProps = {
|
|
16
|
-
theme
|
|
16
|
+
theme?: string;
|
|
17
|
+
language?: string;
|
|
17
18
|
children: ChildrenProps;
|
|
18
19
|
};
|
|
19
20
|
declare const ITDContext: import("react").Context<ITDContextType>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const Wrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
3
|
+
export { Wrapper };
|
package/dist/enums/enum.d.ts
CHANGED
package/dist/global.css
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
*, :after, :before, ::placeholder {
|
|
2
|
+
|
|
3
|
+
box-sizing: border-box;
|
|
4
|
+
-webkit-font-smoothing: antialiased;
|
|
5
|
+
|
|
6
|
+
font-family : "Inter", sans-serif;
|
|
7
|
+
font-size: 14px;
|
|
8
|
+
font-weight: 400;
|
|
9
|
+
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
button, input, optgroup, select, textarea {
|
|
13
|
+
font-family: inherit;
|
|
14
|
+
font-feature-settings: inherit;
|
|
15
|
+
font-variation-settings: inherit;
|
|
16
|
+
font-size: 100%;
|
|
17
|
+
font-weight: inherit;
|
|
18
|
+
line-height: inherit;
|
|
19
|
+
color: inherit;
|
|
20
|
+
margin: 0;
|
|
21
|
+
padding: 0;
|
|
22
|
+
text-transform: none;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
[role=button], button {
|
|
26
|
+
cursor: pointer;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
input {
|
|
30
|
+
background: transparent;
|
|
31
|
+
border: none;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
[type=button], [type=reset], [type=submit], button {
|
|
35
|
+
background-color: transparent;
|
|
36
|
+
background-image: none;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
a {
|
|
40
|
+
cursor: pointer;
|
|
41
|
+
color: #029CFD;
|
|
42
|
+
text-decoration: none;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
a:hover {
|
|
46
|
+
color: #0083d4;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
strong {
|
|
50
|
+
font-weight: 600;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
input:focus-visible {
|
|
54
|
+
outline: none;
|
|
55
|
+
}
|