@shohojdhara/atomix 0.1.29 → 0.1.30
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.css +15 -0
- package/dist/index.js +12524 -0
- package/dist/index.js.map +1 -0
- package/package.json +11 -15
- package/css/min/index.js +0 -2
- package/css.d.ts +0 -14
- package/styles.js +0 -2
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shohojdhara/atomix",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.30",
|
|
4
4
|
"description": "Atomix Design System - A modern component library for web applications",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"sideEffects": false,
|
|
6
7
|
"main": "dist/index.js",
|
|
7
8
|
"module": "dist/index.esm.js",
|
|
8
9
|
"types": "dist/index.d.ts",
|
|
@@ -15,9 +16,10 @@
|
|
|
15
16
|
"require": "./dist/index.js"
|
|
16
17
|
},
|
|
17
18
|
"./styles": {
|
|
18
|
-
"
|
|
19
|
-
"
|
|
19
|
+
"import": "./dist/index.css",
|
|
20
|
+
"require": "./dist/index.css"
|
|
20
21
|
},
|
|
22
|
+
"./scss": "./src/styles/index.scss",
|
|
21
23
|
"./package.json": "./package.json"
|
|
22
24
|
},
|
|
23
25
|
"dependencies": {
|
|
@@ -46,12 +48,16 @@
|
|
|
46
48
|
"@storybook/react": "^8.0.0",
|
|
47
49
|
"@storybook/react-webpack5": "^8.6.12",
|
|
48
50
|
"@storybook/test": "^8.0.0",
|
|
51
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
52
|
+
"@testing-library/react": "^16.3.0",
|
|
53
|
+
"@testing-library/user-event": "^14.6.1",
|
|
49
54
|
"@types/classnames": "^2.3.0",
|
|
50
55
|
"@types/node": "^20.0.0",
|
|
51
56
|
"@types/react": "^18.2.0",
|
|
52
57
|
"@types/react-dom": "^18.2.0",
|
|
53
58
|
"@typescript-eslint/eslint-plugin": "^8.34.0",
|
|
54
59
|
"@typescript-eslint/parser": "^8.34.0",
|
|
60
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
55
61
|
"autoprefixer": "^10.4.21",
|
|
56
62
|
"babel-loader": "^10.0.0",
|
|
57
63
|
"caniuse-lite": "^1.0.30001721",
|
|
@@ -105,8 +111,9 @@
|
|
|
105
111
|
"check-format": "prettier --check .",
|
|
106
112
|
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
|
|
107
113
|
"lint": "tsc --noEmit",
|
|
108
|
-
"test": "
|
|
114
|
+
"test": "vitest run",
|
|
109
115
|
"test:watch": "vitest",
|
|
116
|
+
"test:coverage": "vitest run --coverage",
|
|
110
117
|
"ci": "npm run build && npm run check-format && npm run check-exports && npm run lint && npm run test",
|
|
111
118
|
"local-release": "changeset version && changeset publish",
|
|
112
119
|
"preview:build": "npm run build-storybook && node scripts/prepare-deploy.js",
|
|
@@ -115,10 +122,6 @@
|
|
|
115
122
|
"files": [
|
|
116
123
|
"dist",
|
|
117
124
|
"src/styles",
|
|
118
|
-
"styles.js",
|
|
119
|
-
"css",
|
|
120
|
-
"scss",
|
|
121
|
-
"css.d.ts",
|
|
122
125
|
"README.md",
|
|
123
126
|
"LICENSE",
|
|
124
127
|
"CHANGELOG.md"
|
|
@@ -155,12 +158,5 @@
|
|
|
155
158
|
"access": "public",
|
|
156
159
|
"registry": "https://registry.npmjs.org/",
|
|
157
160
|
"scope": "@shohojdhara"
|
|
158
|
-
},
|
|
159
|
-
"typesVersions": {
|
|
160
|
-
"*": {
|
|
161
|
-
"styles": [
|
|
162
|
-
"./css.d.ts"
|
|
163
|
-
]
|
|
164
|
-
}
|
|
165
161
|
}
|
|
166
162
|
}
|
package/css/min/index.js
DELETED
package/css.d.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
declare module '*.css' {
|
|
2
|
-
const content: { [className: string]: string };
|
|
3
|
-
export default content;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
declare module '*.scss' {
|
|
7
|
-
const content: { [className: string]: string };
|
|
8
|
-
export default content;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
declare module '*.sass' {
|
|
12
|
-
const content: { [className: string]: string };
|
|
13
|
-
export default content;
|
|
14
|
-
}
|
package/styles.js
DELETED