@mdxui/cockpit 6.0.1 → 7.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/dist/developer/index.d.ts +241 -536
- package/dist/developer/index.js +4655 -4648
- package/dist/developer/index.js.map +1 -1
- package/dist/developer/styles/dashboard.css +28458 -0
- package/dist/index.d.ts +8 -6
- package/dist/index.js +4594 -4587
- package/dist/index.js.map +1 -1
- package/package.json +30 -20
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { useAuth } from '@mdxui/auth';
|
|
2
2
|
export { Theme, ThemeMode, ThemePreset, ThemeScript, ThemeState, ThemeStore, applyThemeToElement, getResolvedMode, getThemeCSS, getThemeScriptContent, isThemePreset, themeCSS, themeNames, themePresets, useThemeStore } from '@mdxui/themes';
|
|
3
|
-
import { DeveloperDashboard, DashboardLayout, OverviewPage,
|
|
4
|
-
export { ActivityFeed, ActivityFeedProps, ActivityItem, AreaChart, AreaChartProps, BarChart, BarChartProps, BillingPage, CommandGroup, CommandItem, CommandPalette, CommandPaletteProps, CustomRoute, DashboardBranding, DashboardConfig, DashboardGrid, DashboardGridItem, DashboardGridItemProps, DashboardGridProps, DashboardIdentity, DashboardRoutes, DashboardTheme, DataTable, DataTableProps, DatabasePage, DeveloperDashboardProps, IntegrationsPage, JsonViewer, KPICard, KPICardProps, KeysPage, LandingPage, LineChart, LineChartProps, MockAuthenticationFactors, MockUserProfile, MockUserSessions, MockUsersManagement, NavItem, NavMain, NavUser,
|
|
3
|
+
import { DeveloperDashboard, DashboardLayout, OverviewPage, SettingsAccountPage, APIKeyManager, TeamManager, Billing } from './developer/index.js';
|
|
4
|
+
export { ActivityFeed, ActivityFeedProps, ActivityItem, AreaChart, AreaChartProps, BarChart, BarChartProps, BillingPage, CommandGroup, CommandItem, CommandPalette, CommandPaletteProps, CustomRoute, DashboardBranding, DashboardConfig, DashboardEventsConfig, DashboardGrid, DashboardGridItem, DashboardGridItemProps, DashboardGridProps, DashboardIdentity, DashboardRoutes, DashboardTheme, DataBrowserPage, DataTable, DataTableProps, DatabasePage, DeveloperDashboardProps, EventsLogPage, HeadlesslyOnboardingPage, IntegrationsPage, JsonViewer, KPICard, KPICardProps, KeysPage, LandingPage, LineChart, LineChartProps, MockAuthenticationFactors, MockUserProfile, MockUserSessions, MockUsersManagement, NavItem, NavMain, NavUser, OnboardingFlow, OnboardingGate, OnboardingGateCallbacks, OnboardingGateProps, PlanConfig, PlanDisplayConfig, PlanFeatureConfig, RequestsPage, SettingsUsersPage, SidebarAd, SidebarAdProps, SortableHeader, StatusBadge, StatusDot, UserProfile, VaultDeleteDialog, VaultEmptyState, VaultInputModal, VaultItemCard, VaultList, VaultPage, WebhooksEndpointsPage, WebhooksEventCatalogPage, WebhooksLogsPage, dashboardIcons, getIconByName, useCommandPalette, useCustomRoutes, useDashboard, useRoutes } from './developer/index.js';
|
|
5
5
|
export { AuthLayout, AuthLayoutProps } from './auth/auth-layout.js';
|
|
6
6
|
export { LoginPage, LoginPageProps } from './auth/login-page.js';
|
|
7
7
|
export { SignupPage, SignupPageProps } from './auth/signup-page.js';
|
|
@@ -14,7 +14,9 @@ import '@mdxui/primitives/chart';
|
|
|
14
14
|
import 'react';
|
|
15
15
|
import '@tanstack/react-table';
|
|
16
16
|
import 'mdxui';
|
|
17
|
-
import '
|
|
17
|
+
import '@mdxui/widgets';
|
|
18
|
+
import '@mdxui/admin/usage-overview';
|
|
19
|
+
import '@mdxui/primitives/install-snippet';
|
|
18
20
|
import '@mdxui/primitives/auth/onboarding-wizard';
|
|
19
21
|
|
|
20
22
|
/**
|
|
@@ -28,7 +30,7 @@ import '@mdxui/primitives/auth/onboarding-wizard';
|
|
|
28
30
|
* - DeveloperDashboard -> App (also exports DeveloperDashboard for backwards compat)
|
|
29
31
|
* - DashboardLayout -> Shell
|
|
30
32
|
* - OverviewPage -> Dashboard
|
|
31
|
-
* -
|
|
33
|
+
* - SettingsAccountPage -> Settings
|
|
32
34
|
* - APIKeyManager -> APIKeys
|
|
33
35
|
* - TeamManager -> Team
|
|
34
36
|
*
|
|
@@ -40,11 +42,11 @@ declare const components: {
|
|
|
40
42
|
App: typeof DeveloperDashboard;
|
|
41
43
|
Shell: typeof DashboardLayout;
|
|
42
44
|
Dashboard: typeof OverviewPage;
|
|
43
|
-
Settings: typeof
|
|
45
|
+
Settings: typeof SettingsAccountPage;
|
|
44
46
|
DeveloperDashboard: typeof DeveloperDashboard;
|
|
45
47
|
APIKeys: typeof APIKeyManager;
|
|
46
48
|
Team: typeof TeamManager;
|
|
47
49
|
Billing: typeof Billing;
|
|
48
50
|
};
|
|
49
51
|
|
|
50
|
-
export { APIKeyManager, DeveloperDashboard as App, Billing, DashboardLayout, DeveloperDashboard, OverviewPage,
|
|
52
|
+
export { APIKeyManager, DeveloperDashboard as App, Billing, DashboardLayout, DeveloperDashboard, OverviewPage, SettingsAccountPage, TeamManager, components };
|