munza-x-data-grid 1.1.3 → 1.1.5

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.d.ts CHANGED
@@ -1 +1 @@
1
- export { default as Button } from './Button';
1
+ export { Grid } from './core/Grid';
@@ -0,0 +1,2 @@
1
+ import { ClassValue } from 'clsx';
2
+ export declare function cn(...inputs: ClassValue[]): string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "munza-x-data-grid",
3
3
  "private": false,
4
- "version": "1.1.3",
4
+ "version": "1.1.5",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"
@@ -13,7 +13,7 @@
13
13
  "import": "./dist/data-grid.js",
14
14
  "types": "./dist/index.d.ts"
15
15
  },
16
- "./style.css": "./dist/main.css"
16
+ "./style.css": "./dist/index.css"
17
17
  },
18
18
  "scripts": {
19
19
  "dev": "vite",
@@ -22,19 +22,31 @@
22
22
  "preview": "vite preview"
23
23
  },
24
24
  "peerDependencies": {
25
- "react": "^19",
26
- "react-dom": "^19"
25
+ "react": "^18 || ^19",
26
+ "react-dom": "^18 || ^19"
27
27
  },
28
28
  "devDependencies": {
29
- "@types/react": "^19",
30
- "@types/react-dom": "^19",
31
29
  "@eslint/js": "^9.39.4",
30
+ "@fontsource-variable/inter": "^5.2.8",
31
+ "@tailwindcss/vite": "^4.2.1",
32
32
  "@types/node": "^24.12.0",
33
+ "@types/react": "^19",
34
+ "@types/react-dom": "^19",
33
35
  "@vitejs/plugin-react": "^6.0.0",
36
+ "class-variance-authority": "0.7.1",
37
+ "clsx": "2.1.1",
34
38
  "eslint": "^9.39.4",
35
39
  "eslint-plugin-react-hooks": "^7.0.1",
36
40
  "eslint-plugin-react-refresh": "^0.5.2",
37
41
  "globals": "^17.4.0",
42
+ "lucide-react": "0.577.0",
43
+ "prettier": "^3.8.1",
44
+ "prettier-plugin-tailwindcss": "^0.7.2",
45
+ "radix-ui": "1.4.3",
46
+ "shadcn": "^4.0.8",
47
+ "tailwind-merge": "3.5.0",
48
+ "tailwindcss": "^4.2.1",
49
+ "tw-animate-css": "^1.4.0",
38
50
  "typescript": "~5.9.3",
39
51
  "typescript-eslint": "^8.56.1",
40
52
  "vite": "^8.0.0",
package/dist/Button.d.ts DELETED
@@ -1,7 +0,0 @@
1
- import { default as React } from 'react';
2
- export interface ButtonProps {
3
- label: string;
4
- onClick?: () => void;
5
- }
6
- declare const Button: React.FC<ButtonProps>;
7
- export default Button;