Skip to content

Commit a7708d2

Browse files
authored
Version 0.4.3 (#47)
* Delete eval_functions.js Instead we simply export the functions without quotes * Suppress the warning about max columns * ATM itables does not work with Nteract
1 parent d9d4a82 commit a7708d2

File tree

9 files changed

+2427
-2895
lines changed

9 files changed

+2427
-2895
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
0.4.3 (2022-01-08)
2+
==================
3+
4+
Changed
5+
-------
6+
7+
- When a JS function is created on the Python side, we export it as-is (without quotes) in the HTML file and don't use JS eval anymore.
8+
9+
110
0.4.2 (2022-01-07)
211
==================
312

@@ -20,7 +29,7 @@ Fixed
2029

2130
Fixed
2231
-------
23-
- Now `itables` also works in Jupyter Lab, Colab, Nteract, VS Code and PyCharm (#3, #4, #26, #40), as we load the `datatables.net` library with an ES import when `require.js` is not available. Many thanks to [François Wouts](https://github.com/fwouts) for his precious help!
32+
- Now `itables` also works in Jupyter Lab, Colab, VS Code and PyCharm (#3, #4, #26, #40), as we load the `datatables.net` library with an ES import when `require.js` is not available. Many thanks to [François Wouts](https://github.com/fwouts) for his precious help!
2433

2534
Changed
2635
-------

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ You don't see any table above? Please either open the [HTML export](https://mwou
5959
- Google Colab
6060
- VS Code (for both Jupyter Notebooks and Python scripts)
6161
- PyCharm (for Jupyter Notebooks)
62-
- Nteract
6362

6463
## Table not loading?
6564

@@ -182,7 +181,7 @@ function (td, cellData, rowData, row, col) {
182181
For tables that are larger than the notebook, the `columnDefs` argument allows to specify the desired width. If you wish you can also change the default in `itables.options`.
183182

184183
```python
185-
show(x.to_frame().T, columnDefs=[{"width": "120px", "targets": "_all"}])
184+
show(x.to_frame().T, columnDefs=[{"width": "120px", "targets": "_all"}], maxColumns=300)
186185
```
187186

188187
## Cell alignment

0 commit comments

Comments
 (0)