@thi.ng/router 3.2.48 → 3.2.50

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-12-31T09:44:24Z
3
+ - **Last updated**: 2024-01-26T18:03:04Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -199,4 +199,4 @@ If this project contributes to an academic publication, please cite it as:
199
199
 
200
200
  ## License
201
201
 
202
- © 2014 - 2023 Karsten Schmidt // Apache License 2.0
202
+ © 2014 - 2024 Karsten Schmidt // Apache License 2.0
package/basic.d.ts CHANGED
@@ -5,11 +5,8 @@ export declare class BasicRouter implements INotify<RouterEventType> {
5
5
  current: RouteMatch | undefined;
6
6
  routeIndex: Record<string, Route>;
7
7
  constructor(config: RouterConfig);
8
- /** {@inheritDoc @thi.ng/api#INotify.addListener} */
9
8
  addListener(id: RouterEventType, fn: Listener<RouterEventType>, scope?: any): boolean;
10
- /** {@inheritDoc @thi.ng/api#INotify.removeListener} */
11
9
  removeListener(id: RouterEventType, fn: Listener<RouterEventType>, scope?: any): boolean;
12
- /** {@inheritDoc @thi.ng/api#INotify.notify} */
13
10
  notify(event: Event<RouterEventType>): boolean;
14
11
  start(): void;
15
12
  /**
package/basic.js CHANGED
@@ -55,17 +55,14 @@ let BasicRouter = class {
55
55
  );
56
56
  }
57
57
  }
58
- /** {@inheritDoc @thi.ng/api#INotify.addListener} */
59
58
  // @ts-ignore: arguments
60
59
  // prettier-ignore
61
60
  addListener(id, fn, scope) {
62
61
  }
63
- /** {@inheritDoc @thi.ng/api#INotify.removeListener} */
64
62
  // @ts-ignore: arguments
65
63
  // prettier-ignore
66
64
  removeListener(id, fn, scope) {
67
65
  }
68
- /** {@inheritDoc @thi.ng/api#INotify.notify} */
69
66
  // @ts-ignore: arguments
70
67
  notify(event) {
71
68
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/router",
3
- "version": "3.2.48",
3
+ "version": "3.2.50",
4
4
  "description": "Generic router for browser & non-browser based applications",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -35,10 +35,10 @@
35
35
  "test": "bun test"
36
36
  },
37
37
  "dependencies": {
38
- "@thi.ng/api": "^8.9.16",
39
- "@thi.ng/checks": "^3.4.16",
40
- "@thi.ng/equiv": "^2.1.41",
41
- "@thi.ng/errors": "^2.4.10",
38
+ "@thi.ng/api": "^8.9.18",
39
+ "@thi.ng/checks": "^3.4.18",
40
+ "@thi.ng/equiv": "^2.1.42",
41
+ "@thi.ng/errors": "^2.4.11",
42
42
  "tslib": "^2.6.2"
43
43
  },
44
44
  "devDependencies": {
@@ -91,5 +91,5 @@
91
91
  ],
92
92
  "year": 2014
93
93
  },
94
- "gitHead": "b3db173682e1148cf08a6bd907b8d90b47b7c066\n"
94
+ "gitHead": "7426e2ae6fca5482c6eaf649872296fc89955374\n"
95
95
  }