@inialum/memories-react 0.4.0 → 1.0.1
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 +60 -12
- package/dist/assets/cross_icon.js +28 -0
- package/dist/assets/inialum_logo_light_transparent.js +184 -0
- package/dist/assets/inialum_logo_white_transparent.js +184 -0
- package/dist/assets/menu_icon.js +38 -0
- package/dist/assets/x_logo.js +14 -0
- package/dist/components/{Button.d.ts → Button/Button.d.ts} +1 -1
- package/dist/components/Button/Button.js +19 -0
- package/dist/components/Button/Button.stories.d.ts +18 -0
- package/dist/components/Button/index.d.ts +1 -0
- package/dist/components/Button/index.js +2 -0
- package/dist/components/{ButtonLink.d.ts → ButtonLink/ButtonLink.d.ts} +1 -1
- package/dist/components/ButtonLink/ButtonLink.js +22 -0
- package/dist/components/ButtonLink/ButtonLink.stories.d.ts +19 -0
- package/dist/components/ButtonLink/index.d.ts +1 -0
- package/dist/components/ButtonLink/index.js +2 -0
- package/dist/components/Footer/Footer.js +127 -0
- package/dist/components/Footer/Footer.stories.d.ts +9 -0
- package/dist/components/Footer/index.d.ts +1 -0
- package/dist/components/Footer/index.js +2 -0
- package/dist/components/Header/Header.js +38 -0
- package/dist/components/Header/Header.stories.d.ts +11 -0
- package/dist/components/Header/index.d.ts +1 -0
- package/dist/components/Header/index.js +2 -0
- package/dist/components/Navigation/Navigation.js +169 -0
- package/dist/components/Navigation/Navigation.stories.d.ts +17 -0
- package/dist/components/Navigation/index.d.ts +1 -0
- package/dist/components/Navigation/index.js +2 -0
- package/dist/components/index.js +11 -0
- package/dist/index.js +7 -20485
- package/package.json +41 -31
- /package/dist/components/{Footer.d.ts → Footer/Footer.d.ts} +0 -0
- /package/dist/components/{Header.d.ts → Header/Header.d.ts} +0 -0
- /package/dist/components/{Navigation.d.ts → Navigation/Navigation.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inialum/memories-react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "React component library for the Memories - INIALUM Design System",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": {
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
|
-
"url": "https://github.com/inialum/memories"
|
|
14
|
+
"url": "https://github.com/inialum/memories",
|
|
15
|
+
"directory": "packages/react"
|
|
15
16
|
},
|
|
16
17
|
"publishConfig": {
|
|
17
18
|
"access": "public",
|
|
@@ -28,50 +29,59 @@
|
|
|
28
29
|
},
|
|
29
30
|
"main": "./dist/index.js",
|
|
30
31
|
"types": "./dist/index.d.ts",
|
|
32
|
+
"exports": {
|
|
33
|
+
".": {
|
|
34
|
+
"import": {
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"default": "./dist/index.js"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"./*": {
|
|
40
|
+
"import": {
|
|
41
|
+
"types": "./dist/components/*/index.d.ts",
|
|
42
|
+
"default": "./dist/components/*/index.js"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
},
|
|
31
46
|
"files": [
|
|
32
47
|
"./dist/**/*.js",
|
|
33
48
|
"./dist/**/*.d.ts"
|
|
34
49
|
],
|
|
35
50
|
"dependencies": {
|
|
36
51
|
"clsx": "^2.1.1",
|
|
37
|
-
"react-remove-scroll": "^2.
|
|
52
|
+
"react-remove-scroll": "^2.7.2"
|
|
38
53
|
},
|
|
39
54
|
"devDependencies": {
|
|
40
|
-
"@storybook/addon-a11y": "^
|
|
41
|
-
"@storybook/addon-
|
|
42
|
-
"@storybook/addon-
|
|
43
|
-
"@storybook/
|
|
44
|
-
"@storybook/blocks": "^8.4.1",
|
|
45
|
-
"@storybook/manager-api": "^8.4.1",
|
|
46
|
-
"@storybook/react": "^8.4.1",
|
|
47
|
-
"@storybook/react-vite": "^8.4.1",
|
|
48
|
-
"@storybook/test": "^8.4.1",
|
|
49
|
-
"@storybook/theming": "^8.4.1",
|
|
55
|
+
"@storybook/addon-a11y": "^10.3.1",
|
|
56
|
+
"@storybook/addon-docs": "^10.3.1",
|
|
57
|
+
"@storybook/addon-links": "^10.3.1",
|
|
58
|
+
"@storybook/react-vite": "^10.3.1",
|
|
50
59
|
"@svgr/plugin-svgo": "^8.1.0",
|
|
51
|
-
"@
|
|
52
|
-
"@types/react
|
|
53
|
-
"@
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"react": "^
|
|
57
|
-
"react-dom": "^
|
|
58
|
-
"storybook": "^
|
|
59
|
-
"tailwindcss": "^
|
|
60
|
-
"vite": "^
|
|
61
|
-
"vite-plugin-dts": "^4.
|
|
62
|
-
"vite-plugin-svgr": "^4.
|
|
63
|
-
"@inialum/memories-
|
|
60
|
+
"@tailwindcss/vite": "^4.2.2",
|
|
61
|
+
"@types/react": "^19.2.14",
|
|
62
|
+
"@types/react-dom": "^19.2.3",
|
|
63
|
+
"@vitejs/plugin-react-swc": "^4.3.0",
|
|
64
|
+
"globby": "^16.1.1",
|
|
65
|
+
"react": "^19.2.4",
|
|
66
|
+
"react-dom": "^19.2.4",
|
|
67
|
+
"storybook": "^10.3.1",
|
|
68
|
+
"tailwindcss": "^4.2.2",
|
|
69
|
+
"vite": "^8.0.1",
|
|
70
|
+
"vite-plugin-dts": "^4.5.4",
|
|
71
|
+
"vite-plugin-svgr": "^4.5.0",
|
|
72
|
+
"@inialum/memories-tailwind-theme": "1.0.1"
|
|
64
73
|
},
|
|
65
74
|
"peerDependencies": {
|
|
66
|
-
"@inialum/memories-
|
|
67
|
-
"react": ">=
|
|
68
|
-
"react-dom": ">=
|
|
69
|
-
"tailwindcss": ">=
|
|
75
|
+
"@inialum/memories-tailwind-theme": ">=1.0.1",
|
|
76
|
+
"react": ">= 19.0.0",
|
|
77
|
+
"react-dom": ">= 19.0.0",
|
|
78
|
+
"tailwindcss": ">= 4.0.0"
|
|
70
79
|
},
|
|
71
80
|
"scripts": {
|
|
81
|
+
"dev": "pnpm run storybook:dev",
|
|
72
82
|
"build": "vite build",
|
|
73
83
|
"lint": "biome check",
|
|
74
|
-
"
|
|
84
|
+
"fix": "biome check --write",
|
|
75
85
|
"storybook:dev": "storybook dev -p 6007 --no-open",
|
|
76
86
|
"storybook:build": "storybook build",
|
|
77
87
|
"typecheck": "tsc --noEmit"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|