@esri/solutions-components 0.8.36 → 0.8.37
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/basemap-gallery_7.cjs.entry.js +8 -0
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/map-select-tools_3.cjs.entry.js +6 -4
- package/dist/cjs/public-notification.cjs.entry.js +6 -5
- package/dist/cjs/solutions-components.cjs.js +1 -1
- package/dist/collection/components/floor-filter/floor-filter.js +8 -0
- package/dist/collection/components/map-select-tools/map-select-tools.js +21 -3
- package/dist/collection/components/public-notification/public-notification.js +23 -5
- package/dist/collection/components/refine-selection/refine-selection.js +19 -1
- package/dist/components/floor-filter2.js +8 -0
- package/dist/components/map-select-tools2.js +5 -3
- package/dist/components/public-notification.js +7 -5
- package/dist/components/refine-selection2.js +3 -1
- package/dist/esm/basemap-gallery_7.entry.js +8 -0
- package/dist/esm/loader.js +1 -1
- package/dist/esm/map-select-tools_3.entry.js +6 -4
- package/dist/esm/public-notification.entry.js +6 -5
- package/dist/esm/solutions-components.js +1 -1
- package/dist/solutions-components/p-9c05337d.entry.js +6 -0
- package/dist/solutions-components/p-ab2c8a60.entry.js +6 -0
- package/dist/solutions-components/p-c8233fcd.entry.js +6 -0
- package/dist/solutions-components/solutions-components.esm.js +1 -1
- package/dist/types/components/floor-filter/floor-filter.d.ts +4 -0
- package/dist/types/components/map-select-tools/map-select-tools.d.ts +4 -0
- package/dist/types/components/public-notification/public-notification.d.ts +4 -0
- package/dist/types/components/refine-selection/refine-selection.d.ts +4 -0
- package/dist/types/components.d.ts +24 -0
- package/package.json +1 -1
- package/dist/solutions-components/p-061da95a.entry.js +0 -6
- package/dist/solutions-components/p-6e260ca3.entry.js +0 -6
- package/dist/solutions-components/p-bda54b12.entry.js +0 -6
@@ -170,6 +170,14 @@ const FloorFilter = class {
|
|
170
170
|
render() {
|
171
171
|
return (index.h(index.Host, { key: 'c80a8d46fb48f3789d9fa09c2400faad49e2e236' }, index.h("div", { key: '82919a3ba061a17c8aeaa0d2f6f4f13bc428b519', ref: (el) => { this._floorFilterElement = el; } })));
|
172
172
|
}
|
173
|
+
/**
|
174
|
+
* StencilJS: Called once just after the component is first loaded.
|
175
|
+
*/
|
176
|
+
async componentDidLoad() {
|
177
|
+
if (this.mapView && !this.floorFilterWidget) {
|
178
|
+
await this._initFloorFilter(this.mapView);
|
179
|
+
}
|
180
|
+
}
|
173
181
|
//--------------------------------------------------------------------------
|
174
182
|
//
|
175
183
|
// Functions (protected)
|