@vuetify/one 1.0.5 → 1.0.7
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 +4 -1
- package/dist/index.js +900 -983
- package/dist/style.css +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -595,6 +595,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
|
|
|
595
595
|
monthlyTotal: vue.ComputedRef<number | undefined>;
|
|
596
596
|
hasBilling: vue.ComputedRef<boolean>;
|
|
597
597
|
isLoading: vue.ShallowRef<boolean>;
|
|
598
|
+
isOpen: vue.Ref<boolean>;
|
|
598
599
|
isSubscriber: vue.ComputedRef<boolean | undefined>;
|
|
599
600
|
github: vue.ComputedRef<{
|
|
600
601
|
id: string;
|
|
@@ -819,7 +820,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
|
|
|
819
820
|
subscribe: (interval: string) => Promise<void>;
|
|
820
821
|
subscriptionInfo: () => Promise<any>;
|
|
821
822
|
verify: () => Promise<void>;
|
|
822
|
-
}, "info" | "isLoading" | "invoices" | "sessionId">>, Pick<{
|
|
823
|
+
}, "info" | "isLoading" | "invoices" | "sessionId" | "isOpen">>, Pick<{
|
|
823
824
|
info: vue.Ref<Info | undefined>;
|
|
824
825
|
interval: vue.ComputedRef<"month" | "year" | undefined>;
|
|
825
826
|
invoices: vue.Ref<{
|
|
@@ -904,6 +905,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
|
|
|
904
905
|
monthlyTotal: vue.ComputedRef<number | undefined>;
|
|
905
906
|
hasBilling: vue.ComputedRef<boolean>;
|
|
906
907
|
isLoading: vue.ShallowRef<boolean>;
|
|
908
|
+
isOpen: vue.Ref<boolean>;
|
|
907
909
|
isSubscriber: vue.ComputedRef<boolean | undefined>;
|
|
908
910
|
github: vue.ComputedRef<{
|
|
909
911
|
id: string;
|
|
@@ -1213,6 +1215,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
|
|
|
1213
1215
|
monthlyTotal: vue.ComputedRef<number | undefined>;
|
|
1214
1216
|
hasBilling: vue.ComputedRef<boolean>;
|
|
1215
1217
|
isLoading: vue.ShallowRef<boolean>;
|
|
1218
|
+
isOpen: vue.Ref<boolean>;
|
|
1216
1219
|
isSubscriber: vue.ComputedRef<boolean | undefined>;
|
|
1217
1220
|
github: vue.ComputedRef<{
|
|
1218
1221
|
id: string;
|