@eintrek/erp-theme 1.4.8 → 1.4.9
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/components/ui/formatted-number-input.d.ts +17 -0
- package/dist/components/ui/masked-text-input.d.ts +32 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.css +1 -1
- package/dist/index.esm.js +217 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +221 -0
- package/dist/index.js.map +1 -1
- package/package.json +13 -11
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eintrek/erp-theme",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.9",
|
|
4
4
|
"private": false,
|
|
5
|
+
"packageManager": "pnpm@10.17.1",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"description": "A shadcn/ui component library with Storybook",
|
|
7
8
|
"main": "dist/index.js",
|
|
@@ -12,6 +13,16 @@
|
|
|
12
13
|
"dist",
|
|
13
14
|
"scripts/enforce-pnpm.js"
|
|
14
15
|
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"preinstall": "node scripts/enforce-pnpm.js",
|
|
18
|
+
"build": "cross-env NODE_ENV=production rollup -c --silent",
|
|
19
|
+
"dev": "cross-env NODE_ENV=production rollup -c -w",
|
|
20
|
+
"storybook": "storybook dev -p 6006",
|
|
21
|
+
"build-storybook": "storybook build",
|
|
22
|
+
"clean": "rimraf dist",
|
|
23
|
+
"prepare": "rimraf dist && cross-env NODE_ENV=production rollup -c --silent",
|
|
24
|
+
"pack": "cross-env NODE_ENV=production pnpm build && pnpm pack"
|
|
25
|
+
},
|
|
15
26
|
"keywords": [
|
|
16
27
|
"react",
|
|
17
28
|
"components",
|
|
@@ -121,14 +132,5 @@
|
|
|
121
132
|
"extends": [
|
|
122
133
|
"plugin:storybook/recommended"
|
|
123
134
|
]
|
|
124
|
-
},
|
|
125
|
-
"scripts": {
|
|
126
|
-
"preinstall": "node scripts/enforce-pnpm.js",
|
|
127
|
-
"build": "cross-env NODE_ENV=production rollup -c --silent",
|
|
128
|
-
"dev": "cross-env NODE_ENV=production rollup -c -w",
|
|
129
|
-
"storybook": "storybook dev -p 6006",
|
|
130
|
-
"build-storybook": "storybook build",
|
|
131
|
-
"clean": "rimraf dist",
|
|
132
|
-
"pack": "cross-env NODE_ENV=production pnpm build && pnpm pack"
|
|
133
135
|
}
|
|
134
|
-
}
|
|
136
|
+
}
|