@esportsplus/template 0.40.4 → 0.41.1

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/build/index.d.ts CHANGED
@@ -1,10 +1,11 @@
1
+ export * from '@esportsplus/reactivity';
2
+ export * from './attributes.js';
3
+ export * from './event/index.js';
4
+ export * from './utilities.js';
1
5
  export { default as html } from './html.js';
2
6
  export { default as render } from './render.js';
3
7
  export { default as svg } from './svg.js';
4
- export * from './attributes.js';
5
- export * from './event/index.js';
6
8
  export { ArraySlot } from './slot/array.js';
7
9
  export { EffectSlot } from './slot/effect.js';
8
10
  export { default as slot } from './slot/index.js';
9
11
  export type { Attributes, Element, Renderable } from './types.js';
10
- export * from './utilities.js';
package/build/index.js CHANGED
@@ -3,12 +3,13 @@ if (typeof Node !== 'undefined') {
3
3
  Node.prototype[CLEANUP] = null;
4
4
  Node.prototype[STORE] = null;
5
5
  }
6
+ export * from '@esportsplus/reactivity';
7
+ export * from './attributes.js';
8
+ export * from './event/index.js';
9
+ export * from './utilities.js';
6
10
  export { default as html } from './html.js';
7
11
  export { default as render } from './render.js';
8
12
  export { default as svg } from './svg.js';
9
- export * from './attributes.js';
10
- export * from './event/index.js';
11
13
  export { ArraySlot } from './slot/array.js';
12
14
  export { EffectSlot } from './slot/effect.js';
13
15
  export { default as slot } from './slot/index.js';
14
- export * from './utilities.js';
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "author": "ICJR",
3
3
  "dependencies": {
4
4
  "@esportsplus/queue": "^0.2.0",
5
- "@esportsplus/reactivity": "^0.29.12",
5
+ "@esportsplus/reactivity": "^0.29.14",
6
6
  "@esportsplus/typescript": "^0.27.3",
7
7
  "@esportsplus/utilities": "^0.27.2",
8
8
  "serve": "^14.2.5"
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "type": "module",
41
41
  "types": "./build/index.d.ts",
42
- "version": "0.40.4",
42
+ "version": "0.41.1",
43
43
  "scripts": {
44
44
  "build": "tsc",
45
45
  "build:test": "vite build --config test/vite.config.ts",
package/src/index.ts CHANGED
@@ -8,13 +8,16 @@ if (typeof Node !== 'undefined') {
8
8
  }
9
9
 
10
10
 
11
+ export * from '@esportsplus/reactivity';
12
+
13
+ export * from './attributes';
14
+ export * from './event';
15
+ export * from './utilities';
16
+
11
17
  export { default as html } from './html';
12
18
  export { default as render } from './render';
13
19
  export { default as svg } from './svg';
14
- export * from './attributes';
15
- export * from './event';
16
20
  export { ArraySlot } from './slot/array';
17
21
  export { EffectSlot } from './slot/effect';
18
22
  export { default as slot } from './slot';
19
- export type { Attributes, Element, Renderable } from './types';
20
- export * from './utilities';
23
+ export type { Attributes, Element, Renderable } from './types';