@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.
- package/dist/components.d.ts +66 -1
- package/dist/components.js +171 -169
- package/dist/context.js +2 -2
- package/dist/{index-Bu5LDmmA.js → index-CekmEi-h.js} +12706 -12661
- package/dist/{index-Bu5LDmmA.js.map → index-CekmEi-h.js.map} +1 -1
- package/dist/{index-0ZqzQJGx.js → index-D_eFtVWM.js} +2 -2
- package/dist/{index-0ZqzQJGx.js.map → index-D_eFtVWM.js.map} +1 -1
- package/dist/{index-F5MQA63q.js → index-vAhKHYxB.js} +186 -185
- package/dist/index-vAhKHYxB.js.map +1 -0
- package/dist/index.d.ts +68 -1
- package/dist/index.js +2 -2
- package/package.json +3 -3
- package/dist/index-F5MQA63q.js.map +0 -1
package/dist/components.d.ts
CHANGED
|
@@ -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) => {
|
package/dist/components.js
CHANGED
|
@@ -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-
|
|
2
|
-
import {
|
|
3
|
-
import { B as
|
|
4
|
-
import { L as
|
|
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
|
-
|
|
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
|
-
|
|
30
|
-
|
|
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
|
|
74
|
-
ya as
|
|
75
|
-
La as
|
|
76
|
-
Va as
|
|
77
|
-
Pa as
|
|
78
|
-
Aa as
|
|
79
|
-
Ba as
|
|
80
|
-
Ma as
|
|
81
|
-
fa as
|
|
82
|
-
wa as
|
|
83
|
-
xa as
|
|
84
|
-
va as
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
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
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
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
|
-
|
|
103
|
+
Ka as ListActions,
|
|
103
104
|
n as LogoNameMapV2,
|
|
104
|
-
|
|
105
|
+
ja as LogoSymbol,
|
|
105
106
|
l as LogoV2,
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
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
|
-
|
|
148
|
-
|
|
148
|
+
vs as SearchFiles,
|
|
149
|
+
Es as SearchInput,
|
|
149
150
|
ks as SearchProvider,
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
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
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
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
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
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
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
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-
|
|
4
|
-
import { C as v, E as h, a as D, m as E, u as R, b as y } from "./index-
|
|
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,
|