@alwatr/signal 1.1.2 → 2.0.0
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.
- package/CHANGELOG.md +173 -163
- package/context.d.ts +31 -0
- package/context.d.ts.map +1 -0
- package/context.js +40 -0
- package/context.js.map +1 -0
- package/index.d.ts +5 -9
- package/index.d.ts.map +1 -1
- package/index.js +10 -16
- package/index.js.map +1 -1
- package/multithread-context.d.ts +21 -0
- package/multithread-context.d.ts.map +1 -0
- package/multithread-context.js +50 -0
- package/multithread-context.js.map +1 -0
- package/observable.d.ts +47 -0
- package/observable.d.ts.map +1 -0
- package/observable.js +126 -0
- package/observable.js.map +1 -0
- package/package.json +9 -9
- package/signal.d.ts +19 -0
- package/signal.d.ts.map +1 -0
- package/signal.js +23 -0
- package/signal.js.map +1 -0
- package/simple-signal.d.ts +19 -0
- package/simple-signal.d.ts.map +1 -0
- package/simple-signal.js +23 -0
- package/simple-signal.js.map +1 -0
- package/type.d.ts +15 -126
- package/type.d.ts.map +1 -1
- package/type.js.map +1 -1
- package/command-handler.d.ts +0 -25
- package/command-handler.d.ts.map +0 -1
- package/command-handler.js +0 -24
- package/command-handler.js.map +0 -1
- package/command-trigger.d.ts +0 -64
- package/command-trigger.d.ts.map +0 -1
- package/command-trigger.js +0 -64
- package/command-trigger.js.map +0 -1
- package/context-consumer.d.ts +0 -124
- package/context-consumer.d.ts.map +0 -1
- package/context-consumer.js +0 -124
- package/context-consumer.js.map +0 -1
- package/context-provider.d.ts +0 -120
- package/context-provider.d.ts.map +0 -1
- package/context-provider.js +0 -120
- package/context-provider.js.map +0 -1
- package/core.d.ts +0 -181
- package/core.d.ts.map +0 -1
- package/core.js +0 -388
- package/core.js.map +0 -1
- package/event-listener.d.ts +0 -120
- package/event-listener.d.ts.map +0 -1
- package/event-listener.js +0 -120
- package/event-listener.js.map +0 -1
- package/event-trigger.d.ts +0 -76
- package/event-trigger.d.ts.map +0 -1
- package/event-trigger.js +0 -76
- package/event-trigger.js.map +0 -1
- package/requestable-context-consumer.d.ts +0 -60
- package/requestable-context-consumer.d.ts.map +0 -1
- package/requestable-context-consumer.js +0 -54
- package/requestable-context-consumer.js.map +0 -1
- package/requestable-context-provider.d.ts +0 -69
- package/requestable-context-provider.d.ts.map +0 -1
- package/requestable-context-provider.js +0 -63
- package/requestable-context-provider.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,11 +3,21 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
# 2.0.0 (2023-09-19)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* all new repo path and packages dependencies ([21a6afa](https://github.com/AliMD/alwatr-signal/commit/21a6afa0badafe4051617d9a9e3bbfbaabd0c4ad)) by @AliMD
|
|
11
|
+
* cleanup old signal and fsm v1 ([bde0bea](https://github.com/AliMD/alwatr-signal/commit/bde0bea06a6750bebad49a127b75b57fd5e55ddd)) by @AliMD
|
|
12
|
+
* **signal:** package name ([4791b54](https://github.com/AliMD/alwatr-signal/commit/4791b54c8da75cf43eb9c86180f1ed94b0e28c4e)) by @AliMD
|
|
13
|
+
* **signal:** signal2 name ([70b71e3](https://github.com/AliMD/alwatr-signal/commit/70b71e312cb5e5d4c54c37c5c327712200f90be5)) by @AliMD
|
|
14
|
+
* ts refrence path ([c2baa44](https://github.com/AliMD/alwatr-signal/commit/c2baa44999c72a0015481fc8fea25439329c3f37)) by @AliMD
|
|
15
|
+
|
|
16
|
+
## [1.1.2](https://github.com/AliMD/alwatr-signal/compare/@alwatr/signal@1.1.1...@alwatr/signal@1.1.2) (2023-09-12)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @alwatr/signal
|
|
9
19
|
|
|
10
|
-
## [1.1.1](https://github.com/AliMD/alwatr/compare/@alwatr/signal@1.1.0...@alwatr/signal@1.1.1) (2023-09-12)
|
|
20
|
+
## [1.1.1](https://github.com/AliMD/alwatr-signal/compare/@alwatr/signal@1.1.0...@alwatr/signal@1.1.1) (2023-09-12)
|
|
11
21
|
|
|
12
22
|
**Note:** Version bump only for package @alwatr/signal
|
|
13
23
|
|
|
@@ -21,68 +31,68 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
21
31
|
|
|
22
32
|
### Bug Fixes
|
|
23
33
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
34
|
+
- new logger api ([9d83a7d](https://github.com/AliMD/alwatr-signal/commit/9d83a7dc5c103bc3bb4282dacfd85fa998915300))
|
|
35
|
+
- **signal:** dont receivePrevious when listener is disabled ([68ae207](https://github.com/AliMD/alwatr-signal/commit/68ae207ce9ecf104922b24910d8dfcedb13acde7))
|
|
36
|
+
- **signal:** requestableContextProvider.getValue ([0a7111d](https://github.com/AliMD/alwatr-signal/commit/0a7111da7b8eb004566922dc9b35edfc02a55147))
|
|
27
37
|
|
|
28
38
|
### Features
|
|
29
39
|
|
|
30
|
-
|
|
40
|
+
- **signal:** new RequestableContext with state ([b8a8e55](https://github.com/AliMD/alwatr-signal/commit/b8a8e550d3952863d85ba9d9d87513a668a9430d))
|
|
31
41
|
|
|
32
42
|
# 0.30.0 (2023-03-06)
|
|
33
43
|
|
|
34
44
|
### Bug Fixes
|
|
35
45
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
46
|
+
- **signal:** NextCycle with own detail ([01f3c79](https://github.com/AliMD/alwatr-signal/commit/01f3c79500927f6384a33abcc9b0cb2355794b3e))
|
|
47
|
+
- **signal:** nodejs compatibility ([69d8a60](https://github.com/AliMD/alwatr-signal/commit/69d8a60ad64d44ee7c3ced002e702f13408a5a50))
|
|
48
|
+
- **signal:** requestableContextConsumer bind issue ([66467f6](https://github.com/AliMD/alwatr-signal/commit/66467f6e5681d84d7f2e0b353206d4bb579b26f2))
|
|
49
|
+
- **signal:** requestContext dispatch issue ([e937ebd](https://github.com/AliMD/alwatr-signal/commit/e937ebd3a90fc6a9946f5c35ef4f6f40b6ab4b00))
|
|
40
50
|
|
|
41
51
|
### Features
|
|
42
52
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
53
|
+
- **signal:** add untilChange for contextProvider ([cb44916](https://github.com/AliMD/alwatr-signal/commit/cb4491698fd5ddfbe055032fc2cb50691de31194))
|
|
54
|
+
- **signal:** defineCommand return ListenerSpec ([21fecac](https://github.com/AliMD/alwatr-signal/commit/21fecacb6aa9423da9e3c177a4bbc59952d94e35))
|
|
55
|
+
- **signal:** dispatch NextCycle option ([b30eb31](https://github.com/AliMD/alwatr-signal/commit/b30eb316d92f594034fc40d195c4033e38e4d2e2))
|
|
46
56
|
|
|
47
57
|
# 0.29.0 (2023-02-10)
|
|
48
58
|
|
|
49
59
|
### Bug Fixes
|
|
50
60
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
61
|
+
- **signal/core:** \_getSignalObject ([1374188](https://github.com/AliMD/alwatr-signal/commit/1374188bdc7e689ded11d04bf4588a1162cc6d86))
|
|
62
|
+
- **signal:** alert [#1455](https://github.com/AliMD/alwatr-signal/issues/1455) ([203307d](https://github.com/AliMD/alwatr-signal/commit/203307df308a12e6c38cb9e0e2301b2015b6ff45))
|
|
63
|
+
- **signal:** clean old interfaces ([b2987ad](https://github.com/AliMD/alwatr-signal/commit/b2987add7bfe0cf609fa355403fb9fb5de3f6b8a))
|
|
64
|
+
- **signal:** export all interfaces ([8704eac](https://github.com/AliMD/alwatr-signal/commit/8704eac6ae7a8a45e77c24ef5e602e36af3fd21e))
|
|
65
|
+
- **signal:** export listeners ([fb05bfb](https://github.com/AliMD/alwatr-signal/commit/fb05bfb9b7eb30427442783677ce1d4da5401160))
|
|
66
|
+
- **signal:** import types ([cc0b88b](https://github.com/AliMD/alwatr-signal/commit/cc0b88be420b1fe057a8640bbffb1af3bf327cef))
|
|
67
|
+
- **signal:** interface bind type ([7b6c820](https://github.com/AliMD/alwatr-signal/commit/7b6c820da2ba216f36e089bf79bdeccf208df3b1))
|
|
68
|
+
- **signal:** reported issues ([75f688f](https://github.com/AliMD/alwatr-signal/commit/75f688faf96a056a256603d05276f5731db86aee))
|
|
69
|
+
- **signal:** TSignal on SignalControllerInterface ([ac42b7c](https://github.com/AliMD/alwatr-signal/commit/ac42b7c7023549e8dd07cd3d9e189f356ffa06ee))
|
|
60
70
|
|
|
61
71
|
### Features
|
|
62
72
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
73
|
+
- **signal-manager:** enhance provider, docs ([c4583a3](https://github.com/AliMD/alwatr-signal/commit/c4583a3b0fcbf38b5e426aaa2bc6e0f52ccac5fd))
|
|
74
|
+
- **signal:** alias in SignalInterface & BoundSignalInterface ([053030b](https://github.com/AliMD/alwatr-signal/commit/053030b96c09d474794f32327d892f1d3690656c))
|
|
75
|
+
- **signal:** bind signal ([de49a13](https://github.com/AliMD/alwatr-signal/commit/de49a13eaffce31660849dfc63285d97e9098c0c))
|
|
76
|
+
- **signal:** command handler/provider interface ([3d23683](https://github.com/AliMD/alwatr-signal/commit/3d236837e13d8cfdcd44a1570bdc9659f48e7f47))
|
|
77
|
+
- **signal:** command signals ([98c1d90](https://github.com/AliMD/alwatr-signal/commit/98c1d90978329e4c5c584e19edb1aaa365632162))
|
|
78
|
+
- **signal:** command trigger interface ([dda9466](https://github.com/AliMD/alwatr-signal/commit/dda94666d9e8e490fea26038044df0e67c203583))
|
|
79
|
+
- **signal:** commandSignal ([5a0d7e5](https://github.com/AliMD/alwatr-signal/commit/5a0d7e5498087620d28548ea5d90036a7b17483a))
|
|
80
|
+
- **signal:** context prover and consumer ([081a51a](https://github.com/AliMD/alwatr-signal/commit/081a51a1ee88e66ebbcd0c58186c00a6aa9e1032))
|
|
81
|
+
- **signal:** contextProvider.expire ([7d0ce93](https://github.com/AliMD/alwatr-signal/commit/7d0ce937f0eadcd9019e6047fbe07aa1a3b579a7))
|
|
82
|
+
- **signal:** event listener interface ([4ca4079](https://github.com/AliMD/alwatr-signal/commit/4ca407938d444027cdbd435173c875fdd9ce8e28))
|
|
83
|
+
- **signal:** event trigger interface ([9b90597](https://github.com/AliMD/alwatr-signal/commit/9b905979a5065640981433ec7d120ba2494966bb))
|
|
84
|
+
- **signal:** new contextConsumer interface ([9ee4a62](https://github.com/AliMD/alwatr-signal/commit/9ee4a624211adb66d9c3d180470cca44ed7df382))
|
|
85
|
+
- **signal:** new contextProvider interface ([e5d29eb](https://github.com/AliMD/alwatr-signal/commit/e5d29ebaa75d71bb5a87bedddb2be7600e68b210))
|
|
86
|
+
- **signal:** new manager interface ([f028306](https://github.com/AliMD/alwatr-signal/commit/f028306f4d7932df65a1bbeade0d29377a370e2e))
|
|
87
|
+
- **signal:** new requestable context consumer interface ([bf6845f](https://github.com/AliMD/alwatr-signal/commit/bf6845f35a98bb63bcfa42196c2f977d64aea59e))
|
|
88
|
+
- **signal:** new requestable context provider interface ([2c8d576](https://github.com/AliMD/alwatr-signal/commit/2c8d57604dcb07a2831d85d4ef1e262863a5fae8))
|
|
89
|
+
- **signal:** new signal dynamic types ([0f1a38e](https://github.com/AliMD/alwatr-signal/commit/0f1a38e356ab73e4e2e1a8f852585e50e86cff0e))
|
|
90
|
+
- **signal:** new simple api ([eb1e478](https://github.com/AliMD/alwatr-signal/commit/eb1e47892d4478fb6c687f6d15e1a5c204b5666c))
|
|
91
|
+
- **signal:** refactor all generic types with Stringifyable ([bdcef63](https://github.com/AliMD/alwatr-signal/commit/bdcef632c81fa5e7c7ae595a7a77092c53821850))
|
|
92
|
+
- **signal:** separate request command with response ([47a779e](https://github.com/AliMD/alwatr-signal/commit/47a779e9a814d5d6a388f1a3e94c23e7fb977dce))
|
|
93
|
+
- **signal:** signal.request ([d791b3e](https://github.com/AliMD/alwatr-signal/commit/d791b3eef846697020b76bfecfbf25a3e31eb3a5))
|
|
94
|
+
- **signal:** signal.untilNext ([9df78c0](https://github.com/AliMD/alwatr-signal/commit/9df78c03dea243b467504fdf422388ab9d2b5660))
|
|
95
|
+
- **signal:** signals.expire ([3591efd](https://github.com/AliMD/alwatr-signal/commit/3591efd5e42f7a981814fd59d7189b5066735302))
|
|
86
96
|
|
|
87
97
|
# 0.28.0 (2023-01-20)
|
|
88
98
|
|
|
@@ -92,280 +102,280 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
92
102
|
|
|
93
103
|
### Bug Fixes
|
|
94
104
|
|
|
95
|
-
|
|
96
|
-
|
|
105
|
+
- set correct path ([d01ce6f](https://github.com/AliMD/alwatr-signal/commit/d01ce6ffa749a5e3e0e11e35b4ed61d75d61fec9))
|
|
106
|
+
- tsconfig ([e96dcd3](https://github.com/AliMD/alwatr-signal/commit/e96dcd30774a9f06f7d051e0504192cbbe019e35))
|
|
97
107
|
|
|
98
108
|
### Features
|
|
99
109
|
|
|
100
|
-
|
|
110
|
+
- improve error debugging ([1fba504](https://github.com/AliMD/alwatr-signal/commit/1fba50400a1e8ececc10bbe8ea11cc8dcea2289c))
|
|
101
111
|
|
|
102
|
-
# [1.0.0](https://github.com/AliMD/alwatr/compare/v0.32.0...v1.0.0) (2023-06-14)
|
|
112
|
+
# [1.0.0](https://github.com/AliMD/alwatr-signal/compare/v0.32.0...v1.0.0) (2023-06-14)
|
|
103
113
|
|
|
104
114
|
**Note:** Version bump only for package @alwatr/signal
|
|
105
115
|
|
|
106
|
-
# [0.32.0](https://github.com/AliMD/alwatr/compare/v0.31.0...v0.32.0) (2023-05-27)
|
|
116
|
+
# [0.32.0](https://github.com/AliMD/alwatr-signal/compare/v0.31.0...v0.32.0) (2023-05-27)
|
|
107
117
|
|
|
108
118
|
**Note:** Version bump only for package @alwatr/signal
|
|
109
119
|
|
|
110
|
-
# [0.31.0](https://github.com/AliMD/alwatr/compare/v0.30.0...v0.31.0) (2023-05-08)
|
|
120
|
+
# [0.31.0](https://github.com/AliMD/alwatr-signal/compare/v0.30.0...v0.31.0) (2023-05-08)
|
|
111
121
|
|
|
112
122
|
### Bug Fixes
|
|
113
123
|
|
|
114
|
-
- new logger api ([9d83a7d](https://github.com/AliMD/alwatr/commit/9d83a7dc5c103bc3bb4282dacfd85fa998915300))
|
|
115
|
-
- **signal:** dont receivePrevious when listener is disabled ([68ae207](https://github.com/AliMD/alwatr/commit/68ae207ce9ecf104922b24910d8dfcedb13acde7))
|
|
116
|
-
- **signal:** requestableContextProvider.getValue ([0a7111d](https://github.com/AliMD/alwatr/commit/0a7111da7b8eb004566922dc9b35edfc02a55147))
|
|
124
|
+
- new logger api ([9d83a7d](https://github.com/AliMD/alwatr-signal/commit/9d83a7dc5c103bc3bb4282dacfd85fa998915300))
|
|
125
|
+
- **signal:** dont receivePrevious when listener is disabled ([68ae207](https://github.com/AliMD/alwatr-signal/commit/68ae207ce9ecf104922b24910d8dfcedb13acde7))
|
|
126
|
+
- **signal:** requestableContextProvider.getValue ([0a7111d](https://github.com/AliMD/alwatr-signal/commit/0a7111da7b8eb004566922dc9b35edfc02a55147))
|
|
117
127
|
|
|
118
128
|
### Features
|
|
119
129
|
|
|
120
|
-
- **signal:** new RequestableContext with state ([b8a8e55](https://github.com/AliMD/alwatr/commit/b8a8e550d3952863d85ba9d9d87513a668a9430d))
|
|
130
|
+
- **signal:** new RequestableContext with state ([b8a8e55](https://github.com/AliMD/alwatr-signal/commit/b8a8e550d3952863d85ba9d9d87513a668a9430d))
|
|
121
131
|
|
|
122
|
-
# [0.30.0](https://github.com/AliMD/alwatr/compare/v0.29.0...v0.30.0) (2023-03-06)
|
|
132
|
+
# [0.30.0](https://github.com/AliMD/alwatr-signal/compare/v0.29.0...v0.30.0) (2023-03-06)
|
|
123
133
|
|
|
124
134
|
### Bug Fixes
|
|
125
135
|
|
|
126
|
-
- **signal:** NextCycle with own detail ([01f3c79](https://github.com/AliMD/alwatr/commit/01f3c79500927f6384a33abcc9b0cb2355794b3e))
|
|
127
|
-
- **signal:** nodejs compatibility ([69d8a60](https://github.com/AliMD/alwatr/commit/69d8a60ad64d44ee7c3ced002e702f13408a5a50))
|
|
128
|
-
- **signal:** requestableContextConsumer bind issue ([66467f6](https://github.com/AliMD/alwatr/commit/66467f6e5681d84d7f2e0b353206d4bb579b26f2))
|
|
129
|
-
- **signal:** requestContext dispatch issue ([e937ebd](https://github.com/AliMD/alwatr/commit/e937ebd3a90fc6a9946f5c35ef4f6f40b6ab4b00))
|
|
136
|
+
- **signal:** NextCycle with own detail ([01f3c79](https://github.com/AliMD/alwatr-signal/commit/01f3c79500927f6384a33abcc9b0cb2355794b3e))
|
|
137
|
+
- **signal:** nodejs compatibility ([69d8a60](https://github.com/AliMD/alwatr-signal/commit/69d8a60ad64d44ee7c3ced002e702f13408a5a50))
|
|
138
|
+
- **signal:** requestableContextConsumer bind issue ([66467f6](https://github.com/AliMD/alwatr-signal/commit/66467f6e5681d84d7f2e0b353206d4bb579b26f2))
|
|
139
|
+
- **signal:** requestContext dispatch issue ([e937ebd](https://github.com/AliMD/alwatr-signal/commit/e937ebd3a90fc6a9946f5c35ef4f6f40b6ab4b00))
|
|
130
140
|
|
|
131
141
|
### Features
|
|
132
142
|
|
|
133
|
-
- **signal:** add untilChange for contextProvider ([cb44916](https://github.com/AliMD/alwatr/commit/cb4491698fd5ddfbe055032fc2cb50691de31194))
|
|
134
|
-
- **signal:** defineCommand return ListenerSpec ([21fecac](https://github.com/AliMD/alwatr/commit/21fecacb6aa9423da9e3c177a4bbc59952d94e35))
|
|
135
|
-
- **signal:** dispatch NextCycle option ([b30eb31](https://github.com/AliMD/alwatr/commit/b30eb316d92f594034fc40d195c4033e38e4d2e2))
|
|
143
|
+
- **signal:** add untilChange for contextProvider ([cb44916](https://github.com/AliMD/alwatr-signal/commit/cb4491698fd5ddfbe055032fc2cb50691de31194))
|
|
144
|
+
- **signal:** defineCommand return ListenerSpec ([21fecac](https://github.com/AliMD/alwatr-signal/commit/21fecacb6aa9423da9e3c177a4bbc59952d94e35))
|
|
145
|
+
- **signal:** dispatch NextCycle option ([b30eb31](https://github.com/AliMD/alwatr-signal/commit/b30eb316d92f594034fc40d195c4033e38e4d2e2))
|
|
136
146
|
|
|
137
|
-
# [0.29.0](https://github.com/AliMD/alwatr/compare/v0.28.0...v0.29.0) (2023-02-10)
|
|
147
|
+
# [0.29.0](https://github.com/AliMD/alwatr-signal/compare/v0.28.0...v0.29.0) (2023-02-10)
|
|
138
148
|
|
|
139
149
|
### Bug Fixes
|
|
140
150
|
|
|
141
|
-
- **signal/core:** \_getSignalObject ([1374188](https://github.com/AliMD/alwatr/commit/1374188bdc7e689ded11d04bf4588a1162cc6d86))
|
|
142
|
-
- **signal:** alert [#1455](https://github.com/AliMD/alwatr/issues/1455) ([203307d](https://github.com/AliMD/alwatr/commit/203307df308a12e6c38cb9e0e2301b2015b6ff45))
|
|
143
|
-
- **signal:** clean old interfaces ([b2987ad](https://github.com/AliMD/alwatr/commit/b2987add7bfe0cf609fa355403fb9fb5de3f6b8a))
|
|
144
|
-
- **signal:** export all interfaces ([8704eac](https://github.com/AliMD/alwatr/commit/8704eac6ae7a8a45e77c24ef5e602e36af3fd21e))
|
|
145
|
-
- **signal:** export listeners ([fb05bfb](https://github.com/AliMD/alwatr/commit/fb05bfb9b7eb30427442783677ce1d4da5401160))
|
|
146
|
-
- **signal:** import types ([cc0b88b](https://github.com/AliMD/alwatr/commit/cc0b88be420b1fe057a8640bbffb1af3bf327cef))
|
|
147
|
-
- **signal:** interface bind type ([7b6c820](https://github.com/AliMD/alwatr/commit/7b6c820da2ba216f36e089bf79bdeccf208df3b1))
|
|
148
|
-
- **signal:** reported issues ([75f688f](https://github.com/AliMD/alwatr/commit/75f688faf96a056a256603d05276f5731db86aee))
|
|
149
|
-
- **signal:** TSignal on SignalControllerInterface ([ac42b7c](https://github.com/AliMD/alwatr/commit/ac42b7c7023549e8dd07cd3d9e189f356ffa06ee))
|
|
151
|
+
- **signal/core:** \_getSignalObject ([1374188](https://github.com/AliMD/alwatr-signal/commit/1374188bdc7e689ded11d04bf4588a1162cc6d86))
|
|
152
|
+
- **signal:** alert [#1455](https://github.com/AliMD/alwatr-signal/issues/1455) ([203307d](https://github.com/AliMD/alwatr-signal/commit/203307df308a12e6c38cb9e0e2301b2015b6ff45))
|
|
153
|
+
- **signal:** clean old interfaces ([b2987ad](https://github.com/AliMD/alwatr-signal/commit/b2987add7bfe0cf609fa355403fb9fb5de3f6b8a))
|
|
154
|
+
- **signal:** export all interfaces ([8704eac](https://github.com/AliMD/alwatr-signal/commit/8704eac6ae7a8a45e77c24ef5e602e36af3fd21e))
|
|
155
|
+
- **signal:** export listeners ([fb05bfb](https://github.com/AliMD/alwatr-signal/commit/fb05bfb9b7eb30427442783677ce1d4da5401160))
|
|
156
|
+
- **signal:** import types ([cc0b88b](https://github.com/AliMD/alwatr-signal/commit/cc0b88be420b1fe057a8640bbffb1af3bf327cef))
|
|
157
|
+
- **signal:** interface bind type ([7b6c820](https://github.com/AliMD/alwatr-signal/commit/7b6c820da2ba216f36e089bf79bdeccf208df3b1))
|
|
158
|
+
- **signal:** reported issues ([75f688f](https://github.com/AliMD/alwatr-signal/commit/75f688faf96a056a256603d05276f5731db86aee))
|
|
159
|
+
- **signal:** TSignal on SignalControllerInterface ([ac42b7c](https://github.com/AliMD/alwatr-signal/commit/ac42b7c7023549e8dd07cd3d9e189f356ffa06ee))
|
|
150
160
|
|
|
151
161
|
### Features
|
|
152
162
|
|
|
153
|
-
- **signal-manager:** enhance provider, docs ([c4583a3](https://github.com/AliMD/alwatr/commit/c4583a3b0fcbf38b5e426aaa2bc6e0f52ccac5fd))
|
|
154
|
-
- **signal:** alias in SignalInterface & BoundSignalInterface ([053030b](https://github.com/AliMD/alwatr/commit/053030b96c09d474794f32327d892f1d3690656c))
|
|
155
|
-
- **signal:** bind signal ([de49a13](https://github.com/AliMD/alwatr/commit/de49a13eaffce31660849dfc63285d97e9098c0c))
|
|
156
|
-
- **signal:** command handler/provider interface ([3d23683](https://github.com/AliMD/alwatr/commit/3d236837e13d8cfdcd44a1570bdc9659f48e7f47))
|
|
157
|
-
- **signal:** command signals ([98c1d90](https://github.com/AliMD/alwatr/commit/98c1d90978329e4c5c584e19edb1aaa365632162))
|
|
158
|
-
- **signal:** command trigger interface ([dda9466](https://github.com/AliMD/alwatr/commit/dda94666d9e8e490fea26038044df0e67c203583))
|
|
159
|
-
- **signal:** commandSignal ([5a0d7e5](https://github.com/AliMD/alwatr/commit/5a0d7e5498087620d28548ea5d90036a7b17483a))
|
|
160
|
-
- **signal:** context prover and consumer ([081a51a](https://github.com/AliMD/alwatr/commit/081a51a1ee88e66ebbcd0c58186c00a6aa9e1032))
|
|
161
|
-
- **signal:** contextProvider.expire ([7d0ce93](https://github.com/AliMD/alwatr/commit/7d0ce937f0eadcd9019e6047fbe07aa1a3b579a7))
|
|
162
|
-
- **signal:** event listener interface ([4ca4079](https://github.com/AliMD/alwatr/commit/4ca407938d444027cdbd435173c875fdd9ce8e28))
|
|
163
|
-
- **signal:** event trigger interface ([9b90597](https://github.com/AliMD/alwatr/commit/9b905979a5065640981433ec7d120ba2494966bb))
|
|
164
|
-
- **signal:** new contextConsumer interface ([9ee4a62](https://github.com/AliMD/alwatr/commit/9ee4a624211adb66d9c3d180470cca44ed7df382))
|
|
165
|
-
- **signal:** new contextProvider interface ([e5d29eb](https://github.com/AliMD/alwatr/commit/e5d29ebaa75d71bb5a87bedddb2be7600e68b210))
|
|
166
|
-
- **signal:** new manager interface ([f028306](https://github.com/AliMD/alwatr/commit/f028306f4d7932df65a1bbeade0d29377a370e2e))
|
|
167
|
-
- **signal:** new requestable context consumer interface ([bf6845f](https://github.com/AliMD/alwatr/commit/bf6845f35a98bb63bcfa42196c2f977d64aea59e))
|
|
168
|
-
- **signal:** new requestable context provider interface ([2c8d576](https://github.com/AliMD/alwatr/commit/2c8d57604dcb07a2831d85d4ef1e262863a5fae8))
|
|
169
|
-
- **signal:** new signal dynamic types ([0f1a38e](https://github.com/AliMD/alwatr/commit/0f1a38e356ab73e4e2e1a8f852585e50e86cff0e))
|
|
170
|
-
- **signal:** new simple api ([eb1e478](https://github.com/AliMD/alwatr/commit/eb1e47892d4478fb6c687f6d15e1a5c204b5666c))
|
|
171
|
-
- **signal:** refactor all generic types with Stringifyable ([bdcef63](https://github.com/AliMD/alwatr/commit/bdcef632c81fa5e7c7ae595a7a77092c53821850))
|
|
172
|
-
- **signal:** separate request command with response ([47a779e](https://github.com/AliMD/alwatr/commit/47a779e9a814d5d6a388f1a3e94c23e7fb977dce))
|
|
173
|
-
- **signal:** signal.request ([d791b3e](https://github.com/AliMD/alwatr/commit/d791b3eef846697020b76bfecfbf25a3e31eb3a5))
|
|
174
|
-
- **signal:** signal.untilNext ([9df78c0](https://github.com/AliMD/alwatr/commit/9df78c03dea243b467504fdf422388ab9d2b5660))
|
|
175
|
-
- **signal:** signals.expire ([3591efd](https://github.com/AliMD/alwatr/commit/3591efd5e42f7a981814fd59d7189b5066735302))
|
|
176
|
-
|
|
177
|
-
# [0.28.0](https://github.com/AliMD/alwatr/compare/v0.27.0...v0.28.0) (2023-01-20)
|
|
163
|
+
- **signal-manager:** enhance provider, docs ([c4583a3](https://github.com/AliMD/alwatr-signal/commit/c4583a3b0fcbf38b5e426aaa2bc6e0f52ccac5fd))
|
|
164
|
+
- **signal:** alias in SignalInterface & BoundSignalInterface ([053030b](https://github.com/AliMD/alwatr-signal/commit/053030b96c09d474794f32327d892f1d3690656c))
|
|
165
|
+
- **signal:** bind signal ([de49a13](https://github.com/AliMD/alwatr-signal/commit/de49a13eaffce31660849dfc63285d97e9098c0c))
|
|
166
|
+
- **signal:** command handler/provider interface ([3d23683](https://github.com/AliMD/alwatr-signal/commit/3d236837e13d8cfdcd44a1570bdc9659f48e7f47))
|
|
167
|
+
- **signal:** command signals ([98c1d90](https://github.com/AliMD/alwatr-signal/commit/98c1d90978329e4c5c584e19edb1aaa365632162))
|
|
168
|
+
- **signal:** command trigger interface ([dda9466](https://github.com/AliMD/alwatr-signal/commit/dda94666d9e8e490fea26038044df0e67c203583))
|
|
169
|
+
- **signal:** commandSignal ([5a0d7e5](https://github.com/AliMD/alwatr-signal/commit/5a0d7e5498087620d28548ea5d90036a7b17483a))
|
|
170
|
+
- **signal:** context prover and consumer ([081a51a](https://github.com/AliMD/alwatr-signal/commit/081a51a1ee88e66ebbcd0c58186c00a6aa9e1032))
|
|
171
|
+
- **signal:** contextProvider.expire ([7d0ce93](https://github.com/AliMD/alwatr-signal/commit/7d0ce937f0eadcd9019e6047fbe07aa1a3b579a7))
|
|
172
|
+
- **signal:** event listener interface ([4ca4079](https://github.com/AliMD/alwatr-signal/commit/4ca407938d444027cdbd435173c875fdd9ce8e28))
|
|
173
|
+
- **signal:** event trigger interface ([9b90597](https://github.com/AliMD/alwatr-signal/commit/9b905979a5065640981433ec7d120ba2494966bb))
|
|
174
|
+
- **signal:** new contextConsumer interface ([9ee4a62](https://github.com/AliMD/alwatr-signal/commit/9ee4a624211adb66d9c3d180470cca44ed7df382))
|
|
175
|
+
- **signal:** new contextProvider interface ([e5d29eb](https://github.com/AliMD/alwatr-signal/commit/e5d29ebaa75d71bb5a87bedddb2be7600e68b210))
|
|
176
|
+
- **signal:** new manager interface ([f028306](https://github.com/AliMD/alwatr-signal/commit/f028306f4d7932df65a1bbeade0d29377a370e2e))
|
|
177
|
+
- **signal:** new requestable context consumer interface ([bf6845f](https://github.com/AliMD/alwatr-signal/commit/bf6845f35a98bb63bcfa42196c2f977d64aea59e))
|
|
178
|
+
- **signal:** new requestable context provider interface ([2c8d576](https://github.com/AliMD/alwatr-signal/commit/2c8d57604dcb07a2831d85d4ef1e262863a5fae8))
|
|
179
|
+
- **signal:** new signal dynamic types ([0f1a38e](https://github.com/AliMD/alwatr-signal/commit/0f1a38e356ab73e4e2e1a8f852585e50e86cff0e))
|
|
180
|
+
- **signal:** new simple api ([eb1e478](https://github.com/AliMD/alwatr-signal/commit/eb1e47892d4478fb6c687f6d15e1a5c204b5666c))
|
|
181
|
+
- **signal:** refactor all generic types with Stringifyable ([bdcef63](https://github.com/AliMD/alwatr-signal/commit/bdcef632c81fa5e7c7ae595a7a77092c53821850))
|
|
182
|
+
- **signal:** separate request command with response ([47a779e](https://github.com/AliMD/alwatr-signal/commit/47a779e9a814d5d6a388f1a3e94c23e7fb977dce))
|
|
183
|
+
- **signal:** signal.request ([d791b3e](https://github.com/AliMD/alwatr-signal/commit/d791b3eef846697020b76bfecfbf25a3e31eb3a5))
|
|
184
|
+
- **signal:** signal.untilNext ([9df78c0](https://github.com/AliMD/alwatr-signal/commit/9df78c03dea243b467504fdf422388ab9d2b5660))
|
|
185
|
+
- **signal:** signals.expire ([3591efd](https://github.com/AliMD/alwatr-signal/commit/3591efd5e42f7a981814fd59d7189b5066735302))
|
|
186
|
+
|
|
187
|
+
# [0.28.0](https://github.com/AliMD/alwatr-signal/compare/v0.27.0...v0.28.0) (2023-01-20)
|
|
178
188
|
|
|
179
189
|
**Note:** Version bump only for package @alwatr/signal
|
|
180
190
|
|
|
181
|
-
# [0.27.0](https://github.com/AliMD/alwatr/compare/v0.26.0...v0.27.0) (2022-12-29)
|
|
191
|
+
# [0.27.0](https://github.com/AliMD/alwatr-signal/compare/v0.26.0...v0.27.0) (2022-12-29)
|
|
182
192
|
|
|
183
193
|
**Note:** Version bump only for package @alwatr/signal
|
|
184
194
|
|
|
185
|
-
# [0.26.0](https://github.com/AliMD/alwatr/compare/v0.25.0...v0.26.0) (2022-12-22)
|
|
195
|
+
# [0.26.0](https://github.com/AliMD/alwatr-signal/compare/v0.25.0...v0.26.0) (2022-12-22)
|
|
186
196
|
|
|
187
197
|
### Bug Fixes
|
|
188
198
|
|
|
189
|
-
- set correct path ([d01ce6f](https://github.com/AliMD/alwatr/commit/d01ce6ffa749a5e3e0e11e35b4ed61d75d61fec9))
|
|
190
|
-
- tsconfig ([e96dcd3](https://github.com/AliMD/alwatr/commit/e96dcd30774a9f06f7d051e0504192cbbe019e35))
|
|
199
|
+
- set correct path ([d01ce6f](https://github.com/AliMD/alwatr-signal/commit/d01ce6ffa749a5e3e0e11e35b4ed61d75d61fec9))
|
|
200
|
+
- tsconfig ([e96dcd3](https://github.com/AliMD/alwatr-signal/commit/e96dcd30774a9f06f7d051e0504192cbbe019e35))
|
|
191
201
|
|
|
192
202
|
### Features
|
|
193
203
|
|
|
194
|
-
- improve error debugging ([1fba504](https://github.com/AliMD/alwatr/commit/1fba50400a1e8ececc10bbe8ea11cc8dcea2289c))
|
|
204
|
+
- improve error debugging ([1fba504](https://github.com/AliMD/alwatr-signal/commit/1fba50400a1e8ececc10bbe8ea11cc8dcea2289c))
|
|
195
205
|
|
|
196
|
-
# [0.25.0](https://github.com/AliMD/alwatr/compare/v0.24.1...v0.25.0) (2022-12-07)
|
|
206
|
+
# [0.25.0](https://github.com/AliMD/alwatr-signal/compare/v0.24.1...v0.25.0) (2022-12-07)
|
|
197
207
|
|
|
198
208
|
**Note:** Version bump only for package @alwatr/signal
|
|
199
209
|
|
|
200
|
-
## [0.24.1](https://github.com/AliMD/alwatr/compare/v0.24.0...v0.24.1) (2022-12-01)
|
|
210
|
+
## [0.24.1](https://github.com/AliMD/alwatr-signal/compare/v0.24.0...v0.24.1) (2022-12-01)
|
|
201
211
|
|
|
202
212
|
**Note:** Version bump only for package @alwatr/signal
|
|
203
213
|
|
|
204
|
-
# [0.24.0](https://github.com/AliMD/alwatr/compare/v0.23.0...v0.24.0) (2022-11-28)
|
|
214
|
+
# [0.24.0](https://github.com/AliMD/alwatr-signal/compare/v0.23.0...v0.24.0) (2022-11-28)
|
|
205
215
|
|
|
206
216
|
### Bug Fixes
|
|
207
217
|
|
|
208
|
-
- use ~ for package version ([4e027ff](https://github.com/AliMD/alwatr/commit/4e027ff63875e03b088ebcdc1bdf2495f4494eec))
|
|
218
|
+
- use ~ for package version ([4e027ff](https://github.com/AliMD/alwatr-signal/commit/4e027ff63875e03b088ebcdc1bdf2495f4494eec))
|
|
209
219
|
|
|
210
|
-
# [0.23.0](https://github.com/AliMD/alwatr/compare/v0.22.1...v0.23.0) (2022-11-23)
|
|
220
|
+
# [0.23.0](https://github.com/AliMD/alwatr-signal/compare/v0.22.1...v0.23.0) (2022-11-23)
|
|
211
221
|
|
|
212
222
|
**Note:** Version bump only for package @alwatr/signal
|
|
213
223
|
|
|
214
|
-
## [0.22.1](https://github.com/AliMD/alwatr/compare/v0.22.0...v0.22.1) (2022-11-21)
|
|
224
|
+
## [0.22.1](https://github.com/AliMD/alwatr-signal/compare/v0.22.0...v0.22.1) (2022-11-21)
|
|
215
225
|
|
|
216
226
|
**Note:** Version bump only for package @alwatr/signal
|
|
217
227
|
|
|
218
|
-
# [0.22.0](https://github.com/AliMD/alwatr/compare/v0.21.0...v0.22.0) (2022-11-20)
|
|
228
|
+
# [0.22.0](https://github.com/AliMD/alwatr-signal/compare/v0.21.0...v0.22.0) (2022-11-20)
|
|
219
229
|
|
|
220
230
|
**Note:** Version bump only for package @alwatr/signal
|
|
221
231
|
|
|
222
|
-
# [0.21.0](https://github.com/AliMD/alwatr/compare/v0.20.0...v0.21.0) (2022-11-13)
|
|
232
|
+
# [0.21.0](https://github.com/AliMD/alwatr-signal/compare/v0.20.0...v0.21.0) (2022-11-13)
|
|
223
233
|
|
|
224
234
|
**Note:** Version bump only for package @alwatr/signal
|
|
225
235
|
|
|
226
|
-
# [0.20.0](https://github.com/AliMD/alwatr/compare/v0.19.0...v0.20.0) (2022-11-05)
|
|
236
|
+
# [0.20.0](https://github.com/AliMD/alwatr-signal/compare/v0.19.0...v0.20.0) (2022-11-05)
|
|
227
237
|
|
|
228
238
|
**Note:** Version bump only for package @alwatr/signal
|
|
229
239
|
|
|
230
|
-
# [0.19.0](https://github.com/AliMD/alwatr/compare/v0.18.0...v0.19.0) (2022-11-01)
|
|
240
|
+
# [0.19.0](https://github.com/AliMD/alwatr-signal/compare/v0.18.0...v0.19.0) (2022-11-01)
|
|
231
241
|
|
|
232
242
|
### Bug Fixes
|
|
233
243
|
|
|
234
|
-
- Import error in webpack ([1a52f67](https://github.com/AliMD/alwatr/commit/1a52f67ff2788c51abd13126f34353c26aa669c3))
|
|
244
|
+
- Import error in webpack ([1a52f67](https://github.com/AliMD/alwatr-signal/commit/1a52f67ff2788c51abd13126f34353c26aa669c3))
|
|
235
245
|
|
|
236
|
-
# [0.18.0](https://github.com/AliMD/alwatr/compare/v0.17.0...v0.18.0) (2022-10-22)
|
|
246
|
+
# [0.18.0](https://github.com/AliMD/alwatr-signal/compare/v0.17.0...v0.18.0) (2022-10-22)
|
|
237
247
|
|
|
238
248
|
**Note:** Version bump only for package @alwatr/signal
|
|
239
249
|
|
|
240
|
-
# [0.17.0](https://github.com/AliMD/alwatr/compare/v0.16.1...v0.17.0) (2022-10-21)
|
|
250
|
+
# [0.17.0](https://github.com/AliMD/alwatr-signal/compare/v0.16.1...v0.17.0) (2022-10-21)
|
|
241
251
|
|
|
242
252
|
### Bug Fixes
|
|
243
253
|
|
|
244
|
-
- **signal:** default options ([bbb0d59](https://github.com/AliMD/alwatr/commit/bbb0d59442301344781691bbecad39aed7f6ac40))
|
|
254
|
+
- **signal:** default options ([bbb0d59](https://github.com/AliMD/alwatr-signal/commit/bbb0d59442301344781691bbecad39aed7f6ac40))
|
|
245
255
|
|
|
246
|
-
# [0.16.0](https://github.com/AliMD/alwatr/compare/v0.15.0...v0.16.0) (2022-09-08)
|
|
256
|
+
# [0.16.0](https://github.com/AliMD/alwatr-signal/compare/v0.15.0...v0.16.0) (2022-09-08)
|
|
247
257
|
|
|
248
258
|
**Note:** Version bump only for package @alwatr/signal
|
|
249
259
|
|
|
250
|
-
# [0.15.0](https://github.com/AliMD/alwatr/compare/v0.14.0...v0.15.0) (2022-09-01)
|
|
260
|
+
# [0.15.0](https://github.com/AliMD/alwatr-signal/compare/v0.14.0...v0.15.0) (2022-09-01)
|
|
251
261
|
|
|
252
262
|
### Bug Fixes
|
|
253
263
|
|
|
254
|
-
- get signal object of `request` signal ([eec4b62](https://github.com/AliMD/alwatr/commit/eec4b6201d79785aa10f4b9c777449525158a346))
|
|
255
|
-
- **signal:** fix some issues of `review` ([36ceb8b](https://github.com/AliMD/alwatr/commit/36ceb8b25987621065327b4fa475a213562af8e7))
|
|
256
|
-
- **signal:** log performance and security issue ([dbe9483](https://github.com/AliMD/alwatr/commit/dbe9483b672099b91c18c3a103c2878435fd6508))
|
|
264
|
+
- get signal object of `request` signal ([eec4b62](https://github.com/AliMD/alwatr-signal/commit/eec4b6201d79785aa10f4b9c777449525158a346))
|
|
265
|
+
- **signal:** fix some issues of `review` ([36ceb8b](https://github.com/AliMD/alwatr-signal/commit/36ceb8b25987621065327b4fa475a213562af8e7))
|
|
266
|
+
- **signal:** log performance and security issue ([dbe9483](https://github.com/AliMD/alwatr-signal/commit/dbe9483b672099b91c18c3a103c2878435fd6508))
|
|
257
267
|
|
|
258
|
-
# [0.14.0](https://github.com/AliMD/alwatr/compare/v0.13.0...v0.14.0) (2022-08-19)
|
|
268
|
+
# [0.14.0](https://github.com/AliMD/alwatr-signal/compare/v0.13.0...v0.14.0) (2022-08-19)
|
|
259
269
|
|
|
260
270
|
**Note:** Version bump only for package @alwatr/signal
|
|
261
271
|
|
|
262
|
-
# [0.13.0](https://github.com/AliMD/alwatr/compare/v0.12.0...v0.13.0) (2022-08-06)
|
|
272
|
+
# [0.13.0](https://github.com/AliMD/alwatr-signal/compare/v0.12.0...v0.13.0) (2022-08-06)
|
|
263
273
|
|
|
264
274
|
**Note:** Version bump only for package @alwatr/signal
|
|
265
275
|
|
|
266
|
-
# [0.12.0](https://github.com/AliMD/alwatr/compare/v0.11.0...v0.12.0) (2022-07-22)
|
|
276
|
+
# [0.12.0](https://github.com/AliMD/alwatr-signal/compare/v0.11.0...v0.12.0) (2022-07-22)
|
|
267
277
|
|
|
268
278
|
**Note:** Version bump only for package @alwatr/signal
|
|
269
279
|
|
|
270
|
-
# [0.11.0](https://github.com/AliMD/alwatr/compare/v0.10.1...v0.11.0) (2022-04-16)
|
|
280
|
+
# [0.11.0](https://github.com/AliMD/alwatr-signal/compare/v0.10.1...v0.11.0) (2022-04-16)
|
|
271
281
|
|
|
272
282
|
**Note:** Version bump only for package @alwatr/signal
|
|
273
283
|
|
|
274
|
-
# [0.10.0](https://github.com/AliMD/alwatr/compare/v0.9.0...v0.10.0) (2022-04-02)
|
|
284
|
+
# [0.10.0](https://github.com/AliMD/alwatr-signal/compare/v0.9.0...v0.10.0) (2022-04-02)
|
|
275
285
|
|
|
276
286
|
**Note:** Version bump only for package @alwatr/signal
|
|
277
287
|
|
|
278
|
-
# [0.9.0](https://github.com/AliMD/alwatr/compare/v0.8.0...v0.9.0) (2022-03-22)
|
|
288
|
+
# [0.9.0](https://github.com/AliMD/alwatr-signal/compare/v0.8.0...v0.9.0) (2022-03-22)
|
|
279
289
|
|
|
280
290
|
### Features
|
|
281
291
|
|
|
282
|
-
- **signal:** ListenerInterface ([38ef029](https://github.com/AliMD/alwatr/commit/38ef0291c5ba2e3619080ad89109d805d3d600f2))
|
|
292
|
+
- **signal:** ListenerInterface ([38ef029](https://github.com/AliMD/alwatr-signal/commit/38ef0291c5ba2e3619080ad89109d805d3d600f2))
|
|
283
293
|
|
|
284
|
-
# [0.8.0](https://github.com/AliMD/alwatr/compare/v0.7.2...v0.8.0) (2022-03-14)
|
|
294
|
+
# [0.8.0](https://github.com/AliMD/alwatr-signal/compare/v0.7.2...v0.8.0) (2022-03-14)
|
|
285
295
|
|
|
286
296
|
### Bug Fixes
|
|
287
297
|
|
|
288
|
-
- **signal:** remove once listene in dispatch change imediatly the loop! ([e4d420d](https://github.com/AliMD/alwatr/commit/e4d420d3a086558dc01dcd7a9c5fe3e96677f092))
|
|
298
|
+
- **signal:** remove once listene in dispatch change imediatly the loop! ([e4d420d](https://github.com/AliMD/alwatr-signal/commit/e4d420d3a086558dc01dcd7a9c5fe3e96677f092))
|
|
289
299
|
|
|
290
|
-
## [0.7.2](https://github.com/AliMD/alwatr/compare/v0.7.1...v0.7.2) (2022-03-12)
|
|
300
|
+
## [0.7.2](https://github.com/AliMD/alwatr-signal/compare/v0.7.1...v0.7.2) (2022-03-12)
|
|
291
301
|
|
|
292
302
|
### Bug Fixes
|
|
293
303
|
|
|
294
|
-
- **signal:** promise to multi requests works ([dd59f0e](https://github.com/AliMD/alwatr/commit/dd59f0e5737abec72c41895b93365199fad66fcb))
|
|
304
|
+
- **signal:** promise to multi requests works ([dd59f0e](https://github.com/AliMD/alwatr-signal/commit/dd59f0e5737abec72c41895b93365199fad66fcb))
|
|
295
305
|
|
|
296
|
-
# [0.7.0](https://github.com/AliMD/alwatr/compare/v0.6.1...v0.7.0) (2022-03-12)
|
|
306
|
+
# [0.7.0](https://github.com/AliMD/alwatr-signal/compare/v0.6.1...v0.7.0) (2022-03-12)
|
|
297
307
|
|
|
298
308
|
**Note:** Version bump only for package @alwatr/signal
|
|
299
309
|
|
|
300
|
-
# [0.6.0](https://github.com/AliMD/alwatr/compare/v0.5.0...v0.6.0) (2022-03-11)
|
|
310
|
+
# [0.6.0](https://github.com/AliMD/alwatr-signal/compare/v0.5.0...v0.6.0) (2022-03-11)
|
|
301
311
|
|
|
302
312
|
### Bug Fixes
|
|
303
313
|
|
|
304
|
-
- alalwatr ([898aa6e](https://github.com/AliMD/alwatr/commit/898aa6ed0888eab9265c83b96a50f1b8c216d143))
|
|
305
|
-
- **packages:** duplicate alwatr keyword ([77d4aa2](https://github.com/AliMD/alwatr/commit/77d4aa2105ad47515c3eee251fd6b8c281d0d1fc))
|
|
314
|
+
- alalwatr ([898aa6e](https://github.com/AliMD/alwatr-signal/commit/898aa6ed0888eab9265c83b96a50f1b8c216d143))
|
|
315
|
+
- **packages:** duplicate alwatr keyword ([77d4aa2](https://github.com/AliMD/alwatr-signal/commit/77d4aa2105ad47515c3eee251fd6b8c281d0d1fc))
|
|
306
316
|
|
|
307
|
-
# [0.5.0](https://github.com/AliMD/alwatr/compare/v0.4.0...v0.5.0) (2022-03-11)
|
|
317
|
+
# [0.5.0](https://github.com/AliMD/alwatr-signal/compare/v0.4.0...v0.5.0) (2022-03-11)
|
|
308
318
|
|
|
309
319
|
### Bug Fixes
|
|
310
320
|
|
|
311
|
-
- **signal:** disabled getter and optional dispatch options ([28ced3d](https://github.com/AliMD/alwatr/commit/28ced3d0c4cdf44fc2aebfab98db0883fc5363fe))
|
|
321
|
+
- **signal:** disabled getter and optional dispatch options ([28ced3d](https://github.com/AliMD/alwatr-signal/commit/28ced3d0c4cdf44fc2aebfab98db0883fc5363fe))
|
|
312
322
|
|
|
313
323
|
### Features
|
|
314
324
|
|
|
315
|
-
- **signal:** new SignalInterface ([221701a](https://github.com/AliMD/alwatr/commit/221701a54ea9edda4a3a935a7b098e235ec52691))
|
|
325
|
+
- **signal:** new SignalInterface ([221701a](https://github.com/AliMD/alwatr-signal/commit/221701a54ea9edda4a3a935a7b098e235ec52691))
|
|
316
326
|
|
|
317
|
-
# [0.4.0](https://github.com/AliMD/alwatr/compare/v0.3.0...v0.4.0) (2022-03-11)
|
|
327
|
+
# [0.4.0](https://github.com/AliMD/alwatr-signal/compare/v0.3.0...v0.4.0) (2022-03-11)
|
|
318
328
|
|
|
319
329
|
**Note:** Version bump only for package @alwatr/signal
|
|
320
330
|
|
|
321
|
-
# [0.3.0](https://github.com/AliMD/alwatr/compare/v0.2.1...v0.3.0) (2022-03-06)
|
|
331
|
+
# [0.3.0](https://github.com/AliMD/alwatr-signal/compare/v0.2.1...v0.3.0) (2022-03-06)
|
|
322
332
|
|
|
323
333
|
### Bug Fixes
|
|
324
334
|
|
|
325
|
-
- **signal:** signal provider type ([0151c57](https://github.com/AliMD/alwatr/commit/0151c57d9b6d4f7e83bb9b1847ebe0ae53cd8f89))
|
|
335
|
+
- **signal:** signal provider type ([0151c57](https://github.com/AliMD/alwatr-signal/commit/0151c57d9b6d4f7e83bb9b1847ebe0ae53cd8f89))
|
|
326
336
|
|
|
327
|
-
## [0.2.1](https://github.com/AliMD/alwatr/compare/v0.2.0...v0.2.1) (2022-03-05)
|
|
337
|
+
## [0.2.1](https://github.com/AliMD/alwatr-signal/compare/v0.2.0...v0.2.1) (2022-03-05)
|
|
328
338
|
|
|
329
339
|
### Bug Fixes
|
|
330
340
|
|
|
331
|
-
- **signal:** signal value type issue ([292a4a7](https://github.com/AliMD/alwatr/commit/292a4a7d12a2fd143761e67cd1ecd2e5e40f2ee9))
|
|
341
|
+
- **signal:** signal value type issue ([292a4a7](https://github.com/AliMD/alwatr-signal/commit/292a4a7d12a2fd143761e67cd1ecd2e5e40f2ee9))
|
|
332
342
|
|
|
333
|
-
# [0.2.0](https://github.com/AliMD/alwatr/compare/v0.1.2...v0.2.0) (2022-03-05)
|
|
343
|
+
# [0.2.0](https://github.com/AliMD/alwatr-signal/compare/v0.1.2...v0.2.0) (2022-03-05)
|
|
334
344
|
|
|
335
345
|
### Bug Fixes
|
|
336
346
|
|
|
337
|
-
- **router:** rename setSignalProvider callback detail to requestParam ([6e09f87](https://github.com/AliMD/alwatr/commit/6e09f8772d320625fb4c15ccaa0abcfa2932f992))
|
|
338
|
-
- **signal:** fix dispatchSignal value parameters ([4d34cfb](https://github.com/AliMD/alwatr/commit/4d34cfbb5281d5ce4a4f06ddaaf72218dde80cdd))
|
|
347
|
+
- **router:** rename setSignalProvider callback detail to requestParam ([6e09f87](https://github.com/AliMD/alwatr-signal/commit/6e09f8772d320625fb4c15ccaa0abcfa2932f992))
|
|
348
|
+
- **signal:** fix dispatchSignal value parameters ([4d34cfb](https://github.com/AliMD/alwatr-signal/commit/4d34cfbb5281d5ce4a4f06ddaaf72218dde80cdd))
|
|
339
349
|
|
|
340
350
|
### Features
|
|
341
351
|
|
|
342
|
-
- **signal:** add contributors ([64287cd](https://github.com/AliMD/alwatr/commit/64287cd8cea95665a6ed298177df60dadda7642b))
|
|
343
|
-
- **signal:** improve signal provider by dispatch return content ([80c2b27](https://github.com/AliMD/alwatr/commit/80c2b275bcc0521327400c5902f512c778f5eb3f))
|
|
352
|
+
- **signal:** add contributors ([64287cd](https://github.com/AliMD/alwatr-signal/commit/64287cd8cea95665a6ed298177df60dadda7642b))
|
|
353
|
+
- **signal:** improve signal provider by dispatch return content ([80c2b27](https://github.com/AliMD/alwatr-signal/commit/80c2b275bcc0521327400c5902f512c778f5eb3f))
|
|
344
354
|
|
|
345
|
-
## [0.1.2](https://github.com/AliMD/alwatr/compare/v0.1.1...v0.1.2) (2022-03-03)
|
|
355
|
+
## [0.1.2](https://github.com/AliMD/alwatr-signal/compare/v0.1.1...v0.1.2) (2022-03-03)
|
|
346
356
|
|
|
347
357
|
**Note:** Version bump only for package @alwatr/signal
|
|
348
358
|
|
|
349
|
-
## [0.1.1](https://github.com/AliMD/alwatr/compare/v0.1.0...v0.1.1) (2022-03-03)
|
|
359
|
+
## [0.1.1](https://github.com/AliMD/alwatr-signal/compare/v0.1.0...v0.1.1) (2022-03-03)
|
|
350
360
|
|
|
351
361
|
### Bug Fixes
|
|
352
362
|
|
|
353
|
-
- **packages:** add publish config to public ([9cb3710](https://github.com/AliMD/alwatr/commit/9cb37106b5a35d24d5195ff54232e5769ccc034e))
|
|
363
|
+
- **packages:** add publish config to public ([9cb3710](https://github.com/AliMD/alwatr-signal/commit/9cb37106b5a35d24d5195ff54232e5769ccc034e))
|
|
354
364
|
|
|
355
365
|
# 0.1.0 (2022-03-02)
|
|
356
366
|
|
|
357
367
|
### Bug Fixes
|
|
358
368
|
|
|
359
|
-
- **signal:** AlwatrRequestSignals global type ([228e333](https://github.com/AliMD/alwatr/commit/228e3333326b23df51e7834872daf1349826bf09))
|
|
369
|
+
- **signal:** AlwatrRequestSignals global type ([228e333](https://github.com/AliMD/alwatr-signal/commit/228e3333326b23df51e7834872daf1349826bf09))
|
|
360
370
|
|
|
361
371
|
### Features
|
|
362
372
|
|
|
363
|
-
- **signal:** addSignalListener ([e7c5742](https://github.com/AliMD/alwatr/commit/e7c57427ef11e2624eb9a52a166720b1a3c5f66a))
|
|
364
|
-
- **signal:** getSignalObject ([b38954c](https://github.com/AliMD/alwatr/commit/b38954cf4ae1c24eaaa79ecf513995a4678814ee))
|
|
365
|
-
- **signal:** impeliment addSignalProvider, waitForSignal, hasSignalDispatchedBefore, expireSignal ([e0b4d78](https://github.com/AliMD/alwatr/commit/e0b4d7831764d4454591f5105c5512e1657a63e5))
|
|
366
|
-
- **signal:** impeliment dispatchSignal ([cb2dfbe](https://github.com/AliMD/alwatr/commit/cb2dfbe23ea751cba93cb1f6516cd2bfa2ecb18e))
|
|
367
|
-
- **signal:** ListenerObject, SignalObject types ([36d8a33](https://github.com/AliMD/alwatr/commit/36d8a336760bba3808cfd26a28e4d24a31c95f8f))
|
|
368
|
-
- **signal:** make new package for manage signals ([5bf82b3](https://github.com/AliMD/alwatr/commit/5bf82b3f05abc89102634e9b864d81b5b5af527e))
|
|
369
|
-
- **signal:** register to alwatr meta ([9c850e8](https://github.com/AliMD/alwatr/commit/9c850e8df787aa44d289929dc65439e921982dce))
|
|
370
|
-
- **signal:** removeSignalListener ([0088a52](https://github.com/AliMD/alwatr/commit/0088a5269ccce8b50a50e444695c81654fda70ff))
|
|
371
|
-
- **signal:** requestSignal ([111ab5a](https://github.com/AliMD/alwatr/commit/111ab5a1436bc380f5121ef8c130da7010258d90))
|
|
373
|
+
- **signal:** addSignalListener ([e7c5742](https://github.com/AliMD/alwatr-signal/commit/e7c57427ef11e2624eb9a52a166720b1a3c5f66a))
|
|
374
|
+
- **signal:** getSignalObject ([b38954c](https://github.com/AliMD/alwatr-signal/commit/b38954cf4ae1c24eaaa79ecf513995a4678814ee))
|
|
375
|
+
- **signal:** impeliment addSignalProvider, waitForSignal, hasSignalDispatchedBefore, expireSignal ([e0b4d78](https://github.com/AliMD/alwatr-signal/commit/e0b4d7831764d4454591f5105c5512e1657a63e5))
|
|
376
|
+
- **signal:** impeliment dispatchSignal ([cb2dfbe](https://github.com/AliMD/alwatr-signal/commit/cb2dfbe23ea751cba93cb1f6516cd2bfa2ecb18e))
|
|
377
|
+
- **signal:** ListenerObject, SignalObject types ([36d8a33](https://github.com/AliMD/alwatr-signal/commit/36d8a336760bba3808cfd26a28e4d24a31c95f8f))
|
|
378
|
+
- **signal:** make new package for manage signals ([5bf82b3](https://github.com/AliMD/alwatr-signal/commit/5bf82b3f05abc89102634e9b864d81b5b5af527e))
|
|
379
|
+
- **signal:** register to alwatr meta ([9c850e8](https://github.com/AliMD/alwatr-signal/commit/9c850e8df787aa44d289929dc65439e921982dce))
|
|
380
|
+
- **signal:** removeSignalListener ([0088a52](https://github.com/AliMD/alwatr-signal/commit/0088a5269ccce8b50a50e444695c81654fda70ff))
|
|
381
|
+
- **signal:** requestSignal ([111ab5a](https://github.com/AliMD/alwatr-signal/commit/111ab5a1436bc380f5121ef8c130da7010258d90))
|
package/context.d.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { AlwatrObservable } from './observable.js';
|
|
2
|
+
/**
|
|
3
|
+
* Alwatr context signal.
|
|
4
|
+
*/
|
|
5
|
+
export declare class AlwatrContextSignal<T> extends AlwatrObservable<T> {
|
|
6
|
+
constructor(config: {
|
|
7
|
+
name: string;
|
|
8
|
+
loggerPrefix?: string;
|
|
9
|
+
});
|
|
10
|
+
/**
|
|
11
|
+
* Get context value.
|
|
12
|
+
*
|
|
13
|
+
* Return undefined if context not set before or expired.
|
|
14
|
+
*/
|
|
15
|
+
getValue(): T | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* Set context value and notify all subscribers.
|
|
18
|
+
*/
|
|
19
|
+
setValue(value: T): void;
|
|
20
|
+
/**
|
|
21
|
+
* Clear current context value without notify subscribers.
|
|
22
|
+
*
|
|
23
|
+
* `receivePrevious` in new subscribers not work until new context changes.
|
|
24
|
+
*/
|
|
25
|
+
expire(): void;
|
|
26
|
+
/**
|
|
27
|
+
* Get the value of the next context changes.
|
|
28
|
+
*/
|
|
29
|
+
untilChange(): Promise<T>;
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=context.d.ts.map
|
package/context.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["src/context.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,gBAAgB,EAAC,MAAM,iBAAiB,CAAC;AAEjD;;GAEG;AACH,qBAAa,mBAAmB,CAAC,CAAC,CAAE,SAAQ,gBAAgB,CAAC,CAAC,CAAC;gBACjD,MAAM,EAAE;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,YAAY,CAAC,EAAE,MAAM,CAAA;KAAC;IAKzD;;;;OAIG;IACH,QAAQ,IAAI,CAAC,GAAG,SAAS;IAIzB;;OAEG;IACH,QAAQ,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI;IAKxB;;;;OAIG;IACH,MAAM,IAAI,IAAI;IAId;;OAEG;IACH,WAAW,IAAI,OAAO,CAAC,CAAC,CAAC;CAG1B"}
|