@saooti/octopus-sdk 30.0.5 → 30.0.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.
- package/README.md +2 -0
- package/package.json +1 -1
- package/src/assets/form.scss +0 -15
- package/src/assets/multiselect.scss +1 -1
- package/src/components/display/comments/CommentItem.vue +1 -0
- package/src/components/display/filter/AdvancedSearch.vue +0 -4
- package/src/components/display/podcasts/ParticipantDescription.vue +1 -0
- package/src/components/display/sharing/ShareButtons.vue +1 -1
- package/src/components/misc/Popover.vue +8 -2
package/README.md
CHANGED
|
@@ -496,9 +496,11 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
496
496
|
* 29.0.27 Petit cursor:pointer des familles
|
|
497
497
|
* 29.0.28 Petite couleur des familles
|
|
498
498
|
* 29.0.29 Amélioration Popover
|
|
499
|
+
* 29.0.30 Amélioration Popover
|
|
499
500
|
|
|
500
501
|
* 30.0.1 Nouveau sprint
|
|
501
502
|
* 30.0.2 Correction css
|
|
502
503
|
* 30.0.3 Ajout tag page podcast
|
|
503
504
|
* 30.0.4 Remplacer la version "classique" des miniplayers par la version beta
|
|
504
505
|
* 30.0.5 Tri des classes dans des sous dossiers
|
|
506
|
+
* 30.0.6 Merge 29
|
package/package.json
CHANGED
package/src/assets/form.scss
CHANGED
|
@@ -35,21 +35,6 @@
|
|
|
35
35
|
cursor: pointer;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
.basic-select{
|
|
39
|
-
background: white;
|
|
40
|
-
min-height: 40px;
|
|
41
|
-
text-align: left;
|
|
42
|
-
color: #35495e;
|
|
43
|
-
padding: 0.5rem;
|
|
44
|
-
border-radius: 0.3rem;
|
|
45
|
-
border-style: none;
|
|
46
|
-
outline: transparent;
|
|
47
|
-
width: 350px;
|
|
48
|
-
margin-bottom: 1rem;
|
|
49
|
-
overflow: hidden;
|
|
50
|
-
text-overflow: ellipsis;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
38
|
.filter-search-input{
|
|
54
39
|
flex-grow: 1;
|
|
55
40
|
height: 2rem;
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
v-if="authenticated"
|
|
15
15
|
id="popover-share-help"
|
|
16
16
|
role="button"
|
|
17
|
+
tabindex="-1"
|
|
17
18
|
class="saooti-help ml-2"
|
|
18
19
|
:aria-label="$t('Help')"
|
|
19
20
|
/>
|
|
20
21
|
<Popover
|
|
21
22
|
v-if="authenticated"
|
|
22
23
|
target="popover-share-help"
|
|
23
|
-
triggers="hover"
|
|
24
24
|
placement="right"
|
|
25
25
|
>
|
|
26
26
|
{{ $t('Share this page without edit and share blocks') }}
|
|
@@ -45,7 +45,7 @@ export default defineComponent({
|
|
|
45
45
|
function initPopover(){
|
|
46
46
|
instance.value = new Popover(`#${props.target}`, {
|
|
47
47
|
container: 'body',
|
|
48
|
-
trigger: "
|
|
48
|
+
trigger: "hover focus",
|
|
49
49
|
placement: props.placement,
|
|
50
50
|
title: titleRef.value?.innerHTML || '',
|
|
51
51
|
content: contentRef.value?.innerHTML || '',
|
|
@@ -104,4 +104,10 @@ export default defineComponent({
|
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
})
|
|
107
|
-
</script>
|
|
107
|
+
</script>
|
|
108
|
+
<style lang="scss">
|
|
109
|
+
.popover{
|
|
110
|
+
max-height: 80vh;
|
|
111
|
+
overflow: auto;
|
|
112
|
+
}
|
|
113
|
+
</style>
|