@agregio-solutions/design-system 1.89.0 → 1.89.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/README.md +11 -0
- package/dist/design-system.cjs +508 -508
- package/dist/design-system.js +11557 -11108
- package/dist/packages/components/FileUpload/FileUpload.styled.d.ts +3 -3
- package/dist/packages/components/FileUpload/components/FileDetails/FileDetails.styled.d.ts +5 -5
- package/dist/packages/components/Toaster/Toaster.styles.d.ts +1 -1
- package/dist/packages/internal-components/CoreTextInput/CoreTextInput.styled.d.ts +1 -1
- package/package.json +59 -56
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const Root: import('
|
|
2
|
-
export declare const List: import('
|
|
3
|
-
export declare const DropZone: import('
|
|
1
|
+
export declare const Root: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
2
|
+
export declare const List: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLUListElement>, HTMLUListElement>, never>> & string;
|
|
3
|
+
export declare const DropZone: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react-aria-components').DropZoneProps & import('react').RefAttributes<HTMLDivElement>, never>> & string & Omit<import('react').ForwardRefExoticComponent<import('react-aria-components').DropZoneProps & import('react').RefAttributes<HTMLDivElement>>, keyof import('react').Component<any, {}, any>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export declare const Root: import('
|
|
2
|
-
export declare const FileIcon: import('
|
|
3
|
-
export declare const Informations: import('
|
|
4
|
-
export declare const FileName: import('
|
|
5
|
-
export declare const FileSize: import('
|
|
1
|
+
export declare const Root: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, never>> & string;
|
|
2
|
+
export declare const FileIcon: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('../../../Icon/Icon').Props, never>> & string & Omit<({ name, ...props }: import('../../../Icon/Icon').Props) => import("react/jsx-runtime").JSX.Element, keyof import('react').Component<any, {}, any>>;
|
|
3
|
+
export declare const Informations: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
4
|
+
export declare const FileName: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
5
|
+
export declare const FileSize: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const Toaster: import('
|
|
1
|
+
export declare const Toaster: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('sonner').ToasterProps & import('react').RefAttributes<HTMLElement>, never>> & string & Omit<import('react').ForwardRefExoticComponent<import('sonner').ToasterProps & import('react').RefAttributes<HTMLElement>>, keyof import('react').Component<any, {}, any>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const CoreTextInput: import('
|
|
1
|
+
export declare const CoreTextInput: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react-aria-components').InputProps & import('react').RefAttributes<HTMLInputElement>, {
|
|
2
2
|
hasIcon: boolean;
|
|
3
3
|
}>> & string & Omit<(props: import('react-aria-components').InputProps & React.RefAttributes<HTMLInputElement>) => React.ReactElement | null, keyof import('react').Component<any, {}, any>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agregio-solutions/design-system",
|
|
3
|
-
"version": "1.89.
|
|
3
|
+
"version": "1.89.2",
|
|
4
4
|
"description": "React Component library and Storybook that is part of the Design System for Agregio Solutions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "dist/design-system.js",
|
|
@@ -16,12 +16,15 @@
|
|
|
16
16
|
"build": "vite build",
|
|
17
17
|
"build-storybook": "storybook build",
|
|
18
18
|
"chromatic": "chromatic",
|
|
19
|
+
"consumer:smoke-check": "npm run build && node internal/consumer-check.mjs",
|
|
19
20
|
"eslint": "eslint .",
|
|
20
21
|
"formatters": "npm run prettier:check && npm run eslint && npm run typescript:check",
|
|
21
22
|
"integrity": "npm run formatters && npm run build && npm run vitest:all && npm run storybook:test",
|
|
22
23
|
"jest:compatibility-check": "npm run build && jest internal/test-jest-compatibility.jest.js",
|
|
24
|
+
"playwright:install": "playwright install --with-deps chromium",
|
|
23
25
|
"pre-commit": "lint-staged && npm run typescript:check && npm run vitest:only-changed && npm run storybook:test:only-changed",
|
|
24
26
|
"prepare": "husky",
|
|
27
|
+
"semantic-release": "semantic-release",
|
|
25
28
|
"prettier:check": "prettier . --check --ignore-path .gitignore",
|
|
26
29
|
"prettier:write": "prettier . --write --ignore-path .gitignore",
|
|
27
30
|
"repomix": "repomix",
|
|
@@ -35,63 +38,63 @@
|
|
|
35
38
|
"vitest:watch": "vitest --project unit"
|
|
36
39
|
},
|
|
37
40
|
"devDependencies": {
|
|
38
|
-
"@emotion/react": "
|
|
39
|
-
"@emotion/styled": "
|
|
40
|
-
"@eslint/compat": "
|
|
41
|
-
"@eslint/js": "
|
|
42
|
-
"@mui/material": "
|
|
43
|
-
"@semantic-release/gitlab": "
|
|
44
|
-
"@semantic-release/npm": "
|
|
45
|
-
"@storybook/addon-a11y": "
|
|
46
|
-
"@storybook/addon-docs": "
|
|
47
|
-
"@storybook/addon-links": "
|
|
48
|
-
"@storybook/addon-vitest": "
|
|
49
|
-
"@storybook/react-vite": "
|
|
50
|
-
"@tanstack/react-query": "
|
|
51
|
-
"@tanstack/react-table": "
|
|
52
|
-
"@types/lodash": "
|
|
53
|
-
"@types/node": "
|
|
54
|
-
"@types/react": "
|
|
55
|
-
"@types/react-dom": "
|
|
56
|
-
"@vitejs/plugin-react": "
|
|
57
|
-
"@vitest/browser": "
|
|
58
|
-
"@vitest/browser-playwright": "
|
|
59
|
-
"chromatic": "
|
|
60
|
-
"conventional-changelog-conventionalcommits": "
|
|
61
|
-
"eslint-config-prettier": "
|
|
62
|
-
"eslint-plugin-jest-dom": "
|
|
63
|
-
"eslint-plugin-react": "
|
|
64
|
-
"eslint-plugin-react-hooks": "
|
|
65
|
-
"eslint-plugin-storybook": "
|
|
66
|
-
"husky": "
|
|
67
|
-
"jest": "
|
|
68
|
-
"lint-staged": "
|
|
69
|
-
"lodash": "
|
|
70
|
-
"mockdate": "
|
|
71
|
-
"playwright": "
|
|
72
|
-
"prettier": "
|
|
73
|
-
"react": "19.2.
|
|
74
|
-
"react-dom": "19.2.
|
|
75
|
-
"react-hook-form": "
|
|
76
|
-
"react-router-dom": "
|
|
77
|
-
"recharts": "
|
|
78
|
-
"remark-gfm": "
|
|
79
|
-
"repomix": "
|
|
80
|
-
"semantic-release": "
|
|
81
|
-
"storybook": "
|
|
82
|
-
"typescript-eslint": "
|
|
83
|
-
"vite-plugin-dts": "
|
|
84
|
-
"vitest": "
|
|
41
|
+
"@emotion/react": "11.14.0",
|
|
42
|
+
"@emotion/styled": "11.14.1",
|
|
43
|
+
"@eslint/compat": "2.0.4",
|
|
44
|
+
"@eslint/js": "9.39.4",
|
|
45
|
+
"@mui/material": "5.18.0",
|
|
46
|
+
"@semantic-release/gitlab": "13.3.2",
|
|
47
|
+
"@semantic-release/npm": "13.1.5",
|
|
48
|
+
"@storybook/addon-a11y": "10.3.4",
|
|
49
|
+
"@storybook/addon-docs": "10.3.4",
|
|
50
|
+
"@storybook/addon-links": "10.3.4",
|
|
51
|
+
"@storybook/addon-vitest": "10.3.4",
|
|
52
|
+
"@storybook/react-vite": "10.3.4",
|
|
53
|
+
"@tanstack/react-query": "5.96.2",
|
|
54
|
+
"@tanstack/react-table": "8.21.3",
|
|
55
|
+
"@types/lodash": "4.17.24",
|
|
56
|
+
"@types/node": "24.12.2",
|
|
57
|
+
"@types/react": "19.2.14",
|
|
58
|
+
"@types/react-dom": "19.2.3",
|
|
59
|
+
"@vitejs/plugin-react": "5.1.4",
|
|
60
|
+
"@vitest/browser": "4.1.2",
|
|
61
|
+
"@vitest/browser-playwright": "4.1.2",
|
|
62
|
+
"chromatic": "16.1.0",
|
|
63
|
+
"conventional-changelog-conventionalcommits": "9.3.1",
|
|
64
|
+
"eslint-config-prettier": "10.1.8",
|
|
65
|
+
"eslint-plugin-jest-dom": "5.5.0",
|
|
66
|
+
"eslint-plugin-react": "7.37.5",
|
|
67
|
+
"eslint-plugin-react-hooks": "7.0.1",
|
|
68
|
+
"eslint-plugin-storybook": "10.3.4",
|
|
69
|
+
"husky": "9.1.7",
|
|
70
|
+
"jest": "30.3.0",
|
|
71
|
+
"lint-staged": "16.4.0",
|
|
72
|
+
"lodash": "4.18.1",
|
|
73
|
+
"mockdate": "3.0.5",
|
|
74
|
+
"playwright": "1.59.1",
|
|
75
|
+
"prettier": "3.8.1",
|
|
76
|
+
"react": "19.2.4",
|
|
77
|
+
"react-dom": "19.2.4",
|
|
78
|
+
"react-hook-form": "7.72.0",
|
|
79
|
+
"react-router-dom": "7.14.0",
|
|
80
|
+
"recharts": "3.8.1",
|
|
81
|
+
"remark-gfm": "4.0.1",
|
|
82
|
+
"repomix": "1.13.1",
|
|
83
|
+
"semantic-release": "25.0.3",
|
|
84
|
+
"storybook": "10.3.4",
|
|
85
|
+
"typescript-eslint": "8.58.0",
|
|
86
|
+
"vite-plugin-dts": "4.5.4",
|
|
87
|
+
"vitest": "4.1.2"
|
|
85
88
|
},
|
|
86
89
|
"dependencies": {
|
|
87
|
-
"@react-aria/optimize-locales-plugin": "
|
|
88
|
-
"clsx": "
|
|
89
|
-
"normalize.css": "
|
|
90
|
-
"react-aria-components": "
|
|
91
|
-
"sonner": "
|
|
92
|
-
"styled-components": "
|
|
93
|
-
"vite": "
|
|
94
|
-
"vite-tsconfig-paths": "
|
|
90
|
+
"@react-aria/optimize-locales-plugin": "1.1.5",
|
|
91
|
+
"clsx": "2.1.1",
|
|
92
|
+
"normalize.css": "8.0.1",
|
|
93
|
+
"react-aria-components": "1.16.0",
|
|
94
|
+
"sonner": "2.0.7",
|
|
95
|
+
"styled-components": "6.3.12",
|
|
96
|
+
"vite": "7.3.1",
|
|
97
|
+
"vite-tsconfig-paths": "6.1.1"
|
|
95
98
|
},
|
|
96
99
|
"overrides": {
|
|
97
100
|
"storybook": "$storybook"
|