@memoreco/ui 0.2.2 → 0.2.3
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.js +11 -11
- package/dist/index.mjs +175 -173
- package/dist/ui/src/index.d.ts +1 -0
- package/package.json +4 -3
package/dist/ui/src/index.d.ts
CHANGED
|
@@ -24,3 +24,4 @@ export type { BadgeProps } from './components/badge';
|
|
|
24
24
|
export type { SeparatorProps } from './components/separator';
|
|
25
25
|
export type { DiscLoaderProps } from './components/disc-loader';
|
|
26
26
|
export { cn } from './lib/utils';
|
|
27
|
+
export declare const UI_LIBRARY_VERSION = "0.2.3";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memoreco/ui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Memoreco shared UI components with Shadcn",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -45,13 +45,14 @@
|
|
|
45
45
|
"vite": "^5.0.12",
|
|
46
46
|
"vite-plugin-dts": "^3.7.2",
|
|
47
47
|
"vitest": "^1.2.2",
|
|
48
|
-
"@memoreco/
|
|
49
|
-
"@memoreco/
|
|
48
|
+
"@memoreco/types": "0.2.0",
|
|
49
|
+
"@memoreco/utils": "0.2.0"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"react": ">=18.0.0",
|
|
53
53
|
"react-dom": ">=18.0.0"
|
|
54
54
|
},
|
|
55
|
+
"sideEffects": false,
|
|
55
56
|
"scripts": {
|
|
56
57
|
"dev": "vite build --watch",
|
|
57
58
|
"build": "vite build",
|