@saooti/octopus-sdk 41.0.1-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/form/ClassicMultiselect.vue +5 -0
- package/src/components/misc/ClassicPopover.vue +5 -0
- package/src/components/misc/FooterSection.vue +8 -1
package/package.json
CHANGED
|
@@ -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";
|
|
@@ -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">
|