sprintify-ui 0.8.61 → 0.8.62

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.
@@ -27547,7 +27547,9 @@ const m4 = ["align", "colspan"], Jx = /* @__PURE__ */ oe({
27547
27547
  */
27548
27548
  storageKey: {
27549
27549
  type: String,
27550
- default: window.location.pathname
27550
+ default() {
27551
+ return window.location.pathname;
27552
+ }
27551
27553
  }
27552
27554
  },
27553
27555
  emits: [
@@ -1107,7 +1107,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
1107
1107
  */
1108
1108
  storageKey: {
1109
1109
  type: StringConstructor;
1110
- default: string;
1110
+ default(): string;
1111
1111
  };
1112
1112
  }>, {
1113
1113
  fetch: typeof fetch;
@@ -1363,7 +1363,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
1363
1363
  */
1364
1364
  storageKey: {
1365
1365
  type: StringConstructor;
1366
- default: string;
1366
+ default(): string;
1367
1367
  };
1368
1368
  }>> & Readonly<{
1369
1369
  onDelete?: ((...args: any[]) => any) | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.8.61",
3
+ "version": "0.8.62",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "rimraf dist && vue-tsc && vite build",
@@ -563,7 +563,9 @@ const props = defineProps({
563
563
  */
564
564
  storageKey: {
565
565
  type: String,
566
- default: window.location.pathname,
566
+ default() {
567
+ return window.location.pathname;
568
+ },
567
569
  },
568
570
  });
569
571