physical-quantity 1.3.7 → 1.3.8
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/pq.es.js +10 -5
- package/dist/pq.umd.js +10 -5
- package/package.json +1 -1
package/dist/pq.es.js
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* physical-quantity v1.3.
|
|
2
|
+
* physical-quantity v1.3.7
|
|
3
3
|
* A web component bundle to represent physical quantities with automated unit conversion.
|
|
4
4
|
* @license MIT
|
|
5
5
|
* @author E3d - Don Wen <don.wen@calcslive.com>
|
|
6
6
|
*/
|
|
7
7
|
const meta = {
|
|
8
8
|
warning: "DO NOT EDIT — generated by units-export.py from Excel master source. Regenerate: python .e3d/chat-logs/data/units-export.py --uom-data",
|
|
9
|
-
version: "2.0
|
|
9
|
+
version: "2.1.0",
|
|
10
10
|
generated: {
|
|
11
|
-
timestamp: "2026-04-
|
|
11
|
+
timestamp: "2026-04-20T15:20:36.868943",
|
|
12
12
|
source: {
|
|
13
13
|
fileName: "constants_categories_units_full.xlsm",
|
|
14
|
-
lastModified: "2026-04-
|
|
14
|
+
lastModified: "2026-04-20T14:01:55.387474"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
stats: {
|
|
18
18
|
totalCategories: 67,
|
|
19
|
-
totalUnits:
|
|
19
|
+
totalUnits: 572
|
|
20
20
|
}
|
|
21
21
|
};
|
|
22
22
|
const categories = [
|
|
@@ -295,6 +295,11 @@ const units = [
|
|
|
295
295
|
categoryId: "900",
|
|
296
296
|
c0: 1
|
|
297
297
|
},
|
|
298
|
+
{
|
|
299
|
+
unit: "",
|
|
300
|
+
categoryId: "900",
|
|
301
|
+
c0: 1
|
|
302
|
+
},
|
|
298
303
|
{
|
|
299
304
|
unit: "ea",
|
|
300
305
|
categoryId: "900",
|
package/dist/pq.umd.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
typeof exports === "object" && typeof module !== "undefined" ? factory(exports) : typeof define === "function" && define.amd ? define(["exports"], factory) : (global = typeof globalThis !== "undefined" ? globalThis : global || self, factory(global.PQWebComponents = {}));
|
|
3
3
|
})(this, function(exports2) {
|
|
4
4
|
"use strict";/**
|
|
5
|
-
* physical-quantity v1.3.
|
|
5
|
+
* physical-quantity v1.3.7
|
|
6
6
|
* A web component bundle to represent physical quantities with automated unit conversion.
|
|
7
7
|
* @license MIT
|
|
8
8
|
* @author E3d - Don Wen <don.wen@calcslive.com>
|
|
@@ -10,17 +10,17 @@
|
|
|
10
10
|
|
|
11
11
|
const meta = {
|
|
12
12
|
warning: "DO NOT EDIT — generated by units-export.py from Excel master source. Regenerate: python .e3d/chat-logs/data/units-export.py --uom-data",
|
|
13
|
-
version: "2.0
|
|
13
|
+
version: "2.1.0",
|
|
14
14
|
generated: {
|
|
15
|
-
timestamp: "2026-04-
|
|
15
|
+
timestamp: "2026-04-20T15:20:36.868943",
|
|
16
16
|
source: {
|
|
17
17
|
fileName: "constants_categories_units_full.xlsm",
|
|
18
|
-
lastModified: "2026-04-
|
|
18
|
+
lastModified: "2026-04-20T14:01:55.387474"
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
21
|
stats: {
|
|
22
22
|
totalCategories: 67,
|
|
23
|
-
totalUnits:
|
|
23
|
+
totalUnits: 572
|
|
24
24
|
}
|
|
25
25
|
};
|
|
26
26
|
const categories = [
|
|
@@ -299,6 +299,11 @@
|
|
|
299
299
|
categoryId: "900",
|
|
300
300
|
c0: 1
|
|
301
301
|
},
|
|
302
|
+
{
|
|
303
|
+
unit: "",
|
|
304
|
+
categoryId: "900",
|
|
305
|
+
c0: 1
|
|
306
|
+
},
|
|
302
307
|
{
|
|
303
308
|
unit: "ea",
|
|
304
309
|
categoryId: "900",
|
package/package.json
CHANGED