norma-library 0.2.5 → 0.2.6
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 +160 -160
- package/dist/Card/CardHeader.d.ts +3 -0
- package/dist/Card/index.d.ts +2 -0
- package/dist/Card/styles.d.ts +546 -0
- package/dist/Card/types.d.ts +6 -7
- package/dist/index.es.js +4015 -3337
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +114 -43
- package/dist/index.umd.js.map +1 -1
- package/package.json +103 -110
package/package.json
CHANGED
|
@@ -1,110 +1,103 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "norma-library",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "0.2.
|
|
5
|
-
"type": "module",
|
|
6
|
-
"description": "Norma Library. A React UI kit.",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"dev": "vite",
|
|
9
|
-
"build": "tsc --noEmit && vite build",
|
|
10
|
-
"release": "tsx scripts/release.ts",
|
|
11
|
-
"build-ts": "tsx scripts/build.ts",
|
|
12
|
-
"preview": "vite preview",
|
|
13
|
-
"lint": "eslint 'src/**/**/*.{js,jsx,ts,tsx}'",
|
|
14
|
-
"lint:fix": "eslint --fix 'src/**/**/*.{jsx,ts,tsx}'",
|
|
15
|
-
"format": "prettier --write src//**/**/*.{ts,tsx,css} --config ./.prettierrc",
|
|
16
|
-
"prepare": "husky install",
|
|
17
|
-
"deploy": "npm publish"
|
|
18
|
-
},
|
|
19
|
-
"husky": {
|
|
20
|
-
"hooks": {
|
|
21
|
-
"pre-commit": "lint-staged"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"lint-staged": {
|
|
25
|
-
"src/**/**/*.{js,jsx,ts,tsx}": [
|
|
26
|
-
"yarn eslint",
|
|
27
|
-
"yarn format"
|
|
28
|
-
]
|
|
29
|
-
},
|
|
30
|
-
"main": "dist/index.
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
"@
|
|
44
|
-
"@
|
|
45
|
-
"@
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"eslint": "^
|
|
55
|
-
"eslint-
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
"
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
"
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
"@emotion/styled": "^11.11.0",
|
|
105
|
-
"@mui/icons-material": "^5.14.3",
|
|
106
|
-
"@mui/material": "^5.14.4",
|
|
107
|
-
"npm-version": "^1.1.0",
|
|
108
|
-
"styled-components": "^6.0.7"
|
|
109
|
-
}
|
|
110
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "norma-library",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.2.6",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"description": "Norma Library. A React UI kit.",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"dev": "vite",
|
|
9
|
+
"build": "tsc --noEmit && vite build",
|
|
10
|
+
"release": "tsx scripts/release.ts",
|
|
11
|
+
"build-ts": "tsx scripts/build.ts",
|
|
12
|
+
"preview": "vite preview",
|
|
13
|
+
"lint": "eslint 'src/**/**/*.{js,jsx,ts,tsx}'",
|
|
14
|
+
"lint:fix": "eslint --fix 'src/**/**/*.{jsx,ts,tsx}'",
|
|
15
|
+
"format": "prettier --write src//**/**/*.{ts,tsx,css} --config ./.prettierrc",
|
|
16
|
+
"prepare": "husky install",
|
|
17
|
+
"deploy": "npm publish"
|
|
18
|
+
},
|
|
19
|
+
"husky": {
|
|
20
|
+
"hooks": {
|
|
21
|
+
"pre-commit": "lint-staged"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"lint-staged": {
|
|
25
|
+
"src/**/**/*.{js,jsx,ts,tsx}": [
|
|
26
|
+
"yarn eslint",
|
|
27
|
+
"yarn format"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
"main": "dist/index.es.js",
|
|
31
|
+
"types": "dist/index.d.ts",
|
|
32
|
+
"files": [
|
|
33
|
+
"dist"
|
|
34
|
+
],
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@types/debug": "^4.1.8",
|
|
37
|
+
"@types/minimist": "^1.2.2",
|
|
38
|
+
"@types/node": "^18.7.6",
|
|
39
|
+
"@types/prompts": "^2.4.4",
|
|
40
|
+
"@types/react": "^18.2.20",
|
|
41
|
+
"@types/react-dom": "^18.2.7",
|
|
42
|
+
"@types/semver": "^7.5.0",
|
|
43
|
+
"@typescript-eslint/eslint-plugin": "^5.34.0",
|
|
44
|
+
"@typescript-eslint/parser": "^5.34.0",
|
|
45
|
+
"@vitejs/plugin-react": "^2.1.0",
|
|
46
|
+
"debug": "^4.3.4",
|
|
47
|
+
"eslint": "^8.2.0",
|
|
48
|
+
"eslint-config-prettier": "^8.5.0",
|
|
49
|
+
"eslint-plugin-import": "^2.25.3",
|
|
50
|
+
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
51
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
52
|
+
"eslint-plugin-react": "^7.30.1",
|
|
53
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
54
|
+
"eslint-plugin-react-refresh": "^0.4.3",
|
|
55
|
+
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
56
|
+
"husky": "^8.0.3",
|
|
57
|
+
"immer": "^10.0.2",
|
|
58
|
+
"kolorist": "^1.8.0",
|
|
59
|
+
"lint-staged": "^13.0.3",
|
|
60
|
+
"minimist": "^1.2.8",
|
|
61
|
+
"node": "^20.5.0",
|
|
62
|
+
"prettier": "^2.7.1",
|
|
63
|
+
"prompts": "^2.4.2",
|
|
64
|
+
"react": "^18.2.0",
|
|
65
|
+
"react-dom": "^18.2.0",
|
|
66
|
+
"react-i18next": "^13.0.3",
|
|
67
|
+
"semver": "^7.5.4",
|
|
68
|
+
"tsx": "^3.12.7",
|
|
69
|
+
"typescript": "^4.9.5",
|
|
70
|
+
"url": "^0.11.1",
|
|
71
|
+
"vite": "^3.1.0",
|
|
72
|
+
"vite-plugin-dts": "^1.4.1",
|
|
73
|
+
"vite-plugin-linter": "^1.2.0",
|
|
74
|
+
"vite-tsconfig-paths": "^3.5.0",
|
|
75
|
+
"vitest": "^0.34.1"
|
|
76
|
+
},
|
|
77
|
+
"peerDependencies": {
|
|
78
|
+
"react": "^18.2.0",
|
|
79
|
+
"react-dom": "^18.2.0"
|
|
80
|
+
},
|
|
81
|
+
"repository": {
|
|
82
|
+
"type": "git",
|
|
83
|
+
"url": "https://github.com/OlosLive/norma-library"
|
|
84
|
+
},
|
|
85
|
+
"keywords": [],
|
|
86
|
+
"author": "José Roberto Miguel Filho",
|
|
87
|
+
"bugs": {
|
|
88
|
+
"url": "https://github.com/OlosLive/norma-library/issues"
|
|
89
|
+
},
|
|
90
|
+
"publishConfig": {
|
|
91
|
+
"access": "public"
|
|
92
|
+
},
|
|
93
|
+
"homepage": "https://github.com/OlosLive/norma-library",
|
|
94
|
+
"license": "MIT",
|
|
95
|
+
"dependencies": {
|
|
96
|
+
"@emotion/react": "^11.11.1",
|
|
97
|
+
"@emotion/styled": "^11.11.0",
|
|
98
|
+
"@mui/icons-material": "^5.14.3",
|
|
99
|
+
"@mui/material": "^5.14.4",
|
|
100
|
+
"npm-version": "^1.1.0",
|
|
101
|
+
"styled-components": "^6.0.7"
|
|
102
|
+
}
|
|
103
|
+
}
|