@handsontable/react 12.2.0 → 12.3.0-next-9dc4f5d-20221209

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/hotColumn.d.ts CHANGED
@@ -36,13 +36,6 @@ declare class HotColumn extends React.Component<HotColumnProps, {}> {
36
36
  * @returns {Object}
37
37
  */
38
38
  getSettingsProps(): HotTableProps;
39
- /**
40
- * Check whether the HotColumn component contains a provided prop.
41
- *
42
- * @param {String} propName Property name.
43
- * @returns {Boolean}
44
- */
45
- hasProp(propName: string): boolean;
46
39
  /**
47
40
  * Get the editor element for the current column.
48
41
  *
package/package.json CHANGED
@@ -1,18 +1,20 @@
1
1
  {
2
2
  "name": "@handsontable/react",
3
- "version": "12.2.0",
3
+ "version": "12.3.0-next-9dc4f5d-20221209",
4
4
  "description": "Best Data Grid for React with Spreadsheet Look and Feel.",
5
5
  "author": "Handsoncode <hello@handsoncode.net> (https://handsoncode.net)",
6
6
  "homepage": "https://handsontable.com",
7
7
  "license": "SEE LICENSE IN LICENSE.txt",
8
8
  "main": "./commonjs/react-handsontable.js",
9
- "module": "./es/react-handsontable.js",
9
+ "module": "./es/react-handsontable.mjs",
10
10
  "jsdelivr": "./dist/react-handsontable.min.js",
11
11
  "unpkg": "./dist/react-handsontable.min.js",
12
12
  "types": "./index.d.ts",
13
13
  "exports": {
14
+ "./dist/react-handsontable.js" : "./dist/react-handsontable.js",
15
+ "./dist/react-handsontable.min.js" : "./dist/react-handsontable.min.js",
14
16
  ".": {
15
- "import": "./es/react-handsontable.js",
17
+ "import": "./es/react-handsontable.mjs",
16
18
  "require": "./commonjs/react-handsontable.js"
17
19
  }
18
20
  },
@@ -65,7 +67,7 @@
65
67
  "cpy-cli": "^3.1.1",
66
68
  "cross-env": "^5.2.0",
67
69
  "del-cli": "^3.0.1",
68
- "handsontable": "^12.0.0",
70
+ "handsontable": "12.3.0-next-9dc4f5d-20221209",
69
71
  "jest": "^25.1.0",
70
72
  "prop-types": "^15.7.2",
71
73
  "react": "^16.10.2",
@@ -85,7 +87,7 @@
85
87
  "uglify-js": "^3.4.9"
86
88
  },
87
89
  "peerDependencies": {
88
- "handsontable": ">=12.0.0"
90
+ "handsontable": "12.3.0-next-9dc4f5d-20221209"
89
91
  },
90
92
  "scripts": {
91
93
  "build": "npm run clean && npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:min",
@@ -114,6 +116,9 @@
114
116
  "json",
115
117
  "node"
116
118
  ],
119
+ "setupFilesAfterEnv": [
120
+ "<rootDir>/test/bootstrap.js"
121
+ ],
117
122
  "globals": {
118
123
  "ts-jest": {
119
124
  "tsConfig": "test-tsconfig.json",