@saooti/octopus-sdk 41.5.6 → 41.5.8
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/.serena/project.yml
CHANGED
|
@@ -109,3 +109,7 @@ default_modes:
|
|
|
109
109
|
# fixed set of tools to use as the base tool set (if non-empty), replacing Serena's default set of tools.
|
|
110
110
|
# This cannot be combined with non-empty excluded_tools or included_optional_tools.
|
|
111
111
|
fixed_tools: []
|
|
112
|
+
|
|
113
|
+
# override of the corresponding setting in serena_config.yml, see the documentation there.
|
|
114
|
+
# If null or missing, the value from the global config is used.
|
|
115
|
+
symbol_info_budget:
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 41.5.8 (24/02/2026)
|
|
4
|
+
|
|
5
|
+
**Fix**
|
|
6
|
+
|
|
7
|
+
- Correction "Tout sélectionner" du `ClassicMultiselect`
|
|
8
|
+
|
|
9
|
+
## 41.5.7 (20/02/2026)
|
|
10
|
+
|
|
11
|
+
**Fix**
|
|
12
|
+
|
|
13
|
+
- Correction affichage composants utilisant `swiper`
|
|
14
|
+
|
|
3
15
|
## 41.5.6 (20/02/2026)
|
|
4
16
|
|
|
5
17
|
**Misc**
|
package/package.json
CHANGED
|
@@ -10,15 +10,17 @@
|
|
|
10
10
|
:slides-offset-after="offsetSwiper"
|
|
11
11
|
:allow-slide-next="loop"
|
|
12
12
|
:allow-slide-prev="loop"
|
|
13
|
-
:navigation="
|
|
13
|
+
:navigation="navigationOptions"
|
|
14
14
|
:modules="modules"
|
|
15
15
|
@slides-updated="slidesUpdated"
|
|
16
16
|
@slide-change="slideChange"
|
|
17
17
|
>
|
|
18
|
-
<swiper-slide v-for="(obj, index) in listObject" :key="
|
|
18
|
+
<swiper-slide v-for="(obj, index) in listObject" :key="index">
|
|
19
19
|
<slot v-if="composableInit" name="octopusSlide" :option="obj" :index="index" />
|
|
20
20
|
</swiper-slide>
|
|
21
21
|
</swiper>
|
|
22
|
+
<div :id="prevElId" class="swiper-button-prev" />
|
|
23
|
+
<div :id="nextElId" class="swiper-button-next" />
|
|
22
24
|
</template>
|
|
23
25
|
<div v-else-if="composableInit" class="element-list-inline">
|
|
24
26
|
<div v-for="(obj, index) in listObject" :key="obj" class="element-list-item">
|
|
@@ -36,7 +38,7 @@ import { Navigation } from "swiper/modules";
|
|
|
36
38
|
import "swiper/css";
|
|
37
39
|
import "swiper/css/navigation";
|
|
38
40
|
import {useResizePhone} from "../../composable/useResizePhone";
|
|
39
|
-
import { computed, nextTick, onMounted, ref, useTemplateRef, watch } from "vue";
|
|
41
|
+
import { computed, getCurrentInstance, nextTick, onMounted, ref, useTemplateRef, watch } from "vue";
|
|
40
42
|
|
|
41
43
|
//Props
|
|
42
44
|
const props = defineProps({
|
|
@@ -48,7 +50,7 @@ const props = defineProps({
|
|
|
48
50
|
//Data
|
|
49
51
|
const manualReload = ref(0);
|
|
50
52
|
const numberItem = ref(5);
|
|
51
|
-
const offsetSwiper = ref(
|
|
53
|
+
const offsetSwiper = ref(0);
|
|
52
54
|
const widthSwiperUsable = ref(0);
|
|
53
55
|
const itemSizeWithoutRecalculed = ref(0);
|
|
54
56
|
const composableInit = ref(false);
|
|
@@ -86,6 +88,17 @@ const modules = computed(() => {
|
|
|
86
88
|
}
|
|
87
89
|
});
|
|
88
90
|
|
|
91
|
+
const uid = computed((): number => {
|
|
92
|
+
const instance = getCurrentInstance();
|
|
93
|
+
return instance.uid;
|
|
94
|
+
});
|
|
95
|
+
const prevElId = computed((): string => 'swiper-button-prev-' + uid.value);
|
|
96
|
+
const nextElId = computed((): string => 'swiper-button-next-' + uid.value);
|
|
97
|
+
const navigationOptions = computed(() => ({
|
|
98
|
+
prevEl: '#' + prevElId.value,
|
|
99
|
+
nextEl: '#' + nextElId.value
|
|
100
|
+
}));
|
|
101
|
+
|
|
89
102
|
//Watch
|
|
90
103
|
watch(windowWidth, () => onWindowResize());
|
|
91
104
|
watch(()=>props.listObject, () => {
|
|
@@ -143,12 +156,11 @@ function slideChange() {
|
|
|
143
156
|
(nbTransformItems * itemRecalculizedSize.value + offsetSwiper.value) +
|
|
144
157
|
"px, 0px, 0px)";
|
|
145
158
|
}
|
|
146
|
-
|
|
147
159
|
</script>
|
|
148
|
-
<style lang="scss">
|
|
149
160
|
|
|
161
|
+
<style lang="scss">
|
|
150
162
|
:root {
|
|
151
|
-
--swiper-navigation-sides-offset:
|
|
163
|
+
--swiper-navigation-sides-offset: -50px;
|
|
152
164
|
}
|
|
153
165
|
|
|
154
166
|
.swiper {
|
|
@@ -159,11 +171,11 @@ function slideChange() {
|
|
|
159
171
|
.swiper-button-next,
|
|
160
172
|
.swiper-button-prev {
|
|
161
173
|
color: var(--octopus-primary) !important;
|
|
162
|
-
height: 100%;
|
|
174
|
+
//height: 100%;
|
|
163
175
|
inset-block:0;
|
|
164
176
|
margin: 0;
|
|
165
177
|
width: 40px;
|
|
166
|
-
background: var(--octopus-background);
|
|
178
|
+
//background: var(--octopus-background);
|
|
167
179
|
}
|
|
168
180
|
|
|
169
181
|
.swiper-button-lock {
|
|
@@ -194,9 +194,12 @@ const maxOptionsSelected = computed(() => {
|
|
|
194
194
|
});
|
|
195
195
|
|
|
196
196
|
//Watch
|
|
197
|
-
watch(()=>optionChosen, () => {
|
|
197
|
+
watch(()=>optionChosen, (value) => {
|
|
198
|
+
console.log('update hello')
|
|
198
199
|
optionSelected.value = optionChosen;
|
|
200
|
+
console.log(optionChosen, value)
|
|
199
201
|
}, {deep: true, immediate: true});
|
|
202
|
+
|
|
200
203
|
watch(optionSelected, () => {
|
|
201
204
|
if (noDeselect || null !== optionSelected.value) {
|
|
202
205
|
return;
|
|
@@ -238,7 +241,7 @@ function afterSearch(optionsFetched: Array<T>, count: number): void {
|
|
|
238
241
|
function onOptionSelected(newValue: Array<T>|T): void {
|
|
239
242
|
// Check if selectAll is included
|
|
240
243
|
if (withSelectAll && Array.isArray(newValue) && newValue.find(o => o.id === selectAll.id)) {
|
|
241
|
-
emit("selected", options.value.slice(1
|
|
244
|
+
emit("selected", options.value.slice(1));
|
|
242
245
|
} else {
|
|
243
246
|
emit("selected", newValue);
|
|
244
247
|
}
|