-
-
Notifications
You must be signed in to change notification settings - Fork 321
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
Module '"@brainandbones/skeleton"' has no exported member 'dialogStore' #276
Comments
Hey @CodyOakes, definitely seems we have a bug here. We utilize an The I'm going to have to do a little research and figure out what's up here. In the meantime, you should able to work around this by importing from the full path. This would be: import { dialogStore } from "@brainandbones/skeleton/utilities/Dialog/stores"; Sorry about that. If we can figure it out I may put out a quick hotpatch to help you and others. Let me know if the above solution works for you and thanks for the kind words! |
@CodyOakes Ok, it just occurred to me what's up. We used |
@endigo9740 Haha that's what I meant by "an import amongst all the exports". Thanks for the work around, and quick response! I'll watch for the patch. |
Well shoot, you did! Seems I need a bit more coffee this morning :) |
@CodyOakes The patch has been push. New version is Let us know if you run into any other issues! |
Getting this TS error when attempting to import "dialogStore" into a component to trigger a DialogConfirm:
Module '"@brainandbones/skeleton"' has no exported member 'dialogStore'
version: "@brainandbones/skeleton": "^0.41.48"
Noticed on line 42 of index.js in the skeleton source there is an import amongst all the exports:
import { dialogStore } from './utilities/Dialog/stores';
Enjoyed the package so far especially the most recent release, seems like it's moving in a great direction. Keep up the good work! Thanks!
The text was updated successfully, but these errors were encountered: