@alaarab/ogrid 1.2.0 → 1.2.1
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/package.json +24 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alaarab/ogrid",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "OGrid default (Radix) – Data grid with sorting, filtering, pagination, column chooser, and CSV export. Packed with Radix UI; no Fluent or Material required.",
|
|
5
5
|
"main": "dist/esm/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -18,12 +18,28 @@
|
|
|
18
18
|
"storybook": "storybook dev -p 6008 --no-open",
|
|
19
19
|
"build-storybook": "storybook build"
|
|
20
20
|
},
|
|
21
|
-
"keywords": [
|
|
21
|
+
"keywords": [
|
|
22
|
+
"ogrid",
|
|
23
|
+
"radix",
|
|
24
|
+
"datatable",
|
|
25
|
+
"react",
|
|
26
|
+
"typescript",
|
|
27
|
+
"grid",
|
|
28
|
+
"headless"
|
|
29
|
+
],
|
|
22
30
|
"author": "Ala Arab",
|
|
23
31
|
"license": "MIT",
|
|
24
|
-
"files": [
|
|
25
|
-
|
|
26
|
-
|
|
32
|
+
"files": [
|
|
33
|
+
"dist",
|
|
34
|
+
"README.md",
|
|
35
|
+
"LICENSE"
|
|
36
|
+
],
|
|
37
|
+
"sideEffects": [
|
|
38
|
+
"**/*.css"
|
|
39
|
+
],
|
|
40
|
+
"engines": {
|
|
41
|
+
"node": ">=18"
|
|
42
|
+
},
|
|
27
43
|
"dependencies": {
|
|
28
44
|
"@alaarab/ogrid-core": "^1.2.0",
|
|
29
45
|
"@radix-ui/react-checkbox": "^1.1.2",
|
|
@@ -52,5 +68,7 @@
|
|
|
52
68
|
"typescript": "^5.7.3",
|
|
53
69
|
"vite": "^6.1.0"
|
|
54
70
|
},
|
|
55
|
-
"publishConfig": {
|
|
71
|
+
"publishConfig": {
|
|
72
|
+
"access": "public"
|
|
73
|
+
}
|
|
56
74
|
}
|