@esri/solutions-components 0.10.20 → 0.10.21
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/cjs/crowdsource-manager.cjs.entry.js +17 -3
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/public-notification.cjs.entry.js +3 -3
- package/dist/cjs/solutions-components.cjs.js +1 -1
- package/dist/collection/components/crowdsource-manager/crowdsource-manager.js +37 -4
- package/dist/collection/components/public-notification/public-notification.js +5 -5
- package/dist/components/crowdsource-manager.js +20 -4
- package/dist/components/public-notification.js +3 -3
- package/dist/esm/crowdsource-manager.entry.js +17 -3
- package/dist/esm/loader.js +1 -1
- package/dist/esm/public-notification.entry.js +3 -3
- package/dist/esm/solutions-components.js +1 -1
- package/dist/solutions-components/{p-4c88578a.entry.js → p-5067d77e.entry.js} +1 -1
- package/dist/solutions-components/p-bd2278cf.entry.js +6 -0
- package/dist/solutions-components/solutions-components.esm.js +1 -1
- package/dist/types/components/crowdsource-manager/crowdsource-manager.d.ts +8 -0
- package/dist/types/components.d.ts +8 -0
- package/package.json +1 -1
- package/dist/solutions-components/p-5612aa0c.entry.js +0 -6
@@ -22,7 +22,7 @@ const CrowdsourceManager = class {
|
|
22
22
|
index.registerInstance(this, hostRef);
|
23
23
|
this.showIntroductionWindow = index.createEvent(this, "showIntroductionWindow", 7);
|
24
24
|
this.showCoverPage = index.createEvent(this, "showCoverPage", 7);
|
25
|
-
this.appLayout =
|
25
|
+
this.appLayout = undefined;
|
26
26
|
this.appProxies = undefined;
|
27
27
|
this.basemapConfig = undefined;
|
28
28
|
this.coverPageEnabled = undefined;
|
@@ -45,6 +45,7 @@ const CrowdsourceManager = class {
|
|
45
45
|
this.enableSearch = true;
|
46
46
|
this.enableShare = false;
|
47
47
|
this.enableZoom = true;
|
48
|
+
this.hideMapOnLoad = false;
|
48
49
|
this.mapInfos = [];
|
49
50
|
this.onlyShowUpdatableLayers = true;
|
50
51
|
this.popupHeaderColor = undefined;
|
@@ -128,6 +129,12 @@ const CrowdsourceManager = class {
|
|
128
129
|
enableZoomWatchHandler() {
|
129
130
|
this._initMapZoom();
|
130
131
|
}
|
132
|
+
/**
|
133
|
+
* When true and no appLayout is defined the map will be hidden on load
|
134
|
+
*/
|
135
|
+
hideMapOnLoadWatchHandler() {
|
136
|
+
console.warn("hideMapOnLoad will be removed. Please use appLayout to control layout options.");
|
137
|
+
}
|
131
138
|
//--------------------------------------------------------------------------
|
132
139
|
//
|
133
140
|
// Methods (public)
|
@@ -206,7 +213,7 @@ const CrowdsourceManager = class {
|
|
206
213
|
render() {
|
207
214
|
// only avoid border when we have a header color that is not white
|
208
215
|
const borderClass = this.popupHeaderColor && this.popupHeaderColor !== "#FFFFFF" ? "border-width-0" : "";
|
209
|
-
return (index.h(index.Host, { key: '
|
216
|
+
return (index.h(index.Host, { key: '28614b892c93b83de202a681a756027472d092c2' }, index.h("calcite-shell", { key: '8f9c57fa9d1c1c88dbac9706376aad6bbd425691', class: "position-relative" }, index.h("calcite-panel", { key: '3c156df89f396425c2711a39968017cc23910a55', class: `width-full height-full ${borderClass}` }, this._getBody(this._layoutMode, this._panelOpen, this._hideTable)), this._getFooter()), this._filterModal()));
|
210
217
|
}
|
211
218
|
/**
|
212
219
|
* Called after each render
|
@@ -225,6 +232,12 @@ const CrowdsourceManager = class {
|
|
225
232
|
*/
|
226
233
|
async componentDidLoad() {
|
227
234
|
this._resizeObserver.observe(this.el);
|
235
|
+
if (this.hideMapOnLoad && !this.appLayout) {
|
236
|
+
this.appLayout = 'tableView';
|
237
|
+
}
|
238
|
+
else if (!this.appLayout) {
|
239
|
+
this.appLayout = 'splitView';
|
240
|
+
}
|
228
241
|
this._isMapViewOnLoad = this.appLayout === 'mapView';
|
229
242
|
this._setActiveLayout(this.appLayout);
|
230
243
|
}
|
@@ -666,7 +679,8 @@ const CrowdsourceManager = class {
|
|
666
679
|
this._translations = messages[0];
|
667
680
|
}
|
668
681
|
static get watchers() { return {
|
669
|
-
"enableZoom": ["enableZoomWatchHandler"]
|
682
|
+
"enableZoom": ["enableZoomWatchHandler"],
|
683
|
+
"hideMapOnLoad": ["hideMapOnLoadWatchHandler"]
|
670
684
|
}; }
|
671
685
|
};
|
672
686
|
CrowdsourceManager.style = CrowdsourceManagerStyle0;
|