@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.
- package/dist/assets/t9n/card-manager/resources.json +1 -4
- package/dist/assets/t9n/card-manager/resources_en.json +1 -4
- package/dist/cjs/card-manager_3.cjs.entry.js +3 -3
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/solutions-components.cjs.js +1 -1
- package/dist/collection/components/layer-table/layer-table.js +4 -4
- package/dist/components/layer-table2.js +4 -4
- package/dist/esm/card-manager_3.entry.js +3 -3
- package/dist/esm/loader.js +1 -1
- package/dist/esm/solutions-components.js +1 -1
- package/dist/solutions-components/p-78e720cc.entry.js +6 -0
- package/dist/solutions-components/solutions-components.esm.js +1 -1
- package/dist/types/components/layer-table/layer-table.d.ts +1 -1
- package/package.json +1 -1
- package/dist/solutions-components/p-5c22e9f4.entry.js +0 -6
@@ -1,6 +1,3 @@
|
|
1
1
|
{
|
2
|
-
"
|
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
|
-
"
|
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
|
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
|
-
"
|
1464
|
+
"selectedIds": ["selectedIdsWatchHandler"],
|
1465
1465
|
"_sortActive": ["_sortActiveWatchHandler"]
|
1466
1466
|
}; }
|
1467
1467
|
};
|