@iowas/toolpad 1.0.5 → 1.0.6
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/README.md +2 -5
- package/dist/core.d.mts +200 -4
- package/dist/core.d.ts +200 -4
- package/dist/core.js +2940 -125
- package/dist/core.mjs +2850 -4
- package/dist/index.d.mts +1 -3
- package/dist/index.d.ts +1 -3
- package/dist/index.js +2940 -194
- package/dist/index.mjs +2850 -5
- package/package.json +2 -12
- package/dist/AppProvider-CIyOzZv_.d.mts +0 -201
- package/dist/AppProvider-CIyOzZv_.d.ts +0 -201
- package/dist/chunk-3JWXE2JW.mjs +0 -114
- package/dist/chunk-5B2NQDIH.js +0 -145
- package/dist/chunk-BN55HN4U.js +0 -12
- package/dist/chunk-F6JD4MSY.mjs +0 -10
- package/dist/chunk-LUTZBKSG.mjs +0 -636
- package/dist/chunk-PMIWCP25.mjs +0 -53
- package/dist/chunk-SITC3EZQ.js +0 -2225
- package/dist/chunk-SWAF5R4Y.js +0 -686
- package/dist/chunk-VMBNHIHN.js +0 -84
- package/dist/chunk-ZXM3V5SD.mjs +0 -2140
- package/dist/nextjs.d.mts +0 -8
- package/dist/nextjs.d.ts +0 -8
- package/dist/nextjs.js +0 -69
- package/dist/nextjs.mjs +0 -44
- package/dist/utils.d.mts +0 -98
- package/dist/utils.d.ts +0 -98
- package/dist/utils.js +0 -76
- package/dist/utils.mjs +0 -3
package/dist/nextjs.d.mts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { a as AppProviderProps } from './AppProvider-CIyOzZv_.mjs';
|
|
3
|
-
import 'react';
|
|
4
|
-
import '@mui/material/styles';
|
|
5
|
-
|
|
6
|
-
declare function NextAppProvider(props: AppProviderProps): react_jsx_runtime.JSX.Element;
|
|
7
|
-
|
|
8
|
-
export { NextAppProvider };
|
package/dist/nextjs.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { a as AppProviderProps } from './AppProvider-CIyOzZv_.js';
|
|
3
|
-
import 'react';
|
|
4
|
-
import '@mui/material/styles';
|
|
5
|
-
|
|
6
|
-
declare function NextAppProvider(props: AppProviderProps): react_jsx_runtime.JSX.Element;
|
|
7
|
-
|
|
8
|
-
export { NextAppProvider };
|
package/dist/nextjs.js
DELETED
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
var chunkSWAF5R4Y_js = require('./chunk-SWAF5R4Y.js');
|
|
4
|
-
var chunk5B2NQDIH_js = require('./chunk-5B2NQDIH.js');
|
|
5
|
-
var React = require('react');
|
|
6
|
-
var NextLink = require('next/link.js');
|
|
7
|
-
var navigation_js = require('next/navigation.js');
|
|
8
|
-
var jsxRuntime = require('react/jsx-runtime');
|
|
9
|
-
|
|
10
|
-
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
11
|
-
|
|
12
|
-
function _interopNamespace(e) {
|
|
13
|
-
if (e && e.__esModule) return e;
|
|
14
|
-
var n = Object.create(null);
|
|
15
|
-
if (e) {
|
|
16
|
-
Object.keys(e).forEach(function (k) {
|
|
17
|
-
if (k !== 'default') {
|
|
18
|
-
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
19
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
20
|
-
enumerable: true,
|
|
21
|
-
get: function () { return e[k]; }
|
|
22
|
-
});
|
|
23
|
-
}
|
|
24
|
-
});
|
|
25
|
-
}
|
|
26
|
-
n.default = e;
|
|
27
|
-
return Object.freeze(n);
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
31
|
-
var NextLink__default = /*#__PURE__*/_interopDefault(NextLink);
|
|
32
|
-
|
|
33
|
-
var Link = React__namespace.forwardRef((props, ref) => {
|
|
34
|
-
const _a = props, { href, history } = _a, rest = chunk5B2NQDIH_js.__objRest(_a, ["href", "history"]);
|
|
35
|
-
return /* @__PURE__ */ jsxRuntime.jsx(NextLink__default.default, chunk5B2NQDIH_js.__spreadValues({ ref, href, replace: history === "replace" }, rest));
|
|
36
|
-
});
|
|
37
|
-
function NextAppProviderApp(props) {
|
|
38
|
-
const pathname = navigation_js.usePathname();
|
|
39
|
-
const searchParams = navigation_js.useSearchParams();
|
|
40
|
-
const { push, replace } = navigation_js.useRouter();
|
|
41
|
-
const navigate = React__namespace.useCallback(
|
|
42
|
-
(url, { history = "auto" } = {}) => {
|
|
43
|
-
if (history === "auto" || history === "push") {
|
|
44
|
-
return push(String(url));
|
|
45
|
-
}
|
|
46
|
-
if (history === "replace") {
|
|
47
|
-
return replace(String(url));
|
|
48
|
-
}
|
|
49
|
-
throw new Error(`Invalid history option: ${history}`);
|
|
50
|
-
},
|
|
51
|
-
[push, replace]
|
|
52
|
-
);
|
|
53
|
-
const routerImpl = React__namespace.useMemo(
|
|
54
|
-
() => ({
|
|
55
|
-
pathname,
|
|
56
|
-
searchParams,
|
|
57
|
-
navigate,
|
|
58
|
-
Link
|
|
59
|
-
}),
|
|
60
|
-
[pathname, navigate, searchParams]
|
|
61
|
-
);
|
|
62
|
-
return /* @__PURE__ */ jsxRuntime.jsx(chunkSWAF5R4Y_js.AppProvider, chunk5B2NQDIH_js.__spreadValues({ router: routerImpl }, props));
|
|
63
|
-
}
|
|
64
|
-
function NextAppProvider(props) {
|
|
65
|
-
const AppProvider2 = NextAppProviderApp;
|
|
66
|
-
return /* @__PURE__ */ jsxRuntime.jsx(AppProvider2, chunk5B2NQDIH_js.__spreadValues({}, props));
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
exports.NextAppProvider = NextAppProvider;
|
package/dist/nextjs.mjs
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import { AppProvider } from './chunk-LUTZBKSG.mjs';
|
|
2
|
-
import { __objRest, __spreadValues } from './chunk-3JWXE2JW.mjs';
|
|
3
|
-
import * as React from 'react';
|
|
4
|
-
import NextLink from 'next/link.js';
|
|
5
|
-
import { usePathname, useSearchParams, useRouter } from 'next/navigation.js';
|
|
6
|
-
import { jsx } from 'react/jsx-runtime';
|
|
7
|
-
|
|
8
|
-
var Link = React.forwardRef((props, ref) => {
|
|
9
|
-
const _a = props, { href, history } = _a, rest = __objRest(_a, ["href", "history"]);
|
|
10
|
-
return /* @__PURE__ */ jsx(NextLink, __spreadValues({ ref, href, replace: history === "replace" }, rest));
|
|
11
|
-
});
|
|
12
|
-
function NextAppProviderApp(props) {
|
|
13
|
-
const pathname = usePathname();
|
|
14
|
-
const searchParams = useSearchParams();
|
|
15
|
-
const { push, replace } = useRouter();
|
|
16
|
-
const navigate = React.useCallback(
|
|
17
|
-
(url, { history = "auto" } = {}) => {
|
|
18
|
-
if (history === "auto" || history === "push") {
|
|
19
|
-
return push(String(url));
|
|
20
|
-
}
|
|
21
|
-
if (history === "replace") {
|
|
22
|
-
return replace(String(url));
|
|
23
|
-
}
|
|
24
|
-
throw new Error(`Invalid history option: ${history}`);
|
|
25
|
-
},
|
|
26
|
-
[push, replace]
|
|
27
|
-
);
|
|
28
|
-
const routerImpl = React.useMemo(
|
|
29
|
-
() => ({
|
|
30
|
-
pathname,
|
|
31
|
-
searchParams,
|
|
32
|
-
navigate,
|
|
33
|
-
Link
|
|
34
|
-
}),
|
|
35
|
-
[pathname, navigate, searchParams]
|
|
36
|
-
);
|
|
37
|
-
return /* @__PURE__ */ jsx(AppProvider, __spreadValues({ router: routerImpl }, props));
|
|
38
|
-
}
|
|
39
|
-
function NextAppProvider(props) {
|
|
40
|
-
const AppProvider2 = NextAppProviderApp;
|
|
41
|
-
return /* @__PURE__ */ jsx(AppProvider2, __spreadValues({}, props));
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
export { NextAppProvider };
|
package/dist/utils.d.mts
DELETED
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
|
|
3
|
-
declare function asArray<T>(maybeArray: T | T[]): T[];
|
|
4
|
-
type PropertiesOf<P> = Extract<keyof P, string>;
|
|
5
|
-
type Require<T, K extends keyof T> = T & {
|
|
6
|
-
[P in K]-?: T[P];
|
|
7
|
-
};
|
|
8
|
-
type Ensure<U, K extends PropertyKey> = K extends keyof U ? Require<U, K> : U & Record<K, unknown>;
|
|
9
|
-
/**
|
|
10
|
-
* Type aware version of Object.prototype.hasOwnProperty.
|
|
11
|
-
* See https://fettblog.eu/typescript-hasownproperty/
|
|
12
|
-
*/
|
|
13
|
-
declare function hasOwnProperty<X extends {}, Y extends PropertyKey>(obj: X, prop: Y): obj is Ensure<X, Y>;
|
|
14
|
-
/**
|
|
15
|
-
* Maps `obj` to a new object. The `mapper` function receives an entry array of key and value and
|
|
16
|
-
* is allowed to manipulate both. It can also return `null` to omit a property from the result.
|
|
17
|
-
*/
|
|
18
|
-
declare function mapProperties<P, L extends PropertyKey, U>(obj: P, mapper: <K extends PropertiesOf<P>>(old: [K, P[K]]) => [L, U] | null): Record<L, U>;
|
|
19
|
-
/**
|
|
20
|
-
* Maps an objects' property keys. The result is a new object with the mapped keys, but the same values.
|
|
21
|
-
*/
|
|
22
|
-
declare function mapKeys<U>(obj: Record<string, U>, mapper: (old: string) => string): Record<string, U>;
|
|
23
|
-
/**
|
|
24
|
-
* Maps an objects' property values. The result is a new object with the same keys, but mapped values.
|
|
25
|
-
*/
|
|
26
|
-
declare function mapValues<P, V>(obj: P, mapper: (old: P[PropertiesOf<P>], key: PropertiesOf<P>) => V): Record<PropertiesOf<P>, V>;
|
|
27
|
-
/**
|
|
28
|
-
* Filters an objects' property values. Similar to `array.filter` but for objects. The result is a new
|
|
29
|
-
* object with all the properties removed for which `filter` returned `false`.
|
|
30
|
-
*/
|
|
31
|
-
declare function filterValues<K extends PropertyKey, P, Q extends P>(obj: Record<K, P>, filter: (old: P) => old is Q): Record<K, Q>;
|
|
32
|
-
declare function filterValues<P>(obj: P, filter: (old: P[keyof P]) => boolean): Partial<P>;
|
|
33
|
-
declare function filterValues<U>(obj: Record<string, U>, filter: (old: U) => boolean): Record<string, U>;
|
|
34
|
-
/**
|
|
35
|
-
* Filters an objects' property keys. Similar to `array.filter` but for objects. The result is a new
|
|
36
|
-
* object with all the properties removed for which `filter` returned `false`.
|
|
37
|
-
*/
|
|
38
|
-
declare function filterKeys<P>(obj: P, filter: (old: keyof P) => boolean): Partial<P>;
|
|
39
|
-
declare function filterKeys<U>(obj: Record<string, U>, filter: (old: string) => boolean): Record<string, U>;
|
|
40
|
-
/**
|
|
41
|
-
* Compares the properties of two objects. Returns `true` if all properties are strictly equal, `false`
|
|
42
|
-
* otherwise.
|
|
43
|
-
* Pass a subset of properties to only compare those.
|
|
44
|
-
*/
|
|
45
|
-
declare function equalProperties<P extends object>(obj1: P, obj2: P, subset?: (keyof P)[]): boolean;
|
|
46
|
-
|
|
47
|
-
/**
|
|
48
|
-
* Like `Array.prototype.join`, but for React nodes.
|
|
49
|
-
*/
|
|
50
|
-
declare function interleave(items: React.ReactNode[], separator: React.ReactNode): React.ReactNode;
|
|
51
|
-
/**
|
|
52
|
-
* Consume a context but throw when used outside of a provider.
|
|
53
|
-
*/
|
|
54
|
-
declare function useNonNullableContext<T>(context: React.Context<T>, name?: string): NonNullable<T>;
|
|
55
|
-
/**
|
|
56
|
-
* Context that throws when used outside of a provider.
|
|
57
|
-
*/
|
|
58
|
-
declare function createProvidedContext<T>(name?: string): [() => T, React.ComponentType<React.ProviderProps<T>>];
|
|
59
|
-
declare function useAssertedContext<T>(context: React.Context<T | undefined>): T;
|
|
60
|
-
/**
|
|
61
|
-
* Debugging tool that logs updates to props.
|
|
62
|
-
*/
|
|
63
|
-
declare function useTraceUpdates<P extends object>(prefix: string, props: P): void;
|
|
64
|
-
/**
|
|
65
|
-
* Create a shared state to be used across the application. Returns a useState hook that
|
|
66
|
-
* is synchronized on the same state between all instances where it is called.
|
|
67
|
-
*/
|
|
68
|
-
declare function createGlobalState<T>(initialState: T): {
|
|
69
|
-
getState: () => T;
|
|
70
|
-
setState: (newState: T | ((oldValue: T) => T)) => void;
|
|
71
|
-
useValue: () => T;
|
|
72
|
-
useState: () => [T, React.Dispatch<React.SetStateAction<T>>];
|
|
73
|
-
subscribe: (cb: (state: T) => void) => () => void;
|
|
74
|
-
};
|
|
75
|
-
|
|
76
|
-
/**
|
|
77
|
-
* A utility with shortcuts to manipulate boolean values.
|
|
78
|
-
*/
|
|
79
|
-
declare function useBoolean(initialValue: boolean): {
|
|
80
|
-
value: boolean;
|
|
81
|
-
setValue: React.Dispatch<React.SetStateAction<boolean>>;
|
|
82
|
-
toggle: () => void;
|
|
83
|
-
setTrue: () => void;
|
|
84
|
-
setFalse: () => void;
|
|
85
|
-
};
|
|
86
|
-
|
|
87
|
-
/**
|
|
88
|
-
* Sets the current document title.
|
|
89
|
-
*/
|
|
90
|
-
declare function usePageTitle(title: string): void;
|
|
91
|
-
|
|
92
|
-
/**
|
|
93
|
-
* Warns only once for a specific message.
|
|
94
|
-
* @param msg The message to warn.
|
|
95
|
-
*/
|
|
96
|
-
declare function warnOnce(msg: string): void;
|
|
97
|
-
|
|
98
|
-
export { asArray, createGlobalState, createProvidedContext, equalProperties, filterKeys, filterValues, hasOwnProperty, interleave, mapKeys, mapProperties, mapValues, useAssertedContext, useBoolean, useNonNullableContext, usePageTitle, useTraceUpdates, warnOnce };
|
package/dist/utils.d.ts
DELETED
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
|
|
3
|
-
declare function asArray<T>(maybeArray: T | T[]): T[];
|
|
4
|
-
type PropertiesOf<P> = Extract<keyof P, string>;
|
|
5
|
-
type Require<T, K extends keyof T> = T & {
|
|
6
|
-
[P in K]-?: T[P];
|
|
7
|
-
};
|
|
8
|
-
type Ensure<U, K extends PropertyKey> = K extends keyof U ? Require<U, K> : U & Record<K, unknown>;
|
|
9
|
-
/**
|
|
10
|
-
* Type aware version of Object.prototype.hasOwnProperty.
|
|
11
|
-
* See https://fettblog.eu/typescript-hasownproperty/
|
|
12
|
-
*/
|
|
13
|
-
declare function hasOwnProperty<X extends {}, Y extends PropertyKey>(obj: X, prop: Y): obj is Ensure<X, Y>;
|
|
14
|
-
/**
|
|
15
|
-
* Maps `obj` to a new object. The `mapper` function receives an entry array of key and value and
|
|
16
|
-
* is allowed to manipulate both. It can also return `null` to omit a property from the result.
|
|
17
|
-
*/
|
|
18
|
-
declare function mapProperties<P, L extends PropertyKey, U>(obj: P, mapper: <K extends PropertiesOf<P>>(old: [K, P[K]]) => [L, U] | null): Record<L, U>;
|
|
19
|
-
/**
|
|
20
|
-
* Maps an objects' property keys. The result is a new object with the mapped keys, but the same values.
|
|
21
|
-
*/
|
|
22
|
-
declare function mapKeys<U>(obj: Record<string, U>, mapper: (old: string) => string): Record<string, U>;
|
|
23
|
-
/**
|
|
24
|
-
* Maps an objects' property values. The result is a new object with the same keys, but mapped values.
|
|
25
|
-
*/
|
|
26
|
-
declare function mapValues<P, V>(obj: P, mapper: (old: P[PropertiesOf<P>], key: PropertiesOf<P>) => V): Record<PropertiesOf<P>, V>;
|
|
27
|
-
/**
|
|
28
|
-
* Filters an objects' property values. Similar to `array.filter` but for objects. The result is a new
|
|
29
|
-
* object with all the properties removed for which `filter` returned `false`.
|
|
30
|
-
*/
|
|
31
|
-
declare function filterValues<K extends PropertyKey, P, Q extends P>(obj: Record<K, P>, filter: (old: P) => old is Q): Record<K, Q>;
|
|
32
|
-
declare function filterValues<P>(obj: P, filter: (old: P[keyof P]) => boolean): Partial<P>;
|
|
33
|
-
declare function filterValues<U>(obj: Record<string, U>, filter: (old: U) => boolean): Record<string, U>;
|
|
34
|
-
/**
|
|
35
|
-
* Filters an objects' property keys. Similar to `array.filter` but for objects. The result is a new
|
|
36
|
-
* object with all the properties removed for which `filter` returned `false`.
|
|
37
|
-
*/
|
|
38
|
-
declare function filterKeys<P>(obj: P, filter: (old: keyof P) => boolean): Partial<P>;
|
|
39
|
-
declare function filterKeys<U>(obj: Record<string, U>, filter: (old: string) => boolean): Record<string, U>;
|
|
40
|
-
/**
|
|
41
|
-
* Compares the properties of two objects. Returns `true` if all properties are strictly equal, `false`
|
|
42
|
-
* otherwise.
|
|
43
|
-
* Pass a subset of properties to only compare those.
|
|
44
|
-
*/
|
|
45
|
-
declare function equalProperties<P extends object>(obj1: P, obj2: P, subset?: (keyof P)[]): boolean;
|
|
46
|
-
|
|
47
|
-
/**
|
|
48
|
-
* Like `Array.prototype.join`, but for React nodes.
|
|
49
|
-
*/
|
|
50
|
-
declare function interleave(items: React.ReactNode[], separator: React.ReactNode): React.ReactNode;
|
|
51
|
-
/**
|
|
52
|
-
* Consume a context but throw when used outside of a provider.
|
|
53
|
-
*/
|
|
54
|
-
declare function useNonNullableContext<T>(context: React.Context<T>, name?: string): NonNullable<T>;
|
|
55
|
-
/**
|
|
56
|
-
* Context that throws when used outside of a provider.
|
|
57
|
-
*/
|
|
58
|
-
declare function createProvidedContext<T>(name?: string): [() => T, React.ComponentType<React.ProviderProps<T>>];
|
|
59
|
-
declare function useAssertedContext<T>(context: React.Context<T | undefined>): T;
|
|
60
|
-
/**
|
|
61
|
-
* Debugging tool that logs updates to props.
|
|
62
|
-
*/
|
|
63
|
-
declare function useTraceUpdates<P extends object>(prefix: string, props: P): void;
|
|
64
|
-
/**
|
|
65
|
-
* Create a shared state to be used across the application. Returns a useState hook that
|
|
66
|
-
* is synchronized on the same state between all instances where it is called.
|
|
67
|
-
*/
|
|
68
|
-
declare function createGlobalState<T>(initialState: T): {
|
|
69
|
-
getState: () => T;
|
|
70
|
-
setState: (newState: T | ((oldValue: T) => T)) => void;
|
|
71
|
-
useValue: () => T;
|
|
72
|
-
useState: () => [T, React.Dispatch<React.SetStateAction<T>>];
|
|
73
|
-
subscribe: (cb: (state: T) => void) => () => void;
|
|
74
|
-
};
|
|
75
|
-
|
|
76
|
-
/**
|
|
77
|
-
* A utility with shortcuts to manipulate boolean values.
|
|
78
|
-
*/
|
|
79
|
-
declare function useBoolean(initialValue: boolean): {
|
|
80
|
-
value: boolean;
|
|
81
|
-
setValue: React.Dispatch<React.SetStateAction<boolean>>;
|
|
82
|
-
toggle: () => void;
|
|
83
|
-
setTrue: () => void;
|
|
84
|
-
setFalse: () => void;
|
|
85
|
-
};
|
|
86
|
-
|
|
87
|
-
/**
|
|
88
|
-
* Sets the current document title.
|
|
89
|
-
*/
|
|
90
|
-
declare function usePageTitle(title: string): void;
|
|
91
|
-
|
|
92
|
-
/**
|
|
93
|
-
* Warns only once for a specific message.
|
|
94
|
-
* @param msg The message to warn.
|
|
95
|
-
*/
|
|
96
|
-
declare function warnOnce(msg: string): void;
|
|
97
|
-
|
|
98
|
-
export { asArray, createGlobalState, createProvidedContext, equalProperties, filterKeys, filterValues, hasOwnProperty, interleave, mapKeys, mapProperties, mapValues, useAssertedContext, useBoolean, useNonNullableContext, usePageTitle, useTraceUpdates, warnOnce };
|
package/dist/utils.js
DELETED
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
var chunkVMBNHIHN_js = require('./chunk-VMBNHIHN.js');
|
|
4
|
-
var chunkBN55HN4U_js = require('./chunk-BN55HN4U.js');
|
|
5
|
-
var chunk5B2NQDIH_js = require('./chunk-5B2NQDIH.js');
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
Object.defineProperty(exports, "asArray", {
|
|
10
|
-
enumerable: true,
|
|
11
|
-
get: function () { return chunkVMBNHIHN_js.asArray; }
|
|
12
|
-
});
|
|
13
|
-
Object.defineProperty(exports, "equalProperties", {
|
|
14
|
-
enumerable: true,
|
|
15
|
-
get: function () { return chunkVMBNHIHN_js.equalProperties; }
|
|
16
|
-
});
|
|
17
|
-
Object.defineProperty(exports, "filterKeys", {
|
|
18
|
-
enumerable: true,
|
|
19
|
-
get: function () { return chunkVMBNHIHN_js.filterKeys; }
|
|
20
|
-
});
|
|
21
|
-
Object.defineProperty(exports, "filterValues", {
|
|
22
|
-
enumerable: true,
|
|
23
|
-
get: function () { return chunkVMBNHIHN_js.filterValues; }
|
|
24
|
-
});
|
|
25
|
-
Object.defineProperty(exports, "hasOwnProperty", {
|
|
26
|
-
enumerable: true,
|
|
27
|
-
get: function () { return chunkVMBNHIHN_js.hasOwnProperty; }
|
|
28
|
-
});
|
|
29
|
-
Object.defineProperty(exports, "mapKeys", {
|
|
30
|
-
enumerable: true,
|
|
31
|
-
get: function () { return chunkVMBNHIHN_js.mapKeys; }
|
|
32
|
-
});
|
|
33
|
-
Object.defineProperty(exports, "mapProperties", {
|
|
34
|
-
enumerable: true,
|
|
35
|
-
get: function () { return chunkVMBNHIHN_js.mapProperties; }
|
|
36
|
-
});
|
|
37
|
-
Object.defineProperty(exports, "mapValues", {
|
|
38
|
-
enumerable: true,
|
|
39
|
-
get: function () { return chunkVMBNHIHN_js.mapValues; }
|
|
40
|
-
});
|
|
41
|
-
Object.defineProperty(exports, "useBoolean", {
|
|
42
|
-
enumerable: true,
|
|
43
|
-
get: function () { return chunkVMBNHIHN_js.useBoolean; }
|
|
44
|
-
});
|
|
45
|
-
Object.defineProperty(exports, "usePageTitle", {
|
|
46
|
-
enumerable: true,
|
|
47
|
-
get: function () { return chunkVMBNHIHN_js.usePageTitle; }
|
|
48
|
-
});
|
|
49
|
-
Object.defineProperty(exports, "warnOnce", {
|
|
50
|
-
enumerable: true,
|
|
51
|
-
get: function () { return chunkBN55HN4U_js.warnOnce; }
|
|
52
|
-
});
|
|
53
|
-
Object.defineProperty(exports, "createGlobalState", {
|
|
54
|
-
enumerable: true,
|
|
55
|
-
get: function () { return chunk5B2NQDIH_js.createGlobalState; }
|
|
56
|
-
});
|
|
57
|
-
Object.defineProperty(exports, "createProvidedContext", {
|
|
58
|
-
enumerable: true,
|
|
59
|
-
get: function () { return chunk5B2NQDIH_js.createProvidedContext; }
|
|
60
|
-
});
|
|
61
|
-
Object.defineProperty(exports, "interleave", {
|
|
62
|
-
enumerable: true,
|
|
63
|
-
get: function () { return chunk5B2NQDIH_js.interleave; }
|
|
64
|
-
});
|
|
65
|
-
Object.defineProperty(exports, "useAssertedContext", {
|
|
66
|
-
enumerable: true,
|
|
67
|
-
get: function () { return chunk5B2NQDIH_js.useAssertedContext; }
|
|
68
|
-
});
|
|
69
|
-
Object.defineProperty(exports, "useNonNullableContext", {
|
|
70
|
-
enumerable: true,
|
|
71
|
-
get: function () { return chunk5B2NQDIH_js.useNonNullableContext; }
|
|
72
|
-
});
|
|
73
|
-
Object.defineProperty(exports, "useTraceUpdates", {
|
|
74
|
-
enumerable: true,
|
|
75
|
-
get: function () { return chunk5B2NQDIH_js.useTraceUpdates; }
|
|
76
|
-
});
|
package/dist/utils.mjs
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export { asArray, equalProperties, filterKeys, filterValues, hasOwnProperty, mapKeys, mapProperties, mapValues, useBoolean, usePageTitle } from './chunk-PMIWCP25.mjs';
|
|
2
|
-
export { warnOnce } from './chunk-F6JD4MSY.mjs';
|
|
3
|
-
export { createGlobalState, createProvidedContext, interleave, useAssertedContext, useNonNullableContext, useTraceUpdates } from './chunk-3JWXE2JW.mjs';
|