@inntechcorp/it-design 2.1.101 → 2.2.0
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/alink/styled.d.ts +1 -1
- package/dist/global.css +7 -0
- package/dist/index.cjs.js +539 -1038
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +3 -1
- package/dist/index.esm.js +539 -1039
- package/dist/select/menu/styled.d.ts +1 -5
- package/dist/select/styled.d.ts +2 -1
- package/dist/select/toggle/label/single/SingleLabel.d.ts +2 -0
- package/dist/select/toggle/label/single/styled.d.ts +9 -1
- package/dist/stories/Select.stories.d.ts +1 -0
- package/dist/tinyscrollbar/index.d.ts +3 -1
- package/dist/types/SelectProps.d.ts +1 -0
- package/dist/utils/GetSizeBySizeSlug.d.ts +1 -1
- package/package.json +12 -9
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
import TinyScrollbar from '../../tinyscrollbar';
|
|
2
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;
|
|
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
|
-
}, never>> & string & Omit<typeof TinyScrollbar, keyof import("react").Component<any, {}, any>>;
|
|
2
|
+
declare const BodyWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
7
3
|
declare const ModalEnter: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
8
4
|
declare const ModalEnterActive: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
9
5
|
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,4 +4,5 @@ declare const Wrapper: import("styled-components/dist/types").IStyledComponentBa
|
|
|
4
4
|
$hasIcon?: boolean;
|
|
5
5
|
$filled: boolean;
|
|
6
6
|
}>> & string;
|
|
7
|
-
|
|
7
|
+
declare const VirtuosoScroller: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
8
|
+
export { Wrapper, VirtuosoScroller };
|
|
@@ -1,5 +1,13 @@
|
|
|
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;
|
|
4
7
|
}>> & string;
|
|
5
|
-
|
|
8
|
+
declare const PlaceholderWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
9
|
+
$size?: string;
|
|
10
|
+
$hasIcon?: boolean;
|
|
11
|
+
$hasImage?: boolean;
|
|
12
|
+
}>> & string;
|
|
13
|
+
export { Wrapper, InputWrapper, PlaceholderWrapper };
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import 'overlayscrollbars/styles/overlayscrollbars.css';
|
|
1
2
|
import { ChildrenProps } from 'types/ChildrenProps';
|
|
2
3
|
type TinyScrollbarProps = {
|
|
3
4
|
className: string;
|
|
4
5
|
children: ChildrenProps;
|
|
6
|
+
style?: React.CSSProperties;
|
|
5
7
|
};
|
|
6
|
-
export default function TinyScrollbar({ className, children }: TinyScrollbarProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default function TinyScrollbar({ className, children, style }: TinyScrollbarProps): import("react/jsx-runtime").JSX.Element;
|
|
7
9
|
export {};
|
|
@@ -56,6 +56,7 @@ export type SelectOptionProps = {
|
|
|
56
56
|
icon?: ChildrenProps;
|
|
57
57
|
image?: string;
|
|
58
58
|
disabled?: boolean;
|
|
59
|
+
searchText?: string;
|
|
59
60
|
};
|
|
60
61
|
export type SelectValue = string | number | (string | number)[];
|
|
61
62
|
export type SelectVariant = "default" | "solid" | "filled" | "outline" | "custom";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ITDSizeSlug } from "../index";
|
|
2
|
-
export default function GetSizeBySizeSlug(size: ITDSizeSlug): "
|
|
2
|
+
export default function GetSizeBySizeSlug(size: ITDSizeSlug): "small" | "medium" | "large" | "x-small" | "default" | "x-large" | "df";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inntechcorp/it-design",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "All in one Design library for web applications.",
|
|
5
5
|
"author": "Inn.Tech",
|
|
6
6
|
"license": "ISC",
|
|
@@ -32,22 +32,23 @@
|
|
|
32
32
|
"autoprefixer": "10.4.21",
|
|
33
33
|
"axios": "1.9.0",
|
|
34
34
|
"core-js": "3.42.0",
|
|
35
|
+
"dayjs": "^1.11.13",
|
|
35
36
|
"fast-deep-equal": "^3.1.3",
|
|
36
37
|
"i18next": "25.1.2",
|
|
37
38
|
"i18next-browser-languagedetector": "8.1.0",
|
|
38
39
|
"i18next-http-backend": "3.0.2",
|
|
39
40
|
"i18next-resources-to-backend": "^1.2.1",
|
|
40
|
-
"lodash-es": "
|
|
41
|
-
"moment": "2.30.1",
|
|
42
|
-
"moment-timezone": "0.
|
|
43
|
-
"overlayscrollbars": "2.
|
|
41
|
+
"lodash-es": "4.17.21",
|
|
42
|
+
"moment": "^2.30.1",
|
|
43
|
+
"moment-timezone": "^0.6.0",
|
|
44
|
+
"overlayscrollbars": "^2.11.3",
|
|
44
45
|
"overlayscrollbars-react": "0.5.0",
|
|
45
46
|
"postcss": "8.5.3",
|
|
46
47
|
"postcss-calc": "10.1.1",
|
|
47
48
|
"prop-types": "^15.8.1",
|
|
48
49
|
"query-string": "9.1.2",
|
|
49
|
-
"react": "19.
|
|
50
|
-
"react-dom": "19.
|
|
50
|
+
"react": "^19.0.0",
|
|
51
|
+
"react-dom": "^19.0.0",
|
|
51
52
|
"react-i18next": "15.5.1",
|
|
52
53
|
"react-nanny": "^2.15.0",
|
|
53
54
|
"react-number-format": "5.4.4",
|
|
@@ -56,9 +57,10 @@
|
|
|
56
57
|
"react-spring": "9.7.5",
|
|
57
58
|
"react-svg": "16.3.0",
|
|
58
59
|
"react-transition-group": "4.4.5",
|
|
60
|
+
"react-virtuoso": "^4.12.8",
|
|
59
61
|
"smoothscroll-polyfill": "^0.4.4",
|
|
60
|
-
"styled-components": "6.1.
|
|
61
|
-
"uuid": "
|
|
62
|
+
"styled-components": "6.1.13",
|
|
63
|
+
"uuid": "10.0.0",
|
|
62
64
|
"web-vitals": "5.0.0"
|
|
63
65
|
},
|
|
64
66
|
"devDependencies": {
|
|
@@ -112,6 +114,7 @@
|
|
|
112
114
|
"rollup-plugin-local-resolve": "^1.0.7",
|
|
113
115
|
"rollup-plugin-node-builtins": "^2.1.2",
|
|
114
116
|
"rollup-plugin-node-globals": "^1.4.0",
|
|
117
|
+
"rollup-plugin-node-polyfills": "^0.2.1",
|
|
115
118
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
116
119
|
"rollup-plugin-postcss": "^4.0.2",
|
|
117
120
|
"rollup-plugin-scss": "4.0.1",
|