@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/auth.d.ts +15 -1
- package/dist/auth.js +3 -1
- package/dist/chunk-HY5IBRCE.js +1171 -0
- package/dist/{chunk-COCSO7FG.js → chunk-PCTEG6HR.js} +69 -1
- package/dist/{chunk-67C53XVV.js → chunk-QGI5E7JD.js} +1 -1
- package/dist/dashboard.d.ts +3 -113
- package/dist/dashboard.js +13 -1
- package/dist/index-BOjBJwzD.d.ts +219 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +103 -6
- package/dist/pages.d.ts +25 -1
- package/dist/pages.js +541 -221
- package/dist/tokens.css +111 -1
- package/dist/workspace.d.ts +1 -1
- package/dist/workspace.js +1 -1
- package/package.json +1 -1
- package/tailwind.config.cjs +39 -0
- package/dist/chunk-OM6ON27W.js +0 -829
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 };
|