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