agvmap-react 0.1.47 → 0.1.49
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/{LazyModalContent-C5UKrWqt.js → LazyModalContent-DZDF6cHd.js} +34 -34
- package/dist/agvmap-react.js +13 -2
- package/dist/agvmap-react.umd.cjs +216 -248
- package/dist/{index-Df_WMhdb.js → index-6fJ6yDFf.js} +39461 -39924
- package/dist/style.css +1 -1
- package/package.json +15 -31
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agvmap-react",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.49",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/agvmap-react.umd.cjs",
|
|
6
6
|
"module": "dist/agvmap-react.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"build": "vite build",
|
|
21
21
|
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
|
|
22
22
|
"preview": "vite preview",
|
|
23
|
-
"release": "npm version patch && npm publish --access public --tag beta && npm dist-tag add agvmap-react@$(npm pkg get version | tr -d '\"') latest"
|
|
23
|
+
"release": "npm version patch && npm publish --access public --tag beta && npm dist-tag add @agviewer/agvmap-react@$(npm pkg get version | tr -d '\"') latest"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@floating-ui/react-dom": "^2.1.2",
|
|
@@ -65,20 +65,25 @@
|
|
|
65
65
|
"recharts": "^2.12.7",
|
|
66
66
|
"sonner": "^1.7.4",
|
|
67
67
|
"supercluster": "^8.0.1",
|
|
68
|
-
"tailwind-merge": "^
|
|
69
|
-
"tailwindcss
|
|
68
|
+
"tailwind-merge": "^3.6.0",
|
|
69
|
+
"tailwindcss": "^4.3.3",
|
|
70
|
+
"tw-animate-css": "^1.4.0",
|
|
70
71
|
"xlsx": "^0.18.5",
|
|
71
|
-
"yarn": "^1.22.22",
|
|
72
72
|
"zustand": "^4.5.5"
|
|
73
73
|
},
|
|
74
|
+
"peerDependencies": {
|
|
75
|
+
"react": ">=18.3.1 <20",
|
|
76
|
+
"react-dom": ">=18.3.1 <20"
|
|
77
|
+
},
|
|
74
78
|
"devDependencies": {
|
|
79
|
+
"@csstools/postcss-cascade-layers": "^6.0.0",
|
|
75
80
|
"@rollup/plugin-babel": "^6.0.4",
|
|
76
81
|
"@rollup/plugin-commonjs": "^28.0.2",
|
|
77
82
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
78
83
|
"@rollup/plugin-terser": "^0.4.4",
|
|
79
84
|
"@tailwindcss/postcss": "^4.3.3",
|
|
80
|
-
"@types/react": "^
|
|
81
|
-
"@types/react-dom": "^
|
|
85
|
+
"@types/react": "^18.3.3",
|
|
86
|
+
"@types/react-dom": "^18.3.0",
|
|
82
87
|
"@vitejs/plugin-react": "^4.3.1",
|
|
83
88
|
"autoprefixer": "^10.4.20",
|
|
84
89
|
"eslint": "^8.57.0",
|
|
@@ -86,38 +91,17 @@
|
|
|
86
91
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
87
92
|
"eslint-plugin-react-refresh": "^0.4.7",
|
|
88
93
|
"postcss": "^8.4.41",
|
|
89
|
-
"react": "^
|
|
90
|
-
"react-dom": "^
|
|
94
|
+
"react": "^18.3.1",
|
|
95
|
+
"react-dom": "^18.3.1",
|
|
91
96
|
"rollup": "^4.32.1",
|
|
92
97
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
93
|
-
"tailwindcss": "^4.3.3",
|
|
94
98
|
"vite": "^5.3.4"
|
|
95
99
|
},
|
|
96
|
-
"peerDependencies": {
|
|
97
|
-
"react": "^18.0.0 || ^19.0.0",
|
|
98
|
-
"react-dom": "^18.0.0 || ^19.0.0",
|
|
99
|
-
"tailwindcss": "^4.3.3",
|
|
100
|
-
"@tailwindcss/postcss": "^4.3.3"
|
|
101
|
-
},
|
|
102
|
-
"peerDependenciesMeta": {
|
|
103
|
-
"react": {
|
|
104
|
-
"optional": false
|
|
105
|
-
},
|
|
106
|
-
"react-dom": {
|
|
107
|
-
"optional": false
|
|
108
|
-
},
|
|
109
|
-
"tailwindcss": {
|
|
110
|
-
"optional": false
|
|
111
|
-
},
|
|
112
|
-
"@tailwindcss/postcss": {
|
|
113
|
-
"optional": false
|
|
114
|
-
}
|
|
115
|
-
},
|
|
116
100
|
"keywords": [
|
|
117
101
|
"agviewermap",
|
|
118
102
|
"evapotranspiration",
|
|
119
103
|
"ndvi"
|
|
120
104
|
],
|
|
121
105
|
"author": "Milestone Technologies",
|
|
122
|
-
"packageManager": "
|
|
106
|
+
"packageManager": "npm@10.0.0"
|
|
123
107
|
}
|