@apptegy/nuxt-navigation 0.1.78 → 0.1.79
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
CHANGED
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
<button v-if="!lockedExpanded && allowCollapse && expanded" class="hamburger-button" @click="lockSidebar" v-tooltip.bottom="'Pin menu open'">
|
|
43
43
|
<Unpinned />
|
|
44
44
|
</button>
|
|
45
|
-
<button v-if="!lockedExpanded && allowCollapse && !expanded" class="hamburger-button">
|
|
45
|
+
<button v-if="!lockedExpanded && allowCollapse && !expanded" class="hamburger-button" @click="onHover">
|
|
46
46
|
<a-icon icon="24:hamburger" />
|
|
47
47
|
</button>
|
|
48
48
|
</div>
|
|
@@ -122,7 +122,7 @@ const props = defineProps({
|
|
|
122
122
|
isAdmin: { type: Boolean, required: false, default: false },
|
|
123
123
|
settingsRoute: { type: String, required: true, default: "" },
|
|
124
124
|
schoolWebsite: { type: String, required: true, default: "" },
|
|
125
|
-
showCollapseButton: { type: Boolean, required: false }
|
|
125
|
+
showCollapseButton: { type: Boolean, required: false, default: false }
|
|
126
126
|
});
|
|
127
127
|
const emit = defineEmits(["toggle-expand"]);
|
|
128
128
|
const { state: expanded } = useSidebar();
|
|
@@ -50,6 +50,7 @@ declare const __VLS_component: import("vue").DefineComponent<ISidebarProps, void
|
|
|
50
50
|
skipToContent: string;
|
|
51
51
|
useApptegyLogo: boolean;
|
|
52
52
|
isAdmin: boolean;
|
|
53
|
+
showCollapseButton: boolean;
|
|
53
54
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
54
55
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
55
56
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apptegy/nuxt-navigation",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.79",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"vue": "^3.5.13",
|
|
47
47
|
"vue-tsc": "^3.0.3"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "edcb211c421e908188dc18cda3ce4be1adb7cf97"
|
|
50
50
|
}
|