aberdeen 0.0.14 → 0.0.15

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/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  ISC License
2
2
 
3
- Copyright (c) 2021 Frank van Viegen
3
+ Copyright (c) 2021-2024 Frank van Viegen
4
4
 
5
5
  Permission to use, copy, modify, and/or distribute this software for any
6
6
  purpose with or without fee is hereby granted, provided that the above
@@ -2,7 +2,7 @@ interface QueueRunner {
2
2
  queueOrder: number;
3
3
  queueRun(): void;
4
4
  }
5
- declare type SortKeyType = number | string | Array<number | string>;
5
+ type SortKeyType = number | string | Array<number | string>;
6
6
  interface Observer {
7
7
  onChange(index: any, newData: DatumType, oldData: DatumType): void;
8
8
  }
@@ -57,7 +57,7 @@ declare class OnEachItemScope extends Scope {
57
57
  queueRun(): void;
58
58
  update(): void;
59
59
  }
60
- declare type DatumType = string | number | Function | boolean | null | undefined | ObsMap | ObsArray;
60
+ type DatumType = string | number | Function | boolean | null | undefined | ObsMap | ObsArray;
61
61
  declare abstract class ObsCollection {
62
62
  observers: Map<any, Set<Observer>>;
63
63
  addObserver(index: any, observer: Observer): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aberdeen",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
4
4
  "description": "A TypeScript/JavaScript library for quickly building performant declarative user interfaces without the use of a virtual DOM.",
5
5
  "main": "dist/aberdeen.js",
6
6
  "types": "dist/aberdeen.d.js",
@@ -16,12 +16,12 @@
16
16
  "author": "Frank van Viegen",
17
17
  "license": "ISC",
18
18
  "devDependencies": {
19
+ "fast-equals": "^2.0.4",
19
20
  "mocha": "^9.1.3",
20
21
  "nyc": "^15.0.1",
21
22
  "terser": "^4.6.13",
22
- "typedoc": "^0.22.10",
23
- "typescript": "^4.9.5",
24
- "fast-equals": "^2.0.4"
23
+ "typedoc": "^0.23.28",
24
+ "typescript": "^4.9.5"
25
25
  },
26
26
  "nyc": {
27
27
  "reporter": [
@@ -37,7 +37,5 @@
37
37
  },
38
38
  "files": [
39
39
  "dist"
40
- ],
41
- "dependencies": {
42
- }
40
+ ]
43
41
  }