Skip to content

Commit

Permalink
Merge pull request #1136 from Esri/update-arcgis-core
Browse files Browse the repository at this point in the history
update @arcgis/core
  • Loading branch information
jmhauck authored Jan 29, 2025
2 parents 0c925d4 + 05a083b commit 65fa743
Show file tree
Hide file tree
Showing 7 changed files with 116 additions and 102 deletions.
206 changes: 108 additions & 98 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"workbox-build": "^7.3.0"
},
"dependencies": {
"@arcgis/core": "4.32.0-next.20241229",
"@arcgis/core": ">=4.32.0-next.20250108 <4.33",
"@esri/arcgis-html-sanitizer": "^4.1.0",
"@esri/arcgis-rest-auth": "^3.7.0",
"@esri/arcgis-rest-feature-layer": "^3.7.0",
Expand Down
3 changes: 2 additions & 1 deletion src/components/create-feature/create-feature.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,8 @@ export class CreateFeature {
visibleElements: {
snappingControls: false,
createFeaturesSection: true,
editFeaturesSection: false
editFeaturesSection: false,
flow: true
},
container: this._container
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@ export class CreateRelatedFeature {
this._editor = new this.Editor({
view: this.mapView,
visibleElements: {
flow: true,
snappingControls: false
},
container: this._container
Expand Down
1 change: 1 addition & 0 deletions src/components/edit-card/edit-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,7 @@ export class EditCard {
view: this.mapView,
layerInfos,
visibleElements: {
flow: true,
snappingControls: false
},
container
Expand Down
2 changes: 1 addition & 1 deletion src/components/feature-list/feature-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ export class FeatureList {
if (this._highlights) {
(selectedLayerView as any).highlights = JSON.parse(this._highlights);
}
selectedLayerView.highlightOptions = { color: new this.Color("#FFFF00") };
selectedLayerView.highlightOptions = { color: new this.Color("#FFFF00") } as any;

this._highlights = JSON.stringify((selectedLayerView as any).highlights);
this._highlightHandle = selectedLayerView.highlight([oId]);
Expand Down
3 changes: 2 additions & 1 deletion src/components/info-card/info-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export class InfoCard {
@State() _translations: typeof InfoCard_T9n;

/**
* boolean: When true user has been navigated to related feature
* boolean: When true user has been navigated to related feature
*/
@State() _navigatedToRelatedFeature: boolean;

Expand Down Expand Up @@ -589,6 +589,7 @@ export class InfoCard {
visibleElements: {
actionBar: false,
closeButton: this.showCloseBtn,
featureMenuHeading: false,
heading: !this.isMobile
}
});
Expand Down

0 comments on commit 65fa743

Please sign in to comment.