@vef-framework/hooks 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/index.js +1 -1
- package/es/lib.js +1 -1
- package/es/use-authorized-items.js +1 -1
- package/es/use-color-tokens.js +1 -1
- package/es/use-computed-action-buttons.js +3 -3
- package/es/use-computed-options.js +1 -1
- package/es/use-context-disabled.js +1 -1
- package/es/use-data-query.js +1 -1
- package/es/use-deep-callback.js +1 -1
- package/es/use-deep-memo.js +1 -1
- package/es/use-deep-selector.js +1 -1
- package/es/use-fallback-options.js +1 -1
- package/es/use-gap-size-normalizer.js +1 -1
- package/es/use-normalized-gap-size.js +1 -1
- package/es/use-normalized-menu-items.js +1 -1
- package/es/use-normalized-options.js +1 -1
- package/es/use-option-filter.js +1 -1
- package/es/use-remote-filter.js +1 -1
- package/es/use-shallow-callback.js +1 -1
- package/es/use-shallow-memo.js +1 -1
- package/es/use-shallow-selector.js +1 -1
- package/es/use-singleton.js +1 -1
- package/es/use-theme-tokens.js +1 -1
- package/es/use-transient-store.js +1 -1
- package/es/use-window-size.js +1 -1
- package/lib/index.cjs +1 -1
- package/lib/lib.cjs +1 -1
- package/lib/use-authorized-items.cjs +1 -1
- package/lib/use-color-tokens.cjs +1 -1
- package/lib/use-computed-action-buttons.cjs +3 -3
- package/lib/use-computed-options.cjs +1 -1
- package/lib/use-context-disabled.cjs +1 -1
- package/lib/use-data-query.cjs +1 -1
- package/lib/use-deep-callback.cjs +1 -1
- package/lib/use-deep-memo.cjs +1 -1
- package/lib/use-deep-selector.cjs +1 -1
- package/lib/use-fallback-options.cjs +1 -1
- package/lib/use-gap-size-normalizer.cjs +1 -1
- package/lib/use-normalized-gap-size.cjs +1 -1
- package/lib/use-normalized-menu-items.cjs +1 -1
- package/lib/use-normalized-options.cjs +1 -1
- package/lib/use-option-filter.cjs +1 -1
- package/lib/use-remote-filter.cjs +1 -1
- package/lib/use-shallow-callback.cjs +1 -1
- package/lib/use-shallow-memo.cjs +1 -1
- package/lib/use-shallow-selector.cjs +1 -1
- package/lib/use-singleton.cjs +1 -1
- package/lib/use-theme-tokens.cjs +1 -1
- package/lib/use-transient-store.cjs +1 -1
- package/lib/use-window-size.cjs +1 -1
- package/package.json +3 -3
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:14.523Z, made by Venus. */
|
|
2
2
|
import './lib.js';
|
|
3
3
|
export { useAuthorizedItems } from './use-authorized-items.js';
|
|
4
4
|
export { useColorTokens, useDefaultColorTokens, useSemanticColorTokens } from './use-color-tokens.js';
|
package/es/lib.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
export { useClickAway, useMeasure } from '@uidotdev/usehooks';
|
|
3
3
|
export { useDeepCompareEffect as useDeepEffect, useDeepCompareLayoutEffect as useDeepLayoutEffect, useSize as useElementSize, useEventListener, useKeyPress, useMount, useUnmount, useUpdateEffect, useUpdateLayoutEffect, useUpdate as useUpdater } from 'ahooks';
|
|
4
4
|
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
import { useAuthContext } from '@vef-framework/core';
|
|
3
3
|
import { useMemo } from 'react';
|
|
4
4
|
|
package/es/use-color-tokens.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
import { defaultColorTypes, semanticColorTypes, capitalize } from '@vef-framework/shared';
|
|
3
3
|
import { useMemo } from 'react';
|
|
4
4
|
import { useThemeTokens } from './use-theme-tokens.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
import { isFunction, defaultMessageTitle } from '@vef-framework/shared';
|
|
3
3
|
import { useMemo } from 'react';
|
|
4
4
|
|
|
@@ -24,7 +24,7 @@ function useComputedActionButtons(buttons, context) {
|
|
|
24
24
|
requireConfirmation: isFunction(requireConfirmation) ? requireConfirmation(context) : requireConfirmation ?? false,
|
|
25
25
|
confirmationMode: isFunction(confirmationMode) ? confirmationMode(context) : confirmationMode ?? "simple",
|
|
26
26
|
confirmationTitle: isFunction(confirmationTitle) ? confirmationTitle(context) : confirmationTitle ?? defaultMessageTitle,
|
|
27
|
-
confirmationContent: isFunction(confirmationContent) ? confirmationContent(context) : confirmationContent ??
|
|
27
|
+
confirmationContent: isFunction(confirmationContent) ? confirmationContent(context) : confirmationContent ?? `确定要${rest.label}吗?`
|
|
28
28
|
};
|
|
29
29
|
if (computedButton.requireConfirmation && !computedButton.confirmationMode) {
|
|
30
30
|
computedButton.confirmationMode = "simple";
|
|
@@ -33,7 +33,7 @@ function useComputedActionButtons(buttons, context) {
|
|
|
33
33
|
computedButton.confirmationTitle = defaultMessageTitle;
|
|
34
34
|
}
|
|
35
35
|
if (computedButton.requireConfirmation && !computedButton.confirmationContent) {
|
|
36
|
-
computedButton.confirmationContent =
|
|
36
|
+
computedButton.confirmationContent = `确定要${computedButton.label}吗?`;
|
|
37
37
|
}
|
|
38
38
|
return computedButton;
|
|
39
39
|
}), [buttons, context]);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
import { useDataQuery } from './use-data-query.js';
|
|
3
3
|
import { useFallbackOptions } from './use-fallback-options.js';
|
|
4
4
|
import { useNormalizedDataOptions } from './use-normalized-options.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
import { createContext, useContext } from 'react';
|
|
3
3
|
|
|
4
4
|
const DisabledContext = createContext(false);
|
package/es/use-data-query.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
import { useApiContext } from '@vef-framework/core';
|
|
3
3
|
import { isNullish, isFunction } from '@vef-framework/shared';
|
|
4
4
|
import { useUnmount } from 'ahooks';
|
package/es/use-deep-callback.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
import { useCallback } from 'react';
|
|
3
3
|
import { useDeepMemo } from './use-deep-memo.js';
|
|
4
4
|
|
package/es/use-deep-memo.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
import { isDeepEqual } from '@vef-framework/shared';
|
|
3
3
|
import { useRef, useMemo } from 'react';
|
|
4
4
|
|
package/es/use-deep-selector.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
import { isDeepEqual } from '@vef-framework/shared';
|
|
3
3
|
import { useRef } from 'react';
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
import { useApiContext } from '@vef-framework/core';
|
|
3
3
|
import { isFunction } from '@vef-framework/shared';
|
|
4
4
|
import { useUnmount } from 'ahooks';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
import { useCallback } from 'react';
|
|
3
3
|
import { useThemeTokens } from './use-theme-tokens.js';
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
import { useGapSizeNormalizer } from './use-gap-size-normalizer.js';
|
|
3
3
|
|
|
4
4
|
function useNormalizedGapSize(gap) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
import { isNullish, VefError, isString, parsePinyinFirstLetter, isArray } from '@vef-framework/shared';
|
|
3
3
|
import { useMemo } from 'react';
|
|
4
4
|
|
package/es/use-option-filter.js
CHANGED
package/es/use-remote-filter.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
import { trim, debounce } from '@vef-framework/shared';
|
|
3
3
|
import { useState, useMemo } from 'react';
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
import { useCallback } from 'react';
|
|
3
3
|
import { useShallowMemo } from './use-shallow-memo.js';
|
|
4
4
|
|
package/es/use-shallow-memo.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
import { isShallowEqual } from '@vef-framework/shared';
|
|
3
3
|
import { useRef, useMemo } from 'react';
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
import { isShallowEqual } from '@vef-framework/shared';
|
|
3
3
|
import { useRef } from 'react';
|
|
4
4
|
|
package/es/use-singleton.js
CHANGED
package/es/use-theme-tokens.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
import { isShallowEqual } from '@vef-framework/shared';
|
|
3
3
|
import { useRef, useEffect } from 'react';
|
|
4
4
|
|
package/es/use-window-size.js
CHANGED
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:14.523Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
package/lib/lib.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, 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:14.523Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
package/lib/use-color-tokens.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, 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:14.523Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
@@ -28,7 +28,7 @@ function useComputedActionButtons(buttons, context) {
|
|
|
28
28
|
requireConfirmation: shared.isFunction(requireConfirmation) ? requireConfirmation(context) : requireConfirmation ?? false,
|
|
29
29
|
confirmationMode: shared.isFunction(confirmationMode) ? confirmationMode(context) : confirmationMode ?? "simple",
|
|
30
30
|
confirmationTitle: shared.isFunction(confirmationTitle) ? confirmationTitle(context) : confirmationTitle ?? shared.defaultMessageTitle,
|
|
31
|
-
confirmationContent: shared.isFunction(confirmationContent) ? confirmationContent(context) : confirmationContent ??
|
|
31
|
+
confirmationContent: shared.isFunction(confirmationContent) ? confirmationContent(context) : confirmationContent ?? `确定要${rest.label}吗?`
|
|
32
32
|
};
|
|
33
33
|
if (computedButton.requireConfirmation && !computedButton.confirmationMode) {
|
|
34
34
|
computedButton.confirmationMode = "simple";
|
|
@@ -37,7 +37,7 @@ function useComputedActionButtons(buttons, context) {
|
|
|
37
37
|
computedButton.confirmationTitle = shared.defaultMessageTitle;
|
|
38
38
|
}
|
|
39
39
|
if (computedButton.requireConfirmation && !computedButton.confirmationContent) {
|
|
40
|
-
computedButton.confirmationContent =
|
|
40
|
+
computedButton.confirmationContent = `确定要${computedButton.label}吗?`;
|
|
41
41
|
}
|
|
42
42
|
return computedButton;
|
|
43
43
|
}), [buttons, context]);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, 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:14.523Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
package/lib/use-data-query.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, 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:14.523Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
package/lib/use-deep-memo.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, 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:14.523Z, 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:14.523Z, 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:14.523Z, 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:14.523Z, 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:14.523Z, 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:14.523Z, 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:14.523Z, 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:14.523Z, 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:14.523Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
package/lib/use-shallow-memo.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, 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:14.523Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
package/lib/use-singleton.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
package/lib/use-theme-tokens.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, 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:14.523Z, made by Venus. */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
package/lib/use-window-size.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
1
|
+
/*! VefFramework version: 1.0.101, build time: 2025-03-07T14:07:14.523Z, 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/hooks",
|
|
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 hooks of the VEF framework",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"tslib": "2.8.1",
|
|
36
36
|
"use-sync-external-store": "^1.4.0",
|
|
37
37
|
"@uidotdev/usehooks": "^2.4.1",
|
|
38
|
-
"@vef-framework/core": "1.0.
|
|
39
|
-
"@vef-framework/shared": "1.0.
|
|
38
|
+
"@vef-framework/core": "1.0.101",
|
|
39
|
+
"@vef-framework/shared": "1.0.101",
|
|
40
40
|
"ahooks": "3.8.4"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|