@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
@@ -32,9 +32,9 @@ const PublicNotification = class {
|
|
32
32
|
this.defaultExportTitle = "";
|
33
33
|
this.defaultNumLabelsPerPage = 6;
|
34
34
|
this.enableLayerFeatures = true;
|
35
|
-
this.enableLayerFeaturesOnLoad =
|
35
|
+
this.enableLayerFeaturesOnLoad = false;
|
36
36
|
this.enableSearchDistance = true;
|
37
|
-
this.enableSearchDistanceOnLoad =
|
37
|
+
this.enableSearchDistanceOnLoad = false;
|
38
38
|
this.enableSketchTools = true;
|
39
39
|
this.featureEffect = undefined;
|
40
40
|
this.featureHighlightEnabled = undefined;
|
@@ -255,7 +255,7 @@ const PublicNotification = class {
|
|
255
255
|
*/
|
256
256
|
render() {
|
257
257
|
const headerSlot = this._isMobile ? "footer" : "header";
|
258
|
-
return (h(Host, { key: '
|
258
|
+
return (h(Host, { key: '019074cdfaddd8121a6ed255f42dea427aac9440' }, h("calcite-shell", { key: 'ece21e206f6519627bc8f139c35f68838eb701a2' }, h("calcite-action-bar", { key: '92883d5df9fcf43584f3934bf7f61640afed2bdb', class: "border-bottom-1 action-bar-size", "expand-disabled": true, layout: "horizontal", slot: headerSlot }, this._getActionGroup("list-check", EPageType.LIST, this._translations.myLists), this.showRefineSelection ? this._getActionGroup("test-data", EPageType.REFINE, this._translations.refineSelection) : null, this._getActionGroup("export", EPageType.EXPORT, this._translations.export)), this._getPage(this._pageType))));
|
259
259
|
}
|
260
260
|
/**
|
261
261
|
* StencilJS: Called once just after the component is first loaded.
|