@tinymce/tinymce-webcomponent 2.3.1 → 2.3.2-feature.20250922100006595.shaed1c122

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.
@@ -149,10 +149,10 @@
149
149
  const lookup = values => key => isLookupKey(values, key) ? values[key] : key;
150
150
  const parseGlobal = resolve;
151
151
  const parseString = identity;
152
- const parseFalseOrString = lookup({ 'false': false });
152
+ const parseFalseOrString = lookup({ false: false });
153
153
  const parseBooleanOrString = lookup({
154
- 'true': true,
155
- 'false': false
154
+ true: true,
155
+ false: false
156
156
  });
157
157
  const parseNumberOrString = value => /^\d+$/.test(value) ? Number.parseInt(value, 10) : value;
158
158
  const configAttributes = {
@@ -413,7 +413,9 @@
413
413
  }
414
414
  }
415
415
  });
416
- this._getTinymce().init(conf);
416
+ this._getTinymce().init(conf).catch(err => {
417
+ console.error('TinyMCE init failed', err);
418
+ });
417
419
  }
418
420
  _getTinymceSrc() {
419
421
  var _a;
package/package.json CHANGED
@@ -24,33 +24,34 @@
24
24
  "license": "MIT",
25
25
  "devDependencies": {
26
26
  "@ephox/agar": "^8.0.1",
27
- "@ephox/bedrock-client": "^14.1.1",
28
- "@ephox/bedrock-server": "^14.1.4",
27
+ "@ephox/bedrock-client": "^15.0.0",
28
+ "@ephox/bedrock-server": "^15.0.0",
29
29
  "@ephox/katamari": "^9.1.5",
30
30
  "@ephox/sugar": "^9.2.1",
31
31
  "@ephox/swag": "^4.6.0",
32
32
  "@tinymce/beehive-flow": "^0.19.0",
33
- "@tinymce/eslint-plugin": "^2.2.1",
33
+ "@tinymce/eslint-plugin": "^3.0.0",
34
34
  "@types/esm": "^3.2.0",
35
35
  "@types/express": "^5.0.0",
36
- "@types/node": "^22.7.7",
37
- "@typescript-eslint/eslint-plugin": "^5.48.2",
38
- "@typescript-eslint/parser": "^5.48.2",
39
- "eslint": "^8.32.0",
36
+ "@types/node": "^24.5.2",
37
+ "@typescript-eslint/eslint-plugin": "^8.44.0",
38
+ "@typescript-eslint/parser": "^8.44.0",
39
+ "eslint": "^9.36.0",
40
+ "eslint-config-eslint": "^13.0.0",
40
41
  "eslint-plugin-import": "^2.27.5",
41
42
  "eslint-plugin-prefer-arrow": "^1.2.3",
42
43
  "esm": "^3.2.25",
43
- "express": "^4.18.2",
44
+ "express": "^5.1.0",
44
45
  "rollup": "^4.24.0",
45
46
  "tinymce": "^8.0.0",
46
47
  "ts-loader": "^9.4.2",
47
48
  "ts-node": "^10.9.1",
48
- "typescript": "~5.6.3",
49
+ "typescript": "~5.9.2",
49
50
  "webpack": "^5.75.0"
50
51
  },
51
52
  "dependencies": {
52
53
  "@tinymce/miniature": "^6.0.0"
53
54
  },
54
- "version": "2.3.1",
55
+ "version": "2.3.2-feature.20250922100006595.shaed1c122",
55
56
  "name": "@tinymce/tinymce-webcomponent"
56
57
  }