@elementor/query 0.1.0 → 0.1.2

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 CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.1.2](https://github.com/elementor/elementor-packages/compare/@elementor/query@0.1.1...@elementor/query@0.1.2) (2023-09-26)
7
+
8
+ **Note:** Version bump only for package @elementor/query
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.1.1](https://github.com/elementor/elementor-packages/compare/@elementor/query@0.1.0...@elementor/query@0.1.1) (2023-06-29)
15
+
16
+ **Note:** Version bump only for package @elementor/query
17
+
18
+
19
+
20
+
21
+
6
22
  # 0.1.0 (2023-06-28)
7
23
 
8
24
 
package/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # Query
2
2
 
3
- > **Warning**
4
- >
5
- > This package is under development and not ready for production use.
3
+ This package is a wrapper around `@tanstack/react-query` in order to easily expose it in the Editor.
6
4
 
7
- This package is a wrapper around `react-query` in order to easily expose it in the Editor.
5
+ For more information about `@tanstack/react-query` please refer to the [official documentation](https://tanstack.com/query/v4/docs/react/overview).
8
6
 
9
- For more information about `react-query` please refer to the [official documentation](https://tanstack.com/query/v4/docs/react/overview).
7
+ > [!WARNING]
8
+ > Please refrain from accessing or depending on functions and variables starting with double underscores, as they are subject to change without notice.
9
+ > Naming convention involving double underscores (`__`) as a prefix to indicate that a function or variable is meant for internal use and should not be accessed or relied upon by third-party developers.
10
10
 
11
11
  ## Usage
12
12
 
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@elementor/query",
3
- "version": "0.1.0",
3
+ "description": "Wrapper around `@tanstack/react-query`",
4
+ "version": "0.1.2",
4
5
  "private": false,
5
6
  "author": "Elementor Team",
6
7
  "homepage": "https://elementor.com/",
@@ -35,7 +36,7 @@
35
36
  "react": "18.x"
36
37
  },
37
38
  "dependencies": {
38
- "@tanstack/react-query": "^4.29.15"
39
+ "@tanstack/react-query": "^4.29.19"
39
40
  },
40
- "gitHead": "f49a8d92dae1c54284e15b723d2f66e0c473280b"
41
+ "gitHead": "63057364b22f05d593555c5953b6b18766c21428"
41
42
  }