@saooti/octopus-sdk 33.2.22 → 33.2.24
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
CHANGED
|
@@ -35,8 +35,8 @@ export default defineComponent({
|
|
|
35
35
|
displayLabel:{default: true, type: Boolean},
|
|
36
36
|
transparent:{ default: false, type: Boolean },
|
|
37
37
|
isDisabled: { default: false, type: Boolean },
|
|
38
|
-
options: { default: ()=>[], type: Array as () => Array<{title: string, value: string|undefined, fontFamily?: string}> },
|
|
39
|
-
textInit: { default: undefined, type: String },
|
|
38
|
+
options: { default: ()=>[], type: Array as () => Array<{title: string, value: number|string|undefined, fontFamily?: string}> },
|
|
39
|
+
textInit: { default: undefined, type: [ String, Number ] },
|
|
40
40
|
},
|
|
41
41
|
emits: ['update:textInit'],
|
|
42
42
|
computed:{
|
|
@@ -6,8 +6,6 @@
|
|
|
6
6
|
v-model:organisationId="organisationId"
|
|
7
7
|
v-model:search-pattern="searchPattern"
|
|
8
8
|
type="emission"
|
|
9
|
-
@updateOrganisationId="updateOrganisationId"
|
|
10
|
-
@updateSearchPattern="updateSearchPattern"
|
|
11
9
|
/>
|
|
12
10
|
<AdvancedSearch
|
|
13
11
|
:is-education="isEducation"
|
|
@@ -124,6 +122,9 @@ export default defineComponent({
|
|
|
124
122
|
if(this.$store.state.filter.rubriqueFilter.length){
|
|
125
123
|
this.updateRubriquageFilter(this.$store.state.filter.rubriqueFilter);
|
|
126
124
|
}
|
|
125
|
+
this.$nextTick(() => {
|
|
126
|
+
this.isInit = true;
|
|
127
|
+
});
|
|
127
128
|
},
|
|
128
129
|
updateRubriquageFilter(value: Array<RubriquageFilter>){
|
|
129
130
|
const length = value.length;
|
|
@@ -147,7 +147,9 @@ export default defineComponent({
|
|
|
147
147
|
if(this.$store.state.filter.rubriqueFilter.length){
|
|
148
148
|
this.updateRubriquageFilter(this.$store.state.filter.rubriqueFilter);
|
|
149
149
|
}
|
|
150
|
-
this
|
|
150
|
+
this.$nextTick(() => {
|
|
151
|
+
this.isInit = true;
|
|
152
|
+
});
|
|
151
153
|
},
|
|
152
154
|
updateRubriquageFilter(value: Array<RubriquageFilter>){
|
|
153
155
|
const length = value.length;
|