@hybridly/vue 0.5.2 → 0.5.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.
package/dist/index.cjs CHANGED
@@ -481,12 +481,6 @@ async function initializeHybridly(options = {}) {
481
481
  },
482
482
  payload
483
483
  }));
484
- if (typeof window !== "undefined") {
485
- window.addEventListener("hybridly:routing", (event) => {
486
- state.context.value?.adapter.updateRoutingConfiguration(event.detail);
487
- });
488
- window.dispatchEvent(new CustomEvent("hybridly:routing", { detail: window?.hybridly?.routing }));
489
- }
490
484
  const render = () => vue.h(wrapper);
491
485
  if (options.setup) {
492
486
  return await options.setup({
package/dist/index.d.cts CHANGED
@@ -728,7 +728,7 @@ declare global {
728
728
  /**
729
729
  * The type of this filter.
730
730
  */
731
- type: 'trashed' | 'callback' | 'exact' | 'similarity:loose' | 'similarity:begins_with_strict' | 'similarity:ends_with_strict' | string;
731
+ type: 'trashed' | 'callback' | 'exact' | 'similar:loose' | 'similar:begins_with_strict' | 'similar:ends_with_strict' | string;
732
732
  /**
733
733
  * The label of the filter.
734
734
  */
package/dist/index.d.mts CHANGED
@@ -728,7 +728,7 @@ declare global {
728
728
  /**
729
729
  * The type of this filter.
730
730
  */
731
- type: 'trashed' | 'callback' | 'exact' | 'similarity:loose' | 'similarity:begins_with_strict' | 'similarity:ends_with_strict' | string;
731
+ type: 'trashed' | 'callback' | 'exact' | 'similar:loose' | 'similar:begins_with_strict' | 'similar:ends_with_strict' | string;
732
732
  /**
733
733
  * The label of the filter.
734
734
  */
package/dist/index.d.ts CHANGED
@@ -728,7 +728,7 @@ declare global {
728
728
  /**
729
729
  * The type of this filter.
730
730
  */
731
- type: 'trashed' | 'callback' | 'exact' | 'similarity:loose' | 'similarity:begins_with_strict' | 'similarity:ends_with_strict' | string;
731
+ type: 'trashed' | 'callback' | 'exact' | 'similar:loose' | 'similar:begins_with_strict' | 'similar:ends_with_strict' | string;
732
732
  /**
733
733
  * The label of the filter.
734
734
  */
package/dist/index.mjs CHANGED
@@ -474,12 +474,6 @@ async function initializeHybridly(options = {}) {
474
474
  },
475
475
  payload
476
476
  }));
477
- if (typeof window !== "undefined") {
478
- window.addEventListener("hybridly:routing", (event) => {
479
- state.context.value?.adapter.updateRoutingConfiguration(event.detail);
480
- });
481
- window.dispatchEvent(new CustomEvent("hybridly:routing", { detail: window?.hybridly?.routing }));
482
- }
483
477
  const render = () => h(wrapper);
484
478
  if (options.setup) {
485
479
  return await options.setup({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hybridly/vue",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "description": "Vue adapter for Hybridly",
5
5
  "keywords": [
6
6
  "hybridly",
@@ -44,8 +44,8 @@
44
44
  "lodash.isequal": "^4.5.0",
45
45
  "nprogress": "^0.2.0",
46
46
  "qs": "^6.11.2",
47
- "@hybridly/core": "0.5.2",
48
- "@hybridly/utils": "0.5.2"
47
+ "@hybridly/core": "0.5.3",
48
+ "@hybridly/utils": "0.5.3"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@types/lodash": "^4.14.199",