norma-library 0.3.3 → 0.3.4
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/Button/Button.d.ts +10 -31
- package/dist/Button/types.d.ts +18 -0
- package/dist/Card/Card.d.ts +3 -9
- package/dist/Card/types.d.ts +9 -0
- package/dist/index.es.js +5645 -380
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +176 -10
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -3
package/package.json
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "norma-library",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Norma Library. A React UI kit.",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"dev": "vite",
|
|
9
|
-
"build": "tsc
|
|
9
|
+
"build": "tsc && vite build",
|
|
10
10
|
"release": "tsx scripts/release.ts",
|
|
11
|
-
"build-ts": "tsx scripts/build.ts",
|
|
12
11
|
"preview": "vite preview",
|
|
13
12
|
"lint": "eslint 'src/**/**/*.{js,jsx,ts,tsx}'",
|
|
14
13
|
"lint:fix": "eslint --fix 'src/**/**/*.{jsx,ts,tsx}'",
|