@saooti/octopus-sdk 31.0.36 → 31.0.37
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/README.md +1 -0
- package/index.ts +5 -2
- package/package.json +1 -1
- package/src/components/display/sharing/ShareButtons.vue +2 -2
package/README.md
CHANGED
package/index.ts
CHANGED
|
@@ -59,6 +59,7 @@ import ClassicRadio from "./src/components/form/ClassicRadio.vue";
|
|
|
59
59
|
import ClassicLoading from "./src/components/form/ClassicLoading.vue";
|
|
60
60
|
import ClassicSelect from "./src/components/form/ClassicSelect.vue";
|
|
61
61
|
import Paginate from "./src/components/display/list/Paginate.vue";
|
|
62
|
+
import ListPaginate from "./src/components/display/list/ListPaginate.vue";
|
|
62
63
|
|
|
63
64
|
//mixins
|
|
64
65
|
import {selenium} from "./src/components/mixins/functions";
|
|
@@ -120,7 +121,8 @@ const components = {
|
|
|
120
121
|
PodcastPlaylistInlineList,
|
|
121
122
|
ClassicSelect,
|
|
122
123
|
Error403Page,
|
|
123
|
-
Paginate
|
|
124
|
+
Paginate,
|
|
125
|
+
ListPaginate
|
|
124
126
|
}
|
|
125
127
|
|
|
126
128
|
export default components;
|
|
@@ -177,5 +179,6 @@ export {
|
|
|
177
179
|
PodcastPlaylistInlineList,
|
|
178
180
|
ClassicSelect,
|
|
179
181
|
Error403Page,
|
|
180
|
-
Paginate
|
|
182
|
+
Paginate,
|
|
183
|
+
ListPaginate
|
|
181
184
|
};
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<template
|
|
4
4
|
v-if="authenticated || participantId || organisationId || notExclusive"
|
|
5
5
|
>
|
|
6
|
-
<div class="d-flex
|
|
6
|
+
<div class="d-flex mb-2">
|
|
7
7
|
<h3 class="mb-0">
|
|
8
8
|
{{ $t('Share') }}
|
|
9
9
|
</h3>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
id="popover-share-help"
|
|
13
13
|
role="button"
|
|
14
14
|
tabindex="-1"
|
|
15
|
-
class="saooti-help ms-2"
|
|
15
|
+
class="saooti-help ms-2 align-items-start"
|
|
16
16
|
:title="$t('Help')"
|
|
17
17
|
/>
|
|
18
18
|
<Popover
|