@timbal-ai/timbal-react 0.8.1 → 0.8.2
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/CHANGELOG.md +19 -0
- package/README.md +14 -4
- package/dist/app.cjs +220 -35
- package/dist/app.d.cts +1 -1
- package/dist/app.d.ts +1 -1
- package/dist/app.esm.js +3 -1
- package/dist/{chart-artifact-DwfRtQWL.d.ts → chart-artifact-Bl67kre7.d.ts} +60 -11
- package/dist/{chart-artifact-DWkqIAK5.d.cts → chart-artifact-BzcvblDe.d.cts} +60 -11
- package/dist/{chunk-GBBLAM3G.esm.js → chunk-6YVKCVEP.esm.js} +329 -145
- package/dist/index.cjs +220 -35
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +3 -1
- package/package.json +1 -1
|
@@ -41,15 +41,39 @@ interface TimbalThemeTokens {
|
|
|
41
41
|
light: ThemeTokenMap;
|
|
42
42
|
/** Variables applied in `.dark`. */
|
|
43
43
|
dark: ThemeTokenMap;
|
|
44
|
-
/** Mode-independent variables (e.g. `--radius`) applied once in `:root`. */
|
|
44
|
+
/** Mode-independent variables (e.g. `--radius`, `--font-sans`) applied once in `:root`. */
|
|
45
45
|
root?: ThemeTokenMap;
|
|
46
|
+
/**
|
|
47
|
+
* Font stack applied as `font-family` on the theme scope (and `body`), so
|
|
48
|
+
* every component re-skins. Set independently of the `--font-*` vars so the
|
|
49
|
+
* serializer can emit the actual `font-family` declaration.
|
|
50
|
+
*/
|
|
51
|
+
fontFamily?: string;
|
|
52
|
+
/**
|
|
53
|
+
* Optional stylesheet URL (e.g. a Google Fonts link) that loads the font in
|
|
54
|
+
* `fontFamily`. Injected as a `<link>` by `applyTimbalTheme` / `TimbalThemeStyle`;
|
|
55
|
+
* for build-time `themeToCss` the host should add the link itself.
|
|
56
|
+
*/
|
|
57
|
+
fontImportUrl?: string;
|
|
58
|
+
}
|
|
59
|
+
/** Drop-shadow weight for cards / elevated surfaces. */
|
|
60
|
+
type ThemeShadow = "none" | "hairline" | "soft" | "medium" | "strong";
|
|
61
|
+
interface TimbalThemeTypography {
|
|
62
|
+
/** Body / UI font stack. Applied as `font-family` and `--font-sans`. */
|
|
63
|
+
sans: string;
|
|
64
|
+
/** Optional heading/display stack (`--font-display`; falls back to sans). */
|
|
65
|
+
display?: string;
|
|
66
|
+
/** Optional monospace stack (`--font-mono`). */
|
|
67
|
+
mono?: string;
|
|
68
|
+
/** Optional stylesheet URL that loads the fonts (Google Fonts CSS, etc.). */
|
|
69
|
+
importUrl?: string;
|
|
46
70
|
}
|
|
47
71
|
interface TimbalThemeIntent {
|
|
48
72
|
/** Primary brand color — any CSS color: `#4f46e5`, `rgb(...)`, `oklch(...)`. */
|
|
49
73
|
brand: string;
|
|
50
74
|
/** Optional secondary accent. Defaults to a desaturated brand. */
|
|
51
75
|
accent?: string;
|
|
52
|
-
/** Corner radius in rem (maps to `--radius`). Default
|
|
76
|
+
/** Corner radius in rem (maps to `--radius` + `--radius-2xl`). Default 0.75. */
|
|
53
77
|
radius?: number;
|
|
54
78
|
/**
|
|
55
79
|
* Tint neutral surfaces (background / muted / border) toward the brand hue
|
|
@@ -57,6 +81,13 @@ interface TimbalThemeIntent {
|
|
|
57
81
|
* keeps the shipped neutral grays.
|
|
58
82
|
*/
|
|
59
83
|
tintNeutrals?: boolean;
|
|
84
|
+
/**
|
|
85
|
+
* Full typography personality (font stacks + optional web-font URL). When
|
|
86
|
+
* set, the generated theme re-skins every component's font.
|
|
87
|
+
*/
|
|
88
|
+
typography?: TimbalThemeTypography;
|
|
89
|
+
/** Shadow weight for cards / elevated surfaces. Default keeps the shipped `medium`. */
|
|
90
|
+
shadow?: ThemeShadow;
|
|
60
91
|
}
|
|
61
92
|
/**
|
|
62
93
|
* Derive a complete paired token set from brand intent. Pure — safe in SSR,
|
|
@@ -72,20 +103,35 @@ interface ThemeToCssOptions {
|
|
|
72
103
|
scope?: string;
|
|
73
104
|
/** Indentation for emitted declarations. Default two spaces. */
|
|
74
105
|
indent?: string;
|
|
106
|
+
/**
|
|
107
|
+
* Prepend an `@import url("…")` for the theme's `fontImportUrl`. Off by
|
|
108
|
+
* default — `@import` must precede all other rules, so this is only safe when
|
|
109
|
+
* the returned CSS is the entire stylesheet. Prefer loading the font with a
|
|
110
|
+
* `<link>` (which `applyTimbalTheme` / `TimbalThemeStyle` do automatically).
|
|
111
|
+
*/
|
|
112
|
+
includeFontImport?: boolean;
|
|
75
113
|
}
|
|
76
114
|
/**
|
|
77
115
|
* Serialize a theme to a CSS string with paired `:root` (light) and `.dark`
|
|
78
116
|
* blocks — the exact shape apps would otherwise hand-author. Writing this in a
|
|
79
|
-
* single block guarantees light + dark stay in sync.
|
|
117
|
+
* single block guarantees light + dark stay in sync. When the theme carries a
|
|
118
|
+
* `fontFamily`, a matching `font-family` rule is emitted so every component
|
|
119
|
+
* re-skins (scoped to the subtree for previews, or `:root` + `body` globally).
|
|
80
120
|
*/
|
|
81
121
|
declare function themeToCss(theme: TimbalThemeTokens, options?: ThemeToCssOptions): string;
|
|
122
|
+
/**
|
|
123
|
+
* Ensure a stylesheet `<link>` for a web-font URL exists in `<head>`. Idempotent
|
|
124
|
+
* per URL; replaces any previously injected theme font link. No-op in SSR.
|
|
125
|
+
*/
|
|
126
|
+
declare function ensureThemeFontLink(url: string | undefined): void;
|
|
82
127
|
/**
|
|
83
128
|
* Apply a theme at runtime by injecting (or replacing) a single managed
|
|
84
|
-
* `<style>` element in `<head
|
|
85
|
-
* `next-themes` / `ModeToggle`
|
|
86
|
-
*
|
|
129
|
+
* `<style>` element in `<head>` (and a font `<link>` when the theme carries
|
|
130
|
+
* one). Works with the `.dark` class toggle used by `next-themes` / `ModeToggle`
|
|
131
|
+
* — both light and dark blocks are written, so switching mode never desyncs.
|
|
132
|
+
* No-op in SSR / non-DOM contexts.
|
|
87
133
|
*
|
|
88
|
-
* Returns a disposer that removes the injected style.
|
|
134
|
+
* Returns a disposer that removes the injected style + font link.
|
|
89
135
|
*/
|
|
90
136
|
declare function applyTimbalTheme(theme: TimbalThemeTokens): () => void;
|
|
91
137
|
/** Remove a runtime theme injected by {@link applyTimbalTheme}. */
|
|
@@ -101,7 +147,7 @@ declare function clearTimbalTheme(): void;
|
|
|
101
147
|
* infinite palette for both humans and models.
|
|
102
148
|
*/
|
|
103
149
|
|
|
104
|
-
type TimbalThemePresetId = "platform" | "indigo" | "violet" | "forest" | "warm" | "slate";
|
|
150
|
+
type TimbalThemePresetId = "platform" | "indigo" | "violet" | "forest" | "warm" | "slate" | "folio" | "carbon";
|
|
105
151
|
interface TimbalThemePreset {
|
|
106
152
|
id: TimbalThemePresetId;
|
|
107
153
|
/** Short human label for pickers. */
|
|
@@ -110,9 +156,12 @@ interface TimbalThemePreset {
|
|
|
110
156
|
description: string;
|
|
111
157
|
/** Representative swatch color (CSS) for chips / previews. */
|
|
112
158
|
swatch: string;
|
|
159
|
+
/** Human-readable font name (for picker chips). `null` = system default. */
|
|
160
|
+
font: string | null;
|
|
113
161
|
/**
|
|
114
|
-
*
|
|
115
|
-
* maps (no overrides
|
|
162
|
+
* Full personality token set — color + radius + shadow + typography.
|
|
163
|
+
* `platform` is the shipped neutral palette and has empty maps (no overrides;
|
|
164
|
+
* `styles.css` defaults apply).
|
|
116
165
|
*/
|
|
117
166
|
tokens: TimbalThemeTokens;
|
|
118
167
|
}
|
|
@@ -917,4 +966,4 @@ interface ChartArtifactViewProps {
|
|
|
917
966
|
*/
|
|
918
967
|
declare const ChartArtifactView: FC<ChartArtifactViewProps>;
|
|
919
968
|
|
|
920
|
-
export { FieldSwitch as $, APP_KIT_AGENT_INSTRUCTIONS as A, type BreadcrumbItem as B, CHART_PALETTE as C, DangerZone as D, DangerZoneAction as E, type DangerZoneActionProps as F, type DangerZoneProps as G, DataTable as H, type DataTableColumn as I, type DataTableProps as J, type DataTableSort as K, type DataTableSortDirection as L, type DescriptionItem as M, DescriptionList as N, type DescriptionListProps as O, EmptyState as P, type EmptyStateProps as Q, ExpandableSection as R, type ExpandableSectionProps as S, Field as T, FieldInput as U, type FieldInputProps as V, type FieldProps as W, FieldRow as X, type FieldRowProps as Y, FieldSelect as Z, type FieldSelectProps as _, AppChatPanel as a, type ThemePresetGalleryProps as a$, type FieldSwitchProps as a0, FieldTextarea as a1, type FieldTextareaProps as a2, FilterBar as a3, type FilterBarProps as a4, FloatingUnsavedChangesBar as a5, type FloatingUnsavedChangesBarProps as a6, FormSection as a7, type FormSectionProps as a8, INTEGRATION_CATALOG_CARD_HEIGHT_CLASS as a9, type ResourceCardProps as aA, SearchInput as aB, type SearchInputProps as aC, Section as aD, type SectionProps as aE, SettingsSection as aF, SettingsSectionHeader as aG, type SettingsSectionHeaderProps as aH, type SettingsSectionProps as aI, Sparkline as aJ, type SparklineProps as aK, StatTile as aL, type StatTileProps as aM, StatusBadge as aN, type StatusBadgeProps as aO, type StatusBadgeTone as aP, StatusDot as aQ, type StatusDotProps as aR, type StatusDotTone as aS, SubNav as aT, type SubNavItem as aU, type SubNavProps as aV, SurfaceCard as aW, type SurfaceCardProps as aX, THEME_AGENT_INSTRUCTIONS as aY, TIMBAL_THEME_PRESETS as aZ, ThemePresetGallery as a_, InfoCard as aa, type InfoCardProps as ab, type InfoCardTone as ac, IntegrationCard as ad, type IntegrationCardProps as ae, type IntegrationCardStatus as af, IntegrationsEmptyState as ag, type IntegrationsEmptyStateProps as ah, LineAreaChart as ai, type LineAreaChartProps as aj, MetricChartCard as ak, type MetricChartCardProps as al, type MetricChartMetric as am, MetricRow as an, type MetricRowItem as ao, type MetricRowProps as ap, MetricTile as aq, type MetricTileProps as ar, Page as as, PageHeader as at, type PageHeaderProps as au, type PageProps as av, PlanBadge as aw, type PlanBadgeProps as ax, type PlanBadgeTone as ay, ResourceCard as az, type AppChatPanelProps as b, type
|
|
969
|
+
export { FieldSwitch as $, APP_KIT_AGENT_INSTRUCTIONS as A, type BreadcrumbItem as B, CHART_PALETTE as C, DangerZone as D, DangerZoneAction as E, type DangerZoneActionProps as F, type DangerZoneProps as G, DataTable as H, type DataTableColumn as I, type DataTableProps as J, type DataTableSort as K, type DataTableSortDirection as L, type DescriptionItem as M, DescriptionList as N, type DescriptionListProps as O, EmptyState as P, type EmptyStateProps as Q, ExpandableSection as R, type ExpandableSectionProps as S, Field as T, FieldInput as U, type FieldInputProps as V, type FieldProps as W, FieldRow as X, type FieldRowProps as Y, FieldSelect as Z, type FieldSelectProps as _, AppChatPanel as a, type ThemePresetGalleryProps as a$, type FieldSwitchProps as a0, FieldTextarea as a1, type FieldTextareaProps as a2, FilterBar as a3, type FilterBarProps as a4, FloatingUnsavedChangesBar as a5, type FloatingUnsavedChangesBarProps as a6, FormSection as a7, type FormSectionProps as a8, INTEGRATION_CATALOG_CARD_HEIGHT_CLASS as a9, type ResourceCardProps as aA, SearchInput as aB, type SearchInputProps as aC, Section as aD, type SectionProps as aE, SettingsSection as aF, SettingsSectionHeader as aG, type SettingsSectionHeaderProps as aH, type SettingsSectionProps as aI, Sparkline as aJ, type SparklineProps as aK, StatTile as aL, type StatTileProps as aM, StatusBadge as aN, type StatusBadgeProps as aO, type StatusBadgeTone as aP, StatusDot as aQ, type StatusDotProps as aR, type StatusDotTone as aS, SubNav as aT, type SubNavItem as aU, type SubNavProps as aV, SurfaceCard as aW, type SurfaceCardProps as aX, THEME_AGENT_INSTRUCTIONS as aY, TIMBAL_THEME_PRESETS as aZ, ThemePresetGallery as a_, InfoCard as aa, type InfoCardProps as ab, type InfoCardTone as ac, IntegrationCard as ad, type IntegrationCardProps as ae, type IntegrationCardStatus as af, IntegrationsEmptyState as ag, type IntegrationsEmptyStateProps as ah, LineAreaChart as ai, type LineAreaChartProps as aj, MetricChartCard as ak, type MetricChartCardProps as al, type MetricChartMetric as am, MetricRow as an, type MetricRowItem as ao, type MetricRowProps as ap, MetricTile as aq, type MetricTileProps as ar, Page as as, PageHeader as at, type PageHeaderProps as au, type PageProps as av, PlanBadge as aw, type PlanBadgeProps as ax, type PlanBadgeTone as ay, ResourceCard as az, type AppChatPanelProps as b, type ThemeShadow as b0, type ThemeToCssOptions as b1, type ThemeTokenMap as b2, type TimbalThemeIntent as b3, type TimbalThemePreset as b4, type TimbalThemePresetId as b5, TimbalThemeStyle as b6, type TimbalThemeStyleProps as b7, type TimbalThemeTokens as b8, type TimbalThemeTypography as b9, applyThemePreset as ba, applyTimbalTheme as bb, clearTimbalTheme as bc, connectionRowListClass as bd, createTimbalTheme as be, ensureThemeFontLink as bf, getStoredThemePreset as bg, getThemePreset as bh, themeToCss as bi, useAppCopilotContext as bj, useAppShellChat as bk, AppConfirmDialog as c, type AppConfirmDialogProps as d, type AppCopilotContextValue as e, AppCopilotProvider as f, type AppCopilotProviderProps as g, AppShell as h, type AppShellChatControls as i, AppShellChatTrigger as j, type AppShellChatTriggerProps as k, type AppShellProps as l, AppShellTopbar as m, type AppShellTopbarProps as n, Breadcrumbs as o, type BreadcrumbsProps as p, ChartArtifactView as q, type ChartLayout as r, ChartPanel as s, type ChartPanelProps as t, type ChartSeries as u, type ChartVariant as v, ConnectionRow as w, ConnectionRowList as x, type ConnectionRowListProps as y, type ConnectionRowProps as z };
|
|
@@ -41,15 +41,39 @@ interface TimbalThemeTokens {
|
|
|
41
41
|
light: ThemeTokenMap;
|
|
42
42
|
/** Variables applied in `.dark`. */
|
|
43
43
|
dark: ThemeTokenMap;
|
|
44
|
-
/** Mode-independent variables (e.g. `--radius`) applied once in `:root`. */
|
|
44
|
+
/** Mode-independent variables (e.g. `--radius`, `--font-sans`) applied once in `:root`. */
|
|
45
45
|
root?: ThemeTokenMap;
|
|
46
|
+
/**
|
|
47
|
+
* Font stack applied as `font-family` on the theme scope (and `body`), so
|
|
48
|
+
* every component re-skins. Set independently of the `--font-*` vars so the
|
|
49
|
+
* serializer can emit the actual `font-family` declaration.
|
|
50
|
+
*/
|
|
51
|
+
fontFamily?: string;
|
|
52
|
+
/**
|
|
53
|
+
* Optional stylesheet URL (e.g. a Google Fonts link) that loads the font in
|
|
54
|
+
* `fontFamily`. Injected as a `<link>` by `applyTimbalTheme` / `TimbalThemeStyle`;
|
|
55
|
+
* for build-time `themeToCss` the host should add the link itself.
|
|
56
|
+
*/
|
|
57
|
+
fontImportUrl?: string;
|
|
58
|
+
}
|
|
59
|
+
/** Drop-shadow weight for cards / elevated surfaces. */
|
|
60
|
+
type ThemeShadow = "none" | "hairline" | "soft" | "medium" | "strong";
|
|
61
|
+
interface TimbalThemeTypography {
|
|
62
|
+
/** Body / UI font stack. Applied as `font-family` and `--font-sans`. */
|
|
63
|
+
sans: string;
|
|
64
|
+
/** Optional heading/display stack (`--font-display`; falls back to sans). */
|
|
65
|
+
display?: string;
|
|
66
|
+
/** Optional monospace stack (`--font-mono`). */
|
|
67
|
+
mono?: string;
|
|
68
|
+
/** Optional stylesheet URL that loads the fonts (Google Fonts CSS, etc.). */
|
|
69
|
+
importUrl?: string;
|
|
46
70
|
}
|
|
47
71
|
interface TimbalThemeIntent {
|
|
48
72
|
/** Primary brand color — any CSS color: `#4f46e5`, `rgb(...)`, `oklch(...)`. */
|
|
49
73
|
brand: string;
|
|
50
74
|
/** Optional secondary accent. Defaults to a desaturated brand. */
|
|
51
75
|
accent?: string;
|
|
52
|
-
/** Corner radius in rem (maps to `--radius`). Default
|
|
76
|
+
/** Corner radius in rem (maps to `--radius` + `--radius-2xl`). Default 0.75. */
|
|
53
77
|
radius?: number;
|
|
54
78
|
/**
|
|
55
79
|
* Tint neutral surfaces (background / muted / border) toward the brand hue
|
|
@@ -57,6 +81,13 @@ interface TimbalThemeIntent {
|
|
|
57
81
|
* keeps the shipped neutral grays.
|
|
58
82
|
*/
|
|
59
83
|
tintNeutrals?: boolean;
|
|
84
|
+
/**
|
|
85
|
+
* Full typography personality (font stacks + optional web-font URL). When
|
|
86
|
+
* set, the generated theme re-skins every component's font.
|
|
87
|
+
*/
|
|
88
|
+
typography?: TimbalThemeTypography;
|
|
89
|
+
/** Shadow weight for cards / elevated surfaces. Default keeps the shipped `medium`. */
|
|
90
|
+
shadow?: ThemeShadow;
|
|
60
91
|
}
|
|
61
92
|
/**
|
|
62
93
|
* Derive a complete paired token set from brand intent. Pure — safe in SSR,
|
|
@@ -72,20 +103,35 @@ interface ThemeToCssOptions {
|
|
|
72
103
|
scope?: string;
|
|
73
104
|
/** Indentation for emitted declarations. Default two spaces. */
|
|
74
105
|
indent?: string;
|
|
106
|
+
/**
|
|
107
|
+
* Prepend an `@import url("…")` for the theme's `fontImportUrl`. Off by
|
|
108
|
+
* default — `@import` must precede all other rules, so this is only safe when
|
|
109
|
+
* the returned CSS is the entire stylesheet. Prefer loading the font with a
|
|
110
|
+
* `<link>` (which `applyTimbalTheme` / `TimbalThemeStyle` do automatically).
|
|
111
|
+
*/
|
|
112
|
+
includeFontImport?: boolean;
|
|
75
113
|
}
|
|
76
114
|
/**
|
|
77
115
|
* Serialize a theme to a CSS string with paired `:root` (light) and `.dark`
|
|
78
116
|
* blocks — the exact shape apps would otherwise hand-author. Writing this in a
|
|
79
|
-
* single block guarantees light + dark stay in sync.
|
|
117
|
+
* single block guarantees light + dark stay in sync. When the theme carries a
|
|
118
|
+
* `fontFamily`, a matching `font-family` rule is emitted so every component
|
|
119
|
+
* re-skins (scoped to the subtree for previews, or `:root` + `body` globally).
|
|
80
120
|
*/
|
|
81
121
|
declare function themeToCss(theme: TimbalThemeTokens, options?: ThemeToCssOptions): string;
|
|
122
|
+
/**
|
|
123
|
+
* Ensure a stylesheet `<link>` for a web-font URL exists in `<head>`. Idempotent
|
|
124
|
+
* per URL; replaces any previously injected theme font link. No-op in SSR.
|
|
125
|
+
*/
|
|
126
|
+
declare function ensureThemeFontLink(url: string | undefined): void;
|
|
82
127
|
/**
|
|
83
128
|
* Apply a theme at runtime by injecting (or replacing) a single managed
|
|
84
|
-
* `<style>` element in `<head
|
|
85
|
-
* `next-themes` / `ModeToggle`
|
|
86
|
-
*
|
|
129
|
+
* `<style>` element in `<head>` (and a font `<link>` when the theme carries
|
|
130
|
+
* one). Works with the `.dark` class toggle used by `next-themes` / `ModeToggle`
|
|
131
|
+
* — both light and dark blocks are written, so switching mode never desyncs.
|
|
132
|
+
* No-op in SSR / non-DOM contexts.
|
|
87
133
|
*
|
|
88
|
-
* Returns a disposer that removes the injected style.
|
|
134
|
+
* Returns a disposer that removes the injected style + font link.
|
|
89
135
|
*/
|
|
90
136
|
declare function applyTimbalTheme(theme: TimbalThemeTokens): () => void;
|
|
91
137
|
/** Remove a runtime theme injected by {@link applyTimbalTheme}. */
|
|
@@ -101,7 +147,7 @@ declare function clearTimbalTheme(): void;
|
|
|
101
147
|
* infinite palette for both humans and models.
|
|
102
148
|
*/
|
|
103
149
|
|
|
104
|
-
type TimbalThemePresetId = "platform" | "indigo" | "violet" | "forest" | "warm" | "slate";
|
|
150
|
+
type TimbalThemePresetId = "platform" | "indigo" | "violet" | "forest" | "warm" | "slate" | "folio" | "carbon";
|
|
105
151
|
interface TimbalThemePreset {
|
|
106
152
|
id: TimbalThemePresetId;
|
|
107
153
|
/** Short human label for pickers. */
|
|
@@ -110,9 +156,12 @@ interface TimbalThemePreset {
|
|
|
110
156
|
description: string;
|
|
111
157
|
/** Representative swatch color (CSS) for chips / previews. */
|
|
112
158
|
swatch: string;
|
|
159
|
+
/** Human-readable font name (for picker chips). `null` = system default. */
|
|
160
|
+
font: string | null;
|
|
113
161
|
/**
|
|
114
|
-
*
|
|
115
|
-
* maps (no overrides
|
|
162
|
+
* Full personality token set — color + radius + shadow + typography.
|
|
163
|
+
* `platform` is the shipped neutral palette and has empty maps (no overrides;
|
|
164
|
+
* `styles.css` defaults apply).
|
|
116
165
|
*/
|
|
117
166
|
tokens: TimbalThemeTokens;
|
|
118
167
|
}
|
|
@@ -917,4 +966,4 @@ interface ChartArtifactViewProps {
|
|
|
917
966
|
*/
|
|
918
967
|
declare const ChartArtifactView: FC<ChartArtifactViewProps>;
|
|
919
968
|
|
|
920
|
-
export { FieldSwitch as $, APP_KIT_AGENT_INSTRUCTIONS as A, type BreadcrumbItem as B, CHART_PALETTE as C, DangerZone as D, DangerZoneAction as E, type DangerZoneActionProps as F, type DangerZoneProps as G, DataTable as H, type DataTableColumn as I, type DataTableProps as J, type DataTableSort as K, type DataTableSortDirection as L, type DescriptionItem as M, DescriptionList as N, type DescriptionListProps as O, EmptyState as P, type EmptyStateProps as Q, ExpandableSection as R, type ExpandableSectionProps as S, Field as T, FieldInput as U, type FieldInputProps as V, type FieldProps as W, FieldRow as X, type FieldRowProps as Y, FieldSelect as Z, type FieldSelectProps as _, AppChatPanel as a, type ThemePresetGalleryProps as a$, type FieldSwitchProps as a0, FieldTextarea as a1, type FieldTextareaProps as a2, FilterBar as a3, type FilterBarProps as a4, FloatingUnsavedChangesBar as a5, type FloatingUnsavedChangesBarProps as a6, FormSection as a7, type FormSectionProps as a8, INTEGRATION_CATALOG_CARD_HEIGHT_CLASS as a9, type ResourceCardProps as aA, SearchInput as aB, type SearchInputProps as aC, Section as aD, type SectionProps as aE, SettingsSection as aF, SettingsSectionHeader as aG, type SettingsSectionHeaderProps as aH, type SettingsSectionProps as aI, Sparkline as aJ, type SparklineProps as aK, StatTile as aL, type StatTileProps as aM, StatusBadge as aN, type StatusBadgeProps as aO, type StatusBadgeTone as aP, StatusDot as aQ, type StatusDotProps as aR, type StatusDotTone as aS, SubNav as aT, type SubNavItem as aU, type SubNavProps as aV, SurfaceCard as aW, type SurfaceCardProps as aX, THEME_AGENT_INSTRUCTIONS as aY, TIMBAL_THEME_PRESETS as aZ, ThemePresetGallery as a_, InfoCard as aa, type InfoCardProps as ab, type InfoCardTone as ac, IntegrationCard as ad, type IntegrationCardProps as ae, type IntegrationCardStatus as af, IntegrationsEmptyState as ag, type IntegrationsEmptyStateProps as ah, LineAreaChart as ai, type LineAreaChartProps as aj, MetricChartCard as ak, type MetricChartCardProps as al, type MetricChartMetric as am, MetricRow as an, type MetricRowItem as ao, type MetricRowProps as ap, MetricTile as aq, type MetricTileProps as ar, Page as as, PageHeader as at, type PageHeaderProps as au, type PageProps as av, PlanBadge as aw, type PlanBadgeProps as ax, type PlanBadgeTone as ay, ResourceCard as az, type AppChatPanelProps as b, type
|
|
969
|
+
export { FieldSwitch as $, APP_KIT_AGENT_INSTRUCTIONS as A, type BreadcrumbItem as B, CHART_PALETTE as C, DangerZone as D, DangerZoneAction as E, type DangerZoneActionProps as F, type DangerZoneProps as G, DataTable as H, type DataTableColumn as I, type DataTableProps as J, type DataTableSort as K, type DataTableSortDirection as L, type DescriptionItem as M, DescriptionList as N, type DescriptionListProps as O, EmptyState as P, type EmptyStateProps as Q, ExpandableSection as R, type ExpandableSectionProps as S, Field as T, FieldInput as U, type FieldInputProps as V, type FieldProps as W, FieldRow as X, type FieldRowProps as Y, FieldSelect as Z, type FieldSelectProps as _, AppChatPanel as a, type ThemePresetGalleryProps as a$, type FieldSwitchProps as a0, FieldTextarea as a1, type FieldTextareaProps as a2, FilterBar as a3, type FilterBarProps as a4, FloatingUnsavedChangesBar as a5, type FloatingUnsavedChangesBarProps as a6, FormSection as a7, type FormSectionProps as a8, INTEGRATION_CATALOG_CARD_HEIGHT_CLASS as a9, type ResourceCardProps as aA, SearchInput as aB, type SearchInputProps as aC, Section as aD, type SectionProps as aE, SettingsSection as aF, SettingsSectionHeader as aG, type SettingsSectionHeaderProps as aH, type SettingsSectionProps as aI, Sparkline as aJ, type SparklineProps as aK, StatTile as aL, type StatTileProps as aM, StatusBadge as aN, type StatusBadgeProps as aO, type StatusBadgeTone as aP, StatusDot as aQ, type StatusDotProps as aR, type StatusDotTone as aS, SubNav as aT, type SubNavItem as aU, type SubNavProps as aV, SurfaceCard as aW, type SurfaceCardProps as aX, THEME_AGENT_INSTRUCTIONS as aY, TIMBAL_THEME_PRESETS as aZ, ThemePresetGallery as a_, InfoCard as aa, type InfoCardProps as ab, type InfoCardTone as ac, IntegrationCard as ad, type IntegrationCardProps as ae, type IntegrationCardStatus as af, IntegrationsEmptyState as ag, type IntegrationsEmptyStateProps as ah, LineAreaChart as ai, type LineAreaChartProps as aj, MetricChartCard as ak, type MetricChartCardProps as al, type MetricChartMetric as am, MetricRow as an, type MetricRowItem as ao, type MetricRowProps as ap, MetricTile as aq, type MetricTileProps as ar, Page as as, PageHeader as at, type PageHeaderProps as au, type PageProps as av, PlanBadge as aw, type PlanBadgeProps as ax, type PlanBadgeTone as ay, ResourceCard as az, type AppChatPanelProps as b, type ThemeShadow as b0, type ThemeToCssOptions as b1, type ThemeTokenMap as b2, type TimbalThemeIntent as b3, type TimbalThemePreset as b4, type TimbalThemePresetId as b5, TimbalThemeStyle as b6, type TimbalThemeStyleProps as b7, type TimbalThemeTokens as b8, type TimbalThemeTypography as b9, applyThemePreset as ba, applyTimbalTheme as bb, clearTimbalTheme as bc, connectionRowListClass as bd, createTimbalTheme as be, ensureThemeFontLink as bf, getStoredThemePreset as bg, getThemePreset as bh, themeToCss as bi, useAppCopilotContext as bj, useAppShellChat as bk, AppConfirmDialog as c, type AppConfirmDialogProps as d, type AppCopilotContextValue as e, AppCopilotProvider as f, type AppCopilotProviderProps as g, AppShell as h, type AppShellChatControls as i, AppShellChatTrigger as j, type AppShellChatTriggerProps as k, type AppShellProps as l, AppShellTopbar as m, type AppShellTopbarProps as n, Breadcrumbs as o, type BreadcrumbsProps as p, ChartArtifactView as q, type ChartLayout as r, ChartPanel as s, type ChartPanelProps as t, type ChartSeries as u, type ChartVariant as v, ConnectionRow as w, ConnectionRowList as x, type ConnectionRowListProps as y, type ConnectionRowProps as z };
|