reactronic 0.92.25010 → 0.92.25011

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.
@@ -1,5 +1,5 @@
1
1
  import { ObservableObject } from "./core/Mvcc.js";
2
- export declare class Clock extends ObservableObject {
2
+ export declare class RealTimeClock extends ObservableObject {
3
3
  hour: number;
4
4
  minute: number;
5
5
  second: number;
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  };
10
10
  import { ObservableObject } from "./core/Mvcc.js";
11
11
  import { atomic, reactive } from "./ReactiveSystem.js";
12
- export class Clock extends ObservableObject {
12
+ export class RealTimeClock extends ObservableObject {
13
13
  constructor(interval = 1000) {
14
14
  super();
15
15
  this.hour = 0;
@@ -50,16 +50,16 @@ __decorate([
50
50
  __metadata("design:type", Function),
51
51
  __metadata("design:paramtypes", [Boolean]),
52
52
  __metadata("design:returntype", void 0)
53
- ], Clock.prototype, "pause", null);
53
+ ], RealTimeClock.prototype, "pause", null);
54
54
  __decorate([
55
55
  atomic,
56
56
  __metadata("design:type", Function),
57
57
  __metadata("design:paramtypes", []),
58
58
  __metadata("design:returntype", void 0)
59
- ], Clock.prototype, "tick", null);
59
+ ], RealTimeClock.prototype, "tick", null);
60
60
  __decorate([
61
61
  reactive,
62
62
  __metadata("design:type", Function),
63
63
  __metadata("design:paramtypes", []),
64
64
  __metadata("design:returntype", void 0)
65
- ], Clock.prototype, "activate", null);
65
+ ], RealTimeClock.prototype, "activate", null);
@@ -21,4 +21,4 @@ export { ReactiveSystem, observable, unobservable, atomic, reactive, cached, opt
21
21
  export { ReactiveLoop } from "./ReactiveLoop.js";
22
22
  export { ReactiveNode, Mode, Priority, BaseDriver, ReactiveNodeVariable } from "./core/ReactiveNode.js";
23
23
  export type { Script, ScriptAsync, Handler, ReactiveNodeDecl, ReactiveNodeDriver, ReactiveNodeContext } from "./core/ReactiveNode.js";
24
- export { Clock } from "./Clock.js";
24
+ export { RealTimeClock } from "./RealTimeClock.js";
@@ -16,4 +16,4 @@ export { atomicRun, nonReactiveRun, sensitiveRun, contextualRun } from "./Reacti
16
16
  export { ReactiveSystem, observable, unobservable, atomic, reactive, cached, options } from "./ReactiveSystem.js";
17
17
  export { ReactiveLoop } from "./ReactiveLoop.js";
18
18
  export { ReactiveNode, Mode, Priority, BaseDriver, ReactiveNodeVariable } from "./core/ReactiveNode.js";
19
- export { Clock } from "./Clock.js";
19
+ export { RealTimeClock } from "./RealTimeClock.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reactronic",
3
- "version": "0.92.25010",
3
+ "version": "0.92.25011",
4
4
  "description": "Reactronic - Transactional Reactive State Management",
5
5
  "publisher": "Nezaboodka Software",
6
6
  "license": "Apache-2.0",