@ogc-maps/storybook-components 0.9.0 → 0.10.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 (61) hide show
  1. package/dist/{CollapsibleControl-CGRNPpCw.js → CollapsibleControl-qo9daiD8.js} +5 -5
  2. package/dist/ExportButton-BsNrOvRE.js +25 -0
  3. package/dist/Legend-BLWBzD7Y.js +275 -0
  4. package/dist/SearchPanel-4Y12jfuP.js +401 -0
  5. package/dist/components/CollapsibleControl/index.js +1 -1
  6. package/dist/components/ExportButton/ExportButton.d.ts +2 -8
  7. package/dist/components/ExportButton/ExportButton.d.ts.map +1 -1
  8. package/dist/components/ExportButton/index.d.ts +1 -1
  9. package/dist/components/ExportButton/index.d.ts.map +1 -1
  10. package/dist/components/ExportButton/index.js +1 -1
  11. package/dist/components/ExportModal/ExportModal.d.ts +29 -0
  12. package/dist/components/ExportModal/ExportModal.d.ts.map +1 -0
  13. package/dist/components/ExportModal/index.d.ts +3 -0
  14. package/dist/components/ExportModal/index.d.ts.map +1 -0
  15. package/dist/components/LayerEditor/LayerEditor.d.ts.map +1 -1
  16. package/dist/components/Legend/Legend.d.ts.map +1 -1
  17. package/dist/components/Legend/index.js +1 -1
  18. package/dist/components/MeasurePanel/MeasurePanel.d.ts +13 -0
  19. package/dist/components/MeasurePanel/MeasurePanel.d.ts.map +1 -0
  20. package/dist/components/MeasurePanel/index.d.ts +3 -0
  21. package/dist/components/MeasurePanel/index.d.ts.map +1 -0
  22. package/dist/components/SearchFieldEditor/SearchFieldEditor.d.ts.map +1 -1
  23. package/dist/components/SearchPanel/NumberInput.d.ts.map +1 -1
  24. package/dist/components/SearchPanel/SearchPanel.d.ts +2 -1
  25. package/dist/components/SearchPanel/SearchPanel.d.ts.map +1 -1
  26. package/dist/components/SearchPanel/index.js +1 -1
  27. package/dist/components/StyleEditor/DataDrivenColorEditor.d.ts.map +1 -1
  28. package/dist/components/UIConfigEditor/UIConfigEditor.d.ts.map +1 -1
  29. package/dist/components/index.d.ts +5 -1
  30. package/dist/components/index.d.ts.map +1 -1
  31. package/dist/geo-CIJBPCVe.js +1038 -0
  32. package/dist/hooks/index.d.ts +5 -0
  33. package/dist/hooks/index.d.ts.map +1 -1
  34. package/dist/hooks/index.js +40 -35
  35. package/dist/hooks/useExport.d.ts +22 -0
  36. package/dist/hooks/useExport.d.ts.map +1 -0
  37. package/dist/hooks/useMeasure.d.ts +15 -0
  38. package/dist/hooks/useMeasure.d.ts.map +1 -0
  39. package/dist/{index-UmK2u6Yd.js → index-DA_GGs_P.js} +296 -291
  40. package/dist/main.js +1370 -1031
  41. package/dist/schemas/config.d.ts +131 -0
  42. package/dist/schemas/config.d.ts.map +1 -1
  43. package/dist/schemas/index.js +1 -1
  44. package/dist/style.css +1 -1
  45. package/dist/types/index.js +1 -1
  46. package/dist/utils/cql2.d.ts.map +1 -1
  47. package/dist/utils/csvExport.d.ts.map +1 -1
  48. package/dist/utils/download.d.ts +2 -0
  49. package/dist/utils/download.d.ts.map +1 -0
  50. package/dist/utils/expressionColors.d.ts.map +1 -1
  51. package/dist/utils/geo.d.ts +3 -0
  52. package/dist/utils/geo.d.ts.map +1 -0
  53. package/dist/utils/index.d.ts +1 -0
  54. package/dist/utils/index.d.ts.map +1 -1
  55. package/dist/utils/measure.d.ts +49 -0
  56. package/dist/utils/measure.d.ts.map +1 -0
  57. package/package.json +6 -3
  58. package/dist/ExportButton-CLsWoW4m.js +0 -77
  59. package/dist/Legend-CwaZA84A.js +0 -273
  60. package/dist/SearchPanel-DtLXMoVs.js +0 -363
  61. package/dist/cql2-DOJnQwcv.js +0 -440
@@ -1528,6 +1528,7 @@ export declare const TextSearchFieldSchema: z.ZodObject<{
1528
1528
  autocomplete: z.ZodDefault<z.ZodBoolean>;
1529
1529
  prefetch: z.ZodOptional<z.ZodBoolean>;
1530
1530
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1531
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
1531
1532
  property: z.ZodString;
1532
1533
  label: z.ZodString;
1533
1534
  placeholder: z.ZodOptional<z.ZodString>;
@@ -1538,6 +1539,7 @@ export declare const TextSearchFieldSchema: z.ZodObject<{
1538
1539
  property: string;
1539
1540
  options?: string[] | undefined;
1540
1541
  prefetch?: boolean | undefined;
1542
+ zoomTo?: boolean | undefined;
1541
1543
  placeholder?: string | undefined;
1542
1544
  }, {
1543
1545
  type: "text";
@@ -1546,12 +1548,15 @@ export declare const TextSearchFieldSchema: z.ZodObject<{
1546
1548
  options?: string[] | undefined;
1547
1549
  autocomplete?: boolean | undefined;
1548
1550
  prefetch?: boolean | undefined;
1551
+ zoomTo?: boolean | undefined;
1549
1552
  placeholder?: string | undefined;
1550
1553
  }>;
1551
1554
  export declare const NumberSearchFieldSchema: z.ZodObject<{
1552
1555
  type: z.ZodLiteral<"number">;
1553
1556
  inputMode: z.ZodDefault<z.ZodEnum<["input", "slider"]>>;
1554
1557
  operator: z.ZodDefault<z.ZodEnum<["eq", "gt", "lt", "gte", "lte", "between"]>>;
1558
+ operatorLabelStyle: z.ZodOptional<z.ZodEnum<["symbol", "word"]>>;
1559
+ showRange: z.ZodOptional<z.ZodBoolean>;
1555
1560
  min: z.ZodOptional<z.ZodNumber>;
1556
1561
  max: z.ZodOptional<z.ZodNumber>;
1557
1562
  step: z.ZodOptional<z.ZodNumber>;
@@ -1565,6 +1570,8 @@ export declare const NumberSearchFieldSchema: z.ZodObject<{
1565
1570
  inputMode: "input" | "slider";
1566
1571
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
1567
1572
  placeholder?: string | undefined;
1573
+ operatorLabelStyle?: "symbol" | "word" | undefined;
1574
+ showRange?: boolean | undefined;
1568
1575
  min?: number | undefined;
1569
1576
  max?: number | undefined;
1570
1577
  step?: number | undefined;
@@ -1575,6 +1582,8 @@ export declare const NumberSearchFieldSchema: z.ZodObject<{
1575
1582
  placeholder?: string | undefined;
1576
1583
  inputMode?: "input" | "slider" | undefined;
1577
1584
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
1585
+ operatorLabelStyle?: "symbol" | "word" | undefined;
1586
+ showRange?: boolean | undefined;
1578
1587
  min?: number | undefined;
1579
1588
  max?: number | undefined;
1580
1589
  step?: number | undefined;
@@ -1602,6 +1611,7 @@ export declare const SelectSearchFieldSchema: z.ZodObject<{
1602
1611
  type: z.ZodLiteral<"select">;
1603
1612
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1604
1613
  prefetch: z.ZodOptional<z.ZodBoolean>;
1614
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
1605
1615
  property: z.ZodString;
1606
1616
  label: z.ZodString;
1607
1617
  placeholder: z.ZodOptional<z.ZodString>;
@@ -1611,6 +1621,7 @@ export declare const SelectSearchFieldSchema: z.ZodObject<{
1611
1621
  property: string;
1612
1622
  options?: string[] | undefined;
1613
1623
  prefetch?: boolean | undefined;
1624
+ zoomTo?: boolean | undefined;
1614
1625
  placeholder?: string | undefined;
1615
1626
  }, {
1616
1627
  type: "select";
@@ -1618,6 +1629,7 @@ export declare const SelectSearchFieldSchema: z.ZodObject<{
1618
1629
  property: string;
1619
1630
  options?: string[] | undefined;
1620
1631
  prefetch?: boolean | undefined;
1632
+ zoomTo?: boolean | undefined;
1621
1633
  placeholder?: string | undefined;
1622
1634
  }>;
1623
1635
  export declare const SearchFieldSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
@@ -1625,6 +1637,7 @@ export declare const SearchFieldSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
1625
1637
  autocomplete: z.ZodDefault<z.ZodBoolean>;
1626
1638
  prefetch: z.ZodOptional<z.ZodBoolean>;
1627
1639
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1640
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
1628
1641
  property: z.ZodString;
1629
1642
  label: z.ZodString;
1630
1643
  placeholder: z.ZodOptional<z.ZodString>;
@@ -1635,6 +1648,7 @@ export declare const SearchFieldSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
1635
1648
  property: string;
1636
1649
  options?: string[] | undefined;
1637
1650
  prefetch?: boolean | undefined;
1651
+ zoomTo?: boolean | undefined;
1638
1652
  placeholder?: string | undefined;
1639
1653
  }, {
1640
1654
  type: "text";
@@ -1643,11 +1657,14 @@ export declare const SearchFieldSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
1643
1657
  options?: string[] | undefined;
1644
1658
  autocomplete?: boolean | undefined;
1645
1659
  prefetch?: boolean | undefined;
1660
+ zoomTo?: boolean | undefined;
1646
1661
  placeholder?: string | undefined;
1647
1662
  }>, z.ZodObject<{
1648
1663
  type: z.ZodLiteral<"number">;
1649
1664
  inputMode: z.ZodDefault<z.ZodEnum<["input", "slider"]>>;
1650
1665
  operator: z.ZodDefault<z.ZodEnum<["eq", "gt", "lt", "gte", "lte", "between"]>>;
1666
+ operatorLabelStyle: z.ZodOptional<z.ZodEnum<["symbol", "word"]>>;
1667
+ showRange: z.ZodOptional<z.ZodBoolean>;
1651
1668
  min: z.ZodOptional<z.ZodNumber>;
1652
1669
  max: z.ZodOptional<z.ZodNumber>;
1653
1670
  step: z.ZodOptional<z.ZodNumber>;
@@ -1661,6 +1678,8 @@ export declare const SearchFieldSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
1661
1678
  inputMode: "input" | "slider";
1662
1679
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
1663
1680
  placeholder?: string | undefined;
1681
+ operatorLabelStyle?: "symbol" | "word" | undefined;
1682
+ showRange?: boolean | undefined;
1664
1683
  min?: number | undefined;
1665
1684
  max?: number | undefined;
1666
1685
  step?: number | undefined;
@@ -1671,6 +1690,8 @@ export declare const SearchFieldSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
1671
1690
  placeholder?: string | undefined;
1672
1691
  inputMode?: "input" | "slider" | undefined;
1673
1692
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
1693
+ operatorLabelStyle?: "symbol" | "word" | undefined;
1694
+ showRange?: boolean | undefined;
1674
1695
  min?: number | undefined;
1675
1696
  max?: number | undefined;
1676
1697
  step?: number | undefined;
@@ -1696,6 +1717,7 @@ export declare const SearchFieldSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
1696
1717
  type: z.ZodLiteral<"select">;
1697
1718
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1698
1719
  prefetch: z.ZodOptional<z.ZodBoolean>;
1720
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
1699
1721
  property: z.ZodString;
1700
1722
  label: z.ZodString;
1701
1723
  placeholder: z.ZodOptional<z.ZodString>;
@@ -1705,6 +1727,7 @@ export declare const SearchFieldSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
1705
1727
  property: string;
1706
1728
  options?: string[] | undefined;
1707
1729
  prefetch?: boolean | undefined;
1730
+ zoomTo?: boolean | undefined;
1708
1731
  placeholder?: string | undefined;
1709
1732
  }, {
1710
1733
  type: "select";
@@ -1712,6 +1735,7 @@ export declare const SearchFieldSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
1712
1735
  property: string;
1713
1736
  options?: string[] | undefined;
1714
1737
  prefetch?: boolean | undefined;
1738
+ zoomTo?: boolean | undefined;
1715
1739
  placeholder?: string | undefined;
1716
1740
  }>]>;
1717
1741
  export declare const SearchConfigSchema: z.ZodObject<{
@@ -1720,6 +1744,7 @@ export declare const SearchConfigSchema: z.ZodObject<{
1720
1744
  autocomplete: z.ZodDefault<z.ZodBoolean>;
1721
1745
  prefetch: z.ZodOptional<z.ZodBoolean>;
1722
1746
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1747
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
1723
1748
  property: z.ZodString;
1724
1749
  label: z.ZodString;
1725
1750
  placeholder: z.ZodOptional<z.ZodString>;
@@ -1730,6 +1755,7 @@ export declare const SearchConfigSchema: z.ZodObject<{
1730
1755
  property: string;
1731
1756
  options?: string[] | undefined;
1732
1757
  prefetch?: boolean | undefined;
1758
+ zoomTo?: boolean | undefined;
1733
1759
  placeholder?: string | undefined;
1734
1760
  }, {
1735
1761
  type: "text";
@@ -1738,11 +1764,14 @@ export declare const SearchConfigSchema: z.ZodObject<{
1738
1764
  options?: string[] | undefined;
1739
1765
  autocomplete?: boolean | undefined;
1740
1766
  prefetch?: boolean | undefined;
1767
+ zoomTo?: boolean | undefined;
1741
1768
  placeholder?: string | undefined;
1742
1769
  }>, z.ZodObject<{
1743
1770
  type: z.ZodLiteral<"number">;
1744
1771
  inputMode: z.ZodDefault<z.ZodEnum<["input", "slider"]>>;
1745
1772
  operator: z.ZodDefault<z.ZodEnum<["eq", "gt", "lt", "gte", "lte", "between"]>>;
1773
+ operatorLabelStyle: z.ZodOptional<z.ZodEnum<["symbol", "word"]>>;
1774
+ showRange: z.ZodOptional<z.ZodBoolean>;
1746
1775
  min: z.ZodOptional<z.ZodNumber>;
1747
1776
  max: z.ZodOptional<z.ZodNumber>;
1748
1777
  step: z.ZodOptional<z.ZodNumber>;
@@ -1756,6 +1785,8 @@ export declare const SearchConfigSchema: z.ZodObject<{
1756
1785
  inputMode: "input" | "slider";
1757
1786
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
1758
1787
  placeholder?: string | undefined;
1788
+ operatorLabelStyle?: "symbol" | "word" | undefined;
1789
+ showRange?: boolean | undefined;
1759
1790
  min?: number | undefined;
1760
1791
  max?: number | undefined;
1761
1792
  step?: number | undefined;
@@ -1766,6 +1797,8 @@ export declare const SearchConfigSchema: z.ZodObject<{
1766
1797
  placeholder?: string | undefined;
1767
1798
  inputMode?: "input" | "slider" | undefined;
1768
1799
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
1800
+ operatorLabelStyle?: "symbol" | "word" | undefined;
1801
+ showRange?: boolean | undefined;
1769
1802
  min?: number | undefined;
1770
1803
  max?: number | undefined;
1771
1804
  step?: number | undefined;
@@ -1791,6 +1824,7 @@ export declare const SearchConfigSchema: z.ZodObject<{
1791
1824
  type: z.ZodLiteral<"select">;
1792
1825
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1793
1826
  prefetch: z.ZodOptional<z.ZodBoolean>;
1827
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
1794
1828
  property: z.ZodString;
1795
1829
  label: z.ZodString;
1796
1830
  placeholder: z.ZodOptional<z.ZodString>;
@@ -1800,6 +1834,7 @@ export declare const SearchConfigSchema: z.ZodObject<{
1800
1834
  property: string;
1801
1835
  options?: string[] | undefined;
1802
1836
  prefetch?: boolean | undefined;
1837
+ zoomTo?: boolean | undefined;
1803
1838
  placeholder?: string | undefined;
1804
1839
  }, {
1805
1840
  type: "select";
@@ -1807,6 +1842,7 @@ export declare const SearchConfigSchema: z.ZodObject<{
1807
1842
  property: string;
1808
1843
  options?: string[] | undefined;
1809
1844
  prefetch?: boolean | undefined;
1845
+ zoomTo?: boolean | undefined;
1810
1846
  placeholder?: string | undefined;
1811
1847
  }>]>, "many">;
1812
1848
  }, "strip", z.ZodTypeAny, {
@@ -1817,6 +1853,7 @@ export declare const SearchConfigSchema: z.ZodObject<{
1817
1853
  property: string;
1818
1854
  options?: string[] | undefined;
1819
1855
  prefetch?: boolean | undefined;
1856
+ zoomTo?: boolean | undefined;
1820
1857
  placeholder?: string | undefined;
1821
1858
  } | {
1822
1859
  type: "number";
@@ -1825,6 +1862,8 @@ export declare const SearchConfigSchema: z.ZodObject<{
1825
1862
  inputMode: "input" | "slider";
1826
1863
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
1827
1864
  placeholder?: string | undefined;
1865
+ operatorLabelStyle?: "symbol" | "word" | undefined;
1866
+ showRange?: boolean | undefined;
1828
1867
  min?: number | undefined;
1829
1868
  max?: number | undefined;
1830
1869
  step?: number | undefined;
@@ -1840,6 +1879,7 @@ export declare const SearchConfigSchema: z.ZodObject<{
1840
1879
  property: string;
1841
1880
  options?: string[] | undefined;
1842
1881
  prefetch?: boolean | undefined;
1882
+ zoomTo?: boolean | undefined;
1843
1883
  placeholder?: string | undefined;
1844
1884
  })[];
1845
1885
  }, {
@@ -1850,6 +1890,7 @@ export declare const SearchConfigSchema: z.ZodObject<{
1850
1890
  options?: string[] | undefined;
1851
1891
  autocomplete?: boolean | undefined;
1852
1892
  prefetch?: boolean | undefined;
1893
+ zoomTo?: boolean | undefined;
1853
1894
  placeholder?: string | undefined;
1854
1895
  } | {
1855
1896
  type: "number";
@@ -1858,6 +1899,8 @@ export declare const SearchConfigSchema: z.ZodObject<{
1858
1899
  placeholder?: string | undefined;
1859
1900
  inputMode?: "input" | "slider" | undefined;
1860
1901
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
1902
+ operatorLabelStyle?: "symbol" | "word" | undefined;
1903
+ showRange?: boolean | undefined;
1861
1904
  min?: number | undefined;
1862
1905
  max?: number | undefined;
1863
1906
  step?: number | undefined;
@@ -1873,6 +1916,7 @@ export declare const SearchConfigSchema: z.ZodObject<{
1873
1916
  property: string;
1874
1917
  options?: string[] | undefined;
1875
1918
  prefetch?: boolean | undefined;
1919
+ zoomTo?: boolean | undefined;
1876
1920
  placeholder?: string | undefined;
1877
1921
  })[];
1878
1922
  }>;
@@ -2538,6 +2582,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2538
2582
  autocomplete: z.ZodDefault<z.ZodBoolean>;
2539
2583
  prefetch: z.ZodOptional<z.ZodBoolean>;
2540
2584
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2585
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
2541
2586
  property: z.ZodString;
2542
2587
  label: z.ZodString;
2543
2588
  placeholder: z.ZodOptional<z.ZodString>;
@@ -2548,6 +2593,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2548
2593
  property: string;
2549
2594
  options?: string[] | undefined;
2550
2595
  prefetch?: boolean | undefined;
2596
+ zoomTo?: boolean | undefined;
2551
2597
  placeholder?: string | undefined;
2552
2598
  }, {
2553
2599
  type: "text";
@@ -2556,11 +2602,14 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2556
2602
  options?: string[] | undefined;
2557
2603
  autocomplete?: boolean | undefined;
2558
2604
  prefetch?: boolean | undefined;
2605
+ zoomTo?: boolean | undefined;
2559
2606
  placeholder?: string | undefined;
2560
2607
  }>, z.ZodObject<{
2561
2608
  type: z.ZodLiteral<"number">;
2562
2609
  inputMode: z.ZodDefault<z.ZodEnum<["input", "slider"]>>;
2563
2610
  operator: z.ZodDefault<z.ZodEnum<["eq", "gt", "lt", "gte", "lte", "between"]>>;
2611
+ operatorLabelStyle: z.ZodOptional<z.ZodEnum<["symbol", "word"]>>;
2612
+ showRange: z.ZodOptional<z.ZodBoolean>;
2564
2613
  min: z.ZodOptional<z.ZodNumber>;
2565
2614
  max: z.ZodOptional<z.ZodNumber>;
2566
2615
  step: z.ZodOptional<z.ZodNumber>;
@@ -2574,6 +2623,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2574
2623
  inputMode: "input" | "slider";
2575
2624
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
2576
2625
  placeholder?: string | undefined;
2626
+ operatorLabelStyle?: "symbol" | "word" | undefined;
2627
+ showRange?: boolean | undefined;
2577
2628
  min?: number | undefined;
2578
2629
  max?: number | undefined;
2579
2630
  step?: number | undefined;
@@ -2584,6 +2635,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2584
2635
  placeholder?: string | undefined;
2585
2636
  inputMode?: "input" | "slider" | undefined;
2586
2637
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
2638
+ operatorLabelStyle?: "symbol" | "word" | undefined;
2639
+ showRange?: boolean | undefined;
2587
2640
  min?: number | undefined;
2588
2641
  max?: number | undefined;
2589
2642
  step?: number | undefined;
@@ -2609,6 +2662,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2609
2662
  type: z.ZodLiteral<"select">;
2610
2663
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2611
2664
  prefetch: z.ZodOptional<z.ZodBoolean>;
2665
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
2612
2666
  property: z.ZodString;
2613
2667
  label: z.ZodString;
2614
2668
  placeholder: z.ZodOptional<z.ZodString>;
@@ -2618,6 +2672,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2618
2672
  property: string;
2619
2673
  options?: string[] | undefined;
2620
2674
  prefetch?: boolean | undefined;
2675
+ zoomTo?: boolean | undefined;
2621
2676
  placeholder?: string | undefined;
2622
2677
  }, {
2623
2678
  type: "select";
@@ -2625,6 +2680,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2625
2680
  property: string;
2626
2681
  options?: string[] | undefined;
2627
2682
  prefetch?: boolean | undefined;
2683
+ zoomTo?: boolean | undefined;
2628
2684
  placeholder?: string | undefined;
2629
2685
  }>]>, "many">;
2630
2686
  }, "strip", z.ZodTypeAny, {
@@ -2635,6 +2691,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2635
2691
  property: string;
2636
2692
  options?: string[] | undefined;
2637
2693
  prefetch?: boolean | undefined;
2694
+ zoomTo?: boolean | undefined;
2638
2695
  placeholder?: string | undefined;
2639
2696
  } | {
2640
2697
  type: "number";
@@ -2643,6 +2700,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2643
2700
  inputMode: "input" | "slider";
2644
2701
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
2645
2702
  placeholder?: string | undefined;
2703
+ operatorLabelStyle?: "symbol" | "word" | undefined;
2704
+ showRange?: boolean | undefined;
2646
2705
  min?: number | undefined;
2647
2706
  max?: number | undefined;
2648
2707
  step?: number | undefined;
@@ -2658,6 +2717,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2658
2717
  property: string;
2659
2718
  options?: string[] | undefined;
2660
2719
  prefetch?: boolean | undefined;
2720
+ zoomTo?: boolean | undefined;
2661
2721
  placeholder?: string | undefined;
2662
2722
  })[];
2663
2723
  }, {
@@ -2668,6 +2728,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2668
2728
  options?: string[] | undefined;
2669
2729
  autocomplete?: boolean | undefined;
2670
2730
  prefetch?: boolean | undefined;
2731
+ zoomTo?: boolean | undefined;
2671
2732
  placeholder?: string | undefined;
2672
2733
  } | {
2673
2734
  type: "number";
@@ -2676,6 +2737,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2676
2737
  placeholder?: string | undefined;
2677
2738
  inputMode?: "input" | "slider" | undefined;
2678
2739
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
2740
+ operatorLabelStyle?: "symbol" | "word" | undefined;
2741
+ showRange?: boolean | undefined;
2679
2742
  min?: number | undefined;
2680
2743
  max?: number | undefined;
2681
2744
  step?: number | undefined;
@@ -2691,6 +2754,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2691
2754
  property: string;
2692
2755
  options?: string[] | undefined;
2693
2756
  prefetch?: boolean | undefined;
2757
+ zoomTo?: boolean | undefined;
2694
2758
  placeholder?: string | undefined;
2695
2759
  })[];
2696
2760
  }>>;
@@ -2857,6 +2921,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2857
2921
  property: string;
2858
2922
  options?: string[] | undefined;
2859
2923
  prefetch?: boolean | undefined;
2924
+ zoomTo?: boolean | undefined;
2860
2925
  placeholder?: string | undefined;
2861
2926
  } | {
2862
2927
  type: "number";
@@ -2865,6 +2930,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2865
2930
  inputMode: "input" | "slider";
2866
2931
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
2867
2932
  placeholder?: string | undefined;
2933
+ operatorLabelStyle?: "symbol" | "word" | undefined;
2934
+ showRange?: boolean | undefined;
2868
2935
  min?: number | undefined;
2869
2936
  max?: number | undefined;
2870
2937
  step?: number | undefined;
@@ -2880,6 +2947,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2880
2947
  property: string;
2881
2948
  options?: string[] | undefined;
2882
2949
  prefetch?: boolean | undefined;
2950
+ zoomTo?: boolean | undefined;
2883
2951
  placeholder?: string | undefined;
2884
2952
  })[];
2885
2953
  } | undefined;
@@ -3040,6 +3108,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
3040
3108
  options?: string[] | undefined;
3041
3109
  autocomplete?: boolean | undefined;
3042
3110
  prefetch?: boolean | undefined;
3111
+ zoomTo?: boolean | undefined;
3043
3112
  placeholder?: string | undefined;
3044
3113
  } | {
3045
3114
  type: "number";
@@ -3048,6 +3117,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
3048
3117
  placeholder?: string | undefined;
3049
3118
  inputMode?: "input" | "slider" | undefined;
3050
3119
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
3120
+ operatorLabelStyle?: "symbol" | "word" | undefined;
3121
+ showRange?: boolean | undefined;
3051
3122
  min?: number | undefined;
3052
3123
  max?: number | undefined;
3053
3124
  step?: number | undefined;
@@ -3063,6 +3134,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
3063
3134
  property: string;
3064
3135
  options?: string[] | undefined;
3065
3136
  prefetch?: boolean | undefined;
3137
+ zoomTo?: boolean | undefined;
3066
3138
  placeholder?: string | undefined;
3067
3139
  })[];
3068
3140
  } | undefined;
@@ -3223,6 +3295,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
3223
3295
  property: string;
3224
3296
  options?: string[] | undefined;
3225
3297
  prefetch?: boolean | undefined;
3298
+ zoomTo?: boolean | undefined;
3226
3299
  placeholder?: string | undefined;
3227
3300
  } | {
3228
3301
  type: "number";
@@ -3231,6 +3304,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
3231
3304
  inputMode: "input" | "slider";
3232
3305
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
3233
3306
  placeholder?: string | undefined;
3307
+ operatorLabelStyle?: "symbol" | "word" | undefined;
3308
+ showRange?: boolean | undefined;
3234
3309
  min?: number | undefined;
3235
3310
  max?: number | undefined;
3236
3311
  step?: number | undefined;
@@ -3246,6 +3321,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
3246
3321
  property: string;
3247
3322
  options?: string[] | undefined;
3248
3323
  prefetch?: boolean | undefined;
3324
+ zoomTo?: boolean | undefined;
3249
3325
  placeholder?: string | undefined;
3250
3326
  })[];
3251
3327
  } | undefined;
@@ -3290,6 +3366,7 @@ export declare const UIConfigSchema: z.ZodObject<{
3290
3366
  showFeatureTooltip: z.ZodDefault<z.ZodBoolean>;
3291
3367
  showExportButton: z.ZodDefault<z.ZodBoolean>;
3292
3368
  showLegendOpacity: z.ZodDefault<z.ZodBoolean>;
3369
+ showMeasureTool: z.ZodDefault<z.ZodBoolean>;
3293
3370
  }, "strip", z.ZodTypeAny, {
3294
3371
  showLayerPanel: boolean;
3295
3372
  showLegend: boolean;
@@ -3300,6 +3377,7 @@ export declare const UIConfigSchema: z.ZodObject<{
3300
3377
  showFeatureTooltip: boolean;
3301
3378
  showExportButton: boolean;
3302
3379
  showLegendOpacity: boolean;
3380
+ showMeasureTool: boolean;
3303
3381
  }, {
3304
3382
  showLayerPanel?: boolean | undefined;
3305
3383
  showLegend?: boolean | undefined;
@@ -3310,6 +3388,7 @@ export declare const UIConfigSchema: z.ZodObject<{
3310
3388
  showFeatureTooltip?: boolean | undefined;
3311
3389
  showExportButton?: boolean | undefined;
3312
3390
  showLegendOpacity?: boolean | undefined;
3391
+ showMeasureTool?: boolean | undefined;
3313
3392
  }>;
3314
3393
  export declare const MapConfigSchema: z.ZodObject<{
3315
3394
  sources: z.ZodArray<z.ZodObject<{
@@ -3957,6 +4036,7 @@ export declare const MapConfigSchema: z.ZodObject<{
3957
4036
  autocomplete: z.ZodDefault<z.ZodBoolean>;
3958
4037
  prefetch: z.ZodOptional<z.ZodBoolean>;
3959
4038
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4039
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
3960
4040
  property: z.ZodString;
3961
4041
  label: z.ZodString;
3962
4042
  placeholder: z.ZodOptional<z.ZodString>;
@@ -3967,6 +4047,7 @@ export declare const MapConfigSchema: z.ZodObject<{
3967
4047
  property: string;
3968
4048
  options?: string[] | undefined;
3969
4049
  prefetch?: boolean | undefined;
4050
+ zoomTo?: boolean | undefined;
3970
4051
  placeholder?: string | undefined;
3971
4052
  }, {
3972
4053
  type: "text";
@@ -3975,11 +4056,14 @@ export declare const MapConfigSchema: z.ZodObject<{
3975
4056
  options?: string[] | undefined;
3976
4057
  autocomplete?: boolean | undefined;
3977
4058
  prefetch?: boolean | undefined;
4059
+ zoomTo?: boolean | undefined;
3978
4060
  placeholder?: string | undefined;
3979
4061
  }>, z.ZodObject<{
3980
4062
  type: z.ZodLiteral<"number">;
3981
4063
  inputMode: z.ZodDefault<z.ZodEnum<["input", "slider"]>>;
3982
4064
  operator: z.ZodDefault<z.ZodEnum<["eq", "gt", "lt", "gte", "lte", "between"]>>;
4065
+ operatorLabelStyle: z.ZodOptional<z.ZodEnum<["symbol", "word"]>>;
4066
+ showRange: z.ZodOptional<z.ZodBoolean>;
3983
4067
  min: z.ZodOptional<z.ZodNumber>;
3984
4068
  max: z.ZodOptional<z.ZodNumber>;
3985
4069
  step: z.ZodOptional<z.ZodNumber>;
@@ -3993,6 +4077,8 @@ export declare const MapConfigSchema: z.ZodObject<{
3993
4077
  inputMode: "input" | "slider";
3994
4078
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
3995
4079
  placeholder?: string | undefined;
4080
+ operatorLabelStyle?: "symbol" | "word" | undefined;
4081
+ showRange?: boolean | undefined;
3996
4082
  min?: number | undefined;
3997
4083
  max?: number | undefined;
3998
4084
  step?: number | undefined;
@@ -4003,6 +4089,8 @@ export declare const MapConfigSchema: z.ZodObject<{
4003
4089
  placeholder?: string | undefined;
4004
4090
  inputMode?: "input" | "slider" | undefined;
4005
4091
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
4092
+ operatorLabelStyle?: "symbol" | "word" | undefined;
4093
+ showRange?: boolean | undefined;
4006
4094
  min?: number | undefined;
4007
4095
  max?: number | undefined;
4008
4096
  step?: number | undefined;
@@ -4028,6 +4116,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4028
4116
  type: z.ZodLiteral<"select">;
4029
4117
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4030
4118
  prefetch: z.ZodOptional<z.ZodBoolean>;
4119
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
4031
4120
  property: z.ZodString;
4032
4121
  label: z.ZodString;
4033
4122
  placeholder: z.ZodOptional<z.ZodString>;
@@ -4037,6 +4126,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4037
4126
  property: string;
4038
4127
  options?: string[] | undefined;
4039
4128
  prefetch?: boolean | undefined;
4129
+ zoomTo?: boolean | undefined;
4040
4130
  placeholder?: string | undefined;
4041
4131
  }, {
4042
4132
  type: "select";
@@ -4044,6 +4134,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4044
4134
  property: string;
4045
4135
  options?: string[] | undefined;
4046
4136
  prefetch?: boolean | undefined;
4137
+ zoomTo?: boolean | undefined;
4047
4138
  placeholder?: string | undefined;
4048
4139
  }>]>, "many">;
4049
4140
  }, "strip", z.ZodTypeAny, {
@@ -4054,6 +4145,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4054
4145
  property: string;
4055
4146
  options?: string[] | undefined;
4056
4147
  prefetch?: boolean | undefined;
4148
+ zoomTo?: boolean | undefined;
4057
4149
  placeholder?: string | undefined;
4058
4150
  } | {
4059
4151
  type: "number";
@@ -4062,6 +4154,8 @@ export declare const MapConfigSchema: z.ZodObject<{
4062
4154
  inputMode: "input" | "slider";
4063
4155
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
4064
4156
  placeholder?: string | undefined;
4157
+ operatorLabelStyle?: "symbol" | "word" | undefined;
4158
+ showRange?: boolean | undefined;
4065
4159
  min?: number | undefined;
4066
4160
  max?: number | undefined;
4067
4161
  step?: number | undefined;
@@ -4077,6 +4171,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4077
4171
  property: string;
4078
4172
  options?: string[] | undefined;
4079
4173
  prefetch?: boolean | undefined;
4174
+ zoomTo?: boolean | undefined;
4080
4175
  placeholder?: string | undefined;
4081
4176
  })[];
4082
4177
  }, {
@@ -4087,6 +4182,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4087
4182
  options?: string[] | undefined;
4088
4183
  autocomplete?: boolean | undefined;
4089
4184
  prefetch?: boolean | undefined;
4185
+ zoomTo?: boolean | undefined;
4090
4186
  placeholder?: string | undefined;
4091
4187
  } | {
4092
4188
  type: "number";
@@ -4095,6 +4191,8 @@ export declare const MapConfigSchema: z.ZodObject<{
4095
4191
  placeholder?: string | undefined;
4096
4192
  inputMode?: "input" | "slider" | undefined;
4097
4193
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
4194
+ operatorLabelStyle?: "symbol" | "word" | undefined;
4195
+ showRange?: boolean | undefined;
4098
4196
  min?: number | undefined;
4099
4197
  max?: number | undefined;
4100
4198
  step?: number | undefined;
@@ -4110,6 +4208,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4110
4208
  property: string;
4111
4209
  options?: string[] | undefined;
4112
4210
  prefetch?: boolean | undefined;
4211
+ zoomTo?: boolean | undefined;
4113
4212
  placeholder?: string | undefined;
4114
4213
  })[];
4115
4214
  }>>;
@@ -4276,6 +4375,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4276
4375
  property: string;
4277
4376
  options?: string[] | undefined;
4278
4377
  prefetch?: boolean | undefined;
4378
+ zoomTo?: boolean | undefined;
4279
4379
  placeholder?: string | undefined;
4280
4380
  } | {
4281
4381
  type: "number";
@@ -4284,6 +4384,8 @@ export declare const MapConfigSchema: z.ZodObject<{
4284
4384
  inputMode: "input" | "slider";
4285
4385
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
4286
4386
  placeholder?: string | undefined;
4387
+ operatorLabelStyle?: "symbol" | "word" | undefined;
4388
+ showRange?: boolean | undefined;
4287
4389
  min?: number | undefined;
4288
4390
  max?: number | undefined;
4289
4391
  step?: number | undefined;
@@ -4299,6 +4401,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4299
4401
  property: string;
4300
4402
  options?: string[] | undefined;
4301
4403
  prefetch?: boolean | undefined;
4404
+ zoomTo?: boolean | undefined;
4302
4405
  placeholder?: string | undefined;
4303
4406
  })[];
4304
4407
  } | undefined;
@@ -4459,6 +4562,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4459
4562
  options?: string[] | undefined;
4460
4563
  autocomplete?: boolean | undefined;
4461
4564
  prefetch?: boolean | undefined;
4565
+ zoomTo?: boolean | undefined;
4462
4566
  placeholder?: string | undefined;
4463
4567
  } | {
4464
4568
  type: "number";
@@ -4467,6 +4571,8 @@ export declare const MapConfigSchema: z.ZodObject<{
4467
4571
  placeholder?: string | undefined;
4468
4572
  inputMode?: "input" | "slider" | undefined;
4469
4573
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
4574
+ operatorLabelStyle?: "symbol" | "word" | undefined;
4575
+ showRange?: boolean | undefined;
4470
4576
  min?: number | undefined;
4471
4577
  max?: number | undefined;
4472
4578
  step?: number | undefined;
@@ -4482,6 +4588,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4482
4588
  property: string;
4483
4589
  options?: string[] | undefined;
4484
4590
  prefetch?: boolean | undefined;
4591
+ zoomTo?: boolean | undefined;
4485
4592
  placeholder?: string | undefined;
4486
4593
  })[];
4487
4594
  } | undefined;
@@ -4642,6 +4749,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4642
4749
  property: string;
4643
4750
  options?: string[] | undefined;
4644
4751
  prefetch?: boolean | undefined;
4752
+ zoomTo?: boolean | undefined;
4645
4753
  placeholder?: string | undefined;
4646
4754
  } | {
4647
4755
  type: "number";
@@ -4650,6 +4758,8 @@ export declare const MapConfigSchema: z.ZodObject<{
4650
4758
  inputMode: "input" | "slider";
4651
4759
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
4652
4760
  placeholder?: string | undefined;
4761
+ operatorLabelStyle?: "symbol" | "word" | undefined;
4762
+ showRange?: boolean | undefined;
4653
4763
  min?: number | undefined;
4654
4764
  max?: number | undefined;
4655
4765
  step?: number | undefined;
@@ -4665,6 +4775,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4665
4775
  property: string;
4666
4776
  options?: string[] | undefined;
4667
4777
  prefetch?: boolean | undefined;
4778
+ zoomTo?: boolean | undefined;
4668
4779
  placeholder?: string | undefined;
4669
4780
  })[];
4670
4781
  } | undefined;
@@ -4709,6 +4820,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4709
4820
  showFeatureTooltip: z.ZodDefault<z.ZodBoolean>;
4710
4821
  showExportButton: z.ZodDefault<z.ZodBoolean>;
4711
4822
  showLegendOpacity: z.ZodDefault<z.ZodBoolean>;
4823
+ showMeasureTool: z.ZodDefault<z.ZodBoolean>;
4712
4824
  }, "strip", z.ZodTypeAny, {
4713
4825
  showLayerPanel: boolean;
4714
4826
  showLegend: boolean;
@@ -4719,6 +4831,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4719
4831
  showFeatureTooltip: boolean;
4720
4832
  showExportButton: boolean;
4721
4833
  showLegendOpacity: boolean;
4834
+ showMeasureTool: boolean;
4722
4835
  }, {
4723
4836
  showLayerPanel?: boolean | undefined;
4724
4837
  showLegend?: boolean | undefined;
@@ -4729,6 +4842,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4729
4842
  showFeatureTooltip?: boolean | undefined;
4730
4843
  showExportButton?: boolean | undefined;
4731
4844
  showLegendOpacity?: boolean | undefined;
4845
+ showMeasureTool?: boolean | undefined;
4732
4846
  }>>;
4733
4847
  initialView: z.ZodObject<{
4734
4848
  latitude: z.ZodNumber;
@@ -4909,6 +5023,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4909
5023
  property: string;
4910
5024
  options?: string[] | undefined;
4911
5025
  prefetch?: boolean | undefined;
5026
+ zoomTo?: boolean | undefined;
4912
5027
  placeholder?: string | undefined;
4913
5028
  } | {
4914
5029
  type: "number";
@@ -4917,6 +5032,8 @@ export declare const MapConfigSchema: z.ZodObject<{
4917
5032
  inputMode: "input" | "slider";
4918
5033
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
4919
5034
  placeholder?: string | undefined;
5035
+ operatorLabelStyle?: "symbol" | "word" | undefined;
5036
+ showRange?: boolean | undefined;
4920
5037
  min?: number | undefined;
4921
5038
  max?: number | undefined;
4922
5039
  step?: number | undefined;
@@ -4932,6 +5049,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4932
5049
  property: string;
4933
5050
  options?: string[] | undefined;
4934
5051
  prefetch?: boolean | undefined;
5052
+ zoomTo?: boolean | undefined;
4935
5053
  placeholder?: string | undefined;
4936
5054
  })[];
4937
5055
  } | undefined;
@@ -4956,6 +5074,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4956
5074
  showFeatureTooltip: boolean;
4957
5075
  showExportButton: boolean;
4958
5076
  showLegendOpacity: boolean;
5077
+ showMeasureTool: boolean;
4959
5078
  };
4960
5079
  initialView: {
4961
5080
  latitude: number;
@@ -5003,6 +5122,7 @@ export declare const MapConfigSchema: z.ZodObject<{
5003
5122
  showFeatureTooltip?: boolean | undefined;
5004
5123
  showExportButton?: boolean | undefined;
5005
5124
  showLegendOpacity?: boolean | undefined;
5125
+ showMeasureTool?: boolean | undefined;
5006
5126
  } | undefined;
5007
5127
  }>;
5008
5128
  /**
@@ -5168,6 +5288,7 @@ export declare function validateMapConfig(config: unknown): {
5168
5288
  property: string;
5169
5289
  options?: string[] | undefined;
5170
5290
  prefetch?: boolean | undefined;
5291
+ zoomTo?: boolean | undefined;
5171
5292
  placeholder?: string | undefined;
5172
5293
  } | {
5173
5294
  type: "number";
@@ -5176,6 +5297,8 @@ export declare function validateMapConfig(config: unknown): {
5176
5297
  inputMode: "input" | "slider";
5177
5298
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
5178
5299
  placeholder?: string | undefined;
5300
+ operatorLabelStyle?: "symbol" | "word" | undefined;
5301
+ showRange?: boolean | undefined;
5179
5302
  min?: number | undefined;
5180
5303
  max?: number | undefined;
5181
5304
  step?: number | undefined;
@@ -5191,6 +5314,7 @@ export declare function validateMapConfig(config: unknown): {
5191
5314
  property: string;
5192
5315
  options?: string[] | undefined;
5193
5316
  prefetch?: boolean | undefined;
5317
+ zoomTo?: boolean | undefined;
5194
5318
  placeholder?: string | undefined;
5195
5319
  })[];
5196
5320
  } | undefined;
@@ -5215,6 +5339,7 @@ export declare function validateMapConfig(config: unknown): {
5215
5339
  showFeatureTooltip: boolean;
5216
5340
  showExportButton: boolean;
5217
5341
  showLegendOpacity: boolean;
5342
+ showMeasureTool: boolean;
5218
5343
  };
5219
5344
  initialView: {
5220
5345
  latitude: number;
@@ -5266,6 +5391,7 @@ export declare function safeValidateMapConfig(config: unknown): z.SafeParseRetur
5266
5391
  showFeatureTooltip?: boolean | undefined;
5267
5392
  showExportButton?: boolean | undefined;
5268
5393
  showLegendOpacity?: boolean | undefined;
5394
+ showMeasureTool?: boolean | undefined;
5269
5395
  } | undefined;
5270
5396
  }, {
5271
5397
  sources: {
@@ -5427,6 +5553,7 @@ export declare function safeValidateMapConfig(config: unknown): z.SafeParseRetur
5427
5553
  property: string;
5428
5554
  options?: string[] | undefined;
5429
5555
  prefetch?: boolean | undefined;
5556
+ zoomTo?: boolean | undefined;
5430
5557
  placeholder?: string | undefined;
5431
5558
  } | {
5432
5559
  type: "number";
@@ -5435,6 +5562,8 @@ export declare function safeValidateMapConfig(config: unknown): z.SafeParseRetur
5435
5562
  inputMode: "input" | "slider";
5436
5563
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
5437
5564
  placeholder?: string | undefined;
5565
+ operatorLabelStyle?: "symbol" | "word" | undefined;
5566
+ showRange?: boolean | undefined;
5438
5567
  min?: number | undefined;
5439
5568
  max?: number | undefined;
5440
5569
  step?: number | undefined;
@@ -5450,6 +5579,7 @@ export declare function safeValidateMapConfig(config: unknown): z.SafeParseRetur
5450
5579
  property: string;
5451
5580
  options?: string[] | undefined;
5452
5581
  prefetch?: boolean | undefined;
5582
+ zoomTo?: boolean | undefined;
5453
5583
  placeholder?: string | undefined;
5454
5584
  })[];
5455
5585
  } | undefined;
@@ -5474,6 +5604,7 @@ export declare function safeValidateMapConfig(config: unknown): z.SafeParseRetur
5474
5604
  showFeatureTooltip: boolean;
5475
5605
  showExportButton: boolean;
5476
5606
  showLegendOpacity: boolean;
5607
+ showMeasureTool: boolean;
5477
5608
  };
5478
5609
  initialView: {
5479
5610
  latitude: number;