@esportsplus/template 0.41.2 → 0.41.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.
package/build/index.d.ts CHANGED
@@ -4,6 +4,6 @@ export * from './event/index.js';
4
4
  export * from './utilities.js';
5
5
  export { default as html } from './html.js';
6
6
  export { default as render } from './render.js';
7
+ export { default as slot, ArraySlot, EffectSlot } from './slot/index.js';
7
8
  export { default as svg } from './svg.js';
8
- export { ArraySlot, EffectSlot } from './slot/index.js';
9
9
  export type { Attributes, Element, Renderable } from './types.js';
package/build/index.js CHANGED
@@ -9,5 +9,5 @@ export * from './event/index.js';
9
9
  export * from './utilities.js';
10
10
  export { default as html } from './html.js';
11
11
  export { default as render } from './render.js';
12
+ export { default as slot, ArraySlot, EffectSlot } from './slot/index.js';
12
13
  export { default as svg } from './svg.js';
13
- export { ArraySlot, EffectSlot } from './slot/index.js';
package/package.json CHANGED
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "type": "module",
41
41
  "types": "./build/index.d.ts",
42
- "version": "0.41.2",
42
+ "version": "0.41.3",
43
43
  "scripts": {
44
44
  "build": "tsc",
45
45
  "build:test": "vite build --config test/vite.config.ts",
package/src/index.ts CHANGED
@@ -16,6 +16,6 @@ export * from './utilities';
16
16
 
17
17
  export { default as html } from './html';
18
18
  export { default as render } from './render';
19
+ export { default as slot, ArraySlot, EffectSlot } from './slot';
19
20
  export { default as svg } from './svg';
20
- export { ArraySlot, EffectSlot } from './slot';
21
21
  export type { Attributes, Element, Renderable } from './types';