jplan-pack 0.5.78 → 0.5.80
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/AuthRoute-BVkVgozS.mjs +47 -0
- package/dist/AuthRoute-BmRJRYJO.js +1 -0
- package/dist/index-DxDzRD5z.js +87 -0
- package/dist/index-f8QFuTOW.mjs +24184 -0
- package/dist/jplan-pack.cjs.js +1 -87
- package/dist/jplan-pack.es.js +48 -24167
- package/dist/types/_auth/_dev/AuthRoute.d.ts +2 -0
- package/dist/types/_auth/_dev/authRoute.d.ts +7 -0
- package/dist/types/composables/index.d.ts +1 -2
- package/dist/types/modules/scope/__scopedClient.d.ts +3 -0
- package/package.json +1 -1
- package/dist/types/composables/useGlobalScope.d.ts +0 -30
@@ -0,0 +1,2 @@
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
2
|
+
export default _default;
|
@@ -1,6 +1,5 @@
|
|
1
1
|
import { useCustomizer } from './useCustomizer';
|
2
2
|
import { useDialog } from './useDialog';
|
3
3
|
import { ___spinner } from './__spinner';
|
4
|
-
import { default as useGlobalScope } from './useGlobalScope';
|
5
4
|
import { useToast } from 'vue-toastification';
|
6
|
-
export { useCustomizer, useDialog,
|
5
|
+
export { useCustomizer, useDialog, useToast, __spinner, };
|
package/package.json
CHANGED
@@ -1,30 +0,0 @@
|
|
1
|
-
import { Ref } from 'vue';
|
2
|
-
import { Session } from '../types/client/scope';
|
3
|
-
export default function useGlobalScope(): {
|
4
|
-
setGlobalScope: (newScope: Session | null) => void;
|
5
|
-
globalScope: Readonly<Ref<Readonly<Ref<{
|
6
|
-
readonly domain: Readonly<string>;
|
7
|
-
readonly environment: Readonly<string>;
|
8
|
-
readonly scope_type?: "org" | "team" | "shared" | "user" | "" | undefined;
|
9
|
-
readonly organization?: string | undefined;
|
10
|
-
readonly team?: string | undefined;
|
11
|
-
} | null, {
|
12
|
-
readonly domain: Readonly<string>;
|
13
|
-
readonly environment: Readonly<string>;
|
14
|
-
readonly scope_type?: "org" | "team" | "shared" | "user" | "" | undefined;
|
15
|
-
readonly organization?: string | undefined;
|
16
|
-
readonly team?: string | undefined;
|
17
|
-
} | null>>, Readonly<Ref<{
|
18
|
-
readonly domain: Readonly<string>;
|
19
|
-
readonly environment: Readonly<string>;
|
20
|
-
readonly scope_type?: "org" | "team" | "shared" | "user" | "" | undefined;
|
21
|
-
readonly organization?: string | undefined;
|
22
|
-
readonly team?: string | undefined;
|
23
|
-
} | null, {
|
24
|
-
readonly domain: Readonly<string>;
|
25
|
-
readonly environment: Readonly<string>;
|
26
|
-
readonly scope_type?: "org" | "team" | "shared" | "user" | "" | undefined;
|
27
|
-
readonly organization?: string | undefined;
|
28
|
-
readonly team?: string | undefined;
|
29
|
-
} | null>>>>;
|
30
|
-
};
|