@xaendar/core 0.7.14 → 0.7.15

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.
@@ -265,7 +265,7 @@ export declare function createElement(tagName: string): HTMLElement;
265
265
  * @param tagName - The MathML tag name of the element to create.
266
266
  * @returns The newly created MathML element.
267
267
  */
268
- export declare function createMATHMLement(tagName: string): MathMLElement;
268
+ export declare function createMATHMLElement(tagName: string): MathMLElement;
269
269
 
270
270
  /**
271
271
  * Creates an SVG element with the specified tag name using the SVG namespace.
@@ -552,7 +552,7 @@ function createSVGElement(tagName) {
552
552
  * @param tagName - The MathML tag name of the element to create.
553
553
  * @returns The newly created MathML element.
554
554
  */
555
- function createMATHMLement(tagName) {
555
+ function createMATHMLElement(tagName) {
556
556
  return document.createElementNS(MATHML_NS, tagName);
557
557
  }
558
558
  //#endregion
@@ -1046,4 +1046,4 @@ function _switch(parentNode, parentContext, expression, blocks) {
1046
1046
  })));
1047
1047
  }
1048
1048
  //#endregion
1049
- export { BaseWebComponent, Context, Event, Property, WebComponent, _for, _if, _iterationVariables, _renderElement, _renderLiteralText, _renderText, _switch, computed, createAnchor, createElement, createMATHMLement, createSVGElement, effect, input, mountNode, signal, untracked };
1049
+ export { BaseWebComponent, Context, Event, Property, WebComponent, _for, _if, _iterationVariables, _renderElement, _renderLiteralText, _renderText, _switch, computed, createAnchor, createElement, createMATHMLElement, createSVGElement, effect, input, mountNode, signal, untracked };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xaendar/core",
3
- "version": "0.7.14",
3
+ "version": "0.7.15",
4
4
  "description": "A library containing core utils such as webcomponent base classes and theming support",
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -16,7 +16,7 @@
16
16
  }
17
17
  },
18
18
  "dependencies": {
19
- "@xaendar/signals": "0.7.14",
20
- "@xaendar/types": "0.7.14"
19
+ "@xaendar/signals": "0.7.15",
20
+ "@xaendar/types": "0.7.15"
21
21
  }
22
22
  }