@vef-framework/starter 1.0.99 → 1.0.101
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/es/api.js +1 -1
- package/es/app.js +1 -1
- package/es/components/index.js +1 -1
- package/es/components/vef-access-denied-page/index.js +1 -1
- package/es/components/vef-app/index.js +1 -1
- package/es/components/vef-dev-assistant/index.js +3 -3
- package/es/components/vef-error-page/index.js +1 -1
- package/es/components/vef-login-page/index.js +1 -1
- package/es/components/vef-not-found-page/index.js +1 -1
- package/es/components/vef-router-provider/index.js +1 -1
- package/es/constants.js +1 -1
- package/es/helper.js +1 -1
- package/es/index.js +1 -1
- package/es/router.js +1 -1
- package/es/routes/access-denied.js +1 -1
- package/es/routes/index.js +1 -1
- package/es/routes/layout.js +2 -2
- package/es/routes/login.js +1 -1
- package/es/routes/root.js +1 -1
- package/es/store.js +1 -1
- package/lib/api.cjs +1 -1
- package/lib/app.cjs +1 -1
- package/lib/components/index.cjs +1 -1
- package/lib/components/vef-access-denied-page/index.cjs +1 -1
- package/lib/components/vef-access-denied-page/props.cjs +1 -1
- package/lib/components/vef-app/index.cjs +1 -1
- package/lib/components/vef-app/props.cjs +1 -1
- package/lib/components/vef-dev-assistant/index.cjs +3 -3
- package/lib/components/vef-dev-assistant/props.cjs +1 -1
- package/lib/components/vef-error-page/index.cjs +1 -1
- package/lib/components/vef-error-page/props.cjs +1 -1
- package/lib/components/vef-login-page/index.cjs +1 -1
- package/lib/components/vef-login-page/props.cjs +1 -1
- package/lib/components/vef-not-found-page/index.cjs +1 -1
- package/lib/components/vef-not-found-page/props.cjs +1 -1
- package/lib/components/vef-router-provider/index.cjs +1 -1
- package/lib/components/vef-router-provider/props.cjs +1 -1
- package/lib/constants.cjs +1 -1
- package/lib/helper.cjs +1 -1
- package/lib/index.cjs +1 -1
- package/lib/router.cjs +1 -1
- package/lib/routes/access-denied.cjs +1 -1
- package/lib/routes/index.cjs +1 -1
- package/lib/routes/layout.cjs +2 -2
- package/lib/routes/login.cjs +1 -1
- package/lib/routes/root.cjs +1 -1
- package/lib/store.cjs +1 -1
- package/package.json +5 -5
package/es/api.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
import { createApiClient as createApiClient$1 } from '@vef-framework/core';
|
|
3
3
|
import { useAppStore } from './store.js';
|
|
4
4
|
|
package/es/app.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
import { createElement } from 'react';
|
|
3
3
|
import { createRoot } from 'react-dom/client';
|
|
4
4
|
import './components/index.js';
|
package/es/components/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
export { default as VefAccessDeniedPage } from './vef-access-denied-page/index.js';
|
|
3
3
|
export { default as VefApp } from './vef-app/index.js';
|
|
4
4
|
export { default as VefDevAssistant } from './vef-dev-assistant/index.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
import { jsx } from '@emotion/react/jsx-runtime';
|
|
3
3
|
import { useLocation, useRouterState, useNavigate } from '@tanstack/react-router';
|
|
4
4
|
import { VefAccessDenied } from '@vef-framework/components';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
import { jsx } from '@emotion/react/jsx-runtime';
|
|
3
3
|
import { VefConfigProvider } from '@vef-framework/components';
|
|
4
4
|
import { StrictMode } from 'react';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
import { jsxs, jsx, Fragment } from '@emotion/react/jsx-runtime';
|
|
3
3
|
import { css } from '@emotion/react';
|
|
4
4
|
import { VefFloatButtonGroup, VefFloatButton, VefIcon, VefLoadingPlaceholder } from '@vef-framework/components';
|
|
@@ -101,7 +101,7 @@ function VefDevAssistant() {
|
|
|
101
101
|
/* @__PURE__ */ jsx(
|
|
102
102
|
VefFloatButton,
|
|
103
103
|
{
|
|
104
|
-
tip: "API
|
|
104
|
+
tip: "API调试控制台",
|
|
105
105
|
icon: /* @__PURE__ */ jsx(VefIcon, { children: /* @__PURE__ */ jsx(CompassIcon, {}) }),
|
|
106
106
|
onClick: handleShowQueryDevtools
|
|
107
107
|
}
|
|
@@ -109,7 +109,7 @@ function VefDevAssistant() {
|
|
|
109
109
|
/* @__PURE__ */ jsx(
|
|
110
110
|
VefFloatButton,
|
|
111
111
|
{
|
|
112
|
-
tip: "
|
|
112
|
+
tip: "路由调试控制台",
|
|
113
113
|
icon: /* @__PURE__ */ jsx(VefIcon, { children: /* @__PURE__ */ jsx(SendIcon, {}) }),
|
|
114
114
|
onClick: handleShowRouterDevtools
|
|
115
115
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
import { jsx } from '@emotion/react/jsx-runtime';
|
|
3
3
|
import { VefError } from '@vef-framework/components';
|
|
4
4
|
import { useQueryErrorResetBoundary } from '@vef-framework/core';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
import { jsx } from '@emotion/react/jsx-runtime';
|
|
3
3
|
import { useRouter, useNavigate, useSearch } from '@tanstack/react-router';
|
|
4
4
|
import { VefLogin } from '@vef-framework/components';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
import { jsx } from '@emotion/react/jsx-runtime';
|
|
3
3
|
import { useNavigate, useLocation } from '@tanstack/react-router';
|
|
4
4
|
import { VefNotFound } from '@vef-framework/components';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
import { jsx } from '@emotion/react/jsx-runtime';
|
|
3
3
|
import { RouterProvider } from '@tanstack/react-router';
|
|
4
4
|
import { useApiContext } from '@vef-framework/core';
|
package/es/constants.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
const LOGIN_PAGE_PATH = "/login";
|
|
3
3
|
const LOGIN_PAGE_ROUTE = "/_common/login";
|
|
4
4
|
const INDEX_PAGE_PATH = "/";
|
package/es/helper.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
import { LOGIN_PAGE_PATH } from './constants.js';
|
|
3
3
|
import { useAppStore } from './store.js';
|
|
4
4
|
|
package/es/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
export { createApiClient } from './api.js';
|
|
3
3
|
export { createApp } from './app.js';
|
|
4
4
|
import './components/index.js';
|
package/es/router.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
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';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
import '../components/index.js';
|
|
3
3
|
import VefAccessDeniedPage from '../components/vef-access-denied-page/index.js';
|
|
4
4
|
|
package/es/routes/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
export { createAccessDeniedRouteOptions } from './access-denied.js';
|
|
3
3
|
export { createLayoutRouteOptions } from './layout.js';
|
|
4
4
|
export { createLoginRouteOptions } from './login.js';
|
package/es/routes/layout.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
import { jsx } from '@emotion/react/jsx-runtime';
|
|
3
3
|
import { useRouter, useNavigate, useLocation, Outlet, redirect } from '@tanstack/react-router';
|
|
4
4
|
import { VefIcon, VefLayout, VefLoadingPlaceholder } from '@vef-framework/components';
|
|
@@ -120,7 +120,7 @@ function createLayoutRouteOptions({
|
|
|
120
120
|
VefLoadingPlaceholder,
|
|
121
121
|
{
|
|
122
122
|
size: "large",
|
|
123
|
-
tip: "
|
|
123
|
+
tip: "系统加载中,请稍后..."
|
|
124
124
|
}
|
|
125
125
|
),
|
|
126
126
|
component: LayoutComponent,
|
package/es/routes/login.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
import { jsx } from '@emotion/react/jsx-runtime';
|
|
3
3
|
import { redirect } from '@tanstack/react-router';
|
|
4
4
|
import { z } from '@vef-framework/shared';
|
package/es/routes/root.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
import { jsxs, Fragment, jsx } from '@emotion/react/jsx-runtime';
|
|
3
3
|
import { createRootRouteWithContext, Outlet } from '@tanstack/react-router';
|
|
4
4
|
import '../components/index.js';
|
package/es/store.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
import { createStore } from '@vef-framework/shared';
|
|
3
3
|
|
|
4
4
|
const useAppStore = createStore(
|
package/lib/api.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
package/lib/app.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
package/lib/components/index.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
@@ -105,7 +105,7 @@ function VefDevAssistant() {
|
|
|
105
105
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
106
106
|
components.VefFloatButton,
|
|
107
107
|
{
|
|
108
|
-
tip: "API
|
|
108
|
+
tip: "API调试控制台",
|
|
109
109
|
icon: /* @__PURE__ */ jsxRuntime.jsx(components.VefIcon, { children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.CompassIcon, {}) }),
|
|
110
110
|
onClick: handleShowQueryDevtools
|
|
111
111
|
}
|
|
@@ -113,7 +113,7 @@ function VefDevAssistant() {
|
|
|
113
113
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
114
114
|
components.VefFloatButton,
|
|
115
115
|
{
|
|
116
|
-
tip: "
|
|
116
|
+
tip: "路由调试控制台",
|
|
117
117
|
icon: /* @__PURE__ */ jsxRuntime.jsx(components.VefIcon, { children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.SendIcon, {}) }),
|
|
118
118
|
onClick: handleShowRouterDevtools
|
|
119
119
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
package/lib/constants.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
package/lib/helper.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
package/lib/index.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
package/lib/router.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
package/lib/routes/index.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
package/lib/routes/layout.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
@@ -124,7 +124,7 @@ function createLayoutRouteOptions({
|
|
|
124
124
|
components.VefLoadingPlaceholder,
|
|
125
125
|
{
|
|
126
126
|
size: "large",
|
|
127
|
-
tip: "
|
|
127
|
+
tip: "系统加载中,请稍后..."
|
|
128
128
|
}
|
|
129
129
|
),
|
|
130
130
|
component: LayoutComponent,
|
package/lib/routes/login.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
package/lib/routes/root.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
package/lib/store.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:15.197Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vef-framework/starter",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.101",
|
|
5
5
|
"private": false,
|
|
6
6
|
"packageManager": "pnpm@9.15.0",
|
|
7
7
|
"description": "The starter of the VEF framework",
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
"use-sync-external-store": "^1.4.0",
|
|
42
42
|
"@tanstack/react-query-devtools": "5.67.1",
|
|
43
43
|
"@tanstack/router-devtools": "^1.112.18",
|
|
44
|
-
"@vef-framework/components": "1.0.
|
|
45
|
-
"@vef-framework/core": "1.0.
|
|
46
|
-
"@vef-framework/hooks": "1.0.
|
|
47
|
-
"@vef-framework/shared": "1.0.
|
|
44
|
+
"@vef-framework/components": "1.0.101",
|
|
45
|
+
"@vef-framework/core": "1.0.101",
|
|
46
|
+
"@vef-framework/hooks": "1.0.101",
|
|
47
|
+
"@vef-framework/shared": "1.0.101",
|
|
48
48
|
"lucide-react": "0.477.0",
|
|
49
49
|
"motion": "12.4.10",
|
|
50
50
|
"nprogress": "^0.2.0"
|