compelem 0.1.0-beta → 0.1.1-beta
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/index.d.ts +2 -2
- package/index.js +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { createRef, html, RefObject, Template } from "./render/render";
|
|
1
|
+
import { buildHTML, createRef, html, RefObject, Template } from "./render/render";
|
|
2
2
|
export * from "./decorator/Decorator";
|
|
3
3
|
export * from "./decorator/index";
|
|
4
4
|
export * from "./decorators/computed";
|
|
@@ -21,6 +21,6 @@ export * from "./directives/Slot";
|
|
|
21
21
|
export * from "./directives/Styles";
|
|
22
22
|
export * from "./directives/Sync";
|
|
23
23
|
export * from "./directives/When";
|
|
24
|
-
export { createRef, html, RefObject, Template };
|
|
24
|
+
export { buildHTML, createRef, html, RefObject, Template };
|
|
25
25
|
export * from './CompElem';
|
|
26
26
|
export * from './types';
|
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* compelem v0.1.
|
|
2
|
+
* compelem v0.1.1-beta.1730562219
|
|
3
3
|
* A modern, reactive, fast, lightweight and flexible lib for building web components
|
|
4
4
|
* @holyhigh2
|
|
5
5
|
* https://github.com/holyhigh2/compelem
|
|
@@ -3116,4 +3116,4 @@ class When extends Directive {
|
|
|
3116
3116
|
}
|
|
3117
3117
|
const when = directive(When);
|
|
3118
3118
|
|
|
3119
|
-
export { CompElem, Decorator, DecoratorType, DecoratorWrapper, DecoratorsKey, Directive, DirectiveUpdateTag, DirectiveWrapper, EnterPoint, EnterPointType, ExpPos, GetKeyFnName, ModelTriggerType, QueryCache, Template, bind, classes, computed, createRef, decorator, directive, event, forEach, html, ifElse, ifTrue, model, prop, query, queryAll, show, slot, state, styles, sync, tag, watch, when };
|
|
3119
|
+
export { CompElem, Decorator, DecoratorType, DecoratorWrapper, DecoratorsKey, Directive, DirectiveUpdateTag, DirectiveWrapper, EnterPoint, EnterPointType, ExpPos, GetKeyFnName, ModelTriggerType, QueryCache, Template, bind, buildHTML, classes, computed, createRef, decorator, directive, event, forEach, html, ifElse, ifTrue, model, prop, query, queryAll, show, slot, state, styles, sync, tag, watch, when };
|