@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
|
-
*
|
|
282
|
+
* Get the current value of the signal.
|
|
283
283
|
*
|
|
284
|
-
* @
|
|
284
|
+
* @returns The current value of the signal.
|
|
285
285
|
*/
|
|
286
|
-
(
|
|
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.
|
|
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.
|
|
20
|
-
"@xaendar/types": "0.6.
|
|
19
|
+
"@xaendar/signals": "0.6.2",
|
|
20
|
+
"@xaendar/types": "0.6.2"
|
|
21
21
|
}
|
|
22
22
|
}
|