@mdxui/cockpit 7.0.5 → 7.0.7

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/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, SettingsPage, APIKeyManager, TeamManager, Billing } from './developer/index.js';
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, RequestsPage, SettingsProfilePage, SettingsSecurityPage, SettingsSessionsPage, SidebarAd, SortableHeader, StandaloneAPIKeys, StandaloneAPIKeysProps, StandaloneBilling, StandaloneBillingProps, StandaloneConfig, StandaloneProvider, StandaloneTeam, StandaloneTeamProps, StandaloneWebhooks, StandaloneWebhooksProps, StatusBadge, StatusDot, TeamPage, TeamSwitcher, UserProfile, VaultDeleteDialog, VaultEmptyState, VaultInputModal, VaultItemCard, VaultList, VaultPage, WebhooksActivityPage, WebhooksEndpointsPage, WebhooksEventCatalogPage, WebhooksLogsPage, dashboardIcons, getAuthToken, getDebugStatus, getEffectiveToken, getIconByName, getSDK, isAuthenticated, isDebugMode, setDebugMode, setDevToken, testSDKConnection, useCommandPalette, useCustomRoutes, useDashboard, useRoutes } from './developer/index.js';
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 'platform.do';
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
- * - SettingsPage -> Settings
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 SettingsPage;
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, SettingsPage, TeamManager, components };
52
+ export { APIKeyManager, DeveloperDashboard as App, Billing, DashboardLayout, DeveloperDashboard, OverviewPage, SettingsAccountPage, TeamManager, components };