@arenarium/maps 1.0.70 → 1.0.72
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/index.d.ts +3 -9
- package/dist/index.js +77 -64
- package/dist/style.css +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -490,7 +490,7 @@ declare const mapPopupSchema: z.ZodObject<{
|
|
|
490
490
|
};
|
|
491
491
|
}>;
|
|
492
492
|
declare const mapPopupStatesRequestSchema: z.ZodObject<{
|
|
493
|
-
|
|
493
|
+
key: z.ZodString;
|
|
494
494
|
data: z.ZodArray<z.ZodObject<{
|
|
495
495
|
id: z.ZodString;
|
|
496
496
|
rank: z.ZodNumber;
|
|
@@ -513,8 +513,6 @@ declare const mapPopupStatesRequestSchema: z.ZodObject<{
|
|
|
513
513
|
width: number;
|
|
514
514
|
height: number;
|
|
515
515
|
}>, "many">;
|
|
516
|
-
minZoom: z.ZodOptional<z.ZodNumber>;
|
|
517
|
-
maxZoom: z.ZodOptional<z.ZodNumber>;
|
|
518
516
|
}, "strip", z.ZodTypeAny, {
|
|
519
517
|
data: {
|
|
520
518
|
lat: number;
|
|
@@ -524,9 +522,7 @@ declare const mapPopupStatesRequestSchema: z.ZodObject<{
|
|
|
524
522
|
width: number;
|
|
525
523
|
height: number;
|
|
526
524
|
}[];
|
|
527
|
-
|
|
528
|
-
minZoom?: number | undefined;
|
|
529
|
-
maxZoom?: number | undefined;
|
|
525
|
+
key: string;
|
|
530
526
|
}, {
|
|
531
527
|
data: {
|
|
532
528
|
lat: number;
|
|
@@ -536,9 +532,7 @@ declare const mapPopupStatesRequestSchema: z.ZodObject<{
|
|
|
536
532
|
width: number;
|
|
537
533
|
height: number;
|
|
538
534
|
}[];
|
|
539
|
-
|
|
540
|
-
minZoom?: number | undefined;
|
|
541
|
-
maxZoom?: number | undefined;
|
|
535
|
+
key: string;
|
|
542
536
|
}>;
|
|
543
537
|
export type MapPopupData = z.infer<typeof mapPopupDataSchema>;
|
|
544
538
|
export type MapPopupState = z.infer<typeof mapPopupStateSchema>;
|