@vitrosoftware/common-ui-ts 1.1.161 → 1.1.162

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 CHANGED
@@ -21985,7 +21985,21 @@ var TreeGrid = function TreeGrid(props) {
21985
21985
  if (searchCriterionList && searchCriterionList.length) {
21986
21986
  var searchCriterionListJson = JSON.stringify(searchCriterionList);
21987
21987
  var value = "SearchCriterionList='" + searchCriterionListJson + "'";
21988
- newData = initData(data, value, 'B');
21988
+ newData = initData(newData, value, 'B');
21989
+ }
21990
+ var visibleColumnNameList = [];
21991
+ var columnList = tableView.columnList;
21992
+ for (var column in columnList) {
21993
+ if (columnList.hasOwnProperty(column)) {
21994
+ if (columnList[column] && columnList[column].Visible) {
21995
+ visibleColumnNameList.push(column);
21996
+ }
21997
+ }
21998
+ }
21999
+ if (visibleColumnNameList && visibleColumnNameList.length) {
22000
+ var visibleColumnNameListJson = JSON.stringify(visibleColumnNameList);
22001
+ var _value = "VisibleColumnList='" + visibleColumnNameListJson + "'";
22002
+ newData = initData(newData, _value, 'B');
21989
22003
  }
21990
22004
  return newData;
21991
22005
  };
@@ -63303,7 +63317,7 @@ var Viewer = function Viewer(props) {
63303
63317
  };
63304
63318
 
63305
63319
  var name = "@vitrosoftware/common-ui-ts";
63306
- var version$1 = "1.1.161";
63320
+ var version$1 = "1.1.162";
63307
63321
  var description = "vitro software common ui ts";
63308
63322
  var author = "";
63309
63323
  var license = "MIT";
@@ -63329,13 +63343,13 @@ var peerDependencies = {
63329
63343
  react: "18.2.0"
63330
63344
  };
63331
63345
  var devDependencies = {
63332
- "@types/jest": "latest",
63346
+ "@types/jest": "29.4.0",
63333
63347
  "@types/jquery": "^3.5.16",
63334
63348
  "@types/jstree": "^3.3.41",
63335
- "@types/node": "latest",
63336
- "@types/react": "latest",
63337
- "@types/react-dom": "latest",
63338
- "@types/react-router-bootstrap": "latest",
63349
+ "@types/node": "18.14.2",
63350
+ "@types/react": "18.0.28",
63351
+ "@types/react-dom": "18.0.11",
63352
+ "@types/react-router-bootstrap": "0.26.2",
63339
63353
  "@typescript-eslint/eslint-plugin": "^2.26.0",
63340
63354
  "@typescript-eslint/parser": "^2.26.0",
63341
63355
  "babel-eslint": "^10.0.3",
@@ -63345,7 +63359,7 @@ var devDependencies = {
63345
63359
  eslint: "^6.8.0",
63346
63360
  "eslint-config-prettier": "^6.7.0",
63347
63361
  "eslint-config-standard": "^14.1.0",
63348
- "eslint-config-standard-react": "^9.2.0",
63362
+ "eslint-config-standard-react": "9.2.0",
63349
63363
  "eslint-plugin-import": "^2.18.2",
63350
63364
  "eslint-plugin-node": "^11.0.0",
63351
63365
  "eslint-plugin-prettier": "^3.1.1",
@@ -63362,7 +63376,7 @@ var devDependencies = {
63362
63376
  "react-bootstrap": "2.9.1",
63363
63377
  "react-dom": "18.2.0",
63364
63378
  "react-scripts": "5.0.1",
63365
- typescript: "^4.7.4"
63379
+ typescript: "4.9.4"
63366
63380
  };
63367
63381
  var files = [
63368
63382
  "dist",
@@ -63381,7 +63395,7 @@ var dependencies = {
63381
63395
  "react-click-outside": "^3.0.1",
63382
63396
  "react-router-bootstrap": "^0.24.4",
63383
63397
  reactstrap: "^9.2.2",
63384
- "rollup-plugin-postcss": "^3.1.3"
63398
+ "rollup-plugin-postcss": "3.1.3"
63385
63399
  };
63386
63400
  var Package = {
63387
63401
  name: name,