@docsvision/management-console 6.2.0-beta.10 → 6.2.0-beta.12

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.d.ts CHANGED
@@ -1702,15 +1702,13 @@ declare enum IncomingMessageState {
1702
1702
 
1703
1703
  export declare function InformationIcon(props: IInformationIconProps): JSX.Element;
1704
1704
 
1705
- declare interface INumberComponentProps extends Omit<OutlinedTextFieldProps, "variant"> {
1706
- name: string;
1707
- value?: number | string;
1708
- minValue?: number;
1709
- maxValue?: number;
1710
- fullWidth?: boolean;
1711
- width?: number;
1712
- textAlign?: "left" | "center" | "right";
1713
- errorMessage?: string;
1705
+ declare interface INumberComponentProps extends Omit<OutlinedTextFieldProps, "variant" | "value" | "onChange" | "type" | "defaultValue"> {
1706
+ minValue?: string | number;
1707
+ maxValue?: string | number;
1708
+ value?: string;
1709
+ onChange: (value: string) => void;
1710
+ allowDecimals?: boolean;
1711
+ numberDecimalSeparator?: string;
1714
1712
  }
1715
1713
 
1716
1714
  declare interface IOpenSessionsCount {
@@ -1751,6 +1749,7 @@ export declare interface IPageLayoutModelElement {
1751
1749
  elements?: IPageModelElement[];
1752
1750
  extendedLayoutId?: string;
1753
1751
  readonly?: boolean;
1752
+ inProcess?: boolean;
1754
1753
  parameters?: Record<string, string>;
1755
1754
  }
1756
1755
 
@@ -1768,6 +1767,7 @@ declare interface IPageLayoutModelElement_2 {
1768
1767
  elements?: IPageModelElement_2[];
1769
1768
  extendedLayoutId?: string;
1770
1769
  readonly?: boolean;
1770
+ inProcess?: boolean;
1771
1771
  parameters?: Record<string, string>;
1772
1772
  }
1773
1773
 
@@ -1875,6 +1875,14 @@ export declare interface IPopupNotificationProps extends Noty_2.Options {
1875
1875
  buttonsProps?: IButtonsProps[];
1876
1876
  }
1877
1877
 
1878
+ export declare interface IProcessOverlayProps {
1879
+ children: React_2.ReactNode;
1880
+ inProcess?: boolean;
1881
+ message?: string;
1882
+ spinnerSize?: number;
1883
+ className?: string;
1884
+ }
1885
+
1878
1886
  declare interface IRealtimeCommunicationService {
1879
1887
  on: (methodName: string, callback: (...args: unknown[]) => void) => void;
1880
1888
  off: (methodName: string, callback: (...args: unknown[]) => void) => void;
@@ -1996,12 +2004,14 @@ export declare interface IServerExtensionResourcesDescriptor {
1996
2004
  declare interface IServersController extends Service {
1997
2005
  getServers(): Promise<IServerDescription[]>;
1998
2006
  getServerInfo(id: string): Promise<IServerDetails>;
2007
+ getServiceInfo(serviceId: string): Promise<IServiceDescription | null>;
1999
2008
  deleteService(id: string): Promise<void>;
2000
2009
  }
2001
2010
 
2002
2011
  declare interface IServersController_2 extends Service {
2003
2012
  getServers(): Promise<IServerDescription_2[]>;
2004
2013
  getServerInfo(id: string): Promise<IServerDetails_2>;
2014
+ getServiceInfo(serviceId: string): Promise<IServiceDescription_2 | null>;
2005
2015
  deleteService(id: string): Promise<void>;
2006
2016
  }
2007
2017
 
@@ -2065,6 +2075,7 @@ export declare interface ISettingsNavigationService {
2065
2075
  goToItemSettingsPage: (layoutId: string, id: string, label: string) => void;
2066
2076
  goToConfigurationPage: () => void;
2067
2077
  getBreadcrumbsItems: () => IBreadcrumbsItems_2[];
2078
+ ensureServiceName: (serviceId?: string) => Promise<void>;
2068
2079
  }
2069
2080
 
2070
2081
  declare interface ISettingsNavigationService_2 {
@@ -2072,6 +2083,7 @@ declare interface ISettingsNavigationService_2 {
2072
2083
  goToItemSettingsPage: (layoutId: string, id: string, label: string) => void;
2073
2084
  goToConfigurationPage: () => void;
2074
2085
  getBreadcrumbsItems: () => IBreadcrumbsItems[];
2086
+ ensureServiceName: (serviceId?: string) => Promise<void>;
2075
2087
  }
2076
2088
 
2077
2089
  export declare interface ISettingsPageButtonPanelProps extends HtmlProps_2.div {
@@ -2521,6 +2533,8 @@ declare enum PeriodType {
2521
2533
  DateRange
2522
2534
  }
2523
2535
 
2536
+ export declare function ProcessOverlay(props: IProcessOverlayProps): JSX.Element;
2537
+
2524
2538
  export declare function registerEditors(): void;
2525
2539
 
2526
2540
  export declare function removeCssVariables(theme: Theme): void;
@@ -2582,7 +2596,12 @@ export declare const setDashboardPosition: (settings: IWidgetSettings_2, positio
2582
2596
 
2583
2597
  export declare class SettingsNavigationService implements ISettingsNavigationService {
2584
2598
  private readonly application;
2599
+ private readonly serviceNamesCache;
2585
2600
  constructor(application: IApplication);
2601
+ ensureServiceName(serviceId?: string): Promise<void>;
2602
+ private rememberServiceName;
2603
+ private getCachedServiceName;
2604
+ private resolveServiceName;
2586
2605
  convertPathToUrl(str: string, ...args: any[]): string;
2587
2606
  getServerPageUrl(serverId: string): string;
2588
2607
  getSettingsPageUrl(serverId: string, serviceId: string, layoutId: string, serviceName: string): string;