@abraca/nuxt 2.0.7 → 2.0.8
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/module.json +1 -1
- package/dist/runtime/components/aware/AMedia.d.vue.ts +1 -1
- package/dist/runtime/components/aware/AMedia.vue.d.ts +1 -1
- package/dist/runtime/components/docs/ADocsSearch.d.vue.ts +1 -1
- package/dist/runtime/components/docs/ADocsSearch.vue.d.ts +1 -1
- package/dist/runtime/components/shell/AUserMenu.d.vue.ts +2 -2
- package/dist/runtime/components/shell/AUserMenu.vue.d.ts +2 -2
- package/package.json +2 -2
package/dist/module.json
CHANGED
|
@@ -12,8 +12,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
12
12
|
awareness: boolean;
|
|
13
13
|
tag: "video" | "audio";
|
|
14
14
|
live: boolean;
|
|
15
|
-
controls: boolean;
|
|
16
15
|
total: boolean;
|
|
16
|
+
controls: boolean;
|
|
17
17
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
18
|
declare const _default: typeof __VLS_export;
|
|
19
19
|
export default _default;
|
|
@@ -12,8 +12,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
12
12
|
awareness: boolean;
|
|
13
13
|
tag: "video" | "audio";
|
|
14
14
|
live: boolean;
|
|
15
|
-
controls: boolean;
|
|
16
15
|
total: boolean;
|
|
16
|
+
controls: boolean;
|
|
17
17
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
18
|
declare const _default: typeof __VLS_export;
|
|
19
19
|
export default _default;
|
|
@@ -238,8 +238,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<import
|
|
|
238
238
|
transition: boolean;
|
|
239
239
|
autofocus: boolean;
|
|
240
240
|
loading: boolean;
|
|
241
|
-
colorMode: boolean;
|
|
242
241
|
overlay: boolean;
|
|
242
|
+
colorMode: boolean;
|
|
243
243
|
dismissible: boolean;
|
|
244
244
|
fullscreen: boolean;
|
|
245
245
|
modal: boolean;
|
|
@@ -238,8 +238,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<import
|
|
|
238
238
|
transition: boolean;
|
|
239
239
|
autofocus: boolean;
|
|
240
240
|
loading: boolean;
|
|
241
|
-
colorMode: boolean;
|
|
242
241
|
overlay: boolean;
|
|
242
|
+
colorMode: boolean;
|
|
243
243
|
dismissible: boolean;
|
|
244
244
|
fullscreen: boolean;
|
|
245
245
|
modal: boolean;
|
|
@@ -12,13 +12,13 @@ type __VLS_Props = {
|
|
|
12
12
|
extraItems?: DropdownMenuItem[][];
|
|
13
13
|
};
|
|
14
14
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
+
logout: () => any;
|
|
15
16
|
"open-settings": () => any;
|
|
16
17
|
"open-account": () => any;
|
|
17
|
-
logout: () => any;
|
|
18
18
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
19
|
+
onLogout?: (() => any) | undefined;
|
|
19
20
|
"onOpen-settings"?: (() => any) | undefined;
|
|
20
21
|
"onOpen-account"?: (() => any) | undefined;
|
|
21
|
-
onLogout?: (() => any) | undefined;
|
|
22
22
|
}>, {
|
|
23
23
|
color: string;
|
|
24
24
|
collapsed: boolean;
|
|
@@ -12,13 +12,13 @@ type __VLS_Props = {
|
|
|
12
12
|
extraItems?: DropdownMenuItem[][];
|
|
13
13
|
};
|
|
14
14
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
+
logout: () => any;
|
|
15
16
|
"open-settings": () => any;
|
|
16
17
|
"open-account": () => any;
|
|
17
|
-
logout: () => any;
|
|
18
18
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
19
|
+
onLogout?: (() => any) | undefined;
|
|
19
20
|
"onOpen-settings"?: (() => any) | undefined;
|
|
20
21
|
"onOpen-account"?: (() => any) | undefined;
|
|
21
|
-
onLogout?: (() => any) | undefined;
|
|
22
22
|
}>, {
|
|
23
23
|
color: string;
|
|
24
24
|
collapsed: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abraca/nuxt",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.8",
|
|
4
4
|
"description": "First-class Nuxt module for the Abracadabra CRDT collaboration platform",
|
|
5
5
|
"repository": "abracadabra/abracadabra-nuxt",
|
|
6
6
|
"license": "MIT",
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"devDependencies": {
|
|
99
|
-
"@abraca/dabra": "^2.0.
|
|
99
|
+
"@abraca/dabra": "^2.0.8",
|
|
100
100
|
"@iconify-json/lucide": "^1.2.105",
|
|
101
101
|
"@noble/ed25519": "^3.1.0",
|
|
102
102
|
"@noble/hashes": "^2.2.0",
|