asamap 1.0.18 → 1.0.20
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/dist/index.js +3 -0
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -448,6 +448,7 @@ const be = Object.freeze({
|
|
|
448
448
|
value: "tapPreOrders",
|
|
449
449
|
width: 144,
|
|
450
450
|
align: "right",
|
|
451
|
+
precision: 0,
|
|
451
452
|
formatter: (e) => e.tapPreOrders || 0
|
|
452
453
|
},
|
|
453
454
|
{
|
|
@@ -457,6 +458,7 @@ const be = Object.freeze({
|
|
|
457
458
|
value: "viewPreOrders",
|
|
458
459
|
width: 144,
|
|
459
460
|
align: "right",
|
|
461
|
+
precision: 0,
|
|
460
462
|
formatter: (e) => e.viewPreOrders || 0
|
|
461
463
|
},
|
|
462
464
|
{
|
|
@@ -466,6 +468,7 @@ const be = Object.freeze({
|
|
|
466
468
|
value: "totalPreOrders",
|
|
467
469
|
width: 144,
|
|
468
470
|
align: "right",
|
|
471
|
+
precision: 0,
|
|
469
472
|
formatter: (e) => e.totalPreOrders || 0
|
|
470
473
|
},
|
|
471
474
|
{
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "asamap",
|
|
3
3
|
"packageManager": "yarn@4.4.1",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.20",
|
|
5
5
|
"author": "matt avis",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"main": "./dist/index.
|
|
8
|
-
"module": "./dist/index.
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"module": "./dist/index.js",
|
|
9
9
|
"exports": {
|
|
10
10
|
"./*": "./*",
|
|
11
11
|
".": {
|
|
12
|
-
"import": "./dist/index.
|
|
13
|
-
"require": "./dist/index.
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.js"
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|