Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bottomSheetActions is not exported in index.d.ts #191

Open
edrianolima opened this issue Jan 20, 2025 · 0 comments · May be fixed by #192
Open

bottomSheetActions is not exported in index.d.ts #191

edrianolima opened this issue Jan 20, 2025 · 0 comments · May be fixed by #192

Comments

@edrianolima
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant