@iebh/tera-fy 1.11.5 → 1.13.0
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/CHANGELOG.md +32 -0
- package/api.md +295 -234
- package/dist/plugin.vue2.es2019.js +1 -1
- package/dist/terafy.es2019.js +2 -2
- package/dist/terafy.js +2 -2
- package/eslint.config.js +14 -0
- package/lib/terafy.client.js +88 -8
- package/lib/terafy.server.js +104 -6
- package/package.json +8 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
# [1.13.0](https://github.com/IEBH/TERA-fy/compare/v1.12.0...v1.13.0) (2024-07-09)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* Issue where minimize/maximize screwed around with local dev mode focusRequest() state ([68d547c](https://github.com/IEBH/TERA-fy/commit/68d547c48c9cdee6aa2a018d8d8372c336ffdb69))
|
|
9
|
+
* Stop trying to handshake after timeout has tripped ([cc11595](https://github.com/IEBH/TERA-fy/commit/cc11595b7a2e057b5bd8715dc762b0e7b56f3d86))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* Debugging functionality to watch patch paths via `{debugPaths: Array<String|Array>}` ([23003bc](https://github.com/IEBH/TERA-fy/commit/23003bcbf248a72c872fc1c504b552df6868a3a3))
|
|
15
|
+
* uiConfirm(), uiPrompt() & uiThrow() ([32f4378](https://github.com/IEBH/TERA-fy/commit/32f4378ea686cf89f2a36256bcc9d35d8ac2b23a))
|
|
16
|
+
|
|
17
|
+
# [1.12.0](https://github.com/IEBH/TERA-fy/compare/v1.11.5...v1.12.0) (2024-07-04)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* Better handling of TERA-fy server running in top-level mode and no iframes being present on the page ([31d2785](https://github.com/IEBH/TERA-fy/commit/31d2785344e525f4dd561cbc3e0b6b9696058f70))
|
|
23
|
+
* Dead code ([6c84c51](https://github.com/IEBH/TERA-fy/commit/6c84c51292ee55d6896d5eb61809332f1924b08f))
|
|
24
|
+
* Dont use the faulty jsonpatch.com standard as object keys dont get correctly escaped ([949cb14](https://github.com/IEBH/TERA-fy/commit/949cb14c01039c9c1e33baf9fd8742a14ee18a74))
|
|
25
|
+
|
|
26
|
+
## [1.11.6](https://github.com/IEBH/TERA-fy/compare/v1.11.5...v1.11.6) (2024-07-04)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
* Better handling of TERA-fy server running in top-level mode and no iframes being present on the page ([31d2785](https://github.com/IEBH/TERA-fy/commit/31d2785344e525f4dd561cbc3e0b6b9696058f70))
|
|
32
|
+
* Dead code ([6c84c51](https://github.com/IEBH/TERA-fy/commit/6c84c51292ee55d6896d5eb61809332f1924b08f))
|
|
33
|
+
* Dont use the faulty jsonpatch.com standard as object keys dont get correctly escaped ([949cb14](https://github.com/IEBH/TERA-fy/commit/949cb14c01039c9c1e33baf9fd8742a14ee18a74))
|
|
34
|
+
|
|
3
35
|
## [1.11.5](https://github.com/IEBH/TERA-fy/compare/v1.11.4...v1.11.5) (2024-07-03)
|
|
4
36
|
|
|
5
37
|
|