@esri/solutions-components 0.7.28 → 0.7.29

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.
@@ -1,6 +1,3 @@
1
1
  {
2
- "information": "Information",
3
- "media": "Media",
4
- "comments": "Comments",
5
- "selectFeaturesToStart": "Select a record to get started"
2
+ "selectFeaturesToStart": "Select a record to get started. Click while pressing the Ctrl key to select multiple records in the table."
6
3
  }
@@ -1,6 +1,3 @@
1
1
  {
2
- "information": "Information",
3
- "media": "Media",
4
- "comments": "Comments",
5
- "selectFeaturesToStart": "Select a record to get started"
2
+ "selectFeaturesToStart": "Select a record to get started. Click while pressing the Ctrl key to select multiple records in the table."
6
3
  }
@@ -274,7 +274,7 @@ const LayerTable = class {
274
274
  /**
275
275
  * watch for selection changes
276
276
  */
277
- async _selectedIdsWatchHandler() {
277
+ async selectedIdsWatchHandler() {
278
278
  this._updateShareUrl();
279
279
  this._validateEnabledActions();
280
280
  if (this._selectAllActive && this.selectedIds.length !== this._allIds.length) {
@@ -1295,7 +1295,7 @@ const LayerTable = class {
1295
1295
  _initLayerExpressions() {
1296
1296
  var _a, _b;
1297
1297
  const layerExpressions = (_b = (_a = this.mapInfo) === null || _a === void 0 ? void 0 : _a.filterConfig) === null || _b === void 0 ? void 0 : _b.layerExpressions;
1298
- this._layerExpressions = layerExpressions ? layerExpressions.filter((exp) => exp.id === this._layer.id) : [];
1298
+ this._layerExpressions = layerExpressions ? layerExpressions.filter((exp) => { var _a; return exp.id === ((_a = this._layer) === null || _a === void 0 ? void 0 : _a.id); }) : [];
1299
1299
  this._filterList.layerExpressions = this._layerExpressions;
1300
1300
  this._filterActive = false;
1301
1301
  }
@@ -1461,7 +1461,7 @@ const LayerTable = class {
1461
1461
  "mapInfo": ["mapInfoWatchHandler"],
1462
1462
  "mapView": ["mapViewWatchHandler"],
1463
1463
  "_layer": ["_layerWatchHandler"],
1464
- "_selectedIds": ["_selectedIdsWatchHandler"],
1464
+ "selectedIds": ["selectedIdsWatchHandler"],
1465
1465
  "_sortActive": ["_sortActiveWatchHandler"]
1466
1466
  }; }
1467
1467
  };