@igo2/context 20.0.0 → 20.1.0-next.1
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/fesm2022/igo2-context.mjs +212 -351
- package/fesm2022/igo2-context.mjs.map +1 -1
- package/index.d.ts +63 -77
- package/package.json +6 -6
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { OnInit, ModuleWithProviders, OnDestroy
|
|
2
|
+
import { OnInit, ModuleWithProviders, OnDestroy } from '@angular/core';
|
|
3
3
|
import { UntypedFormGroup, UntypedFormControl } from '@angular/forms';
|
|
4
4
|
import { AnyLayerOptions, MapViewOptions, MapExtent, MapScaleLineOptions, MapAttributionOptions, VectorLayer, AnyLayer, IgoMap, Feature, StyleListService, StyleService, ImportExportServiceOptions, LayerOptions, LayerGroupOptions, AnyDataSourceOptions } from '@igo2/geo';
|
|
5
5
|
import { BehaviorSubject, ReplaySubject, Subscription, Observable, Subject } from 'rxjs';
|
|
@@ -122,7 +122,7 @@ declare class ContextImportExportComponent implements OnInit {
|
|
|
122
122
|
private clientSideFileSizeMax;
|
|
123
123
|
fileSizeMb: number;
|
|
124
124
|
activeImportExport: string;
|
|
125
|
-
map: IgoMap
|
|
125
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
126
126
|
constructor();
|
|
127
127
|
ngOnInit(): void;
|
|
128
128
|
importFiles(files: File[]): void;
|
|
@@ -135,7 +135,7 @@ declare class ContextImportExportComponent implements OnInit {
|
|
|
135
135
|
selectAll(e: any): void;
|
|
136
136
|
onImportExportChange(event: any): void;
|
|
137
137
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContextImportExportComponent, never>;
|
|
138
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ContextImportExportComponent, "igo-context-import-export", never, { "map": { "alias": "map"; "required": false; }; }, {}, never, never, true, never>;
|
|
138
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContextImportExportComponent, "igo-context-import-export", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
/**
|
|
@@ -168,31 +168,31 @@ declare class ContextListComponent implements OnInit, OnDestroy {
|
|
|
168
168
|
get contexts(): ContextsList;
|
|
169
169
|
set contexts(value: ContextsList);
|
|
170
170
|
private _contexts;
|
|
171
|
-
selectedContext: DetailedContext
|
|
172
|
-
map: IgoMap
|
|
171
|
+
readonly selectedContext: i0.ModelSignal<DetailedContext>;
|
|
172
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
173
173
|
get defaultContextId(): string;
|
|
174
174
|
set defaultContextId(value: string);
|
|
175
175
|
private _defaultContextId;
|
|
176
176
|
collapsed: {
|
|
177
177
|
contextScope: any;
|
|
178
178
|
}[];
|
|
179
|
-
select:
|
|
180
|
-
unselect:
|
|
181
|
-
edit:
|
|
182
|
-
delete:
|
|
183
|
-
save:
|
|
184
|
-
clone:
|
|
185
|
-
create:
|
|
179
|
+
readonly select: i0.OutputEmitterRef<DetailedContext>;
|
|
180
|
+
readonly unselect: i0.OutputEmitterRef<DetailedContext>;
|
|
181
|
+
readonly edit: i0.OutputEmitterRef<DetailedContext>;
|
|
182
|
+
readonly delete: i0.OutputEmitterRef<DetailedContext>;
|
|
183
|
+
readonly save: i0.OutputEmitterRef<DetailedContext>;
|
|
184
|
+
readonly clone: i0.OutputEmitterRef<DetailedContext>;
|
|
185
|
+
readonly create: i0.OutputEmitterRef<{
|
|
186
186
|
title: string;
|
|
187
187
|
empty: boolean;
|
|
188
188
|
}>;
|
|
189
|
-
hide:
|
|
190
|
-
show:
|
|
191
|
-
showHiddenContexts:
|
|
192
|
-
favorite:
|
|
193
|
-
managePermissions:
|
|
194
|
-
manageTools:
|
|
195
|
-
filterPermissionsChanged:
|
|
189
|
+
readonly hide: i0.OutputEmitterRef<DetailedContext>;
|
|
190
|
+
readonly show: i0.OutputEmitterRef<DetailedContext>;
|
|
191
|
+
readonly showHiddenContexts: i0.OutputEmitterRef<boolean>;
|
|
192
|
+
readonly favorite: i0.OutputEmitterRef<DetailedContext>;
|
|
193
|
+
readonly managePermissions: i0.OutputEmitterRef<DetailedContext>;
|
|
194
|
+
readonly manageTools: i0.OutputEmitterRef<DetailedContext>;
|
|
195
|
+
readonly filterPermissionsChanged: i0.OutputEmitterRef<ContextUserPermission[]>;
|
|
196
196
|
titleMapping: {
|
|
197
197
|
ours: string;
|
|
198
198
|
shared: string;
|
|
@@ -218,6 +218,7 @@ declare class ContextListComponent implements OnInit, OnDestroy {
|
|
|
218
218
|
get isEmpty(): boolean;
|
|
219
219
|
constructor();
|
|
220
220
|
ngOnInit(): void;
|
|
221
|
+
setSelected(context: DetailedContext): void;
|
|
221
222
|
private next;
|
|
222
223
|
private filterContextsList;
|
|
223
224
|
ngOnDestroy(): void;
|
|
@@ -233,7 +234,7 @@ declare class ContextListComponent implements OnInit, OnDestroy {
|
|
|
233
234
|
showContext(context: DetailedContext): void;
|
|
234
235
|
onSelect(context: DetailedContext): void;
|
|
235
236
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContextListComponent, never>;
|
|
236
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ContextListComponent, "igo-context-list", never, { "contexts": { "alias": "contexts"; "required": false; }; "selectedContext": { "alias": "selectedContext"; "required": false; }; "map": { "alias": "map"; "required": false; }; "defaultContextId": { "alias": "defaultContextId"; "required": false; }; "term": { "alias": "term"; "required": false; }; }, { "select": "select"; "unselect": "unselect"; "edit": "edit"; "delete": "delete"; "save": "save"; "clone": "clone"; "create": "create"; "hide": "hide"; "show": "show"; "showHiddenContexts": "showHiddenContexts"; "favorite": "favorite"; "managePermissions": "managePermissions"; "manageTools": "manageTools"; "filterPermissionsChanged": "filterPermissionsChanged"; }, never, never, true, never>;
|
|
237
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContextListComponent, "igo-context-list", never, { "contexts": { "alias": "contexts"; "required": false; }; "selectedContext": { "alias": "selectedContext"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "defaultContextId": { "alias": "defaultContextId"; "required": false; }; "term": { "alias": "term"; "required": false; }; }, { "selectedContext": "selectedContextChange"; "select": "select"; "unselect": "unselect"; "edit": "edit"; "delete": "delete"; "save": "save"; "clone": "clone"; "create": "create"; "hide": "hide"; "show": "show"; "showHiddenContexts": "showHiddenContexts"; "favorite": "favorite"; "managePermissions": "managePermissions"; "manageTools": "manageTools"; "filterPermissionsChanged": "filterPermissionsChanged"; }, never, never, true, never>;
|
|
237
238
|
}
|
|
238
239
|
|
|
239
240
|
declare class ContextListBindingDirective implements OnInit, OnDestroy {
|
|
@@ -280,61 +281,51 @@ declare class ContextItemComponent {
|
|
|
280
281
|
typePermission: typeof TypePermission;
|
|
281
282
|
color: string;
|
|
282
283
|
collapsed: boolean;
|
|
283
|
-
showFavorite: boolean
|
|
284
|
-
context: DetailedContext
|
|
285
|
-
default: boolean
|
|
286
|
-
selected: boolean
|
|
287
|
-
edit:
|
|
288
|
-
delete:
|
|
289
|
-
save:
|
|
290
|
-
clone:
|
|
291
|
-
hide:
|
|
292
|
-
show:
|
|
293
|
-
favorite:
|
|
294
|
-
managePermissions:
|
|
295
|
-
manageTools:
|
|
284
|
+
readonly showFavorite: i0.InputSignal<boolean>;
|
|
285
|
+
readonly context: i0.InputSignal<DetailedContext>;
|
|
286
|
+
readonly default: i0.InputSignal<boolean>;
|
|
287
|
+
readonly selected: i0.InputSignal<boolean>;
|
|
288
|
+
readonly edit: i0.OutputEmitterRef<DetailedContext>;
|
|
289
|
+
readonly delete: i0.OutputEmitterRef<DetailedContext>;
|
|
290
|
+
readonly save: i0.OutputEmitterRef<DetailedContext>;
|
|
291
|
+
readonly clone: i0.OutputEmitterRef<DetailedContext>;
|
|
292
|
+
readonly hide: i0.OutputEmitterRef<DetailedContext>;
|
|
293
|
+
readonly show: i0.OutputEmitterRef<DetailedContext>;
|
|
294
|
+
readonly favorite: i0.OutputEmitterRef<DetailedContext>;
|
|
295
|
+
readonly managePermissions: i0.OutputEmitterRef<DetailedContext>;
|
|
296
|
+
readonly manageTools: i0.OutputEmitterRef<DetailedContext>;
|
|
296
297
|
get hidden(): boolean;
|
|
297
298
|
get canShare(): boolean;
|
|
298
299
|
favoriteClick(context: DetailedContext): void;
|
|
299
300
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContextItemComponent, never>;
|
|
300
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ContextItemComponent, "igo-context-item", never, { "showFavorite": { "alias": "showFavorite"; "required": false; }; "context": { "alias": "context"; "required": false; }; "default": { "alias": "default"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "edit": "edit"; "delete": "delete"; "save": "save"; "clone": "clone"; "hide": "hide"; "show": "show"; "favorite": "favorite"; "managePermissions": "managePermissions"; "manageTools": "manageTools"; }, never, never, true, never>;
|
|
301
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContextItemComponent, "igo-context-item", never, { "showFavorite": { "alias": "showFavorite"; "required": false; "isSignal": true; }; "context": { "alias": "context"; "required": false; "isSignal": true; }; "default": { "alias": "default"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; }, { "edit": "edit"; "delete": "delete"; "save": "save"; "clone": "clone"; "hide": "hide"; "show": "show"; "favorite": "favorite"; "managePermissions": "managePermissions"; "manageTools": "manageTools"; }, never, never, true, never>;
|
|
301
302
|
}
|
|
302
303
|
|
|
303
|
-
declare class ContextFormComponent
|
|
304
|
+
declare class ContextFormComponent {
|
|
304
305
|
private clipboard;
|
|
305
306
|
private formBuilder;
|
|
306
307
|
private messageService;
|
|
307
308
|
form: UntypedFormGroup;
|
|
308
309
|
prefix: string;
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
set disabled(value: boolean);
|
|
317
|
-
private _disabled;
|
|
318
|
-
submitForm: EventEmitter<any>;
|
|
319
|
-
clone: EventEmitter<any>;
|
|
320
|
-
delete: EventEmitter<any>;
|
|
321
|
-
ngOnInit(): void;
|
|
310
|
+
readonly btnSubmitText: i0.InputSignal<string>;
|
|
311
|
+
readonly context: i0.InputSignal<Context>;
|
|
312
|
+
readonly disabled: i0.InputSignal<boolean>;
|
|
313
|
+
readonly submitForm: i0.OutputEmitterRef<any>;
|
|
314
|
+
readonly clone: i0.OutputEmitterRef<any>;
|
|
315
|
+
readonly delete: i0.OutputEmitterRef<any>;
|
|
316
|
+
constructor();
|
|
322
317
|
handleFormSubmit(value: any): void;
|
|
323
318
|
copyTextToClipboard(): void;
|
|
324
319
|
private buildForm;
|
|
325
320
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContextFormComponent, never>;
|
|
326
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ContextFormComponent, "igo-context-form", never, { "btnSubmitText": { "alias": "btnSubmitText"; "required": false; }; "context": { "alias": "context"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "submitForm": "submitForm"; "clone": "clone"; "delete": "delete"; }, never, never, true, never>;
|
|
321
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContextFormComponent, "igo-context-form", never, { "btnSubmitText": { "alias": "btnSubmitText"; "required": false; "isSignal": true; }; "context": { "alias": "context"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "submitForm": "submitForm"; "clone": "clone"; "delete": "delete"; }, never, never, true, never>;
|
|
327
322
|
}
|
|
328
323
|
|
|
329
324
|
declare class ContextEditComponent {
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
set context(value: Context);
|
|
333
|
-
private _context;
|
|
334
|
-
submitForm: EventEmitter<Context>;
|
|
335
|
-
refresh(): void;
|
|
325
|
+
readonly context: i0.ModelSignal<Context>;
|
|
326
|
+
readonly submitForm: i0.OutputEmitterRef<Context>;
|
|
336
327
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContextEditComponent, never>;
|
|
337
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ContextEditComponent, "igo-context-edit", never, { "context": { "alias": "context"; "required": false; }; }, { "submitForm": "submitForm"; }, never, never, true, never>;
|
|
328
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContextEditComponent, "igo-context-edit", never, { "context": { "alias": "context"; "required": false; "isSignal": true; }; }, { "context": "contextChange"; "submitForm": "submitForm"; }, never, never, true, never>;
|
|
338
329
|
}
|
|
339
330
|
|
|
340
331
|
declare class ContextEditBindingDirective implements OnInit, OnDestroy {
|
|
@@ -342,7 +333,7 @@ declare class ContextEditBindingDirective implements OnInit, OnDestroy {
|
|
|
342
333
|
private messageService;
|
|
343
334
|
private component;
|
|
344
335
|
private editedContext$$;
|
|
345
|
-
submitSuccessed:
|
|
336
|
+
readonly submitSuccessed: i0.OutputEmitterRef<Context>;
|
|
346
337
|
onEdit(context: Context): void;
|
|
347
338
|
constructor();
|
|
348
339
|
ngOnInit(): void;
|
|
@@ -354,17 +345,12 @@ declare class ContextEditBindingDirective implements OnInit, OnDestroy {
|
|
|
354
345
|
|
|
355
346
|
declare class ContextPermissionsComponent implements OnInit {
|
|
356
347
|
private formBuilder;
|
|
357
|
-
private cd;
|
|
358
348
|
private http;
|
|
359
349
|
authService: AuthService;
|
|
360
350
|
private config;
|
|
361
351
|
form: UntypedFormGroup;
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
private _context;
|
|
365
|
-
get permissions(): ContextPermissionsList;
|
|
366
|
-
set permissions(value: ContextPermissionsList);
|
|
367
|
-
private _permissions;
|
|
352
|
+
readonly context: i0.ModelSignal<Context>;
|
|
353
|
+
readonly permissions: i0.ModelSignal<ContextPermissionsList>;
|
|
368
354
|
get profils(): ContextProfils[];
|
|
369
355
|
set profils(value: ContextProfils[]);
|
|
370
356
|
private _profils;
|
|
@@ -372,16 +358,16 @@ declare class ContextPermissionsComponent implements OnInit {
|
|
|
372
358
|
private baseUrlProfils;
|
|
373
359
|
formControl: UntypedFormControl;
|
|
374
360
|
formValueChanges$$: Subscription;
|
|
375
|
-
addPermission:
|
|
376
|
-
removePermission:
|
|
377
|
-
scopeChanged:
|
|
361
|
+
readonly addPermission: i0.OutputEmitterRef<ContextPermission>;
|
|
362
|
+
readonly removePermission: i0.OutputEmitterRef<ContextPermission>;
|
|
363
|
+
readonly scopeChanged: i0.OutputEmitterRef<Context>;
|
|
378
364
|
ngOnInit(): void;
|
|
379
365
|
displayFn(profil?: ContextProfils): string | undefined;
|
|
380
366
|
handleFormSubmit(value: any): void;
|
|
381
367
|
private buildForm;
|
|
382
368
|
onProfilSelected(value: any): void;
|
|
383
369
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContextPermissionsComponent, never>;
|
|
384
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ContextPermissionsComponent, "igo-context-permissions", never, { "context": { "alias": "context"; "required": false; }; "permissions": { "alias": "permissions"; "required": false; }; }, { "addPermission": "addPermission"; "removePermission": "removePermission"; "scopeChanged": "scopeChanged"; }, never, never, true, never>;
|
|
370
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContextPermissionsComponent, "igo-context-permissions", never, { "context": { "alias": "context"; "required": false; "isSignal": true; }; "permissions": { "alias": "permissions"; "required": false; "isSignal": true; }; }, { "context": "contextChange"; "permissions": "permissionsChange"; "addPermission": "addPermission"; "removePermission": "removePermission"; "scopeChanged": "scopeChanged"; }, never, never, true, never>;
|
|
385
371
|
}
|
|
386
372
|
|
|
387
373
|
declare class ContextPermissionsBindingDirective implements OnInit, OnDestroy {
|
|
@@ -413,8 +399,8 @@ declare class LayerContextDirective implements OnInit, OnDestroy {
|
|
|
413
399
|
private context$$;
|
|
414
400
|
private queryParams;
|
|
415
401
|
private contextLayers;
|
|
416
|
-
removeLayersOnContextChange: boolean
|
|
417
|
-
contextLayersLoaded:
|
|
402
|
+
readonly removeLayersOnContextChange: i0.InputSignal<boolean>;
|
|
403
|
+
readonly contextLayersLoaded: i0.OutputEmitterRef<boolean>;
|
|
418
404
|
get map(): IgoMap;
|
|
419
405
|
ngOnInit(): void;
|
|
420
406
|
ngOnDestroy(): void;
|
|
@@ -423,7 +409,7 @@ declare class LayerContextDirective implements OnInit, OnDestroy {
|
|
|
423
409
|
private computeLayerVisibilityFromUrl;
|
|
424
410
|
private handleContextWithSharedUrl;
|
|
425
411
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerContextDirective, never>;
|
|
426
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LayerContextDirective, "[igoLayerContext]", never, { "removeLayersOnContextChange": { "alias": "removeLayersOnContextChange"; "required": false; }; }, { "contextLayersLoaded": "contextLayersLoaded"; }, never, never, true, never>;
|
|
412
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LayerContextDirective, "[igoLayerContext]", never, { "removeLayersOnContextChange": { "alias": "removeLayersOnContextChange"; "required": false; "isSignal": true; }; }, { "contextLayersLoaded": "contextLayersLoaded"; }, never, never, true, never>;
|
|
427
413
|
}
|
|
428
414
|
|
|
429
415
|
declare class MapContextDirective implements OnInit, OnDestroy {
|
|
@@ -547,7 +533,7 @@ declare class ShareMapApiComponent implements OnInit {
|
|
|
547
533
|
private formBuilder;
|
|
548
534
|
private contextService;
|
|
549
535
|
form: UntypedFormGroup;
|
|
550
|
-
map: IgoMap
|
|
536
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
551
537
|
url: string;
|
|
552
538
|
userId: string;
|
|
553
539
|
idContextShared: string;
|
|
@@ -559,7 +545,7 @@ declare class ShareMapApiComponent implements OnInit {
|
|
|
559
545
|
private createContextShared;
|
|
560
546
|
private _updateContextShared;
|
|
561
547
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShareMapApiComponent, never>;
|
|
562
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ShareMapApiComponent, "igo-share-map-api", never, { "map": { "alias": "map"; "required": false; }; }, {}, never, never, true, never>;
|
|
548
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShareMapApiComponent, "igo-share-map-api", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
563
549
|
}
|
|
564
550
|
|
|
565
551
|
declare class ShareMapUrlComponent implements OnInit, OnDestroy {
|
|
@@ -570,7 +556,7 @@ declare class ShareMapUrlComponent implements OnInit, OnDestroy {
|
|
|
570
556
|
private cdRef;
|
|
571
557
|
private route;
|
|
572
558
|
private mapState$$;
|
|
573
|
-
map: IgoMap
|
|
559
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
574
560
|
url: string;
|
|
575
561
|
private publicShareOption;
|
|
576
562
|
private language;
|
|
@@ -580,16 +566,16 @@ declare class ShareMapUrlComponent implements OnInit, OnDestroy {
|
|
|
580
566
|
generateUrl(): void;
|
|
581
567
|
copyTextToClipboard(textArea: HTMLTextAreaElement): void;
|
|
582
568
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShareMapUrlComponent, never>;
|
|
583
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ShareMapUrlComponent, "igo-share-map-url", never, { "map": { "alias": "map"; "required": false; }; }, {}, never, never, true, never>;
|
|
569
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShareMapUrlComponent, "igo-share-map-url", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
584
570
|
}
|
|
585
571
|
|
|
586
572
|
declare class ShareMapComponent {
|
|
587
573
|
private config;
|
|
588
|
-
map: IgoMap
|
|
574
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
589
575
|
hasApi: boolean;
|
|
590
576
|
constructor();
|
|
591
577
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShareMapComponent, never>;
|
|
592
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ShareMapComponent, "igo-share-map", never, { "map": { "alias": "map"; "required": false; }; }, {}, never, never, true, never>;
|
|
578
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShareMapComponent, "igo-share-map", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
593
579
|
}
|
|
594
580
|
|
|
595
581
|
declare const SHARE_MAP_DIRECTIVES: readonly [typeof ShareMapComponent, typeof ShareMapUrlComponent, typeof ShareMapApiComponent];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igo2/context",
|
|
3
|
-
"version": "20.0.
|
|
3
|
+
"version": "20.1.0-next.1",
|
|
4
4
|
"description": "IGO Library",
|
|
5
5
|
"author": "IGO Community",
|
|
6
6
|
"keywords": [
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"@angular/forms": "^20.0.0",
|
|
35
35
|
"@angular/material": "^20.0.0",
|
|
36
36
|
"@angular/platform-browser": "^20.0.0",
|
|
37
|
-
"@igo2/auth": "^20.0.
|
|
38
|
-
"@igo2/common": "^20.0.
|
|
39
|
-
"@igo2/core": "^20.0.
|
|
40
|
-
"@igo2/geo": "^20.0.
|
|
41
|
-
"@igo2/utils": "^20.0.
|
|
37
|
+
"@igo2/auth": "^20.1.0-next.1",
|
|
38
|
+
"@igo2/common": "^20.1.0-next.1",
|
|
39
|
+
"@igo2/core": "^20.1.0-next.1",
|
|
40
|
+
"@igo2/geo": "^20.1.0-next.1",
|
|
41
|
+
"@igo2/utils": "^20.1.0-next.1",
|
|
42
42
|
"ol": "10.6.0",
|
|
43
43
|
"rxjs": "^7.8.0"
|
|
44
44
|
},
|