g-ui-web 1.4.49 → 1.4.50

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.
@@ -192,7 +192,7 @@ function componentUsagePlugin(options = {}) {
192
192
  hasReported = true;
193
193
  const reportData = {
194
194
  libraryName,
195
- timestamp: (/* @__PURE__ */ new Date()).toISOString(),
195
+ timestamp: new Date(Date.now() + 8 * 36e5).toISOString().replace("Z", "+08:00"),
196
196
  summary: {
197
197
  totalImports: importStats.totalImports,
198
198
  uniqueComponents: importStats.componentCount.size,
@@ -166,7 +166,7 @@ function componentUsagePlugin(options = {}) {
166
166
  hasReported = true;
167
167
  const reportData = {
168
168
  libraryName,
169
- timestamp: (/* @__PURE__ */ new Date()).toISOString(),
169
+ timestamp: new Date(Date.now() + 8 * 36e5).toISOString().replace("Z", "+08:00"),
170
170
  summary: {
171
171
  totalImports: importStats.totalImports,
172
172
  uniqueComponents: importStats.componentCount.size,
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "g-ui-web",
3
3
  "private": false,
4
4
  "description": "可视化组件库",
5
- "version": "1.4.49",
5
+ "version": "1.4.50",
6
6
  "author": "wyu",
7
7
  "license": "MIT",
8
8
  "type": "module",