-
-
Notifications
You must be signed in to change notification settings - Fork 136
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
aldeed:tabular 3.0.0-rc.4
is not Compatible with Meteor 3.0.4
#463
Comments
Thank you for submitting this issue! We, the Members of Meteor Community Packages take every issue seriously. However, we contribute to these packages mostly in our free time. If you think this issue is trivial to solve, don't hesitate to submit Please also consider sponsoring the maintainers of the package. |
3.0.0-rc.4
Not Compatible with Meteor 3.0.4
3.0.0-rc.4
is not Compatible with Meteor 3.0.4
@distalx I checked your repo and it seems you have no datatables npm packages installed. Please see the following comment on why datatables IS NOT a hard-coded dependency anymore: |
@jankapunkt, thank you for your quick response. Installing I have a follow-up question: in the comment, it mentions passing the DataTables instance to the
meteor npm install --save datatables.net datatables.net-dt
// Client-side, ideally in `imports/startup/client/index.js`
import Tabular from 'meteor/aldeed:tabular';
import 'datatables.net'
import 'datatables.net-dt/css/dataTables.dataTables.css'
Tabular.init();
// in case of datatables.net >= v2
import Tabular from 'meteor/aldeed:tabular';
import DataTables from 'datatables.net'
import 'datatables.net-dt/css/dataTables.dataTables.css'
Tabular.init({DataTables});
EDIT: Apologies, I realized that the open PR already covers these changes. |
Describe the bug
aldeed:tabular
version3.0.0-rc.4
is not functioning correctly with Meteor version3.0.4
. The issue arises because Meteor 3.0.4 utilizes a3.0.0
version ofblaze-html-templates
.To Reproduce
Steps to reproduce the behavior:
meteor npm install && meteor
in your terminal.localhost:3000
in your web browser.Expected behavior
When following the above steps, the table should render correctly, displaying the default "links" collection data.
Additional context
3.0.4
3.0.0-rc.4
Reproduction Repo: Link to Reproduction Repository
The text was updated successfully, but these errors were encountered: