@docsvision/management-console 6.2.0-beta.9 → 6.2.1
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/index.css +1 -1
- package/index.d.ts +326 -47
- package/index.js +75797 -89613
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
|
|
3
3
|
import { $ContextMenuOptions } from 'docsvision.web/components/table/plugins/context-menu/$ContextMenuOptions';
|
|
4
|
-
import { $
|
|
4
|
+
import { $Resources as $Resources_2 } from 'docsvision.web/core/localization/$Resources';
|
|
5
5
|
import { $Router } from 'docsvision.web/core/routing';
|
|
6
6
|
import { $RoutingService } from 'docsvision.web/core/routing';
|
|
7
|
+
import { BodyContainerProvider } from 'docsvision.web/components/modals/body-container-provider';
|
|
7
8
|
import { ButtonProps } from '@mui/material';
|
|
8
9
|
import { CircularProgressProps } from '@mui/material';
|
|
9
10
|
import { ColumnType } from 'docsvision.web/components/table/interfaces';
|
|
10
11
|
import { Control } from 'react-hook-form';
|
|
12
|
+
import { ControllerRenderProps } from 'react-hook-form';
|
|
11
13
|
import { DependencyList } from 'react';
|
|
12
14
|
import { Domain } from 'effector';
|
|
13
15
|
import { Event as Event_2 } from 'effector';
|
|
@@ -20,7 +22,6 @@ import { IconButtonProps } from '@mui/material';
|
|
|
20
22
|
import { ICustomContextMenuOption } from 'docsvision.web/components/table/plugins/context-menu/$ContextMenuOptions';
|
|
21
23
|
import { IDateFormatPluginData } from 'docsvision.web/components/table/plugins/filter';
|
|
22
24
|
import { ILogService } from 'docsvision.web/core/system-services/logging/LogService';
|
|
23
|
-
import { IMessageWindowService } from 'docsvision.web/components/modals/message-box';
|
|
24
25
|
import { IRequestService } from 'docsvision.web/core/system-services/networking/RequestService';
|
|
25
26
|
import { IRouter } from 'docsvision.web/core/routing';
|
|
26
27
|
import { IRoutingService } from 'docsvision.web/core/routing';
|
|
@@ -37,6 +38,7 @@ import { OutlinedTextFieldProps } from '@mui/material';
|
|
|
37
38
|
import { Params } from 'docsvision.web/core/routing';
|
|
38
39
|
import { PopoverOrigin } from '@mui/material';
|
|
39
40
|
import { default as React_2 } from 'react';
|
|
41
|
+
import * as React_3 from 'react';
|
|
40
42
|
import { RefObject } from 'react';
|
|
41
43
|
import { RequestOptions } from 'docsvision.web/core/system-services/networking/RequestService';
|
|
42
44
|
import { Route } from 'navigo';
|
|
@@ -51,8 +53,10 @@ import { SvgIconProps } from '@mui/material';
|
|
|
51
53
|
import { SystemServices } from 'docsvision.web/core/system-services/SystemServices';
|
|
52
54
|
import { TableCell } from '@mui/material';
|
|
53
55
|
import { TableCompositions } from 'docsvision.web/components/table/interfaces';
|
|
56
|
+
import type { TextFieldProps } from '@mui/material/TextField';
|
|
54
57
|
import { Theme } from '@mui/material';
|
|
55
58
|
import { TooltipProps } from '@mui/material';
|
|
59
|
+
import { TypographyProps } from '@mui/material';
|
|
56
60
|
import { UseFormGetFieldState } from 'react-hook-form';
|
|
57
61
|
import { UseFormGetValues } from 'react-hook-form';
|
|
58
62
|
import { UseFormHandleSubmit } from 'react-hook-form';
|
|
@@ -179,6 +183,10 @@ declare type $LocalStorage_2 = { localStorage: ILocalStorage_2; };
|
|
|
179
183
|
|
|
180
184
|
declare const $LocalStorage_2 = serviceName((s: $LocalStorage_2) => s.localStorage);
|
|
181
185
|
|
|
186
|
+
declare type $MessageWindow = { messageWindow: IMessageWindowService; };
|
|
187
|
+
|
|
188
|
+
declare const $MessageWindow = serviceName((s: $MessageWindow) => s.messageWindow);
|
|
189
|
+
|
|
182
190
|
declare type $NavigationMenu = { navigationMenu: INavigationMenuService };
|
|
183
191
|
|
|
184
192
|
declare const $NavigationMenu = serviceName<$NavigationMenu, INavigationMenuService>(x => x.navigationMenu);
|
|
@@ -193,10 +201,6 @@ declare type $PanelsExpansionService = { panelsExpansionService: IPanelsExpansio
|
|
|
193
201
|
|
|
194
202
|
declare const $PanelsExpansionService = serviceName((s: $PanelsExpansionService) => s.panelsExpansionService);
|
|
195
203
|
|
|
196
|
-
declare type $ProcessTemplatesController = { processTemplatesController: IProcessTemplatesController };
|
|
197
|
-
|
|
198
|
-
declare const $ProcessTemplatesController = serviceName((s: $ProcessTemplatesController) => s.processTemplatesController);
|
|
199
|
-
|
|
200
204
|
declare type $RealtimeCommunication = { realtimeCommunication: IRealtimeCommunicationService };
|
|
201
205
|
|
|
202
206
|
declare const $RealtimeCommunication = serviceName((s: $RealtimeCommunication) => s.realtimeCommunication);
|
|
@@ -217,9 +221,9 @@ export declare type $Resources = {
|
|
|
217
221
|
|
|
218
222
|
export declare const $Resources: string | ((model?: $Resources) => IResourcesMap);
|
|
219
223
|
|
|
220
|
-
declare type $
|
|
224
|
+
declare type $Resources_3 = { resources: IResourcesMap_2};
|
|
221
225
|
|
|
222
|
-
declare const $
|
|
226
|
+
declare const $Resources_3 = serviceName((s: $Resources_3) => s.resources);
|
|
223
227
|
|
|
224
228
|
export declare type $ResourcesManagement = {
|
|
225
229
|
resourcesManagement: IResourcesManagement;
|
|
@@ -265,6 +269,10 @@ declare type $SessionsController = { sessionsController: ISessionsController };
|
|
|
265
269
|
|
|
266
270
|
declare const $SessionsController = serviceName((s: $SessionsController) => s.sessionsController);
|
|
267
271
|
|
|
272
|
+
declare type $SettingsController = { settingsController: ISettingsController };
|
|
273
|
+
|
|
274
|
+
declare const $SettingsController = serviceName((s: $SettingsController) => s.settingsController);
|
|
275
|
+
|
|
268
276
|
export declare type $SettingsNavigation = {
|
|
269
277
|
settingsNavigation: ISettingsNavigationService;
|
|
270
278
|
};
|
|
@@ -310,7 +318,14 @@ export declare function actionWithThemeCssVariables(theme: Theme, action: Action
|
|
|
310
318
|
|
|
311
319
|
export declare function addCssVariables(theme: Theme): void;
|
|
312
320
|
|
|
313
|
-
export declare function AlertBanner({ text }: IAlertBanner): JSX.Element;
|
|
321
|
+
export declare function AlertBanner({ text, typographyProps }: IAlertBanner): JSX.Element;
|
|
322
|
+
|
|
323
|
+
export declare function AlertTile(props: IAlertTile): JSX.Element;
|
|
324
|
+
|
|
325
|
+
export declare enum AlertType {
|
|
326
|
+
Warning = 0,
|
|
327
|
+
Error = 1
|
|
328
|
+
}
|
|
314
329
|
|
|
315
330
|
export declare function appendStyle(fileName: string): void;
|
|
316
331
|
|
|
@@ -346,8 +361,8 @@ export declare class Application extends ServiceContainer implements IApplicatio
|
|
|
346
361
|
sessionsController: ISessionsController;
|
|
347
362
|
configurationLocksController: IConfigurationLocksController;
|
|
348
363
|
extendedConfigurationController: IExtendedConfigurationController_2;
|
|
349
|
-
processTemplatesController: IProcessTemplatesController;
|
|
350
364
|
rootElement: IRootElementService_2;
|
|
365
|
+
settingsController: ISettingsController;
|
|
351
366
|
constructor(reactRootElementId: string);
|
|
352
367
|
static instance: IApplication;
|
|
353
368
|
initialize(): Promise<void>;
|
|
@@ -392,11 +407,16 @@ declare enum BreadcrumbsLabel_2 {
|
|
|
392
407
|
PageOpenSessions = 8
|
|
393
408
|
}
|
|
394
409
|
|
|
410
|
+
declare enum ButtonColorModes {
|
|
411
|
+
Primary = 0,
|
|
412
|
+
Secondary = 1
|
|
413
|
+
}
|
|
414
|
+
|
|
395
415
|
export declare function ButtonWithLoading(props: IButtonWithLoadingProps): JSX.Element;
|
|
396
416
|
|
|
397
417
|
export declare function CellPreloader(): JSX.Element;
|
|
398
418
|
|
|
399
|
-
export declare function CellTextContent({ content, multiline }: ICellTextContentProps): JSX.Element;
|
|
419
|
+
export declare function CellTextContent({ content, multiline, ...rest }: ICellTextContentProps): JSX.Element;
|
|
400
420
|
|
|
401
421
|
export declare function CellWithFixedWidth(props: ICellWithFixedWidthProps): JSX.Element;
|
|
402
422
|
|
|
@@ -410,12 +430,16 @@ export declare const commonMuiProps: {
|
|
|
410
430
|
|
|
411
431
|
export declare function ComponentIcon(props: IComponentIconProps): JSX.Element;
|
|
412
432
|
|
|
433
|
+
export declare const Confirmation: Story;
|
|
434
|
+
|
|
413
435
|
export declare const convertBase64ToString: (base64: string) => string;
|
|
414
436
|
|
|
415
437
|
export declare const convertDataToBase64: (data: object) => string;
|
|
416
438
|
|
|
417
439
|
export declare const copyTextToClipboard: (text: string, host?: HTMLElement) => void;
|
|
418
440
|
|
|
441
|
+
export declare const Custom: Story;
|
|
442
|
+
|
|
419
443
|
/**
|
|
420
444
|
* Replaced original FormProvider from react-hook-form because of error:
|
|
421
445
|
* "Type instantiation is excessively deep and possibly infinite".
|
|
@@ -473,6 +497,8 @@ export declare class DashboardConfigurationService implements IDashboardConfigur
|
|
|
473
497
|
removeDashboardConfiguration(dashboardId: string): Promise<void>;
|
|
474
498
|
}
|
|
475
499
|
|
|
500
|
+
export declare function DatabaseSelectionModal(props: IDatabaseSelectionModalProps): JSX.Element;
|
|
501
|
+
|
|
476
502
|
export declare function DatabaseSettingsCard(props: IDatabaseSettingsCardProps): JSX.Element;
|
|
477
503
|
|
|
478
504
|
export declare type DatabaseSettingsCardSize = "sm" | "md";
|
|
@@ -481,8 +507,6 @@ export declare const DateRangeCalendarIcon: React_2.NamedExoticComponent<IDateRa
|
|
|
481
507
|
|
|
482
508
|
export declare function DateRangeContainer(props: IDateRangePickerProps): JSX.Element;
|
|
483
509
|
|
|
484
|
-
export declare const Default: Story;
|
|
485
|
-
|
|
486
510
|
export declare const DEFAULT_PAGE_SIZE = 50;
|
|
487
511
|
|
|
488
512
|
export declare function DeleteIcon({ onClick }: {
|
|
@@ -505,7 +529,11 @@ export declare class DomEntryPointService implements IDomEntryPointService {
|
|
|
505
529
|
|
|
506
530
|
export declare function DropdownBody(props: IDropdownBodyProps): JSX.Element;
|
|
507
531
|
|
|
508
|
-
export declare const DropdownOption: React_2.ForwardRefExoticComponent<Pick<IDropdownOptionProps, "slot" | "style" | "title" | "onClick" | "color" | "children" | "className" | "id" | "classes" | "onChange" | "sx" | "translate" | "disabled" | "disableGutters" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "autoFocus" | "value" | "action" | "selected" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "
|
|
532
|
+
export declare const DropdownOption: React_2.ForwardRefExoticComponent<Pick<IDropdownOptionProps, "slot" | "style" | "title" | "onClick" | "color" | "children" | "className" | "id" | "classes" | "onChange" | "sx" | "translate" | "disabled" | "disableGutters" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "autoFocus" | "value" | "action" | "selected" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "dense" | "component" | "displayName" | "divider"> & React_2.RefAttributes<HTMLLIElement>>;
|
|
533
|
+
|
|
534
|
+
export declare function DropdownWithEllipsis(props: IDropdownWithEllipsisProps): JSX.Element;
|
|
535
|
+
|
|
536
|
+
export declare function DropdownWithTooltip(props: IDropdownWithTooltipProps): JSX.Element;
|
|
509
537
|
|
|
510
538
|
export declare function EditorCollectionEditor(props: IEditorCollectionEditorProps): JSX.Element;
|
|
511
539
|
|
|
@@ -532,6 +560,11 @@ export declare class EditorFactory implements IEditorFactory {
|
|
|
532
560
|
|
|
533
561
|
export declare const editorFactory: EditorFactory;
|
|
534
562
|
|
|
563
|
+
export declare function EditorHeader({ label, description }: {
|
|
564
|
+
label: string;
|
|
565
|
+
description: string;
|
|
566
|
+
}): JSX.Element;
|
|
567
|
+
|
|
535
568
|
export declare function EditorInnerWrapper(props: IEditorInnerWrapper): JSX.Element;
|
|
536
569
|
|
|
537
570
|
export declare function EditorName({ text }: {
|
|
@@ -548,6 +581,14 @@ declare type EffectCallbackAsync = () => (Promise<void> | (() => Promise<void |
|
|
|
548
581
|
|
|
549
582
|
export declare const EMAIL_CONNECTION_SETTINGS_LAYOUT = "ea883b59-bb95-446e-879b-97874ac4d82b";
|
|
550
583
|
|
|
584
|
+
export declare enum EngineType {
|
|
585
|
+
MsSQL = 0,
|
|
586
|
+
PgSQL = 1
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
declare const Error_2: Story;
|
|
590
|
+
export { Error_2 as Error }
|
|
591
|
+
|
|
551
592
|
export declare const ERROR_ROW_CLASS_NAME = "page-table__row-error";
|
|
552
593
|
|
|
553
594
|
export declare function ErrorBlock({ text, close }: IErrorBlockProps): JSX.Element;
|
|
@@ -576,6 +617,7 @@ export declare class ExtensionsService implements IExtensionsService {
|
|
|
576
617
|
private getExtensionsLoadingInfo;
|
|
577
618
|
private loadJSModule;
|
|
578
619
|
private loadStyles;
|
|
620
|
+
private buildExtensionAssetUrl;
|
|
579
621
|
private loadExtensionResources;
|
|
580
622
|
}
|
|
581
623
|
|
|
@@ -698,6 +740,13 @@ export declare interface IAccordionProps {
|
|
|
698
740
|
|
|
699
741
|
declare interface IAlertBanner {
|
|
700
742
|
text: string;
|
|
743
|
+
typographyProps?: TypographyProps;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
export declare interface IAlertTile {
|
|
747
|
+
text: string;
|
|
748
|
+
type: AlertType;
|
|
749
|
+
services: $Resources_2;
|
|
701
750
|
}
|
|
702
751
|
|
|
703
752
|
export declare interface IApplication extends ServiceContainer, IApplicationServices_2 {
|
|
@@ -706,7 +755,7 @@ export declare interface IApplication extends ServiceContainer, IApplicationServ
|
|
|
706
755
|
declare interface IApplication_2 extends ServiceContainer, IApplicationServices_2 {
|
|
707
756
|
}
|
|
708
757
|
|
|
709
|
-
export declare interface IApplicationServices extends SystemServices, $ExtensionsService_2, $DomEntryPointService, $ApplicationSettings_2, $WidgetsService_2, $Router, $RoutingService, $TenantsService_2, $DashboardConfigurationService_2, $LocalizationService_2, $AboutSettings_2, $LocalStorage_2, $ResourcesManagement_2, $
|
|
758
|
+
export declare interface IApplicationServices extends SystemServices, $ExtensionsService_2, $DomEntryPointService, $ApplicationSettings_2, $WidgetsService_2, $Router, $RoutingService, $TenantsService_2, $DashboardConfigurationService_2, $LocalizationService_2, $AboutSettings_2, $LocalStorage_2, $ResourcesManagement_2, $Resources_3, $RouteContentRender_2, $FilterPluginsLoading, $ToolbarVisibility, $MessageWindow, $RepeatProcessButton, $PanelsExpansionService, $Layout, $NavigationMenu_2, $ServersController_2, $SettingsNavigation, $FormControl, $ExtendedConfigurationController_2, $RealtimeCommunication_2, $ConfigurationLocksController, $SessionsController, $RootElement_2, $SettingsController {
|
|
710
759
|
}
|
|
711
760
|
|
|
712
761
|
declare interface IApplicationServices_2 extends
|
|
@@ -723,7 +772,7 @@ $LocalizationService_2,
|
|
|
723
772
|
$AboutSettings_2,
|
|
724
773
|
$LocalStorage_2,
|
|
725
774
|
$ResourcesManagement_2,
|
|
726
|
-
$
|
|
775
|
+
$Resources_3,
|
|
727
776
|
$RouteContentRender_2,
|
|
728
777
|
$FilterPluginsLoading,
|
|
729
778
|
$ToolbarVisibility,
|
|
@@ -739,9 +788,9 @@ $ExtendedConfigurationController,
|
|
|
739
788
|
$RealtimeCommunication,
|
|
740
789
|
$ConfigurationLocksController,
|
|
741
790
|
$SessionsController,
|
|
742
|
-
$
|
|
743
|
-
$
|
|
744
|
-
|
|
791
|
+
$RootElement_2,
|
|
792
|
+
$SettingsController
|
|
793
|
+
{
|
|
745
794
|
}
|
|
746
795
|
|
|
747
796
|
export declare interface IApplicationSettings {
|
|
@@ -892,7 +941,7 @@ declare interface ICardUrl extends Service {
|
|
|
892
941
|
getLinkToWindowsClient(dvConnectionId: string, cardID: string): Promise<string>;
|
|
893
942
|
}
|
|
894
943
|
|
|
895
|
-
declare interface ICellTextContentProps {
|
|
944
|
+
declare interface ICellTextContentProps extends TypographyProps {
|
|
896
945
|
content: string;
|
|
897
946
|
multiline?: boolean;
|
|
898
947
|
}
|
|
@@ -928,7 +977,7 @@ export declare interface IComponentIconProps {
|
|
|
928
977
|
}
|
|
929
978
|
|
|
930
979
|
export declare interface ICompositionTable extends IComposition<string, any, TableCompositions.Row<string>> {
|
|
931
|
-
props?: IComposition<string, string, $
|
|
980
|
+
props?: IComposition<string, string, $Resources_3 & $CardUrl & $MessageWindow & $ContextMenuOptions>;
|
|
932
981
|
}
|
|
933
982
|
|
|
934
983
|
declare interface IConfigurationLocksController extends Service {
|
|
@@ -957,7 +1006,7 @@ declare interface IConfigurationValueChange_2 extends IConfigurationValue_2 {
|
|
|
957
1006
|
export declare interface IContainerProps extends HtmlProps.button {
|
|
958
1007
|
title?: string;
|
|
959
1008
|
content?: JSX.Element | string;
|
|
960
|
-
services?: $
|
|
1009
|
+
services?: $Resources_3;
|
|
961
1010
|
}
|
|
962
1011
|
|
|
963
1012
|
export declare interface IContextMenuParameters {
|
|
@@ -965,6 +1014,11 @@ export declare interface IContextMenuParameters {
|
|
|
965
1014
|
currentCardId?: string;
|
|
966
1015
|
}
|
|
967
1016
|
|
|
1017
|
+
declare interface ICopySettingsRequest {
|
|
1018
|
+
sourceServiceId: string;
|
|
1019
|
+
targetServiceId: string;
|
|
1020
|
+
}
|
|
1021
|
+
|
|
968
1022
|
export declare interface ICultureSettings {
|
|
969
1023
|
/**
|
|
970
1024
|
* First day of week
|
|
@@ -1069,6 +1123,14 @@ declare interface ICultureSettings_2 {
|
|
|
1069
1123
|
twoLetterISOLanguageName: string,
|
|
1070
1124
|
}
|
|
1071
1125
|
|
|
1126
|
+
declare interface ICustomMessageWindowOptions extends IMessageWindowOptions {
|
|
1127
|
+
color?: string;
|
|
1128
|
+
hideByBackdropClick?: boolean;
|
|
1129
|
+
boxDefaultWidth?: boolean;
|
|
1130
|
+
boxMaxWidth?: string | number;
|
|
1131
|
+
className?: string;
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1072
1134
|
export declare interface IDashboard {
|
|
1073
1135
|
id: string;
|
|
1074
1136
|
title: string;
|
|
@@ -1111,6 +1173,24 @@ declare interface IDashboardPosition_2 {
|
|
|
1111
1173
|
order: number;
|
|
1112
1174
|
}
|
|
1113
1175
|
|
|
1176
|
+
export declare interface IDatabaseModel {
|
|
1177
|
+
baseName: string;
|
|
1178
|
+
sqlServerName: string;
|
|
1179
|
+
serverType: EngineType;
|
|
1180
|
+
usesFileService: boolean;
|
|
1181
|
+
hash: string;
|
|
1182
|
+
serverNames: string[];
|
|
1183
|
+
error?: string;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
export declare interface IDatabaseSelectionModalProps {
|
|
1187
|
+
open: boolean;
|
|
1188
|
+
databases: IDatabaseModel[];
|
|
1189
|
+
onCancel: () => void;
|
|
1190
|
+
onApply: (selected: IDatabaseModel[]) => void;
|
|
1191
|
+
resources: IResourcesMap_2;
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1114
1194
|
export declare interface IDatabaseSettingsCardProps {
|
|
1115
1195
|
title: string;
|
|
1116
1196
|
label: string;
|
|
@@ -1126,7 +1206,7 @@ export declare interface IDateRangeComponent {
|
|
|
1126
1206
|
customClass?: string;
|
|
1127
1207
|
forwardRef?: RefObject<HTMLElement>;
|
|
1128
1208
|
dateFormatData?: IDateFormatPluginData;
|
|
1129
|
-
services?: $
|
|
1209
|
+
services?: $Resources_3;
|
|
1130
1210
|
columnName?: string;
|
|
1131
1211
|
type?: ColumnType;
|
|
1132
1212
|
focused?: boolean;
|
|
@@ -1142,7 +1222,7 @@ declare interface IDateRangeComponent_2 {
|
|
|
1142
1222
|
customClass?: string;
|
|
1143
1223
|
forwardRef?: RefObject<HTMLElement>;
|
|
1144
1224
|
dateFormatData?: IDateFormatPluginData;
|
|
1145
|
-
services?: $
|
|
1225
|
+
services?: $Resources_3;
|
|
1146
1226
|
columnName?: string;
|
|
1147
1227
|
type?: ColumnType;
|
|
1148
1228
|
focused?: boolean;
|
|
@@ -1187,6 +1267,37 @@ export declare interface IDropdownOptionProps extends Omit<MenuItemProps, "butto
|
|
|
1187
1267
|
displayName: string;
|
|
1188
1268
|
}
|
|
1189
1269
|
|
|
1270
|
+
export declare interface IDropdownWithEllipsisProps {
|
|
1271
|
+
options: IPageElementOption_2[];
|
|
1272
|
+
value?: string | number;
|
|
1273
|
+
label: string;
|
|
1274
|
+
handleChange: (value: string) => void;
|
|
1275
|
+
field: ControllerRenderProps<FieldValues, string>;
|
|
1276
|
+
dataTestId?: string;
|
|
1277
|
+
className?: string;
|
|
1278
|
+
noOptionsText?: string;
|
|
1279
|
+
disabled?: boolean;
|
|
1280
|
+
showLabelWhenSelected?: boolean;
|
|
1281
|
+
}
|
|
1282
|
+
|
|
1283
|
+
export declare interface IDropdownWithTooltipOption {
|
|
1284
|
+
value: number;
|
|
1285
|
+
displayName: string;
|
|
1286
|
+
tooltip?: string;
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
export declare interface IDropdownWithTooltipProps {
|
|
1290
|
+
value: number;
|
|
1291
|
+
options: IDropdownWithTooltipOption[];
|
|
1292
|
+
onChange: (value: number) => void;
|
|
1293
|
+
onBlur: TextFieldProps["onBlur"];
|
|
1294
|
+
inputRef: TextFieldProps["inputRef"];
|
|
1295
|
+
name: string;
|
|
1296
|
+
className?: string;
|
|
1297
|
+
dataTestId?: string;
|
|
1298
|
+
menuWidth?: number;
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1190
1301
|
export declare interface IEditorCollectionEditorProps extends IPageModelElement {
|
|
1191
1302
|
children: React_2.ReactNode | React_2.ReactNode[];
|
|
1192
1303
|
isChanged?: boolean;
|
|
@@ -1338,12 +1449,14 @@ declare interface IExtensionInfo_2 {
|
|
|
1338
1449
|
export declare interface IExtensionLoadingInfo {
|
|
1339
1450
|
enabled: boolean;
|
|
1340
1451
|
folderName: string;
|
|
1452
|
+
cacheKey?: string;
|
|
1341
1453
|
order: number;
|
|
1342
1454
|
}
|
|
1343
1455
|
|
|
1344
1456
|
declare interface IExtensionLoadingInfo_2 {
|
|
1345
1457
|
enabled: boolean;
|
|
1346
1458
|
folderName: string;
|
|
1459
|
+
cacheKey?: string;
|
|
1347
1460
|
order: number;
|
|
1348
1461
|
}
|
|
1349
1462
|
|
|
@@ -1438,17 +1551,17 @@ declare interface IHelpIconButtonProps {
|
|
|
1438
1551
|
transformOrigin?: PopoverOrigin;
|
|
1439
1552
|
}
|
|
1440
1553
|
|
|
1554
|
+
declare interface IInfoBanner {
|
|
1555
|
+
text: string;
|
|
1556
|
+
typographyProps?: TypographyProps;
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1441
1559
|
export declare interface IInformationIconProps {
|
|
1442
1560
|
className?: string;
|
|
1443
1561
|
color?: string;
|
|
1444
1562
|
onClick?: () => void;
|
|
1445
1563
|
}
|
|
1446
1564
|
|
|
1447
|
-
declare interface IInstallProcessTemplatesRequestModel {
|
|
1448
|
-
templateIds: string[];
|
|
1449
|
-
timestamp: string;
|
|
1450
|
-
}
|
|
1451
|
-
|
|
1452
1565
|
export declare interface IKeyValue {
|
|
1453
1566
|
key: string;
|
|
1454
1567
|
value: string;
|
|
@@ -1474,7 +1587,7 @@ export declare interface IListitemProps {
|
|
|
1474
1587
|
changeItem: (value: string) => void;
|
|
1475
1588
|
}
|
|
1476
1589
|
|
|
1477
|
-
declare interface IListPanelProps {
|
|
1590
|
+
export declare interface IListPanelProps {
|
|
1478
1591
|
items: string[];
|
|
1479
1592
|
setItems: (items: string[]) => void;
|
|
1480
1593
|
className?: string;
|
|
@@ -1635,6 +1748,72 @@ declare interface IMenuItem_2 {
|
|
|
1635
1748
|
refElement?: React.RefObject<HTMLDivElement>;
|
|
1636
1749
|
}
|
|
1637
1750
|
|
|
1751
|
+
declare interface IMessageConfirmationWindowOptions extends IMessageWindowOptions {
|
|
1752
|
+
color?: string;
|
|
1753
|
+
modalIcon?: React_2.ReactNode;
|
|
1754
|
+
hideByBackdropClick?: boolean;
|
|
1755
|
+
closeOnEscape?: boolean;
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
declare interface IMessageWindowButton<T> {
|
|
1759
|
+
name?: React_2.ReactNode | string;
|
|
1760
|
+
value?: T;
|
|
1761
|
+
id?: string;
|
|
1762
|
+
isCancel?: boolean;
|
|
1763
|
+
onClick?: () => void;
|
|
1764
|
+
className?: string;
|
|
1765
|
+
colorMode?: ButtonColorModes;
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
declare interface IMessageWindowOptions {
|
|
1769
|
+
customCaptionText?: React_2.ReactNode;
|
|
1770
|
+
contentMaxHeight?: string | number;
|
|
1771
|
+
customButtonOkText?: React_2.ReactNode;
|
|
1772
|
+
withConfirmation?: boolean;
|
|
1773
|
+
customButtonCancelText?: React_2.ReactNode;
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1776
|
+
export declare interface IMessageWindowProps {
|
|
1777
|
+
open: boolean;
|
|
1778
|
+
icon: React_2.ReactNode;
|
|
1779
|
+
content: React_2.ReactNode;
|
|
1780
|
+
buttons: React_2.ReactNode;
|
|
1781
|
+
onClose: () => void;
|
|
1782
|
+
handleBackdropClick?: () => void;
|
|
1783
|
+
disableEscapeKeyDown?: boolean;
|
|
1784
|
+
className?: string;
|
|
1785
|
+
title: React_2.ReactNode;
|
|
1786
|
+
color: string;
|
|
1787
|
+
contentMaxHeight?: string | number;
|
|
1788
|
+
boxDefaultWidth?: boolean;
|
|
1789
|
+
boxMaxWidth?: string | number;
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
declare interface IMessageWindowProps_2 {
|
|
1793
|
+
open: boolean
|
|
1794
|
+
icon: React_2.ReactNode;
|
|
1795
|
+
content: React_2.ReactNode;
|
|
1796
|
+
buttons: React_2.ReactNode;
|
|
1797
|
+
onClose: () => void;
|
|
1798
|
+
handleBackdropClick?: () => void;
|
|
1799
|
+
disableEscapeKeyDown?: boolean;
|
|
1800
|
+
className?: string;
|
|
1801
|
+
title: React_2.ReactNode;
|
|
1802
|
+
color: string;
|
|
1803
|
+
contentMaxHeight?: string | number;
|
|
1804
|
+
boxDefaultWidth?: boolean;
|
|
1805
|
+
boxMaxWidth?:string | number;
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
declare interface IMessageWindowService {
|
|
1809
|
+
showError(content: React.ReactNode, options?: IMessageWindowOptions): Promise<void>;
|
|
1810
|
+
showInfo(content: React.ReactNode, options?: IMessageWindowOptions): Promise<void>;
|
|
1811
|
+
showWarning(content: React.ReactNode, options?: IMessageWindowOptions): Promise<void>;
|
|
1812
|
+
showConfirmation(content: React.ReactNode, options?: IMessageConfirmationWindowOptions): Promise<void>;
|
|
1813
|
+
showCustom<T>(content: React.ReactNode, buttons: IMessageWindowButton<T>[], options?: ICustomMessageWindowOptions): Promise<T | void>;
|
|
1814
|
+
getMessageBoxContainer(): BodyContainerProvider;
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1638
1817
|
export declare interface IMetaInformation {
|
|
1639
1818
|
readOnly: boolean;
|
|
1640
1819
|
acceptMessage: string;
|
|
@@ -1672,17 +1851,19 @@ declare enum IncomingMessageState {
|
|
|
1672
1851
|
Paused = 4
|
|
1673
1852
|
}
|
|
1674
1853
|
|
|
1854
|
+
export declare const Info: Story;
|
|
1855
|
+
|
|
1856
|
+
export declare function InfoBanner({ text, typographyProps }: IInfoBanner): JSX.Element;
|
|
1857
|
+
|
|
1675
1858
|
export declare function InformationIcon(props: IInformationIconProps): JSX.Element;
|
|
1676
1859
|
|
|
1677
|
-
declare interface INumberComponentProps extends Omit<OutlinedTextFieldProps, "variant"> {
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
textAlign?: "left" | "center" | "right";
|
|
1685
|
-
errorMessage?: string;
|
|
1860
|
+
export declare interface INumberComponentProps extends Omit<OutlinedTextFieldProps, "variant" | "value" | "onChange" | "type" | "defaultValue"> {
|
|
1861
|
+
minValue?: string | number;
|
|
1862
|
+
maxValue?: string | number;
|
|
1863
|
+
value?: string;
|
|
1864
|
+
onChange: (value: string) => void;
|
|
1865
|
+
allowDecimals?: boolean;
|
|
1866
|
+
numberDecimalSeparator?: string;
|
|
1686
1867
|
}
|
|
1687
1868
|
|
|
1688
1869
|
declare interface IOpenSessionsCount {
|
|
@@ -1723,6 +1904,7 @@ export declare interface IPageLayoutModelElement {
|
|
|
1723
1904
|
elements?: IPageModelElement[];
|
|
1724
1905
|
extendedLayoutId?: string;
|
|
1725
1906
|
readonly?: boolean;
|
|
1907
|
+
inProcess?: boolean;
|
|
1726
1908
|
parameters?: Record<string, string>;
|
|
1727
1909
|
}
|
|
1728
1910
|
|
|
@@ -1740,6 +1922,7 @@ declare interface IPageLayoutModelElement_2 {
|
|
|
1740
1922
|
elements?: IPageModelElement_2[];
|
|
1741
1923
|
extendedLayoutId?: string;
|
|
1742
1924
|
readonly?: boolean;
|
|
1925
|
+
inProcess?: boolean;
|
|
1743
1926
|
parameters?: Record<string, string>;
|
|
1744
1927
|
}
|
|
1745
1928
|
|
|
@@ -1800,7 +1983,7 @@ export declare interface IPageTableProps extends HtmlProps.div {
|
|
|
1800
1983
|
data: ITableData;
|
|
1801
1984
|
onRowClick?: (row: IRow) => void;
|
|
1802
1985
|
addRowClassName?: (row: IRow) => string;
|
|
1803
|
-
services?: $
|
|
1986
|
+
services?: $Resources_3 & $ApplicationSettings_2 & $MessageWindow;
|
|
1804
1987
|
loadData?: (data?: ITableData, options?: ITableDataLoadRequest) => Promise<void>;
|
|
1805
1988
|
disabledFeatures?: string[];
|
|
1806
1989
|
extraPlugins?: ITablePlugins[];
|
|
@@ -1847,8 +2030,12 @@ export declare interface IPopupNotificationProps extends Noty_2.Options {
|
|
|
1847
2030
|
buttonsProps?: IButtonsProps[];
|
|
1848
2031
|
}
|
|
1849
2032
|
|
|
1850
|
-
declare interface
|
|
1851
|
-
|
|
2033
|
+
export declare interface IProcessOverlayProps {
|
|
2034
|
+
children: React_2.ReactNode;
|
|
2035
|
+
inProcess?: boolean;
|
|
2036
|
+
message?: string;
|
|
2037
|
+
spinnerSize?: number;
|
|
2038
|
+
className?: string;
|
|
1852
2039
|
}
|
|
1853
2040
|
|
|
1854
2041
|
declare interface IRealtimeCommunicationService {
|
|
@@ -1972,25 +2159,51 @@ export declare interface IServerExtensionResourcesDescriptor {
|
|
|
1972
2159
|
declare interface IServersController extends Service {
|
|
1973
2160
|
getServers(): Promise<IServerDescription[]>;
|
|
1974
2161
|
getServerInfo(id: string): Promise<IServerDetails>;
|
|
2162
|
+
getServiceInfo(serviceId: string): Promise<IServiceDescription | null>;
|
|
1975
2163
|
deleteService(id: string): Promise<void>;
|
|
2164
|
+
getPeers(id: string): Promise<IServiceInfo[]>;
|
|
1976
2165
|
}
|
|
1977
2166
|
|
|
1978
2167
|
declare interface IServersController_2 extends Service {
|
|
1979
2168
|
getServers(): Promise<IServerDescription_2[]>;
|
|
1980
2169
|
getServerInfo(id: string): Promise<IServerDetails_2>;
|
|
2170
|
+
getServiceInfo(serviceId: string): Promise<IServiceDescription_2 | null>;
|
|
1981
2171
|
deleteService(id: string): Promise<void>;
|
|
2172
|
+
getPeers(id: string): Promise<IServiceInfo_2[]>;
|
|
1982
2173
|
}
|
|
1983
2174
|
|
|
1984
2175
|
declare interface IServiceDescription {
|
|
1985
2176
|
serviceId: string;
|
|
1986
2177
|
serviceName: string;
|
|
1987
2178
|
configurationLayoutId: string;
|
|
2179
|
+
serverName: string;
|
|
2180
|
+
serviceUrl: string;
|
|
1988
2181
|
}
|
|
1989
2182
|
|
|
1990
2183
|
declare interface IServiceDescription_2 {
|
|
1991
2184
|
serviceId: string;
|
|
1992
2185
|
serviceName: string;
|
|
1993
2186
|
configurationLayoutId: string;
|
|
2187
|
+
serverName: string;
|
|
2188
|
+
serviceUrl: string;
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2191
|
+
declare interface IServiceInfo {
|
|
2192
|
+
id: string;
|
|
2193
|
+
serviceTypeCode: number;
|
|
2194
|
+
serverName: string;
|
|
2195
|
+
productVersion: string;
|
|
2196
|
+
codeVersion: string;
|
|
2197
|
+
lastUpdated?: string;
|
|
2198
|
+
}
|
|
2199
|
+
|
|
2200
|
+
declare interface IServiceInfo_2 {
|
|
2201
|
+
id: string;
|
|
2202
|
+
serviceTypeCode: number;
|
|
2203
|
+
serverName: string;
|
|
2204
|
+
productVersion: string;
|
|
2205
|
+
codeVersion: string;
|
|
2206
|
+
lastUpdated?: string;
|
|
1994
2207
|
}
|
|
1995
2208
|
|
|
1996
2209
|
declare interface ISessionCloseInfo {
|
|
@@ -2036,11 +2249,16 @@ declare interface ISessionsQuery {
|
|
|
2036
2249
|
sortConditions: ISessionSortCondition[],
|
|
2037
2250
|
}
|
|
2038
2251
|
|
|
2252
|
+
declare interface ISettingsController extends Service {
|
|
2253
|
+
copy(request: ICopySettingsRequest): Promise<void>;
|
|
2254
|
+
}
|
|
2255
|
+
|
|
2039
2256
|
export declare interface ISettingsNavigationService {
|
|
2040
2257
|
goToSettingsPage: (layoutId: string, serviceName: string, serviceId: string) => void;
|
|
2041
2258
|
goToItemSettingsPage: (layoutId: string, id: string, label: string) => void;
|
|
2042
2259
|
goToConfigurationPage: () => void;
|
|
2043
2260
|
getBreadcrumbsItems: () => IBreadcrumbsItems_2[];
|
|
2261
|
+
ensureServiceName: (serviceId?: string) => Promise<void>;
|
|
2044
2262
|
}
|
|
2045
2263
|
|
|
2046
2264
|
declare interface ISettingsNavigationService_2 {
|
|
@@ -2048,6 +2266,7 @@ declare interface ISettingsNavigationService_2 {
|
|
|
2048
2266
|
goToItemSettingsPage: (layoutId: string, id: string, label: string) => void;
|
|
2049
2267
|
goToConfigurationPage: () => void;
|
|
2050
2268
|
getBreadcrumbsItems: () => IBreadcrumbsItems[];
|
|
2269
|
+
ensureServiceName: (serviceId?: string) => Promise<void>;
|
|
2051
2270
|
}
|
|
2052
2271
|
|
|
2053
2272
|
export declare interface ISettingsPageButtonPanelProps extends HtmlProps_2.div {
|
|
@@ -2216,6 +2435,29 @@ declare interface IToolbarVisibilityService {
|
|
|
2216
2435
|
changeVisibility: Event_2<boolean>;
|
|
2217
2436
|
}
|
|
2218
2437
|
|
|
2438
|
+
export declare interface ITreeItemProps {
|
|
2439
|
+
nodeId: string;
|
|
2440
|
+
notAvailable?: boolean;
|
|
2441
|
+
label: string;
|
|
2442
|
+
children?: React_2.ReactNode;
|
|
2443
|
+
classCss?: string;
|
|
2444
|
+
wrapperClassCss?: string;
|
|
2445
|
+
}
|
|
2446
|
+
|
|
2447
|
+
export declare interface ITreeViewContext {
|
|
2448
|
+
isSelected: (id: string) => boolean;
|
|
2449
|
+
isExpanded: (id: string) => boolean;
|
|
2450
|
+
selectNode: (value: string) => void;
|
|
2451
|
+
toggleExpansion: (value: string) => void;
|
|
2452
|
+
}
|
|
2453
|
+
|
|
2454
|
+
export declare interface ITreeViewProps {
|
|
2455
|
+
children?: React_2.ReactNode;
|
|
2456
|
+
expandedNodes?: string[];
|
|
2457
|
+
selectedNode?: string;
|
|
2458
|
+
onNodeSelect?: (value: string) => void;
|
|
2459
|
+
}
|
|
2460
|
+
|
|
2219
2461
|
export declare interface IUrlModel {
|
|
2220
2462
|
typeId: string;
|
|
2221
2463
|
connectionId?: string;
|
|
@@ -2263,6 +2505,11 @@ declare interface IViewSettings{
|
|
|
2263
2505
|
pageSize: number;
|
|
2264
2506
|
}
|
|
2265
2507
|
|
|
2508
|
+
export declare interface IWarningBanner {
|
|
2509
|
+
text: string;
|
|
2510
|
+
services: $Resources_2;
|
|
2511
|
+
}
|
|
2512
|
+
|
|
2266
2513
|
export declare interface IWidget {
|
|
2267
2514
|
id: string;
|
|
2268
2515
|
typeId: string;
|
|
@@ -2293,7 +2540,7 @@ export declare interface IWidgetConnectionSelectorProps extends HtmlProps.div {
|
|
|
2293
2540
|
selectedValue: string;
|
|
2294
2541
|
options: IKeyValue[];
|
|
2295
2542
|
onChange: (newValue: any) => void;
|
|
2296
|
-
services: $
|
|
2543
|
+
services: $Resources_3;
|
|
2297
2544
|
isLoading?: boolean;
|
|
2298
2545
|
}
|
|
2299
2546
|
|
|
@@ -2335,7 +2582,7 @@ export declare interface IWidgetPeriodSelectorProps extends HtmlProps.div {
|
|
|
2335
2582
|
selectedValue: string;
|
|
2336
2583
|
options: IPeriodValue[];
|
|
2337
2584
|
onChange: (newValue: any) => void;
|
|
2338
|
-
services: $
|
|
2585
|
+
services: $Resources_3 & $ApplicationSettings_2;
|
|
2339
2586
|
isLoading?: boolean;
|
|
2340
2587
|
onDatesChange?: (dates: any) => void;
|
|
2341
2588
|
datesValue?: string[];
|
|
@@ -2452,6 +2699,21 @@ export declare class LocalStorage implements ILocalStorage_2 {
|
|
|
2452
2699
|
transformId(id: string): string;
|
|
2453
2700
|
}
|
|
2454
2701
|
|
|
2702
|
+
export declare function MessageWindow(props: IMessageWindowProps): JSX.Element;
|
|
2703
|
+
|
|
2704
|
+
export declare class MessageWindowService implements IMessageWindowService {
|
|
2705
|
+
private static mMessageBoxContainerProvider;
|
|
2706
|
+
static lastError?: HTMLElement;
|
|
2707
|
+
services: $Resources_3;
|
|
2708
|
+
constructor(services: $Resources_3);
|
|
2709
|
+
showError(content: React_2.ReactNode, options?: IMessageWindowOptions): Promise<void>;
|
|
2710
|
+
showInfo(content: React_2.ReactNode, options?: IMessageWindowOptions): Promise<void>;
|
|
2711
|
+
showWarning(content: React_2.ReactNode, options?: IMessageWindowOptions): Promise<void>;
|
|
2712
|
+
showConfirmation(content: React_2.ReactNode, options?: IMessageConfirmationWindowOptions): Promise<void>;
|
|
2713
|
+
showCustom<T>(content: React_2.ReactNode, buttons: IMessageWindowButton<T>[], options?: ICustomMessageWindowOptions): Promise<T | void>;
|
|
2714
|
+
getMessageBoxContainer(): BodyContainerProvider;
|
|
2715
|
+
}
|
|
2716
|
+
|
|
2455
2717
|
export declare function NavigationMenu(props: INavigationMenuProps): JSX.Element;
|
|
2456
2718
|
|
|
2457
2719
|
export declare function newGuid(): string;
|
|
@@ -2497,10 +2759,14 @@ declare enum PeriodType {
|
|
|
2497
2759
|
DateRange
|
|
2498
2760
|
}
|
|
2499
2761
|
|
|
2762
|
+
export declare function ProcessOverlay(props: IProcessOverlayProps): JSX.Element;
|
|
2763
|
+
|
|
2500
2764
|
export declare function registerEditors(): void;
|
|
2501
2765
|
|
|
2502
2766
|
export declare function removeCssVariables(theme: Theme): void;
|
|
2503
2767
|
|
|
2768
|
+
export declare function renderButtons(withConfirmation?: boolean): JSX.Element[];
|
|
2769
|
+
|
|
2504
2770
|
export declare class ResourcesManagement implements IResourcesManagement {
|
|
2505
2771
|
resources: IResourcesMap_2;
|
|
2506
2772
|
setResources(resourcesMap: IResourcesMap_2): void;
|
|
@@ -2558,7 +2824,12 @@ export declare const setDashboardPosition: (settings: IWidgetSettings_2, positio
|
|
|
2558
2824
|
|
|
2559
2825
|
export declare class SettingsNavigationService implements ISettingsNavigationService {
|
|
2560
2826
|
private readonly application;
|
|
2827
|
+
private readonly serviceNamesCache;
|
|
2561
2828
|
constructor(application: IApplication);
|
|
2829
|
+
ensureServiceName(serviceId?: string): Promise<void>;
|
|
2830
|
+
private rememberServiceName;
|
|
2831
|
+
private getCachedServiceName;
|
|
2832
|
+
private resolveServiceName;
|
|
2562
2833
|
convertPathToUrl(str: string, ...args: any[]): string;
|
|
2563
2834
|
getServerPageUrl(serverId: string): string;
|
|
2564
2835
|
getSettingsPageUrl(serverId: string, serviceId: string, layoutId: string, serviceName: string): string;
|
|
@@ -2579,7 +2850,7 @@ export declare const showNote: (options: IPopupNotificationProps) => Noty_2;
|
|
|
2579
2850
|
|
|
2580
2851
|
export declare function showNotification(text: string): void;
|
|
2581
2852
|
|
|
2582
|
-
declare type Story = StoryObj<
|
|
2853
|
+
declare type Story = StoryObj<IMessageWindowProps_2>;
|
|
2583
2854
|
|
|
2584
2855
|
export declare function TableScrollContainerComponent(props: ITableScrollContainerComponentProps): JSX.Element;
|
|
2585
2856
|
|
|
@@ -2599,6 +2870,12 @@ export declare const theme: Theme;
|
|
|
2599
2870
|
|
|
2600
2871
|
export declare const toWidgetSettings: (serverSettings: IWidgetSettingServerModel[]) => IWidgetSettings;
|
|
2601
2872
|
|
|
2873
|
+
export declare function TreeItem(props: ITreeItemProps): JSX.Element;
|
|
2874
|
+
|
|
2875
|
+
export declare function TreeView(props: ITreeViewProps): JSX.Element;
|
|
2876
|
+
|
|
2877
|
+
export declare const TreeViewContext: React_3.Context<ITreeViewContext>;
|
|
2878
|
+
|
|
2602
2879
|
export declare const useCustomFormContext: <TFieldValues extends FieldValues, TContext = any, TTransformedValues extends FieldValues = undefined>() => CustomUseFormReturn<TFieldValues, TContext, TTransformedValues>;
|
|
2603
2880
|
|
|
2604
2881
|
export declare const useDefaultRoute: (application: IApplication_2) => void;
|
|
@@ -2612,6 +2889,10 @@ export declare function useLocalServiceContainer<MetaT>(context: typeof Services
|
|
|
2612
2889
|
|
|
2613
2890
|
export declare const useOutsideClick: (ref: React.MutableRefObject<HTMLElement>, callback: () => void) => void;
|
|
2614
2891
|
|
|
2892
|
+
export declare const Warning: Story;
|
|
2893
|
+
|
|
2894
|
+
export declare function WarningBanner(props: IWarningBanner): JSX.Element;
|
|
2895
|
+
|
|
2615
2896
|
export declare class Widget implements IWidget_2 {
|
|
2616
2897
|
readonly id: string;
|
|
2617
2898
|
readonly typeId: string;
|
|
@@ -2712,8 +2993,6 @@ export declare class WidgetsService implements IWidgetsService {
|
|
|
2712
2993
|
getAllDescriptions(): IWidgetDescription_2[];
|
|
2713
2994
|
}
|
|
2714
2995
|
|
|
2715
|
-
export declare const WithSelectedItem: Story;
|
|
2716
|
-
|
|
2717
2996
|
export declare const WORKER_SETTINGS_LAYOUT = "906f3990-98e5-4c2e-9e5f-5998fdb26daa";
|
|
2718
2997
|
|
|
2719
2998
|
export { }
|