@iowas/toolpad 1.0.4 → 1.0.5
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/dist/chunk-3JWXE2JW.mjs +5 -16
- package/dist/chunk-5B2NQDIH.js +145 -0
- package/dist/chunk-BN55HN4U.js +12 -0
- package/dist/chunk-F6JD4MSY.mjs +1 -3
- package/dist/chunk-LUTZBKSG.mjs +64 -138
- package/dist/chunk-PMIWCP25.mjs +4 -19
- package/dist/chunk-SITC3EZQ.js +2225 -0
- package/dist/chunk-SWAF5R4Y.js +686 -0
- package/dist/chunk-VMBNHIHN.js +84 -0
- package/dist/chunk-ZXM3V5SD.mjs +367 -552
- package/dist/core.js +126 -3100
- package/dist/core.mjs +4 -72
- package/dist/index.js +195 -3260
- package/dist/index.mjs +5 -110
- package/dist/nextjs.js +38 -771
- package/dist/nextjs.mjs +9 -19
- package/dist/utils.js +71 -213
- package/dist/utils.mjs +3 -42
- package/package.json +1 -1
package/dist/core.mjs
CHANGED
|
@@ -1,72 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
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 "./chunk-F6JD4MSY.mjs";
|
|
38
|
-
import "./chunk-3JWXE2JW.mjs";
|
|
39
|
-
export {
|
|
40
|
-
Account,
|
|
41
|
-
AccountPopoverFooter,
|
|
42
|
-
AccountPopoverHeader,
|
|
43
|
-
AccountPreview,
|
|
44
|
-
AlertDialog,
|
|
45
|
-
AppProvider,
|
|
46
|
-
AuthenticationContext,
|
|
47
|
-
ConfirmDialog,
|
|
48
|
-
DashboardHeader,
|
|
49
|
-
DashboardLayout,
|
|
50
|
-
DashboardSidebarPageItem,
|
|
51
|
-
DialogsProvider,
|
|
52
|
-
LocalizationContext,
|
|
53
|
-
LocalizationProvider,
|
|
54
|
-
NotificationsProvider,
|
|
55
|
-
PageContainer,
|
|
56
|
-
PageHeader,
|
|
57
|
-
PageHeaderToolbar,
|
|
58
|
-
PromptDialog,
|
|
59
|
-
SessionContext,
|
|
60
|
-
SignInButton,
|
|
61
|
-
SignOutButton,
|
|
62
|
-
ThemeSwitcher,
|
|
63
|
-
ToolbarActions,
|
|
64
|
-
en_default as en,
|
|
65
|
-
useActivePage,
|
|
66
|
-
useDialogs,
|
|
67
|
-
useLocalStorageState,
|
|
68
|
-
useLocaleText,
|
|
69
|
-
useNotifications,
|
|
70
|
-
useStorageState,
|
|
71
|
-
useStorageStateServer
|
|
72
|
-
};
|
|
1
|
+
export { Account, AccountPopoverFooter, AccountPopoverHeader, AccountPreview, AlertDialog, ConfirmDialog, DashboardHeader, DashboardLayout, DashboardSidebarPageItem, PageContainer, PageHeader, PageHeaderToolbar, PromptDialog, SignInButton, SignOutButton, ThemeSwitcher, ToolbarActions, useActivePage, useDialogs, useNotifications } from './chunk-ZXM3V5SD.mjs';
|
|
2
|
+
export { AppProvider, AuthenticationContext, DialogsProvider, LocalizationContext, LocalizationProvider, NotificationsProvider, SessionContext, en_default as en, useLocalStorageState, useLocaleText, useStorageState, useStorageStateServer } from './chunk-LUTZBKSG.mjs';
|
|
3
|
+
import './chunk-F6JD4MSY.mjs';
|
|
4
|
+
import './chunk-3JWXE2JW.mjs';
|