mctable-react 1.0.7 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -54,6 +54,11 @@ You can also pass `settings`, `license`, or `onReady` if you need deeper access
54
54
 
55
55
  ## Changelog
56
56
 
57
+ ```
58
+ v1.0.8
59
+ - Type exports added from `mctable`
60
+ ```
61
+
57
62
  ```
58
63
  v1.0.7
59
64
  - Upgrade to `mctable` core library `v1.4.0`
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
2
  import { MctColumn, MctInitSettings, MctLicense, McTable, MctRow, MctApi } from 'mctable';
3
- export { McTableCtor, MctApi, MctColumn, MctColumnData, MctInitSettings, MctLicense, MctRow, MctScrollPosition } from 'mctable';
3
+ export { McTableCtor, MctApi, MctColumn, MctColumnData, MctInitSettings, MctLicense, MctRow, MctScrollPosition, MctSettingDeleteMethod, MctSettingResizeHandleDimension, MctSettingScrollOverflow, MctSettingScrollOverflowOption, MctSettingScrollStop, MctSettingScrollStopOption, MctSettingScrollTransition } from 'mctable';
4
4
 
5
5
  type McTableReactHandle = {
6
6
  table: McTable | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mctable-react",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",