srcdev-nuxt-components 2.5.5 → 2.5.6
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.
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
<details class="overflow-details" :class="[{ 'visually-hidden': !navLoaded || !showOverflowDetails }]"
|
|
39
39
|
ref="overflowDetails" name="overflow-group">
|
|
40
40
|
<summary class="overflow-details-summary has-toggle-icon">
|
|
41
|
-
<slot
|
|
41
|
+
<slot name="overflowDetailsSummaryIcon">
|
|
42
42
|
<Icon name="gravity-ui:ellipsis" class="icon" />
|
|
43
43
|
</slot>
|
|
44
44
|
</summary>
|
|
@@ -87,7 +87,6 @@ const props = defineProps({
|
|
|
87
87
|
|
|
88
88
|
const slots = useSlots();
|
|
89
89
|
const hasSecondaryNavigation = computed(() => slots.secondaryNavigation !== undefined);
|
|
90
|
-
const hasOverflowDetailsSummaryIcon = computed(() => slots.overflowDetailsSummaryIcon !== undefined);
|
|
91
90
|
|
|
92
91
|
const navLoaded = ref(false);
|
|
93
92
|
const navigationWrapperRef = useTemplateRef('navigationWrapper');
|
package/package.json
CHANGED