Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
jmhauck committed Apr 26, 2024
1 parent 92a24ef commit e42c1a3
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 9 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.8.6] - Apr 26th 2024
Delivery for Reporter Instant App - Sprint1 - AGOL-2024.R02
Add optional export of graphics with map for PN

## [0.8.5] - Apr 24th 2024
Add appProxies

Expand Down Expand Up @@ -533,4 +537,5 @@ Recover from test releases
[0.8.3]: https://github.com/Esri/solution.js/compare/v0.8.2...v0.8.3 "v0.8.3"
[0.8.4]: https://github.com/Esri/solution.js/compare/v0.8.3...v0.8.4 "v0.8.4"
[0.8.5]: https://github.com/Esri/solution.js/compare/v0.8.4...v0.8.5 "v0.8.5"
[Unreleased]: https://github.com/Esri/solution.js/compare/v0.8.5...HEAD "Unreleased Changes"
[0.8.6]: https://github.com/Esri/solution.js/compare/v0.8.5...v0.8.6 "v0.8.6"
[Unreleased]: https://github.com/Esri/solution.js/compare/v0.8.6...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.8.5",
"version": "0.8.6",
"description": "Web Components for Esri's Solutions Applications",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
Expand Down
11 changes: 6 additions & 5 deletions src/components/create-feature/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@

## Properties

| Property | Attribute | Description | Type | Default |
| ----------------- | ------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------- | ----------- |
| `customizeSubmit` | `customize-submit` | boolean: Set this to true when have a custom submit button in the app. This will hide the header and footer elements of the editor and user needs to execute the submit method manually. | `boolean` | `false` |
| `mapView` | -- | esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html | `MapView` | `undefined` |
| `selectedLayerId` | `selected-layer-id` | string: Layer id of the feature layer in which the new feature is to be created | `string` | `undefined` |
| Property | Attribute | Description | Type | Default |
| --------------------- | ------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ----------- |
| `customizeSubmit` | `customize-submit` | boolean: Set this to true when have a custom submit button in the app. This will hide the header and footer elements of the editor and user needs to execute the submit method manually. | `boolean` | `false` |
| `mapView` | -- | esri/views/MapView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html | `MapView` | `undefined` |
| `searchConfiguration` | -- | ISearchConfiguration: Configuration details for the Search widget | `ISearchConfiguration` | `undefined` |
| `selectedLayerId` | `selected-layer-id` | string: Layer id of the feature layer in which the new feature is to be created | `string` | `undefined` |


## Events
Expand Down
14 changes: 14 additions & 0 deletions src/components/feature-list/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

| Property | Attribute | Description | Type | Default |
| -------------------- | ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | --------- | ----------- |
| `highlightOnHover` | `highlight-on-hover` | boolean: Highlight feature on map optional (default false) boolean to indicate if we should highlight when hover on Feature in list | `boolean` | `false` |
| `highlightOnMap` | `highlight-on-map` | boolean: Highlight feature on map optional (default false) boolean to indicate if we should highlight and zoom to the extent of the feature geometry | `boolean` | `false` |
| `mapView` | -- | esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html | `MapView` | `undefined` |
| `noFeaturesFoundMsg` | `no-features-found-msg` | string: Message to be displayed when features are not found | `string` | `undefined` |
Expand All @@ -23,6 +24,19 @@
| `featureSelect` | Emitted on demand when feature is selected using the list | `CustomEvent<Graphic>` |


## Methods

### `refresh() => Promise<void>`

Refresh the feature list which will fetch the latest features and update the features list

#### Returns

Type: `Promise<void>`

Promise that resolves when the operation is complete


## Dependencies

### Used by
Expand Down

0 comments on commit e42c1a3

Please sign in to comment.