@conterra/ct-mapapps-typings 4.19.3-next.20250627112807 → 4.19.3
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/agssearch/package.json +1 -1
- package/apprt/package.json +1 -1
- package/apprt-binding/package.json +1 -1
- package/apprt-core/Observable.d.ts +55 -0
- package/apprt-core/Types.d.ts +1 -1
- package/apprt-core/package.json +1 -1
- package/apprt-dom/package.json +1 -1
- package/apprt-fetch/package.json +1 -1
- package/apprt-request/package.json +1 -1
- package/apprt-streams/package.json +1 -1
- package/apprt-tokens/package.json +1 -1
- package/apprt-vue/package.json +1 -1
- package/apprt-vuetify/package.json +1 -1
- package/coordinatetransformer/package.json +1 -1
- package/ct/api/omnisearch/ResultHandler.d.ts +3 -0
- package/ct/api/omnisearch/Store.d.ts +3 -0
- package/ct/package.json +1 -1
- package/ct/ui/controls/mobile/DropDownMenu.d.ts +3 -0
- package/dataform/package.json +1 -1
- package/dataview/package.json +1 -1
- package/domains-system/package.json +1 -1
- package/editing/package.json +1 -1
- package/esri-widgets/package.json +1 -1
- package/geojson/package.json +1 -1
- package/geometryservice/package.json +1 -1
- package/graphics/package.json +1 -1
- package/highlights/package.json +1 -1
- package/integration-map/package.json +1 -1
- package/managementlayout/package.json +1 -1
- package/map-actions/package.json +1 -1
- package/map-basemaps-api/package.json +1 -1
- package/map-config-api/package.json +1 -1
- package/map-init/package.json +1 -1
- package/map-widget/package.json +1 -1
- package/mapdraw-api/package.json +1 -1
- package/mapnavigation/package.json +1 -1
- package/maptips/package.json +1 -1
- package/measurement-2d/package.json +1 -1
- package/measurement-3d/package.json +1 -1
- package/omnisearch/ActionsHandler.d.ts +9 -0
- package/omnisearch/DrawHandler.d.ts +9 -0
- package/omnisearch/DropDownMenu.d.ts +3 -0
- package/omnisearch/OmniSearchFactory.d.ts +3 -0
- package/omnisearch/OmniSearchModel.d.ts +3 -0
- package/omnisearch/RadioButton.d.ts +3 -0
- package/omnisearch/ResultCommand.d.ts +9 -0
- package/omnisearch/SearchUI.d.ts +3 -0
- package/omnisearch/SettingsWidget.d.ts +3 -0
- package/omnisearch/ZoomHandler.d.ts +8 -0
- package/omnisearch/package.json +5 -0
- package/package.json +1 -1
- package/parametermanager/package.json +1 -1
- package/popups/package.json +1 -1
- package/portal-security/package.json +1 -1
- package/result-api/package.json +1 -1
- package/resultcenter/ActionController.d.ts +3 -0
- package/resultcenter/BaseCommand.d.ts +3 -0
- package/resultcenter/DataModel.d.ts +3 -0
- package/resultcenter/DataModelBroadcaster.d.ts +3 -0
- package/resultcenter/DataModelMapController.d.ts +25 -0
- package/resultcenter/DataViewController.d.ts +3 -0
- package/resultcenter/DataViewStore.d.ts +3 -0
- package/resultcenter/ExportResultsCommand.d.ts +12 -0
- package/resultcenter/FeatureMapVisualizer.d.ts +35 -0
- package/resultcenter/GraphicResolverFactory.d.ts +15 -0
- package/resultcenter/OpenPopupService.d.ts +5 -0
- package/resultcenter/PostfixAttributeTableLookupStrategy.d.ts +3 -0
- package/resultcenter/RemoveResultsCommand.d.ts +6 -0
- package/resultcenter/RestrictQueriesToView.d.ts +3 -0
- package/resultcenter/ResultcenterToolRuleProcessor.d.ts +3 -0
- package/resultcenter/SearchStoreHandler.d.ts +8 -0
- package/resultcenter/SelectAllResultsCommand.d.ts +11 -0
- package/resultcenter/StoreEventReceiver.d.ts +3 -0
- package/resultcenter/StoreRegistration.d.ts +3 -0
- package/resultcenter/TriggerShowResultCenter.d.ts +3 -0
- package/resultcenter/VisualizationLayerResolver.d.ts +13 -0
- package/resultcenter/package.json +5 -0
- package/search-api/api.d.ts +2 -16
- package/search-api/package.json +1 -1
- package/search-ui/package.json +1 -1
- package/selection-resultcenter/CachingStore.d.ts +229 -0
- package/selection-resultcenter/MemoryStore.d.ts +10 -0
- package/selection-resultcenter/package.json +5 -0
- package/selection-services/package.json +1 -1
- package/store-api/package.json +1 -1
- package/system/package.json +1 -1
- package/templatelayout/package.json +1 -1
- package/test-utils/package.json +1 -1
- package/theme-tester/package.json +1 -1
- package/toc/package.json +1 -1
- package/toolrules/package.json +1 -1
- package/vuetify-component-overview/package.json +1 -1
- package/windowmanager/package.json +1 -1
- package/wizard/package.json +1 -1
- package/coordinateconversion/api.d.ts +0 -181
- package/coordinateconversion/package.json +0 -5
package/agssearch/package.json
CHANGED
package/apprt/package.json
CHANGED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
declare global {
|
|
2
|
+
const Observable: any;
|
|
3
|
+
}
|
|
4
|
+
/**
|
|
5
|
+
* Exports the Observable class.
|
|
6
|
+
*
|
|
7
|
+
* @deprecated the observable proposal is 'dead'
|
|
8
|
+
* @example
|
|
9
|
+
* ```ts
|
|
10
|
+
* // create observable, which ticks all 100 msec
|
|
11
|
+
* const observable = new Observable((observer: any) => {
|
|
12
|
+
* let counter = 0;
|
|
13
|
+
* const t = setInterval(() => {
|
|
14
|
+
* observer.next(++counter);
|
|
15
|
+
* }, 100);
|
|
16
|
+
* // return a cleanup function, is called if subscriber unsubscribes
|
|
17
|
+
* return () => {
|
|
18
|
+
* clearInterval(t);
|
|
19
|
+
* };
|
|
20
|
+
* });
|
|
21
|
+
* // now somebody can subscribe
|
|
22
|
+
* const subscription = observable.subscribe({
|
|
23
|
+
* next(value: number) {
|
|
24
|
+
* console.debug(value);
|
|
25
|
+
* }
|
|
26
|
+
* });
|
|
27
|
+
* // to unlink do:
|
|
28
|
+
* subscription.unsubscribe();
|
|
29
|
+
* ```
|
|
30
|
+
*
|
|
31
|
+
* @example
|
|
32
|
+
* ```
|
|
33
|
+
* // use object observable definition
|
|
34
|
+
* observable.subscribe({
|
|
35
|
+
* next(value) { },
|
|
36
|
+
* error(e) { },
|
|
37
|
+
* complete() { }
|
|
38
|
+
* });
|
|
39
|
+
* ```
|
|
40
|
+
*
|
|
41
|
+
* @example
|
|
42
|
+
* ```
|
|
43
|
+
* // use method definition, first argument is next, second error and third complete
|
|
44
|
+
* observable.subscribe(
|
|
45
|
+
* (value)=> {},
|
|
46
|
+
* (e)=> {},
|
|
47
|
+
* ()=> {}
|
|
48
|
+
* );
|
|
49
|
+
* ```
|
|
50
|
+
* @see [TC39 Proposal](https://github.com/tc39/proposal-observable)
|
|
51
|
+
* @see [TC39 Proposal Github](https://tc39.github.io/proposal-observable)
|
|
52
|
+
*/
|
|
53
|
+
declare const ExtendedObservable: any;
|
|
54
|
+
|
|
55
|
+
export { ExtendedObservable, ExtendedObservable as default };
|
package/apprt-core/Types.d.ts
CHANGED
|
@@ -100,7 +100,7 @@ type WatchCallback<NameType, ValueType> = (event: WatchEvent<NameType, ValueType
|
|
|
100
100
|
* It matches the apprt-core/Mutable watch interface.
|
|
101
101
|
*/
|
|
102
102
|
interface Watchable<WatchableProperties> {
|
|
103
|
-
watch<Name extends keyof WatchableProperties>(name: Name,
|
|
103
|
+
watch<Name extends keyof WatchableProperties>(name: Name, callBack: WatchCallback<Name, WatchableProperties[Name]>): Handle;
|
|
104
104
|
}
|
|
105
105
|
/**
|
|
106
106
|
* Helper type to express a set of statically known values (with autocompletion) that can still be extended.
|
package/apprt-core/package.json
CHANGED
package/apprt-dom/package.json
CHANGED
package/apprt-fetch/package.json
CHANGED
package/apprt-vue/package.json
CHANGED
package/ct/package.json
CHANGED
package/dataform/package.json
CHANGED
package/dataview/package.json
CHANGED
package/editing/package.json
CHANGED
package/geojson/package.json
CHANGED
package/graphics/package.json
CHANGED
package/highlights/package.json
CHANGED
package/map-actions/package.json
CHANGED
package/map-init/package.json
CHANGED
package/map-widget/package.json
CHANGED
package/mapdraw-api/package.json
CHANGED
package/maptips/package.json
CHANGED
package/package.json
CHANGED
package/popups/package.json
CHANGED
package/result-api/package.json
CHANGED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
declare function DataModelMapController(): {
|
|
2
|
+
dataModel: null;
|
|
3
|
+
mapWidgetModel: null;
|
|
4
|
+
constructor(): void;
|
|
5
|
+
zoomToAll(): void;
|
|
6
|
+
zoomToSelection(): void;
|
|
7
|
+
_getGeometryOpts(): {
|
|
8
|
+
fields: {
|
|
9
|
+
geometry: boolean;
|
|
10
|
+
};
|
|
11
|
+
geometry: {
|
|
12
|
+
sr: any;
|
|
13
|
+
maxAllowableOffset: number;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
zoomToItems(idsOrQuery: any): void;
|
|
17
|
+
zoomToItem(id: any): void;
|
|
18
|
+
centerSelection(): void;
|
|
19
|
+
centerItems(idsOrQuery: any): void;
|
|
20
|
+
centerItem(id: any): void;
|
|
21
|
+
openPopup(itemId: any): void;
|
|
22
|
+
_withItems(idsOrQuery: any, cb: any, scope: any, options: any): void;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
export { DataModelMapController as default };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileOverview contains code for common (shared) command functions.
|
|
3
|
+
*/
|
|
4
|
+
declare class ExportResultsCommand {
|
|
5
|
+
exportSelected(): Promise<void>;
|
|
6
|
+
_formatValue(value: any, type: any): string;
|
|
7
|
+
_escape(value: any, separator: any): any;
|
|
8
|
+
_prepareEntries(entries: any, separator: any, undefinedValue: any, ignoreFields: any, metadata: any, domains: any, exportDomainValues: any, detectExtraFields: any): string;
|
|
9
|
+
_resolveFields(entries: any, fields: any, ignoreFields: any, detectExtraFields?: boolean): any;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export { ExportResultsCommand as default };
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
declare class FeatureMapVisualizer {
|
|
2
|
+
_mapWidgetModel: any;
|
|
3
|
+
_highlighterFactory: any;
|
|
4
|
+
_dataModel: any;
|
|
5
|
+
_dataViewController: any;
|
|
6
|
+
_graphicResolver: any;
|
|
7
|
+
_coordinateTransformer: any;
|
|
8
|
+
_popupTemplateResolver: any;
|
|
9
|
+
deactivate(): void;
|
|
10
|
+
viewChanged(): Promise<void>;
|
|
11
|
+
handleOnDataUpdate(): Promise<void>;
|
|
12
|
+
findGraphicsById(itemId: any): any;
|
|
13
|
+
_updateFeatures(): void;
|
|
14
|
+
_renderStoreItems(store: any): Promise<void>;
|
|
15
|
+
_triggerPartialUpdateOnDataChange(store: any, evt: any): void;
|
|
16
|
+
_updateTask: any;
|
|
17
|
+
_applyDataUpdates(store: any, sr: any, renderId: any): Promise<void>;
|
|
18
|
+
_addHighlights(features: any, store: any, domains: any, spatialReference: any): Promise<void>;
|
|
19
|
+
_updateHighlight(itemId: any, geometry: any, attributes: any, context: any, popupTemplate: any): void;
|
|
20
|
+
_removeHighlight(itemId: any): void;
|
|
21
|
+
_removeHighlights(): void;
|
|
22
|
+
_getContext(store: any): any;
|
|
23
|
+
_lookupHighlighter(name: any): any;
|
|
24
|
+
_createHighlighter(existing: any, resolver: any): any;
|
|
25
|
+
_resolveDomains(store: any): Promise<{
|
|
26
|
+
mergeDomainsIntoFields: (attributes: any) => any;
|
|
27
|
+
toDomainValues(attributes: any): Record<string, any>;
|
|
28
|
+
isDomainField(name: string): boolean;
|
|
29
|
+
} | undefined>;
|
|
30
|
+
_transformFeatures(features: any, targetSpatialReference: any): Promise<any>;
|
|
31
|
+
_destroyHighlighter(): void;
|
|
32
|
+
#private;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export { FeatureMapVisualizer as default };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare class GraphicResolverFactory {
|
|
2
|
+
activate(): void;
|
|
3
|
+
symbolLookup: any;
|
|
4
|
+
_defaultSymbolLookup: any;
|
|
5
|
+
deactivate(): void;
|
|
6
|
+
/** Used by FeatureMapVisualizer to lookup symbols */
|
|
7
|
+
resolveSymbol(geometry: any, attributes: any, context: any): any;
|
|
8
|
+
buildDefaultResolver(): {
|
|
9
|
+
resolve(geometry: any, attributes: any, context: any): any;
|
|
10
|
+
};
|
|
11
|
+
_generateSymbolsLookUp(symbolLookup: any): any;
|
|
12
|
+
#private;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export { GraphicResolverFactory as default };
|