@conterra/ct-mapapps-typings 4.19.2 → 4.19.3-next.20250606041322
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/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/package.json +1 -1
- package/ct/tools/Tool.d.ts +1 -1
- 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/package.json +1 -1
- 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/package.json +1 -1
- package/search-api/api.d.ts +16 -2
- package/search-api/package.json +1 -1
- package/search-ui/package.json +1 -1
- package/selection-resultcenter/package.json +1 -1
- 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/agssearch/package.json
CHANGED
package/apprt/package.json
CHANGED
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/ct/tools/Tool.d.ts
CHANGED
|
@@ -33,7 +33,7 @@ type Stateful<T> = T & {
|
|
|
33
33
|
watch: <Prop extends keyof T | "*">(
|
|
34
34
|
property: Prop,
|
|
35
35
|
handler: (...args: WatchCallbackParams<T, Prop extends "*" ? keyof T : Prop>) => void
|
|
36
|
-
) => void;
|
|
36
|
+
) => { remove: () => void };
|
|
37
37
|
|
|
38
38
|
set: <Prop extends keyof T>(property: Prop, value: T[Prop]) => void;
|
|
39
39
|
|
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/omnisearch/package.json
CHANGED
package/package.json
CHANGED
package/popups/package.json
CHANGED
package/result-api/package.json
CHANGED
package/search-api/api.d.ts
CHANGED
|
@@ -50,6 +50,15 @@ interface SearchOptions {
|
|
|
50
50
|
* The default value is `15`.
|
|
51
51
|
*/
|
|
52
52
|
count?: number;
|
|
53
|
+
/**
|
|
54
|
+
* Whether to request the number of total results from the queries stores.
|
|
55
|
+
*
|
|
56
|
+
* This is true by default for backwards compatibility reasons.
|
|
57
|
+
* Set this to `false` to skip requesting the total result count.
|
|
58
|
+
*
|
|
59
|
+
* See also {@link ResultSet.total}.
|
|
60
|
+
*/
|
|
61
|
+
queryTotal?: boolean;
|
|
53
62
|
/**
|
|
54
63
|
* An optional array of map action IDs.
|
|
55
64
|
* The associated map actions are triggered when an item is selected (see {@link ResultItem.select}).
|
|
@@ -113,8 +122,13 @@ interface ResultGroup {
|
|
|
113
122
|
interface ResultSet {
|
|
114
123
|
/** Result items, up to the requested amount. */
|
|
115
124
|
readonly items: ResultItem[];
|
|
116
|
-
/**
|
|
117
|
-
|
|
125
|
+
/**
|
|
126
|
+
* Total number of available results.
|
|
127
|
+
*
|
|
128
|
+
* This is present if the `queryTotal` option is set to `true` (the default).
|
|
129
|
+
* This is always undefined if `queryTotal` is set to `false`.
|
|
130
|
+
*/
|
|
131
|
+
readonly total: number | undefined;
|
|
118
132
|
/**
|
|
119
133
|
* Selects multiple items at once.
|
|
120
134
|
* The items must belong to this result set (from `this.items`).
|
package/search-api/package.json
CHANGED
package/search-ui/package.json
CHANGED
package/store-api/package.json
CHANGED
package/system/package.json
CHANGED
package/test-utils/package.json
CHANGED
package/toc/package.json
CHANGED
package/toolrules/package.json
CHANGED
package/wizard/package.json
CHANGED