@everymatrix/player-elevate-points-history 1.86.4 → 1.86.5

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 (16) hide show
  1. package/dist/cjs/bonus-pagination-limits_6.cjs.entry.js +102 -85
  2. package/dist/esm/bonus-pagination-limits_6.entry.js +102 -85
  3. package/dist/player-elevate-points-history/bonus-pagination-limits_6.entry.js +3 -3
  4. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/player-elevate-points-history/.stencil/packages/stencil/player-elevate-points-history/stencil.config.d.ts +2 -0
  5. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/player-elevate-points-history/.stencil/packages/stencil/player-elevate-points-history/stencil.config.dev.d.ts +2 -0
  6. package/package.json +1 -1
  7. package/dist/types/Users/maria.bumbar/Desktop/Widgets & Template/widgets-monorepo/packages/stencil/player-elevate-points-history/.stencil/packages/stencil/player-elevate-points-history/stencil.config.d.ts +0 -2
  8. package/dist/types/Users/maria.bumbar/Desktop/Widgets & Template/widgets-monorepo/packages/stencil/player-elevate-points-history/.stencil/packages/stencil/player-elevate-points-history/stencil.config.dev.d.ts +0 -2
  9. /package/dist/types/{Users/maria.bumbar/Desktop/Widgets & Template → builds/emfe-widgets}/widgets-monorepo/packages/stencil/player-elevate-points-history/.stencil/libs/common/src/storybook/storybook-utils.d.ts +0 -0
  10. /package/dist/types/{Users/maria.bumbar/Desktop/Widgets & Template → builds/emfe-widgets}/widgets-monorepo/packages/stencil/player-elevate-points-history/.stencil/packages/stencil/player-elevate-points-history/storybook/main.d.ts +0 -0
  11. /package/dist/types/{Users/maria.bumbar/Desktop/Widgets & Template → builds/emfe-widgets}/widgets-monorepo/packages/stencil/player-elevate-points-history/.stencil/packages/stencil/player-elevate-points-history/storybook/preview.d.ts +0 -0
  12. /package/dist/types/{Users/maria.bumbar/Desktop/Widgets & Template → builds/emfe-widgets}/widgets-monorepo/packages/stencil/player-elevate-points-history/.stencil/tools/plugins/index.d.ts +0 -0
  13. /package/dist/types/{Users/maria.bumbar/Desktop/Widgets & Template → builds/emfe-widgets}/widgets-monorepo/packages/stencil/player-elevate-points-history/.stencil/tools/plugins/lazy-load-chunk-plugin.d.ts +0 -0
  14. /package/dist/types/{Users/maria.bumbar/Desktop/Widgets & Template → builds/emfe-widgets}/widgets-monorepo/packages/stencil/player-elevate-points-history/.stencil/tools/plugins/stencil-clean-deps-plugin.d.ts +0 -0
  15. /package/dist/types/{Users/maria.bumbar/Desktop/Widgets & Template → builds/emfe-widgets}/widgets-monorepo/packages/stencil/player-elevate-points-history/.stencil/tools/plugins/vite-chunk-plugin.d.ts +0 -0
  16. /package/dist/types/{Users/maria.bumbar/Desktop/Widgets & Template → builds/emfe-widgets}/widgets-monorepo/packages/stencil/player-elevate-points-history/.stencil/tools/plugins/vite-clean-deps-plugin.d.ts +0 -0
@@ -1237,10 +1237,10 @@ var decimal = {exports: {}};
1237
1237
 
1238
1238
 
1239
1239
  /*!
1240
- * decimal.js v10.4.3
1240
+ * decimal.js v10.6.0
1241
1241
  * An arbitrary-precision Decimal type for JavaScript.
1242
1242
  * https://github.com/MikeMcl/decimal.js
1243
- * Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
1243
+ * Copyright (c) 2025 Michael Mclaughlin <M8ch88l@gmail.com>
1244
1244
  * MIT Licence
1245
1245
  */
1246
1246
 
@@ -1452,8 +1452,8 @@ var decimal = {exports: {}};
1452
1452
  * Return a new Decimal whose value is the value of this Decimal clamped to the range
1453
1453
  * delineated by `min` and `max`.
1454
1454
  *
1455
- * min {number|string|Decimal}
1456
- * max {number|string|Decimal}
1455
+ * min {number|string|bigint|Decimal}
1456
+ * max {number|string|bigint|Decimal}
1457
1457
  *
1458
1458
  */
1459
1459
  P.clampedTo = P.clamp = function (min, max) {
@@ -1957,8 +1957,7 @@ var decimal = {exports: {}};
1957
1957
  *
1958
1958
  */
1959
1959
  P.inverseCosine = P.acos = function () {
1960
- var halfPi,
1961
- x = this,
1960
+ var x = this,
1962
1961
  Ctor = x.constructor,
1963
1962
  k = x.abs().cmp(1),
1964
1963
  pr = Ctor.precision,
@@ -1979,13 +1978,13 @@ var decimal = {exports: {}};
1979
1978
  Ctor.precision = pr + 6;
1980
1979
  Ctor.rounding = 1;
1981
1980
 
1982
- x = x.asin();
1983
- halfPi = getPi(Ctor, pr + 4, rm).times(0.5);
1981
+ // See https://github.com/MikeMcl/decimal.js/pull/217
1982
+ x = new Ctor(1).minus(x).div(x.plus(1)).sqrt().atan();
1984
1983
 
1985
1984
  Ctor.precision = pr;
1986
1985
  Ctor.rounding = rm;
1987
1986
 
1988
- return halfPi.minus(x);
1987
+ return x.times(2);
1989
1988
  };
1990
1989
 
1991
1990
 
@@ -2359,7 +2358,7 @@ var decimal = {exports: {}};
2359
2358
  * log[b](Infinity) = Infinity
2360
2359
  * log[b](NaN) = NaN
2361
2360
  *
2362
- * [base] {number|string|Decimal} The base of the logarithm.
2361
+ * [base] {number|string|bigint|Decimal} The base of the logarithm.
2363
2362
  *
2364
2363
  */
2365
2364
  P.logarithm = P.log = function (base) {
@@ -2453,11 +2452,11 @@ var decimal = {exports: {}};
2453
2452
  /*
2454
2453
  * Return a new Decimal whose value is the maximum of the arguments and the value of this Decimal.
2455
2454
  *
2456
- * arguments {number|string|Decimal}
2455
+ * arguments {number|string|bigint|Decimal}
2457
2456
  *
2458
2457
  P.max = function () {
2459
2458
  Array.prototype.push.call(arguments, this);
2460
- return maxOrMin(this.constructor, arguments, 'lt');
2459
+ return maxOrMin(this.constructor, arguments, -1);
2461
2460
  };
2462
2461
  */
2463
2462
 
@@ -2465,11 +2464,11 @@ var decimal = {exports: {}};
2465
2464
  /*
2466
2465
  * Return a new Decimal whose value is the minimum of the arguments and the value of this Decimal.
2467
2466
  *
2468
- * arguments {number|string|Decimal}
2467
+ * arguments {number|string|bigint|Decimal}
2469
2468
  *
2470
2469
  P.min = function () {
2471
2470
  Array.prototype.push.call(arguments, this);
2472
- return maxOrMin(this.constructor, arguments, 'gt');
2471
+ return maxOrMin(this.constructor, arguments, 1);
2473
2472
  };
2474
2473
  */
2475
2474
 
@@ -3288,7 +3287,7 @@ var decimal = {exports: {}};
3288
3287
  * denominator. If a maximum denominator is not specified, the denominator will be the lowest
3289
3288
  * value necessary to represent the number exactly.
3290
3289
  *
3291
- * [maxD] {number|string|Decimal} Maximum denominator. Integer >= 1 and < Infinity.
3290
+ * [maxD] {number|string|bigint|Decimal} Maximum denominator. Integer >= 1 and < Infinity.
3292
3291
  *
3293
3292
  */
3294
3293
  P.toFraction = function (maxD) {
@@ -3376,7 +3375,7 @@ var decimal = {exports: {}};
3376
3375
  *
3377
3376
  * The return value is not affected by the value of `precision`.
3378
3377
  *
3379
- * y {number|string|Decimal} The magnitude to round to a multiple of.
3378
+ * y {number|string|bigint|Decimal} The magnitude to round to a multiple of.
3380
3379
  * [rm] {number} Rounding mode. Integer, 0 to 8 inclusive.
3381
3380
  *
3382
3381
  * 'toNearest() rounding mode not an integer: {rm}'
@@ -3496,7 +3495,7 @@ var decimal = {exports: {}};
3496
3495
  *
3497
3496
  * If a result is incorrectly rounded the maximum error will be 1 ulp (unit in last place).
3498
3497
  *
3499
- * y {number|string|Decimal} The power to which to raise this Decimal.
3498
+ * y {number|string|bigint|Decimal} The power to which to raise this Decimal.
3500
3499
  *
3501
3500
  */
3502
3501
  P.toPower = P.pow = function (y) {
@@ -4480,19 +4479,25 @@ var decimal = {exports: {}};
4480
4479
 
4481
4480
 
4482
4481
  /*
4483
- * Handle `max` and `min`. `ltgt` is 'lt' or 'gt'.
4482
+ * Handle `max` (`n` is -1) and `min` (`n` is 1).
4484
4483
  */
4485
- function maxOrMin(Ctor, args, ltgt) {
4486
- var y,
4484
+ function maxOrMin(Ctor, args, n) {
4485
+ var k, y,
4487
4486
  x = new Ctor(args[0]),
4488
4487
  i = 0;
4489
4488
 
4490
4489
  for (; ++i < args.length;) {
4491
4490
  y = new Ctor(args[i]);
4491
+
4492
+ // NaN?
4492
4493
  if (!y.s) {
4493
4494
  x = y;
4494
4495
  break;
4495
- } else if (x[ltgt](y)) {
4496
+ }
4497
+
4498
+ k = x.cmp(y);
4499
+
4500
+ if (k === n || k === 0 && x.s === n) {
4496
4501
  x = y;
4497
4502
  }
4498
4503
  }
@@ -4751,6 +4756,8 @@ var decimal = {exports: {}};
4751
4756
  function parseDecimal(x, str) {
4752
4757
  var e, i, len;
4753
4758
 
4759
+ // TODO BigInt str: no need to check for decimal point, exponential form or leading zeros.
4760
+
4754
4761
  // Decimal point?
4755
4762
  if ((e = str.indexOf('.')) > -1) str = str.replace('.', '');
4756
4763
 
@@ -5216,7 +5223,7 @@ var decimal = {exports: {}};
5216
5223
  /*
5217
5224
  * Return a new Decimal whose value is the absolute value of `x`.
5218
5225
  *
5219
- * x {number|string|Decimal}
5226
+ * x {number|string|bigint|Decimal}
5220
5227
  *
5221
5228
  */
5222
5229
  function abs(x) {
@@ -5227,7 +5234,7 @@ var decimal = {exports: {}};
5227
5234
  /*
5228
5235
  * Return a new Decimal whose value is the arccosine in radians of `x`.
5229
5236
  *
5230
- * x {number|string|Decimal}
5237
+ * x {number|string|bigint|Decimal}
5231
5238
  *
5232
5239
  */
5233
5240
  function acos(x) {
@@ -5239,7 +5246,7 @@ var decimal = {exports: {}};
5239
5246
  * Return a new Decimal whose value is the inverse of the hyperbolic cosine of `x`, rounded to
5240
5247
  * `precision` significant digits using rounding mode `rounding`.
5241
5248
  *
5242
- * x {number|string|Decimal} A value in radians.
5249
+ * x {number|string|bigint|Decimal} A value in radians.
5243
5250
  *
5244
5251
  */
5245
5252
  function acosh(x) {
@@ -5251,8 +5258,8 @@ var decimal = {exports: {}};
5251
5258
  * Return a new Decimal whose value is the sum of `x` and `y`, rounded to `precision` significant
5252
5259
  * digits using rounding mode `rounding`.
5253
5260
  *
5254
- * x {number|string|Decimal}
5255
- * y {number|string|Decimal}
5261
+ * x {number|string|bigint|Decimal}
5262
+ * y {number|string|bigint|Decimal}
5256
5263
  *
5257
5264
  */
5258
5265
  function add(x, y) {
@@ -5264,7 +5271,7 @@ var decimal = {exports: {}};
5264
5271
  * Return a new Decimal whose value is the arcsine in radians of `x`, rounded to `precision`
5265
5272
  * significant digits using rounding mode `rounding`.
5266
5273
  *
5267
- * x {number|string|Decimal}
5274
+ * x {number|string|bigint|Decimal}
5268
5275
  *
5269
5276
  */
5270
5277
  function asin(x) {
@@ -5276,7 +5283,7 @@ var decimal = {exports: {}};
5276
5283
  * Return a new Decimal whose value is the inverse of the hyperbolic sine of `x`, rounded to
5277
5284
  * `precision` significant digits using rounding mode `rounding`.
5278
5285
  *
5279
- * x {number|string|Decimal} A value in radians.
5286
+ * x {number|string|bigint|Decimal} A value in radians.
5280
5287
  *
5281
5288
  */
5282
5289
  function asinh(x) {
@@ -5288,7 +5295,7 @@ var decimal = {exports: {}};
5288
5295
  * Return a new Decimal whose value is the arctangent in radians of `x`, rounded to `precision`
5289
5296
  * significant digits using rounding mode `rounding`.
5290
5297
  *
5291
- * x {number|string|Decimal}
5298
+ * x {number|string|bigint|Decimal}
5292
5299
  *
5293
5300
  */
5294
5301
  function atan(x) {
@@ -5300,7 +5307,7 @@ var decimal = {exports: {}};
5300
5307
  * Return a new Decimal whose value is the inverse of the hyperbolic tangent of `x`, rounded to
5301
5308
  * `precision` significant digits using rounding mode `rounding`.
5302
5309
  *
5303
- * x {number|string|Decimal} A value in radians.
5310
+ * x {number|string|bigint|Decimal} A value in radians.
5304
5311
  *
5305
5312
  */
5306
5313
  function atanh(x) {
@@ -5315,8 +5322,8 @@ var decimal = {exports: {}};
5315
5322
  * Domain: [-Infinity, Infinity]
5316
5323
  * Range: [-pi, pi]
5317
5324
  *
5318
- * y {number|string|Decimal} The y-coordinate.
5319
- * x {number|string|Decimal} The x-coordinate.
5325
+ * y {number|string|bigint|Decimal} The y-coordinate.
5326
+ * x {number|string|bigint|Decimal} The x-coordinate.
5320
5327
  *
5321
5328
  * atan2(±0, -0) = ±pi
5322
5329
  * atan2(±0, +0) = ±0
@@ -5381,7 +5388,7 @@ var decimal = {exports: {}};
5381
5388
  * Return a new Decimal whose value is the cube root of `x`, rounded to `precision` significant
5382
5389
  * digits using rounding mode `rounding`.
5383
5390
  *
5384
- * x {number|string|Decimal}
5391
+ * x {number|string|bigint|Decimal}
5385
5392
  *
5386
5393
  */
5387
5394
  function cbrt(x) {
@@ -5392,7 +5399,7 @@ var decimal = {exports: {}};
5392
5399
  /*
5393
5400
  * Return a new Decimal whose value is `x` rounded to an integer using `ROUND_CEIL`.
5394
5401
  *
5395
- * x {number|string|Decimal}
5402
+ * x {number|string|bigint|Decimal}
5396
5403
  *
5397
5404
  */
5398
5405
  function ceil(x) {
@@ -5403,9 +5410,9 @@ var decimal = {exports: {}};
5403
5410
  /*
5404
5411
  * Return a new Decimal whose value is `x` clamped to the range delineated by `min` and `max`.
5405
5412
  *
5406
- * x {number|string|Decimal}
5407
- * min {number|string|Decimal}
5408
- * max {number|string|Decimal}
5413
+ * x {number|string|bigint|Decimal}
5414
+ * min {number|string|bigint|Decimal}
5415
+ * max {number|string|bigint|Decimal}
5409
5416
  *
5410
5417
  */
5411
5418
  function clamp(x, min, max) {
@@ -5479,7 +5486,7 @@ var decimal = {exports: {}};
5479
5486
  * Return a new Decimal whose value is the cosine of `x`, rounded to `precision` significant
5480
5487
  * digits using rounding mode `rounding`.
5481
5488
  *
5482
- * x {number|string|Decimal} A value in radians.
5489
+ * x {number|string|bigint|Decimal} A value in radians.
5483
5490
  *
5484
5491
  */
5485
5492
  function cos(x) {
@@ -5491,7 +5498,7 @@ var decimal = {exports: {}};
5491
5498
  * Return a new Decimal whose value is the hyperbolic cosine of `x`, rounded to precision
5492
5499
  * significant digits using rounding mode `rounding`.
5493
5500
  *
5494
- * x {number|string|Decimal} A value in radians.
5501
+ * x {number|string|bigint|Decimal} A value in radians.
5495
5502
  *
5496
5503
  */
5497
5504
  function cosh(x) {
@@ -5511,7 +5518,7 @@ var decimal = {exports: {}};
5511
5518
  * The Decimal constructor and exported function.
5512
5519
  * Return a new Decimal instance.
5513
5520
  *
5514
- * v {number|string|Decimal} A numeric value.
5521
+ * v {number|string|bigint|Decimal} A numeric value.
5515
5522
  *
5516
5523
  */
5517
5524
  function Decimal(v) {
@@ -5525,7 +5532,6 @@ var decimal = {exports: {}};
5525
5532
  // which points to Object.
5526
5533
  x.constructor = Decimal;
5527
5534
 
5528
- // Duplicate.
5529
5535
  if (isDecimalInstance(v)) {
5530
5536
  x.s = v.s;
5531
5537
 
@@ -5590,9 +5596,10 @@ var decimal = {exports: {}};
5590
5596
  }
5591
5597
 
5592
5598
  return;
5599
+ }
5593
5600
 
5594
- // Infinity, NaN.
5595
- } else if (v * 0 !== 0) {
5601
+ // Infinity or NaN?
5602
+ if (v * 0 !== 0) {
5596
5603
  if (!v) x.s = NaN;
5597
5604
  x.e = NaN;
5598
5605
  x.d = null;
@@ -5600,22 +5607,32 @@ var decimal = {exports: {}};
5600
5607
  }
5601
5608
 
5602
5609
  return parseDecimal(x, v.toString());
5610
+ }
5611
+
5612
+ if (t === 'string') {
5613
+ if ((i = v.charCodeAt(0)) === 45) { // minus sign
5614
+ v = v.slice(1);
5615
+ x.s = -1;
5616
+ } else {
5617
+ if (i === 43) v = v.slice(1); // plus sign
5618
+ x.s = 1;
5619
+ }
5603
5620
 
5604
- } else if (t !== 'string') {
5605
- throw Error(invalidArgument + v);
5621
+ return isDecimal.test(v) ? parseDecimal(x, v) : parseOther(x, v);
5606
5622
  }
5607
5623
 
5608
- // Minus sign?
5609
- if ((i = v.charCodeAt(0)) === 45) {
5610
- v = v.slice(1);
5611
- x.s = -1;
5612
- } else {
5613
- // Plus sign?
5614
- if (i === 43) v = v.slice(1);
5615
- x.s = 1;
5624
+ if (t === 'bigint') {
5625
+ if (v < 0) {
5626
+ v = -v;
5627
+ x.s = -1;
5628
+ } else {
5629
+ x.s = 1;
5630
+ }
5631
+
5632
+ return parseDecimal(x, v.toString());
5616
5633
  }
5617
5634
 
5618
- return isDecimal.test(v) ? parseDecimal(x, v) : parseOther(x, v);
5635
+ throw Error(invalidArgument + v);
5619
5636
  }
5620
5637
 
5621
5638
  Decimal.prototype = P;
@@ -5692,8 +5709,8 @@ var decimal = {exports: {}};
5692
5709
  * Return a new Decimal whose value is `x` divided by `y`, rounded to `precision` significant
5693
5710
  * digits using rounding mode `rounding`.
5694
5711
  *
5695
- * x {number|string|Decimal}
5696
- * y {number|string|Decimal}
5712
+ * x {number|string|bigint|Decimal}
5713
+ * y {number|string|bigint|Decimal}
5697
5714
  *
5698
5715
  */
5699
5716
  function div(x, y) {
@@ -5705,7 +5722,7 @@ var decimal = {exports: {}};
5705
5722
  * Return a new Decimal whose value is the natural exponential of `x`, rounded to `precision`
5706
5723
  * significant digits using rounding mode `rounding`.
5707
5724
  *
5708
- * x {number|string|Decimal} The power to which to raise the base of the natural log.
5725
+ * x {number|string|bigint|Decimal} The power to which to raise the base of the natural log.
5709
5726
  *
5710
5727
  */
5711
5728
  function exp(x) {
@@ -5716,7 +5733,7 @@ var decimal = {exports: {}};
5716
5733
  /*
5717
5734
  * Return a new Decimal whose value is `x` round to an integer using `ROUND_FLOOR`.
5718
5735
  *
5719
- * x {number|string|Decimal}
5736
+ * x {number|string|bigint|Decimal}
5720
5737
  *
5721
5738
  */
5722
5739
  function floor(x) {
@@ -5730,7 +5747,7 @@ var decimal = {exports: {}};
5730
5747
  *
5731
5748
  * hypot(a, b, ...) = sqrt(a^2 + b^2 + ...)
5732
5749
  *
5733
- * arguments {number|string|Decimal}
5750
+ * arguments {number|string|bigint|Decimal}
5734
5751
  *
5735
5752
  */
5736
5753
  function hypot() {
@@ -5772,7 +5789,7 @@ var decimal = {exports: {}};
5772
5789
  * Return a new Decimal whose value is the natural logarithm of `x`, rounded to `precision`
5773
5790
  * significant digits using rounding mode `rounding`.
5774
5791
  *
5775
- * x {number|string|Decimal}
5792
+ * x {number|string|bigint|Decimal}
5776
5793
  *
5777
5794
  */
5778
5795
  function ln(x) {
@@ -5786,8 +5803,8 @@ var decimal = {exports: {}};
5786
5803
  *
5787
5804
  * log[y](x)
5788
5805
  *
5789
- * x {number|string|Decimal} The argument of the logarithm.
5790
- * y {number|string|Decimal} The base of the logarithm.
5806
+ * x {number|string|bigint|Decimal} The argument of the logarithm.
5807
+ * y {number|string|bigint|Decimal} The base of the logarithm.
5791
5808
  *
5792
5809
  */
5793
5810
  function log(x, y) {
@@ -5799,7 +5816,7 @@ var decimal = {exports: {}};
5799
5816
  * Return a new Decimal whose value is the base 2 logarithm of `x`, rounded to `precision`
5800
5817
  * significant digits using rounding mode `rounding`.
5801
5818
  *
5802
- * x {number|string|Decimal}
5819
+ * x {number|string|bigint|Decimal}
5803
5820
  *
5804
5821
  */
5805
5822
  function log2(x) {
@@ -5811,7 +5828,7 @@ var decimal = {exports: {}};
5811
5828
  * Return a new Decimal whose value is the base 10 logarithm of `x`, rounded to `precision`
5812
5829
  * significant digits using rounding mode `rounding`.
5813
5830
  *
5814
- * x {number|string|Decimal}
5831
+ * x {number|string|bigint|Decimal}
5815
5832
  *
5816
5833
  */
5817
5834
  function log10(x) {
@@ -5822,22 +5839,22 @@ var decimal = {exports: {}};
5822
5839
  /*
5823
5840
  * Return a new Decimal whose value is the maximum of the arguments.
5824
5841
  *
5825
- * arguments {number|string|Decimal}
5842
+ * arguments {number|string|bigint|Decimal}
5826
5843
  *
5827
5844
  */
5828
5845
  function max() {
5829
- return maxOrMin(this, arguments, 'lt');
5846
+ return maxOrMin(this, arguments, -1);
5830
5847
  }
5831
5848
 
5832
5849
 
5833
5850
  /*
5834
5851
  * Return a new Decimal whose value is the minimum of the arguments.
5835
5852
  *
5836
- * arguments {number|string|Decimal}
5853
+ * arguments {number|string|bigint|Decimal}
5837
5854
  *
5838
5855
  */
5839
5856
  function min() {
5840
- return maxOrMin(this, arguments, 'gt');
5857
+ return maxOrMin(this, arguments, 1);
5841
5858
  }
5842
5859
 
5843
5860
 
@@ -5845,8 +5862,8 @@ var decimal = {exports: {}};
5845
5862
  * Return a new Decimal whose value is `x` modulo `y`, rounded to `precision` significant digits
5846
5863
  * using rounding mode `rounding`.
5847
5864
  *
5848
- * x {number|string|Decimal}
5849
- * y {number|string|Decimal}
5865
+ * x {number|string|bigint|Decimal}
5866
+ * y {number|string|bigint|Decimal}
5850
5867
  *
5851
5868
  */
5852
5869
  function mod(x, y) {
@@ -5858,8 +5875,8 @@ var decimal = {exports: {}};
5858
5875
  * Return a new Decimal whose value is `x` multiplied by `y`, rounded to `precision` significant
5859
5876
  * digits using rounding mode `rounding`.
5860
5877
  *
5861
- * x {number|string|Decimal}
5862
- * y {number|string|Decimal}
5878
+ * x {number|string|bigint|Decimal}
5879
+ * y {number|string|bigint|Decimal}
5863
5880
  *
5864
5881
  */
5865
5882
  function mul(x, y) {
@@ -5871,8 +5888,8 @@ var decimal = {exports: {}};
5871
5888
  * Return a new Decimal whose value is `x` raised to the power `y`, rounded to precision
5872
5889
  * significant digits using rounding mode `rounding`.
5873
5890
  *
5874
- * x {number|string|Decimal} The base.
5875
- * y {number|string|Decimal} The exponent.
5891
+ * x {number|string|bigint|Decimal} The base.
5892
+ * y {number|string|bigint|Decimal} The exponent.
5876
5893
  *
5877
5894
  */
5878
5895
  function pow(x, y) {
@@ -5990,7 +6007,7 @@ var decimal = {exports: {}};
5990
6007
  *
5991
6008
  * To emulate `Math.round`, set rounding to 7 (ROUND_HALF_CEIL).
5992
6009
  *
5993
- * x {number|string|Decimal}
6010
+ * x {number|string|bigint|Decimal}
5994
6011
  *
5995
6012
  */
5996
6013
  function round(x) {
@@ -6006,7 +6023,7 @@ var decimal = {exports: {}};
6006
6023
  * -0 if x is -0,
6007
6024
  * NaN otherwise
6008
6025
  *
6009
- * x {number|string|Decimal}
6026
+ * x {number|string|bigint|Decimal}
6010
6027
  *
6011
6028
  */
6012
6029
  function sign(x) {
@@ -6019,7 +6036,7 @@ var decimal = {exports: {}};
6019
6036
  * Return a new Decimal whose value is the sine of `x`, rounded to `precision` significant digits
6020
6037
  * using rounding mode `rounding`.
6021
6038
  *
6022
- * x {number|string|Decimal} A value in radians.
6039
+ * x {number|string|bigint|Decimal} A value in radians.
6023
6040
  *
6024
6041
  */
6025
6042
  function sin(x) {
@@ -6031,7 +6048,7 @@ var decimal = {exports: {}};
6031
6048
  * Return a new Decimal whose value is the hyperbolic sine of `x`, rounded to `precision`
6032
6049
  * significant digits using rounding mode `rounding`.
6033
6050
  *
6034
- * x {number|string|Decimal} A value in radians.
6051
+ * x {number|string|bigint|Decimal} A value in radians.
6035
6052
  *
6036
6053
  */
6037
6054
  function sinh(x) {
@@ -6043,7 +6060,7 @@ var decimal = {exports: {}};
6043
6060
  * Return a new Decimal whose value is the square root of `x`, rounded to `precision` significant
6044
6061
  * digits using rounding mode `rounding`.
6045
6062
  *
6046
- * x {number|string|Decimal}
6063
+ * x {number|string|bigint|Decimal}
6047
6064
  *
6048
6065
  */
6049
6066
  function sqrt(x) {
@@ -6055,8 +6072,8 @@ var decimal = {exports: {}};
6055
6072
  * Return a new Decimal whose value is `x` minus `y`, rounded to `precision` significant digits
6056
6073
  * using rounding mode `rounding`.
6057
6074
  *
6058
- * x {number|string|Decimal}
6059
- * y {number|string|Decimal}
6075
+ * x {number|string|bigint|Decimal}
6076
+ * y {number|string|bigint|Decimal}
6060
6077
  *
6061
6078
  */
6062
6079
  function sub(x, y) {
@@ -6070,7 +6087,7 @@ var decimal = {exports: {}};
6070
6087
  *
6071
6088
  * Only the result is rounded, not the intermediate calculations.
6072
6089
  *
6073
- * arguments {number|string|Decimal}
6090
+ * arguments {number|string|bigint|Decimal}
6074
6091
  *
6075
6092
  */
6076
6093
  function sum() {
@@ -6090,7 +6107,7 @@ var decimal = {exports: {}};
6090
6107
  * Return a new Decimal whose value is the tangent of `x`, rounded to `precision` significant
6091
6108
  * digits using rounding mode `rounding`.
6092
6109
  *
6093
- * x {number|string|Decimal} A value in radians.
6110
+ * x {number|string|bigint|Decimal} A value in radians.
6094
6111
  *
6095
6112
  */
6096
6113
  function tan(x) {
@@ -6102,7 +6119,7 @@ var decimal = {exports: {}};
6102
6119
  * Return a new Decimal whose value is the hyperbolic tangent of `x`, rounded to `precision`
6103
6120
  * significant digits using rounding mode `rounding`.
6104
6121
  *
6105
- * x {number|string|Decimal} A value in radians.
6122
+ * x {number|string|bigint|Decimal} A value in radians.
6106
6123
  *
6107
6124
  */
6108
6125
  function tanh(x) {
@@ -6113,7 +6130,7 @@ var decimal = {exports: {}};
6113
6130
  /*
6114
6131
  * Return a new Decimal whose value is `x` truncated to an integer.
6115
6132
  *
6116
- * x {number|string|Decimal}
6133
+ * x {number|string|bigint|Decimal}
6117
6134
  *
6118
6135
  */
6119
6136
  function trunc(x) {