@docsvision/management-console 6.2.2-beta.1 → 6.2.3

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.
Files changed (4) hide show
  1. package/index.d.ts +3 -4
  2. package/index.js +1794 -1403
  3. package/index.js.map +1 -1
  4. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1821,6 +1821,8 @@ declare interface IMetaInformation_2 {
1821
1821
 
1822
1822
  export declare interface INavigationMenuProps {
1823
1823
  menuItems: IMenuItem_2[];
1824
+ activeMenuId?: string;
1825
+ onMenuClick: (menuId: string) => void;
1824
1826
  }
1825
1827
 
1826
1828
  declare interface INavigationMenuService {
@@ -2021,7 +2023,7 @@ export declare interface IPopupNotificationButton {
2021
2023
  text: string;
2022
2024
  className?: string;
2023
2025
  dataTestId?: string;
2024
- onClick: () => void;
2026
+ onClick: (notification: PopupNotification) => void;
2025
2027
  }
2026
2028
 
2027
2029
  export declare interface IPopupNotificationCallbacks {
@@ -2875,14 +2877,11 @@ export declare const setDashboardPosition: (settings: IWidgetSettings_2, positio
2875
2877
  export declare class SettingsNavigationService implements ISettingsNavigationService {
2876
2878
  private readonly application;
2877
2879
  private readonly serviceNamesCache;
2878
- private readonly serversNamesCache;
2879
2880
  constructor(application: IApplication);
2880
2881
  ensureServiceName(serviceId?: string): Promise<void>;
2881
2882
  private rememberServiceName;
2882
2883
  private getCachedServiceName;
2883
2884
  private resolveServiceName;
2884
- private rememberServerName;
2885
- private getCachedServerName;
2886
2885
  convertPathToUrl(str: string, ...args: any[]): string;
2887
2886
  getServerPageUrl(serverId: string): string;
2888
2887
  getSettingsPageUrl(serverId: string, serviceId: string, layoutId: string, serviceName: string): string;