mountain-ui 1.0.8 → 1.0.9
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mountain-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.9",
|
|
5
5
|
"description": "A comprehensive UI component library for ERP systems with field types, entities, and registry management built with Svelte",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"module": "index.js",
|
package/src/lib/registry/fieldTypeRegistry/fieldTypes/calculation/CalculationColumn/Input.svelte
CHANGED
|
@@ -35,9 +35,6 @@
|
|
|
35
35
|
const raw1 = ctx[column1] ?? null;
|
|
36
36
|
const raw2 = ctx[column2] ?? null;
|
|
37
37
|
|
|
38
|
-
console.log($field1?.entity_id ?? null);
|
|
39
|
-
console.log(entity_id ?? null);
|
|
40
|
-
|
|
41
38
|
let value1 = raw1 ? parseFloat(raw1) : null;
|
|
42
39
|
let value2 = raw2 ? parseFloat(raw2) : null;
|
|
43
40
|
|