@docsvision/management-console 6.2.0-beta.11 → 6.2.0-beta.13
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 +16 -9
- package/index.js +1603 -395
- package/index.js.map +1 -1
- package/package.json +1 -1
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
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
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 {
|
|
@@ -2006,12 +2004,14 @@ export declare interface IServerExtensionResourcesDescriptor {
|
|
|
2006
2004
|
declare interface IServersController extends Service {
|
|
2007
2005
|
getServers(): Promise<IServerDescription[]>;
|
|
2008
2006
|
getServerInfo(id: string): Promise<IServerDetails>;
|
|
2007
|
+
getServiceInfo(serviceId: string): Promise<IServiceDescription | null>;
|
|
2009
2008
|
deleteService(id: string): Promise<void>;
|
|
2010
2009
|
}
|
|
2011
2010
|
|
|
2012
2011
|
declare interface IServersController_2 extends Service {
|
|
2013
2012
|
getServers(): Promise<IServerDescription_2[]>;
|
|
2014
2013
|
getServerInfo(id: string): Promise<IServerDetails_2>;
|
|
2014
|
+
getServiceInfo(serviceId: string): Promise<IServiceDescription_2 | null>;
|
|
2015
2015
|
deleteService(id: string): Promise<void>;
|
|
2016
2016
|
}
|
|
2017
2017
|
|
|
@@ -2075,6 +2075,7 @@ export declare interface ISettingsNavigationService {
|
|
|
2075
2075
|
goToItemSettingsPage: (layoutId: string, id: string, label: string) => void;
|
|
2076
2076
|
goToConfigurationPage: () => void;
|
|
2077
2077
|
getBreadcrumbsItems: () => IBreadcrumbsItems_2[];
|
|
2078
|
+
ensureServiceName: (serviceId?: string) => Promise<void>;
|
|
2078
2079
|
}
|
|
2079
2080
|
|
|
2080
2081
|
declare interface ISettingsNavigationService_2 {
|
|
@@ -2082,6 +2083,7 @@ declare interface ISettingsNavigationService_2 {
|
|
|
2082
2083
|
goToItemSettingsPage: (layoutId: string, id: string, label: string) => void;
|
|
2083
2084
|
goToConfigurationPage: () => void;
|
|
2084
2085
|
getBreadcrumbsItems: () => IBreadcrumbsItems[];
|
|
2086
|
+
ensureServiceName: (serviceId?: string) => Promise<void>;
|
|
2085
2087
|
}
|
|
2086
2088
|
|
|
2087
2089
|
export declare interface ISettingsPageButtonPanelProps extends HtmlProps_2.div {
|
|
@@ -2594,7 +2596,12 @@ export declare const setDashboardPosition: (settings: IWidgetSettings_2, positio
|
|
|
2594
2596
|
|
|
2595
2597
|
export declare class SettingsNavigationService implements ISettingsNavigationService {
|
|
2596
2598
|
private readonly application;
|
|
2599
|
+
private readonly serviceNamesCache;
|
|
2597
2600
|
constructor(application: IApplication);
|
|
2601
|
+
ensureServiceName(serviceId?: string): Promise<void>;
|
|
2602
|
+
private rememberServiceName;
|
|
2603
|
+
private getCachedServiceName;
|
|
2604
|
+
private resolveServiceName;
|
|
2598
2605
|
convertPathToUrl(str: string, ...args: any[]): string;
|
|
2599
2606
|
getServerPageUrl(serverId: string): string;
|
|
2600
2607
|
getSettingsPageUrl(serverId: string, serviceId: string, layoutId: string, serviceName: string): string;
|