@esri/solutions-components 0.8.19 → 0.8.20
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/crowdsource-manager.cjs.entry.js +4 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/solutions-components.cjs.js +1 -1
- package/dist/collection/components/crowdsource-manager/crowdsource-manager.js +22 -1
- package/dist/components/crowdsource-manager.js +5 -1
- package/dist/esm/crowdsource-manager.entry.js +4 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/solutions-components.js +1 -1
- package/dist/solutions-components/p-347a2b0d.entry.js +6 -0
- package/dist/solutions-components/solutions-components.esm.js +1 -1
- package/dist/types/components/crowdsource-manager/crowdsource-manager.d.ts +6 -0
- package/dist/types/components.d.ts +8 -0
- package/package.json +1 -1
- package/dist/solutions-components/p-dae79b8d.entry.js +0 -6
@@ -49,6 +49,7 @@ const CrowdsourceManager = class {
|
|
49
49
|
this.defaultLevel = "";
|
50
50
|
this.defaultOid = "";
|
51
51
|
this.defaultWebmap = "";
|
52
|
+
this.introductionPageEnabled = false;
|
52
53
|
this.enableAutoRefresh = false;
|
53
54
|
this.enableBasemap = true;
|
54
55
|
this.enableColumnReorder = true;
|
@@ -181,7 +182,9 @@ const CrowdsourceManager = class {
|
|
181
182
|
* Renders the component.
|
182
183
|
*/
|
183
184
|
render() {
|
184
|
-
|
185
|
+
// only avoid border when we have a header color that is not white
|
186
|
+
const borderClass = this.popupHeaderColor && this.popupHeaderColor !== "#FFFFFF" ? "border-width-0" : "";
|
187
|
+
return (index.h(index.Host, { key: '175124a05c83f6f02bef1378a20e5a3ed083ce00' }, index.h("calcite-shell", { key: '10677408a11bbe6196a95622a7a5f69fd3766c20', class: "position-relative" }, index.h("calcite-panel", { key: 'd3f044385482089d2dd5a457c2de4b3cc748e7c6', class: `width-full height-full ${borderClass}` }, this._getBody(this._layoutMode, this._panelOpen, this._hideTable)), this._getFooter())));
|
185
188
|
}
|
186
189
|
/**
|
187
190
|
* Called after each render
|