@iowas/toolpad 1.0.0
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 +57 -0
- package/dist/AppProvider-CIyOzZv_.d.mts +201 -0
- package/dist/AppProvider-CIyOzZv_.d.ts +201 -0
- package/dist/chunk-3JWXE2JW.mjs +125 -0
- package/dist/chunk-CENJI4RY.mjs +26 -0
- package/dist/chunk-F6JD4MSY.mjs +12 -0
- package/dist/chunk-LUTZBKSG.mjs +710 -0
- package/dist/chunk-UNVYOWC2.mjs +44 -0
- package/dist/chunk-ZXM3V5SD.mjs +2325 -0
- package/dist/core.d.mts +995 -0
- package/dist/core.d.ts +995 -0
- package/dist/core.js +3111 -0
- package/dist/core.mjs +72 -0
- package/dist/index.d.mts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +3271 -0
- package/dist/index.mjs +112 -0
- package/dist/nextjs.d.mts +8 -0
- package/dist/nextjs.d.ts +8 -0
- package/dist/nextjs.js +858 -0
- package/dist/nextjs.mjs +106 -0
- package/dist/utils.d.mts +98 -0
- package/dist/utils.d.ts +98 -0
- package/dist/utils.js +218 -0
- package/dist/utils.mjs +44 -0
- package/package.json +87 -0
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Account,
|
|
3
|
+
AccountPopoverFooter,
|
|
4
|
+
AccountPopoverHeader,
|
|
5
|
+
AccountPreview,
|
|
6
|
+
AlertDialog,
|
|
7
|
+
ConfirmDialog,
|
|
8
|
+
DashboardHeader,
|
|
9
|
+
DashboardLayout,
|
|
10
|
+
DashboardSidebarPageItem,
|
|
11
|
+
PageContainer,
|
|
12
|
+
PageHeader,
|
|
13
|
+
PageHeaderToolbar,
|
|
14
|
+
PromptDialog,
|
|
15
|
+
SignInButton,
|
|
16
|
+
SignOutButton,
|
|
17
|
+
ThemeSwitcher,
|
|
18
|
+
ToolbarActions,
|
|
19
|
+
useActivePage,
|
|
20
|
+
useDialogs,
|
|
21
|
+
useNotifications
|
|
22
|
+
} from "./chunk-ZXM3V5SD.mjs";
|
|
23
|
+
import {
|
|
24
|
+
AppProvider,
|
|
25
|
+
AuthenticationContext,
|
|
26
|
+
DialogsProvider,
|
|
27
|
+
LocalizationContext,
|
|
28
|
+
LocalizationProvider,
|
|
29
|
+
NotificationsProvider,
|
|
30
|
+
SessionContext,
|
|
31
|
+
en_default,
|
|
32
|
+
useLocalStorageState,
|
|
33
|
+
useLocaleText,
|
|
34
|
+
useStorageState,
|
|
35
|
+
useStorageStateServer
|
|
36
|
+
} from "./chunk-LUTZBKSG.mjs";
|
|
37
|
+
import {
|
|
38
|
+
useBoolean,
|
|
39
|
+
usePageTitle
|
|
40
|
+
} from "./chunk-CENJI4RY.mjs";
|
|
41
|
+
import {
|
|
42
|
+
warnOnce
|
|
43
|
+
} from "./chunk-F6JD4MSY.mjs";
|
|
44
|
+
import {
|
|
45
|
+
asArray,
|
|
46
|
+
equalProperties,
|
|
47
|
+
filterKeys,
|
|
48
|
+
filterValues,
|
|
49
|
+
hasOwnProperty,
|
|
50
|
+
mapKeys,
|
|
51
|
+
mapProperties,
|
|
52
|
+
mapValues
|
|
53
|
+
} from "./chunk-UNVYOWC2.mjs";
|
|
54
|
+
import {
|
|
55
|
+
createGlobalState,
|
|
56
|
+
createProvidedContext,
|
|
57
|
+
interleave,
|
|
58
|
+
useAssertedContext,
|
|
59
|
+
useNonNullableContext,
|
|
60
|
+
useTraceUpdates
|
|
61
|
+
} from "./chunk-3JWXE2JW.mjs";
|
|
62
|
+
export {
|
|
63
|
+
Account,
|
|
64
|
+
AccountPopoverFooter,
|
|
65
|
+
AccountPopoverHeader,
|
|
66
|
+
AccountPreview,
|
|
67
|
+
AlertDialog,
|
|
68
|
+
AppProvider,
|
|
69
|
+
AuthenticationContext,
|
|
70
|
+
ConfirmDialog,
|
|
71
|
+
DashboardHeader,
|
|
72
|
+
DashboardLayout,
|
|
73
|
+
DashboardSidebarPageItem,
|
|
74
|
+
DialogsProvider,
|
|
75
|
+
LocalizationContext,
|
|
76
|
+
LocalizationProvider,
|
|
77
|
+
NotificationsProvider,
|
|
78
|
+
PageContainer,
|
|
79
|
+
PageHeader,
|
|
80
|
+
PageHeaderToolbar,
|
|
81
|
+
PromptDialog,
|
|
82
|
+
SessionContext,
|
|
83
|
+
SignInButton,
|
|
84
|
+
SignOutButton,
|
|
85
|
+
ThemeSwitcher,
|
|
86
|
+
ToolbarActions,
|
|
87
|
+
asArray,
|
|
88
|
+
createGlobalState,
|
|
89
|
+
createProvidedContext,
|
|
90
|
+
en_default as en,
|
|
91
|
+
equalProperties,
|
|
92
|
+
filterKeys,
|
|
93
|
+
filterValues,
|
|
94
|
+
hasOwnProperty,
|
|
95
|
+
interleave,
|
|
96
|
+
mapKeys,
|
|
97
|
+
mapProperties,
|
|
98
|
+
mapValues,
|
|
99
|
+
useActivePage,
|
|
100
|
+
useAssertedContext,
|
|
101
|
+
useBoolean,
|
|
102
|
+
useDialogs,
|
|
103
|
+
useLocalStorageState,
|
|
104
|
+
useLocaleText,
|
|
105
|
+
useNonNullableContext,
|
|
106
|
+
useNotifications,
|
|
107
|
+
usePageTitle,
|
|
108
|
+
useStorageState,
|
|
109
|
+
useStorageStateServer,
|
|
110
|
+
useTraceUpdates,
|
|
111
|
+
warnOnce
|
|
112
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
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
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
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 };
|