spry-apps-dropdown 1.0.2 → 2.0.2

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/dist/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  import type { AppsDropdownConnectedProps } from './types';
2
2
  /**
3
3
  * AppsDropdownConnected component that automatically fetches apps from API
4
+ * Automatically excludes the current app from the dropdown based on URL matching
4
5
  *
5
6
  * @param apiUrl - Base URL of the Spry Apps API (e.g., "http://localhost:3002")
6
7
  * @param open - Whether the dropdown is open
@@ -12,5 +13,9 @@ import type { AppsDropdownConnectedProps } from './types';
12
13
  export declare function AppsDropdownConnected({ apiUrl, open, onClose, buttonRef, refetchInterval, cacheTime }: AppsDropdownConnectedProps): import("react/jsx-runtime").JSX.Element;
13
14
  export { AppsDropdown } from './AppsDropdown';
14
15
  export { useAppsData } from './useAppsData';
16
+ export { ProfileMenu } from './ProfileMenu';
17
+ export { ProfileMenuConnected } from './ProfileMenuConnected';
18
+ export { useProfileData } from './useProfileData';
19
+ export { TopBar } from './TopBar';
15
20
  export * from './types';
16
21
  export default AppsDropdownConnected;