@gary121/sistent 0.14.11
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/LICENSE +201 -0
- package/README.md +115 -0
- package/dist/index.d.mts +4472 -0
- package/dist/index.d.ts +4472 -0
- package/dist/index.js +228 -0
- package/dist/index.mjs +228 -0
- package/package.json +125 -0
package/dist/index.d.mts
ADDED
@@ -0,0 +1,4472 @@
|
|
1
|
+
import * as _mui_material from '@mui/material';
|
2
|
+
import { AccordionProps, AccordionActionsProps, AccordionDetailsProps, AccordionSummaryProps, AlertProps as AlertProps$1, AppBarProps, AutocompleteProps as AutocompleteProps$1, AvatarProps, AvatarGroupProps, BackdropProps, BadgeProps, BoxProps, ButtonProps as ButtonProps$1, ButtonGroupProps, CardProps, CardActionsProps, CardContentProps, CardHeaderProps, CardMediaProps, CheckboxProps, ChipProps, CircularProgressProps, ClickAwayListenerProps, CollapseProps, ContainerProps, CssBaselineProps, DialogProps, DialogActionsProps, DialogContentProps, DialogContentTextProps, DialogTitleProps, DividerProps, DrawerProps, FabProps, FadeProps, FormControlProps, FormControlLabelProps, FormGroupProps, FormLabelProps, GridProps, GrowProps, HiddenProps, IconButtonProps as IconButtonProps$1, InputProps, InputAdornmentProps, InputBaseProps, InputLabelProps, LinearProgressProps, LinkProps, ListProps, ListItemProps, ListItemAvatarProps, ListItemButtonProps, ListItemIconProps, ListItemSecondaryActionProps, ListItemTextProps, ListSubheaderProps, MenuProps, MenuItemProps, MenuListProps, NativeSelectProps, NoSsrProps, OutlinedInputProps, PaginationProps, PaperProps, PopoverProps, PopperProps, RadioProps, RadioGroupProps, SkeletonProps, SlideProps, SliderProps, SnackbarProps, SpeedDialProps, SpeedDialActionProps, StackProps, StepProps, StepperProps, StepLabelProps, StepConnectorProps, StepButtonProps, StepContentProps, StepIconProps, SvgIconProps, SwitchProps, TabProps, TableProps, TableBodyProps, TableCellProps, TableContainerProps, TableHeadProps, TableRowProps, TableSortLabelProps, TabsProps, ToggleButtonProps, ToggleButtonGroupProps, ToolbarProps, TooltipProps, TypographyProps, ZoomProps, Theme as Theme$1, SxProps, SelectChangeEvent, PaletteOptions, PaletteMode, Interactiveness } from '@mui/material';
|
3
|
+
export { AccordionDetailsProps, AccordionProps, AccordionSummaryProps, AppBarProps, AvatarGroupProps, AvatarProps, BackdropProps, BadgeProps, BoxProps, ButtonGroupProps, CardActionsProps, CardContentProps, CardHeaderProps, CardMediaProps, CardProps, CollapseProps, CssBaselineProps, DividerProps, DrawerProps, FormControlProps, ListItemAvatarProps, ListItemProps, ListItemSecondaryActionProps, ListItemTextProps, ListProps, ListSubheaderProps, MenuItemProps, MenuListProps, MenuProps, OutlinedInputProps, PaginationItem, PaginationProps, PaperProps, PopperProps, RadioGroupProps, SelectProps, SkeletonProps, SlideProps, StackProps, SvgIconProps, SwitchProps, TabProps, TableProps, TabsProps, TextFieldProps, Theme, ThemeProvider, ToggleButtonGroupProps, ToggleButtonProps, ToolbarProps, TooltipProps, TypographyProps, alpha, createTheme, keyframes, lighten, styled, useMediaQuery, useTheme } from '@mui/material';
|
4
|
+
import * as React$1 from 'react';
|
5
|
+
import React__default, { FC, CSSProperties, Dispatch, SetStateAction, ReactNode, SVGProps } from 'react';
|
6
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
7
|
+
import { ChartOptions } from 'billboard.js';
|
8
|
+
import { MUIDataTableColumn } from 'mui-datatables';
|
9
|
+
import { FallbackProps } from 'react-error-boundary';
|
10
|
+
import { OptionsObject } from 'notistack';
|
11
|
+
import { PopperProps as PopperProps$1, PopperPlacementType } from '@mui/material/Popper';
|
12
|
+
import { Theme } from '@mui/material/styles';
|
13
|
+
import * as _emotion_styled from '@emotion/styled';
|
14
|
+
import * as _mui_system from '@mui/system';
|
15
|
+
import _ from 'lodash';
|
16
|
+
import { Observable } from 'rxjs';
|
17
|
+
import { Store as Store$1, Dispatch as Dispatch$1 } from 'redux';
|
18
|
+
import { TypographyOptions } from '@mui/material/styles/createTypography';
|
19
|
+
import { EmotionCache } from '@emotion/react';
|
20
|
+
import * as xstate from 'xstate';
|
21
|
+
import { EventObject, ErrorActorEvent, DoneActorEvent, SnapshotFrom, NonReducibleUnknown, ActorLogic, AnyMachineSnapshot, AnyActorLogic, AnyEventObject, AnyActorRef } from 'xstate';
|
22
|
+
import { UnknownAction, Store, Selector } from '@reduxjs/toolkit';
|
23
|
+
import { Api, EndpointDefinitions, QueryResultSelectorResult } from '@reduxjs/toolkit/query/react';
|
24
|
+
import { AnyActorSystem } from 'xstate/dist/declarations/src/system';
|
25
|
+
|
26
|
+
declare const DATA_VALIDATOR_COMMANDS: {
|
27
|
+
VALIDATE_DATA: "VALIDATE_DATA";
|
28
|
+
};
|
29
|
+
declare const DATA_VALIDATOR_EVENTS: {
|
30
|
+
DESIGN_VALIDATION_DONE: "DESIGN_VALIDATION_DONE";
|
31
|
+
DESIGN_VALIDATION_FAILED: "DESIGN_VALIDATION_FAILED";
|
32
|
+
};
|
33
|
+
type ValidationPayload = Record<string, unknown>;
|
34
|
+
type ValidationResults = unknown;
|
35
|
+
type SystemErrors = unknown;
|
36
|
+
interface ValidateDataCommand extends EventObject {
|
37
|
+
type: typeof DATA_VALIDATOR_COMMANDS.VALIDATE_DATA;
|
38
|
+
returnAddress: string;
|
39
|
+
data: {
|
40
|
+
validationPayload: ValidationPayload;
|
41
|
+
};
|
42
|
+
}
|
43
|
+
interface ValidateActorDoneEvent extends DoneActorEvent {
|
44
|
+
output: {
|
45
|
+
validationResults: ValidationResults;
|
46
|
+
};
|
47
|
+
}
|
48
|
+
interface DataValidatedEvent extends EventObject {
|
49
|
+
type: typeof DATA_VALIDATOR_EVENTS.DESIGN_VALIDATION_DONE;
|
50
|
+
data: {
|
51
|
+
validationPayload: ValidationPayload;
|
52
|
+
validationResults: ValidationResults;
|
53
|
+
};
|
54
|
+
}
|
55
|
+
interface DataValidationFailedEvent extends EventObject {
|
56
|
+
type: typeof DATA_VALIDATOR_EVENTS.DESIGN_VALIDATION_FAILED;
|
57
|
+
data: {
|
58
|
+
validationPayload: ValidationPayload;
|
59
|
+
systemErrors: SystemErrors;
|
60
|
+
};
|
61
|
+
}
|
62
|
+
declare const dataValidatorCommands: {
|
63
|
+
validateData: ({ validationPayload, returnAddress }: {
|
64
|
+
validationPayload: ValidationPayload;
|
65
|
+
returnAddress: string;
|
66
|
+
}) => ValidateDataCommand;
|
67
|
+
};
|
68
|
+
declare const dataValidatorEvents: {
|
69
|
+
dataValidated: ({ validationPayload, validationResults }: {
|
70
|
+
validationPayload: ValidationPayload;
|
71
|
+
validationResults: ValidationResults;
|
72
|
+
}) => DataValidatedEvent;
|
73
|
+
dataValidationFailed: ({ validationPayload, systemErrors }: {
|
74
|
+
validationPayload: ValidationPayload;
|
75
|
+
systemErrors: SystemErrors;
|
76
|
+
}) => DataValidationFailedEvent;
|
77
|
+
};
|
78
|
+
interface ValidationMachineContext {
|
79
|
+
validationResults: ValidationResults | null;
|
80
|
+
validationPayload: ValidationPayload | null;
|
81
|
+
returnAddress: string | null;
|
82
|
+
}
|
83
|
+
interface ValidateActorInput {
|
84
|
+
validationPayload: ValidationPayload;
|
85
|
+
prevValidationResults: ValidationResults;
|
86
|
+
}
|
87
|
+
declare const dataValidatorMachine: xstate.StateMachine<ValidationMachineContext, ValidateDataCommand | ValidateActorDoneEvent | DataValidatedEvent | DataValidationFailedEvent, {
|
88
|
+
[x: string]: xstate.ActorRefFromLogic<xstate.PromiseActorLogic<never, ValidateActorInput, EventObject>> | undefined;
|
89
|
+
}, {
|
90
|
+
src: "ValidateActor";
|
91
|
+
logic: xstate.PromiseActorLogic<never, ValidateActorInput, EventObject>;
|
92
|
+
id: string | undefined;
|
93
|
+
}, xstate.Values<{
|
94
|
+
setReturnAddress: {
|
95
|
+
type: "setReturnAddress";
|
96
|
+
params: xstate.NonReducibleUnknown;
|
97
|
+
};
|
98
|
+
setValidationPayload: {
|
99
|
+
type: "setValidationPayload";
|
100
|
+
params: xstate.NonReducibleUnknown;
|
101
|
+
};
|
102
|
+
resetValidationPayload: {
|
103
|
+
type: "resetValidationPayload";
|
104
|
+
params: xstate.NonReducibleUnknown;
|
105
|
+
};
|
106
|
+
resetValidationResults: {
|
107
|
+
type: "resetValidationResults";
|
108
|
+
params: xstate.NonReducibleUnknown;
|
109
|
+
};
|
110
|
+
setValidationResults: {
|
111
|
+
type: "setValidationResults";
|
112
|
+
params: xstate.NonReducibleUnknown;
|
113
|
+
};
|
114
|
+
}>, never, "debounceTimeout", "validatingData" | {
|
115
|
+
idle: "waiting" | "debouncing";
|
116
|
+
}, string, xstate.NonReducibleUnknown, xstate.NonReducibleUnknown, EventObject, xstate.MetaObject, {
|
117
|
+
readonly id: "validationMachine";
|
118
|
+
readonly initial: "idle";
|
119
|
+
readonly context: {
|
120
|
+
readonly validationResults: null;
|
121
|
+
readonly validationPayload: {};
|
122
|
+
readonly returnAddress: null;
|
123
|
+
};
|
124
|
+
readonly states: {
|
125
|
+
readonly idle: {
|
126
|
+
readonly description: "when the machine is idle , i.e no process is going on and the machine the ready to accept new request";
|
127
|
+
readonly initial: "waiting";
|
128
|
+
readonly on: {
|
129
|
+
readonly VALIDATE_DATA: {
|
130
|
+
readonly target: ".debouncing";
|
131
|
+
readonly actions: readonly ["setValidationPayload", "setReturnAddress"];
|
132
|
+
};
|
133
|
+
};
|
134
|
+
readonly states: {
|
135
|
+
readonly waiting: {};
|
136
|
+
readonly debouncing: {
|
137
|
+
readonly after: {
|
138
|
+
readonly debounceTimeout: "#validatingData";
|
139
|
+
};
|
140
|
+
};
|
141
|
+
};
|
142
|
+
};
|
143
|
+
readonly validatingData: {
|
144
|
+
readonly id: "validatingData";
|
145
|
+
readonly invoke: {
|
146
|
+
readonly src: "ValidateActor";
|
147
|
+
readonly input: ({ context }: {
|
148
|
+
context: ValidationMachineContext;
|
149
|
+
}) => {
|
150
|
+
validationPayload: ValidationPayload;
|
151
|
+
prevValidationResults: unknown;
|
152
|
+
};
|
153
|
+
readonly onDone: {
|
154
|
+
readonly target: "idle";
|
155
|
+
readonly actions: readonly ["setValidationResults", any];
|
156
|
+
};
|
157
|
+
readonly onError: {
|
158
|
+
readonly target: "idle";
|
159
|
+
readonly actions: readonly [any, ({ event }: xstate.ActionArgs<ValidationMachineContext, ErrorActorEvent<unknown, string>, ValidateDataCommand | ValidateActorDoneEvent | DataValidatedEvent | DataValidationFailedEvent>) => void, xstate.ActionFunction<ValidationMachineContext, ErrorActorEvent<unknown, string>, ValidateDataCommand | ValidateActorDoneEvent | DataValidatedEvent | DataValidationFailedEvent, undefined, {
|
160
|
+
src: "ValidateActor";
|
161
|
+
logic: xstate.PromiseActorLogic<never, ValidateActorInput, EventObject>;
|
162
|
+
id: string | undefined;
|
163
|
+
}, never, never, never, never>];
|
164
|
+
};
|
165
|
+
};
|
166
|
+
};
|
167
|
+
};
|
168
|
+
}>;
|
169
|
+
type ValidationMachineSnapshot = SnapshotFrom<typeof dataValidatorMachine>;
|
170
|
+
declare const selectValidationResults: (state: ValidationMachineSnapshot) => unknown;
|
171
|
+
declare const selectIsValidating: (state: ValidationMachineSnapshot) => boolean;
|
172
|
+
|
173
|
+
type WorkerInput = NonReducibleUnknown;
|
174
|
+
type WorkerSnapshot = AnyMachineSnapshot;
|
175
|
+
type WorkerActorLogic<TEvent extends EventObject, TInput = NonReducibleUnknown> = ActorLogic<WorkerSnapshot, TEvent, TInput, AnyActorSystem, EventObject>;
|
176
|
+
declare const fromWorkerfiedActor: (worker: Worker) => WorkerActorLogic<EventObject, WorkerInput>;
|
177
|
+
|
178
|
+
declare const workerfyActor: (actor: AnyActorLogic) => null;
|
179
|
+
|
180
|
+
interface ReduxActorContext {
|
181
|
+
store: Store;
|
182
|
+
selectors: {
|
183
|
+
[key: string]: Selector;
|
184
|
+
};
|
185
|
+
}
|
186
|
+
type extraArgs = any[];
|
187
|
+
declare const REDUX_COMMANDS: {
|
188
|
+
DISPATCH: string;
|
189
|
+
GET_STATE: string;
|
190
|
+
GET_STATE_FROM_SELECTOR: string;
|
191
|
+
SUBSCRIBE: string;
|
192
|
+
UNSUBSCRIBE: string;
|
193
|
+
};
|
194
|
+
declare const REDUX_EVENTS: {
|
195
|
+
REDUX_STATE_SNAPSHOT: string;
|
196
|
+
};
|
197
|
+
type REXUX_ACTOR_EVENTS = {
|
198
|
+
type: 'DISPATCH';
|
199
|
+
data: {
|
200
|
+
action: UnknownAction;
|
201
|
+
};
|
202
|
+
} | {
|
203
|
+
type: 'SUBSCRIBE';
|
204
|
+
} | {
|
205
|
+
type: 'UNSUBSCRIBE';
|
206
|
+
} | {
|
207
|
+
type: 'REDUX_STATE_SNAPSHOT';
|
208
|
+
data: {
|
209
|
+
snapshot: unknown;
|
210
|
+
};
|
211
|
+
} | {
|
212
|
+
type: 'GET_STATE';
|
213
|
+
returnAddress: string;
|
214
|
+
data: {
|
215
|
+
key: string;
|
216
|
+
};
|
217
|
+
} | {
|
218
|
+
type: 'GET_STATE_FROM_SELECTOR';
|
219
|
+
returnAddress: string;
|
220
|
+
data: {
|
221
|
+
selector: string;
|
222
|
+
extraArgs?: extraArgs;
|
223
|
+
};
|
224
|
+
};
|
225
|
+
declare const reduxEvents: {
|
226
|
+
stateSnapshot: (snapshot: unknown) => {
|
227
|
+
type: string;
|
228
|
+
data: {
|
229
|
+
snapshot: unknown;
|
230
|
+
};
|
231
|
+
};
|
232
|
+
};
|
233
|
+
declare const reduxCommands: {
|
234
|
+
dispatch: (action: UnknownAction) => {
|
235
|
+
type: string;
|
236
|
+
data: {
|
237
|
+
action: UnknownAction;
|
238
|
+
};
|
239
|
+
};
|
240
|
+
getState: (key: string, returnAddress: string) => {
|
241
|
+
type: string;
|
242
|
+
returnAddress: string;
|
243
|
+
data: {
|
244
|
+
key: string;
|
245
|
+
};
|
246
|
+
};
|
247
|
+
getStateFromSelector: (selector: string, returnAddress: string, extraArgs?: extraArgs | undefined) => {
|
248
|
+
type: string;
|
249
|
+
returnAddress: string;
|
250
|
+
data: {
|
251
|
+
selector: string;
|
252
|
+
extraArgs: extraArgs | undefined;
|
253
|
+
};
|
254
|
+
};
|
255
|
+
};
|
256
|
+
declare const reduxActor: xstate.StateMachine<ReduxActorContext, {
|
257
|
+
type: 'DISPATCH';
|
258
|
+
data: {
|
259
|
+
action: UnknownAction;
|
260
|
+
};
|
261
|
+
} | {
|
262
|
+
type: 'SUBSCRIBE';
|
263
|
+
} | {
|
264
|
+
type: 'UNSUBSCRIBE';
|
265
|
+
} | {
|
266
|
+
type: 'REDUX_STATE_SNAPSHOT';
|
267
|
+
data: {
|
268
|
+
snapshot: unknown;
|
269
|
+
};
|
270
|
+
} | {
|
271
|
+
type: 'GET_STATE';
|
272
|
+
returnAddress: string;
|
273
|
+
data: {
|
274
|
+
key: string;
|
275
|
+
};
|
276
|
+
} | {
|
277
|
+
type: 'GET_STATE_FROM_SELECTOR';
|
278
|
+
returnAddress: string;
|
279
|
+
data: {
|
280
|
+
selector: string;
|
281
|
+
extraArgs?: extraArgs;
|
282
|
+
};
|
283
|
+
}, {}, never, never, never, never, "idle", string, ReduxActorContext, xstate.NonReducibleUnknown, xstate.EventObject, xstate.MetaObject, {
|
284
|
+
readonly initial: "idle";
|
285
|
+
readonly context: ({ input }: {
|
286
|
+
spawn: {
|
287
|
+
<TSrc extends never>(logic: TSrc, ...[options]: never): xstate.ActorRefFromLogic<never>;
|
288
|
+
<TLogic extends xstate.AnyActorLogic>(src: TLogic, options?: {
|
289
|
+
id?: undefined;
|
290
|
+
systemId?: string | undefined;
|
291
|
+
input?: xstate.InputFrom<TLogic> | undefined;
|
292
|
+
syncSnapshot?: boolean | undefined;
|
293
|
+
} | undefined): xstate.ActorRefFromLogic<TLogic>;
|
294
|
+
};
|
295
|
+
input: ReduxActorContext;
|
296
|
+
self: xstate.ActorRef<xstate.MachineSnapshot<ReduxActorContext, {
|
297
|
+
type: 'DISPATCH';
|
298
|
+
data: {
|
299
|
+
action: UnknownAction;
|
300
|
+
};
|
301
|
+
} | {
|
302
|
+
type: 'SUBSCRIBE';
|
303
|
+
} | {
|
304
|
+
type: 'UNSUBSCRIBE';
|
305
|
+
} | {
|
306
|
+
type: 'REDUX_STATE_SNAPSHOT';
|
307
|
+
data: {
|
308
|
+
snapshot: unknown;
|
309
|
+
};
|
310
|
+
} | {
|
311
|
+
type: 'GET_STATE';
|
312
|
+
returnAddress: string;
|
313
|
+
data: {
|
314
|
+
key: string;
|
315
|
+
};
|
316
|
+
} | {
|
317
|
+
type: 'GET_STATE_FROM_SELECTOR';
|
318
|
+
returnAddress: string;
|
319
|
+
data: {
|
320
|
+
selector: string;
|
321
|
+
extraArgs?: extraArgs;
|
322
|
+
};
|
323
|
+
}, Record<string, xstate.AnyActorRef | undefined>, xstate.StateValue, string, unknown, any, any>, {
|
324
|
+
type: 'DISPATCH';
|
325
|
+
data: {
|
326
|
+
action: UnknownAction;
|
327
|
+
};
|
328
|
+
} | {
|
329
|
+
type: 'SUBSCRIBE';
|
330
|
+
} | {
|
331
|
+
type: 'UNSUBSCRIBE';
|
332
|
+
} | {
|
333
|
+
type: 'REDUX_STATE_SNAPSHOT';
|
334
|
+
data: {
|
335
|
+
snapshot: unknown;
|
336
|
+
};
|
337
|
+
} | {
|
338
|
+
type: 'GET_STATE';
|
339
|
+
returnAddress: string;
|
340
|
+
data: {
|
341
|
+
key: string;
|
342
|
+
};
|
343
|
+
} | {
|
344
|
+
type: 'GET_STATE_FROM_SELECTOR';
|
345
|
+
returnAddress: string;
|
346
|
+
data: {
|
347
|
+
selector: string;
|
348
|
+
extraArgs?: extraArgs;
|
349
|
+
};
|
350
|
+
}, xstate.AnyEventObject>;
|
351
|
+
}) => ReduxActorContext;
|
352
|
+
readonly states: {
|
353
|
+
readonly idle: {
|
354
|
+
readonly on: {
|
355
|
+
readonly DISPATCH: {
|
356
|
+
readonly actions: readonly [({ event, context }: xstate.ActionArgs<ReduxActorContext, {
|
357
|
+
type: 'DISPATCH';
|
358
|
+
data: {
|
359
|
+
action: UnknownAction;
|
360
|
+
};
|
361
|
+
}, {
|
362
|
+
type: 'DISPATCH';
|
363
|
+
data: {
|
364
|
+
action: UnknownAction;
|
365
|
+
};
|
366
|
+
} | {
|
367
|
+
type: 'SUBSCRIBE';
|
368
|
+
} | {
|
369
|
+
type: 'UNSUBSCRIBE';
|
370
|
+
} | {
|
371
|
+
type: 'REDUX_STATE_SNAPSHOT';
|
372
|
+
data: {
|
373
|
+
snapshot: unknown;
|
374
|
+
};
|
375
|
+
} | {
|
376
|
+
type: 'GET_STATE';
|
377
|
+
returnAddress: string;
|
378
|
+
data: {
|
379
|
+
key: string;
|
380
|
+
};
|
381
|
+
} | {
|
382
|
+
type: 'GET_STATE_FROM_SELECTOR';
|
383
|
+
returnAddress: string;
|
384
|
+
data: {
|
385
|
+
selector: string;
|
386
|
+
extraArgs?: extraArgs;
|
387
|
+
};
|
388
|
+
}>) => UnknownAction];
|
389
|
+
};
|
390
|
+
readonly GET_STATE_FROM_SELECTOR: {
|
391
|
+
readonly actions: xstate.ActionFunction<ReduxActorContext, {
|
392
|
+
type: 'GET_STATE_FROM_SELECTOR';
|
393
|
+
returnAddress: string;
|
394
|
+
data: {
|
395
|
+
selector: string;
|
396
|
+
extraArgs?: extraArgs;
|
397
|
+
};
|
398
|
+
}, {
|
399
|
+
type: 'DISPATCH';
|
400
|
+
data: {
|
401
|
+
action: UnknownAction;
|
402
|
+
};
|
403
|
+
} | {
|
404
|
+
type: 'SUBSCRIBE';
|
405
|
+
} | {
|
406
|
+
type: 'UNSUBSCRIBE';
|
407
|
+
} | {
|
408
|
+
type: 'REDUX_STATE_SNAPSHOT';
|
409
|
+
data: {
|
410
|
+
snapshot: unknown;
|
411
|
+
};
|
412
|
+
} | {
|
413
|
+
type: 'GET_STATE';
|
414
|
+
returnAddress: string;
|
415
|
+
data: {
|
416
|
+
key: string;
|
417
|
+
};
|
418
|
+
} | {
|
419
|
+
type: 'GET_STATE_FROM_SELECTOR';
|
420
|
+
returnAddress: string;
|
421
|
+
data: {
|
422
|
+
selector: string;
|
423
|
+
extraArgs?: extraArgs;
|
424
|
+
};
|
425
|
+
}, undefined, never, never, never, never, never>;
|
426
|
+
};
|
427
|
+
};
|
428
|
+
};
|
429
|
+
};
|
430
|
+
}>;
|
431
|
+
|
432
|
+
interface RtkQueryActorContext {
|
433
|
+
api: Api<any, EndpointDefinitions, any, any>;
|
434
|
+
store: Store;
|
435
|
+
}
|
436
|
+
interface RtkQueryActorInput {
|
437
|
+
api: Api<any, EndpointDefinitions, any, any>;
|
438
|
+
store: Store;
|
439
|
+
}
|
440
|
+
interface initiateQueryEvent extends EventObject {
|
441
|
+
type: 'INITIATE_QUERY';
|
442
|
+
data: {
|
443
|
+
endpointName: string;
|
444
|
+
params: unknown;
|
445
|
+
};
|
446
|
+
returnAddress: string;
|
447
|
+
}
|
448
|
+
interface queryDoneEvent extends DoneActorEvent {
|
449
|
+
output: {
|
450
|
+
result: QueryResultSelectorResult<any>;
|
451
|
+
sourceEvent: initiateQueryEvent;
|
452
|
+
};
|
453
|
+
}
|
454
|
+
interface queryFailedEvent extends ErrorActorEvent {
|
455
|
+
error: {
|
456
|
+
result: QueryResultSelectorResult<any>;
|
457
|
+
sourceEvent: initiateQueryEvent;
|
458
|
+
};
|
459
|
+
}
|
460
|
+
interface QueryResultEvent extends EventObject {
|
461
|
+
type: 'QUERY_RESULT';
|
462
|
+
data: {
|
463
|
+
result: unknown;
|
464
|
+
};
|
465
|
+
}
|
466
|
+
interface QueryFailedEvent extends EventObject {
|
467
|
+
type: 'QUERY_FAILED';
|
468
|
+
data: {
|
469
|
+
error: unknown;
|
470
|
+
};
|
471
|
+
}
|
472
|
+
declare const rtkQueryActorCommands: {
|
473
|
+
initiateQuery: ({ endpointName, params, returnAddress }: {
|
474
|
+
endpointName: string;
|
475
|
+
params: unknown;
|
476
|
+
returnAddress: string;
|
477
|
+
}) => initiateQueryEvent;
|
478
|
+
};
|
479
|
+
declare const rtkQueryActorEvents: {
|
480
|
+
queryResult: ({ result }: {
|
481
|
+
result: unknown;
|
482
|
+
}) => QueryResultEvent;
|
483
|
+
queryFailed: ({ error }: {
|
484
|
+
error: unknown;
|
485
|
+
}) => QueryFailedEvent;
|
486
|
+
};
|
487
|
+
declare const RTK_EVENTS: {
|
488
|
+
QUERY_RESULT: string;
|
489
|
+
QUERY_FAILED: string;
|
490
|
+
};
|
491
|
+
interface InitiateQueryActorInput {
|
492
|
+
context: RtkQueryActorContext;
|
493
|
+
event: initiateQueryEvent;
|
494
|
+
}
|
495
|
+
declare const rtkQueryActor: xstate.StateMachine<RtkQueryActorContext, initiateQueryEvent | queryDoneEvent | queryFailedEvent, {
|
496
|
+
[x: string]: xstate.ActorRefFromLogic<xstate.PromiseActorLogic<{
|
497
|
+
result: any;
|
498
|
+
sourceEvent: initiateQueryEvent;
|
499
|
+
}, InitiateQueryActorInput, EventObject>> | undefined;
|
500
|
+
}, {
|
501
|
+
src: "InitiateQueryActor";
|
502
|
+
logic: xstate.PromiseActorLogic<{
|
503
|
+
result: any;
|
504
|
+
sourceEvent: initiateQueryEvent;
|
505
|
+
}, InitiateQueryActorInput, EventObject>;
|
506
|
+
id: string | undefined;
|
507
|
+
}, never, never, never, "idle" | "querying", string, RtkQueryActorInput, xstate.NonReducibleUnknown, EventObject, xstate.MetaObject, {
|
508
|
+
readonly initial: "idle";
|
509
|
+
readonly context: ({ input }: {
|
510
|
+
spawn: {
|
511
|
+
<TSrc extends "InitiateQueryActor">(logic: TSrc, ...[options]: {
|
512
|
+
src: "InitiateQueryActor";
|
513
|
+
logic: xstate.PromiseActorLogic<{
|
514
|
+
result: any;
|
515
|
+
sourceEvent: initiateQueryEvent;
|
516
|
+
}, InitiateQueryActorInput, EventObject>;
|
517
|
+
id: string | undefined;
|
518
|
+
} extends infer T ? T extends {
|
519
|
+
src: "InitiateQueryActor";
|
520
|
+
logic: xstate.PromiseActorLogic<{
|
521
|
+
result: any;
|
522
|
+
sourceEvent: initiateQueryEvent;
|
523
|
+
}, InitiateQueryActorInput, EventObject>;
|
524
|
+
id: string | undefined;
|
525
|
+
} ? T extends {
|
526
|
+
src: TSrc;
|
527
|
+
} ? xstate.ConditionalRequired<[options?: ({
|
528
|
+
id?: T["id"] | undefined;
|
529
|
+
systemId?: string | undefined;
|
530
|
+
input?: xstate.InputFrom<T["logic"]> | undefined;
|
531
|
+
syncSnapshot?: boolean | undefined;
|
532
|
+
} & { [K in xstate.RequiredActorOptions<T>]: unknown; }) | undefined], xstate.IsNotNever<xstate.RequiredActorOptions<T>>> : never : never : never): xstate.ActorRefFromLogic<xstate.GetConcreteByKey<{
|
533
|
+
src: "InitiateQueryActor";
|
534
|
+
logic: xstate.PromiseActorLogic<{
|
535
|
+
result: any;
|
536
|
+
sourceEvent: initiateQueryEvent;
|
537
|
+
}, InitiateQueryActorInput, EventObject>;
|
538
|
+
id: string | undefined;
|
539
|
+
}, "src", TSrc>["logic"]>;
|
540
|
+
<TLogic extends xstate.AnyActorLogic>(src: TLogic, options?: {
|
541
|
+
id?: undefined;
|
542
|
+
systemId?: string | undefined;
|
543
|
+
input?: xstate.InputFrom<TLogic> | undefined;
|
544
|
+
syncSnapshot?: boolean | undefined;
|
545
|
+
} | undefined): xstate.ActorRefFromLogic<TLogic>;
|
546
|
+
};
|
547
|
+
input: RtkQueryActorInput;
|
548
|
+
self: xstate.ActorRef<xstate.MachineSnapshot<RtkQueryActorContext, initiateQueryEvent | queryDoneEvent | queryFailedEvent, Record<string, xstate.AnyActorRef | undefined>, xstate.StateValue, string, unknown, any, any>, initiateQueryEvent | queryDoneEvent | queryFailedEvent, xstate.AnyEventObject>;
|
549
|
+
}) => RtkQueryActorInput;
|
550
|
+
readonly states: {
|
551
|
+
readonly idle: {
|
552
|
+
readonly on: {
|
553
|
+
readonly INITIATE_QUERY: {
|
554
|
+
readonly target: "querying";
|
555
|
+
};
|
556
|
+
};
|
557
|
+
};
|
558
|
+
readonly querying: {
|
559
|
+
readonly invoke: {
|
560
|
+
readonly id: "initiateQuery";
|
561
|
+
readonly input: ({ context, event }: {
|
562
|
+
context: RtkQueryActorContext;
|
563
|
+
event: initiateQueryEvent | queryDoneEvent | queryFailedEvent;
|
564
|
+
self: xstate.ActorRef<xstate.MachineSnapshot<RtkQueryActorContext, initiateQueryEvent | queryDoneEvent | queryFailedEvent, Record<string, xstate.AnyActorRef>, xstate.StateValue, string, unknown, any, any>, initiateQueryEvent | queryDoneEvent | queryFailedEvent, xstate.AnyEventObject>;
|
565
|
+
}) => {
|
566
|
+
context: RtkQueryActorContext;
|
567
|
+
event: initiateQueryEvent;
|
568
|
+
};
|
569
|
+
readonly src: "InitiateQueryActor";
|
570
|
+
readonly onDone: {
|
571
|
+
readonly actions: xstate.ActionFunction<RtkQueryActorContext, DoneActorEvent<{
|
572
|
+
result: any;
|
573
|
+
sourceEvent: initiateQueryEvent;
|
574
|
+
}, string>, initiateQueryEvent | queryDoneEvent | queryFailedEvent, undefined, never, never, never, never, never>;
|
575
|
+
readonly target: "idle";
|
576
|
+
};
|
577
|
+
readonly onError: {
|
578
|
+
readonly actions: xstate.ActionFunction<RtkQueryActorContext, ErrorActorEvent<unknown, string>, initiateQueryEvent | queryDoneEvent | queryFailedEvent, undefined, never, never, never, never, never>;
|
579
|
+
readonly target: "idle";
|
580
|
+
};
|
581
|
+
};
|
582
|
+
};
|
583
|
+
};
|
584
|
+
}>;
|
585
|
+
|
586
|
+
type ContextWithReturnAddress = {
|
587
|
+
returnAddress: AnyActorRef;
|
588
|
+
};
|
589
|
+
declare const sendToActor: (actor: string, event: AnyEventObject) => xstate.ActionFunction<xstate.MachineContext, xstate.EventObject, xstate.EventObject, xstate.NonReducibleUnknown, never, never, never, never, never>;
|
590
|
+
declare const sendToActors: (actorSystemIds: string[], eventCreator: (actionArgs: any, params: any) => AnyEventObject) => xstate.ActionFunction<xstate.MachineContext, xstate.EventObject, xstate.EventObject, xstate.NonReducibleUnknown, xstate.ProvidedActor, xstate.ParameterizedObject, xstate.ParameterizedObject, never, xstate.EventObject>;
|
591
|
+
declare const forwardToActors: (actorSystemIds: string[]) => xstate.ActionFunction<xstate.MachineContext, xstate.EventObject, xstate.EventObject, xstate.NonReducibleUnknown, xstate.ProvidedActor, xstate.ParameterizedObject, xstate.ParameterizedObject, never, xstate.EventObject>;
|
592
|
+
declare const deadLetter: (event: AnyEventObject) => {
|
593
|
+
type: string;
|
594
|
+
event: AnyEventObject;
|
595
|
+
};
|
596
|
+
declare const reply: (eventFn: (actionArgs: any, params: any) => AnyEventObject) => xstate.ActionFunction<ContextWithReturnAddress, xstate.EventObject, xstate.EventObject, any, never, never, never, never, never>;
|
597
|
+
declare const XSTATE_DEBUG_EVENT = "XSTATE_DEBUG_EVENT";
|
598
|
+
type deferredEventsQueue = AnyEventObject[];
|
599
|
+
interface DeferredEventsQueueContext {
|
600
|
+
deferredEventsQueue: deferredEventsQueue;
|
601
|
+
}
|
602
|
+
declare const DeferEvents: {
|
603
|
+
defer: xstate.ActionFunction<DeferredEventsQueueContext, AnyEventObject, xstate.EventObject, xstate.NonReducibleUnknown, xstate.ProvidedActor, never, never, never, never>;
|
604
|
+
recall: xstate.ActionFunction<xstate.MachineContext, xstate.EventObject, xstate.EventObject, xstate.NonReducibleUnknown, xstate.ProvidedActor, xstate.ParameterizedObject, xstate.ParameterizedObject, never, xstate.EventObject>;
|
605
|
+
};
|
606
|
+
|
607
|
+
interface EventBusEvent<Type extends string, Data = unknown> {
|
608
|
+
type: Type;
|
609
|
+
data: Data;
|
610
|
+
}
|
611
|
+
type EventType<T> = T extends EventBusEvent<infer Type, any> ? Type : never;
|
612
|
+
type DataType<T, Type extends string> = T extends EventBusEvent<Type, infer Data> ? Data : never;
|
613
|
+
declare class EventBus<T extends EventBusEvent<string, any>> {
|
614
|
+
private eventSubject;
|
615
|
+
private eventObservable;
|
616
|
+
constructor();
|
617
|
+
publish<E extends T>(event: E): void;
|
618
|
+
on(eventType: EventType<T>): Observable<T>;
|
619
|
+
onAny(): Observable<T>;
|
620
|
+
}
|
621
|
+
|
622
|
+
declare const REEE = "xxx";
|
623
|
+
|
624
|
+
declare const Accordion: React__default.ForwardRefExoticComponent<Omit<AccordionProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
625
|
+
|
626
|
+
declare const AccordionActions: React__default.ForwardRefExoticComponent<Omit<AccordionActionsProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
627
|
+
|
628
|
+
declare const AccordionDetails: React__default.ForwardRefExoticComponent<Omit<AccordionDetailsProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
629
|
+
|
630
|
+
declare const AccordionSummary: React__default.ForwardRefExoticComponent<Omit<AccordionSummaryProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
631
|
+
|
632
|
+
declare const Alert: React__default.ForwardRefExoticComponent<Omit<AlertProps$1, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
633
|
+
|
634
|
+
declare const AppBar: React__default.ForwardRefExoticComponent<Omit<AppBarProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
635
|
+
|
636
|
+
type AutocompleteProps<T, Multiple extends boolean = false, DisableClearable extends boolean = false, FreeSolo extends boolean = false> = AutocompleteProps$1<T, Multiple, DisableClearable, FreeSolo>;
|
637
|
+
declare const Autocomplete: React__default.ForwardRefExoticComponent<Omit<AutocompleteProps<unknown, false, false, false>, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
638
|
+
|
639
|
+
declare const Avatar: React__default.ForwardRefExoticComponent<Omit<AvatarProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
640
|
+
|
641
|
+
declare const AvatarGroup: React__default.ForwardRefExoticComponent<Omit<AvatarGroupProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
642
|
+
|
643
|
+
declare const Backdrop: React__default.ForwardRefExoticComponent<Omit<BackdropProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
644
|
+
|
645
|
+
declare const Badge: React__default.ForwardRefExoticComponent<Omit<BadgeProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
646
|
+
|
647
|
+
declare const Box: React__default.ForwardRefExoticComponent<Omit<BoxProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
648
|
+
|
649
|
+
interface ButtonProps extends ButtonProps$1 {
|
650
|
+
label?: string;
|
651
|
+
children?: React.ReactNode;
|
652
|
+
}
|
653
|
+
declare function Button({ label, children, ...props }: ButtonProps): JSX.Element;
|
654
|
+
|
655
|
+
declare const ButtonGroup: React__default.ForwardRefExoticComponent<Omit<ButtonGroupProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
656
|
+
|
657
|
+
declare const Card: React__default.ForwardRefExoticComponent<Omit<CardProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
658
|
+
|
659
|
+
declare const CardActions: React__default.ForwardRefExoticComponent<Omit<CardActionsProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
660
|
+
|
661
|
+
declare const CardContent: React__default.ForwardRefExoticComponent<Omit<CardContentProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
662
|
+
|
663
|
+
declare const CardHeader: React__default.ForwardRefExoticComponent<Omit<CardHeaderProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
664
|
+
|
665
|
+
declare const CardMedia: React__default.ForwardRefExoticComponent<Omit<CardMediaProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
666
|
+
|
667
|
+
declare const Checkbox: React__default.ForwardRefExoticComponent<Omit<CheckboxProps, "ref"> & React__default.RefAttributes<HTMLButtonElement>>;
|
668
|
+
|
669
|
+
declare const Chip: React__default.ForwardRefExoticComponent<Omit<ChipProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
670
|
+
|
671
|
+
declare const CircularProgress: React__default.ForwardRefExoticComponent<Omit<CircularProgressProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
672
|
+
|
673
|
+
declare const ClickAwayListener: React__default.ForwardRefExoticComponent<ClickAwayListenerProps & React__default.RefAttributes<HTMLDivElement>>;
|
674
|
+
|
675
|
+
declare const Collapse: React__default.ForwardRefExoticComponent<Omit<CollapseProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
676
|
+
|
677
|
+
declare const Container: React__default.ForwardRefExoticComponent<Omit<ContainerProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
678
|
+
|
679
|
+
declare function CssBaseline(props: CssBaselineProps): JSX.Element;
|
680
|
+
|
681
|
+
declare const Dialog: React__default.ForwardRefExoticComponent<Omit<DialogProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
682
|
+
|
683
|
+
declare const DialogActions: React__default.ForwardRefExoticComponent<Omit<DialogActionsProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
684
|
+
|
685
|
+
declare const DialogContent: React__default.ForwardRefExoticComponent<Omit<DialogContentProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
686
|
+
|
687
|
+
declare const DialogContentText: React__default.ForwardRefExoticComponent<Omit<DialogContentTextProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
688
|
+
|
689
|
+
declare const DialogTitle: React__default.ForwardRefExoticComponent<Omit<DialogTitleProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
690
|
+
|
691
|
+
declare function Divider(props: DividerProps): JSX.Element;
|
692
|
+
|
693
|
+
declare const Drawer: React__default.ForwardRefExoticComponent<Omit<DrawerProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
694
|
+
|
695
|
+
declare const Fab: React__default.ForwardRefExoticComponent<Omit<FabProps, "ref"> & React__default.RefAttributes<HTMLButtonElement>>;
|
696
|
+
|
697
|
+
declare const Fade: React__default.ForwardRefExoticComponent<Omit<FadeProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
698
|
+
|
699
|
+
declare function FormControl(props: FormControlProps): JSX.Element;
|
700
|
+
|
701
|
+
declare const FormControlLabel: React__default.ForwardRefExoticComponent<Omit<FormControlLabelProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
702
|
+
|
703
|
+
declare const FormGroup: React__default.ForwardRefExoticComponent<Omit<FormGroupProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
704
|
+
|
705
|
+
declare const FormLabel: React__default.ForwardRefExoticComponent<Omit<FormLabelProps, "ref"> & React__default.RefAttributes<HTMLLabelElement>>;
|
706
|
+
|
707
|
+
declare const Grid: React__default.ForwardRefExoticComponent<Omit<GridProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
708
|
+
|
709
|
+
declare const Grow: React__default.ForwardRefExoticComponent<Omit<GrowProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
710
|
+
|
711
|
+
declare const Hidden: React__default.ForwardRefExoticComponent<HiddenProps & React__default.RefAttributes<HTMLDivElement>>;
|
712
|
+
|
713
|
+
type IconButtonProps = IconButtonProps$1;
|
714
|
+
declare const IconButton: React__default.ForwardRefExoticComponent<Omit<IconButtonProps, "ref"> & React__default.RefAttributes<HTMLButtonElement>>;
|
715
|
+
|
716
|
+
declare const Input: React__default.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
717
|
+
|
718
|
+
declare const InputAdornment: React__default.ForwardRefExoticComponent<Omit<InputAdornmentProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
719
|
+
|
720
|
+
declare const InputBase: React__default.ForwardRefExoticComponent<Omit<InputBaseProps, "ref"> & React__default.RefAttributes<HTMLInputElement>>;
|
721
|
+
|
722
|
+
declare function InputLabel(props: InputLabelProps): JSX.Element;
|
723
|
+
|
724
|
+
declare const LinearProgress: React__default.FC<LinearProgressProps>;
|
725
|
+
|
726
|
+
declare function Link(props: LinkProps): JSX.Element;
|
727
|
+
|
728
|
+
declare function List(props: ListProps): JSX.Element;
|
729
|
+
|
730
|
+
declare const ListItem: React__default.ForwardRefExoticComponent<Omit<ListItemProps, "ref"> & React__default.RefAttributes<HTMLLIElement>>;
|
731
|
+
|
732
|
+
declare const ListItemAvatar: React__default.ForwardRefExoticComponent<Omit<ListItemAvatarProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
733
|
+
|
734
|
+
declare const ListItemButton: React__default.ForwardRefExoticComponent<Omit<ListItemButtonProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
735
|
+
|
736
|
+
declare const ListItemIcon: React__default.ForwardRefExoticComponent<Omit<ListItemIconProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
737
|
+
|
738
|
+
declare const ListItemSecondaryAction: React__default.ForwardRefExoticComponent<Omit<ListItemSecondaryActionProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
739
|
+
|
740
|
+
declare function ListItemText(props: ListItemTextProps): JSX.Element;
|
741
|
+
|
742
|
+
declare function ListSubheader(props: ListSubheaderProps): JSX.Element;
|
743
|
+
|
744
|
+
declare const Menu: React__default.ForwardRefExoticComponent<Omit<MenuProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
745
|
+
|
746
|
+
declare function MenuItem(props: MenuItemProps): JSX.Element;
|
747
|
+
|
748
|
+
declare function MenuList(props: MenuListProps): JSX.Element;
|
749
|
+
|
750
|
+
declare const NativeSelect: React__default.ForwardRefExoticComponent<Omit<NativeSelectProps, "ref"> & React__default.RefAttributes<HTMLSelectElement>>;
|
751
|
+
|
752
|
+
declare function NoSsr(props: NoSsrProps): JSX.Element;
|
753
|
+
|
754
|
+
declare const OutlinedInput: React__default.ForwardRefExoticComponent<Omit<OutlinedInputProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
755
|
+
|
756
|
+
declare const Pagination: React__default.ForwardRefExoticComponent<Omit<PaginationProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
757
|
+
|
758
|
+
declare const Paper: React__default.ForwardRefExoticComponent<Omit<PaperProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
759
|
+
|
760
|
+
declare const Popover: React__default.ForwardRefExoticComponent<Omit<PopoverProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
761
|
+
|
762
|
+
declare const Popper: React__default.ForwardRefExoticComponent<Omit<PopperProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
763
|
+
|
764
|
+
declare const Radio: React__default.ForwardRefExoticComponent<Omit<RadioProps, "ref"> & React__default.RefAttributes<HTMLButtonElement>>;
|
765
|
+
|
766
|
+
declare const RadioGroup: React__default.ForwardRefExoticComponent<Omit<RadioGroupProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
767
|
+
|
768
|
+
declare const Select: React__default.ForwardRefExoticComponent<(Omit<_mui_material.BaseSelectProps<unknown> & _mui_material.FilledSelectProps, "ref"> | Omit<_mui_material.BaseSelectProps<unknown> & _mui_material.StandardSelectProps, "ref"> | Omit<_mui_material.BaseSelectProps<unknown> & _mui_material.OutlinedSelectProps, "ref">) & React__default.RefAttributes<HTMLDivElement>>;
|
769
|
+
|
770
|
+
declare const Skeleton: React__default.ForwardRefExoticComponent<Omit<SkeletonProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
771
|
+
|
772
|
+
declare const Slide: React__default.ForwardRefExoticComponent<Omit<SlideProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
773
|
+
|
774
|
+
declare const Slider: React__default.ForwardRefExoticComponent<Omit<SliderProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
775
|
+
|
776
|
+
declare const Snackbar: React__default.ForwardRefExoticComponent<Omit<SnackbarProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
777
|
+
|
778
|
+
declare const SpeedDial: React__default.ForwardRefExoticComponent<Omit<SpeedDialProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
779
|
+
declare const SpeedDialAction: React__default.ForwardRefExoticComponent<Omit<SpeedDialActionProps, "ref"> & React__default.RefAttributes<HTMLButtonElement>>;
|
780
|
+
|
781
|
+
declare const Stack: React__default.ForwardRefExoticComponent<Omit<StackProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
782
|
+
|
783
|
+
declare const Step: React__default.ForwardRefExoticComponent<Omit<StepProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
784
|
+
declare const Stepper: React__default.ForwardRefExoticComponent<Omit<StepperProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
785
|
+
declare const StepLabel: React__default.ForwardRefExoticComponent<Omit<StepLabelProps, "ref"> & React__default.RefAttributes<HTMLSpanElement>>;
|
786
|
+
declare const StepConnector: React__default.ForwardRefExoticComponent<Omit<StepConnectorProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
787
|
+
declare const StepButton: React__default.ForwardRefExoticComponent<Omit<StepButtonProps, "ref"> & React__default.RefAttributes<HTMLButtonElement>>;
|
788
|
+
declare const StepContent: React__default.ForwardRefExoticComponent<Omit<StepContentProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
789
|
+
declare const StepIcon: React__default.ForwardRefExoticComponent<Omit<StepIconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>;
|
790
|
+
|
791
|
+
declare const SvgIcon: React__default.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>;
|
792
|
+
|
793
|
+
declare const Switch: React__default.ForwardRefExoticComponent<Omit<SwitchProps, "ref"> & React__default.RefAttributes<HTMLButtonElement>>;
|
794
|
+
|
795
|
+
declare const Tab: React__default.ForwardRefExoticComponent<Omit<TabProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
796
|
+
|
797
|
+
declare function Table(props: TableProps): JSX.Element;
|
798
|
+
|
799
|
+
declare const TableBody: React__default.ForwardRefExoticComponent<Omit<TableBodyProps, "ref"> & React__default.RefAttributes<HTMLTableSectionElement>>;
|
800
|
+
|
801
|
+
declare const TableCell: React__default.ForwardRefExoticComponent<Omit<TableCellProps, "ref"> & React__default.RefAttributes<HTMLTableCellElement>>;
|
802
|
+
|
803
|
+
declare const TableContainer: React__default.ForwardRefExoticComponent<Omit<TableContainerProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
804
|
+
|
805
|
+
declare const TableHead: React__default.ForwardRefExoticComponent<Omit<TableHeadProps, "ref"> & React__default.RefAttributes<HTMLTableSectionElement>>;
|
806
|
+
|
807
|
+
declare const TableRow: React__default.ForwardRefExoticComponent<Omit<TableRowProps, "ref"> & React__default.RefAttributes<HTMLTableRowElement>>;
|
808
|
+
|
809
|
+
declare const TableSortLabel: React__default.ForwardRefExoticComponent<Omit<TableSortLabelProps, "ref"> & React__default.RefAttributes<HTMLSpanElement>>;
|
810
|
+
|
811
|
+
declare const Tabs: React__default.ForwardRefExoticComponent<Omit<TabsProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
812
|
+
|
813
|
+
declare const TextField: React__default.ForwardRefExoticComponent<(Omit<_mui_material.OutlinedTextFieldProps, "ref"> | Omit<_mui_material.StandardTextFieldProps, "ref"> | Omit<_mui_material.FilledTextFieldProps, "ref">) & React__default.RefAttributes<HTMLDivElement>>;
|
814
|
+
|
815
|
+
declare function ToggleButton(props: ToggleButtonProps): JSX.Element;
|
816
|
+
|
817
|
+
declare const ToggleButtonGroup: React__default.ForwardRefExoticComponent<Omit<ToggleButtonGroupProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
818
|
+
|
819
|
+
declare const Toolbar: React__default.ForwardRefExoticComponent<Omit<ToolbarProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
820
|
+
|
821
|
+
declare function Tooltip(props: TooltipProps): JSX.Element;
|
822
|
+
|
823
|
+
declare const Typography: React__default.ForwardRefExoticComponent<Omit<TypographyProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
824
|
+
|
825
|
+
declare const Zoom: React__default.ForwardRefExoticComponent<Omit<ZoomProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
826
|
+
|
827
|
+
/**
|
828
|
+
* @file colors.ts
|
829
|
+
* @description This file defines the color palette for the design system.
|
830
|
+
* It provides a dictionary of commonly used colors for consistency across components.
|
831
|
+
* @remarks These colors can be imported and used in various components.
|
832
|
+
*/
|
833
|
+
/**
|
834
|
+
* Dictionary of commonly used colors.
|
835
|
+
*/
|
836
|
+
type ColorDictionary = Record<string, string>;
|
837
|
+
declare const colors: ColorDictionary;
|
838
|
+
|
839
|
+
interface Option$1 {
|
840
|
+
icon: React$1.ReactNode;
|
841
|
+
label: string;
|
842
|
+
onClick: (event: React$1.MouseEvent<HTMLLIElement, MouseEvent>, index: number) => void;
|
843
|
+
isDivider?: boolean;
|
844
|
+
show?: boolean;
|
845
|
+
}
|
846
|
+
interface ActionButtonProps {
|
847
|
+
defaultActionClick: () => void;
|
848
|
+
defaultActionDisabled?: boolean;
|
849
|
+
options: Option$1[];
|
850
|
+
label: string;
|
851
|
+
}
|
852
|
+
declare function ActionButton({ defaultActionClick, defaultActionDisabled, options, label }: ActionButtonProps): JSX.Element;
|
853
|
+
|
854
|
+
interface BBChartProps {
|
855
|
+
options: ChartOptions;
|
856
|
+
}
|
857
|
+
declare const _default$1: React$1.MemoExoticComponent<({ options }: BBChartProps) => react_jsx_runtime.JSX.Element>;
|
858
|
+
|
859
|
+
interface NotificationProps {
|
860
|
+
showNotification: boolean;
|
861
|
+
closeNotification: () => void;
|
862
|
+
}
|
863
|
+
declare const BookmarkNotification: React__default.FC<NotificationProps>;
|
864
|
+
|
865
|
+
interface CatalogFilterProps {
|
866
|
+
catalogVisibility: boolean;
|
867
|
+
handleCatalogVisibility: () => void;
|
868
|
+
hideCatalog?: boolean;
|
869
|
+
classes?: string;
|
870
|
+
}
|
871
|
+
declare function CatalogFilter({ catalogVisibility, handleCatalogVisibility, hideCatalog, classes }: CatalogFilterProps): React__default.JSX.Element;
|
872
|
+
|
873
|
+
interface Chapter {
|
874
|
+
frontmatter: {
|
875
|
+
chapterTitle?: string;
|
876
|
+
courseTitle: string;
|
877
|
+
description: string;
|
878
|
+
};
|
879
|
+
}
|
880
|
+
interface Props$2 {
|
881
|
+
chapterNum: number;
|
882
|
+
chapter: Chapter;
|
883
|
+
}
|
884
|
+
declare const ChapterCard: React__default.FC<Props$2>;
|
885
|
+
|
886
|
+
interface ConnectionChipProps {
|
887
|
+
tooltip: string;
|
888
|
+
tooltipPlacement?: TooltipProps['placement'];
|
889
|
+
variant?: ChipProps['variant'];
|
890
|
+
label: string;
|
891
|
+
icon?: React__default.ReactElement;
|
892
|
+
onClick?: () => void;
|
893
|
+
onDelete?: () => void;
|
894
|
+
style?: React__default.CSSProperties;
|
895
|
+
}
|
896
|
+
declare function ConnectionChip({ tooltip, tooltipPlacement, variant, label, icon, onClick, onDelete, style, ...rest }: ConnectionChipProps): JSX.Element;
|
897
|
+
|
898
|
+
interface CatalogCardDesignLogoProps {
|
899
|
+
zoomEffect?: boolean;
|
900
|
+
imgURL?: string[];
|
901
|
+
type: {
|
902
|
+
type: string;
|
903
|
+
};
|
904
|
+
width: string;
|
905
|
+
height: string;
|
906
|
+
style?: React__default.CSSProperties;
|
907
|
+
}
|
908
|
+
declare const CatalogCardDesignLogo: React__default.FC<CatalogCardDesignLogoProps>;
|
909
|
+
|
910
|
+
interface Pattern {
|
911
|
+
id: string;
|
912
|
+
user_id: string;
|
913
|
+
pattern_file: string;
|
914
|
+
user: {
|
915
|
+
first_name: string;
|
916
|
+
last_name: string;
|
917
|
+
};
|
918
|
+
first_name?: string;
|
919
|
+
last_name?: string;
|
920
|
+
avatar_url: string;
|
921
|
+
name: string;
|
922
|
+
download_count: number;
|
923
|
+
clone_count: number;
|
924
|
+
view_count: number;
|
925
|
+
deployment_count: number;
|
926
|
+
share_count: number;
|
927
|
+
userData?: {
|
928
|
+
version?: string;
|
929
|
+
avatarUrl?: string;
|
930
|
+
userName?: string;
|
931
|
+
technologies?: string[];
|
932
|
+
updatedAt?: string;
|
933
|
+
};
|
934
|
+
catalog_data?: {
|
935
|
+
content_class?: string;
|
936
|
+
imageURL?: string[];
|
937
|
+
compatibility?: string[];
|
938
|
+
published_version?: string;
|
939
|
+
type?: string;
|
940
|
+
pattern_info?: string;
|
941
|
+
pattern_caveats?: string;
|
942
|
+
};
|
943
|
+
visibility: string;
|
944
|
+
updated_at: Date;
|
945
|
+
created_at: Date;
|
946
|
+
}
|
947
|
+
type CatalogCardProps$1 = {
|
948
|
+
pattern: Pattern;
|
949
|
+
patternType: string;
|
950
|
+
cardHeight?: string;
|
951
|
+
cardWidth?: string;
|
952
|
+
cardStyles?: React__default.CSSProperties;
|
953
|
+
avatarUrl?: string;
|
954
|
+
shouldFlip?: boolean;
|
955
|
+
cardTechnologies?: boolean;
|
956
|
+
isDetailed?: boolean;
|
957
|
+
UserName?: string;
|
958
|
+
children?: React__default.ReactNode;
|
959
|
+
basePath?: string;
|
960
|
+
subBasePath?: string;
|
961
|
+
getHostUrl?: () => string;
|
962
|
+
onCardClick?: () => void;
|
963
|
+
};
|
964
|
+
declare const CustomCatalogCard: React__default.FC<CatalogCardProps$1>;
|
965
|
+
|
966
|
+
declare const EmptyStateCard: FC;
|
967
|
+
|
968
|
+
interface CustomColumnVisibilityControlProps {
|
969
|
+
columns: MUIDataTableColumn[];
|
970
|
+
customToolsProps: {
|
971
|
+
columnVisibility: Record<string, boolean>;
|
972
|
+
setColumnVisibility: React__default.Dispatch<React__default.SetStateAction<Record<string, boolean>>>;
|
973
|
+
};
|
974
|
+
style?: React__default.CSSProperties;
|
975
|
+
id: string;
|
976
|
+
}
|
977
|
+
interface CustomColumn {
|
978
|
+
name: string;
|
979
|
+
label: string;
|
980
|
+
}
|
981
|
+
declare function CustomColumnVisibilityControl({ columns, id, customToolsProps, style }: CustomColumnVisibilityControlProps): JSX.Element;
|
982
|
+
|
983
|
+
interface ImageComponentProps {
|
984
|
+
src: string;
|
985
|
+
alt?: string;
|
986
|
+
width?: number | string;
|
987
|
+
height?: number | string;
|
988
|
+
loading?: undefined | 'eager' | 'lazy';
|
989
|
+
decoding?: 'sync' | 'async' | 'auto';
|
990
|
+
crossOrigin?: 'anonymous' | 'use-credentials' | '';
|
991
|
+
sizes?: string;
|
992
|
+
srcSet?: string;
|
993
|
+
className?: string;
|
994
|
+
style?: React__default.CSSProperties;
|
995
|
+
onClick?: (event: React__default.MouseEvent<HTMLImageElement, MouseEvent>) => void;
|
996
|
+
}
|
997
|
+
declare const CustomImage: React__default.FC<ImageComponentProps>;
|
998
|
+
|
999
|
+
type CustomTooltipProps = {
|
1000
|
+
title: string | React__default.ReactNode | JSX.Element;
|
1001
|
+
onClick?: (event: React__default.MouseEvent<HTMLElement>) => void;
|
1002
|
+
children: React__default.ReactNode;
|
1003
|
+
fontSize?: string;
|
1004
|
+
fontWeight?: number;
|
1005
|
+
variant?: 'standard' | 'small';
|
1006
|
+
bgColor?: string;
|
1007
|
+
} & Omit<TooltipProps, 'title' | 'onClick'>;
|
1008
|
+
declare function CustomTooltip({ title, onClick, placement, children, fontSize, fontWeight, variant, bgColor, ...props }: CustomTooltipProps): JSX.Element;
|
1009
|
+
|
1010
|
+
type InfoTooltipProps = {
|
1011
|
+
helpText: string | React.ReactNode | JSX.Element;
|
1012
|
+
style?: React.CSSProperties;
|
1013
|
+
} & Omit<CustomTooltipProps, 'title' | 'children'>;
|
1014
|
+
declare const InfoTooltip: ({ helpText, style, ...props }: InfoTooltipProps) => react_jsx_runtime.JSX.Element;
|
1015
|
+
|
1016
|
+
interface CustomDialogProps$1 {
|
1017
|
+
open: boolean;
|
1018
|
+
fullScreen?: boolean;
|
1019
|
+
title?: string;
|
1020
|
+
leftHeaderIcon?: React.ReactNode;
|
1021
|
+
helpText?: string;
|
1022
|
+
helpArea?: React.ReactNode;
|
1023
|
+
actions?: React.ReactNode;
|
1024
|
+
hideActions?: boolean;
|
1025
|
+
styleContent?: React.CSSProperties;
|
1026
|
+
content: React.ReactNode;
|
1027
|
+
maxWidth?: DialogProps['maxWidth'];
|
1028
|
+
onClose: () => void;
|
1029
|
+
}
|
1030
|
+
declare function CustomDialog({ open, onClose, title, leftHeaderIcon, helpText, helpArea, actions, hideActions, content, maxWidth, ...props }: CustomDialogProps$1): JSX.Element;
|
1031
|
+
|
1032
|
+
interface StyledDialogActionsProps {
|
1033
|
+
children: React__default.ReactNode;
|
1034
|
+
}
|
1035
|
+
declare function StyledDialogActions({ children, ...props }: StyledDialogActionsProps): JSX.Element;
|
1036
|
+
|
1037
|
+
interface StyledDialogContentProps {
|
1038
|
+
children: React__default.ReactNode;
|
1039
|
+
}
|
1040
|
+
declare function StyledDialogContent({ children, ...props }: StyledDialogContentProps): JSX.Element;
|
1041
|
+
|
1042
|
+
interface StyledDialogTitleProps {
|
1043
|
+
children: React__default.ReactNode;
|
1044
|
+
style?: React__default.CSSProperties;
|
1045
|
+
}
|
1046
|
+
declare function StyledDialogTitle({ children, style, ...props }: StyledDialogTitleProps): JSX.Element;
|
1047
|
+
|
1048
|
+
/**
|
1049
|
+
* Empty state component for grid view.
|
1050
|
+
*
|
1051
|
+
* @param {Object} props - The component props.
|
1052
|
+
* @param {Object} props.message - The message of the empty state.
|
1053
|
+
* @param {string} props.icon - The icon of the empty state.
|
1054
|
+
* @param {boolean} pros.poiner - The arrow pointer for button state.
|
1055
|
+
*
|
1056
|
+
*/
|
1057
|
+
interface EmptyStateProps {
|
1058
|
+
icon: string;
|
1059
|
+
message?: string;
|
1060
|
+
pointerLabel?: string;
|
1061
|
+
poiner?: boolean;
|
1062
|
+
}
|
1063
|
+
declare function EmptyState({ icon, message, pointerLabel, poiner }: EmptyStateProps): JSX.Element;
|
1064
|
+
|
1065
|
+
interface FallbackComponentProps extends FallbackProps {
|
1066
|
+
resetErrorBoundary: () => void;
|
1067
|
+
children?: React__default.ReactNode;
|
1068
|
+
pageUrl?: string;
|
1069
|
+
timestamp?: string;
|
1070
|
+
showPackageInfo?: boolean;
|
1071
|
+
version?: string;
|
1072
|
+
}
|
1073
|
+
declare function Fallback({ error, children, showPackageInfo, version }: FallbackComponentProps): JSX.Element;
|
1074
|
+
interface ErrorBoundaryProps {
|
1075
|
+
customFallback?: React__default.ComponentType<FallbackProps>;
|
1076
|
+
children: React__default.ReactNode;
|
1077
|
+
onErrorCaught?: (error: string) => void;
|
1078
|
+
}
|
1079
|
+
declare const ErrorBoundary: React__default.FC<ErrorBoundaryProps>;
|
1080
|
+
interface WithErrorBoundaryProps {
|
1081
|
+
Component: React__default.ComponentType<any>;
|
1082
|
+
errorHandlingProps?: ErrorBoundaryProps;
|
1083
|
+
}
|
1084
|
+
declare const withErrorBoundary: React__default.FC<WithErrorBoundaryProps>;
|
1085
|
+
interface WithSuppressedErrorBoundaryProps {
|
1086
|
+
Component: React__default.ComponentType<any>;
|
1087
|
+
}
|
1088
|
+
declare const withSuppressedErrorBoundary: React__default.FC<WithSuppressedErrorBoundaryProps>;
|
1089
|
+
|
1090
|
+
interface FeedbackComponentProps {
|
1091
|
+
onSubmit: (data: {
|
1092
|
+
label: string;
|
1093
|
+
message: string;
|
1094
|
+
}) => void;
|
1095
|
+
containerStyles?: CSSProperties;
|
1096
|
+
feedbackOptionStyles?: CSSProperties;
|
1097
|
+
renderPosition: 'bottom-center' | 'bottom-right' | 'bottom-left' | 'right-top' | 'right-middle' | 'right-bottom';
|
1098
|
+
defaultMessage?: string;
|
1099
|
+
defaultOpen?: boolean;
|
1100
|
+
}
|
1101
|
+
declare const FeedbackComponent: React__default.FC<FeedbackComponentProps>;
|
1102
|
+
|
1103
|
+
type FlipCardProps = {
|
1104
|
+
duration?: number;
|
1105
|
+
onClick?: () => void;
|
1106
|
+
onShow?: () => void;
|
1107
|
+
children: [React__default.ReactNode, React__default.ReactNode];
|
1108
|
+
disableFlip?: boolean;
|
1109
|
+
padding?: string;
|
1110
|
+
};
|
1111
|
+
/**
|
1112
|
+
* A card component that provides a flipping animation between two content faces
|
1113
|
+
*
|
1114
|
+
* @component
|
1115
|
+
* @param props.duration - Animation duration in milliseconds (default: 500)
|
1116
|
+
* @param props.onClick - Callback function triggered on card click
|
1117
|
+
* @param props.onShow - Additional callback function triggered when card shows new face
|
1118
|
+
* @param props.children - Array of exactly two child components (front and back)
|
1119
|
+
* @param props.disableFlip - When true, prevents the card from flipping (default: false)
|
1120
|
+
*
|
1121
|
+
* @example
|
1122
|
+
* ```tsx
|
1123
|
+
* <FlipCard>
|
1124
|
+
* <div>Front Content</div>
|
1125
|
+
* <div>Back Content</div>
|
1126
|
+
* </FlipCard>
|
1127
|
+
* ```
|
1128
|
+
*/
|
1129
|
+
declare function FlipCard({ duration, onClick, onShow, children, disableFlip, padding }: FlipCardProps): react_jsx_runtime.JSX.Element;
|
1130
|
+
|
1131
|
+
interface FormatIdProps {
|
1132
|
+
id: string;
|
1133
|
+
}
|
1134
|
+
declare const FormatId: React__default.FC<FormatIdProps>;
|
1135
|
+
|
1136
|
+
/**
|
1137
|
+
* Custom hook for getting window dimensions.
|
1138
|
+
*
|
1139
|
+
* @returns {WindowDimensions} { width, height }
|
1140
|
+
*/
|
1141
|
+
declare function useWindowDimensions(): WindowDimensions;
|
1142
|
+
/**
|
1143
|
+
* Represents the width and height of the window.
|
1144
|
+
*/
|
1145
|
+
interface WindowDimensions {
|
1146
|
+
width: number;
|
1147
|
+
height: number;
|
1148
|
+
}
|
1149
|
+
|
1150
|
+
type NotificationHandler = (message: string, options?: OptionsObject) => void;
|
1151
|
+
declare const useNotificationHandler: () => NotificationHandler;
|
1152
|
+
|
1153
|
+
interface ColView {
|
1154
|
+
0: string;
|
1155
|
+
1: 'na' | 'xs' | 's' | 'm' | 'l' | 'xl';
|
1156
|
+
}
|
1157
|
+
declare const updateVisibleColumns: (colViews: ColView[], width: number) => Record<string, boolean>;
|
1158
|
+
|
1159
|
+
interface Tutorial {
|
1160
|
+
frontmatter: {
|
1161
|
+
disabled: string;
|
1162
|
+
themeColor: string;
|
1163
|
+
title: string;
|
1164
|
+
courseTitle: string;
|
1165
|
+
description: string;
|
1166
|
+
status?: boolean;
|
1167
|
+
cardImage: string;
|
1168
|
+
};
|
1169
|
+
}
|
1170
|
+
interface Props$1 {
|
1171
|
+
tutorial: Tutorial;
|
1172
|
+
path?: string;
|
1173
|
+
courseCount: number;
|
1174
|
+
courseType: string;
|
1175
|
+
}
|
1176
|
+
declare const LearningCard: React__default.FC<Props$1>;
|
1177
|
+
|
1178
|
+
interface RenderMarkdownProps {
|
1179
|
+
content: string;
|
1180
|
+
}
|
1181
|
+
declare const RenderMarkdown: React.FC<RenderMarkdownProps>;
|
1182
|
+
declare const BasicMarkdown: React.FC<RenderMarkdownProps>;
|
1183
|
+
|
1184
|
+
interface CustomDialogProps {
|
1185
|
+
open: boolean;
|
1186
|
+
fullScreen?: boolean;
|
1187
|
+
title?: string;
|
1188
|
+
leftHeaderIcon?: React.ReactNode;
|
1189
|
+
helpText?: string;
|
1190
|
+
helpArea?: React.ReactNode;
|
1191
|
+
actions?: React.ReactNode;
|
1192
|
+
hideActions?: boolean;
|
1193
|
+
styleContent?: React.CSSProperties;
|
1194
|
+
content: React.ReactNode;
|
1195
|
+
closeComponent: React.ReactNode;
|
1196
|
+
maxWidth?: DialogProps['maxWidth'];
|
1197
|
+
onClose: () => void;
|
1198
|
+
}
|
1199
|
+
declare function ModalCard({ title, leftHeaderIcon, helpText, helpArea, actions, hideActions, content, closeComponent }: CustomDialogProps): JSX.Element;
|
1200
|
+
|
1201
|
+
interface IPopperListener extends PopperProps$1 {
|
1202
|
+
open: boolean;
|
1203
|
+
anchorEl: HTMLElement | null | undefined;
|
1204
|
+
children: React.ReactNode;
|
1205
|
+
placement?: PopperPlacementType;
|
1206
|
+
}
|
1207
|
+
declare function PopperListener({ children, open, anchorEl, placement, ...props }: IPopperListener): JSX.Element;
|
1208
|
+
|
1209
|
+
declare const PROMPT_VARIANTS: {
|
1210
|
+
readonly WARNING: "warning";
|
1211
|
+
readonly DANGER: "error";
|
1212
|
+
readonly SUCCESS: "success";
|
1213
|
+
readonly INFO: "info";
|
1214
|
+
};
|
1215
|
+
type PromptVariant = (typeof PROMPT_VARIANTS)[keyof typeof PROMPT_VARIANTS];
|
1216
|
+
interface PromptProps {
|
1217
|
+
variant?: PromptVariant;
|
1218
|
+
}
|
1219
|
+
interface ShowParams {
|
1220
|
+
title: string;
|
1221
|
+
subtitle: string;
|
1222
|
+
primaryOption: string;
|
1223
|
+
variant: PromptVariant;
|
1224
|
+
showInfoIcon?: string;
|
1225
|
+
showCheckbox?: boolean;
|
1226
|
+
headerIcon?: React.ReactNode;
|
1227
|
+
}
|
1228
|
+
interface PromptRef {
|
1229
|
+
show: (params: ShowParams) => Promise<string>;
|
1230
|
+
getCheckboxState: () => boolean;
|
1231
|
+
}
|
1232
|
+
declare const PromptComponent: React$1.ForwardRefExoticComponent<PromptProps & React$1.RefAttributes<PromptRef>>;
|
1233
|
+
|
1234
|
+
declare const DataTableEllipsisMenu: React__default.FC<{
|
1235
|
+
actionsList: NonNullable<Column['options']>['actionsList'];
|
1236
|
+
theme?: Theme;
|
1237
|
+
}>;
|
1238
|
+
interface Column {
|
1239
|
+
name: string;
|
1240
|
+
label: string;
|
1241
|
+
options?: {
|
1242
|
+
filter?: boolean;
|
1243
|
+
sort?: boolean;
|
1244
|
+
searchable?: boolean;
|
1245
|
+
display?: boolean;
|
1246
|
+
sortDescFirst?: boolean;
|
1247
|
+
customBodyRender?: (value: string | number | boolean | object) => JSX.Element;
|
1248
|
+
actionsList?: {
|
1249
|
+
title: string;
|
1250
|
+
icon: JSX.Element;
|
1251
|
+
onClick: () => void;
|
1252
|
+
disabled?: boolean;
|
1253
|
+
customComponent?: JSX.Element;
|
1254
|
+
type?: string;
|
1255
|
+
}[];
|
1256
|
+
};
|
1257
|
+
}
|
1258
|
+
interface ResponsiveDataTableProps {
|
1259
|
+
data: string[][];
|
1260
|
+
columns: MUIDataTableColumn[];
|
1261
|
+
options?: object;
|
1262
|
+
tableCols?: MUIDataTableColumn[];
|
1263
|
+
updateCols?: ((columns: MUIDataTableColumn[]) => void) | undefined;
|
1264
|
+
columnVisibility: Record<string, boolean> | undefined;
|
1265
|
+
theme?: object;
|
1266
|
+
colViews?: ColView[];
|
1267
|
+
rowsPerPageOptions?: number[] | undefined;
|
1268
|
+
backgroundColor?: string;
|
1269
|
+
}
|
1270
|
+
declare const ResponsiveDataTable: ({ data, columns, options, tableCols, updateCols, columnVisibility, rowsPerPageOptions, theme: customTheme, backgroundColor, ...props }: ResponsiveDataTableProps) => JSX.Element;
|
1271
|
+
|
1272
|
+
interface SearchBarProps$1 {
|
1273
|
+
onSearch: (searchText: string) => void;
|
1274
|
+
style?: React__default.CSSProperties;
|
1275
|
+
placeholder?: string;
|
1276
|
+
onClear?: () => void;
|
1277
|
+
expanded: boolean;
|
1278
|
+
setExpanded: (expanded: boolean) => void;
|
1279
|
+
}
|
1280
|
+
declare function SearchBar({ onSearch, placeholder, onClear, expanded, setExpanded }: SearchBarProps$1): JSX.Element;
|
1281
|
+
|
1282
|
+
interface TeamTableProps {
|
1283
|
+
teams: any;
|
1284
|
+
tableOptions: object;
|
1285
|
+
columnVisibility: Record<string, boolean>;
|
1286
|
+
colViews: ColView[];
|
1287
|
+
tableCols: any[];
|
1288
|
+
columns: MUIDataTableColumn[];
|
1289
|
+
updateCols: (cols: any) => void;
|
1290
|
+
isRemoveFromTeamAllowed: boolean;
|
1291
|
+
org_id: string;
|
1292
|
+
useGetUsersForOrgQuery: any;
|
1293
|
+
useNotificationHandlers: any;
|
1294
|
+
useRemoveUserFromTeamMutation: any;
|
1295
|
+
}
|
1296
|
+
declare const TeamTable: React.FC<TeamTableProps>;
|
1297
|
+
|
1298
|
+
interface AssignmentHookResult<T> {
|
1299
|
+
data: T[];
|
1300
|
+
workspaceData: T[];
|
1301
|
+
assignModal: boolean;
|
1302
|
+
handleAssignModal: (e?: React.MouseEvent) => void;
|
1303
|
+
handleAssignModalClose: (e?: React.MouseEvent) => void;
|
1304
|
+
handleAssignablePage: () => void;
|
1305
|
+
handleAssignedPage: () => void;
|
1306
|
+
handleAssign: () => void;
|
1307
|
+
handleAssignData: (data: T[]) => void;
|
1308
|
+
isActivityOccurred?: (allItems: T[]) => boolean;
|
1309
|
+
disableTransferButton: boolean;
|
1310
|
+
assignedItems: T[];
|
1311
|
+
}
|
1312
|
+
interface Environment {
|
1313
|
+
id: string;
|
1314
|
+
name: string;
|
1315
|
+
description?: string;
|
1316
|
+
organization_id: string;
|
1317
|
+
created_at: string;
|
1318
|
+
updated_at: string;
|
1319
|
+
}
|
1320
|
+
interface Team$1 {
|
1321
|
+
id: string;
|
1322
|
+
name: string;
|
1323
|
+
team_id: string;
|
1324
|
+
description?: string;
|
1325
|
+
team_name: string;
|
1326
|
+
deleted_at: {
|
1327
|
+
Valid: boolean;
|
1328
|
+
};
|
1329
|
+
}
|
1330
|
+
|
1331
|
+
interface TeamTableConfigurationProps {
|
1332
|
+
teams: Team$1[];
|
1333
|
+
count: number;
|
1334
|
+
page: number;
|
1335
|
+
pageSize: number;
|
1336
|
+
setPage: (page: number) => void;
|
1337
|
+
setPageSize: (pageSize: number) => void;
|
1338
|
+
sortOrder: string;
|
1339
|
+
setSortOrder: (sortOrder: string) => void;
|
1340
|
+
bulkSelect: boolean;
|
1341
|
+
setBulkSelect: (bulkSelect: boolean) => void;
|
1342
|
+
handleTeamView: (ev: React.MouseEvent, rowData: any) => void;
|
1343
|
+
handleDeleteTeam: (ev: React.MouseEvent, rowData: any) => void;
|
1344
|
+
handleleaveTeam: (ev: React.MouseEvent, rowData: any) => void;
|
1345
|
+
handleRemoveTeamFromWorkspace?: (rowData: any) => void;
|
1346
|
+
teamId: string;
|
1347
|
+
workspace?: boolean;
|
1348
|
+
isEditTeamAllowed: boolean;
|
1349
|
+
isLeaveTeamAllowed: boolean;
|
1350
|
+
isRemoveTeamFromWorkspaceAllowed?: boolean;
|
1351
|
+
isDeleteTeamAllowed: boolean;
|
1352
|
+
setSearch: (search: string) => void;
|
1353
|
+
}
|
1354
|
+
declare function TeamTableConfiguration({ teams, count, page, pageSize, setPage, setPageSize, sortOrder, setSortOrder, bulkSelect, setBulkSelect, handleTeamView, handleDeleteTeam, handleRemoveTeamFromWorkspace, handleleaveTeam, teamId, workspace, isEditTeamAllowed, isLeaveTeamAllowed, isRemoveTeamFromWorkspaceAllowed, isDeleteTeamAllowed, setSearch }: TeamTableConfigurationProps): {
|
1355
|
+
columns: MUIDataTableColumn[];
|
1356
|
+
tableOptions: {
|
1357
|
+
filter: boolean;
|
1358
|
+
sort: boolean;
|
1359
|
+
selectableRows: "none";
|
1360
|
+
filterType: "dropdown";
|
1361
|
+
expandableRows: boolean;
|
1362
|
+
expandableRowsHeader: boolean;
|
1363
|
+
expandableRowsOnClick: boolean;
|
1364
|
+
responsive: "standard";
|
1365
|
+
count: number;
|
1366
|
+
rowsPerPage: number;
|
1367
|
+
page: number;
|
1368
|
+
print: boolean;
|
1369
|
+
download: boolean;
|
1370
|
+
elevation: number;
|
1371
|
+
serverSide: boolean;
|
1372
|
+
viewColumns: boolean;
|
1373
|
+
search: boolean;
|
1374
|
+
rowsExpanded: number[];
|
1375
|
+
customToolbarSelect: (selected: any) => react_jsx_runtime.JSX.Element;
|
1376
|
+
textLabels: {
|
1377
|
+
selectedRows: {
|
1378
|
+
text: string;
|
1379
|
+
};
|
1380
|
+
};
|
1381
|
+
onTableChange: (action: string, tableState: any) => void;
|
1382
|
+
isRowSelectable: (dataIndx: number) => boolean;
|
1383
|
+
setRowProps: (row: any, rowIndex: number, tableState: any) => {
|
1384
|
+
style: {
|
1385
|
+
backgroundColor: string | undefined;
|
1386
|
+
};
|
1387
|
+
};
|
1388
|
+
};
|
1389
|
+
tableCols: MUIDataTableColumn[];
|
1390
|
+
updateCols: React$1.Dispatch<React$1.SetStateAction<MUIDataTableColumn[]>>;
|
1391
|
+
columnVisibility: Record<string, boolean>;
|
1392
|
+
setColumnVisibility: React$1.Dispatch<React$1.SetStateAction<Record<string, boolean>>>;
|
1393
|
+
colViews: ColView[];
|
1394
|
+
};
|
1395
|
+
|
1396
|
+
interface TooltipIconProps {
|
1397
|
+
title: string;
|
1398
|
+
onClick?: (event: React__default.MouseEvent<HTMLElement>) => void;
|
1399
|
+
icon?: React__default.ReactNode;
|
1400
|
+
arrow?: boolean;
|
1401
|
+
style?: React__default.CSSProperties;
|
1402
|
+
iconType?: string;
|
1403
|
+
id?: string;
|
1404
|
+
placement?: 'bottom' | 'top' | 'left' | 'right';
|
1405
|
+
disabled?: boolean;
|
1406
|
+
children?: React__default.ReactNode;
|
1407
|
+
}
|
1408
|
+
declare function TooltipIcon({ children, title, onClick, icon, style, arrow, disabled, iconType, id, placement }: TooltipIconProps): JSX.Element;
|
1409
|
+
|
1410
|
+
interface TransferListProps {
|
1411
|
+
name?: string;
|
1412
|
+
assignableData: ListItemType[];
|
1413
|
+
assignedData: (data: ListItemType[]) => void;
|
1414
|
+
originalAssignedData: ListItemType[];
|
1415
|
+
emptyStateIconLeft: JSX.Element;
|
1416
|
+
emtyStateMessageLeft: string;
|
1417
|
+
emptyStateIconRight: JSX.Element;
|
1418
|
+
emtyStateMessageRight: string;
|
1419
|
+
transferComponentType: string;
|
1420
|
+
assignablePage: () => void;
|
1421
|
+
assignedPage: () => void;
|
1422
|
+
originalLeftCount: number;
|
1423
|
+
originalRightCount: number;
|
1424
|
+
rightPermission: boolean;
|
1425
|
+
leftPermission: boolean;
|
1426
|
+
}
|
1427
|
+
interface ListItemType {
|
1428
|
+
id: number;
|
1429
|
+
name: string;
|
1430
|
+
kind: string | undefined;
|
1431
|
+
}
|
1432
|
+
/**
|
1433
|
+
* Renders transfer component.
|
1434
|
+
*
|
1435
|
+
* @param {Object} props - The component props.
|
1436
|
+
* @param {String} props.name - This is the name of the data list.
|
1437
|
+
* @param {Array} props.assignableData - The assignable data list.
|
1438
|
+
* @param {Function} props.assignedData - The callback function to transfer assigned data list.
|
1439
|
+
* @param {Array} props.originalAssignedData - The already assigend data list.
|
1440
|
+
* @param {Element} props.emptyStateIconLeft - Icon for empty state of list left.
|
1441
|
+
* @param {String} props.emtyStateMessageLeft - Message for the empty state of the list left.
|
1442
|
+
* @param {Element} props.emptyStateIconRight - Icon for empty state of list right.
|
1443
|
+
* @param {String} props.emtyStateMessageRight - Message for the empty state of the list right.
|
1444
|
+
* @param {String} props.transferComponentType - Type of the component transfer (There is two types: chip and other).
|
1445
|
+
* @param {Boolean} props.leftPermission - Permission to move data from left to right.
|
1446
|
+
* @param {Boolean} props.rightPermission - Permission to move data from right to left.
|
1447
|
+
*/
|
1448
|
+
declare function TransferList({ name, assignableData, assignedData, assignablePage, assignedPage, originalAssignedData, emptyStateIconLeft, emtyStateMessageLeft, emptyStateIconRight, emtyStateMessageRight, originalLeftCount, originalRightCount, leftPermission, rightPermission, transferComponentType }: TransferListProps): JSX.Element;
|
1449
|
+
|
1450
|
+
interface FilterColumn {
|
1451
|
+
name: string;
|
1452
|
+
options: {
|
1453
|
+
label: string;
|
1454
|
+
value: string;
|
1455
|
+
}[];
|
1456
|
+
}
|
1457
|
+
interface UniversalFilterProps {
|
1458
|
+
filters: Record<string, FilterColumn>;
|
1459
|
+
selectedFilters: Record<string, string>;
|
1460
|
+
setSelectedFilters: React__default.Dispatch<React__default.SetStateAction<Record<string, string>>>;
|
1461
|
+
variant: 'filled' | 'standard' | 'outlined';
|
1462
|
+
handleApplyFilter: () => void;
|
1463
|
+
showAllOption?: boolean;
|
1464
|
+
id: string;
|
1465
|
+
}
|
1466
|
+
declare function UniversalFilter({ filters, selectedFilters, setSelectedFilters, variant, handleApplyFilter, showAllOption, id }: UniversalFilterProps): JSX.Element;
|
1467
|
+
|
1468
|
+
interface UsersTableProps {
|
1469
|
+
teamID: string;
|
1470
|
+
useGetUsersForOrgQuery: any;
|
1471
|
+
org_id: string;
|
1472
|
+
useRemoveUserFromTeamMutation: any;
|
1473
|
+
useNotificationHandlers: any;
|
1474
|
+
isRemoveFromTeamAllowed: boolean;
|
1475
|
+
theme?: Theme$1;
|
1476
|
+
}
|
1477
|
+
declare const UsersTable: React.FC<UsersTableProps>;
|
1478
|
+
|
1479
|
+
interface UserTableAvatarInfoProps {
|
1480
|
+
userId: string;
|
1481
|
+
userName: string;
|
1482
|
+
userEmail: string;
|
1483
|
+
profileUrl?: string;
|
1484
|
+
}
|
1485
|
+
declare const UserTableAvatarInfo: React.FC<UserTableAvatarInfoProps>;
|
1486
|
+
|
1487
|
+
declare const VIEW_VISIBILITY: {
|
1488
|
+
readonly PUBLIC: "public";
|
1489
|
+
readonly PRIVATE: "private";
|
1490
|
+
readonly PUBLISHED: "published";
|
1491
|
+
};
|
1492
|
+
type VIEW_VISIBILITY = (typeof VIEW_VISIBILITY)[keyof typeof VIEW_VISIBILITY];
|
1493
|
+
interface VisibilityChipMenuProps {
|
1494
|
+
value: VIEW_VISIBILITY;
|
1495
|
+
onChange: (value: string) => void;
|
1496
|
+
options: [string, React.ElementType][];
|
1497
|
+
enabled: boolean;
|
1498
|
+
}
|
1499
|
+
declare const VisibilityChipMenu: React.FC<VisibilityChipMenuProps>;
|
1500
|
+
|
1501
|
+
type CatalogCardProps = {
|
1502
|
+
pattern: any;
|
1503
|
+
patternType: string;
|
1504
|
+
cardHeight: string;
|
1505
|
+
cardWidth: string;
|
1506
|
+
cardStyles: React__default.CSSProperties;
|
1507
|
+
type: string;
|
1508
|
+
onCardClick?: () => void;
|
1509
|
+
};
|
1510
|
+
declare const CatalogCard: React__default.FC<CatalogCardProps>;
|
1511
|
+
|
1512
|
+
interface FilterOption {
|
1513
|
+
value: string;
|
1514
|
+
label: string;
|
1515
|
+
totalCount?: number;
|
1516
|
+
description?: string;
|
1517
|
+
Icon?: React.ComponentType<{
|
1518
|
+
width: string;
|
1519
|
+
height: string;
|
1520
|
+
}>;
|
1521
|
+
}
|
1522
|
+
interface FilterList {
|
1523
|
+
filterKey: string;
|
1524
|
+
sectionDisplayName?: string;
|
1525
|
+
defaultOpen?: boolean;
|
1526
|
+
isMultiSelect?: boolean;
|
1527
|
+
options?: FilterOption[];
|
1528
|
+
customComponent?: React.ComponentType;
|
1529
|
+
}
|
1530
|
+
type FilterListWithOptions = FilterList & {
|
1531
|
+
options: FilterOption[];
|
1532
|
+
customComponent?: never;
|
1533
|
+
};
|
1534
|
+
type FilterListWithCustomComponent = FilterList & {
|
1535
|
+
customComponent: React.ComponentType;
|
1536
|
+
options?: never;
|
1537
|
+
};
|
1538
|
+
type FilterListType = FilterListWithOptions | FilterListWithCustomComponent;
|
1539
|
+
interface CatalogFilterSidebarProps {
|
1540
|
+
setData: (callback: (prevFilters: FilterValues) => FilterValues) => void;
|
1541
|
+
lists: FilterListType[];
|
1542
|
+
value?: FilterValues;
|
1543
|
+
styleProps?: StyleProps;
|
1544
|
+
}
|
1545
|
+
type FilterValues = Record<string, string | string[]>;
|
1546
|
+
interface StyleProps {
|
1547
|
+
backgroundColor?: string;
|
1548
|
+
sectionTitleBackgroundColor?: string;
|
1549
|
+
fontFamily?: string;
|
1550
|
+
}
|
1551
|
+
/**
|
1552
|
+
* @function CatalogFilterSidebar
|
1553
|
+
* @description A functional component that renders the filter sidebar.
|
1554
|
+
* @param {Array} value - The data to be filtered.
|
1555
|
+
* @param {Function} setData - A function to set the filtered data.
|
1556
|
+
* @param {Array} lists - An array of filter sections and its options lists.
|
1557
|
+
*/
|
1558
|
+
declare const CatalogFilterSidebar: React.FC<CatalogFilterSidebarProps>;
|
1559
|
+
|
1560
|
+
interface ChartDialogProps {
|
1561
|
+
open: boolean;
|
1562
|
+
content: React__default.ReactNode;
|
1563
|
+
title: string;
|
1564
|
+
actions?: React__default.ReactNode;
|
1565
|
+
onClose: () => void;
|
1566
|
+
}
|
1567
|
+
declare function StyledChartDialog({ open, content, title, actions, onClose }: ChartDialogProps): JSX.Element;
|
1568
|
+
|
1569
|
+
interface Option {
|
1570
|
+
id: string;
|
1571
|
+
name: string;
|
1572
|
+
}
|
1573
|
+
interface InputSearchFieldProps {
|
1574
|
+
data: Option[];
|
1575
|
+
setFilterData: (data: Option[]) => void;
|
1576
|
+
label?: string;
|
1577
|
+
fetchSuggestions: (value: string) => void;
|
1578
|
+
isLoading: boolean;
|
1579
|
+
type: string;
|
1580
|
+
disabled?: boolean;
|
1581
|
+
selectedData: Option[];
|
1582
|
+
searchValue: string;
|
1583
|
+
setSearchValue: (value: string) => void;
|
1584
|
+
iconComponent?: React__default.ReactElement;
|
1585
|
+
}
|
1586
|
+
declare const InputSearchField: React__default.FC<InputSearchFieldProps>;
|
1587
|
+
|
1588
|
+
interface ChapterProps {
|
1589
|
+
frontmatter: {
|
1590
|
+
courseTitle: string;
|
1591
|
+
chapterTitle?: string;
|
1592
|
+
description: string;
|
1593
|
+
};
|
1594
|
+
}
|
1595
|
+
interface ContentCardProps {
|
1596
|
+
chapterNum: number;
|
1597
|
+
chapter: ChapterProps;
|
1598
|
+
}
|
1599
|
+
declare const LearningContent: React__default.FC<ContentCardProps>;
|
1600
|
+
|
1601
|
+
type NavigationItem = {
|
1602
|
+
id: string;
|
1603
|
+
title: string;
|
1604
|
+
icon: React__default.ReactNode;
|
1605
|
+
permission?: boolean;
|
1606
|
+
onClick: () => void;
|
1607
|
+
subItems?: NavigationItem[];
|
1608
|
+
addDivider?: boolean;
|
1609
|
+
};
|
1610
|
+
interface NavigationNavbarProps {
|
1611
|
+
navigationItems: NavigationItem[];
|
1612
|
+
MenuListProps?: Omit<MenuListProps, 'children'>;
|
1613
|
+
ListItemTextProps?: Omit<ListItemTextProps, 'primary'>;
|
1614
|
+
}
|
1615
|
+
declare const NavigationNavbar: React__default.FC<NavigationNavbarProps>;
|
1616
|
+
|
1617
|
+
interface AlertProps {
|
1618
|
+
type?: 'success' | 'warning' | 'note';
|
1619
|
+
title?: string;
|
1620
|
+
content: string;
|
1621
|
+
}
|
1622
|
+
declare const Note: FC<AlertProps>;
|
1623
|
+
|
1624
|
+
type PanelProps = {
|
1625
|
+
isOpen: boolean;
|
1626
|
+
children: React__default.ReactNode;
|
1627
|
+
areAllExpanded?: boolean;
|
1628
|
+
toggleExpandAll?: () => void;
|
1629
|
+
handleClose: () => void;
|
1630
|
+
sx?: BoxProps['sx'];
|
1631
|
+
id?: string;
|
1632
|
+
intitialPosition?: {
|
1633
|
+
left?: string | number;
|
1634
|
+
right?: string | number;
|
1635
|
+
top?: string | number;
|
1636
|
+
bottom?: string | number;
|
1637
|
+
};
|
1638
|
+
defaultSize?: {
|
1639
|
+
width?: string | number;
|
1640
|
+
height?: string | number;
|
1641
|
+
};
|
1642
|
+
minimizePanel?: () => void;
|
1643
|
+
title?: string;
|
1644
|
+
};
|
1645
|
+
declare const Panel: React__default.FC<PanelProps>;
|
1646
|
+
|
1647
|
+
interface PerformersSectionProps {
|
1648
|
+
useGetCatalogFilters: (params: any) => any;
|
1649
|
+
onCardClick: (pattern: Pattern) => void;
|
1650
|
+
onIconClick: (sortOrder: string) => void;
|
1651
|
+
onAuthorClick: (userId: string) => void;
|
1652
|
+
onStatusClick: (status: string) => void;
|
1653
|
+
}
|
1654
|
+
declare const _default: React$1.NamedExoticComponent<PerformersSectionProps>;
|
1655
|
+
|
1656
|
+
interface PerformersSectionButtonProps {
|
1657
|
+
open: boolean;
|
1658
|
+
handleClick: () => void;
|
1659
|
+
}
|
1660
|
+
declare const PerformersSectionButton: React__default.FC<PerformersSectionButtonProps>;
|
1661
|
+
|
1662
|
+
interface SetupItem {
|
1663
|
+
heading: string;
|
1664
|
+
description: string;
|
1665
|
+
Icon: JSX.Element | string;
|
1666
|
+
url: string;
|
1667
|
+
}
|
1668
|
+
interface SetupPreReqProps {
|
1669
|
+
Steps: SetupItem[];
|
1670
|
+
PrerequisiteLine?: string;
|
1671
|
+
}
|
1672
|
+
declare const SetupPreReq: React__default.FC<SetupPreReqProps>;
|
1673
|
+
|
1674
|
+
declare const StyledChapter: _emotion_styled.StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
1675
|
+
|
1676
|
+
interface SearchBarProps {
|
1677
|
+
onChange?: (event: React__default.ChangeEvent<HTMLInputElement>) => void;
|
1678
|
+
value?: string;
|
1679
|
+
width?: string;
|
1680
|
+
label?: string;
|
1681
|
+
placeholder?: string;
|
1682
|
+
sx?: SxProps<Theme$1>;
|
1683
|
+
endAdornment?: React__default.ReactNode;
|
1684
|
+
debounceTime?: number;
|
1685
|
+
}
|
1686
|
+
/**
|
1687
|
+
* StyledSearchBar component renders a search input field with customizable properties.
|
1688
|
+
*
|
1689
|
+
* @param {Object} props - The component props.
|
1690
|
+
* @param {function} [props.onChange] - Function to handle the change event when the search input value changes.
|
1691
|
+
* @param {string} [props.value] - The current value of the search input.
|
1692
|
+
* @param {string} [props.label] - The label for the search input.
|
1693
|
+
* @param {string} [props.placeholder] - The placeholder text for the search input.
|
1694
|
+
* @param {Object} [props.sx] - The style object for the search input.
|
1695
|
+
* @param {React.ReactNode} [props.endAdornment] - The element to display at the end of the search input.
|
1696
|
+
* @param {number} [props.debounceTime] - The debounce time for the input change handler.
|
1697
|
+
*
|
1698
|
+
* @returns {JSX.Element} The rendered StyledSearchBar component.
|
1699
|
+
*/
|
1700
|
+
declare function StyledSearchBar({ onChange, value, label, sx, placeholder, endAdornment, debounceTime }: SearchBarProps): JSX.Element;
|
1701
|
+
|
1702
|
+
interface TOCProps$1 {
|
1703
|
+
availableChapters: string[];
|
1704
|
+
currentChapter: string | undefined | null;
|
1705
|
+
onClick: (item: string, e: React__default.MouseEvent<HTMLLIElement, MouseEvent>) => void;
|
1706
|
+
}
|
1707
|
+
declare const TOC: React__default.FC<TOCProps$1>;
|
1708
|
+
|
1709
|
+
interface CourseData {
|
1710
|
+
frontmatter: {
|
1711
|
+
courseTitle: string;
|
1712
|
+
};
|
1713
|
+
}
|
1714
|
+
interface TOCProps {
|
1715
|
+
coursesData: CourseData[];
|
1716
|
+
}
|
1717
|
+
declare const TOCLearning: React__default.FC<TOCProps>;
|
1718
|
+
|
1719
|
+
interface Line {
|
1720
|
+
short?: boolean;
|
1721
|
+
color?: string;
|
1722
|
+
indent?: number;
|
1723
|
+
code: string;
|
1724
|
+
}
|
1725
|
+
interface Props {
|
1726
|
+
lines: Line[];
|
1727
|
+
title?: string;
|
1728
|
+
noScroll?: boolean;
|
1729
|
+
}
|
1730
|
+
declare const Terminal: FC<Props>;
|
1731
|
+
|
1732
|
+
interface User$2 {
|
1733
|
+
id: string;
|
1734
|
+
user_id: string;
|
1735
|
+
first_name: string;
|
1736
|
+
last_name: string;
|
1737
|
+
email: string;
|
1738
|
+
avatar_url?: string;
|
1739
|
+
deleted_at?: {
|
1740
|
+
Valid: boolean;
|
1741
|
+
};
|
1742
|
+
}
|
1743
|
+
interface UserSearchFieldProps$1 {
|
1744
|
+
usersData: User$2[];
|
1745
|
+
setUsersData: React__default.Dispatch<React__default.SetStateAction<User$2[]>>;
|
1746
|
+
label?: string;
|
1747
|
+
setDisableSave?: (disabled: boolean) => void;
|
1748
|
+
searchType?: string;
|
1749
|
+
disabled?: boolean;
|
1750
|
+
customUsersList?: JSX.Element;
|
1751
|
+
/**
|
1752
|
+
* Function to fetch user suggestions based on the input value.
|
1753
|
+
* @param {string} value - The input value for which suggestions are to be fetched.
|
1754
|
+
* @returns {Promise<User[]>} A promise that resolves to an array of user suggestions.
|
1755
|
+
*/
|
1756
|
+
fetchSuggestions: (value: string) => Promise<User$2[]>;
|
1757
|
+
}
|
1758
|
+
declare const UserShareSearch: React__default.FC<UserSearchFieldProps$1>;
|
1759
|
+
|
1760
|
+
interface User$1 {
|
1761
|
+
id: string;
|
1762
|
+
first_name: string;
|
1763
|
+
last_name: string;
|
1764
|
+
email: string;
|
1765
|
+
avatar_url?: string;
|
1766
|
+
deleted_at?: {
|
1767
|
+
Valid: boolean;
|
1768
|
+
};
|
1769
|
+
deleted?: boolean;
|
1770
|
+
}
|
1771
|
+
interface UserSearchFieldProps {
|
1772
|
+
usersData: User$1[];
|
1773
|
+
setUsersData: React__default.Dispatch<React__default.SetStateAction<User$1[]>>;
|
1774
|
+
label?: string;
|
1775
|
+
setDisableSave?: (disable: boolean) => void;
|
1776
|
+
handleNotifyPref?: () => void;
|
1777
|
+
notifyUpdate?: boolean;
|
1778
|
+
isCreate?: boolean;
|
1779
|
+
searchType?: string;
|
1780
|
+
disabled?: boolean;
|
1781
|
+
currentUserData: User$1 | null;
|
1782
|
+
searchedUsers: User$1[];
|
1783
|
+
isUserSearchLoading: boolean;
|
1784
|
+
fetchSearchedUsers: (value: string) => void;
|
1785
|
+
usersSearch: string;
|
1786
|
+
setUsersSearch: React__default.Dispatch<React__default.SetStateAction<string>>;
|
1787
|
+
}
|
1788
|
+
declare const UserSearchField: React__default.FC<UserSearchFieldProps>;
|
1789
|
+
|
1790
|
+
interface ModalProps extends DialogProps {
|
1791
|
+
closeModal: () => void;
|
1792
|
+
title: string;
|
1793
|
+
headerIcon?: React__default.ReactNode;
|
1794
|
+
reactNode?: React__default.ReactNode;
|
1795
|
+
}
|
1796
|
+
interface ModalFooterProps {
|
1797
|
+
children: React__default.ReactNode;
|
1798
|
+
variant?: 'filled' | 'transparent';
|
1799
|
+
helpText?: string;
|
1800
|
+
hasHelpText?: boolean;
|
1801
|
+
}
|
1802
|
+
type openModalCallback = (props: {
|
1803
|
+
title: string;
|
1804
|
+
reactNode?: React__default.ReactNode;
|
1805
|
+
onClose?: () => void;
|
1806
|
+
}) => void;
|
1807
|
+
interface UseModalReturnI extends ModalProps {
|
1808
|
+
openModal: openModalCallback;
|
1809
|
+
isOpen: boolean;
|
1810
|
+
}
|
1811
|
+
declare const CloseBtn: _emotion_styled.StyledComponent<Omit<IconButtonProps, "ref"> & React__default.RefAttributes<HTMLButtonElement> & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
|
1812
|
+
declare const ModalStyledHeader: _emotion_styled.StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
1813
|
+
declare const useModal: ({ headerIcon }: {
|
1814
|
+
headerIcon: React__default.ReactNode;
|
1815
|
+
}) => UseModalReturnI;
|
1816
|
+
declare const ModalBody: _emotion_styled.StyledComponent<Omit<_mui_material.PaperProps, "ref"> & React__default.RefAttributes<HTMLDivElement> & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
|
1817
|
+
declare const Modal: React__default.FC<ModalProps>;
|
1818
|
+
declare const ModalFooter: React__default.FC<ModalFooterProps>;
|
1819
|
+
interface ModalButtonPrimaryProps extends ButtonProps$1 {
|
1820
|
+
isOpen?: boolean;
|
1821
|
+
}
|
1822
|
+
declare const ModalButtonPrimary: _emotion_styled.StyledComponent<ButtonProps & _mui_system.MUIStyledCommonProps<_mui_material.Theme> & ModalButtonPrimaryProps, {}, {}>;
|
1823
|
+
declare const ModalButtonSecondary: _emotion_styled.StyledComponent<ButtonProps & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
|
1824
|
+
declare const ModalButtonTertiary: _emotion_styled.StyledComponent<ButtonProps & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
|
1825
|
+
declare const ModalButtonDanger: _emotion_styled.StyledComponent<ButtonProps & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
|
1826
|
+
interface PrimaryActionButtonsProps {
|
1827
|
+
primaryText: string;
|
1828
|
+
secondaryText: string;
|
1829
|
+
primaryButtonProps?: React__default.ComponentProps<typeof ModalButtonPrimary>;
|
1830
|
+
secondaryButtonProps?: React__default.ComponentProps<typeof ModalButtonSecondary>;
|
1831
|
+
}
|
1832
|
+
declare const PrimaryActionButtons: React__default.FC<PrimaryActionButtonsProps>;
|
1833
|
+
|
1834
|
+
declare const StyledMarkdown: _emotion_styled.StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, {}>;
|
1835
|
+
|
1836
|
+
type IconProps$1 = {
|
1837
|
+
children?: never;
|
1838
|
+
color?: string;
|
1839
|
+
title?: string;
|
1840
|
+
width?: number | string;
|
1841
|
+
height?: number | string;
|
1842
|
+
fill?: string;
|
1843
|
+
} & React__default.SVGProps<SVGSVGElement>;
|
1844
|
+
type CustomIconProps = {
|
1845
|
+
primaryFill?: string;
|
1846
|
+
secondaryFill?: string;
|
1847
|
+
} & IconProps$1;
|
1848
|
+
|
1849
|
+
interface StepI {
|
1850
|
+
label: string;
|
1851
|
+
component: React__default.ComponentType;
|
1852
|
+
icon: React__default.ComponentType<IconProps$1>;
|
1853
|
+
}
|
1854
|
+
interface UseStepperOptionsI {
|
1855
|
+
steps: StepI[];
|
1856
|
+
}
|
1857
|
+
interface CustomizedStepperPropsI {
|
1858
|
+
activeStep: number;
|
1859
|
+
stepLabels: string[];
|
1860
|
+
children: React__default.ReactNode;
|
1861
|
+
icons: React__default.ComponentType<IconProps$1>[];
|
1862
|
+
ContentWrapper?: React__default.ComponentType<{
|
1863
|
+
children: React__default.ReactNode;
|
1864
|
+
}>;
|
1865
|
+
}
|
1866
|
+
interface UseStepperI {
|
1867
|
+
steps: StepI[];
|
1868
|
+
activeStep: number;
|
1869
|
+
setActiveStep: React__default.Dispatch<React__default.SetStateAction<number>>;
|
1870
|
+
handleNext: () => void;
|
1871
|
+
goBack: () => void;
|
1872
|
+
goToStep: (step: number) => void;
|
1873
|
+
canGoBack: boolean;
|
1874
|
+
canGoForward: boolean;
|
1875
|
+
stepLabels: string[];
|
1876
|
+
icons: React__default.ComponentType<IconProps$1>[];
|
1877
|
+
activeStepComponent: React__default.ComponentType;
|
1878
|
+
}
|
1879
|
+
declare const CustomizedStepper: React__default.FC<CustomizedStepperPropsI>;
|
1880
|
+
declare const useStepper: ({ steps }: UseStepperOptionsI) => UseStepperI;
|
1881
|
+
|
1882
|
+
interface AuthorCellProps {
|
1883
|
+
firstName: string;
|
1884
|
+
lastName: string;
|
1885
|
+
avatarUrl: string;
|
1886
|
+
userId: string;
|
1887
|
+
maxWidth?: boolean;
|
1888
|
+
}
|
1889
|
+
declare const AuthorCell: React__default.FC<AuthorCellProps>;
|
1890
|
+
|
1891
|
+
interface CatalogDesignsTableProps {
|
1892
|
+
patterns: Pattern[];
|
1893
|
+
filter: any;
|
1894
|
+
columns: MUIDataTableColumn[];
|
1895
|
+
totalCount: number;
|
1896
|
+
sortOrder: string;
|
1897
|
+
setSortOrder: (order: string) => void;
|
1898
|
+
pageSize: number;
|
1899
|
+
setPageSize: (size: number) => void;
|
1900
|
+
page: number;
|
1901
|
+
setPage: (page: number) => void;
|
1902
|
+
columnVisibility: Record<string, boolean>;
|
1903
|
+
colViews: ColView[];
|
1904
|
+
rowsPerPageOptions?: number[];
|
1905
|
+
handleBulkDeleteModal: (patterns: Pattern[], modalRef: React.RefObject<PromptRef>) => void;
|
1906
|
+
setSearch?: (search: string) => void;
|
1907
|
+
tableBackgroundColor?: string;
|
1908
|
+
handleBulkpatternsDataUnpublishModal: (selected: any, patterns: Pattern[], modalRef: React.RefObject<PromptRef>) => void;
|
1909
|
+
}
|
1910
|
+
declare const CatalogDesignsTable: React.FC<CatalogDesignsTableProps>;
|
1911
|
+
|
1912
|
+
declare const colViews$1: ColView[];
|
1913
|
+
interface ColumnConfigProps$1 {
|
1914
|
+
handleShowDetails: (design: Pattern) => void;
|
1915
|
+
handleClone: (designId: string, name: string) => void;
|
1916
|
+
handleCopyUrl: (designId: string, name: string) => void;
|
1917
|
+
handleOpenPlayground: (designId: string, name: string) => void;
|
1918
|
+
handleUnpublish?: (design: Pattern) => void;
|
1919
|
+
maxWidth?: boolean;
|
1920
|
+
getCatalogUrl: (type: string, name: string) => string;
|
1921
|
+
theme?: any;
|
1922
|
+
showUnpublish?: boolean;
|
1923
|
+
showOpenPlayground?: boolean;
|
1924
|
+
currentUserId?: string;
|
1925
|
+
isCloneDisabled?: boolean;
|
1926
|
+
isUnpublishDisabled?: boolean;
|
1927
|
+
getDownloadUrl: (id: string) => string;
|
1928
|
+
}
|
1929
|
+
declare const createDesignColumns: ({ handleShowDetails, handleClone, handleCopyUrl, handleOpenPlayground, handleUnpublish, maxWidth, getCatalogUrl, getDownloadUrl, theme, showUnpublish, currentUserId, isCloneDisabled, isUnpublishDisabled, showOpenPlayground }: ColumnConfigProps$1) => MUIDataTableColumn[];
|
1930
|
+
|
1931
|
+
interface ColumnConfigProps {
|
1932
|
+
handleDeleteModal: (data: Pattern) => () => void;
|
1933
|
+
handlePublishModal: (data: Pattern) => void;
|
1934
|
+
handleUnpublishModal: (data: Pattern) => () => void;
|
1935
|
+
handleCopyUrl: (type: string, name: string, id: string) => void;
|
1936
|
+
handleClone: (name: string, id: string) => void;
|
1937
|
+
handleShowDetails: (designId: string, designName: string) => void;
|
1938
|
+
handleDownload?: (design: Pattern) => void;
|
1939
|
+
getDownloadUrl?: (id: string) => string;
|
1940
|
+
isDownloadAllowed: boolean;
|
1941
|
+
isCopyLinkAllowed: boolean;
|
1942
|
+
isDeleteAllowed: boolean;
|
1943
|
+
isPublishAllowed: boolean;
|
1944
|
+
isUnpublishAllowed: boolean;
|
1945
|
+
isFromWorkspaceTable?: boolean;
|
1946
|
+
isRemoveAllowed?: boolean;
|
1947
|
+
theme?: Theme$1;
|
1948
|
+
}
|
1949
|
+
declare const colViews: ColView[];
|
1950
|
+
declare const createDesignsColumnsConfig: ({ handleDeleteModal, handlePublishModal, handleUnpublishModal, handleCopyUrl, handleClone, handleShowDetails, getDownloadUrl, handleDownload, isUnpublishAllowed, isCopyLinkAllowed, isDeleteAllowed, isPublishAllowed, isDownloadAllowed, isRemoveAllowed, theme, isFromWorkspaceTable }: ColumnConfigProps) => MUIDataTableColumn[];
|
1951
|
+
|
1952
|
+
type TypeView$1 = 'grid' | 'table';
|
1953
|
+
interface TableVisibilityControlProps {
|
1954
|
+
viewType: TypeView$1;
|
1955
|
+
setViewType: (view: TypeView$1) => void;
|
1956
|
+
filteredColumns: CustomColumn[];
|
1957
|
+
columnVisibility: Record<string, boolean>;
|
1958
|
+
setColumnVisibility: Dispatch<SetStateAction<Record<string, boolean>>>;
|
1959
|
+
viewSwitchDisabled?: boolean;
|
1960
|
+
}
|
1961
|
+
declare const TableVisibilityControl: React__default.FC<TableVisibilityControlProps>;
|
1962
|
+
|
1963
|
+
/**
|
1964
|
+
* Renders a switch component for toggling between grid and table view.
|
1965
|
+
*
|
1966
|
+
* @typedef {("grid" | "table")} TypeView
|
1967
|
+
* @typedef {object} Props
|
1968
|
+
* @prop {TypeView} props.view - The current view type ("grid" or "table").
|
1969
|
+
* @prop {Function} props.changeView - The function to change the view type.
|
1970
|
+
*/
|
1971
|
+
type TypeView = 'grid' | 'table';
|
1972
|
+
interface ViewSwitchProps {
|
1973
|
+
view: TypeView;
|
1974
|
+
changeView: (view: TypeView) => void;
|
1975
|
+
height?: string;
|
1976
|
+
style?: React.CSSProperties;
|
1977
|
+
disabled?: boolean;
|
1978
|
+
}
|
1979
|
+
declare const ViewSwitch: React.FC<ViewSwitchProps>;
|
1980
|
+
|
1981
|
+
interface ActionButtonsProps {
|
1982
|
+
actionItems: boolean;
|
1983
|
+
details: Pattern;
|
1984
|
+
type: string;
|
1985
|
+
isCloneLoading: boolean;
|
1986
|
+
getDownloadUrl: (id: string) => string;
|
1987
|
+
handleClone: (name: string, id: string) => void;
|
1988
|
+
handleUnpublish: () => void;
|
1989
|
+
isCloneDisabled: boolean;
|
1990
|
+
showUnpublishAction: boolean;
|
1991
|
+
showOpenPlaygroundAction: boolean;
|
1992
|
+
onOpenPlaygroundClick: (designId: string, name: string) => void;
|
1993
|
+
showInfoAction?: boolean;
|
1994
|
+
handleInfoClick?: () => void;
|
1995
|
+
showDeleteAction?: boolean;
|
1996
|
+
handleDelete: () => void;
|
1997
|
+
}
|
1998
|
+
declare const ActionButtons: React__default.FC<ActionButtonsProps>;
|
1999
|
+
|
2000
|
+
interface CaveatsSectionProps {
|
2001
|
+
details: Pattern;
|
2002
|
+
}
|
2003
|
+
declare const CaveatsSection: React__default.FC<CaveatsSectionProps>;
|
2004
|
+
|
2005
|
+
interface FilteredAcademyData {
|
2006
|
+
'learning-path'?: string[];
|
2007
|
+
challenge?: string[];
|
2008
|
+
challenges?: string[];
|
2009
|
+
}
|
2010
|
+
interface Class {
|
2011
|
+
class: string;
|
2012
|
+
description: string;
|
2013
|
+
}
|
2014
|
+
type UserProfile = {
|
2015
|
+
first_name: string;
|
2016
|
+
last_name: string;
|
2017
|
+
avatar_url: string;
|
2018
|
+
};
|
2019
|
+
|
2020
|
+
interface ChallengesSectionProps {
|
2021
|
+
filteredAcademyData: FilteredAcademyData;
|
2022
|
+
}
|
2023
|
+
declare const ChallengesSection: React.FC<ChallengesSectionProps>;
|
2024
|
+
|
2025
|
+
interface CollapsibleSectionProps$1 {
|
2026
|
+
title: string;
|
2027
|
+
isOpen: boolean;
|
2028
|
+
onToggle: () => void;
|
2029
|
+
items: any[];
|
2030
|
+
renderItem: (item: any, index: number) => React.ReactNode;
|
2031
|
+
emptyState: string;
|
2032
|
+
tooltip: string;
|
2033
|
+
}
|
2034
|
+
declare const CollapsibleSection: React.FC<CollapsibleSectionProps$1>;
|
2035
|
+
|
2036
|
+
interface LearningSectionProps {
|
2037
|
+
filteredAcademyData: FilteredAcademyData;
|
2038
|
+
}
|
2039
|
+
declare const LearningSection: React__default.FC<LearningSectionProps>;
|
2040
|
+
|
2041
|
+
interface LeftPanelProps {
|
2042
|
+
details: Pattern;
|
2043
|
+
type: string;
|
2044
|
+
actionItems?: boolean;
|
2045
|
+
isCloneLoading: boolean;
|
2046
|
+
handleClone: (name: string, id: string) => void;
|
2047
|
+
showTechnologies?: boolean;
|
2048
|
+
filteredAcademyData: FilteredAcademyData;
|
2049
|
+
isCloneDisabled: boolean;
|
2050
|
+
technologySVGPath: string;
|
2051
|
+
technologySVGSubpath: string;
|
2052
|
+
fontFamily?: string;
|
2053
|
+
handleUnpublish: () => void;
|
2054
|
+
showUnpublishAction?: boolean;
|
2055
|
+
showOpenPlaygroundAction?: boolean;
|
2056
|
+
onOpenPlaygroundClick: (designId: string, name: string) => void;
|
2057
|
+
showInfoAction?: boolean;
|
2058
|
+
handleInfoClick?: () => void;
|
2059
|
+
showDeleteAction?: boolean;
|
2060
|
+
handleDelete: () => void;
|
2061
|
+
getDownloadUrl: (id: string) => string;
|
2062
|
+
}
|
2063
|
+
declare const LeftPanel: React.FC<LeftPanelProps>;
|
2064
|
+
|
2065
|
+
interface MetricsDisplayProps {
|
2066
|
+
details: Pattern;
|
2067
|
+
}
|
2068
|
+
declare const MetricsDisplay: React__default.FC<MetricsDisplayProps>;
|
2069
|
+
|
2070
|
+
interface OverviewSectionProps {
|
2071
|
+
details: Pattern;
|
2072
|
+
type: string;
|
2073
|
+
cardId: string;
|
2074
|
+
title: string;
|
2075
|
+
getUrl: (type: string, id: string) => string;
|
2076
|
+
showContentDetails: boolean;
|
2077
|
+
ViewsComponent?: React__default.ReactNode;
|
2078
|
+
showVersion: boolean;
|
2079
|
+
classes: Class[];
|
2080
|
+
handleCopyUrl: (type: string, name: string, id: string) => void;
|
2081
|
+
fontFamily?: string;
|
2082
|
+
userProfile?: any;
|
2083
|
+
showShareAction: boolean;
|
2084
|
+
handleShare: () => void;
|
2085
|
+
isVisibilityEnabled: boolean;
|
2086
|
+
handleVisibilityChange: (visibility: VIEW_VISIBILITY) => void;
|
2087
|
+
}
|
2088
|
+
declare const OverviewSection: React__default.FC<OverviewSectionProps>;
|
2089
|
+
|
2090
|
+
interface PatternInfoProps {
|
2091
|
+
text: string;
|
2092
|
+
redirect?: boolean;
|
2093
|
+
id?: string;
|
2094
|
+
}
|
2095
|
+
declare const PatternInfo: React__default.FC<PatternInfoProps>;
|
2096
|
+
|
2097
|
+
interface PatternsPerUser {
|
2098
|
+
patterns: Pattern[];
|
2099
|
+
}
|
2100
|
+
interface RelatedDesignsProps {
|
2101
|
+
details: Pattern;
|
2102
|
+
type: string;
|
2103
|
+
patternsPerUser: PatternsPerUser;
|
2104
|
+
onSuggestedPatternClick: (pattern: Pattern) => void;
|
2105
|
+
userProfile?: UserProfile;
|
2106
|
+
technologySVGPath: string;
|
2107
|
+
technologySVGSubpath: string;
|
2108
|
+
orgName: string;
|
2109
|
+
fetchingOrgError: boolean;
|
2110
|
+
}
|
2111
|
+
declare const RelatedDesigns: React.FC<RelatedDesignsProps>;
|
2112
|
+
|
2113
|
+
interface RightPanelProps {
|
2114
|
+
details: Pattern;
|
2115
|
+
type: string;
|
2116
|
+
cardId?: string;
|
2117
|
+
title: string;
|
2118
|
+
getUrl: (type: string, id: string) => string;
|
2119
|
+
showContentDetails: boolean;
|
2120
|
+
ViewsComponent?: React__default.ReactNode;
|
2121
|
+
showVersion: boolean;
|
2122
|
+
showCaveats: boolean;
|
2123
|
+
classes: Class[];
|
2124
|
+
patternsPerUser: PatternsPerUser;
|
2125
|
+
handleCopyUrl: (type: string, name: string, id: string) => void;
|
2126
|
+
onSuggestedPatternClick: (pattern: Pattern) => void;
|
2127
|
+
useGetUserProfileByIdQuery: any;
|
2128
|
+
fontFamily?: string;
|
2129
|
+
technologySVGPath: string;
|
2130
|
+
technologySVGSubpath: string;
|
2131
|
+
orgName: string;
|
2132
|
+
fetchingOrgError: boolean;
|
2133
|
+
showShareAction: boolean;
|
2134
|
+
handleShare: () => void;
|
2135
|
+
isVisibilityEnabled: boolean;
|
2136
|
+
handleVisibilityChange: (visibility: VIEW_VISIBILITY) => void;
|
2137
|
+
}
|
2138
|
+
declare const RightPanel: React__default.FC<RightPanelProps>;
|
2139
|
+
|
2140
|
+
interface SocialSharePopperProps {
|
2141
|
+
details: Pattern;
|
2142
|
+
type: string;
|
2143
|
+
cardId: string;
|
2144
|
+
title: string;
|
2145
|
+
getUrl: (type: string, id: string) => string;
|
2146
|
+
handleCopyUrl: (type: string, name: string, id: string) => void;
|
2147
|
+
showShareAction: boolean;
|
2148
|
+
handleShare: () => void;
|
2149
|
+
}
|
2150
|
+
declare const SocialSharePopper: React__default.FC<SocialSharePopperProps>;
|
2151
|
+
|
2152
|
+
interface TechnologySectionProps {
|
2153
|
+
technologies: string[];
|
2154
|
+
technologySVGPath: string;
|
2155
|
+
technologySVGSubpath: string;
|
2156
|
+
}
|
2157
|
+
declare const TechnologySection: React__default.FC<TechnologySectionProps>;
|
2158
|
+
|
2159
|
+
interface UserInfoProps {
|
2160
|
+
details: Pattern;
|
2161
|
+
showVersion?: boolean;
|
2162
|
+
userProfile?: UserProfile;
|
2163
|
+
isVisibilityEnabled: boolean;
|
2164
|
+
handleVisibilityChange: (visibility: VIEW_VISIBILITY) => void;
|
2165
|
+
}
|
2166
|
+
declare const UserInfo: React.FC<UserInfoProps>;
|
2167
|
+
|
2168
|
+
interface ActionButtonCardProps {
|
2169
|
+
title: string;
|
2170
|
+
description: ReactNode;
|
2171
|
+
icon: ReactNode;
|
2172
|
+
customComponent?: ReactNode;
|
2173
|
+
href?: string;
|
2174
|
+
target?: string;
|
2175
|
+
onClick?: () => void;
|
2176
|
+
btnTitle: string;
|
2177
|
+
disabled?: boolean;
|
2178
|
+
showProgress?: boolean;
|
2179
|
+
actionButton?: boolean;
|
2180
|
+
maxDescriptionWidth?: string;
|
2181
|
+
completedSteps?: string[];
|
2182
|
+
totalSteps: number;
|
2183
|
+
playgroundCardBackgroundImgSrc?: string;
|
2184
|
+
}
|
2185
|
+
declare const ActionButtonCard: ({ title, description, icon, customComponent, href, onClick, btnTitle, disabled, showProgress, actionButton, maxDescriptionWidth, completedSteps, totalSteps, playgroundCardBackgroundImgSrc }: ActionButtonCardProps) => react_jsx_runtime.JSX.Element;
|
2186
|
+
|
2187
|
+
interface JourneyStep {
|
2188
|
+
title: string;
|
2189
|
+
content: React.ReactNode;
|
2190
|
+
image?: string;
|
2191
|
+
videoSrc?: string;
|
2192
|
+
video?: boolean;
|
2193
|
+
embed?: boolean;
|
2194
|
+
previousButton?: boolean;
|
2195
|
+
isFullScreenModeAllowed?: boolean;
|
2196
|
+
actionName?: string;
|
2197
|
+
secondaryActionName?: string;
|
2198
|
+
primaryAction?: () => void;
|
2199
|
+
secondaryAction?: () => void;
|
2200
|
+
roles?: string[];
|
2201
|
+
}
|
2202
|
+
interface StepData {
|
2203
|
+
id: number;
|
2204
|
+
title: string;
|
2205
|
+
subTitle: string;
|
2206
|
+
isDisabled?: boolean;
|
2207
|
+
journey: JourneyStep[];
|
2208
|
+
}
|
2209
|
+
interface ProfileData {
|
2210
|
+
role_names?: string[];
|
2211
|
+
preferences?: {
|
2212
|
+
remoteProviderPreferences?: {
|
2213
|
+
isKanvasAccessRequest?: boolean;
|
2214
|
+
getstarted?: number[];
|
2215
|
+
};
|
2216
|
+
};
|
2217
|
+
}
|
2218
|
+
interface GetStartedModalProps {
|
2219
|
+
open: boolean;
|
2220
|
+
handleClose: () => void;
|
2221
|
+
handleOpen: () => void;
|
2222
|
+
stepsData: StepData[];
|
2223
|
+
profileData: ProfileData;
|
2224
|
+
useUpdateUserPrefMutation: any;
|
2225
|
+
useGetOrgsQuery: any;
|
2226
|
+
currentOrgId: string;
|
2227
|
+
useGetUserOrgRolesQuery: any;
|
2228
|
+
useHandleUserInviteMutation: any;
|
2229
|
+
useNotificationHandlers: any;
|
2230
|
+
isAssignUserRolesAllowed: boolean;
|
2231
|
+
useLazyGetTeamsQuery: any;
|
2232
|
+
embedDesignPath: string;
|
2233
|
+
isFromMeshery: boolean;
|
2234
|
+
}
|
2235
|
+
declare const GetStartedModal: React.FC<GetStartedModalProps>;
|
2236
|
+
|
2237
|
+
interface UserInviteModalProps {
|
2238
|
+
open: boolean;
|
2239
|
+
handleInviteModalClose: () => void;
|
2240
|
+
setLoading: (loading: boolean) => void;
|
2241
|
+
setInviteModal: (open: boolean) => void;
|
2242
|
+
currentOrgId: string;
|
2243
|
+
useGetOrgsQuery: any;
|
2244
|
+
useGetUserOrgRolesQuery: any;
|
2245
|
+
useHandleUserInviteMutation: any;
|
2246
|
+
useNotificationHandlers: () => {
|
2247
|
+
handleSuccess: (message: string) => void;
|
2248
|
+
handleError: (message: string) => void;
|
2249
|
+
};
|
2250
|
+
isAssignUserRolesAllowed: boolean;
|
2251
|
+
useLazyGetTeamsQuery: any;
|
2252
|
+
}
|
2253
|
+
declare function UserInviteModal({ open, handleInviteModalClose, setLoading, setInviteModal, currentOrgId, useGetOrgsQuery, useGetUserOrgRolesQuery, useHandleUserInviteMutation, useNotificationHandlers, isAssignUserRolesAllowed, useLazyGetTeamsQuery }: UserInviteModalProps): react_jsx_runtime.JSX.Element;
|
2254
|
+
|
2255
|
+
interface JourneyModalProps {
|
2256
|
+
open: boolean;
|
2257
|
+
handleClose: () => void;
|
2258
|
+
handleOpen: () => void;
|
2259
|
+
clicked?: number;
|
2260
|
+
stepsData: StepData[];
|
2261
|
+
useNotificationHandlers: () => {
|
2262
|
+
handleInfo: (message: string) => void;
|
2263
|
+
};
|
2264
|
+
profileData?: ProfileData;
|
2265
|
+
embedDesignPath: string;
|
2266
|
+
}
|
2267
|
+
declare const JourneyModal: React.FC<JourneyModalProps>;
|
2268
|
+
|
2269
|
+
interface Team {
|
2270
|
+
id: string;
|
2271
|
+
ID: string;
|
2272
|
+
name: string;
|
2273
|
+
deleted_at: {
|
2274
|
+
Valid: boolean;
|
2275
|
+
};
|
2276
|
+
}
|
2277
|
+
interface TeamSearchFieldProps {
|
2278
|
+
teamsData: Team[];
|
2279
|
+
setTeamsData: Dispatch<SetStateAction<Team[]>>;
|
2280
|
+
label?: string;
|
2281
|
+
orgID: string;
|
2282
|
+
disabled?: boolean;
|
2283
|
+
useLazyGetTeamsQuery: any;
|
2284
|
+
useNotificationHandlers: () => {
|
2285
|
+
handleError: (message: string) => void;
|
2286
|
+
};
|
2287
|
+
}
|
2288
|
+
declare const TeamSearchField: React__default.FC<TeamSearchFieldProps>;
|
2289
|
+
|
2290
|
+
interface Resource$2 {
|
2291
|
+
name: string;
|
2292
|
+
link: string;
|
2293
|
+
icon?: string;
|
2294
|
+
external?: boolean;
|
2295
|
+
}
|
2296
|
+
interface PlainCardProps {
|
2297
|
+
title: string;
|
2298
|
+
icon: React.ReactNode;
|
2299
|
+
resources: Resource$2[];
|
2300
|
+
}
|
2301
|
+
declare const PlainCard: ({ title, icon, resources }: PlainCardProps) => JSX.Element;
|
2302
|
+
|
2303
|
+
interface Resource$1 {
|
2304
|
+
link: string;
|
2305
|
+
name: string;
|
2306
|
+
icon?: string;
|
2307
|
+
external?: boolean;
|
2308
|
+
timestamp: string;
|
2309
|
+
}
|
2310
|
+
interface CardData {
|
2311
|
+
id: string;
|
2312
|
+
title: string;
|
2313
|
+
image: React.ReactNode;
|
2314
|
+
redirect?: string;
|
2315
|
+
video?: string;
|
2316
|
+
}
|
2317
|
+
type SortOrder = 'updated_at asc' | 'updated_at desc';
|
2318
|
+
interface DesignCardProps {
|
2319
|
+
title: string;
|
2320
|
+
isPatternsFetching: boolean;
|
2321
|
+
description?: string;
|
2322
|
+
actionButton?: boolean;
|
2323
|
+
icon?: React.ReactNode;
|
2324
|
+
resources: Resource$1[];
|
2325
|
+
href?: string;
|
2326
|
+
onClick?: () => void;
|
2327
|
+
btnTitle?: string;
|
2328
|
+
sortOrder: string;
|
2329
|
+
setSortOrder: (order: SortOrder) => void;
|
2330
|
+
cardData: CardData[];
|
2331
|
+
}
|
2332
|
+
declare const DesignCard: React.FC<DesignCardProps>;
|
2333
|
+
|
2334
|
+
interface CreateDesignModalProps {
|
2335
|
+
openModal: boolean;
|
2336
|
+
handleClose: () => void;
|
2337
|
+
cardData: CardData[];
|
2338
|
+
}
|
2339
|
+
declare const CreateDesignModal: React.FC<CreateDesignModalProps>;
|
2340
|
+
|
2341
|
+
interface Activity$1 {
|
2342
|
+
created_at: string;
|
2343
|
+
description: string;
|
2344
|
+
}
|
2345
|
+
interface Workspace {
|
2346
|
+
id: string;
|
2347
|
+
name: string;
|
2348
|
+
}
|
2349
|
+
interface WorkspaceActivityCardProps {
|
2350
|
+
selectedWorkspace: string;
|
2351
|
+
handleWorkspaceChange: (event: SelectChangeEvent<unknown>) => void;
|
2352
|
+
activities: Activity$1[];
|
2353
|
+
workspaces: Workspace[];
|
2354
|
+
isEventsLoading: boolean;
|
2355
|
+
workspacePagePath: string;
|
2356
|
+
}
|
2357
|
+
declare const WorkspaceActivityCard: React.FC<WorkspaceActivityCardProps>;
|
2358
|
+
|
2359
|
+
interface CollapsibleSectionProps {
|
2360
|
+
title: string;
|
2361
|
+
children: ReactNode;
|
2362
|
+
showAll?: boolean;
|
2363
|
+
numberText?: string | number;
|
2364
|
+
level?: number;
|
2365
|
+
}
|
2366
|
+
interface NumberStateProps {
|
2367
|
+
title?: string;
|
2368
|
+
value: string | number;
|
2369
|
+
quantity: string;
|
2370
|
+
}
|
2371
|
+
interface NumberStateData {
|
2372
|
+
title: string;
|
2373
|
+
value: string | number;
|
2374
|
+
quantity: string;
|
2375
|
+
}
|
2376
|
+
interface NumberStateFormatterProps {
|
2377
|
+
data: NumberStateData[];
|
2378
|
+
}
|
2379
|
+
interface KeyValueProps {
|
2380
|
+
Key: string;
|
2381
|
+
Value: string | number | ReactNode;
|
2382
|
+
showFold?: boolean;
|
2383
|
+
}
|
2384
|
+
interface CodeFormatterProps {
|
2385
|
+
data: any;
|
2386
|
+
}
|
2387
|
+
interface ListFormatterProps {
|
2388
|
+
data: string[];
|
2389
|
+
}
|
2390
|
+
interface OperatorDynamicFormatterProps {
|
2391
|
+
data: any;
|
2392
|
+
level?: number;
|
2393
|
+
}
|
2394
|
+
interface StatusFormatterProps {
|
2395
|
+
status: string;
|
2396
|
+
rightPosition?: string;
|
2397
|
+
}
|
2398
|
+
interface LabelFormatterProps {
|
2399
|
+
data: string[];
|
2400
|
+
onClick: (labels: string[]) => void;
|
2401
|
+
selectedLabels: string[];
|
2402
|
+
}
|
2403
|
+
interface MemoryUsageProps {
|
2404
|
+
allocatable?: {
|
2405
|
+
cpu: string;
|
2406
|
+
memory: string;
|
2407
|
+
'ephemeral-storage': string;
|
2408
|
+
};
|
2409
|
+
capacity?: {
|
2410
|
+
cpu: string;
|
2411
|
+
memory: string;
|
2412
|
+
'ephemeral-storage': string;
|
2413
|
+
};
|
2414
|
+
height?: number;
|
2415
|
+
width?: number;
|
2416
|
+
}
|
2417
|
+
interface TableDataFormatterProps {
|
2418
|
+
title?: string;
|
2419
|
+
data?: any;
|
2420
|
+
showAll?: boolean;
|
2421
|
+
mainTableData?: any[][];
|
2422
|
+
mainTableCols?: any[];
|
2423
|
+
}
|
2424
|
+
interface TextWithLinkFormatterProps {
|
2425
|
+
title: string;
|
2426
|
+
value: string;
|
2427
|
+
variant: 'row' | 'column';
|
2428
|
+
onClick: () => void;
|
2429
|
+
}
|
2430
|
+
interface ContainerFormatterProps {
|
2431
|
+
containerSpec: {
|
2432
|
+
ports?: any[];
|
2433
|
+
imagePullPolicy?: string;
|
2434
|
+
image?: string;
|
2435
|
+
env?: any[];
|
2436
|
+
volumeMounts?: {
|
2437
|
+
name: string;
|
2438
|
+
mountPath: string;
|
2439
|
+
readOnly?: boolean;
|
2440
|
+
}[];
|
2441
|
+
command?: any[];
|
2442
|
+
livenessProbe?: any;
|
2443
|
+
readinessProbe?: any;
|
2444
|
+
startupProbe?: any;
|
2445
|
+
args?: any[];
|
2446
|
+
resources?: {
|
2447
|
+
requests?: any;
|
2448
|
+
limits?: any;
|
2449
|
+
};
|
2450
|
+
};
|
2451
|
+
containerStatus: {
|
2452
|
+
state: {
|
2453
|
+
[key: string]: {
|
2454
|
+
startedAt?: string;
|
2455
|
+
};
|
2456
|
+
};
|
2457
|
+
restartCount: number;
|
2458
|
+
containerID: string;
|
2459
|
+
};
|
2460
|
+
}
|
2461
|
+
interface SecretFormatterProps {
|
2462
|
+
data: string;
|
2463
|
+
}
|
2464
|
+
interface NumberState$1 {
|
2465
|
+
title: string;
|
2466
|
+
value: number | string;
|
2467
|
+
quantity: string;
|
2468
|
+
}
|
2469
|
+
interface Resource {
|
2470
|
+
status?: {
|
2471
|
+
attribute?: string;
|
2472
|
+
containerStatuses?: Array<{
|
2473
|
+
restartCount?: number;
|
2474
|
+
}>;
|
2475
|
+
nodeInfo?: {
|
2476
|
+
kubeletVersion?: string;
|
2477
|
+
};
|
2478
|
+
podIP?: string;
|
2479
|
+
hostIP?: string;
|
2480
|
+
qosClass?: string;
|
2481
|
+
replicas?: number;
|
2482
|
+
availableReplicas?: number;
|
2483
|
+
readyReplicas?: number;
|
2484
|
+
loadBalancer?: {
|
2485
|
+
ingress?: Array<{
|
2486
|
+
ip?: string;
|
2487
|
+
}>;
|
2488
|
+
};
|
2489
|
+
allocatable?: Record<string, string>;
|
2490
|
+
capacity?: Record<string, string>;
|
2491
|
+
conditions?: Array<{
|
2492
|
+
type?: string;
|
2493
|
+
}>;
|
2494
|
+
};
|
2495
|
+
spec?: {
|
2496
|
+
attribute?: string;
|
2497
|
+
containers?: Array<{
|
2498
|
+
image?: string;
|
2499
|
+
}>;
|
2500
|
+
initContainers?: Array<{
|
2501
|
+
name?: string;
|
2502
|
+
}>;
|
2503
|
+
nodeSelector?: Record<string, string>;
|
2504
|
+
template?: {
|
2505
|
+
spec?: {
|
2506
|
+
containers?: Array<{
|
2507
|
+
image?: string;
|
2508
|
+
}>;
|
2509
|
+
nodeSelector?: Record<string, string>;
|
2510
|
+
};
|
2511
|
+
};
|
2512
|
+
resources?: {
|
2513
|
+
requests?: {
|
2514
|
+
storage?: string;
|
2515
|
+
};
|
2516
|
+
};
|
2517
|
+
claimRef?: {
|
2518
|
+
name?: string;
|
2519
|
+
namespace?: string;
|
2520
|
+
};
|
2521
|
+
storageClassName?: string;
|
2522
|
+
type?: string;
|
2523
|
+
clusterIP?: string;
|
2524
|
+
updateStrategy?: {
|
2525
|
+
type?: string;
|
2526
|
+
};
|
2527
|
+
externalIPs?: string[];
|
2528
|
+
finalizers?: string[];
|
2529
|
+
accessModes?: string[];
|
2530
|
+
selector?: {
|
2531
|
+
matchLabels?: Record<string, string>;
|
2532
|
+
};
|
2533
|
+
serviceAccountName?: string;
|
2534
|
+
tolerations?: unknown;
|
2535
|
+
volumes?: unknown;
|
2536
|
+
rules?: Array<{
|
2537
|
+
host?: string;
|
2538
|
+
}>;
|
2539
|
+
};
|
2540
|
+
metadata?: {
|
2541
|
+
creationTimestamp?: string;
|
2542
|
+
namespace?: string;
|
2543
|
+
labels?: Array<{
|
2544
|
+
key?: string;
|
2545
|
+
value?: string;
|
2546
|
+
}>;
|
2547
|
+
annotations?: Array<{
|
2548
|
+
key?: string;
|
2549
|
+
value?: string;
|
2550
|
+
}>;
|
2551
|
+
};
|
2552
|
+
kind?: string;
|
2553
|
+
component?: {
|
2554
|
+
kind?: string;
|
2555
|
+
};
|
2556
|
+
apiVersion?: string;
|
2557
|
+
configuration?: {
|
2558
|
+
spec?: {
|
2559
|
+
strategy?: {
|
2560
|
+
type?: string;
|
2561
|
+
};
|
2562
|
+
};
|
2563
|
+
data?: unknown;
|
2564
|
+
};
|
2565
|
+
type?: string;
|
2566
|
+
data?: string;
|
2567
|
+
}
|
2568
|
+
interface GetResourceCleanDataProps {
|
2569
|
+
resource: Resource;
|
2570
|
+
dispatchMsgToEditor?: (msg: any) => void;
|
2571
|
+
activeLabels?: string[];
|
2572
|
+
showStatus?: boolean;
|
2573
|
+
router?: any;
|
2574
|
+
container?: any;
|
2575
|
+
}
|
2576
|
+
|
2577
|
+
declare const NumberStateFormatter: React__default.FC<NumberStateFormatterProps>;
|
2578
|
+
declare const KeyValueInRow: React__default.FC<KeyValueProps>;
|
2579
|
+
|
2580
|
+
interface OperatorDataFormatterProps {
|
2581
|
+
data: any;
|
2582
|
+
FormatStructuredData: any;
|
2583
|
+
propertyFormatter: any;
|
2584
|
+
}
|
2585
|
+
declare const OperatorDataFormatter: ({ data, FormatStructuredData, propertyFormatter }: OperatorDataFormatterProps) => react_jsx_runtime.JSX.Element | null;
|
2586
|
+
|
2587
|
+
declare const CodeFormatter: React__default.FC<CodeFormatterProps>;
|
2588
|
+
declare const ListFormatter: React__default.FC<ListFormatterProps>;
|
2589
|
+
declare const OperatorDynamicFormatter: React__default.FC<OperatorDynamicFormatterProps>;
|
2590
|
+
declare const StatusFormatter: React__default.FC<StatusFormatterProps>;
|
2591
|
+
declare const LabelFormatter: React__default.FC<LabelFormatterProps>;
|
2592
|
+
declare const MemoryUsage: React__default.FC<MemoryUsageProps>;
|
2593
|
+
declare const TableDataFormatter: React__default.FC<TableDataFormatterProps>;
|
2594
|
+
declare const TextWithLinkFormatter: React__default.FC<TextWithLinkFormatterProps>;
|
2595
|
+
declare const ContainerFormatter: React__default.FC<ContainerFormatterProps>;
|
2596
|
+
declare const SecretFormatter: React__default.FC<SecretFormatterProps>;
|
2597
|
+
declare const CollapsibleSectionFormatter: React__default.FC<CollapsibleSectionProps>;
|
2598
|
+
declare const NumberState: React__default.FC<NumberStateProps>;
|
2599
|
+
|
2600
|
+
declare const useResourceCleanData: () => {
|
2601
|
+
getResourceCleanData: ({ resource, activeLabels, dispatchMsgToEditor, router, showStatus, container }: GetResourceCleanDataProps) => {
|
2602
|
+
container: any;
|
2603
|
+
age: string | undefined;
|
2604
|
+
kind: string | undefined;
|
2605
|
+
status: string | false;
|
2606
|
+
kubeletVersion: any;
|
2607
|
+
podIP: any;
|
2608
|
+
hostIP: any;
|
2609
|
+
QoSClass: any;
|
2610
|
+
size: any;
|
2611
|
+
claim: any;
|
2612
|
+
claimNamespace: any;
|
2613
|
+
apiVersion: string | undefined;
|
2614
|
+
pods: any;
|
2615
|
+
replicas: string | false;
|
2616
|
+
strategyType: string | undefined;
|
2617
|
+
storageClass: any;
|
2618
|
+
secretType: string | undefined;
|
2619
|
+
serviceType: any;
|
2620
|
+
clusterIp: any;
|
2621
|
+
updateStrategy: any;
|
2622
|
+
externalIp: any;
|
2623
|
+
finalizers: any;
|
2624
|
+
accessModes: any;
|
2625
|
+
deeplinks: {
|
2626
|
+
links: ({
|
2627
|
+
nodeName: any;
|
2628
|
+
label: string;
|
2629
|
+
namespace?: undefined;
|
2630
|
+
serviceAccount?: undefined;
|
2631
|
+
resourceCategory?: undefined;
|
2632
|
+
} | {
|
2633
|
+
namespace: string | undefined;
|
2634
|
+
label: string;
|
2635
|
+
nodeName?: undefined;
|
2636
|
+
serviceAccount?: undefined;
|
2637
|
+
resourceCategory?: undefined;
|
2638
|
+
} | {
|
2639
|
+
serviceAccount: any;
|
2640
|
+
label: string;
|
2641
|
+
resourceCategory: string;
|
2642
|
+
nodeName?: undefined;
|
2643
|
+
namespace?: undefined;
|
2644
|
+
})[];
|
2645
|
+
router: any;
|
2646
|
+
dispatchMsgToEditor: ((msg: any) => void) | undefined;
|
2647
|
+
};
|
2648
|
+
selector: string[];
|
2649
|
+
images: any;
|
2650
|
+
numberStates: NumberState$1[];
|
2651
|
+
nodeSelector: string[];
|
2652
|
+
loadBalancer: any;
|
2653
|
+
rules: any;
|
2654
|
+
usage: {
|
2655
|
+
allocatable: any;
|
2656
|
+
capacity: any;
|
2657
|
+
};
|
2658
|
+
configData: unknown;
|
2659
|
+
capacity: any;
|
2660
|
+
totalCapacity: any;
|
2661
|
+
totalAllocatable: any;
|
2662
|
+
conditions: any;
|
2663
|
+
tolerations: any;
|
2664
|
+
podVolumes: any;
|
2665
|
+
ingressRules: any;
|
2666
|
+
connections: false | _.Omit<any, "type" | "selector">;
|
2667
|
+
labels: {
|
2668
|
+
data: string[] | undefined;
|
2669
|
+
dispatchMsgToEditor: ((msg: any) => void) | undefined;
|
2670
|
+
activeViewFilters: string[] | undefined;
|
2671
|
+
};
|
2672
|
+
annotations: string[] | undefined;
|
2673
|
+
initContainers: any;
|
2674
|
+
containers: any;
|
2675
|
+
};
|
2676
|
+
structureNumberStates: (parsedStatus: any, parsedSpec: any) => NumberState$1[];
|
2677
|
+
getAge: (creationTimestamp?: string) => string | undefined;
|
2678
|
+
getStatus: (attribute: any) => string | false;
|
2679
|
+
joinwithEqual: (object: Record<string, string> | undefined) => string[];
|
2680
|
+
};
|
2681
|
+
|
2682
|
+
interface TableData {
|
2683
|
+
name: string;
|
2684
|
+
[key: string]: string | number | undefined;
|
2685
|
+
}
|
2686
|
+
interface TableColumn {
|
2687
|
+
name: string;
|
2688
|
+
label: string;
|
2689
|
+
options: {
|
2690
|
+
sort: boolean;
|
2691
|
+
};
|
2692
|
+
}
|
2693
|
+
interface TableStructure {
|
2694
|
+
key: string;
|
2695
|
+
columns: TableColumn[];
|
2696
|
+
rows: TableData[];
|
2697
|
+
}
|
2698
|
+
declare const splitCamelCaseString: (str: string) => string;
|
2699
|
+
declare const extractPodVolumnTables: (data: TableData[] | null) => TableStructure[];
|
2700
|
+
declare const convertToReadableUnit: (value: number) => string;
|
2701
|
+
|
2702
|
+
interface User {
|
2703
|
+
id: string;
|
2704
|
+
user_id: string;
|
2705
|
+
first_name: string;
|
2706
|
+
last_name: string;
|
2707
|
+
email: string;
|
2708
|
+
avatar_url?: string;
|
2709
|
+
deleted_at?: {
|
2710
|
+
Valid: boolean;
|
2711
|
+
};
|
2712
|
+
}
|
2713
|
+
interface SelectedResource {
|
2714
|
+
visibility: string;
|
2715
|
+
name: string;
|
2716
|
+
[key: string]: unknown;
|
2717
|
+
}
|
2718
|
+
interface ShareModalProps {
|
2719
|
+
/** Function to close the share modal */
|
2720
|
+
handleShareModalClose: () => void;
|
2721
|
+
/** The resource that is selected for sharing.*/
|
2722
|
+
selectedResource: SelectedResource;
|
2723
|
+
/** The name of the data being shared, like design or filter */
|
2724
|
+
dataName: string;
|
2725
|
+
/** Data of the user who owns the resource */
|
2726
|
+
ownerData: User;
|
2727
|
+
/** Function to fetch the list of users who have access to the resource */
|
2728
|
+
fetchAccessActors: () => Promise<User[]>;
|
2729
|
+
/** Function to handle the sharing of the resource with specified users and options */
|
2730
|
+
handleShare: (shareUserData: User[], selectedOption: string | undefined) => void;
|
2731
|
+
/** Optional URL of the host application. Defaults to `null` if not provided */
|
2732
|
+
hostURL?: string | null;
|
2733
|
+
/**
|
2734
|
+
* Optional URL of the resource. Defaults to empty string if not provided
|
2735
|
+
* Resource URL will be the URL which user will copy with Copy Link Button
|
2736
|
+
*/
|
2737
|
+
resourceURL?: string;
|
2738
|
+
/** Optional flag to disable the visibility selector. Defaults to `false` if not provided */
|
2739
|
+
isVisibilitySelectorDisabled?: boolean;
|
2740
|
+
/**
|
2741
|
+
* Function to fetch user suggestions based on the input value.
|
2742
|
+
* @param {string} value - The input value for which suggestions are to be fetched.
|
2743
|
+
* @returns {Promise<User[]>} A promise that resolves to an array of user suggestions.
|
2744
|
+
*/
|
2745
|
+
fetchSuggestions: (value: string) => Promise<User[]>;
|
2746
|
+
handleCopy: () => void;
|
2747
|
+
}
|
2748
|
+
/**
|
2749
|
+
* ShareModal component allows sharing a resource with specified users
|
2750
|
+
* and configuring visibility options.
|
2751
|
+
*/
|
2752
|
+
declare const ShareModal: React__default.FC<ShareModalProps>;
|
2753
|
+
|
2754
|
+
interface AssignmentModalProps {
|
2755
|
+
open: boolean;
|
2756
|
+
onClose: (e?: React.MouseEvent) => void;
|
2757
|
+
title: string;
|
2758
|
+
headerIcon: JSX.Element;
|
2759
|
+
name: string;
|
2760
|
+
assignableData: any[];
|
2761
|
+
handleAssignedData: (data: any) => void;
|
2762
|
+
originalAssignedData: any[];
|
2763
|
+
emptyStateIcon: JSX.Element;
|
2764
|
+
handleAssignablePage: () => void;
|
2765
|
+
handleAssignedPage: () => void;
|
2766
|
+
originalLeftCount: number;
|
2767
|
+
originalRightCount: number;
|
2768
|
+
onAssign: () => void;
|
2769
|
+
disableTransfer: boolean;
|
2770
|
+
isAssignAllowed: boolean;
|
2771
|
+
isRemoveAllowed: boolean;
|
2772
|
+
helpText: string;
|
2773
|
+
showViews?: boolean;
|
2774
|
+
nameViews?: string;
|
2775
|
+
assignableViewsData?: any[];
|
2776
|
+
handleAssignedViewsData?: (data: any) => void;
|
2777
|
+
originalAssignedViewsData?: any[];
|
2778
|
+
emptyStateViewsIcon?: JSX.Element;
|
2779
|
+
handleAssignableViewsPage?: () => void;
|
2780
|
+
handleAssignedViewsPage?: () => void;
|
2781
|
+
originalLeftViewsCount?: number;
|
2782
|
+
originalRightViewsCount?: number;
|
2783
|
+
onAssignViews?: () => void;
|
2784
|
+
disableTransferViews?: boolean;
|
2785
|
+
isAssignAllowedViews?: boolean;
|
2786
|
+
isRemoveAllowedViews?: boolean;
|
2787
|
+
}
|
2788
|
+
declare const AssignmentModal: React.FC<AssignmentModalProps>;
|
2789
|
+
|
2790
|
+
interface DesignTableProps {
|
2791
|
+
workspaceId: string;
|
2792
|
+
workspaceName: string;
|
2793
|
+
designsOfWorkspace: any;
|
2794
|
+
meshModelModelsData: any;
|
2795
|
+
useGetWorkspaceDesignsQuery: any;
|
2796
|
+
useAssignDesignToWorkspaceMutation: any;
|
2797
|
+
useUnassignDesignFromWorkspaceMutation: any;
|
2798
|
+
handleCopyUrl: (type: string, name: string, id: string) => void;
|
2799
|
+
handleClone: (name: string, id: string) => void;
|
2800
|
+
handleWorkspaceDesignDeleteModal: (designId: string, workspaceId: string) => void;
|
2801
|
+
handleBulkWorkspaceDesignDeleteModal: (designs: Pattern[], modalRef: React__default.RefObject<any>, workspaceName: string, workspaceId: string) => void;
|
2802
|
+
handlePublish: (publishModal: PublishModalState, data: any) => void;
|
2803
|
+
publishModalHandler: any;
|
2804
|
+
handleUnpublishModal: (design: Pattern, modalRef: React__default.RefObject<any>) => void;
|
2805
|
+
handleDownload?: (design: Pattern) => void;
|
2806
|
+
handleBulkUnpublishModal: (selected: any, designs: Pattern[], modalRef: React__default.RefObject<any>) => void;
|
2807
|
+
handleShowDetails: (designId: string, designName: string) => void;
|
2808
|
+
getDownloadUrl?: (id: string) => string;
|
2809
|
+
GenericRJSFModal: any;
|
2810
|
+
isDownloadAllowed: boolean;
|
2811
|
+
isCopyLinkAllowed: boolean;
|
2812
|
+
isDeleteAllowed: boolean;
|
2813
|
+
isPublishAllowed: boolean;
|
2814
|
+
isUnpublishAllowed: boolean;
|
2815
|
+
isAssignAllowed: boolean;
|
2816
|
+
isRemoveAllowed: boolean;
|
2817
|
+
setDesignSearch: (value: string) => void;
|
2818
|
+
}
|
2819
|
+
interface PublishModalState {
|
2820
|
+
open: boolean;
|
2821
|
+
pattern: Partial<Pattern>;
|
2822
|
+
}
|
2823
|
+
declare const DesignTable: React__default.FC<DesignTableProps>;
|
2824
|
+
|
2825
|
+
interface EnvironmentTableProps {
|
2826
|
+
workspaceId: string;
|
2827
|
+
workspaceName: string;
|
2828
|
+
useGetEnvironmentsOfWorkspaceQuery: any;
|
2829
|
+
useUnassignEnvironmentFromWorkspaceMutation: any;
|
2830
|
+
useAssignEnvironmentToWorkspaceMutation: any;
|
2831
|
+
isRemoveAllowed: boolean;
|
2832
|
+
isAssignAllowed: boolean;
|
2833
|
+
}
|
2834
|
+
declare const EnvironmentTable: React__default.FC<EnvironmentTableProps>;
|
2835
|
+
|
2836
|
+
interface WorkspaceDetails {
|
2837
|
+
id: number;
|
2838
|
+
name: string;
|
2839
|
+
description: string;
|
2840
|
+
deleted_at: {
|
2841
|
+
Valid: boolean;
|
2842
|
+
};
|
2843
|
+
updated_at: string;
|
2844
|
+
created_at: string;
|
2845
|
+
}
|
2846
|
+
type Activity = {
|
2847
|
+
description: string;
|
2848
|
+
first_name: string;
|
2849
|
+
created_at: string;
|
2850
|
+
};
|
2851
|
+
interface WorkspaceCardProps {
|
2852
|
+
workspaceDetails: WorkspaceDetails;
|
2853
|
+
onDelete: () => void;
|
2854
|
+
onEdit: () => void;
|
2855
|
+
onSelect: () => void;
|
2856
|
+
selectedWorkspaces: number[];
|
2857
|
+
onAssignTeam: () => void;
|
2858
|
+
onAssignEnvironment: () => void;
|
2859
|
+
onAssignDesign: () => void;
|
2860
|
+
recentActivities: Activity[];
|
2861
|
+
onFlip: () => void;
|
2862
|
+
onFlipBack: () => void;
|
2863
|
+
loadingEvents: boolean;
|
2864
|
+
teamsOfWorkspaceCount: number;
|
2865
|
+
environmentsOfWorkspaceCount: number;
|
2866
|
+
designAndViewOfWorkspaceCount: number;
|
2867
|
+
isEnvironmentAllowed: boolean;
|
2868
|
+
isTeamAllowed: boolean;
|
2869
|
+
isDesignAllowed: boolean;
|
2870
|
+
isViewAllowed: boolean;
|
2871
|
+
isDeleteWorkspaceAllowed: boolean;
|
2872
|
+
isEditWorkspaceAllowed: boolean;
|
2873
|
+
isViewsVisible: boolean;
|
2874
|
+
isDesignsVisible: boolean;
|
2875
|
+
isTeamsVisible: boolean;
|
2876
|
+
isEnvironmentsVisible: boolean;
|
2877
|
+
}
|
2878
|
+
/**
|
2879
|
+
* Renders a Workspace card component.
|
2880
|
+
*
|
2881
|
+
* @param {Object} props - The component props.
|
2882
|
+
* @param {Object} props.environmentDetails - The details of the workspace.
|
2883
|
+
* @param {string} props.environmentDetails.name - The name of the workspace.
|
2884
|
+
* @param {string} props.environmentDetails.description - The description of the workspace.
|
2885
|
+
* @param {Function} props.onDelete - Function to delete the workspace.
|
2886
|
+
* @param {Function} props.onEdit - Function to edit the workspace.
|
2887
|
+
* @param {Function} props.onSelect - Function to select workspace for bulk actions.
|
2888
|
+
* @param {Array} props.selectedWorkspaces - Selected workspace list for delete.
|
2889
|
+
* @param {Function} props.onAssignTeam - Function to open team assignment modal open.
|
2890
|
+
* @param {Function} props.onAssignDesign - Function to open design assignment modal open.
|
2891
|
+
* @param {Array} props.latestActivity - List of latest activity.
|
2892
|
+
* @param {Function} props.onFlip - Click event to trigger when card flip.
|
2893
|
+
* @param {Function} props.onFlipBack - Click event to trigger when card flip back.
|
2894
|
+
* @param {Boolean} props.loadingEvents - Loading state of the events.
|
2895
|
+
* @param {Number} props.teamsOfWorkspaceCount - Count of teams assigned to the workspace.
|
2896
|
+
* @param {Number} props.environmentsOfWorkspaceCount - Count of environments assigned to the workspace.
|
2897
|
+
* @param {Number} props.designAndViewOfWorkspaceCount - Count of designs/views assigned to the workspace.
|
2898
|
+
* @param {Boolean} props.isEnvironmentAllowed - Flag to check if environment assignment is allowed.
|
2899
|
+
* @param {Boolean} props.isTeamAllowed - Flag to check if team assignment is allowed.
|
2900
|
+
* @param {Boolean} props.isDesignAndViewAllowed - Flag to check if design assignment is allowed.
|
2901
|
+
* @param {Boolean} props.isDeleteWorkspaceAllowed - Flag to check if workspace deletion is allowed.
|
2902
|
+
* @param {Boolean} props.isEditWorkspaceAllowed - Flag to check if workspace edit is allowed.
|
2903
|
+
* @returns {React.ReactElement} The Workspace card component.
|
2904
|
+
*
|
2905
|
+
*/
|
2906
|
+
declare const WorkspaceCard: ({ workspaceDetails, onDelete, onEdit, onSelect, selectedWorkspaces, onAssignTeam, onAssignEnvironment, onAssignDesign, recentActivities, onFlip, onFlipBack, loadingEvents, teamsOfWorkspaceCount, environmentsOfWorkspaceCount, designAndViewOfWorkspaceCount, isEnvironmentAllowed, isTeamAllowed, isDesignAllowed, isViewAllowed, isDeleteWorkspaceAllowed, isEditWorkspaceAllowed, isViewsVisible, isDesignsVisible, isEnvironmentsVisible, isTeamsVisible }: WorkspaceCardProps) => react_jsx_runtime.JSX.Element;
|
2907
|
+
|
2908
|
+
interface TeamsTableProps {
|
2909
|
+
workspaceId: string;
|
2910
|
+
workspaceName: string;
|
2911
|
+
useGetTeamsOfWorkspaceQuery: any;
|
2912
|
+
useUnassignTeamFromWorkspaceMutation: any;
|
2913
|
+
useAssignTeamToWorkspaceMutation: any;
|
2914
|
+
isEditTeamAllowed: boolean;
|
2915
|
+
isAssignTeamAllowed: boolean;
|
2916
|
+
isRemoveTeamFromWorkspaceAllowed: boolean;
|
2917
|
+
isDeleteTeamAllowed: boolean;
|
2918
|
+
isLeaveTeamAllowed: boolean;
|
2919
|
+
org_id: string;
|
2920
|
+
fetchTeamUsers: any;
|
2921
|
+
useGetUsersForOrgQuery: any;
|
2922
|
+
useNotificationHandlers: any;
|
2923
|
+
useRemoveUserFromTeamMutation: any;
|
2924
|
+
}
|
2925
|
+
declare const TeamsTable: React.FC<TeamsTableProps>;
|
2926
|
+
|
2927
|
+
interface ViewsTableProps {
|
2928
|
+
workspaceId: string;
|
2929
|
+
workspaceName: string;
|
2930
|
+
useGetViewsOfWorkspaceQuery: any;
|
2931
|
+
useUnassignViewFromWorkspaceMutation: any;
|
2932
|
+
useAssignViewToWorkspaceMutation: any;
|
2933
|
+
isRemoveAllowed: boolean;
|
2934
|
+
isAssignAllowed: boolean;
|
2935
|
+
handleShowDetails: (viewId: string, viewName: string, filterType: string) => void;
|
2936
|
+
}
|
2937
|
+
declare const WorkspaceViewsTable: React__default.FC<ViewsTableProps>;
|
2938
|
+
|
2939
|
+
interface useDesignAssignmentProps {
|
2940
|
+
workspaceId: string;
|
2941
|
+
useGetDesignsOfWorkspaceQuery: any;
|
2942
|
+
useAssignDesignToWorkspaceMutation: any;
|
2943
|
+
useUnassignDesignFromWorkspaceMutation: any;
|
2944
|
+
isDesignsVisible?: boolean;
|
2945
|
+
}
|
2946
|
+
declare const useDesignAssignment: ({ workspaceId, useGetDesignsOfWorkspaceQuery, useAssignDesignToWorkspaceMutation, useUnassignDesignFromWorkspaceMutation, isDesignsVisible }: useDesignAssignmentProps) => AssignmentHookResult<Pattern>;
|
2947
|
+
|
2948
|
+
interface UseEnvironmentAssignmentProps {
|
2949
|
+
workspaceId: string;
|
2950
|
+
useGetEnvironmentsOfWorkspaceQuery: any;
|
2951
|
+
useAssignEnvironmentToWorkspaceMutation: any;
|
2952
|
+
useUnassignEnvironmentFromWorkspaceMutation: any;
|
2953
|
+
isEnvironmentsVisible?: boolean;
|
2954
|
+
}
|
2955
|
+
declare const useEnvironmentAssignment: ({ workspaceId, useGetEnvironmentsOfWorkspaceQuery, useAssignEnvironmentToWorkspaceMutation, useUnassignEnvironmentFromWorkspaceMutation, isEnvironmentsVisible }: UseEnvironmentAssignmentProps) => AssignmentHookResult<Environment>;
|
2956
|
+
|
2957
|
+
interface UseTeamAssignmentProps {
|
2958
|
+
workspaceId: string;
|
2959
|
+
useGetTeamsOfWorkspaceQuery: any;
|
2960
|
+
useAssignTeamToWorkspaceMutation: any;
|
2961
|
+
useUnassignTeamFromWorkspaceMutation: any;
|
2962
|
+
isTeamsVisible?: boolean;
|
2963
|
+
}
|
2964
|
+
declare const useTeamAssignment: ({ workspaceId, useGetTeamsOfWorkspaceQuery, useAssignTeamToWorkspaceMutation, useUnassignTeamFromWorkspaceMutation, isTeamsVisible }: UseTeamAssignmentProps) => AssignmentHookResult<Team$1>;
|
2965
|
+
|
2966
|
+
interface useViewAssignmentProps {
|
2967
|
+
workspaceId: string;
|
2968
|
+
useGetViewsOfWorkspaceQuery: any;
|
2969
|
+
useAssignViewToWorkspaceMutation: any;
|
2970
|
+
useUnassignViewFromWorkspaceMutation: any;
|
2971
|
+
isViewsVisible: boolean;
|
2972
|
+
}
|
2973
|
+
declare const useViewAssignment: ({ workspaceId, useGetViewsOfWorkspaceQuery, useAssignViewToWorkspaceMutation, useUnassignViewFromWorkspaceMutation, isViewsVisible }: useViewAssignmentProps) => AssignmentHookResult<Pattern>;
|
2974
|
+
|
2975
|
+
interface ExtendedEditIconProps {
|
2976
|
+
onClick: () => void;
|
2977
|
+
disabled?: boolean;
|
2978
|
+
bulk?: boolean;
|
2979
|
+
style?: React.CSSProperties;
|
2980
|
+
title?: string;
|
2981
|
+
}
|
2982
|
+
declare const L5DeleteIcon: ({ onClick, bulk, disabled, style, key, title }: {
|
2983
|
+
onClick: () => void;
|
2984
|
+
bulk?: boolean | undefined;
|
2985
|
+
disabled?: boolean | undefined;
|
2986
|
+
style?: React$1.CSSProperties | undefined;
|
2987
|
+
key?: string | undefined;
|
2988
|
+
title?: string | undefined;
|
2989
|
+
}) => react_jsx_runtime.JSX.Element;
|
2990
|
+
declare const L5EditIcon: ({ onClick, disabled, bulk, style, title }: ExtendedEditIconProps) => react_jsx_runtime.JSX.Element;
|
2991
|
+
|
2992
|
+
interface Key {
|
2993
|
+
subject: string;
|
2994
|
+
action: string;
|
2995
|
+
}
|
2996
|
+
type InvertAction = 'disable' | 'hide';
|
2997
|
+
type MissingPermissionReason = {
|
2998
|
+
type: 'MISSING_PERMISSION';
|
2999
|
+
data: {
|
3000
|
+
keyId: string;
|
3001
|
+
};
|
3002
|
+
};
|
3003
|
+
type MissingCapabilityReason = {
|
3004
|
+
type: 'MISSING_CAPABILITY';
|
3005
|
+
data: {
|
3006
|
+
capabilityId: string;
|
3007
|
+
};
|
3008
|
+
};
|
3009
|
+
type ReasonEvent = MissingPermissionReason | MissingCapabilityReason;
|
3010
|
+
interface HasKeyProps<ReasonEvent> {
|
3011
|
+
Key?: Key;
|
3012
|
+
predicate?: (capabilitiesRegistry: unknown) => [boolean, ReasonEvent];
|
3013
|
+
children: React__default.ReactNode;
|
3014
|
+
notifyOnclick?: boolean;
|
3015
|
+
invert_action?: InvertAction[];
|
3016
|
+
}
|
3017
|
+
declare const createCanShow: (getCapabilitiesRegistry: (() => void) | undefined, CAN: (action: string, subject: string) => boolean, eventBus: () => EventBus<ReasonEvent>) => ({ Key, children, notifyOnclick, predicate, invert_action }: HasKeyProps<ReasonEvent>) => string | number | true | Iterable<React__default.ReactNode> | react_jsx_runtime.JSX.Element | null;
|
3018
|
+
|
3019
|
+
declare const AddIcon: ({ width, height, fill, ...props }: IconProps$1) => JSX.Element;
|
3020
|
+
|
3021
|
+
declare const AddIconCircleBordered: ({ width, height, fill, ...props }: IconProps$1) => JSX.Element;
|
3022
|
+
|
3023
|
+
declare const ApplicationIcon: FC<IconProps$1>;
|
3024
|
+
|
3025
|
+
type KeppelApplicationIconProps$1 = {
|
3026
|
+
primaryFill: string;
|
3027
|
+
secondaryFill: string;
|
3028
|
+
} & IconProps$1;
|
3029
|
+
declare const KeppelApplicationIcon: FC<KeppelApplicationIconProps$1>;
|
3030
|
+
|
3031
|
+
declare const OutlinedApplicationIcon: FC<IconProps$1>;
|
3032
|
+
|
3033
|
+
declare const BellIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3034
|
+
|
3035
|
+
declare const BusIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3036
|
+
|
3037
|
+
type CatalogIconProps = {
|
3038
|
+
primaryFill?: string;
|
3039
|
+
secondaryFill?: string;
|
3040
|
+
tertiaryFill?: string;
|
3041
|
+
} & IconProps$1;
|
3042
|
+
declare const CatalogIcon: FC<CatalogIconProps>;
|
3043
|
+
|
3044
|
+
declare const OutlinedDoubleChevronIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3045
|
+
|
3046
|
+
declare const CircleIcon: ({ width, height, fill, ...props }: IconProps$1) => JSX.Element;
|
3047
|
+
|
3048
|
+
declare const OutlinedCircleIcon: ({ width, height, fill, stroke, strokeWidth, ...props }: IconProps$1) => JSX.Element;
|
3049
|
+
|
3050
|
+
declare const CloneIcon: FC<IconProps$1>;
|
3051
|
+
|
3052
|
+
declare const CloseIcon: ({ width, height, fill, ...props }: IconProps$1) => JSX.Element;
|
3053
|
+
|
3054
|
+
declare const CloudSavedIcon: FC<IconProps$1>;
|
3055
|
+
|
3056
|
+
interface CollapsAllIconProps {
|
3057
|
+
height?: string;
|
3058
|
+
width?: string;
|
3059
|
+
fill?: string;
|
3060
|
+
strokeWidth?: string;
|
3061
|
+
style?: React__default.CSSProperties;
|
3062
|
+
}
|
3063
|
+
declare const CollapsAllIcon: React__default.FC<CollapsAllIconProps>;
|
3064
|
+
|
3065
|
+
declare const ColumnIcon: React__default.FC<SVGProps<SVGSVGElement>>;
|
3066
|
+
|
3067
|
+
declare const ComponentIcon: FC<IconProps$1>;
|
3068
|
+
|
3069
|
+
declare const ConfigurationIcon: FC<IconProps$1>;
|
3070
|
+
|
3071
|
+
declare function ContentFilterIcon({ width, height, ...props }: IconProps$1): JSX.Element;
|
3072
|
+
|
3073
|
+
interface CopyIconProps {
|
3074
|
+
width: number;
|
3075
|
+
height: number;
|
3076
|
+
fill?: string;
|
3077
|
+
style?: React__default.CSSProperties;
|
3078
|
+
secondaryFill?: string;
|
3079
|
+
}
|
3080
|
+
declare const CopyIcon: React__default.FC<CopyIconProps>;
|
3081
|
+
|
3082
|
+
declare const CopyLinkIcon: FC<IconProps$1>;
|
3083
|
+
|
3084
|
+
declare const CreateNewIcon: FC<IconProps$1>;
|
3085
|
+
|
3086
|
+
declare const CredentialIcon: FC<IconProps$1>;
|
3087
|
+
|
3088
|
+
declare function CrossCircleIcon({ width, height, fill, ...props }: IconProps$1): JSX.Element;
|
3089
|
+
|
3090
|
+
declare const DashboardIcon: FC<IconProps$1>;
|
3091
|
+
|
3092
|
+
declare const OutlinedDataObjectIcon: FC<IconProps$1>;
|
3093
|
+
|
3094
|
+
declare const DeleteIcon: ({ width, height, fill, style, ...props }: IconProps$1) => JSX.Element;
|
3095
|
+
|
3096
|
+
declare const OutlinedDeployIcon: FC<IconProps$1>;
|
3097
|
+
|
3098
|
+
declare const DesignerBottomRightIcon: FC<IconProps$1>;
|
3099
|
+
|
3100
|
+
declare const DetailsIcon: FC<IconProps$1>;
|
3101
|
+
|
3102
|
+
declare const DropDownIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3103
|
+
|
3104
|
+
declare function ErrorIcon({ width, height, fill, ...props }: IconProps$1): JSX.Element;
|
3105
|
+
|
3106
|
+
interface ExpandAllIconProps {
|
3107
|
+
height?: string;
|
3108
|
+
width?: string;
|
3109
|
+
fill?: string;
|
3110
|
+
strokeWidth?: string;
|
3111
|
+
style?: React__default.CSSProperties;
|
3112
|
+
}
|
3113
|
+
declare const ExpandAllIcon: React__default.FC<ExpandAllIconProps>;
|
3114
|
+
|
3115
|
+
declare const FavoriteIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3116
|
+
|
3117
|
+
declare const FilterIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3118
|
+
|
3119
|
+
declare const FullScreenExitIcon: FC<IconProps$1>;
|
3120
|
+
|
3121
|
+
declare const FullScreenIcon: FC<IconProps$1>;
|
3122
|
+
|
3123
|
+
declare const OutlinedHierarchicalIcon: FC<IconProps$1>;
|
3124
|
+
|
3125
|
+
declare function InfoCircleIcon({ width, height, fill, ...props }: IconProps$1): JSX.Element;
|
3126
|
+
|
3127
|
+
declare function InfoIcon({ width, height, fill, ...props }: IconProps$1): JSX.Element;
|
3128
|
+
|
3129
|
+
declare const InsertChartIcon: FC<IconProps$1>;
|
3130
|
+
|
3131
|
+
type KeppelRectangleIconProps = {
|
3132
|
+
primaryFill: string;
|
3133
|
+
} & IconProps$1;
|
3134
|
+
declare const KeppelRectangleIcon: FC<KeppelRectangleIconProps>;
|
3135
|
+
|
3136
|
+
declare const OutlinedRectangleIcon: FC<IconProps$1>;
|
3137
|
+
|
3138
|
+
declare const RectangleIcon: FC<IconProps$1>;
|
3139
|
+
|
3140
|
+
type KeppelTallRoundedRectangleIconProps = {
|
3141
|
+
primaryFill: string;
|
3142
|
+
} & IconProps$1;
|
3143
|
+
declare const KeppelTallRoundedRectangleIcon: FC<KeppelTallRoundedRectangleIconProps>;
|
3144
|
+
|
3145
|
+
declare const OutlinedTallRoundedRectangleIcon: FC<IconProps$1>;
|
3146
|
+
|
3147
|
+
declare const RoundedRectangleShapeIcon: FC<IconProps$1>;
|
3148
|
+
|
3149
|
+
declare const RoundTriangleShapeIcon: FC<IconProps$1>;
|
3150
|
+
|
3151
|
+
declare const TallRoundedRectangleIcon: FC<IconProps$1>;
|
3152
|
+
|
3153
|
+
declare const OutlinedMeshIcon: FC<IconProps$1>;
|
3154
|
+
|
3155
|
+
declare const CalenderIcon: FC<IconProps$1>;
|
3156
|
+
|
3157
|
+
declare const CaretDownIcon: ({ width, height, fill, ...props }: IconProps$1) => JSX.Element;
|
3158
|
+
|
3159
|
+
interface ChainIconProps {
|
3160
|
+
width: string;
|
3161
|
+
height: string;
|
3162
|
+
fill?: string;
|
3163
|
+
style?: React__default.CSSProperties;
|
3164
|
+
secondaryFill?: string;
|
3165
|
+
}
|
3166
|
+
declare const ChainIcon: React__default.FC<ChainIconProps>;
|
3167
|
+
|
3168
|
+
interface ChallengesIconProps {
|
3169
|
+
width?: string;
|
3170
|
+
height?: string;
|
3171
|
+
primaryFill?: string;
|
3172
|
+
brandFill?: string;
|
3173
|
+
secondaryFill?: string;
|
3174
|
+
style?: React__default.CSSProperties;
|
3175
|
+
}
|
3176
|
+
declare const ChallengesIcon: React__default.FC<ChallengesIconProps>;
|
3177
|
+
|
3178
|
+
declare const CheckCircleIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3179
|
+
|
3180
|
+
declare const ChevronLeft: ({ width, height, fill, ...props }: IconProps$1) => JSX.Element;
|
3181
|
+
|
3182
|
+
declare const CommunityClassIcon: FC<CustomIconProps>;
|
3183
|
+
|
3184
|
+
declare const OfficialClassIcon: FC<IconProps$1>;
|
3185
|
+
|
3186
|
+
declare const VerificationClassIcon: FC<IconProps$1>;
|
3187
|
+
|
3188
|
+
declare const DatabaseIcon: ({ width, height, fill, ...props }: IconProps$1) => JSX.Element;
|
3189
|
+
|
3190
|
+
declare const DeploymentsIcon: FC<IconProps$1>;
|
3191
|
+
|
3192
|
+
declare const DesignIcon: FC<CustomIconProps>;
|
3193
|
+
|
3194
|
+
declare const DocumentIcon: ({ width, height, style, fill, secondaryFill, ...props }: {
|
3195
|
+
children?: undefined;
|
3196
|
+
color?: string | undefined;
|
3197
|
+
title?: string | undefined;
|
3198
|
+
width?: string | number | undefined;
|
3199
|
+
height?: string | number | undefined;
|
3200
|
+
fill?: string | undefined;
|
3201
|
+
} & React$1.SVGProps<SVGSVGElement> & {
|
3202
|
+
secondaryFill?: string | undefined;
|
3203
|
+
}) => JSX.Element;
|
3204
|
+
|
3205
|
+
declare const DoneAllIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3206
|
+
|
3207
|
+
declare const DoneIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3208
|
+
|
3209
|
+
declare const DownloadIcon: FC<IconProps$1>;
|
3210
|
+
|
3211
|
+
declare const DragIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3212
|
+
|
3213
|
+
declare const EditIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3214
|
+
|
3215
|
+
interface EmptyStyleIconProps {
|
3216
|
+
width?: string;
|
3217
|
+
height?: string;
|
3218
|
+
fill?: string;
|
3219
|
+
style?: CSSProperties;
|
3220
|
+
onClick?: () => void;
|
3221
|
+
}
|
3222
|
+
declare const EmptyStyleIcon: FC<EmptyStyleIconProps>;
|
3223
|
+
|
3224
|
+
declare const EnvironmentIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3225
|
+
|
3226
|
+
declare const ExternalLinkIcon: FC<IconProps$1>;
|
3227
|
+
|
3228
|
+
type KeppelApplicationIconProps = {
|
3229
|
+
primaryFill?: string;
|
3230
|
+
secondaryFill?: string;
|
3231
|
+
} & IconProps$1;
|
3232
|
+
declare const FeedbackIcon: FC<KeppelApplicationIconProps>;
|
3233
|
+
|
3234
|
+
declare const FileIcon: ({ width, height, fill, ...props }: IconProps$1) => JSX.Element;
|
3235
|
+
|
3236
|
+
declare const GetStartedIcon: FC<IconProps$1>;
|
3237
|
+
|
3238
|
+
interface GithubIconProps {
|
3239
|
+
height?: string | number;
|
3240
|
+
width?: string | number;
|
3241
|
+
className?: string;
|
3242
|
+
}
|
3243
|
+
declare function GithubIcon({ height, width, className }: GithubIconProps): react_jsx_runtime.JSX.Element;
|
3244
|
+
|
3245
|
+
interface GoogleIconProps {
|
3246
|
+
height: number;
|
3247
|
+
width: number;
|
3248
|
+
style?: React__default.CSSProperties;
|
3249
|
+
}
|
3250
|
+
declare const GoogleIcon: React__default.FC<GoogleIconProps>;
|
3251
|
+
|
3252
|
+
interface GridViewIconProps {
|
3253
|
+
width?: string;
|
3254
|
+
height?: string;
|
3255
|
+
fill?: string;
|
3256
|
+
opacity?: number;
|
3257
|
+
style?: React__default.CSSProperties;
|
3258
|
+
}
|
3259
|
+
declare const GridViewIcon: React__default.FC<GridViewIconProps>;
|
3260
|
+
|
3261
|
+
declare const HelpOutlinedIcon: FC<IconProps$1>;
|
3262
|
+
|
3263
|
+
declare const IdeaIcon: FC<IconProps$1>;
|
3264
|
+
|
3265
|
+
interface InfoOutlinedIconProps {
|
3266
|
+
height?: number;
|
3267
|
+
width?: number;
|
3268
|
+
fill?: string;
|
3269
|
+
style?: CSSProperties;
|
3270
|
+
className?: string;
|
3271
|
+
}
|
3272
|
+
declare const InfoOutlinedIcon: FC<InfoOutlinedIconProps>;
|
3273
|
+
|
3274
|
+
declare const InviteUserIcon: ({ width, height, fill, ...props }: IconProps$1) => JSX.Element;
|
3275
|
+
|
3276
|
+
interface KanvasIconProps {
|
3277
|
+
width: number;
|
3278
|
+
height: number;
|
3279
|
+
fill?: string;
|
3280
|
+
style?: React__default.CSSProperties;
|
3281
|
+
primaryFill?: string;
|
3282
|
+
secondaryFill?: string;
|
3283
|
+
}
|
3284
|
+
declare const KanvasIcon: React__default.FC<KanvasIconProps>;
|
3285
|
+
|
3286
|
+
declare const KubernetesIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3287
|
+
|
3288
|
+
interface LearningIconProps {
|
3289
|
+
width?: string;
|
3290
|
+
height?: string;
|
3291
|
+
primaryFill?: string;
|
3292
|
+
secondaryFill?: string;
|
3293
|
+
style?: React__default.CSSProperties;
|
3294
|
+
}
|
3295
|
+
declare const LearningIcon: React__default.FC<LearningIconProps>;
|
3296
|
+
|
3297
|
+
declare const LeftAngledArrowIcon: ({ width, height, fill, ...props }: IconProps$1) => JSX.Element;
|
3298
|
+
|
3299
|
+
declare const LeftArrowIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3300
|
+
|
3301
|
+
declare const LockIcon: ({ width, height, fill, ...props }: IconProps$1) => JSX.Element;
|
3302
|
+
|
3303
|
+
interface LogoutIconProps {
|
3304
|
+
width?: number;
|
3305
|
+
height?: number;
|
3306
|
+
fill?: string;
|
3307
|
+
style?: React__default.CSSProperties;
|
3308
|
+
secondaryFill?: string;
|
3309
|
+
}
|
3310
|
+
declare const LogoutIcon: React__default.FC<LogoutIconProps>;
|
3311
|
+
|
3312
|
+
declare const MendeleyIcon: ({ width, height, fill, ...props }: IconProps$1) => JSX.Element;
|
3313
|
+
|
3314
|
+
declare const MenuIcon: ({ width, height, fill, ...props }: IconProps$1) => JSX.Element;
|
3315
|
+
|
3316
|
+
declare const MesheryFilterIcon: FC<CustomIconProps>;
|
3317
|
+
|
3318
|
+
declare const MesheryOperator: FC<IconProps$1>;
|
3319
|
+
|
3320
|
+
declare const OpenIcon: FC<IconProps$1>;
|
3321
|
+
|
3322
|
+
declare const OpenInNewIcon: FC<IconProps$1>;
|
3323
|
+
|
3324
|
+
interface OrgIconProps {
|
3325
|
+
width?: number;
|
3326
|
+
height?: number;
|
3327
|
+
fill?: string;
|
3328
|
+
secondaryFill?: string;
|
3329
|
+
}
|
3330
|
+
declare const OrgIcon: React__default.FC<OrgIconProps>;
|
3331
|
+
|
3332
|
+
declare const PanToolIcon: FC<IconProps$1>;
|
3333
|
+
|
3334
|
+
declare const OutlinedPatternIcon: FC<IconProps$1>;
|
3335
|
+
|
3336
|
+
declare const OutlinedPatternSwitchIcon: FC<IconProps$1>;
|
3337
|
+
|
3338
|
+
declare const PersonIcon: FC<IconProps$1>;
|
3339
|
+
|
3340
|
+
declare const OutlinedPodIcon: FC<IconProps$1>;
|
3341
|
+
|
3342
|
+
declare const PollIcon: ({ width, height, fill, ...props }: IconProps$1) => JSX.Element;
|
3343
|
+
|
3344
|
+
declare const PublicIcon: ({ width, height, fill, ...props }: IconProps$1) => JSX.Element;
|
3345
|
+
|
3346
|
+
declare const PublishIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3347
|
+
|
3348
|
+
declare const QuestionIcon: FC<IconProps$1>;
|
3349
|
+
|
3350
|
+
declare function ReadIcon({ width, height, fill, ...props }: IconProps$1): JSX.Element;
|
3351
|
+
|
3352
|
+
declare const OutlinedRedoIcon: FC<IconProps$1>;
|
3353
|
+
|
3354
|
+
declare const RemoveDoneIcon: FC<IconProps$1>;
|
3355
|
+
|
3356
|
+
declare const RemoveIcon: FC<IconProps$1>;
|
3357
|
+
|
3358
|
+
declare const OutlinedResetIcon: FC<IconProps$1>;
|
3359
|
+
|
3360
|
+
declare const RightArrowIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3361
|
+
|
3362
|
+
declare const OutlinedRingIcon: FC<IconProps$1>;
|
3363
|
+
|
3364
|
+
declare const SMPIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3365
|
+
|
3366
|
+
declare const OutlinedCloudSavingIcon: FC<IconProps$1>;
|
3367
|
+
|
3368
|
+
declare const SaveAsIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3369
|
+
|
3370
|
+
declare const OutlinedScreenshotIcon: FC<IconProps$1>;
|
3371
|
+
|
3372
|
+
declare const SearchIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3373
|
+
|
3374
|
+
declare const OutlinedSettingsIcon: FC<IconProps$1>;
|
3375
|
+
|
3376
|
+
declare const ShareIcon: FC<IconProps$1>;
|
3377
|
+
|
3378
|
+
interface ShareLineIconProps {
|
3379
|
+
width: string;
|
3380
|
+
height: string;
|
3381
|
+
fill?: string;
|
3382
|
+
style?: React__default.CSSProperties;
|
3383
|
+
secondaryFill?: string;
|
3384
|
+
}
|
3385
|
+
declare const ShareLineIcon: React__default.FC<ShareLineIconProps>;
|
3386
|
+
|
3387
|
+
interface IconProps {
|
3388
|
+
width?: number;
|
3389
|
+
height?: number;
|
3390
|
+
fill?: string;
|
3391
|
+
style?: React.CSSProperties;
|
3392
|
+
}
|
3393
|
+
|
3394
|
+
declare const FacebookIcon: React__default.FC<IconProps>;
|
3395
|
+
|
3396
|
+
declare const LinkedinIcon: React__default.FC<IconProps>;
|
3397
|
+
|
3398
|
+
declare const TwitterIcon: React__default.FC<IconProps>;
|
3399
|
+
|
3400
|
+
declare const OutlinedStarIcon: FC<IconProps$1>;
|
3401
|
+
|
3402
|
+
declare const SuccessIcon: FC<IconProps$1>;
|
3403
|
+
|
3404
|
+
interface TableViewIconProps {
|
3405
|
+
width?: string;
|
3406
|
+
height?: string;
|
3407
|
+
fill?: string;
|
3408
|
+
opacity?: number;
|
3409
|
+
style?: React__default.CSSProperties;
|
3410
|
+
}
|
3411
|
+
declare const TableViewIcon: React__default.FC<TableViewIconProps>;
|
3412
|
+
|
3413
|
+
declare const TachographDigitalIcon: ({ width, height, fill, ...props }: IconProps$1) => JSX.Element;
|
3414
|
+
|
3415
|
+
declare const TachometerIcon: ({ width, height, fill, ...props }: IconProps$1) => JSX.Element;
|
3416
|
+
|
3417
|
+
interface TeamsIconProps {
|
3418
|
+
width: string | number;
|
3419
|
+
height: string | number;
|
3420
|
+
fill: string;
|
3421
|
+
primaryFill?: string;
|
3422
|
+
secondaryFill?: string;
|
3423
|
+
style?: React__default.CSSProperties;
|
3424
|
+
}
|
3425
|
+
declare const TeamsIcon: React__default.FC<TeamsIconProps>;
|
3426
|
+
|
3427
|
+
declare const TerminalIcon: FC<IconProps$1>;
|
3428
|
+
|
3429
|
+
declare const ToolkitIcon: FC<IconProps$1>;
|
3430
|
+
|
3431
|
+
declare const TouchAppIcon: FC<IconProps$1>;
|
3432
|
+
|
3433
|
+
declare const TriangleIcon: FC<IconProps$1>;
|
3434
|
+
|
3435
|
+
interface TrophyIconProps {
|
3436
|
+
width?: string;
|
3437
|
+
height?: string;
|
3438
|
+
fill?: string;
|
3439
|
+
style?: React__default.CSSProperties;
|
3440
|
+
}
|
3441
|
+
declare const TrophyIcon: React__default.FC<TrophyIconProps>;
|
3442
|
+
|
3443
|
+
declare const OutlinedUndeployIcon: FC<IconProps$1>;
|
3444
|
+
|
3445
|
+
declare const OutlinedUndoIcon: FC<IconProps$1>;
|
3446
|
+
|
3447
|
+
declare const OutlinedValidateIcon: FC<IconProps$1>;
|
3448
|
+
|
3449
|
+
declare const ViewsIcon: FC<IconProps$1>;
|
3450
|
+
|
3451
|
+
declare const OutlinedVisibilityOffIcon: FC<IconProps$1>;
|
3452
|
+
|
3453
|
+
declare const OutlinedVisibilityOnIcon: FC<IconProps$1>;
|
3454
|
+
|
3455
|
+
declare const OutlinedVisualizerSwitcherIcon: FC<IconProps$1>;
|
3456
|
+
|
3457
|
+
declare const WarningIcon: ({ width, height, ...props }: IconProps$1) => JSX.Element;
|
3458
|
+
|
3459
|
+
declare const WorkspaceIcon: ({ width, height, secondaryFill, opacity, ...props }: CustomIconProps) => JSX.Element;
|
3460
|
+
|
3461
|
+
declare const REHYDRATE_STATE_ACTION = "REHYDRATE_STATE_ACTION";
|
3462
|
+
interface RehydrateStateAction {
|
3463
|
+
type: typeof REHYDRATE_STATE_ACTION;
|
3464
|
+
payload: {
|
3465
|
+
reducerPath: string;
|
3466
|
+
inflatedState: unknown;
|
3467
|
+
};
|
3468
|
+
}
|
3469
|
+
type Action = RehydrateStateAction | {
|
3470
|
+
type: string;
|
3471
|
+
[key: string]: unknown;
|
3472
|
+
};
|
3473
|
+
interface ActionsToPersist {
|
3474
|
+
[actionType: string]: string[];
|
3475
|
+
}
|
3476
|
+
declare const initReduxPersist: (actionsToPersist: ActionsToPersist) => {
|
3477
|
+
persistMiddleware: (store: Store$1) => (next: (action: Action) => unknown) => (action: Action) => unknown;
|
3478
|
+
createPersistEnhancedReducer: (reducer: (state: unknown, action: Action) => unknown) => (state: unknown, action: Action) => unknown;
|
3479
|
+
loadPersistedState: () => (dispatch: Dispatch$1<RehydrateStateAction>) => void;
|
3480
|
+
};
|
3481
|
+
|
3482
|
+
interface PersistedStateProviderProps {
|
3483
|
+
children: ReactNode;
|
3484
|
+
loadPersistedState: () => (dispatch: Dispatch$1<RehydrateStateAction>) => void;
|
3485
|
+
}
|
3486
|
+
declare const PersistedStateProvider: FC<PersistedStateProviderProps>;
|
3487
|
+
|
3488
|
+
/**
|
3489
|
+
* Represents the JSON Schema for the Help and Support modal form.
|
3490
|
+
* This schema is designed to capture information for support request.
|
3491
|
+
*
|
3492
|
+
* Playground link -
|
3493
|
+
*/
|
3494
|
+
declare const helpAndSupportModalSchema: {
|
3495
|
+
title: string;
|
3496
|
+
properties: {
|
3497
|
+
subject: {
|
3498
|
+
type: string;
|
3499
|
+
title: string;
|
3500
|
+
description: string;
|
3501
|
+
minLength: number;
|
3502
|
+
'x-rjsf-grid-area': string;
|
3503
|
+
};
|
3504
|
+
message: {
|
3505
|
+
type: string;
|
3506
|
+
title: string;
|
3507
|
+
description: string;
|
3508
|
+
minLength: number;
|
3509
|
+
format: string;
|
3510
|
+
'x-rjsf-grid-area': string;
|
3511
|
+
};
|
3512
|
+
scope: {
|
3513
|
+
type: string;
|
3514
|
+
enum: string[];
|
3515
|
+
title: string;
|
3516
|
+
description: string;
|
3517
|
+
default: string;
|
3518
|
+
};
|
3519
|
+
};
|
3520
|
+
required: string[];
|
3521
|
+
};
|
3522
|
+
|
3523
|
+
/**
|
3524
|
+
* Represents UI schema for help and support modal
|
3525
|
+
*/
|
3526
|
+
declare const helpAndSupportModalUiSchema: {
|
3527
|
+
subject: {
|
3528
|
+
'ui:placeholder': string;
|
3529
|
+
};
|
3530
|
+
message: {
|
3531
|
+
'ui:placeholder': string;
|
3532
|
+
};
|
3533
|
+
scope: {
|
3534
|
+
'ui:widget': string;
|
3535
|
+
};
|
3536
|
+
};
|
3537
|
+
|
3538
|
+
declare const createAndEditEnvironmentSchema: {
|
3539
|
+
title: string;
|
3540
|
+
properties: {
|
3541
|
+
description: {
|
3542
|
+
description: string;
|
3543
|
+
format: string;
|
3544
|
+
title: string;
|
3545
|
+
type: string;
|
3546
|
+
'x-rjsf-grid-area': string;
|
3547
|
+
};
|
3548
|
+
name: {
|
3549
|
+
description: string;
|
3550
|
+
title: string;
|
3551
|
+
type: string;
|
3552
|
+
'x-rjsf-grid-area': string;
|
3553
|
+
};
|
3554
|
+
organization: {
|
3555
|
+
type: string;
|
3556
|
+
title: string;
|
3557
|
+
description: string;
|
3558
|
+
enum: never[];
|
3559
|
+
enumNames: never[];
|
3560
|
+
'x-rjsf-grid-area': string;
|
3561
|
+
};
|
3562
|
+
};
|
3563
|
+
type: string;
|
3564
|
+
};
|
3565
|
+
|
3566
|
+
declare const createAndEditEnvironmentUiSchema: {
|
3567
|
+
organization: {
|
3568
|
+
'ui:disabled': boolean;
|
3569
|
+
};
|
3570
|
+
'ui:order': string[];
|
3571
|
+
};
|
3572
|
+
|
3573
|
+
/**
|
3574
|
+
* Schema for create or edit workspace modals
|
3575
|
+
*/
|
3576
|
+
declare const createAndEditWorkspace: {
|
3577
|
+
properties: {
|
3578
|
+
description: {
|
3579
|
+
description: string;
|
3580
|
+
format: string;
|
3581
|
+
title: string;
|
3582
|
+
type: string;
|
3583
|
+
'x-rjsf-grid-area': string;
|
3584
|
+
};
|
3585
|
+
name: {
|
3586
|
+
description: string;
|
3587
|
+
title: string;
|
3588
|
+
type: string;
|
3589
|
+
'x-rjsf-grid-area': string;
|
3590
|
+
};
|
3591
|
+
organization: {
|
3592
|
+
type: string;
|
3593
|
+
description: string;
|
3594
|
+
title: string;
|
3595
|
+
enum: never[];
|
3596
|
+
enumNames: never[];
|
3597
|
+
'x-rjsf-grid-area': string;
|
3598
|
+
};
|
3599
|
+
};
|
3600
|
+
type: string;
|
3601
|
+
required: string[];
|
3602
|
+
};
|
3603
|
+
|
3604
|
+
declare const createAndEditWorkspaceUiSchema: {
|
3605
|
+
organization: {
|
3606
|
+
'ui:disabled': boolean;
|
3607
|
+
'ui:widget': string;
|
3608
|
+
};
|
3609
|
+
'ui:order': string[];
|
3610
|
+
};
|
3611
|
+
|
3612
|
+
/**
|
3613
|
+
* Schema for configuring Helm repository connections. This schema is designed for use in a wizard or form
|
3614
|
+
* where users can provide information about connecting to a Helm repository for initiating connection.
|
3615
|
+
*/
|
3616
|
+
declare const helmConnectionSchema: {
|
3617
|
+
type: string;
|
3618
|
+
properties: {
|
3619
|
+
name: {
|
3620
|
+
type: string;
|
3621
|
+
title: string;
|
3622
|
+
minLength: number;
|
3623
|
+
description: string;
|
3624
|
+
'x-rjsf-grid-area': string;
|
3625
|
+
};
|
3626
|
+
description: {
|
3627
|
+
type: string;
|
3628
|
+
title: string;
|
3629
|
+
format: string;
|
3630
|
+
description: string;
|
3631
|
+
'x-rjsf-grid-area': string;
|
3632
|
+
};
|
3633
|
+
url: {
|
3634
|
+
type: string;
|
3635
|
+
title: string;
|
3636
|
+
format: string;
|
3637
|
+
description: string;
|
3638
|
+
'x-rjsf-grid-area': string;
|
3639
|
+
};
|
3640
|
+
};
|
3641
|
+
required: string[];
|
3642
|
+
};
|
3643
|
+
|
3644
|
+
declare const helmConnectionUiSchema: {
|
3645
|
+
'ui:order': string[];
|
3646
|
+
};
|
3647
|
+
|
3648
|
+
declare const importDesignSchema: {
|
3649
|
+
type: string;
|
3650
|
+
properties: {
|
3651
|
+
name: {
|
3652
|
+
type: string;
|
3653
|
+
title: string;
|
3654
|
+
default: string;
|
3655
|
+
'x-rjsf-grid-area': string;
|
3656
|
+
description: string;
|
3657
|
+
};
|
3658
|
+
uploadType: {
|
3659
|
+
title: string;
|
3660
|
+
enum: string[];
|
3661
|
+
default: string;
|
3662
|
+
'x-rjsf-grid-area': string;
|
3663
|
+
description: string;
|
3664
|
+
};
|
3665
|
+
};
|
3666
|
+
allOf: ({
|
3667
|
+
if: {
|
3668
|
+
properties: {
|
3669
|
+
uploadType: {
|
3670
|
+
const: string;
|
3671
|
+
};
|
3672
|
+
};
|
3673
|
+
};
|
3674
|
+
then: {
|
3675
|
+
properties: {
|
3676
|
+
file: {
|
3677
|
+
type: string;
|
3678
|
+
format: string;
|
3679
|
+
description: string;
|
3680
|
+
'x-rjsf-grid-area': string;
|
3681
|
+
};
|
3682
|
+
url?: undefined;
|
3683
|
+
};
|
3684
|
+
required: string[];
|
3685
|
+
};
|
3686
|
+
} | {
|
3687
|
+
if: {
|
3688
|
+
properties: {
|
3689
|
+
uploadType: {
|
3690
|
+
const: string;
|
3691
|
+
};
|
3692
|
+
};
|
3693
|
+
};
|
3694
|
+
then: {
|
3695
|
+
properties: {
|
3696
|
+
url: {
|
3697
|
+
type: string;
|
3698
|
+
format: string;
|
3699
|
+
title: string;
|
3700
|
+
description: string;
|
3701
|
+
'x-rjsf-grid-area': string;
|
3702
|
+
};
|
3703
|
+
file?: undefined;
|
3704
|
+
};
|
3705
|
+
required: string[];
|
3706
|
+
};
|
3707
|
+
})[];
|
3708
|
+
required: string[];
|
3709
|
+
};
|
3710
|
+
|
3711
|
+
declare const importDesignUiSchema: {
|
3712
|
+
uploadType: {
|
3713
|
+
'ui:widget': string;
|
3714
|
+
};
|
3715
|
+
'ui:order': string[];
|
3716
|
+
};
|
3717
|
+
|
3718
|
+
declare const importFilterSchema: {
|
3719
|
+
type: string;
|
3720
|
+
properties: {
|
3721
|
+
name: {
|
3722
|
+
type: string;
|
3723
|
+
title: string;
|
3724
|
+
description: string;
|
3725
|
+
default: string;
|
3726
|
+
'x-rjsf-grid-area': string;
|
3727
|
+
};
|
3728
|
+
config: {
|
3729
|
+
type: string;
|
3730
|
+
title: string;
|
3731
|
+
format: string;
|
3732
|
+
description: string;
|
3733
|
+
default: string;
|
3734
|
+
'x-rjsf-grid-area': string;
|
3735
|
+
};
|
3736
|
+
uploadType: {
|
3737
|
+
title: string;
|
3738
|
+
enum: string[];
|
3739
|
+
default: string;
|
3740
|
+
'x-rjsf-grid-area': string;
|
3741
|
+
};
|
3742
|
+
};
|
3743
|
+
allOf: ({
|
3744
|
+
if: {
|
3745
|
+
properties: {
|
3746
|
+
uploadType: {
|
3747
|
+
const: string;
|
3748
|
+
};
|
3749
|
+
};
|
3750
|
+
};
|
3751
|
+
then: {
|
3752
|
+
title: string;
|
3753
|
+
properties: {
|
3754
|
+
file: {
|
3755
|
+
type: string;
|
3756
|
+
format: string;
|
3757
|
+
description: string;
|
3758
|
+
'x-rjsf-grid-area': string;
|
3759
|
+
};
|
3760
|
+
url?: undefined;
|
3761
|
+
};
|
3762
|
+
required: string[];
|
3763
|
+
};
|
3764
|
+
} | {
|
3765
|
+
if: {
|
3766
|
+
properties: {
|
3767
|
+
uploadType: {
|
3768
|
+
const: string;
|
3769
|
+
};
|
3770
|
+
};
|
3771
|
+
};
|
3772
|
+
then: {
|
3773
|
+
title: string;
|
3774
|
+
properties: {
|
3775
|
+
url: {
|
3776
|
+
type: string;
|
3777
|
+
title: string;
|
3778
|
+
format: string;
|
3779
|
+
description: string;
|
3780
|
+
'x-rjsf-grid-area': string;
|
3781
|
+
};
|
3782
|
+
file?: undefined;
|
3783
|
+
};
|
3784
|
+
required: string[];
|
3785
|
+
};
|
3786
|
+
})[];
|
3787
|
+
};
|
3788
|
+
|
3789
|
+
declare const importFilterUiSchema: {
|
3790
|
+
'ui:order': string[];
|
3791
|
+
};
|
3792
|
+
|
3793
|
+
/**
|
3794
|
+
* Schema for publish catalog item modal;
|
3795
|
+
* Can be use for publishing filters and designs
|
3796
|
+
*/
|
3797
|
+
declare const publishCatalogItemSchema: {
|
3798
|
+
type: string;
|
3799
|
+
properties: {
|
3800
|
+
compatibility: {
|
3801
|
+
type: string;
|
3802
|
+
title: string;
|
3803
|
+
items: {
|
3804
|
+
enum: string[];
|
3805
|
+
type: string;
|
3806
|
+
};
|
3807
|
+
uniqueItems: boolean;
|
3808
|
+
minItems: number;
|
3809
|
+
description: string;
|
3810
|
+
'x-rjsf-grid-area': number;
|
3811
|
+
};
|
3812
|
+
pattern_caveats: {
|
3813
|
+
type: string;
|
3814
|
+
title: string;
|
3815
|
+
description: string;
|
3816
|
+
format: string;
|
3817
|
+
'x-rjsf-grid-area': number;
|
3818
|
+
'x-encode-in-uri': boolean;
|
3819
|
+
};
|
3820
|
+
pattern_info: {
|
3821
|
+
type: string;
|
3822
|
+
title: string;
|
3823
|
+
description: string;
|
3824
|
+
format: string;
|
3825
|
+
'x-rjsf-grid-area': number;
|
3826
|
+
'x-encode-in-uri': boolean;
|
3827
|
+
};
|
3828
|
+
type: {
|
3829
|
+
type: string;
|
3830
|
+
title: string;
|
3831
|
+
enum: string[];
|
3832
|
+
default: string;
|
3833
|
+
description: string;
|
3834
|
+
'x-rjsf-grid-area': number;
|
3835
|
+
};
|
3836
|
+
};
|
3837
|
+
required: string[];
|
3838
|
+
};
|
3839
|
+
|
3840
|
+
declare const publishCatalogItemUiSchema: {
|
3841
|
+
'ui:order': string[];
|
3842
|
+
};
|
3843
|
+
|
3844
|
+
/**
|
3845
|
+
* Schema for creating grafana credential;
|
3846
|
+
*/
|
3847
|
+
declare const kubernetesCredentialSchema: {
|
3848
|
+
type: string;
|
3849
|
+
title: string;
|
3850
|
+
properties: {
|
3851
|
+
credentialName: {
|
3852
|
+
title: string;
|
3853
|
+
type: string;
|
3854
|
+
description: string;
|
3855
|
+
};
|
3856
|
+
secret: {
|
3857
|
+
type: string;
|
3858
|
+
title: string;
|
3859
|
+
description: string;
|
3860
|
+
properties: {
|
3861
|
+
clusterName: {
|
3862
|
+
type: string;
|
3863
|
+
title: string;
|
3864
|
+
description: string;
|
3865
|
+
};
|
3866
|
+
clusterServerURL: {
|
3867
|
+
type: string;
|
3868
|
+
title: string;
|
3869
|
+
description: string;
|
3870
|
+
};
|
3871
|
+
auth: {
|
3872
|
+
type: string;
|
3873
|
+
title: string;
|
3874
|
+
description: string;
|
3875
|
+
properties: {
|
3876
|
+
clusterUserName: {
|
3877
|
+
type: string;
|
3878
|
+
title: string;
|
3879
|
+
description: string;
|
3880
|
+
};
|
3881
|
+
clusterToken: {
|
3882
|
+
type: string;
|
3883
|
+
title: string;
|
3884
|
+
description: string;
|
3885
|
+
};
|
3886
|
+
clusterClientCertificateData: {
|
3887
|
+
type: string;
|
3888
|
+
title: string;
|
3889
|
+
description: string;
|
3890
|
+
};
|
3891
|
+
clusterClientKeyData: {
|
3892
|
+
type: string;
|
3893
|
+
title: string;
|
3894
|
+
description: string;
|
3895
|
+
};
|
3896
|
+
clusterCertificateAuthorityData: {
|
3897
|
+
type: string;
|
3898
|
+
title: string;
|
3899
|
+
description: string;
|
3900
|
+
};
|
3901
|
+
};
|
3902
|
+
required: string[];
|
3903
|
+
};
|
3904
|
+
};
|
3905
|
+
required: string[];
|
3906
|
+
};
|
3907
|
+
};
|
3908
|
+
required: string[];
|
3909
|
+
};
|
3910
|
+
|
3911
|
+
declare const kubernetesCredentialUiSchema: {};
|
3912
|
+
|
3913
|
+
/**
|
3914
|
+
* Schema for creating prometheus credential;
|
3915
|
+
*/
|
3916
|
+
declare const prometheusCredentialSchema: {
|
3917
|
+
type: string;
|
3918
|
+
title: string;
|
3919
|
+
properties: {
|
3920
|
+
credentialName: {
|
3921
|
+
title: string;
|
3922
|
+
type: string;
|
3923
|
+
description: string;
|
3924
|
+
};
|
3925
|
+
secret: {
|
3926
|
+
type: string;
|
3927
|
+
title: string;
|
3928
|
+
description: string;
|
3929
|
+
properties: {
|
3930
|
+
prometheusURL: {
|
3931
|
+
type: string;
|
3932
|
+
title: string;
|
3933
|
+
description: string;
|
3934
|
+
};
|
3935
|
+
};
|
3936
|
+
required: string[];
|
3937
|
+
};
|
3938
|
+
};
|
3939
|
+
required: string[];
|
3940
|
+
};
|
3941
|
+
|
3942
|
+
declare const prometheusCredentialUiSchema: {};
|
3943
|
+
|
3944
|
+
/**
|
3945
|
+
* Schema for creating grafana credential;
|
3946
|
+
*/
|
3947
|
+
declare const grafanaCredentialSchema: {
|
3948
|
+
type: string;
|
3949
|
+
title: string;
|
3950
|
+
properties: {
|
3951
|
+
credentialName: {
|
3952
|
+
title: string;
|
3953
|
+
type: string;
|
3954
|
+
description: string;
|
3955
|
+
};
|
3956
|
+
secret: {
|
3957
|
+
type: string;
|
3958
|
+
title: string;
|
3959
|
+
description: string;
|
3960
|
+
properties: {
|
3961
|
+
grafanaURL: {
|
3962
|
+
type: string;
|
3963
|
+
title: string;
|
3964
|
+
description: string;
|
3965
|
+
};
|
3966
|
+
grafanaAPIKey: {
|
3967
|
+
type: string;
|
3968
|
+
title: string;
|
3969
|
+
description: string;
|
3970
|
+
};
|
3971
|
+
};
|
3972
|
+
required: string[];
|
3973
|
+
};
|
3974
|
+
};
|
3975
|
+
required: string[];
|
3976
|
+
};
|
3977
|
+
|
3978
|
+
declare const grafanaCredentialUiSchema: {};
|
3979
|
+
|
3980
|
+
declare module '@mui/material/styles' {
|
3981
|
+
interface Interactiveness {
|
3982
|
+
default: string;
|
3983
|
+
hover: string;
|
3984
|
+
disabled?: string;
|
3985
|
+
pressed: string;
|
3986
|
+
secondary: string;
|
3987
|
+
tertiary: string;
|
3988
|
+
}
|
3989
|
+
interface TypeBackground {
|
3990
|
+
secondary?: string;
|
3991
|
+
supplementary?: string;
|
3992
|
+
graphics?: {
|
3993
|
+
default: string;
|
3994
|
+
};
|
3995
|
+
tabs?: string;
|
3996
|
+
elevatedComponents?: string;
|
3997
|
+
card?: string;
|
3998
|
+
tertiary?: string;
|
3999
|
+
hover?: string;
|
4000
|
+
blur?: {
|
4001
|
+
heavy: string;
|
4002
|
+
light: string;
|
4003
|
+
};
|
4004
|
+
neutral?: {
|
4005
|
+
default: string;
|
4006
|
+
hover: string;
|
4007
|
+
pressed: string;
|
4008
|
+
};
|
4009
|
+
constant?: {
|
4010
|
+
disabled: string;
|
4011
|
+
white: string;
|
4012
|
+
table: string;
|
4013
|
+
};
|
4014
|
+
inverse?: string;
|
4015
|
+
brand?: Interactiveness;
|
4016
|
+
cta?: Interactiveness;
|
4017
|
+
info?: Interactiveness;
|
4018
|
+
success?: Interactiveness;
|
4019
|
+
warning?: Interactiveness;
|
4020
|
+
error?: Interactiveness;
|
4021
|
+
code?: string;
|
4022
|
+
surfaces?: string;
|
4023
|
+
}
|
4024
|
+
interface TypeText {
|
4025
|
+
default?: string;
|
4026
|
+
secondary: string;
|
4027
|
+
tertiary?: string;
|
4028
|
+
disabled: string;
|
4029
|
+
inverse?: string;
|
4030
|
+
brand?: string;
|
4031
|
+
info?: string;
|
4032
|
+
success?: string;
|
4033
|
+
warning?: string;
|
4034
|
+
error?: string;
|
4035
|
+
neutral?: {
|
4036
|
+
default: string;
|
4037
|
+
alt: string;
|
4038
|
+
};
|
4039
|
+
constant?: {
|
4040
|
+
white: string;
|
4041
|
+
disabled: string;
|
4042
|
+
};
|
4043
|
+
}
|
4044
|
+
interface PaletteColor {
|
4045
|
+
secondary?: string;
|
4046
|
+
supplementary?: string;
|
4047
|
+
blur?: {
|
4048
|
+
heavy: string;
|
4049
|
+
light: string;
|
4050
|
+
};
|
4051
|
+
neutral?: {
|
4052
|
+
default: string;
|
4053
|
+
hover: string;
|
4054
|
+
pressed: string;
|
4055
|
+
alt: string;
|
4056
|
+
};
|
4057
|
+
constant?: {
|
4058
|
+
white: string;
|
4059
|
+
disabled: string;
|
4060
|
+
table: string;
|
4061
|
+
};
|
4062
|
+
inverse?: string;
|
4063
|
+
brand?: Interactiveness;
|
4064
|
+
cta?: Interactiveness;
|
4065
|
+
info?: Interactiveness;
|
4066
|
+
success?: Interactiveness;
|
4067
|
+
warning?: Interactiveness;
|
4068
|
+
error?: Interactiveness;
|
4069
|
+
code?: string;
|
4070
|
+
strong?: string;
|
4071
|
+
normal?: string;
|
4072
|
+
disabled?: string;
|
4073
|
+
surfaces?: string;
|
4074
|
+
}
|
4075
|
+
interface SimplePaletteColorOptions {
|
4076
|
+
secondary?: string;
|
4077
|
+
supplementary?: string;
|
4078
|
+
blur?: {
|
4079
|
+
heavy: string;
|
4080
|
+
light: string;
|
4081
|
+
};
|
4082
|
+
neutral?: {
|
4083
|
+
default: string;
|
4084
|
+
hover: string;
|
4085
|
+
pressed: string;
|
4086
|
+
alt: string;
|
4087
|
+
};
|
4088
|
+
constant?: {
|
4089
|
+
white: string;
|
4090
|
+
disabled: string;
|
4091
|
+
table: string;
|
4092
|
+
};
|
4093
|
+
inverse?: string;
|
4094
|
+
brand?: Interactiveness;
|
4095
|
+
cta?: Interactiveness;
|
4096
|
+
info?: Interactiveness;
|
4097
|
+
success?: Interactiveness;
|
4098
|
+
warning?: Interactiveness;
|
4099
|
+
error?: Interactiveness;
|
4100
|
+
code?: string;
|
4101
|
+
strong?: string;
|
4102
|
+
normal?: string;
|
4103
|
+
disabled?: string;
|
4104
|
+
surfaces?: string;
|
4105
|
+
}
|
4106
|
+
interface Palette {
|
4107
|
+
border: {
|
4108
|
+
default: string;
|
4109
|
+
strong: string;
|
4110
|
+
brand: string;
|
4111
|
+
normal: string;
|
4112
|
+
neutral?: {
|
4113
|
+
default: string;
|
4114
|
+
alt: string;
|
4115
|
+
};
|
4116
|
+
};
|
4117
|
+
icon: {
|
4118
|
+
default: string;
|
4119
|
+
secondary: string;
|
4120
|
+
brand: string;
|
4121
|
+
inverse: string;
|
4122
|
+
weather: string;
|
4123
|
+
disabled: string;
|
4124
|
+
neutral?: {
|
4125
|
+
default: string;
|
4126
|
+
alt: string;
|
4127
|
+
};
|
4128
|
+
};
|
4129
|
+
}
|
4130
|
+
interface PaletteOptions {
|
4131
|
+
border: {
|
4132
|
+
default: string;
|
4133
|
+
strong: string;
|
4134
|
+
brand: string;
|
4135
|
+
normal: string;
|
4136
|
+
neutral?: {
|
4137
|
+
default: string;
|
4138
|
+
alt: string;
|
4139
|
+
};
|
4140
|
+
};
|
4141
|
+
icon: {
|
4142
|
+
default: string;
|
4143
|
+
secondary: string;
|
4144
|
+
brand: string;
|
4145
|
+
inverse: string;
|
4146
|
+
weather: string;
|
4147
|
+
disabled: string;
|
4148
|
+
neutral?: {
|
4149
|
+
default: string;
|
4150
|
+
alt: string;
|
4151
|
+
};
|
4152
|
+
};
|
4153
|
+
}
|
4154
|
+
}
|
4155
|
+
declare const lightModePalette: PaletteOptions;
|
4156
|
+
declare const darkModePalette: PaletteOptions;
|
4157
|
+
|
4158
|
+
declare module '@mui/material/styles' {
|
4159
|
+
interface TypographyVariants {
|
4160
|
+
textH1Bold: React.CSSProperties;
|
4161
|
+
textH2Medium: React.CSSProperties;
|
4162
|
+
textH3Medium: React.CSSProperties;
|
4163
|
+
textB1Regular: React.CSSProperties;
|
4164
|
+
textB2SemiBold: React.CSSProperties;
|
4165
|
+
textB3Regular: React.CSSProperties;
|
4166
|
+
textL1Bold: React.CSSProperties;
|
4167
|
+
textL2Regular: React.CSSProperties;
|
4168
|
+
textC1Regular: React.CSSProperties;
|
4169
|
+
textC2Regular: React.CSSProperties;
|
4170
|
+
}
|
4171
|
+
interface TypographyVariantsOptions {
|
4172
|
+
textH1Bold?: React.CSSProperties;
|
4173
|
+
textH2Medium?: React.CSSProperties;
|
4174
|
+
textH3Medium?: React.CSSProperties;
|
4175
|
+
textB1Regular?: React.CSSProperties;
|
4176
|
+
textB2SemiBold?: React.CSSProperties;
|
4177
|
+
textB3Regular?: React.CSSProperties;
|
4178
|
+
textL1Bold?: React.CSSProperties;
|
4179
|
+
textL2Regular?: React.CSSProperties;
|
4180
|
+
textC1Regular?: React.CSSProperties;
|
4181
|
+
textC2Regular?: React.CSSProperties;
|
4182
|
+
}
|
4183
|
+
}
|
4184
|
+
declare module '@mui/material/Typography' {
|
4185
|
+
interface TypographyPropsVariantOverrides {
|
4186
|
+
textH1Bold: true;
|
4187
|
+
textH2Medium: true;
|
4188
|
+
textH3Medium: true;
|
4189
|
+
textB1Regular: true;
|
4190
|
+
textB2SemiBold: true;
|
4191
|
+
textB3Regular: true;
|
4192
|
+
textL1Bold: true;
|
4193
|
+
textL2Regular: true;
|
4194
|
+
textC1Regular: true;
|
4195
|
+
textC2Regular: true;
|
4196
|
+
}
|
4197
|
+
}
|
4198
|
+
declare const typography: (mode: PaletteMode) => TypographyOptions;
|
4199
|
+
|
4200
|
+
interface SistentThemeProviderProps {
|
4201
|
+
children: React__default.ReactNode;
|
4202
|
+
emotionCache?: EmotionCache;
|
4203
|
+
initialMode?: PaletteMode;
|
4204
|
+
customTheme?: Interactiveness;
|
4205
|
+
}
|
4206
|
+
declare function SistentThemeProvider({ children, emotionCache, initialMode, customTheme }: SistentThemeProviderProps): JSX.Element;
|
4207
|
+
declare function SistentThemeProviderWithoutBaseLine({ children, emotionCache, initialMode }: SistentThemeProviderProps): JSX.Element;
|
4208
|
+
|
4209
|
+
/**
|
4210
|
+
* Define the base common colors to derive from
|
4211
|
+
*/
|
4212
|
+
declare const KEPPEL = "#00B39F";
|
4213
|
+
declare const CARIBBEAN_GREEN = "#00D3A9";
|
4214
|
+
declare const TEAL_BLUE = "#477E96";
|
4215
|
+
declare const CHARCOAL = "#3C494F";
|
4216
|
+
declare const BLACK = "#000000";
|
4217
|
+
declare const MIDNIGHT_BLACK = "#111111";
|
4218
|
+
declare const ALABASTER_WHITE = "#FAFAFA";
|
4219
|
+
declare const WHITE = "#FFFFFF";
|
4220
|
+
declare const ONYX_BLACK = "#1D1817";
|
4221
|
+
declare const SLATE_BLUE = "#3C494F";
|
4222
|
+
declare const TRANSPARENT_WHITE = "#ffffff66";
|
4223
|
+
declare const SILVER_GRAY = "#E6E6E6";
|
4224
|
+
declare const DARK_SHADE_GRAY = "#222222";
|
4225
|
+
declare const CHINESE_SILVER = "#CCCCCC";
|
4226
|
+
declare const SAFFRON = "#EBC017";
|
4227
|
+
declare const GRAY = "#696969";
|
4228
|
+
declare const GRAY97 = "#f7f7f7";
|
4229
|
+
declare const DARK_SLATE_GRAY = "#294957";
|
4230
|
+
declare const LIGHT_GRAY = "#d3d3d3";
|
4231
|
+
declare const ALICE_BLUE = "#EBEFF1";
|
4232
|
+
declare const LIMED_SPRUCE = "#3C494F";
|
4233
|
+
declare const WHITESMOKE = "#F5F5F5";
|
4234
|
+
declare const PRIMARY_COLOR = "#647881";
|
4235
|
+
declare const DARK_PRIMARY_COLOR = "#51636B";
|
4236
|
+
declare const CASPER = "#b1b6b8";
|
4237
|
+
declare const EERIE_BLACK = "#b1b6b8";
|
4238
|
+
declare const PATTERNS_BLUE = "#D9E0E2";
|
4239
|
+
declare const GREEN = "green";
|
4240
|
+
declare const DARK_TEAL = "#455a64";
|
4241
|
+
declare const LIGHT_TEAL = "#607d8b";
|
4242
|
+
declare const CULTURED = "#F6F8F8";
|
4243
|
+
declare const ANAKIWA = "#9EFFEC";
|
4244
|
+
declare const NOT_FOUND = "#666666";
|
4245
|
+
declare const YELLOW_SEA = "#F0A303";
|
4246
|
+
declare const DARK_BLUE_GRAY = "#263238";
|
4247
|
+
declare const common: {
|
4248
|
+
black: string;
|
4249
|
+
white: string;
|
4250
|
+
};
|
4251
|
+
declare const keppel: {
|
4252
|
+
70: string;
|
4253
|
+
60: string;
|
4254
|
+
50: string;
|
4255
|
+
40: string;
|
4256
|
+
30: string;
|
4257
|
+
20: string;
|
4258
|
+
10: string;
|
4259
|
+
};
|
4260
|
+
declare const carribean: {
|
4261
|
+
70: string;
|
4262
|
+
60: string;
|
4263
|
+
50: string;
|
4264
|
+
40: string;
|
4265
|
+
30: string;
|
4266
|
+
20: string;
|
4267
|
+
10: string;
|
4268
|
+
};
|
4269
|
+
declare const saffron: {
|
4270
|
+
70: string;
|
4271
|
+
60: string;
|
4272
|
+
50: string;
|
4273
|
+
40: string;
|
4274
|
+
30: string;
|
4275
|
+
20: string;
|
4276
|
+
10: string;
|
4277
|
+
};
|
4278
|
+
/**
|
4279
|
+
* Grayscale Colors
|
4280
|
+
*/
|
4281
|
+
declare const charcoal: {
|
4282
|
+
110: string;
|
4283
|
+
100: string;
|
4284
|
+
90: string;
|
4285
|
+
80: string;
|
4286
|
+
70: string;
|
4287
|
+
60: string;
|
4288
|
+
50: string;
|
4289
|
+
40: string;
|
4290
|
+
30: string;
|
4291
|
+
20: string;
|
4292
|
+
10: string;
|
4293
|
+
};
|
4294
|
+
declare const gray: {
|
4295
|
+
10: string;
|
4296
|
+
20: string;
|
4297
|
+
30: string;
|
4298
|
+
};
|
4299
|
+
declare const accentGrey: {
|
4300
|
+
100: string;
|
4301
|
+
90: string;
|
4302
|
+
80: string;
|
4303
|
+
70: string;
|
4304
|
+
60: string;
|
4305
|
+
50: string;
|
4306
|
+
40: string;
|
4307
|
+
30: string;
|
4308
|
+
20: string;
|
4309
|
+
10: string;
|
4310
|
+
};
|
4311
|
+
/**
|
4312
|
+
* Function Colors
|
4313
|
+
*/
|
4314
|
+
declare const blue: {
|
4315
|
+
70: string;
|
4316
|
+
60: string;
|
4317
|
+
50: string;
|
4318
|
+
40: string;
|
4319
|
+
30: string;
|
4320
|
+
20: string;
|
4321
|
+
10: string;
|
4322
|
+
};
|
4323
|
+
declare const green: {
|
4324
|
+
70: string;
|
4325
|
+
60: string;
|
4326
|
+
50: string;
|
4327
|
+
40: string;
|
4328
|
+
30: string;
|
4329
|
+
20: string;
|
4330
|
+
10: string;
|
4331
|
+
};
|
4332
|
+
declare const yellow: {
|
4333
|
+
70: string;
|
4334
|
+
60: string;
|
4335
|
+
50: string;
|
4336
|
+
40: string;
|
4337
|
+
30: string;
|
4338
|
+
20: string;
|
4339
|
+
10: string;
|
4340
|
+
};
|
4341
|
+
declare const red: {
|
4342
|
+
70: string;
|
4343
|
+
60: string;
|
4344
|
+
50: string;
|
4345
|
+
40: string;
|
4346
|
+
30: string;
|
4347
|
+
20: string;
|
4348
|
+
10: string;
|
4349
|
+
};
|
4350
|
+
/**
|
4351
|
+
* Use the colors below that provides the action that you want to use
|
4352
|
+
*/
|
4353
|
+
declare const primaryColor: {
|
4354
|
+
main: string;
|
4355
|
+
dark: string;
|
4356
|
+
};
|
4357
|
+
declare const patternsBlue: {
|
4358
|
+
main: string;
|
4359
|
+
};
|
4360
|
+
declare const cultured: {
|
4361
|
+
main: string;
|
4362
|
+
};
|
4363
|
+
declare const darkTeal: {
|
4364
|
+
main: string;
|
4365
|
+
dark: string;
|
4366
|
+
};
|
4367
|
+
declare const actionIcon: {
|
4368
|
+
main: string;
|
4369
|
+
hover: string;
|
4370
|
+
};
|
4371
|
+
declare const tabMenu: {
|
4372
|
+
main: string;
|
4373
|
+
hover: string;
|
4374
|
+
};
|
4375
|
+
declare const darkSlateGray: {
|
4376
|
+
main: string;
|
4377
|
+
dark: string;
|
4378
|
+
};
|
4379
|
+
declare const eerieBlack: {
|
4380
|
+
main: string;
|
4381
|
+
light: string;
|
4382
|
+
lighter: string;
|
4383
|
+
};
|
4384
|
+
declare const casper: {
|
4385
|
+
main: string;
|
4386
|
+
light: string;
|
4387
|
+
lighter: string;
|
4388
|
+
};
|
4389
|
+
declare const slateGray: {
|
4390
|
+
main: string;
|
4391
|
+
light: string;
|
4392
|
+
};
|
4393
|
+
declare const white: {
|
4394
|
+
main: string;
|
4395
|
+
light: string;
|
4396
|
+
lighter: string;
|
4397
|
+
};
|
4398
|
+
declare const black: {
|
4399
|
+
main: string;
|
4400
|
+
light: string;
|
4401
|
+
lighter: string;
|
4402
|
+
dark: string;
|
4403
|
+
};
|
4404
|
+
declare const jungleGreen: {
|
4405
|
+
main: string;
|
4406
|
+
light: string;
|
4407
|
+
lighter: string;
|
4408
|
+
};
|
4409
|
+
declare const buttonDisabled: {
|
4410
|
+
main: string;
|
4411
|
+
};
|
4412
|
+
declare const tableBackgroundHover: {
|
4413
|
+
main: string;
|
4414
|
+
};
|
4415
|
+
declare const redDelete: {
|
4416
|
+
main: string;
|
4417
|
+
light: string;
|
4418
|
+
};
|
4419
|
+
declare const buttonDelete: {
|
4420
|
+
main: string;
|
4421
|
+
hover: string;
|
4422
|
+
};
|
4423
|
+
/**
|
4424
|
+
* Notification Colors
|
4425
|
+
*/
|
4426
|
+
declare const notificationColors: {
|
4427
|
+
info: {
|
4428
|
+
main: string;
|
4429
|
+
};
|
4430
|
+
error: {
|
4431
|
+
main: string;
|
4432
|
+
dark: string;
|
4433
|
+
};
|
4434
|
+
warning: {
|
4435
|
+
main: string;
|
4436
|
+
light: string;
|
4437
|
+
};
|
4438
|
+
success: {
|
4439
|
+
main: string;
|
4440
|
+
};
|
4441
|
+
};
|
4442
|
+
declare const CONNECTED = "#00B39F";
|
4443
|
+
declare const REGISTERED = "#477E96";
|
4444
|
+
declare const DISCOVERED: string;
|
4445
|
+
declare const IGNORED: string;
|
4446
|
+
declare const DELETED: string;
|
4447
|
+
declare const MAINTAINENCE: string;
|
4448
|
+
declare const DISCONNECTED: string;
|
4449
|
+
declare const connected: {
|
4450
|
+
main: string;
|
4451
|
+
};
|
4452
|
+
declare const anakiwa: {
|
4453
|
+
main: string;
|
4454
|
+
};
|
4455
|
+
/**
|
4456
|
+
* Social media or equivalent icons colors
|
4457
|
+
*/
|
4458
|
+
declare const socialIcons: {
|
4459
|
+
slack: string;
|
4460
|
+
twitter: string;
|
4461
|
+
github: string;
|
4462
|
+
youtube: string;
|
4463
|
+
docker: string;
|
4464
|
+
};
|
4465
|
+
|
4466
|
+
declare const componentIcon: ({ kind, model, color }: {
|
4467
|
+
kind: string;
|
4468
|
+
model: string;
|
4469
|
+
color: 'white' | 'color' | 'complete';
|
4470
|
+
}) => string | null;
|
4471
|
+
|
4472
|
+
export { ALABASTER_WHITE, ALICE_BLUE, ANAKIWA, Accordion, AccordionActions, AccordionDetails, AccordionSummary, ActionButton, ActionButtonCard, ActionButtons, AddIconCircleBordered as AddCircleIcon, AddIcon, Alert, AppBar, ApplicationIcon, AssignmentModal, AuthorCell, Autocomplete, Avatar, AvatarGroup, _default$1 as BBChart, BLACK, Backdrop, Badge, BasicMarkdown, BellIcon, BookmarkNotification, Box, BusIcon, Button, ButtonGroup, CARIBBEAN_GREEN, CASPER, CHARCOAL, CHINESE_SILVER, CONNECTED, CULTURED, CalenderIcon, Card, CardActions, CardContent, CardHeader, CardMedia, CaretDownIcon, CatalogCard, CatalogCardDesignLogo, CatalogDesignsTable, CatalogFilter, type CatalogFilterProps, CatalogFilterSidebar, CatalogIcon, CaveatsSection, ChainIcon, ChallengesIcon, ChallengesSection, ChapterCard, CheckCircleIcon, Checkbox, ChevronLeft, Chip, CircleIcon, CircularProgress, ClickAwayListener, CloneIcon, CloseBtn, CloseIcon, CloudSavedIcon, CodeFormatter, type ColView, Collapse, CollapsAllIcon as CollapseAllIcon, CollapsibleSection, CollapsibleSectionFormatter, ColumnIcon, CommunityClassIcon, ComponentIcon, ConfigurationIcon, ConnectionChip, Container, ContainerFormatter, ContentFilterIcon, CopyIcon, CopyLinkIcon, CreateDesignModal, CreateNewIcon, CredentialIcon, CrossCircleIcon, CssBaseline, CustomCatalogCard, type CustomColumn, CustomColumnVisibilityControl, type CustomColumnVisibilityControlProps, CustomDialog, type CustomDialogProps$1 as CustomDialogProps, CustomImage, CustomTooltip, CustomizedStepper, DARK_BLUE_GRAY, DARK_PRIMARY_COLOR, DARK_SHADE_GRAY, DARK_SLATE_GRAY, DARK_TEAL, DATA_VALIDATOR_COMMANDS, DATA_VALIDATOR_EVENTS, DELETED, DISCONNECTED, DISCOVERED, DashboardIcon, DataTableEllipsisMenu, type DataType, DatabaseIcon, DeferEvents, DeleteIcon, DeploymentsIcon, DesignCard, DesignIcon, DesignTable, DesignerBottomRightIcon, DetailsIcon as DetailIcon, DetailsIcon, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle, Divider, DocumentIcon, DoneAllIcon, DoneIcon, DownloadIcon, DragIcon, Drawer, DropDownIcon, EERIE_BLACK, EditIcon, EmptyState, EmptyStateCard, EmptyStyleIcon, EnvironmentIcon, EnvironmentTable, ErrorBoundary, ErrorIcon, EventBus, type EventBusEvent, type EventType, ExpandAllIcon, ExternalLinkIcon, Fab, FacebookIcon, Fade, Fallback, FavoriteIcon, FeedbackComponent as FeedbackButton, FeedbackIcon, FileIcon, FilterIcon, type FilterListType, FlipCard, type FlipCardProps, FormControl, FormControlLabel, FormGroup, FormLabel, FormatId, FullScreenIcon, FullScreenExitIcon as FullScreenIconExit, GRAY, GRAY97, GREEN, GetStartedIcon, GetStartedModal, GithubIcon, GoogleIcon, Grid, GridViewIcon, Grow, type HasKeyProps, HelpOutlinedIcon, Hidden, IGNORED, type IPopperListener, IconButton, IdeaIcon, InfoCircleIcon, InfoIcon, InfoOutlinedIcon as InfoOutlined, InfoTooltip, Input, InputAdornment, InputBase, InputLabel, InputSearchField, InsertChartIcon, type InvertAction, InviteUserIcon, JourneyModal, KEPPEL, KanvasIcon, KeppelApplicationIcon, KeppelRectangleIcon, KeppelTallRoundedRectangleIcon, type Key, KeyValueInRow, KubernetesIcon, L5DeleteIcon, L5EditIcon, LIGHT_GRAY, LIGHT_TEAL, LIMED_SPRUCE, LabelFormatter, LearningCard, LearningContent, LearningIcon, LearningSection, LeftAngledArrowIcon, LeftArrowIcon, LeftPanel, LinearProgress, Link, LinkedinIcon, List, ListFormatter, ListItem, ListItemAvatar, ListItemButton, ListItemIcon, ListItemSecondaryAction, ListItemText, ListSubheader, LockIcon, LogoutIcon, MAINTAINENCE, MIDNIGHT_BLACK, MemoryUsage, MendeleyIcon, Menu, MenuIcon, MenuItem, MenuList, MesheryFilterIcon, MesheryOperator, MetricsDisplay, type MissingCapabilityReason, type MissingPermissionReason, Modal, ModalBody, ModalButtonDanger, ModalButtonPrimary, ModalButtonSecondary, ModalButtonTertiary, ModalCard, ModalFooter, ModalStyledHeader, NOT_FOUND, NativeSelect, NavigationNavbar, NoSsr, Note, NumberState, NumberStateFormatter, ONYX_BLACK, OfficialClassIcon, OpenIcon, OpenInNewIcon, OperatorDataFormatter, OperatorDynamicFormatter, OrgIcon, OutlinedApplicationIcon, OutlinedCircleIcon, OutlinedCloudSavingIcon, OutlinedDataObjectIcon, OutlinedDeployIcon, OutlinedDoubleChevronIcon, OutlinedHierarchicalIcon, OutlinedInput, OutlinedMeshIcon, OutlinedPatternIcon, OutlinedPatternSwitchIcon, OutlinedPodIcon, OutlinedRectangleIcon, OutlinedRedoIcon, OutlinedResetIcon, OutlinedRingIcon, OutlinedScreenshotIcon, OutlinedSettingsIcon, OutlinedStarIcon, OutlinedTallRoundedRectangleIcon, OutlinedUndeployIcon, OutlinedUndoIcon, OutlinedValidateIcon, OutlinedVisibilityOffIcon, OutlinedVisibilityOnIcon, OutlinedVisualizerSwitcherIcon, OverviewSection, PATTERNS_BLUE, PRIMARY_COLOR, PROMPT_VARIANTS, Pagination, PanToolIcon, Panel, Paper, PatternInfo, _default as PerformersSection, PerformersSectionButton, PersistedStateProvider, PersonIcon, PlainCard, PollIcon, Popover, Popper, PopperListener, PrimaryActionButtons, PromptComponent, PublicIcon, PublishIcon, QuestionIcon, REDUX_COMMANDS, REDUX_EVENTS, REEE, REGISTERED, type REXUX_ACTOR_EVENTS, RTK_EVENTS, Radio, RadioGroup, ReadIcon, type ReasonEvent, RectangleIcon, type RehydrateStateAction, RelatedDesigns, RemoveDoneIcon, RemoveIcon, RenderMarkdown, ResponsiveDataTable, type ResponsiveDataTableProps, RightArrowIcon, RightPanel, RoundedRectangleShapeIcon, RoundTriangleShapeIcon as RoundedTriangleShapeIcon, SAFFRON, SILVER_GRAY, SLATE_BLUE, SMPIcon, SaveAsIcon, SearchBar, type SearchBarProps$1 as SearchBarProps, SearchIcon, SecretFormatter, Select, SetupPreReq, ShareIcon, ShareLineIcon, ShareModal, SistentThemeProvider, SistentThemeProviderWithoutBaseLine, Skeleton, Slide, Slider, Snackbar, SocialSharePopper, SpeedDial, SpeedDialAction, Stack, StatusFormatter, Step, StepButton, StepConnector, StepContent, StepIcon, StepLabel, Stepper, StyledChapter, StyledChartDialog, StyledDialogActions, StyledDialogContent, StyledDialogTitle, StyledMarkdown, StyledSearchBar, SuccessIcon, SvgIcon, Switch, TEAL_BLUE, TOC, TOCLearning, TRANSPARENT_WHITE, Tab, Table, TableBody, TableCell, TableContainer, TableDataFormatter, TableHead, TableRow, TableSortLabel, TableViewIcon, TableVisibilityControl, Tabs, TachographDigitalIcon, TachometerIcon, TallRoundedRectangleIcon, TeamSearchField, TeamTable, TeamTableConfiguration, TeamsIcon, TechnologySection, Terminal, TerminalIcon, TextField, TextWithLinkFormatter, ToggleButton, ToggleButtonGroup, Toolbar, ToolkitIcon, Tooltip, TooltipIcon, TouchAppIcon, TransferList, type TransferListProps, TriangleIcon, TrophyIcon as TropyIcon, TwitterIcon, Typography, UniversalFilter, type UniversalFilterProps, UserInfo, UserInviteModal, UserSearchField, UserShareSearch, UserTableAvatarInfo, UsersTable, VerificationClassIcon, ViewsIcon as ViewIcon, ViewSwitch, VisibilityChipMenu, WHITE, WHITESMOKE, WarningIcon, WorkspaceActivityCard, WorkspaceCard, WorkspaceIcon, TeamsTable as WorkspaceTeamsTable, WorkspaceViewsTable, XSTATE_DEBUG_EVENT, YELLOW_SEA, Zoom, accentGrey, actionIcon, anakiwa, black, blue, buttonDelete, buttonDisabled, carribean, casper, charcoal, colViews$1 as colViews, colors, common, componentIcon, connected, convertToReadableUnit, createAndEditEnvironmentSchema, createAndEditEnvironmentUiSchema, createAndEditWorkspace as createAndEditWorkspaceSchema, createAndEditWorkspaceUiSchema, createCanShow, createDesignColumns, createDesignsColumnsConfig, cultured, darkModePalette, darkSlateGray, darkTeal, dataValidatorCommands, dataValidatorEvents, dataValidatorMachine, deadLetter, colViews as designColumnsColViews, eerieBlack, extractPodVolumnTables, forwardToActors, fromWorkerfiedActor, grafanaCredentialUiSchema as grafanaCredentialSUiSchema, grafanaCredentialSchema, gray, green, helmConnectionSchema, helmConnectionUiSchema, helpAndSupportModalSchema, helpAndSupportModalUiSchema, importDesignSchema, importDesignUiSchema, importFilterSchema, importFilterUiSchema, initReduxPersist, jungleGreen, keppel, kubernetesCredentialSchema, kubernetesCredentialUiSchema, lightModePalette, notificationColors, patternsBlue, primaryColor, prometheusCredentialSchema, prometheusCredentialUiSchema, publishCatalogItemSchema, publishCatalogItemUiSchema, red, redDelete, reduxActor, reduxCommands, reduxEvents, reply, rtkQueryActor, rtkQueryActorCommands, rtkQueryActorEvents, saffron, selectIsValidating, selectValidationResults, sendToActor, sendToActors, slateGray, socialIcons, splitCamelCaseString, tabMenu, tableBackgroundHover, typography, updateVisibleColumns, useDesignAssignment, useEnvironmentAssignment, useModal, useNotificationHandler, useResourceCleanData, useStepper, useTeamAssignment, useViewAssignment, useWindowDimensions, white, withErrorBoundary, withSuppressedErrorBoundary, workerfyActor, yellow };
|