@xaendar/core 0.6.0 → 0.6.2

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.
@@ -279,11 +279,11 @@ export declare function signal<T = any>(value: T, options?: SignalOptions<T>): S
279
279
  */
280
280
  declare type Signal_2<Value = any> = Signal.State<Value> & {
281
281
  /**
282
- * Sets a new value for the signal.
282
+ * Get the current value of the signal.
283
283
  *
284
- * @param value - The new value to store.
284
+ * @returns The current value of the signal.
285
285
  */
286
- (value: Value): void;
286
+ (): Value;
287
287
  /**
288
288
  * Updates the signal value based on its previous value.
289
289
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xaendar/core",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
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.6.0",
20
- "@xaendar/types": "0.6.0"
19
+ "@xaendar/signals": "0.6.2",
20
+ "@xaendar/types": "0.6.2"
21
21
  }
22
22
  }