@posx/core 5.5.351 → 5.5.352

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/build/index.d.ts CHANGED
@@ -3657,9 +3657,11 @@ declare class ChargeConfig implements IChargeConfig {
3657
3657
  }
3658
3658
  interface ICurrencyConfig {
3659
3659
  currency_symbol: string;
3660
+ is_symbol_after_amount: boolean;
3660
3661
  }
3661
3662
  declare class CurrencyConfig implements ICurrencyConfig {
3662
3663
  currency_symbol: string;
3664
+ is_symbol_after_amount: boolean;
3663
3665
  constructor();
3664
3666
  }
3665
3667
  declare class RoundingConfig implements IRoundingConfig {
package/build/index.js CHANGED
@@ -2096,6 +2096,7 @@ var ChargeConfig = class {
2096
2096
  var CurrencyConfig = class {
2097
2097
  constructor() {
2098
2098
  _defineProperty(this, "currency_symbol", "$");
2099
+ _defineProperty(this, "is_symbol_after_amount", false);
2099
2100
  }
2100
2101
  };
2101
2102
  var RoundingConfig = class {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@posx/core",
3
- "version": "5.5.351",
3
+ "version": "5.5.352",
4
4
  "description": "POSX core libraries",
5
5
  "main": "./build/index.js",
6
6
  "author": "Steven Lee",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@posx/core",
3
- "version": "5.5.351",
3
+ "version": "5.5.352",
4
4
  "description": "POSX core libraries",
5
5
  "type": "module",
6
6
  "main": "./build/index.js",