@saooti/octopus-sdk 29.0.25 → 29.0.29
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 +4 -0
- package/package.json +1 -1
- package/src/assets/form.scss +1 -0
- package/src/assets/modal.scss +1 -0
- package/src/components/display/comments/CommentItem.vue +0 -1
- package/src/components/display/podcasts/ParticipantDescription.vue +0 -1
- package/src/components/display/sharing/ShareButtons.vue +1 -0
- package/src/components/misc/Popover.vue +1 -2
- package/src/components/misc/Snackbar.vue +5 -0
package/README.md
CHANGED
|
@@ -492,4 +492,8 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
492
492
|
* 29.0.23 Eslint
|
|
493
493
|
* 29.0.24 Version stable vue3
|
|
494
494
|
* 29.0.25 Specific category does not display in correct order
|
|
495
|
+
* 29.0.26 Snackbar position
|
|
496
|
+
* 29.0.27 Petit cursor:pointer des familles
|
|
497
|
+
* 29.0.28 Petite couleur des familles
|
|
498
|
+
* 29.0.29 Amélioration Popover
|
|
495
499
|
|
package/package.json
CHANGED
package/src/assets/form.scss
CHANGED
package/src/assets/modal.scss
CHANGED
|
@@ -32,7 +32,6 @@ export default defineComponent({
|
|
|
32
32
|
placement: {type: String as PropType<Popover.Options['placement']>, default: 'right'},
|
|
33
33
|
target: {type: String, required: true},
|
|
34
34
|
title: {type: String, default: ''},
|
|
35
|
-
triggers: {type: String as PropType<Popover.Options['trigger']>, default: 'click'},
|
|
36
35
|
show: {type: Boolean, default: false},
|
|
37
36
|
disable: {type: Boolean, default: false},
|
|
38
37
|
},
|
|
@@ -46,7 +45,7 @@ export default defineComponent({
|
|
|
46
45
|
function initPopover(){
|
|
47
46
|
instance.value = new Popover(`#${props.target}`, {
|
|
48
47
|
container: 'body',
|
|
49
|
-
trigger:
|
|
48
|
+
trigger: "click hover",
|
|
50
49
|
placement: props.placement,
|
|
51
50
|
title: titleRef.value?.innerHTML || '',
|
|
52
51
|
content: contentRef.value?.innerHTML || '',
|