You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
edrianolima
added a commit
to edrianolima/webview-bridge
that referenced
this issue
Jan 20, 2025
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.
The text was updated successfully, but these errors were encountered: