@xaendar/core 0.7.2 → 0.7.4

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.
@@ -132,7 +132,7 @@ function input(value, options) {
132
132
  const getter = function() {
133
133
  return signal.get();
134
134
  };
135
- Object.assign(signal, {
135
+ Object.assign(getter, {
136
136
  set(newValue, symbol) {
137
137
  assertPrivateContext(symbol);
138
138
  const transformedValue = transform ? transform(newValue) : newValue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xaendar/core",
3
- "version": "0.7.2",
3
+ "version": "0.7.4",
4
4
  "description": "A library containing core utils such as webcomponent base classes and theming support",
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -16,7 +16,7 @@
16
16
  }
17
17
  },
18
18
  "dependencies": {
19
- "@xaendar/signals": "0.7.2",
20
- "@xaendar/types": "0.7.2"
19
+ "@xaendar/signals": "0.7.4",
20
+ "@xaendar/types": "0.7.4"
21
21
  }
22
22
  }