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
outside of server-side rendering, when I just swapped out the version in my package.json, I noticed this:
my options.position is is-right, when it should have been top-right, and I see now that the documentation is updated to use the new values. So, I think we're good! (I changed the value to one of the allowed values mentioned in the readme, and things behave as expected)
Just upgraded to 1.0.0 from 0.1.0
The issue is that the default export in 1.0.0 is https://github.com/rfoel/bulma-toast/blob/master/src/js/index.js#L58 trying to access the
document
when bulma-toast is imported.but in 0.1.0, just an function is exported: https://github.com/rfoel/bulma-toast/blob/0.1.0/src/extension.js#L7
so it's not evaluated until invocation time, allowing it to work in SSR environments. :-\
(for now, I'm downgrading back to 0.1.0 :-\ )
Ran in to this issue: ember-fastboot/ember-cli-fastboot#74 (for reference)
The text was updated successfully, but these errors were encountered: