@dative-gpi/foundation-core-components 1.0.183 → 1.0.184-chart-axis

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.
@@ -129,7 +129,7 @@ export default defineComponent({
129
129
  case MagicFieldType.TimeStepField:
130
130
  return JSON.parse(props.modelValue);
131
131
  case MagicFieldType.PlotPerField:
132
- return parseInt(props.modelValue);
132
+ return JSON.parse(props.modelValue);
133
133
  default:
134
134
  return props.modelValue;
135
135
  }
@@ -151,7 +151,7 @@ export default defineComponent({
151
151
  emit("update:modelValue", JSON.stringify(value));
152
152
  break;
153
153
  case MagicFieldType.PlotPerField:
154
- emit("update:modelValue", value.toString());
154
+ emit("update:modelValue", JSON.stringify(value));
155
155
  break;
156
156
  default:
157
157
  emit("update:modelValue", value);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dative-gpi/foundation-core-components",
3
3
  "sideEffects": false,
4
- "version": "1.0.183",
4
+ "version": "1.0.184-chart-axis",
5
5
  "description": "",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -10,11 +10,11 @@
10
10
  "author": "",
11
11
  "license": "ISC",
12
12
  "dependencies": {
13
- "@dative-gpi/foundation-core-domain": "1.0.183",
14
- "@dative-gpi/foundation-core-services": "1.0.183",
15
- "@dative-gpi/foundation-shared-components": "1.0.183",
16
- "@dative-gpi/foundation-shared-domain": "1.0.183",
17
- "@dative-gpi/foundation-shared-services": "1.0.183"
13
+ "@dative-gpi/foundation-core-domain": "1.0.184-chart-axis",
14
+ "@dative-gpi/foundation-core-services": "1.0.184-chart-axis",
15
+ "@dative-gpi/foundation-shared-components": "1.0.184-chart-axis",
16
+ "@dative-gpi/foundation-shared-domain": "1.0.184-chart-axis",
17
+ "@dative-gpi/foundation-shared-services": "1.0.184-chart-axis"
18
18
  },
19
19
  "peerDependencies": {
20
20
  "@dative-gpi/bones-ui": "^1.0.0",
@@ -26,5 +26,5 @@
26
26
  "sass": "1.71.1",
27
27
  "sass-loader": "13.3.2"
28
28
  },
29
- "gitHead": "29633d62b5b516cc5dde10c9c79f36217d64292c"
29
+ "gitHead": "acc786c5b9b183753ebb7ec3927dec0fa431b0e0"
30
30
  }