Skip to content

Commit

Permalink
update version and build
Browse files Browse the repository at this point in the history
  • Loading branch information
jmhauck committed Jan 28, 2025
1 parent 73301e8 commit 8efea83
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 32 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [0.11.18] - Jan 28th 2025
* Accordion update
* CT Delivery for Manager AGOL-2025.R01 - Sprint1

## [0.11.17] - Jan 27th 2025
* layer table update
* package updates
Expand Down Expand Up @@ -989,4 +993,5 @@ Recover from test releases
[0.11.14]: https://github.com/Esri/solution.js/compare/v0.11.13...v0.11.14 "v0.11.14"
[0.11.16]: https://github.com/Esri/solution.js/compare/v0.11.14...v0.11.16 "v0.11.16"
[0.11.17]: https://github.com/Esri/solution.js/compare/v0.11.16...v0.11.17 "v0.11.17"
[Unreleased]: https://github.com/Esri/solution.js/compare/v0.11.17...HEAD "Unreleased Changes"
[0.11.18]: https://github.com/Esri/solution.js/compare/v0.11.17...v0.11.18 "v0.11.18"
[Unreleased]: https://github.com/Esri/solution.js/compare/v0.11.18...HEAD "Unreleased Changes"
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@esri/solutions-components",
"version": "0.11.17",
"version": "0.11.18",
"description": "Web Components for Esri's Solutions Applications",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
Expand Down
33 changes: 9 additions & 24 deletions src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -449,10 +449,6 @@ export namespace Components {
* boolean: when true the zoom widget will be available
*/
"enableZoom": boolean;
/**
* boolean: When true the features from extent will be shown
*/
"filterByMapExtent": boolean;
/**
* string: selected floor level
*/
Expand Down Expand Up @@ -674,10 +670,6 @@ export namespace Components {
* boolean: If true will consider the FeatureFilter applied on the layerview
*/
"applyLayerViewFilter"?: boolean;
/**
* boolean: when true the feature from map view extent will shown
*/
"filterByMapExtent": boolean;
/**
* boolean: Highlight feature on map optional (default false) boolean to indicate if we should highlight when hover on Feature in list
*/
Expand Down Expand Up @@ -882,10 +874,6 @@ export namespace Components {
* boolean: If true will consider the FeatureFilter applied on the layerview
*/
"applyLayerViewFilter"?: boolean;
/**
* boolean: when true the features count from map view extent will shown
*/
"filterByMapExtent": boolean;
/**
* string[]: If passed will show only these layers in the list if they are present in map and are editable
*/
Expand Down Expand Up @@ -1017,6 +1005,10 @@ export namespace Components {
* Validate if the editor has any pending edits
*/
"validateActiveEdits": () => Promise<boolean>;
/**
* Validate if the table should update
*/
"validateTableUpdate": (shouldUpdateTableOnExtentChange: boolean) => Promise<void>;
/**
* boolean: When true the selected feature will zoomed to in the map and the row will be scrolled to within the table
*/
Expand Down Expand Up @@ -1815,6 +1807,11 @@ export namespace Components {
* string: Locale to use for translation of stings in the UI
*/
"locale": string;
/**
* Selects an item in the accordion and expands the accordion item containing it. Only applies when selectionMode is "single" or "single-persist".
* @param id the id of the item to select
*/
"selectItem": (id: string) => Promise<void>;
/**
* ITemplateInfo[]: Collection of template infos
*/
Expand Down Expand Up @@ -3331,10 +3328,6 @@ declare namespace LocalJSX {
* boolean: when true the zoom widget will be available
*/
"enableZoom"?: boolean;
/**
* boolean: When true the features from extent will be shown
*/
"filterByMapExtent"?: boolean;
/**
* string: selected floor level
*/
Expand Down Expand Up @@ -3591,10 +3584,6 @@ declare namespace LocalJSX {
* boolean: If true will consider the FeatureFilter applied on the layerview
*/
"applyLayerViewFilter"?: boolean;
/**
* boolean: when true the feature from map view extent will shown
*/
"filterByMapExtent"?: boolean;
/**
* boolean: Highlight feature on map optional (default false) boolean to indicate if we should highlight when hover on Feature in list
*/
Expand Down Expand Up @@ -3775,10 +3764,6 @@ declare namespace LocalJSX {
* boolean: If true will consider the FeatureFilter applied on the layerview
*/
"applyLayerViewFilter"?: boolean;
/**
* boolean: when true the features count from map view extent will shown
*/
"filterByMapExtent"?: boolean;
/**
* string[]: If passed will show only these layers in the list if they are present in map and are editable
*/
Expand Down
2 changes: 2 additions & 0 deletions src/components/info-card/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@
| `mapView` | -- | esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html | `MapView` | `undefined` |
| `paginationEnabled` | `pagination-enabled` | boolean: If true will show the pagination for multiple features | `boolean` | `true` |
| `position` | `position` | string: Set the position of the feature info | `string` | `'absolute'` |
| `showCloseBtn` | `show-close-btn` | boolean: If true show close button on the feature info | `boolean` | `false` |


## Events

| Event | Description | Type |
| ------------------ | ------------------------------------------------- | ---------------------------------------------------------------------------- |
| `clearSelection` | Emitted on demand when close button is clicked | `CustomEvent<void>` |
| `popupClosed` | Emitted on demand when the popup is closed | `CustomEvent<void>` |
| `selectionChanged` | Emitted on demand when the selected index changes | `CustomEvent<{ selectedFeature: Graphic[]; selectedFeatureIndex: number; }>` |

Expand Down
25 changes: 21 additions & 4 deletions src/components/layer-table/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,16 @@ Type: `Promise<void>`



### `filterUpdate(active: boolean) => Promise<void>`
### `filterUpdate(filterActive: boolean, keepTableUpdatingOnMapExtentChange?: boolean) => Promise<void>`

Updates the filter

#### Parameters

| Name | Type | Description |
| -------- | --------- | ----------- |
| `active` | `boolean` | |
| Name | Type | Description |
| ------------------------------------ | --------- | ----------- |
| `filterActive` | `boolean` | |
| `keepTableUpdatingOnMapExtentChange` | `boolean` | |

#### Returns

Expand Down Expand Up @@ -101,6 +102,22 @@ Type: `Promise<boolean>`



### `validateTableUpdate(shouldUpdateTableOnExtentChange: boolean) => Promise<void>`

Validate if the table should update

#### Parameters

| Name | Type | Description |
| --------------------------------- | --------- | ----------- |
| `shouldUpdateTableOnExtentChange` | `boolean` | |

#### Returns

Type: `Promise<void>`




## Dependencies

Expand Down

0 comments on commit 8efea83

Please sign in to comment.