@tangle-network/sandbox-ui 0.3.3 → 0.3.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/pages.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { B as BillingSubscription, a as BillingBalance, b as BillingUsage, U as UsageDataPoint, P as PricingTier } from './usage-chart-CY9xo3KX.js';
3
+ import * as React from 'react';
3
4
 
4
5
  type ProductVariant$1 = "sandbox";
5
6
  interface BillingPageData {
@@ -20,6 +21,29 @@ interface BillingPageProps {
20
21
  }
21
22
  declare function BillingPage({ variant, initialData, apiBasePath, onManageSubscription, onAddCredits, onSelectTier, fetchBillingData, }: BillingPageProps): react_jsx_runtime.JSX.Element;
22
23
 
24
+ interface EnvironmentOption {
25
+ id: string;
26
+ name: string;
27
+ description: string;
28
+ icon: React.ReactNode;
29
+ color: string;
30
+ }
31
+ interface ProvisioningWizardProps {
32
+ environments?: EnvironmentOption[];
33
+ onSubmit?: (config: ProvisioningConfig) => void;
34
+ onBack?: () => void;
35
+ className?: string;
36
+ }
37
+ interface ProvisioningConfig {
38
+ environment: string;
39
+ cpuCores: number;
40
+ ramGB: number;
41
+ storageGB: number;
42
+ modelTier: string;
43
+ systemPrompt: string;
44
+ }
45
+ declare function ProvisioningWizard({ environments, onSubmit, onBack, className, }: ProvisioningWizardProps): react_jsx_runtime.JSX.Element;
46
+
23
47
  type ProductVariant = "sandbox";
24
48
  interface StandalonePricingPageProps {
25
49
  variant?: ProductVariant;
@@ -87,4 +111,4 @@ interface ProfilesPageProps {
87
111
  }
88
112
  declare function ProfilesPage({ apiClient, tier, maxProfiles, onCompareClick, title, }: ProfilesPageProps): react_jsx_runtime.JSX.Element;
89
113
 
90
- export { BillingPage, type BillingPageData, type BillingPageProps, type ProductVariant$1 as ProductVariant, type Profile, type ProfileFormData, type ProfileMetrics, ProfilesPage, type ProfilesPageProps, StandalonePricingPage, type StandalonePricingPageProps };
114
+ export { BillingPage, type BillingPageData, type BillingPageProps, type EnvironmentOption, type ProductVariant$1 as ProductVariant, type Profile, type ProfileFormData, type ProfileMetrics, ProfilesPage, type ProfilesPageProps, type ProvisioningConfig, ProvisioningWizard, type ProvisioningWizardProps, StandalonePricingPage, type StandalonePricingPageProps };