@esportsplus/reactivity 0.1.26 → 0.1.27

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.
@@ -1,4 +1,4 @@
1
- import { Listener, Object, Options } from '~/types';
1
+ import { Listener, Object, Options } from '../types';
2
2
  import { ReactiveObject } from './object';
3
3
  type Events<T> = {
4
4
  fill: {
@@ -1,4 +1,4 @@
1
- import { dispose, signal } from '~/signal';
1
+ import { dispose, signal } from '../signal';
2
2
  import { ReactiveObject } from './object';
3
3
  function factory(data, options = {}) {
4
4
  let signals = [];
@@ -1,4 +1,4 @@
1
- import { Computed, Object, Options, Prettify, Signal } from '~/types';
1
+ import { Computed, Object, Options, Prettify, Signal } from '../types';
2
2
  import { ReactiveArray, ReactiveObjectArray } from './array';
3
3
  import { ReactiveObject } from './object';
4
4
  type Guard<T> = T extends Object ? {
@@ -1,4 +1,4 @@
1
- import { Computed, Object, Options, Signal } from '~/types';
1
+ import { Computed, Object, Options, Signal } from '../types';
2
2
  import { ReactiveArray, ReactiveObjectArray } from './array';
3
3
  type Node = Computed<any> | ReactiveArray<any> | ReactiveObjectArray<Object> | Signal<any>;
4
4
  declare class ReactiveObject<T extends Object> {
@@ -1,5 +1,5 @@
1
- import { computed, signal } from '~/signal';
2
- import { defineProperty, isArray } from '~/utilities';
1
+ import { computed, signal } from '../signal';
2
+ import { defineProperty, isArray } from '../utilities';
3
3
  import { ReactiveArray, ReactiveObjectArray } from './array';
4
4
  class ReactiveObject {
5
5
  nodes = {};
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "@esportsplus/custom-function": "^0.0.6"
5
5
  },
6
6
  "devDependencies": {
7
- "@esportsplus/typescript": "^0.4.6"
7
+ "@esportsplus/typescript": "^0.4.9"
8
8
  },
9
9
  "main": "build/index.js",
10
10
  "name": "@esportsplus/reactivity",
@@ -16,5 +16,5 @@
16
16
  "prepublishOnly": "npm run build"
17
17
  },
18
18
  "types": "build/index.d.ts",
19
- "version": "0.1.26"
19
+ "version": "0.1.27"
20
20
  }