@harnessio/ui 1.3.5 → 1.3.8

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.
@@ -692,6 +692,12 @@ export declare interface CardData extends Omit<CardRootProps, 'title' | 'childre
692
692
  gripPosition?: 'inside' | 'outside';
693
693
  }
694
694
 
695
+ declare interface CardEntry {
696
+ stepId: string;
697
+ status: CardStatus;
698
+ stateSnapshot: Record<string, unknown>;
699
+ }
700
+
695
701
  declare interface CardImageProps extends ImgHTMLAttributes<HTMLImageElement> {
696
702
  width?: number | string;
697
703
  height?: number | string;
@@ -1825,6 +1831,12 @@ export declare interface DrawerResult {
1825
1831
  data?: Record<string, unknown>;
1826
1832
  }
1827
1833
 
1834
+ declare interface DrawerState {
1835
+ id: string;
1836
+ props?: Record<string, unknown>;
1837
+ resolve: (result: DrawerResult) => void;
1838
+ }
1839
+
1828
1840
  export declare type DrawerStepProps = {
1829
1841
  value: string;
1830
1842
  title: ReactNode;
@@ -1984,6 +1996,27 @@ export declare interface DualPaneStepperRootProps {
1984
1996
 
1985
1997
  export declare type EditViewTypeValue = 'edit' | 'preview';
1986
1998
 
1999
+ declare interface EngineContextValue {
2000
+ flow: FlowConfig;
2001
+ state: Record<string, unknown>;
2002
+ cardHistory: CardEntry[];
2003
+ activeStepId: string;
2004
+ predictedPath: string[];
2005
+ drawerState: DrawerState | null;
2006
+ pendingReactivation: string | null;
2007
+ complete: (stepId: string, statePatch?: Record<string, unknown>, nextStepId?: string) => void;
2008
+ error: (stepId: string, nextStepId?: string) => void;
2009
+ skip: (stepId: string, nextStepId?: string) => void;
2010
+ openDrawer: (id: string, props?: Record<string, unknown>) => Promise<DrawerResult>;
2011
+ closeDrawer: (result: DrawerResult) => void;
2012
+ requestReactivation: (stepId: string) => void;
2013
+ confirmReactivation: () => void;
2014
+ cancelReactivation: () => void;
2015
+ scrollToCard: (stepId: string) => void;
2016
+ registerScrollToCard: (fn: (stepId: string) => void) => void;
2017
+ disableAutoScroll: boolean;
2018
+ }
2019
+
1987
2020
  export declare const EntityFormLayout: {
1988
2021
  Header: ({ children, className }: {
1989
2022
  children: ReactNode;
@@ -2257,6 +2290,16 @@ export declare interface FlowCardContext<TState = Record<string, unknown>> {
2257
2290
 
2258
2291
  export declare type FlowConfig = GroupedFlowConfig | FlatFlowConfig;
2259
2292
 
2293
+ export declare function FlowEngineProvider({ flow, onComplete, disableAutoScroll, initialEngineState, children }: FlowEngineProviderProps): JSX_2.Element;
2294
+
2295
+ declare interface FlowEngineProviderProps {
2296
+ flow: FlowConfig;
2297
+ onComplete?: (state: Record<string, unknown>) => void;
2298
+ disableAutoScroll?: boolean;
2299
+ initialEngineState?: InitialEngineState;
2300
+ children: ReactNode;
2301
+ }
2302
+
2260
2303
  declare function FlowStepperCard({ title, description, blockedMessage, children, className }: FlowStepperCardProps): JSX_2.Element;
2261
2304
 
2262
2305
  declare function FlowStepperCardAction({ variant, message, actionLabel, onAction, secondaryLabel, onSecondary }: CardActionProps): JSX_2.Element;
@@ -3307,6 +3350,19 @@ export declare type InfoToastParamsType = {
3307
3350
 
3308
3351
  export declare type InfoToastSeverity = 'Critical' | 'High' | 'Medium' | 'Low';
3309
3352
 
3353
+ /**
3354
+ * A serialized snapshot of engine state that a host app can pass to `FlowEngineProvider` (or
3355
+ * `SinglePaneStepper.Root`) to resume a flow instead of starting at `flow.initialStep`.
3356
+ *
3357
+ * Canary does not persist this itself — the host app is responsible for storage/validation and
3358
+ * only passes an already-valid snapshot. An unusable snapshot (empty `cardHistory`, or any
3359
+ * `stepId` not present in the current `flow.steps`) is treated as omitted.
3360
+ */
3361
+ declare interface InitialEngineState {
3362
+ state: Record<string, unknown>;
3363
+ cardHistory: CardEntry[];
3364
+ }
3365
+
3310
3366
  /**
3311
3367
  * A form input component with support for labels, captions, and error messages.
3312
3368
  * @example
@@ -3670,6 +3726,7 @@ export declare const LogoNameMapV2: {
3670
3726
  git: FunctionComponent<SVGProps<SVGSVGElement>>;
3671
3727
  gitea: FunctionComponent<SVGProps<SVGSVGElement>>;
3672
3728
  'github-action': FunctionComponent<SVGProps<SVGSVGElement>>;
3729
+ 'github-copilot': FunctionComponent<SVGProps<SVGSVGElement>>;
3673
3730
  github: FunctionComponent<SVGProps<SVGSVGElement>>;
3674
3731
  gitlab: FunctionComponent<SVGProps<SVGSVGElement>>;
3675
3732
  gitleaks: FunctionComponent<SVGProps<SVGSVGElement>>;
@@ -5313,7 +5370,7 @@ export declare const SinglePaneStepper: {
5313
5370
  CardAction: typeof FlowStepperCardAction;
5314
5371
  };
5315
5372
 
5316
- declare function SinglePaneStepperRoot({ flow, onComplete, disableAutoScroll, ...props }: SinglePaneStepperRootProps): JSX_2.Element;
5373
+ declare function SinglePaneStepperRoot({ flow, onComplete, disableAutoScroll, initialEngineState, children, ...props }: SinglePaneStepperRootProps): JSX_2.Element;
5317
5374
 
5318
5375
  export declare interface SinglePaneStepperRootProps {
5319
5376
  flow: FlowConfig;
@@ -5355,6 +5412,11 @@ export declare interface SinglePaneStepperRootProps {
5355
5412
  className?: string;
5356
5413
  /** Inline-style escape hatch alongside `className`, for consumers that need computed values. */
5357
5414
  style?: CSSProperties;
5415
+ /** Rendered after the visual content, inside `FlowEngineProvider` — for context-only consumers
5416
+ * (e.g. a persist bridge) that need engine access without affecting layout. */
5417
+ children?: ReactNode;
5418
+ /** Seeds the engine's state and card history on mount, restoring a previously persisted run. */
5419
+ initialEngineState?: InitialEngineState;
5358
5420
  }
5359
5421
 
5360
5422
  export declare const Skeleton: {
@@ -5903,6 +5965,7 @@ export declare const SymbolNameMap: {
5903
5965
  git: FunctionComponent<SVGProps<SVGSVGElement>>;
5904
5966
  gitea: FunctionComponent<SVGProps<SVGSVGElement>>;
5905
5967
  'github-action': FunctionComponent<SVGProps<SVGSVGElement>>;
5968
+ 'github-copilot': FunctionComponent<SVGProps<SVGSVGElement>>;
5906
5969
  github: FunctionComponent<SVGProps<SVGSVGElement>>;
5907
5970
  gitlab: FunctionComponent<SVGProps<SVGSVGElement>>;
5908
5971
  gitleaks: FunctionComponent<SVGProps<SVGSVGElement>>;
@@ -6574,6 +6637,8 @@ export declare interface UseCopyButtonProps {
6574
6637
  color?: IconV2Color;
6575
6638
  }
6576
6639
 
6640
+ export declare function useEngineContext(): EngineContextValue;
6641
+
6577
6642
  export declare function useFlowCard<TState = Record<string, unknown>>(): FlowCardContext<TState>;
6578
6643
 
6579
6644
  export declare const useFormattedTime: (timestamp?: string | number | null, live?: boolean) => {
@@ -1,7 +1,7 @@
1
- import { A as e, B as t, k as o, E as r, L as i, r as n, c as l, S as p, s as b, t as c, d as g } from "./index-F5MQA63q.js";
2
- import { bQ as m, I as d, k as S, A as T, v as C, w as F, p as I, q as h, bn as D, J as y, bz as L, ae as V, cg as P, Z as A, W as B, bt as M, ao as f, aW as w, aX as x, aZ as v, aY as k, ca as E, ab as G, ac as N, bc as R, B as W, r as H, G as _, an as U, am as O, C as z, _ as K, ai as j, bk as q, g as X, c9 as J, aE as Q, aF as Y, bw as Z, au as $, R as aa, Q as sa, bq as ea, bx as ta, by as oa, aQ as ra, D as ia, j as na, cm as la, br as pa, b_ as ba, $ as ca, bb as ga, ag as ua, f as ma, aj as da, ch as Sa, af as Ta, aI as Ca, aH as Fa, aJ as Ia, aG as ha, ba as Da, bm as ya, a8 as La, bZ as Va, a3 as Pa, a5 as Aa, a4 as Ba, aD as Ma, al as fa, bR as wa, H as xa, F as va, bi as ka, ar as Ea, aa as Ga, ci as Na, Y as Ra, a0 as Wa, bU as Ha, bV as _a, bT as Ua, a1 as Oa, l as za, L as Ka, M as ja, aq as qa, cj as Xa, t as Ja, a2 as Qa, a_ as Ya, a7 as Za, az as $a, ay as as, aM as ss, bs as es, N as ts, aV as os, n as rs, bX as is, cf as ns, P as ls, cl as ps, V as bs, c5 as cs, m as gs, aU as us, at as ms, b6 as ds, b5 as Ss, a$ as Ts, b4 as Cs, b0 as Fs, b1 as Is, b2 as hs, b3 as Ds, ad as ys, b7 as Ls, bl as Vs, bd as Ps, c4 as As, aS as Bs, aR as Ms, cd as fs, c1 as ws, E as xs, bY as vs, x as ks, ce as Es, a9 as Gs, aT as Ns, ax as Rs, b as Ws, bL as Hs, bE as _s, cb as Us, aO as Os, cc as zs, z as Ks, bp as js, S as qs, K as Xs, O as Js, aw as Qs, bo as Ys, c as Zs, aN as $s, bH as ae, bC as se, d as ee, ck as te, bI as oe, bJ as re, av as ie, a as ne, bv as le, T as pe, bj as be, bW as ce, a6 as ge, bO as ue, bg as me, bf as de, bh as Se, c8 as Te, as as Ce, b9 as Fe, bM as Ie, U as he, bB as De, bA as ye, bN as Le, bD as Ve, o as Pe, X as Ae, h as Be, ak as Me, aB as fe, c2 as we, aA as xe, aC as ve, ap as ke, bP as Ee, c0 as Ge, c3 as Ne, cp as Re, cr as We, co as He, cq as _e, bS as Ue, c6 as Oe, aL as ze, aK as Ke, b$ as je, bK as qe, bG as Xe, bF as Je, e as Qe, s as Ye, bu as Ze, c7 as $e, ah as at, cn as st, be as et, b8 as tt, y as ot, u as rt, aP as it } from "./index-Bu5LDmmA.js";
3
- import { B as lt, x as pt, I as bt, y as ct, r as gt, z as ut, T as mt, v as dt, h as St, E as Tt, F as Ct, w as Ft } from "./button-CYgwQtjJ.js";
4
- import { L as ht, T as Dt, b as yt, d as Lt, e as Vt, f as Pt, t as At } from "./toggle-group-D7M_epHz.js";
1
+ import { A as e, B as t, k as o, E as r, L as i, r as n, c as l, S as p, s as b, t as c, d as g } from "./index-vAhKHYxB.js";
2
+ import { bS as m, K as d, m as S, A as T, w as C, x as F, q as I, r as h, bp as D, O as y, bB as L, ag as V, ci as P, $ as A, Y as B, bv as M, aq as f, aY as w, aZ as x, a$ as v, a_ as E, cc as k, ad as G, ae as N, be as R, E as W, t as H, J as _, ap as U, ao as O, C as z, a0 as K, ak as j, bm as q, g as X, cb as J, aG as Q, aH as Y, by as Z, aw as $, W as aa, V as sa, bs as ea, bz as ta, bA as oa, aS as ra, D as ia, j as na, co as la, bt as pa, c0 as ba, a1 as ca, bd as ga, ai as ua, f as ma, al as da, cj as Sa, ah as Ta, aK as Ca, aJ as Fa, aL as Ia, aI as ha, F as Da, bc as ya, bo as La, aa as Va, b$ as Pa, a5 as Aa, a7 as Ba, a6 as Ma, aF as fa, an as wa, bT as xa, H as va, I as Ea, bk as ka, at as Ga, ac as Na, ck as Ra, _ as Wa, a2 as Ha, bW as _a, bX as Ua, bV as Oa, a3 as za, l as Ka, L as ja, M as qa, as as Xa, cl as Ja, v as Qa, a4 as Ya, b0 as Za, a9 as $a, aB as as, aA as ss, aO as es, bu as ts, N as os, aX as rs, n as is, bZ as ns, ch as ls, P as ps, cn as bs, X as cs, c7 as gs, o as us, aW as ms, av as ds, b8 as Ss, b7 as Ts, b1 as Cs, b6 as Fs, b2 as Is, b3 as hs, b4 as Ds, b5 as ys, af as Ls, b9 as Vs, bn as Ps, bf as As, c6 as Bs, aU as Ms, aT as fs, cf as ws, c3 as xs, G as vs, b_ as Es, y as ks, cg as Gs, ab as Ns, aV as Rs, az as Ws, b as Hs, bN as _s, bG as Us, cd as Os, aQ as zs, ce as Ks, B as js, br as qs, S as Xs, Q as Js, R as Qs, ay as Ys, bq as Zs, c as $s, aP as ae, bJ as se, bE as ee, d as te, cm as oe, bK as re, bL as ie, ax as ne, a as le, bx as pe, T as be, bl as ce, bY as ge, a8 as ue, bQ as me, bi as de, bh as Se, bj as Te, ca as Ce, au as Fe, bb as Ie, bO as he, U as De, bD as ye, bC as Le, bP as Ve, bF as Pe, p as Ae, Z as Be, h as Me, am as fe, aD as we, c4 as xe, aC as ve, aE as Ee, ar as ke, bR as Ge, c2 as Ne, c5 as Re, cr as We, ct as He, cq as _e, cs as Ue, bU as Oe, c8 as ze, aN as Ke, aM as je, c1 as qe, bM as Xe, bI as Je, bH as Qe, e as Ye, s as Ze, bw as $e, c9 as at, aj as st, u as et, cp as tt, bg as ot, ba as rt, z as it, k as nt, aR as lt } from "./index-CekmEi-h.js";
3
+ import { B as bt, x as ct, I as gt, y as ut, r as mt, z as dt, T as St, v as Tt, h as Ct, E as Ft, F as It, w as ht } from "./button-CYgwQtjJ.js";
4
+ import { L as yt, T as Lt, b as Vt, d as Pt, e as At, f as Bt, t as Mt } from "./toggle-group-D7M_epHz.js";
5
5
  export {
6
6
  m as AccentColor,
7
7
  d as Accordion,
@@ -14,7 +14,7 @@ export {
14
14
  h as AvatarWithTooltip,
15
15
  D as BranchTag,
16
16
  y as Breadcrumb,
17
- lt as Button,
17
+ bt as Button,
18
18
  L as ButtonGroup,
19
19
  t as ButtonLayout,
20
20
  V as Calendar,
@@ -26,8 +26,8 @@ export {
26
26
  w as Chat,
27
27
  x as ChatDiffViewer,
28
28
  v as ChatEmptyPreviewWrapper,
29
- k as ChatPreviewWrapper,
30
- E as ChatV2,
29
+ E as ChatPreviewWrapper,
30
+ k as ChatV2,
31
31
  G as Checkbox,
32
32
  N as CheckboxTree,
33
33
  R as CollapseButton,
@@ -70,177 +70,179 @@ export {
70
70
  Fa as FilterField,
71
71
  Ia as FilterFieldTypes,
72
72
  ha as FilterSelect,
73
- Da as Folder,
74
- ya as ForkTag,
75
- La as FormCaption,
76
- Va as FormInput,
77
- Pa as FormSeparator,
78
- Aa as FormWrapper,
79
- Ba as FormWrapperContext,
80
- Ma as Gauge,
81
- fa as GitCommitDialog,
82
- wa as GrayColor,
83
- xa as HarnessLogo,
84
- va as HighlightText,
85
- pt as IconNameMapV2,
86
- bt as IconV2,
87
- ct as IconV2DisplayName,
73
+ Da as FlowEngineProvider,
74
+ ya as Folder,
75
+ La as ForkTag,
76
+ Va as FormCaption,
77
+ Pa as FormInput,
78
+ Aa as FormSeparator,
79
+ Ba as FormWrapper,
80
+ Ma as FormWrapperContext,
81
+ fa as Gauge,
82
+ wa as GitCommitDialog,
83
+ xa as GrayColor,
84
+ va as HarnessLogo,
85
+ Ea as HighlightText,
86
+ ct as IconNameMapV2,
87
+ gt as IconV2,
88
+ ut as IconV2DisplayName,
88
89
  ka as IconWithTooltip,
89
- gt as Illustration,
90
- ut as IllustrationsNameMap,
91
- Ea as ImageCarousel,
92
- Ga as Input,
93
- Na as InputCaption,
94
- Ra as InputOTP,
95
- Wa as Label,
96
- Ha as Language,
97
- _a as LanguageCode,
98
- Ua as LanguageDialog,
99
- ht as Layout,
100
- Oa as Legend,
90
+ mt as Illustration,
91
+ dt as IllustrationsNameMap,
92
+ Ga as ImageCarousel,
93
+ Na as Input,
94
+ Ra as InputCaption,
95
+ Wa as InputOTP,
96
+ Ha as Label,
97
+ _a as Language,
98
+ Ua as LanguageCode,
99
+ Oa as LanguageDialog,
100
+ yt as Layout,
101
+ za as Legend,
101
102
  i as Link,
102
- za as ListActions,
103
+ Ka as ListActions,
103
104
  n as LogoNameMapV2,
104
- Ka as LogoSymbol,
105
+ ja as LogoSymbol,
105
106
  l as LogoV2,
106
- ja as ManageNavigation,
107
- qa as MarkdownViewer,
108
- Xa as MentionTextarea,
109
- Ja as MenuGroupTypes,
110
- Qa as Message,
111
- Ya as MessageBubble,
112
- Za as MessageTheme,
113
- $a as Meter,
114
- as as MeterState,
115
- ss as MoreActionsTooltip,
116
- es as MultiSelect,
117
- ts as NoData,
118
- os as NoProblemsFound,
119
- rs as NodeGroup,
120
- is as NumberInput,
121
- ns as Page,
122
- ls as Pagination,
123
- ps as ParentStepProvider,
124
- bs as PathBreadcrumbs,
125
- cs as PermissionIdentifier,
126
- gs as Popover,
127
- us as Problems,
128
- ms as Progress,
129
- ds as PromptInput,
130
- Ss as PromptInputButton,
131
- Ts as PromptInputRoot,
132
- Cs as PromptInputSubmit,
133
- Fs as PromptInputTags,
134
- Is as PromptInputTextarea,
135
- hs as PromptInputToolbar,
136
- Ds as PromptInputTools,
137
- ys as Radio,
138
- Ls as Reasoning,
139
- Vs as ResetTag,
140
- Ps as Resizable,
141
- As as ResourceType,
142
- Bs as SIDEBAR_MAX_WIDTH,
143
- Ms as SIDEBAR_MIN_WIDTH,
144
- fs as SandboxLayout,
145
- ws as ScopeTag,
107
+ qa as ManageNavigation,
108
+ Xa as MarkdownViewer,
109
+ Ja as MentionTextarea,
110
+ Qa as MenuGroupTypes,
111
+ Ya as Message,
112
+ Za as MessageBubble,
113
+ $a as MessageTheme,
114
+ as as Meter,
115
+ ss as MeterState,
116
+ es as MoreActionsTooltip,
117
+ ts as MultiSelect,
118
+ os as NoData,
119
+ rs as NoProblemsFound,
120
+ is as NodeGroup,
121
+ ns as NumberInput,
122
+ ls as Page,
123
+ ps as Pagination,
124
+ bs as ParentStepProvider,
125
+ cs as PathBreadcrumbs,
126
+ gs as PermissionIdentifier,
127
+ us as Popover,
128
+ ms as Problems,
129
+ ds as Progress,
130
+ Ss as PromptInput,
131
+ Ts as PromptInputButton,
132
+ Cs as PromptInputRoot,
133
+ Fs as PromptInputSubmit,
134
+ Is as PromptInputTags,
135
+ hs as PromptInputTextarea,
136
+ Ds as PromptInputToolbar,
137
+ ys as PromptInputTools,
138
+ Ls as Radio,
139
+ Vs as Reasoning,
140
+ Ps as ResetTag,
141
+ As as Resizable,
142
+ Bs as ResourceType,
143
+ Ms as SIDEBAR_MAX_WIDTH,
144
+ fs as SIDEBAR_MIN_WIDTH,
145
+ ws as SandboxLayout,
146
+ xs as ScopeTag,
146
147
  p as ScrollArea,
147
- xs as SearchFiles,
148
- vs as SearchInput,
148
+ vs as SearchFiles,
149
+ Es as SearchInput,
149
150
  ks as SearchProvider,
150
- Es as SearchableDropdown,
151
- Gs as Select,
152
- Ns as Separator,
153
- Rs as SeveritySlider,
154
- Ws as Sheet,
155
- Hs as Shimmer,
156
- _s as Shortcut,
157
- Us as SideNav,
158
- Os as Sidebar,
159
- zs as SidebarLayout,
160
- Ks as SidebarSearch,
161
- js as SimpleSort,
162
- qs as SinglePaneStepper,
163
- Xs as Skeleton,
164
- Js as SkeletonFileExplorer,
165
- Qs as Slider,
166
- Ys as Sort,
167
- Zs as Spacer,
168
- $s as SplitButton,
169
- ae as StackedList,
170
- se as StatsPanel,
171
- ee as StatusBadge,
172
- te as Stepper,
173
- oe as StickyListSection,
174
- re as StudioCard,
175
- ie as Switch,
176
- ne as SymbolNameMap,
177
- le as Table,
178
- pe as Tabs,
179
- be as Tag,
180
- Dt as Text,
181
- ce as TextInput,
182
- ge as Textarea,
183
- ue as ThemeDialog,
184
- me as TimeAgoCard,
185
- de as TimeAgoContent,
186
- Se as TimeInput,
187
- Te as Toaster,
188
- yt as Toggle,
189
- Lt as ToggleGroup,
190
- mt as Tooltip,
191
- dt as TooltipProvider,
192
- Ce as Topbar,
193
- Fe as Tree,
194
- Ie as TypingAnimation,
195
- he as UserMenuKeys,
196
- De as ViewOnly,
197
- ye as ViewOnlyItem,
198
- Le as WaterfallProgress,
199
- Ve as Widgets,
200
- Pe as avatarVariants,
201
- St as buttonVariants,
202
- Ae as cardVariants,
203
- Be as counterBadgeVariants,
204
- Me as createGitCommitSchema,
205
- fe as deriveGaugeStatusLevel,
206
- we as determineScope,
207
- xe as formatGaugeValue,
208
- ve as getGaugeDescriptor,
151
+ Gs as SearchableDropdown,
152
+ Ns as Select,
153
+ Rs as Separator,
154
+ Ws as SeveritySlider,
155
+ Hs as Sheet,
156
+ _s as Shimmer,
157
+ Us as Shortcut,
158
+ Os as SideNav,
159
+ zs as Sidebar,
160
+ Ks as SidebarLayout,
161
+ js as SidebarSearch,
162
+ qs as SimpleSort,
163
+ Xs as SinglePaneStepper,
164
+ Js as Skeleton,
165
+ Qs as SkeletonFileExplorer,
166
+ Ys as Slider,
167
+ Zs as Sort,
168
+ $s as Spacer,
169
+ ae as SplitButton,
170
+ se as StackedList,
171
+ ee as StatsPanel,
172
+ te as StatusBadge,
173
+ oe as Stepper,
174
+ re as StickyListSection,
175
+ ie as StudioCard,
176
+ ne as Switch,
177
+ le as SymbolNameMap,
178
+ pe as Table,
179
+ be as Tabs,
180
+ ce as Tag,
181
+ Lt as Text,
182
+ ge as TextInput,
183
+ ue as Textarea,
184
+ me as ThemeDialog,
185
+ de as TimeAgoCard,
186
+ Se as TimeAgoContent,
187
+ Te as TimeInput,
188
+ Ce as Toaster,
189
+ Vt as Toggle,
190
+ Pt as ToggleGroup,
191
+ St as Tooltip,
192
+ Tt as TooltipProvider,
193
+ Fe as Topbar,
194
+ Ie as Tree,
195
+ he as TypingAnimation,
196
+ De as UserMenuKeys,
197
+ ye as ViewOnly,
198
+ Le as ViewOnlyItem,
199
+ Ve as WaterfallProgress,
200
+ Pe as Widgets,
201
+ Ae as avatarVariants,
202
+ Ct as buttonVariants,
203
+ Be as cardVariants,
204
+ Me as counterBadgeVariants,
205
+ fe as createGitCommitSchema,
206
+ we as deriveGaugeStatusLevel,
207
+ xe as determineScope,
208
+ ve as formatGaugeValue,
209
+ Ee as getGaugeDescriptor,
209
210
  ke as getIsMarkdown,
210
- Ee as getModeColorContrastFromFullTheme,
211
- Ge as getScopeType,
212
- Ne as getScopedPath,
213
- Tt as iconColorVariants,
214
- Ct as iconVariants,
215
- Re as isFlatFlowConfig,
216
- We as isFlatStepConfig,
217
- He as isGroupedFlowConfig,
218
- _e as isGroupedStepConfig,
219
- Ue as languages,
211
+ Ge as getModeColorContrastFromFullTheme,
212
+ Ne as getScopeType,
213
+ Re as getScopedPath,
214
+ Ft as iconColorVariants,
215
+ It as iconVariants,
216
+ We as isFlatFlowConfig,
217
+ He as isFlatStepConfig,
218
+ _e as isGroupedFlowConfig,
219
+ Ue as isGroupedStepConfig,
220
+ Oe as languages,
220
221
  b as linkVariants,
221
222
  c as logoVariants,
222
- Oe as rbacTooltip,
223
- ze as renderFilterSelectAddIconLabel,
224
- Ke as renderFilterSelectLabel,
225
- je as scopeTypeToIconMap,
226
- qe as shimmerVariants,
227
- Xe as stackedListItemVariants,
228
- Je as stackedListVariants,
229
- Qe as statusBadgeVariants,
230
- Ye as symbolVariants,
231
- Ze as tableVariants,
232
- Vt as textVariants,
233
- $e as toast,
234
- Pt as toggleVariants,
235
- At as typographyVariantConfig,
236
- at as useCopyButton,
237
- st as useFlowCard,
238
- et as useFormattedTime,
239
- tt as useReasoning,
223
+ ze as rbacTooltip,
224
+ Ke as renderFilterSelectAddIconLabel,
225
+ je as renderFilterSelectLabel,
226
+ qe as scopeTypeToIconMap,
227
+ Xe as shimmerVariants,
228
+ Je as stackedListItemVariants,
229
+ Qe as stackedListVariants,
230
+ Ye as statusBadgeVariants,
231
+ Ze as symbolVariants,
232
+ $e as tableVariants,
233
+ At as textVariants,
234
+ at as toast,
235
+ Bt as toggleVariants,
236
+ Mt as typographyVariantConfig,
237
+ st as useCopyButton,
238
+ et as useEngineContext,
239
+ tt as useFlowCard,
240
+ ot as useFormattedTime,
241
+ rt as useReasoning,
240
242
  g as useScrollArea,
241
- ot as useSearch,
242
- rt as useSearchableDropdownKeyboardNavigation,
243
- it as useSidebar,
244
- Ft as withTooltip
243
+ it as useSearch,
244
+ nt as useSearchableDropdownKeyboardNavigation,
245
+ lt as useSidebar,
246
+ ht as withTooltip
245
247
  };
246
248
  //# sourceMappingURL=components.js.map
package/dist/context.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { G as a, H as r, u as s, a as t } from "./button-CYgwQtjJ.js";
2
2
  import { R as m, u as n } from "./use-resize-observer-DNQ1lBLF.js";
3
- import { f as C, v as g, w as x, g as T, x as l, q as p, e as f, u as d } from "./index-F5MQA63q.js";
4
- import { C as v, E as h, a as D, m as E, u as R, b as y } from "./index-0ZqzQJGx.js";
3
+ import { f as C, v as g, w as x, g as T, x as l, q as p, e as f, u as d } from "./index-vAhKHYxB.js";
4
+ import { C as v, E as h, a as D, m as E, u as R, b as y } from "./index-D_eFtVWM.js";
5
5
  import { a as M, C as S, M as b, l as k, k as q } from "./types-DuzuERyI.js";
6
6
  export {
7
7
  M as ColorType,