fast-xml-parser 5.3.1 → 5.3.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  <small>Note: If you find missing information about particular minor version, that version must have been changed without any functional change in this library.</small>
2
2
 
3
+ **5.3.2 / 2025-11-14**
4
+ - fix for import statement for v6
5
+
3
6
  **5.3.1 / 2025-11-03**
4
7
  - Performance improvement for stopNodes (By [Maciek Lamberski](https://github.com/macieklamberski))
5
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fast-xml-parser",
3
- "version": "5.3.1",
3
+ "version": "5.3.2",
4
4
  "description": "Validate XML, Parse XML, Build XML without C/C++ based libraries",
5
5
  "main": "./lib/fxp.cjs",
6
6
  "type": "module",
@@ -1,4 +1,4 @@
1
- import {buildOptions,registerCommonValueParsers} from"./ParserOptionsBuilder";
1
+ import {buildOptions,registerCommonValueParsers} from"./ParserOptionsBuilder.js";
2
2
 
3
3
  export default class OutputBuilder{
4
4
  constructor(options){
@@ -1,7 +1,7 @@
1
- import trimParser from "../valueParsers/trim";
2
- import booleanParser from "../valueParsers/booleanParser";
3
- import currencyParser from "../valueParsers/currency";
4
- import numberParser from "../valueParsers/number";
1
+ import trimParser from "../valueParsers/trim.js";
2
+ import booleanParser from "../valueParsers/booleanParser.js";
3
+ import currencyParser from "../valueParsers/currency.js";
4
+ import numberParser from "../valueParsers/number.js";
5
5
 
6
6
  const defaultOptions={
7
7
  nameFor:{