atom.io 0.23.1 → 0.23.3

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.
@@ -379,6 +379,7 @@ var synchronousSelectorDependencies = {
379
379
  var src_default = {
380
380
  rules: {
381
381
  "explicit-state-types": explicitStateTypes,
382
+ lifespan,
382
383
  "synchronous-selector-dependencies": synchronousSelectorDependencies
383
384
  }
384
385
  };
@@ -52,6 +52,7 @@ declare namespace index {
52
52
  declare const _default: {
53
53
  rules: {
54
54
  "explicit-state-types": any;
55
+ lifespan: any;
55
56
  "synchronous-selector-dependencies": {
56
57
  meta: {
57
58
  type: "problem";
@@ -370,6 +370,7 @@ var synchronousSelectorDependencies = {
370
370
  var src_default = {
371
371
  rules: {
372
372
  "explicit-state-types": explicitStateTypes,
373
+ lifespan,
373
374
  "synchronous-selector-dependencies": synchronousSelectorDependencies
374
375
  }
375
376
  };
@@ -7,6 +7,7 @@ export { Rules }
7
7
  export default {
8
8
  rules: {
9
9
  "explicit-state-types": Rules.explicitStateTypes as any,
10
+ lifespan: Rules.lifespan as any,
10
11
  "synchronous-selector-dependencies": Rules.synchronousSelectorDependencies,
11
12
  },
12
13
  } satisfies ESLint.Plugin
@@ -28,7 +28,7 @@ declare class Molecule<Key extends Json.Serializable> {
28
28
  claim(child: Molecule<any>): void;
29
29
  clear(): void;
30
30
  join(token: JoinToken<any, any, any, any>): void;
31
- private [Symbol.dispose];
31
+ protected [Symbol.dispose](): void;
32
32
  dispose: () => void;
33
33
  }
34
34
 
@@ -155,7 +155,7 @@ export class Molecule<Key extends Json.Serializable> {
155
155
  this.joins.push(join)
156
156
  }
157
157
 
158
- private [Symbol.dispose](): void {
158
+ protected [Symbol.dispose](): void {
159
159
  this.clear()
160
160
  const target = newest(this.store)
161
161
  target.molecules.delete(stringifyJson(this.token.key))
@@ -183,7 +183,7 @@ declare class Molecule<Key extends Json.Serializable> {
183
183
  claim(child: Molecule<any>): void;
184
184
  clear(): void;
185
185
  join(token: JoinToken<any, any, any, any>): void;
186
- private [Symbol.dispose];
186
+ protected [Symbol.dispose](): void;
187
187
  dispose: () => void;
188
188
  }
189
189
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "atom.io",
3
- "version": "0.23.1",
3
+ "version": "0.23.3",
4
4
  "description": "Composable and testable reactive data library.",
5
5
  "homepage": "https://atom.io.fyi",
6
6
  "sideEffects": false,
@@ -61,7 +61,7 @@
61
61
  "@vitest/coverage-v8": "1.6.0",
62
62
  "@vitest/ui": "1.6.0",
63
63
  "concurrently": "8.2.2",
64
- "drizzle-kit": "0.21.3",
64
+ "drizzle-kit": "0.21.4",
65
65
  "drizzle-orm": "0.30.10",
66
66
  "eslint": "npm:eslint@8.57.0",
67
67
  "eslint-v9": "npm:eslint@9.3.0",