mountain-ui 1.0.20 → 1.0.22

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.20",
4
+ "version": "1.0.22",
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",
@@ -76,7 +76,7 @@
76
76
  "vitest-browser-svelte": "^2.1.1"
77
77
  },
78
78
  "dependencies": {
79
- "hamzus-ui": "^0.0.255"
79
+ "hamzus-ui": "^0.0.257"
80
80
  },
81
81
  "engines": {
82
82
  "node": ">=18.0.0"
@@ -75,8 +75,6 @@
75
75
 
76
76
  return data
77
77
  } ));
78
- console.log(table);
79
- console.log(value);
80
78
 
81
79
 
82
80
  onChange(value);
@@ -23,7 +23,6 @@
23
23
  onChange = () => {},
24
24
  field
25
25
  } = $props();
26
- console.log(value);
27
26
 
28
27
  let selection = null;
29
28
 
@@ -61,7 +60,6 @@ console.log(value);
61
60
  };
62
61
  }
63
62
  async function getElement(data) {
64
- console.log(data);
65
63
 
66
64
  if (!data?.id) {
67
65
  return;
@@ -85,7 +83,6 @@ console.log(value);
85
83
  }
86
84
 
87
85
  function handleChange(value) {
88
- console.log("change : " + value);
89
86
 
90
87
  onChangeDetails(value?.element ?? null);
91
88
  onChange(value?.element.id.flat ?? null);