@iebh/tera-fy 1.15.8 → 2.0.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 +38 -0
- package/api.md +621 -488
- package/dist/plugin.vue2.es2019.js +2294 -1
- package/dist/terafy.es2019.js +2 -2
- package/dist/terafy.js +2 -2
- package/eslint.config.js +5 -0
- package/lib/syncro.js +452 -0
- package/lib/terafy.client.js +161 -26
- package/lib/terafy.server.js +66 -21
- package/package.json +6 -3
- package/plugins/base.js +2 -3
- package/plugins/firebase.js +122 -0
- package/plugins/vue2.js +88 -96
- package/plugins/vue3.js +38 -137
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
# [2.0.0](https://github.com/IEBH/TERA-fy/compare/v1.15.9...v2.0.0) (2025-02-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### feat
|
|
7
|
+
|
|
8
|
+
* getCredentials() ([c4dfabd](https://github.com/IEBH/TERA-fy/commit/c4dfabd54772ea61f360021d98df7d54c1702000))
|
|
9
|
+
* getCredentials() ([afa601e](https://github.com/IEBH/TERA-fy/commit/afa601e0601c12f7e1fc6c4c31e19a0b041e2f21))
|
|
10
|
+
* listNamespaces() ([40239c5](https://github.com/IEBH/TERA-fy/commit/40239c5feb3724da3efc05e638329cdfafc93340))
|
|
11
|
+
* Prorotype usage for new Firestore mounting ([0b25973](https://github.com/IEBH/TERA-fy/commit/0b259730cd64e1f9ec101f8da8969f269ba3222e))
|
|
12
|
+
|
|
13
|
+
### fix
|
|
14
|
+
|
|
15
|
+
* Confision between isHtml & bodyHtml -> isHtml ([60a479e](https://github.com/IEBH/TERA-fy/commit/60a479ecf84181f52e9a4fa70b248c07f6b91bd6))
|
|
16
|
+
* mixin() now supports layered class inheritence ([dd8c5d7](https://github.com/IEBH/TERA-fy/commit/dd8c5d78e7d06be755513fb2e218f1a6ba9d8bf1))
|
|
17
|
+
* mixin() now supports non-function inheritence ([02ff2c2](https://github.com/IEBH/TERA-fy/commit/02ff2c2d8b74289227bde62e8f042480a0d3d84f))
|
|
18
|
+
* Various copy-paste typos ([c6198c8](https://github.com/IEBH/TERA-fy/commit/c6198c8246a9e96295619983356e6bad9f4c418f))
|
|
19
|
+
|
|
20
|
+
### refactor
|
|
21
|
+
|
|
22
|
+
* Depreciate setProjectStateFlush() ([64530d5](https://github.com/IEBH/TERA-fy/commit/64530d53d907ff5c5dd012bdc40bc9fc07b9d5b4))
|
|
23
|
+
|
|
24
|
+
### task
|
|
25
|
+
|
|
26
|
+
* Beginning of Firebase implementation core ([d65b9c0](https://github.com/IEBH/TERA-fy/commit/d65b9c0cb095c717b9a2192e979f296598f38765))
|
|
27
|
+
* Vue@2 plugin now working ([437a414](https://github.com/IEBH/TERA-fy/commit/437a4140bf321d23e4842bce2cb6d3d4d82c66dd))
|
|
28
|
+
|
|
29
|
+
## [1.15.9](https://github.com/IEBH/TERA-fy/compare/v1.15.8...v1.15.9) (2025-01-22)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### fix
|
|
33
|
+
|
|
34
|
+
* Better handling for empty state patches ([93c59f6](https://github.com/IEBH/TERA-fy/commit/93c59f60f2635b8f6696bd597e5091a76d35d320))
|
|
35
|
+
* Flatten Vue2/3 state content when preping server patches ([ade2b76](https://github.com/IEBH/TERA-fy/commit/ade2b76f8470ebadfc2cbc04f1434bec57f31354))
|
|
36
|
+
|
|
37
|
+
### task
|
|
38
|
+
|
|
39
|
+
* Bump eslint + ruleset to latest ([8471a1f](https://github.com/IEBH/TERA-fy/commit/8471a1f476f02402150ce2fbd50914a9cf12354d))
|
|
40
|
+
|
|
3
41
|
## [1.15.8](https://github.com/IEBH/TERA-fy/compare/v1.15.7...v1.15.8) (2025-01-16)
|
|
4
42
|
|
|
5
43
|
|