@ogc-maps/storybook-components 0.13.0 → 0.14.0

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.
Files changed (40) hide show
  1. package/dist/components/CollectionBrowser/CollectionBrowser.d.ts +3 -1
  2. package/dist/components/CollectionBrowser/CollectionBrowser.d.ts.map +1 -1
  3. package/dist/components/ImageryEditor/ImageryEditor.d.ts +13 -0
  4. package/dist/components/ImageryEditor/ImageryEditor.d.ts.map +1 -0
  5. package/dist/components/ImageryEditor/ImageryList.d.ts +8 -0
  6. package/dist/components/ImageryEditor/ImageryList.d.ts.map +1 -0
  7. package/dist/components/ImageryEditor/index.d.ts +5 -0
  8. package/dist/components/ImageryEditor/index.d.ts.map +1 -0
  9. package/dist/components/ImageryPanel/ImageryPanel.d.ts +10 -0
  10. package/dist/components/ImageryPanel/ImageryPanel.d.ts.map +1 -0
  11. package/dist/components/ImageryPanel/index.d.ts +3 -0
  12. package/dist/components/ImageryPanel/index.d.ts.map +1 -0
  13. package/dist/components/SourceEditor/SourceEditor.d.ts +2 -2
  14. package/dist/components/SourceEditor/SourceEditor.d.ts.map +1 -1
  15. package/dist/components/SourceEditor/SourceList.d.ts.map +1 -1
  16. package/dist/components/UIConfigEditor/UIConfigEditor.d.ts.map +1 -1
  17. package/dist/components/index.d.ts +4 -0
  18. package/dist/components/index.d.ts.map +1 -1
  19. package/dist/{geo-BxXVSJvJ.js → geo-PA_KiJwy.js} +489 -453
  20. package/dist/hooks/index.d.ts +2 -2
  21. package/dist/hooks/index.d.ts.map +1 -1
  22. package/dist/hooks/index.js +57 -50
  23. package/dist/hooks/useOgcCollections.d.ts +3 -2
  24. package/dist/hooks/useOgcCollections.d.ts.map +1 -1
  25. package/dist/hooks/useOgcFeatures.d.ts +2 -2
  26. package/dist/hooks/useOgcFeatures.d.ts.map +1 -1
  27. package/dist/{index-CtbLVsqD.js → index-Cz_PEKV1.js} +434 -410
  28. package/dist/main.js +1927 -1428
  29. package/dist/schemas/config.d.ts +293 -0
  30. package/dist/schemas/config.d.ts.map +1 -1
  31. package/dist/schemas/index.d.ts +1 -1
  32. package/dist/schemas/index.d.ts.map +1 -1
  33. package/dist/schemas/index.js +18 -16
  34. package/dist/style.css +1 -1
  35. package/dist/types/index.d.ts +4 -2
  36. package/dist/types/index.d.ts.map +1 -1
  37. package/dist/types/index.js +17 -15
  38. package/dist/utils/ogcApi.d.ts +42 -13
  39. package/dist/utils/ogcApi.d.ts.map +1 -1
  40. package/package.json +1 -1
@@ -19,21 +19,60 @@ export declare const ViewConfigSchema: z.ZodObject<{
19
19
  pitch?: number | undefined;
20
20
  bearing?: number | undefined;
21
21
  }>;
22
+ export declare const SourceAuthSchema: z.ZodObject<{
23
+ type: z.ZodEnum<["query_param", "header"]>;
24
+ name: z.ZodString;
25
+ value: z.ZodString;
26
+ }, "strip", z.ZodTypeAny, {
27
+ value: string;
28
+ type: "query_param" | "header";
29
+ name: string;
30
+ }, {
31
+ value: string;
32
+ type: "query_param" | "header";
33
+ name: string;
34
+ }>;
22
35
  export declare const OgcApiSourceSchema: z.ZodObject<{
23
36
  id: z.ZodString;
24
37
  url: z.ZodString;
25
38
  label: z.ZodOptional<z.ZodString>;
26
39
  tileMatrixSetId: z.ZodDefault<z.ZodOptional<z.ZodString>>;
40
+ type: z.ZodOptional<z.ZodEnum<["features", "imagery"]>>;
41
+ auth: z.ZodOptional<z.ZodObject<{
42
+ type: z.ZodEnum<["query_param", "header"]>;
43
+ name: z.ZodString;
44
+ value: z.ZodString;
45
+ }, "strip", z.ZodTypeAny, {
46
+ value: string;
47
+ type: "query_param" | "header";
48
+ name: string;
49
+ }, {
50
+ value: string;
51
+ type: "query_param" | "header";
52
+ name: string;
53
+ }>>;
27
54
  }, "strip", z.ZodTypeAny, {
28
55
  id: string;
29
56
  url: string;
30
57
  tileMatrixSetId: string;
58
+ type?: "features" | "imagery" | undefined;
31
59
  label?: string | undefined;
60
+ auth?: {
61
+ value: string;
62
+ type: "query_param" | "header";
63
+ name: string;
64
+ } | undefined;
32
65
  }, {
33
66
  id: string;
34
67
  url: string;
68
+ type?: "features" | "imagery" | undefined;
35
69
  label?: string | undefined;
36
70
  tileMatrixSetId?: string | undefined;
71
+ auth?: {
72
+ value: string;
73
+ type: "query_param" | "header";
74
+ name: string;
75
+ } | undefined;
37
76
  }>;
38
77
  export declare const FillPaintSchema: z.ZodObject<{
39
78
  'fill-color': z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodUnknown, "many">]>>;
@@ -3384,6 +3423,7 @@ export declare const UIConfigSchema: z.ZodObject<{
3384
3423
  showLegendOpacity: z.ZodDefault<z.ZodBoolean>;
3385
3424
  showMeasureTool: z.ZodDefault<z.ZodBoolean>;
3386
3425
  showSelectionTool: z.ZodDefault<z.ZodBoolean>;
3426
+ showImageryPanel: z.ZodDefault<z.ZodBoolean>;
3387
3427
  }, "strip", z.ZodTypeAny, {
3388
3428
  showLayerPanel: boolean;
3389
3429
  showLegend: boolean;
@@ -3396,6 +3436,7 @@ export declare const UIConfigSchema: z.ZodObject<{
3396
3436
  showLegendOpacity: boolean;
3397
3437
  showMeasureTool: boolean;
3398
3438
  showSelectionTool: boolean;
3439
+ showImageryPanel: boolean;
3399
3440
  }, {
3400
3441
  showLayerPanel?: boolean | undefined;
3401
3442
  showLegend?: boolean | undefined;
@@ -3408,6 +3449,7 @@ export declare const UIConfigSchema: z.ZodObject<{
3408
3449
  showLegendOpacity?: boolean | undefined;
3409
3450
  showMeasureTool?: boolean | undefined;
3410
3451
  showSelectionTool?: boolean | undefined;
3452
+ showImageryPanel?: boolean | undefined;
3411
3453
  }>;
3412
3454
  export declare const DEFAULT_HEADER_COLOR = "#1e293b";
3413
3455
  export declare const BrandingConfigSchema: z.ZodObject<{
@@ -3432,22 +3474,109 @@ export declare const BrandingConfigSchema: z.ZodObject<{
3432
3474
  logoDataUrl?: string | undefined;
3433
3475
  logoHeight?: number | undefined;
3434
3476
  }>;
3477
+ export declare const ImageryLayerConfigSchema: z.ZodEffects<z.ZodObject<{
3478
+ id: z.ZodString;
3479
+ sourceId: z.ZodDefault<z.ZodString>;
3480
+ collection: z.ZodDefault<z.ZodString>;
3481
+ label: z.ZodString;
3482
+ visible: z.ZodDefault<z.ZodBoolean>;
3483
+ opacity: z.ZodDefault<z.ZodNumber>;
3484
+ exclusive: z.ZodDefault<z.ZodBoolean>;
3485
+ minZoom: z.ZodOptional<z.ZodNumber>;
3486
+ maxZoom: z.ZodOptional<z.ZodNumber>;
3487
+ tileSize: z.ZodDefault<z.ZodNumber>;
3488
+ tileUrlTemplate: z.ZodOptional<z.ZodString>;
3489
+ }, "strip", z.ZodTypeAny, {
3490
+ id: string;
3491
+ label: string;
3492
+ visible: boolean;
3493
+ sourceId: string;
3494
+ collection: string;
3495
+ opacity: number;
3496
+ exclusive: boolean;
3497
+ tileSize: number;
3498
+ minZoom?: number | undefined;
3499
+ maxZoom?: number | undefined;
3500
+ tileUrlTemplate?: string | undefined;
3501
+ }, {
3502
+ id: string;
3503
+ label: string;
3504
+ visible?: boolean | undefined;
3505
+ sourceId?: string | undefined;
3506
+ collection?: string | undefined;
3507
+ minZoom?: number | undefined;
3508
+ maxZoom?: number | undefined;
3509
+ opacity?: number | undefined;
3510
+ exclusive?: boolean | undefined;
3511
+ tileSize?: number | undefined;
3512
+ tileUrlTemplate?: string | undefined;
3513
+ }>, {
3514
+ id: string;
3515
+ label: string;
3516
+ visible: boolean;
3517
+ sourceId: string;
3518
+ collection: string;
3519
+ opacity: number;
3520
+ exclusive: boolean;
3521
+ tileSize: number;
3522
+ minZoom?: number | undefined;
3523
+ maxZoom?: number | undefined;
3524
+ tileUrlTemplate?: string | undefined;
3525
+ }, {
3526
+ id: string;
3527
+ label: string;
3528
+ visible?: boolean | undefined;
3529
+ sourceId?: string | undefined;
3530
+ collection?: string | undefined;
3531
+ minZoom?: number | undefined;
3532
+ maxZoom?: number | undefined;
3533
+ opacity?: number | undefined;
3534
+ exclusive?: boolean | undefined;
3535
+ tileSize?: number | undefined;
3536
+ tileUrlTemplate?: string | undefined;
3537
+ }>;
3435
3538
  export declare const MapConfigSchema: z.ZodObject<{
3436
3539
  sources: z.ZodArray<z.ZodObject<{
3437
3540
  id: z.ZodString;
3438
3541
  url: z.ZodString;
3439
3542
  label: z.ZodOptional<z.ZodString>;
3440
3543
  tileMatrixSetId: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3544
+ type: z.ZodOptional<z.ZodEnum<["features", "imagery"]>>;
3545
+ auth: z.ZodOptional<z.ZodObject<{
3546
+ type: z.ZodEnum<["query_param", "header"]>;
3547
+ name: z.ZodString;
3548
+ value: z.ZodString;
3549
+ }, "strip", z.ZodTypeAny, {
3550
+ value: string;
3551
+ type: "query_param" | "header";
3552
+ name: string;
3553
+ }, {
3554
+ value: string;
3555
+ type: "query_param" | "header";
3556
+ name: string;
3557
+ }>>;
3441
3558
  }, "strip", z.ZodTypeAny, {
3442
3559
  id: string;
3443
3560
  url: string;
3444
3561
  tileMatrixSetId: string;
3562
+ type?: "features" | "imagery" | undefined;
3445
3563
  label?: string | undefined;
3564
+ auth?: {
3565
+ value: string;
3566
+ type: "query_param" | "header";
3567
+ name: string;
3568
+ } | undefined;
3446
3569
  }, {
3447
3570
  id: string;
3448
3571
  url: string;
3572
+ type?: "features" | "imagery" | undefined;
3449
3573
  label?: string | undefined;
3450
3574
  tileMatrixSetId?: string | undefined;
3575
+ auth?: {
3576
+ value: string;
3577
+ type: "query_param" | "header";
3578
+ name: string;
3579
+ } | undefined;
3451
3580
  }>, "many">;
3452
3581
  layers: z.ZodArray<z.ZodEffects<z.ZodObject<{
3453
3582
  id: z.ZodString;
@@ -4842,6 +4971,67 @@ export declare const MapConfigSchema: z.ZodObject<{
4842
4971
  showTooltip?: boolean | undefined;
4843
4972
  showDetailPanel?: boolean | undefined;
4844
4973
  }, unknown>, "many">;
4974
+ imageryLayers: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
4975
+ id: z.ZodString;
4976
+ sourceId: z.ZodDefault<z.ZodString>;
4977
+ collection: z.ZodDefault<z.ZodString>;
4978
+ label: z.ZodString;
4979
+ visible: z.ZodDefault<z.ZodBoolean>;
4980
+ opacity: z.ZodDefault<z.ZodNumber>;
4981
+ exclusive: z.ZodDefault<z.ZodBoolean>;
4982
+ minZoom: z.ZodOptional<z.ZodNumber>;
4983
+ maxZoom: z.ZodOptional<z.ZodNumber>;
4984
+ tileSize: z.ZodDefault<z.ZodNumber>;
4985
+ tileUrlTemplate: z.ZodOptional<z.ZodString>;
4986
+ }, "strip", z.ZodTypeAny, {
4987
+ id: string;
4988
+ label: string;
4989
+ visible: boolean;
4990
+ sourceId: string;
4991
+ collection: string;
4992
+ opacity: number;
4993
+ exclusive: boolean;
4994
+ tileSize: number;
4995
+ minZoom?: number | undefined;
4996
+ maxZoom?: number | undefined;
4997
+ tileUrlTemplate?: string | undefined;
4998
+ }, {
4999
+ id: string;
5000
+ label: string;
5001
+ visible?: boolean | undefined;
5002
+ sourceId?: string | undefined;
5003
+ collection?: string | undefined;
5004
+ minZoom?: number | undefined;
5005
+ maxZoom?: number | undefined;
5006
+ opacity?: number | undefined;
5007
+ exclusive?: boolean | undefined;
5008
+ tileSize?: number | undefined;
5009
+ tileUrlTemplate?: string | undefined;
5010
+ }>, {
5011
+ id: string;
5012
+ label: string;
5013
+ visible: boolean;
5014
+ sourceId: string;
5015
+ collection: string;
5016
+ opacity: number;
5017
+ exclusive: boolean;
5018
+ tileSize: number;
5019
+ minZoom?: number | undefined;
5020
+ maxZoom?: number | undefined;
5021
+ tileUrlTemplate?: string | undefined;
5022
+ }, {
5023
+ id: string;
5024
+ label: string;
5025
+ visible?: boolean | undefined;
5026
+ sourceId?: string | undefined;
5027
+ collection?: string | undefined;
5028
+ minZoom?: number | undefined;
5029
+ maxZoom?: number | undefined;
5030
+ opacity?: number | undefined;
5031
+ exclusive?: boolean | undefined;
5032
+ tileSize?: number | undefined;
5033
+ tileUrlTemplate?: string | undefined;
5034
+ }>, "many">>;
4845
5035
  basemaps: z.ZodArray<z.ZodObject<{
4846
5036
  id: z.ZodString;
4847
5037
  label: z.ZodString;
@@ -4880,6 +5070,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4880
5070
  showLegendOpacity: z.ZodDefault<z.ZodBoolean>;
4881
5071
  showMeasureTool: z.ZodDefault<z.ZodBoolean>;
4882
5072
  showSelectionTool: z.ZodDefault<z.ZodBoolean>;
5073
+ showImageryPanel: z.ZodDefault<z.ZodBoolean>;
4883
5074
  }, "strip", z.ZodTypeAny, {
4884
5075
  showLayerPanel: boolean;
4885
5076
  showLegend: boolean;
@@ -4892,6 +5083,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4892
5083
  showLegendOpacity: boolean;
4893
5084
  showMeasureTool: boolean;
4894
5085
  showSelectionTool: boolean;
5086
+ showImageryPanel: boolean;
4895
5087
  }, {
4896
5088
  showLayerPanel?: boolean | undefined;
4897
5089
  showLegend?: boolean | undefined;
@@ -4904,6 +5096,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4904
5096
  showLegendOpacity?: boolean | undefined;
4905
5097
  showMeasureTool?: boolean | undefined;
4906
5098
  showSelectionTool?: boolean | undefined;
5099
+ showImageryPanel?: boolean | undefined;
4907
5100
  }>>;
4908
5101
  initialView: z.ZodObject<{
4909
5102
  latitude: z.ZodNumber;
@@ -4951,7 +5144,13 @@ export declare const MapConfigSchema: z.ZodObject<{
4951
5144
  id: string;
4952
5145
  url: string;
4953
5146
  tileMatrixSetId: string;
5147
+ type?: "features" | "imagery" | undefined;
4954
5148
  label?: string | undefined;
5149
+ auth?: {
5150
+ value: string;
5151
+ type: "query_param" | "header";
5152
+ name: string;
5153
+ } | undefined;
4955
5154
  }[];
4956
5155
  layers: {
4957
5156
  id: string;
@@ -5163,6 +5362,7 @@ export declare const MapConfigSchema: z.ZodObject<{
5163
5362
  showLegendOpacity: boolean;
5164
5363
  showMeasureTool: boolean;
5165
5364
  showSelectionTool: boolean;
5365
+ showImageryPanel: boolean;
5166
5366
  };
5167
5367
  initialView: {
5168
5368
  latitude: number;
@@ -5171,6 +5371,19 @@ export declare const MapConfigSchema: z.ZodObject<{
5171
5371
  pitch: number;
5172
5372
  bearing: number;
5173
5373
  };
5374
+ imageryLayers?: {
5375
+ id: string;
5376
+ label: string;
5377
+ visible: boolean;
5378
+ sourceId: string;
5379
+ collection: string;
5380
+ opacity: number;
5381
+ exclusive: boolean;
5382
+ tileSize: number;
5383
+ minZoom?: number | undefined;
5384
+ maxZoom?: number | undefined;
5385
+ tileUrlTemplate?: string | undefined;
5386
+ }[] | undefined;
5174
5387
  sprites?: {
5175
5388
  id: string;
5176
5389
  url: string;
@@ -5187,8 +5400,14 @@ export declare const MapConfigSchema: z.ZodObject<{
5187
5400
  sources: {
5188
5401
  id: string;
5189
5402
  url: string;
5403
+ type?: "features" | "imagery" | undefined;
5190
5404
  label?: string | undefined;
5191
5405
  tileMatrixSetId?: string | undefined;
5406
+ auth?: {
5407
+ value: string;
5408
+ type: "query_param" | "header";
5409
+ name: string;
5410
+ } | undefined;
5192
5411
  }[];
5193
5412
  layers: unknown[];
5194
5413
  basemaps: {
@@ -5204,6 +5423,19 @@ export declare const MapConfigSchema: z.ZodObject<{
5204
5423
  pitch?: number | undefined;
5205
5424
  bearing?: number | undefined;
5206
5425
  };
5426
+ imageryLayers?: {
5427
+ id: string;
5428
+ label: string;
5429
+ visible?: boolean | undefined;
5430
+ sourceId?: string | undefined;
5431
+ collection?: string | undefined;
5432
+ minZoom?: number | undefined;
5433
+ maxZoom?: number | undefined;
5434
+ opacity?: number | undefined;
5435
+ exclusive?: boolean | undefined;
5436
+ tileSize?: number | undefined;
5437
+ tileUrlTemplate?: string | undefined;
5438
+ }[] | undefined;
5207
5439
  sprites?: {
5208
5440
  id: string;
5209
5441
  url: string;
@@ -5220,6 +5452,7 @@ export declare const MapConfigSchema: z.ZodObject<{
5220
5452
  showLegendOpacity?: boolean | undefined;
5221
5453
  showMeasureTool?: boolean | undefined;
5222
5454
  showSelectionTool?: boolean | undefined;
5455
+ showImageryPanel?: boolean | undefined;
5223
5456
  } | undefined;
5224
5457
  branding?: {
5225
5458
  headerTitle?: string | undefined;
@@ -5238,7 +5471,13 @@ export declare function validateMapConfig(config: unknown): {
5238
5471
  id: string;
5239
5472
  url: string;
5240
5473
  tileMatrixSetId: string;
5474
+ type?: "features" | "imagery" | undefined;
5241
5475
  label?: string | undefined;
5476
+ auth?: {
5477
+ value: string;
5478
+ type: "query_param" | "header";
5479
+ name: string;
5480
+ } | undefined;
5242
5481
  }[];
5243
5482
  layers: {
5244
5483
  id: string;
@@ -5450,6 +5689,7 @@ export declare function validateMapConfig(config: unknown): {
5450
5689
  showLegendOpacity: boolean;
5451
5690
  showMeasureTool: boolean;
5452
5691
  showSelectionTool: boolean;
5692
+ showImageryPanel: boolean;
5453
5693
  };
5454
5694
  initialView: {
5455
5695
  latitude: number;
@@ -5458,6 +5698,19 @@ export declare function validateMapConfig(config: unknown): {
5458
5698
  pitch: number;
5459
5699
  bearing: number;
5460
5700
  };
5701
+ imageryLayers?: {
5702
+ id: string;
5703
+ label: string;
5704
+ visible: boolean;
5705
+ sourceId: string;
5706
+ collection: string;
5707
+ opacity: number;
5708
+ exclusive: boolean;
5709
+ tileSize: number;
5710
+ minZoom?: number | undefined;
5711
+ maxZoom?: number | undefined;
5712
+ tileUrlTemplate?: string | undefined;
5713
+ }[] | undefined;
5461
5714
  sprites?: {
5462
5715
  id: string;
5463
5716
  url: string;
@@ -5478,8 +5731,14 @@ export declare function safeValidateMapConfig(config: unknown): z.SafeParseRetur
5478
5731
  sources: {
5479
5732
  id: string;
5480
5733
  url: string;
5734
+ type?: "features" | "imagery" | undefined;
5481
5735
  label?: string | undefined;
5482
5736
  tileMatrixSetId?: string | undefined;
5737
+ auth?: {
5738
+ value: string;
5739
+ type: "query_param" | "header";
5740
+ name: string;
5741
+ } | undefined;
5483
5742
  }[];
5484
5743
  layers: unknown[];
5485
5744
  basemaps: {
@@ -5495,6 +5754,19 @@ export declare function safeValidateMapConfig(config: unknown): z.SafeParseRetur
5495
5754
  pitch?: number | undefined;
5496
5755
  bearing?: number | undefined;
5497
5756
  };
5757
+ imageryLayers?: {
5758
+ id: string;
5759
+ label: string;
5760
+ visible?: boolean | undefined;
5761
+ sourceId?: string | undefined;
5762
+ collection?: string | undefined;
5763
+ minZoom?: number | undefined;
5764
+ maxZoom?: number | undefined;
5765
+ opacity?: number | undefined;
5766
+ exclusive?: boolean | undefined;
5767
+ tileSize?: number | undefined;
5768
+ tileUrlTemplate?: string | undefined;
5769
+ }[] | undefined;
5498
5770
  sprites?: {
5499
5771
  id: string;
5500
5772
  url: string;
@@ -5511,6 +5783,7 @@ export declare function safeValidateMapConfig(config: unknown): z.SafeParseRetur
5511
5783
  showLegendOpacity?: boolean | undefined;
5512
5784
  showMeasureTool?: boolean | undefined;
5513
5785
  showSelectionTool?: boolean | undefined;
5786
+ showImageryPanel?: boolean | undefined;
5514
5787
  } | undefined;
5515
5788
  branding?: {
5516
5789
  headerTitle?: string | undefined;
@@ -5525,7 +5798,13 @@ export declare function safeValidateMapConfig(config: unknown): z.SafeParseRetur
5525
5798
  id: string;
5526
5799
  url: string;
5527
5800
  tileMatrixSetId: string;
5801
+ type?: "features" | "imagery" | undefined;
5528
5802
  label?: string | undefined;
5803
+ auth?: {
5804
+ value: string;
5805
+ type: "query_param" | "header";
5806
+ name: string;
5807
+ } | undefined;
5529
5808
  }[];
5530
5809
  layers: {
5531
5810
  id: string;
@@ -5737,6 +6016,7 @@ export declare function safeValidateMapConfig(config: unknown): z.SafeParseRetur
5737
6016
  showLegendOpacity: boolean;
5738
6017
  showMeasureTool: boolean;
5739
6018
  showSelectionTool: boolean;
6019
+ showImageryPanel: boolean;
5740
6020
  };
5741
6021
  initialView: {
5742
6022
  latitude: number;
@@ -5745,6 +6025,19 @@ export declare function safeValidateMapConfig(config: unknown): z.SafeParseRetur
5745
6025
  pitch: number;
5746
6026
  bearing: number;
5747
6027
  };
6028
+ imageryLayers?: {
6029
+ id: string;
6030
+ label: string;
6031
+ visible: boolean;
6032
+ sourceId: string;
6033
+ collection: string;
6034
+ opacity: number;
6035
+ exclusive: boolean;
6036
+ tileSize: number;
6037
+ minZoom?: number | undefined;
6038
+ maxZoom?: number | undefined;
6039
+ tileUrlTemplate?: string | undefined;
6040
+ }[] | undefined;
5748
6041
  sprites?: {
5749
6042
  id: string;
5750
6043
  url: string;
@@ -1 +1 @@
1
- {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/schemas/config.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ1B,CAAC;AAIH;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,MAAM,EAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEhD;AAED;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAEpD"}
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/schemas/config.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAS1B,CAAC;AAIH;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,MAAM,EAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEhD;AAED;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAEpD"}
@@ -1,2 +1,2 @@
1
- export { ViewConfigSchema, OgcApiSourceSchema, FillPaintSchema, LinePaintSchema, CirclePaintSchema, FillStyleSchema, LineStyleSchema, CircleStyleSchema, StyleConfigSchema, LegendEntrySchema, LegendConfigSchema, SearchFieldSchema, SearchConfigSchema, FilterConfigSchema, LayerConfigSchema, BasemapConfigSchema, UIConfigSchema, DEFAULT_HEADER_COLOR, BrandingConfigSchema, MapConfigSchema, validateMapConfig, safeValidateMapConfig, } from './config';
1
+ export { ViewConfigSchema, SourceAuthSchema, OgcApiSourceSchema, FillPaintSchema, LinePaintSchema, CirclePaintSchema, FillStyleSchema, LineStyleSchema, CircleStyleSchema, StyleConfigSchema, LegendEntrySchema, LegendConfigSchema, SearchFieldSchema, SearchConfigSchema, FilterConfigSchema, LayerConfigSchema, ImageryLayerConfigSchema, BasemapConfigSchema, UIConfigSchema, DEFAULT_HEADER_COLOR, BrandingConfigSchema, MapConfigSchema, validateMapConfig, safeValidateMapConfig, } from './config';
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAChB,kBAAkB,EAClB,eAAe,EACf,eAAe,EACf,iBAAiB,EACjB,eAAe,EACf,eAAe,EACf,iBAAiB,EACjB,iBAAiB,EACjB,iBAAiB,EACjB,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,EAClB,kBAAkB,EAClB,iBAAiB,EACjB,mBAAmB,EACnB,cAAc,EACd,oBAAoB,EACpB,oBAAoB,EACpB,eAAe,EACf,iBAAiB,EACjB,qBAAqB,GACtB,MAAM,UAAU,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAChB,gBAAgB,EAChB,kBAAkB,EAClB,eAAe,EACf,eAAe,EACf,iBAAiB,EACjB,eAAe,EACf,eAAe,EACf,iBAAiB,EACjB,iBAAiB,EACjB,iBAAiB,EACjB,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,EAClB,kBAAkB,EAClB,iBAAiB,EACjB,wBAAwB,EACxB,mBAAmB,EACnB,cAAc,EACd,oBAAoB,EACpB,oBAAoB,EACpB,eAAe,EACf,iBAAiB,EACjB,qBAAqB,GACtB,MAAM,UAAU,CAAC"}
@@ -1,25 +1,27 @@
1
- import { B as i, a as S, b as c, c as s, D as n, e as h, f as m, g, L as f, h as l, i as o, k as C, l as t, M as r, O as L, S as d, n as p, q as y, U as F, V as E, s as M, v as O } from "../index-CtbLVsqD.js";
1
+ import { B as i, a as S, b as c, c as s, D as h, e as m, f as n, g, I as o, L as f, h as C, i as l, k as r, l as t, M as L, O as y, S as p, n as d, p as F, r as A, U as E, V as M, s as O, w as u } from "../index-Cz_PEKV1.js";
2
2
  export {
3
3
  i as BasemapConfigSchema,
4
4
  S as BrandingConfigSchema,
5
5
  c as CirclePaintSchema,
6
6
  s as CircleStyleSchema,
7
- n as DEFAULT_HEADER_COLOR,
8
- h as FillPaintSchema,
9
- m as FillStyleSchema,
7
+ h as DEFAULT_HEADER_COLOR,
8
+ m as FillPaintSchema,
9
+ n as FillStyleSchema,
10
10
  g as FilterConfigSchema,
11
+ o as ImageryLayerConfigSchema,
11
12
  f as LayerConfigSchema,
12
- l as LegendConfigSchema,
13
- o as LegendEntrySchema,
14
- C as LinePaintSchema,
13
+ C as LegendConfigSchema,
14
+ l as LegendEntrySchema,
15
+ r as LinePaintSchema,
15
16
  t as LineStyleSchema,
16
- r as MapConfigSchema,
17
- L as OgcApiSourceSchema,
18
- d as SearchConfigSchema,
19
- p as SearchFieldSchema,
20
- y as StyleConfigSchema,
21
- F as UIConfigSchema,
22
- E as ViewConfigSchema,
23
- M as safeValidateMapConfig,
24
- O as validateMapConfig
17
+ L as MapConfigSchema,
18
+ y as OgcApiSourceSchema,
19
+ p as SearchConfigSchema,
20
+ d as SearchFieldSchema,
21
+ F as SourceAuthSchema,
22
+ A as StyleConfigSchema,
23
+ E as UIConfigSchema,
24
+ M as ViewConfigSchema,
25
+ O as safeValidateMapConfig,
26
+ u as validateMapConfig
25
27
  };