@wavemaker/app-ng-runtime 12.0.0-next.140534 → 12.0.0-next.141165

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.
Files changed (27) hide show
  1. app-ng-runtime/components/data/pagination/bundles/index.umd.js +2 -0
  2. app-ng-runtime/components/data/pagination/esm2022/pagination.component.mjs +3 -1
  3. app-ng-runtime/components/data/pagination/fesm2022/index.mjs +2 -0
  4. app-ng-runtime/components/data/pagination/fesm2022/index.mjs.map +1 -1
  5. app-ng-runtime/components/data/table/bundles/index.umd.js +24 -3
  6. app-ng-runtime/components/data/table/esm2022/table.component.mjs +24 -4
  7. app-ng-runtime/components/data/table/esm2022/table.props.mjs +2 -1
  8. app-ng-runtime/components/data/table/fesm2022/index.mjs +25 -4
  9. app-ng-runtime/components/data/table/fesm2022/index.mjs.map +1 -1
  10. app-ng-runtime/components/data/table/table.component.d.ts +5 -0
  11. app-ng-runtime/components/input/chips/bundles/index.umd.js +2 -2
  12. app-ng-runtime/components/input/chips/esm2022/chips.component.mjs +3 -3
  13. app-ng-runtime/components/input/chips/fesm2022/index.mjs +2 -2
  14. app-ng-runtime/components/input/chips/fesm2022/index.mjs.map +1 -1
  15. app-ng-runtime/components/input/default/bundles/index.umd.js +58 -19
  16. app-ng-runtime/components/input/default/esm2022/caption-position.directive.mjs +8 -7
  17. app-ng-runtime/components/input/default/esm2022/number/number.props.mjs +2 -1
  18. app-ng-runtime/components/input/default/esm2022/text/locale/number-locale.mjs +50 -13
  19. app-ng-runtime/components/input/default/fesm2022/index.mjs +57 -18
  20. app-ng-runtime/components/input/default/fesm2022/index.mjs.map +1 -1
  21. app-ng-runtime/components/input/default/text/locale/number-locale.d.ts +1 -0
  22. app-ng-runtime/core/bundles/index.umd.js +5 -5
  23. app-ng-runtime/core/esm2022/utils/utils.mjs +2 -3
  24. app-ng-runtime/core/fesm2022/index.mjs +1 -2
  25. app-ng-runtime/core/fesm2022/index.mjs.map +1 -1
  26. app-ng-runtime/core/utils/utils.d.ts +0 -1
  27. app-ng-runtime/package.json +1 -1
@@ -1,7 +1,6 @@
1
1
  import { Attribute, ImplicitReceiver, PropertyRead, LiteralPrimitive, LiteralArray, LiteralMap, PropertyWrite, KeyedRead, PrefixNot, Unary, Binary, Conditional, Call, Chain, BindingPipe, Lexer, Parser } from '@angular/compiler';
2
2
  import { isArray, startsWith, includes, get, flatten, isEqual, isObject as isObject$1, clone, camelCase, split, map, attempt, isError, isFunction, isDate, isString, cloneDeep, identity, intersection, omit, keys, toLower, replace as replace$1, forEach, trim, indexOf, every, isEqualWith, isNumber, isUndefined, isNull, filter, noop as noop$2, toUpper, assign, merge, isEmpty, debounce as debounce$1, isNil } from 'lodash-es';
3
3
  import { Subject } from 'rxjs';
4
- import 'x2js';
5
4
  import * as i0 from '@angular/core';
6
5
  import { Injectable, inject, NgModule } from '@angular/core';
7
6
  import * as i1 from '@angular/common/http';
@@ -2785,7 +2784,7 @@ const getValidJSON = (content) => {
2785
2784
  }
2786
2785
  };
2787
2786
  const xmlToJson = (xmlString) => {
2788
- const x2jsObj = new X2JS({ 'emptyNodeForm': 'object', 'attributePrefix': '', 'enableToStringFunc': false });
2787
+ const x2jsObj = new X2JS({ 'emptyNodeForm': 'content', 'attributePrefix': '', 'enableToStringFunc': false });
2789
2788
  let json = x2jsObj.xml2js(xmlString);
2790
2789
  if (json) {
2791
2790
  json = get(json, Object.keys(json)[0]);