melonykit 0.6.1 → 0.6.3

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.
Files changed (2) hide show
  1. package/dist/browser.js +2 -2
  2. package/package.json +2 -2
package/dist/browser.js CHANGED
@@ -6,7 +6,7 @@ function i(e, t = !1) {
6
6
  t ? history.replaceState(null, "", e) : history.pushState(null, "", e), dispatchEvent(new PopStateEvent("popstate"));
7
7
  }
8
8
  //#endregion
9
- //#region src/browser/_use-query.js
9
+ //#region src/browser/_use-api-query.js
10
10
  var a = /* @__PURE__ */ new Map(), o = null;
11
11
  function s({ endpoint: i, event: a }) {
12
12
  let o = r(() => {
@@ -61,4 +61,4 @@ function l(e, t) {
61
61
  };
62
62
  }
63
63
  //#endregion
64
- export { i as routeTo, s as useQuery };
64
+ export { i as routeTo, s as useApiQuery };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Vadim Hermann",
3
3
  "name": "melonykit",
4
- "version": "0.6.1",
4
+ "version": "0.6.3",
5
5
  "type": "module",
6
6
  "description": "Preact based ui and utility functions toolkit",
7
7
  "main": "./dist/index.js",
@@ -16,7 +16,7 @@
16
16
  "exports": {
17
17
  ".": "./dist/index.js",
18
18
  "./functions": "./dist/functions.js",
19
- "./browser": "./dist/browser/browser.js",
19
+ "./browser": "./dist/browser.js",
20
20
  "./server": "./dist/server/server.js",
21
21
  "./assets/*": "./dist/assets/*"
22
22
  },