@thi.ng/router 3.2.49 → 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**: 2024-01-23T15:58:27Z
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/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.49",
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,8 +35,8 @@
35
35
  "test": "bun test"
36
36
  },
37
37
  "dependencies": {
38
- "@thi.ng/api": "^8.9.17",
39
- "@thi.ng/checks": "^3.4.17",
38
+ "@thi.ng/api": "^8.9.18",
39
+ "@thi.ng/checks": "^3.4.18",
40
40
  "@thi.ng/equiv": "^2.1.42",
41
41
  "@thi.ng/errors": "^2.4.11",
42
42
  "tslib": "^2.6.2"
@@ -91,5 +91,5 @@
91
91
  ],
92
92
  "year": 2014
93
93
  },
94
- "gitHead": "417b5a7ea7bd54a3b4f086fe0fc2ce8e8933c9b2\n"
94
+ "gitHead": "7426e2ae6fca5482c6eaf649872296fc89955374\n"
95
95
  }