@vuetify/one 0.3.0 → 0.4.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/dist/index.d.ts CHANGED
@@ -92,7 +92,7 @@ declare const useAuthStore: pinia.StoreDefinition<"auth", pinia._UnwrapAll<Pick<
92
92
  }[];
93
93
  } | null>;
94
94
  url: string;
95
- isLoading: vue.ShallowRef<boolean>;
95
+ isLoading: vue.Ref<boolean> | vue.ShallowRef<boolean>;
96
96
  verify: {
97
97
  (force?: boolean): Promise<void>;
98
98
  promise: Promise<void> | null;
@@ -190,7 +190,7 @@ declare const useAuthStore: pinia.StoreDefinition<"auth", pinia._UnwrapAll<Pick<
190
190
  }[];
191
191
  } | null>;
192
192
  url: string;
193
- isLoading: vue.ShallowRef<boolean>;
193
+ isLoading: vue.Ref<boolean> | vue.ShallowRef<boolean>;
194
194
  verify: {
195
195
  (force?: boolean): Promise<void>;
196
196
  promise: Promise<void> | null;
@@ -288,7 +288,7 @@ declare const useAuthStore: pinia.StoreDefinition<"auth", pinia._UnwrapAll<Pick<
288
288
  }[];
289
289
  } | null>;
290
290
  url: string;
291
- isLoading: vue.ShallowRef<boolean>;
291
+ isLoading: vue.Ref<boolean> | vue.ShallowRef<boolean>;
292
292
  verify: {
293
293
  (force?: boolean): Promise<void>;
294
294
  promise: Promise<void> | null;
@@ -470,7 +470,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
470
470
  };
471
471
  };
472
472
  } | undefined>;
473
- isLoading: vue.ShallowRef<boolean>;
473
+ isLoading: vue.Ref<boolean> | vue.ShallowRef<boolean>;
474
474
  isSubscriber: vue.ComputedRef<boolean | undefined>;
475
475
  }, "isLoading">>, Pick<{
476
476
  activate: () => Promise<void>;
@@ -549,7 +549,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
549
549
  };
550
550
  };
551
551
  } | undefined>;
552
- isLoading: vue.ShallowRef<boolean>;
552
+ isLoading: vue.Ref<boolean> | vue.ShallowRef<boolean>;
553
553
  isSubscriber: vue.ComputedRef<boolean | undefined>;
554
554
  }, "isSubscriber" | "subscription">, Pick<{
555
555
  activate: () => Promise<void>;
@@ -628,7 +628,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
628
628
  };
629
629
  };
630
630
  } | undefined>;
631
- isLoading: vue.ShallowRef<boolean>;
631
+ isLoading: vue.Ref<boolean> | vue.ShallowRef<boolean>;
632
632
  isSubscriber: vue.ComputedRef<boolean | undefined>;
633
633
  }, "verify" | "cancel" | "activate" | "subscribe">>;
634
634
 
@@ -650,6 +650,7 @@ declare const useUserStore: pinia.StoreDefinition<"user", pinia._UnwrapAll<Pick<
650
650
  direction: vue.Ref<"ltr" | "rtl">;
651
651
  quickbar: vue.Ref<boolean>;
652
652
  railDrawer: vue.Ref<boolean>;
653
+ pinned: vue.Ref<Record<string, unknown>[]>;
653
654
  notifications: vue.Ref<{
654
655
  show: boolean;
655
656
  read: string[];
@@ -662,7 +663,7 @@ declare const useUserStore: pinia.StoreDefinition<"user", pinia._UnwrapAll<Pick<
662
663
  jobs: null | number;
663
664
  };
664
665
  }>;
665
- }, "direction" | "composition" | "v" | "api" | "avatar" | "dev" | "disableAds" | "pwaRefresh" | "slashSearch" | "syncSettings" | "theme" | "mixedTheme" | "quickbar" | "railDrawer" | "notifications">>, Pick<{
666
+ }, "direction" | "composition" | "v" | "api" | "avatar" | "dev" | "disableAds" | "pwaRefresh" | "slashSearch" | "syncSettings" | "theme" | "mixedTheme" | "quickbar" | "railDrawer" | "pinned" | "notifications">>, Pick<{
666
667
  load: () => void;
667
668
  save: () => void;
668
669
  reset: () => void;
@@ -680,6 +681,7 @@ declare const useUserStore: pinia.StoreDefinition<"user", pinia._UnwrapAll<Pick<
680
681
  direction: vue.Ref<"ltr" | "rtl">;
681
682
  quickbar: vue.Ref<boolean>;
682
683
  railDrawer: vue.Ref<boolean>;
684
+ pinned: vue.Ref<Record<string, unknown>[]>;
683
685
  notifications: vue.Ref<{
684
686
  show: boolean;
685
687
  read: string[];
@@ -710,6 +712,7 @@ declare const useUserStore: pinia.StoreDefinition<"user", pinia._UnwrapAll<Pick<
710
712
  direction: vue.Ref<"ltr" | "rtl">;
711
713
  quickbar: vue.Ref<boolean>;
712
714
  railDrawer: vue.Ref<boolean>;
715
+ pinned: vue.Ref<Record<string, unknown>[]>;
713
716
  notifications: vue.Ref<{
714
717
  show: boolean;
715
718
  read: string[];
package/dist/index.js CHANGED
@@ -56,6 +56,7 @@ const N = $("http", {
56
56
  theme: "system",
57
57
  mixedTheme: !0,
58
58
  direction: "ltr",
59
+ pinned: [],
59
60
  slashSearch: !1,
60
61
  syncSettings: !0,
61
62
  quickbar: !1,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vuetify/one",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "license": "MIT",