@dative-gpi/foundation-shared-components 1.0.133-dashboard-options → 1.0.133-fix-termfield
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.
|
@@ -650,26 +650,10 @@ export default defineComponent({
|
|
|
650
650
|
innerDateValue.value = 1;
|
|
651
651
|
};
|
|
652
652
|
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
innerStartDate.value = props.startDate;
|
|
658
|
-
}
|
|
659
|
-
}
|
|
660
|
-
else if (props.endDate !== innerEndDate.value) {
|
|
661
|
-
reset();
|
|
662
|
-
}
|
|
663
|
-
});
|
|
664
|
-
|
|
665
|
-
watch(() => props.endDate, () => {
|
|
666
|
-
if (props.endDate && parseForPicker(props.endDate) != null) {
|
|
667
|
-
innerDateSetting.value = DateSetting.Pick;
|
|
668
|
-
if (props.endDate !== innerEndDate.value) {
|
|
669
|
-
innerEndDate.value = props.endDate;
|
|
670
|
-
}
|
|
671
|
-
}
|
|
672
|
-
else if (props.startDate !== innerStartDate.value) {
|
|
653
|
+
// This watcher is called once even if both value are set at the same time
|
|
654
|
+
watch([() => props.startDate, () => props.endDate], () => {
|
|
655
|
+
// Having one of those different from the inner value means something up the chain is updating
|
|
656
|
+
if (props.startDate !== innerStartDate.value || props.endDate !== innerEndDate.value) {
|
|
673
657
|
reset();
|
|
674
658
|
}
|
|
675
659
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dative-gpi/foundation-shared-components",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "1.0.133-
|
|
4
|
+
"version": "1.0.133-fix-termfield",
|
|
5
5
|
"description": "",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"author": "",
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@dative-gpi/foundation-shared-domain": "1.0.133-
|
|
14
|
-
"@dative-gpi/foundation-shared-services": "1.0.133-
|
|
13
|
+
"@dative-gpi/foundation-shared-domain": "1.0.133-fix-termfield",
|
|
14
|
+
"@dative-gpi/foundation-shared-services": "1.0.133-fix-termfield"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
17
|
"@dative-gpi/bones-ui": "^1.0.0",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"sass": "1.71.1",
|
|
36
36
|
"sass-loader": "13.3.2"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "528d9f495a0863486b5babc36be2b37c60142969"
|
|
39
39
|
}
|