Description
The method bottomSheetActions is documented in the README as available since version >=14.8, but it is not exported in the index.d.ts file. This prevents it from being directly imported when using the “@tef-novum/webview-bridge” package.
Steps to Reproduce:
1. Install the @tef-novum/webview-bridge package.
2. Try to import bottomSheetActions:
import { bottomSheetActions } from '@tef-novum/webview-bridge';
3. Observe the error: “Module not found: bottomSheetActions”.
Expected Behavior:
The method should be accessible directly via import:
import { bottomSheetActions } from '@tef-novum/webview-bridge';
Proposed Fix:
Add the following line to the index.d.ts file:
export { bottomSheetActions } from './src/bottom-sheet';
Please confirm if this functionality is intended to be public and exported as documented in the README.