@inntechcorp/it-design 2.2.0 → 2.2.2
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/index.cjs.js +534 -604
- package/dist/index.esm.js +534 -603
- package/dist/select/menu/styled.d.ts +6 -1
- package/dist/select/styled.d.ts +1 -2
- package/dist/select/toggle/label/single/SingleLabel.d.ts +0 -2
- package/dist/select/toggle/label/single/styled.d.ts +1 -9
- package/dist/utils/GetSizeBySizeSlug.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1,5 +1,10 @@
|
|
|
1
|
+
import TinyScrollbar from '../../tinyscrollbar';
|
|
1
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;
|
|
2
|
-
declare const BodyWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<
|
|
3
|
+
declare const BodyWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<{
|
|
4
|
+
className: string;
|
|
5
|
+
children: import("../../types/ChildrenProps").ChildrenProps;
|
|
6
|
+
style?: React.CSSProperties;
|
|
7
|
+
}, never>> & string & Omit<typeof TinyScrollbar, keyof import("react").Component<any, {}, any>>;
|
|
3
8
|
declare const ModalEnter: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
4
9
|
declare const ModalEnterActive: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
5
10
|
declare const ModalExit: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
package/dist/select/styled.d.ts
CHANGED
|
@@ -4,5 +4,4 @@ declare const Wrapper: import("styled-components/dist/types").IStyledComponentBa
|
|
|
4
4
|
$hasIcon?: boolean;
|
|
5
5
|
$filled: boolean;
|
|
6
6
|
}>> & string;
|
|
7
|
-
|
|
8
|
-
export { Wrapper, VirtuosoScroller };
|
|
7
|
+
export { Wrapper };
|
|
@@ -1,13 +1,5 @@
|
|
|
1
1
|
declare const Wrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
2
2
|
declare const InputWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, {
|
|
3
3
|
$preventInteractions?: boolean;
|
|
4
|
-
$hasValue?: boolean;
|
|
5
|
-
$isOpen?: boolean;
|
|
6
|
-
$showSearch?: boolean;
|
|
7
4
|
}>> & string;
|
|
8
|
-
|
|
9
|
-
$size?: string;
|
|
10
|
-
$hasIcon?: boolean;
|
|
11
|
-
$hasImage?: boolean;
|
|
12
|
-
}>> & string;
|
|
13
|
-
export { Wrapper, InputWrapper, PlaceholderWrapper };
|
|
5
|
+
export { Wrapper, InputWrapper };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ITDSizeSlug } from "../index";
|
|
2
|
-
export default function GetSizeBySizeSlug(size: ITDSizeSlug): "
|
|
2
|
+
export default function GetSizeBySizeSlug(size: ITDSizeSlug): "large" | "small" | "x-small" | "medium" | "default" | "x-large" | "df";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inntechcorp/it-design",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.2",
|
|
4
4
|
"description": "All in one Design library for web applications.",
|
|
5
5
|
"author": "Inn.Tech",
|
|
6
6
|
"license": "ISC",
|
|
@@ -42,7 +42,6 @@
|
|
|
42
42
|
"moment": "^2.30.1",
|
|
43
43
|
"moment-timezone": "^0.6.0",
|
|
44
44
|
"overlayscrollbars": "^2.11.3",
|
|
45
|
-
"overlayscrollbars-react": "0.5.0",
|
|
46
45
|
"postcss": "8.5.3",
|
|
47
46
|
"postcss-calc": "10.1.1",
|
|
48
47
|
"prop-types": "^15.8.1",
|
|
@@ -59,7 +58,7 @@
|
|
|
59
58
|
"react-transition-group": "4.4.5",
|
|
60
59
|
"react-virtuoso": "^4.12.8",
|
|
61
60
|
"smoothscroll-polyfill": "^0.4.4",
|
|
62
|
-
"styled-components": "6.1.
|
|
61
|
+
"styled-components": "6.1.18",
|
|
63
62
|
"uuid": "10.0.0",
|
|
64
63
|
"web-vitals": "5.0.0"
|
|
65
64
|
},
|
|
@@ -137,7 +136,8 @@
|
|
|
137
136
|
},
|
|
138
137
|
"peerDependencies": {
|
|
139
138
|
"react": "^19.0.0",
|
|
140
|
-
"react-dom": "^19.0.0"
|
|
139
|
+
"react-dom": "^19.0.0",
|
|
140
|
+
"styled-components": "^6.1.18"
|
|
141
141
|
},
|
|
142
142
|
"bugs": {
|
|
143
143
|
"url": "https://github.com/inntechcorp/it-design-library/issues"
|