@wavemaker/app-ng-runtime 12.0.0-next.140535 → 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
@@ -26,6 +26,7 @@ export declare abstract class NumberLocale extends BaseInput implements Validato
26
26
  trailingzero: boolean;
27
27
  private validateType;
28
28
  inputmode: string;
29
+ decimalplaces: number;
29
30
  private lastValIsDecimal;
30
31
  constructor(inj: Injector, config: IWidgetConfig, i18nService: AbstractI18nService, trailingZeroDecimalPipe: TrailingZeroDecimalPipe, explicitContext: any);
31
32
  set datavalue(value: number);
@@ -1,8 +1,8 @@
1
1
  (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/compiler'), require('lodash-es'), require('rxjs'), require('x2js'), require('@angular/core'), require('@angular/common/http')) :
3
- typeof define === 'function' && define.amd ? define(['exports', '@angular/compiler', 'lodash-es', 'rxjs', 'x2js', '@angular/core', '@angular/common/http'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.wm = global.wm || {}, global.wm.core = {}), global.ng.compiler, global._, global.rxjs, null, global.ng.core, global.ng.common.http));
5
- })(this, (function (exports, compiler, lodashEs, rxjs, x2js, i0, i1) { 'use strict';
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/compiler'), require('lodash-es'), require('rxjs'), require('@angular/core'), require('@angular/common/http')) :
3
+ typeof define === 'function' && define.amd ? define(['exports', '@angular/compiler', 'lodash-es', 'rxjs', '@angular/core', '@angular/common/http'], factory) :
4
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.wm = global.wm || {}, global.wm.core = {}), global.ng.compiler, global._, global.rxjs, global.ng.core, global.ng.common.http));
5
+ })(this, (function (exports, compiler, lodashEs, rxjs, i0, i1) { 'use strict';
6
6
 
7
7
  function _interopNamespaceDefault(e) {
8
8
  var n = Object.create(null);
@@ -2797,7 +2797,7 @@
2797
2797
  }
2798
2798
  };
2799
2799
  const xmlToJson = (xmlString) => {
2800
- const x2jsObj = new X2JS({ 'emptyNodeForm': 'object', 'attributePrefix': '', 'enableToStringFunc': false });
2800
+ const x2jsObj = new X2JS({ 'emptyNodeForm': 'content', 'attributePrefix': '', 'enableToStringFunc': false });
2801
2801
  let json = x2jsObj.xml2js(xmlString);
2802
2802
  if (json) {
2803
2803
  json = lodashEs.get(json, Object.keys(json)[0]);