@vef-framework/starter 1.0.124 → 1.0.125

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/cjs/router.cjs CHANGED
@@ -4,7 +4,6 @@
4
4
  var reactRouter = require('@tanstack/react-router');
5
5
  var components = require('@vef-framework/components');
6
6
  var shared = require('@vef-framework/shared');
7
- var NProgress = require('nprogress');
8
7
  var react = require('react');
9
8
 
10
9
  "use strict";
@@ -62,10 +61,6 @@ function createRouter({
62
61
  );
63
62
  }
64
63
  });
65
- router.subscribe("onBeforeLoad", ({ pathChanged }) => pathChanged && NProgress.start());
66
- router.subscribe("onLoad", () => {
67
- NProgress.done();
68
- });
69
64
  return router;
70
65
  }
71
66
 
package/esm/router.js CHANGED
@@ -2,7 +2,6 @@
2
2
  import { createRouter as createRouter$1, createHashHistory, createBrowserHistory } from '@tanstack/react-router';
3
3
  import { VefText, VefLoadingPlaceholder } from '@vef-framework/components';
4
4
  import { showErrorNotification } from '@vef-framework/shared';
5
- import NProgress from 'nprogress';
6
5
  import { createElement } from 'react';
7
6
 
8
7
  "use strict";
@@ -60,10 +59,6 @@ function createRouter({
60
59
  );
61
60
  }
62
61
  });
63
- router.subscribe("onBeforeLoad", ({ pathChanged }) => pathChanged && NProgress.start());
64
- router.subscribe("onLoad", () => {
65
- NProgress.done();
66
- });
67
62
  return router;
68
63
  }
69
64
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vef-framework/starter",
3
3
  "type": "module",
4
- "version": "1.0.124",
4
+ "version": "1.0.125",
5
5
  "private": false,
6
6
  "description": "The starter of the VEF framework",
7
7
  "author": "Venus",
@@ -40,10 +40,10 @@
40
40
  "use-sync-external-store": "^1.4.0",
41
41
  "@tanstack/react-query-devtools": "5.68.0",
42
42
  "@tanstack/router-devtools": "^1.114.23",
43
- "@vef-framework/components": "1.0.124",
44
- "@vef-framework/core": "1.0.124",
45
- "@vef-framework/hooks": "1.0.124",
46
- "@vef-framework/shared": "1.0.124",
43
+ "@vef-framework/components": "1.0.125",
44
+ "@vef-framework/core": "1.0.125",
45
+ "@vef-framework/hooks": "1.0.125",
46
+ "@vef-framework/shared": "1.0.125",
47
47
  "lucide-react": "0.482.0",
48
48
  "motion": "12.5.0",
49
49
  "nprogress": "^0.2.0"