@saooti/octopus-sdk 41.0.0-SNAPSHOT → 41.0.2-SNAPSHOT
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/package.json +1 -1
- package/src/components/display/comments/item/CommentItem.vue +4 -0
- package/src/components/display/edit/EditBox.vue +4 -0
- package/src/components/display/sharing/SharePlayer.vue +1 -1
- package/src/components/display/sharing/SharePlayerTypes.vue +2 -2
- package/src/components/form/ClassicMultiselect.vue +5 -0
- package/src/components/misc/ClassicPopover.vue +6 -1
- package/src/components/misc/FooterSection.vue +8 -1
package/package.json
CHANGED
|
@@ -85,9 +85,9 @@ const optionsSelect = computed(() => {
|
|
|
85
85
|
{ name: t("Default version"), value: "default", condition: true },
|
|
86
86
|
{ name: t("Large version"), value: "largeMore", condition: props.podcast?.podcastId, },
|
|
87
87
|
{
|
|
88
|
-
name: t("Minimalist length version"),
|
|
88
|
+
name: props.podcast?.podcastId ? t("Minimalist length version"): t("Large version"),
|
|
89
89
|
value: "large",
|
|
90
|
-
condition:
|
|
90
|
+
condition: true,
|
|
91
91
|
},
|
|
92
92
|
{
|
|
93
93
|
name: t("Emission version"),
|
|
@@ -179,6 +179,11 @@ function onOptionDeselect(event: unknown): void {
|
|
|
179
179
|
}
|
|
180
180
|
emit("selected", optionSelected.value);
|
|
181
181
|
}
|
|
182
|
+
|
|
183
|
+
//Expose
|
|
184
|
+
defineExpose({
|
|
185
|
+
afterSearch
|
|
186
|
+
});
|
|
182
187
|
</script>
|
|
183
188
|
<style lang="scss">
|
|
184
189
|
@use "vue-select/dist/vue-select.css";
|
|
@@ -265,7 +265,7 @@ function clearDataBlur(e: FocusEvent) {
|
|
|
265
265
|
if (!(myElement as HTMLAnchorElement).href) {
|
|
266
266
|
return clearClick();
|
|
267
267
|
}
|
|
268
|
-
if (myElement.classList.contains("
|
|
268
|
+
if (myElement.classList.contains("realLink")) {
|
|
269
269
|
myElement.click();
|
|
270
270
|
} else {
|
|
271
271
|
router.push((myElement as HTMLAnchorElement).pathname);
|
|
@@ -295,6 +295,11 @@ function clearData() {
|
|
|
295
295
|
posX.value = 0;
|
|
296
296
|
posY.value = 0;
|
|
297
297
|
}
|
|
298
|
+
|
|
299
|
+
//Expose
|
|
300
|
+
defineExpose({
|
|
301
|
+
clearClick
|
|
302
|
+
});
|
|
298
303
|
</script>
|
|
299
304
|
<style lang="scss">
|
|
300
305
|
|
|
@@ -19,7 +19,10 @@
|
|
|
19
19
|
>
|
|
20
20
|
<router-link
|
|
21
21
|
class="link-hover special-select-align-magic-trick"
|
|
22
|
-
:to="
|
|
22
|
+
:to="{
|
|
23
|
+
name: link.routeName,
|
|
24
|
+
query: getQueriesRouter(link.routeName),
|
|
25
|
+
}"
|
|
23
26
|
>
|
|
24
27
|
{{ link.title }}
|
|
25
28
|
</router-link>
|
|
@@ -192,6 +195,10 @@ async function onOrganisationSelected( organisation: Organisation | undefined):
|
|
|
192
195
|
});
|
|
193
196
|
}
|
|
194
197
|
}
|
|
198
|
+
//Expose
|
|
199
|
+
defineExpose({
|
|
200
|
+
updateComment
|
|
201
|
+
});
|
|
195
202
|
</script>
|
|
196
203
|
|
|
197
204
|
<style lang="scss">
|