@visns-studio/visns-components 5.15.12 → 5.15.13

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
@@ -32,7 +32,7 @@
32
32
  "html2canvas": "^1.4.1",
33
33
  "lodash": "^4.17.21",
34
34
  "lodash.debounce": "^4.0.8",
35
- "lucide-react": "^0.540.0",
35
+ "lucide-react": "^0.541.0",
36
36
  "mapbox-gl": "^3.14.0",
37
37
  "moment": "^2.30.1",
38
38
  "motion": "^12.23.12",
@@ -94,7 +94,7 @@
94
94
  "react-dom": "^17.0.0 || ^18.0.0"
95
95
  },
96
96
  "name": "@visns-studio/visns-components",
97
- "version": "5.15.12",
97
+ "version": "5.15.13",
98
98
  "description": "Various packages to assist in the development of our Custom Applications.",
99
99
  "main": "src/index.js",
100
100
  "files": [
@@ -177,6 +177,11 @@ const loadData = async (
177
177
  params.where = ajaxSetting.where;
178
178
  }
179
179
 
180
+ // Add columns parameter if specified in ajaxSetting
181
+ if (ajaxSetting && ajaxSetting.columns) {
182
+ params.columns = ajaxSetting.columns;
183
+ }
184
+
180
185
  if (filterValue) {
181
186
  filterValue.forEach((fv) => {
182
187
  const identifier = fv.whereHas?.column || fv.key || fv.name;