@ogc-maps/storybook-components 0.8.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 (62) 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/LegendEditor/LegendEditor.d.ts.map +1 -1
  19. package/dist/components/MeasurePanel/MeasurePanel.d.ts +13 -0
  20. package/dist/components/MeasurePanel/MeasurePanel.d.ts.map +1 -0
  21. package/dist/components/MeasurePanel/index.d.ts +3 -0
  22. package/dist/components/MeasurePanel/index.d.ts.map +1 -0
  23. package/dist/components/SearchFieldEditor/SearchFieldEditor.d.ts.map +1 -1
  24. package/dist/components/SearchPanel/NumberInput.d.ts.map +1 -1
  25. package/dist/components/SearchPanel/SearchPanel.d.ts +2 -1
  26. package/dist/components/SearchPanel/SearchPanel.d.ts.map +1 -1
  27. package/dist/components/SearchPanel/index.js +1 -1
  28. package/dist/components/StyleEditor/DataDrivenColorEditor.d.ts.map +1 -1
  29. package/dist/components/UIConfigEditor/UIConfigEditor.d.ts.map +1 -1
  30. package/dist/components/index.d.ts +5 -1
  31. package/dist/components/index.d.ts.map +1 -1
  32. package/dist/geo-CIJBPCVe.js +1038 -0
  33. package/dist/hooks/index.d.ts +5 -0
  34. package/dist/hooks/index.d.ts.map +1 -1
  35. package/dist/hooks/index.js +40 -35
  36. package/dist/hooks/useExport.d.ts +22 -0
  37. package/dist/hooks/useExport.d.ts.map +1 -0
  38. package/dist/hooks/useMeasure.d.ts +15 -0
  39. package/dist/hooks/useMeasure.d.ts.map +1 -0
  40. package/dist/{index-RzZtWlUz.js → index-DA_GGs_P.js} +444 -437
  41. package/dist/main.js +1301 -936
  42. package/dist/schemas/config.d.ts +167 -0
  43. package/dist/schemas/config.d.ts.map +1 -1
  44. package/dist/schemas/index.js +1 -1
  45. package/dist/style.css +1 -1
  46. package/dist/types/index.js +1 -1
  47. package/dist/utils/cql2.d.ts.map +1 -1
  48. package/dist/utils/csvExport.d.ts.map +1 -1
  49. package/dist/utils/download.d.ts +2 -0
  50. package/dist/utils/download.d.ts.map +1 -0
  51. package/dist/utils/expressionColors.d.ts.map +1 -1
  52. package/dist/utils/geo.d.ts +3 -0
  53. package/dist/utils/geo.d.ts.map +1 -0
  54. package/dist/utils/index.d.ts +1 -0
  55. package/dist/utils/index.d.ts.map +1 -1
  56. package/dist/utils/measure.d.ts +49 -0
  57. package/dist/utils/measure.d.ts.map +1 -0
  58. package/package.json +6 -3
  59. package/dist/ExportButton-CLsWoW4m.js +0 -77
  60. package/dist/Legend-BiRyrZL1.js +0 -239
  61. package/dist/SearchPanel-DtLXMoVs.js +0 -363
  62. package/dist/cql2-DOJnQwcv.js +0 -440
@@ -1497,6 +1497,8 @@ export declare const LegendConfigSchema: z.ZodObject<{
1497
1497
  }>, "many">;
1498
1498
  displayMode: z.ZodOptional<z.ZodEnum<["categorical", "gradient", "simple"]>>;
1499
1499
  showLabelsCollapsed: z.ZodOptional<z.ZodBoolean>;
1500
+ showColorBar: z.ZodOptional<z.ZodBoolean>;
1501
+ showDisclosureArrow: z.ZodOptional<z.ZodBoolean>;
1500
1502
  gradientProperty: z.ZodOptional<z.ZodString>;
1501
1503
  }, "strip", z.ZodTypeAny, {
1502
1504
  entries: {
@@ -1506,6 +1508,8 @@ export declare const LegendConfigSchema: z.ZodObject<{
1506
1508
  }[];
1507
1509
  displayMode?: "categorical" | "gradient" | "simple" | undefined;
1508
1510
  showLabelsCollapsed?: boolean | undefined;
1511
+ showColorBar?: boolean | undefined;
1512
+ showDisclosureArrow?: boolean | undefined;
1509
1513
  gradientProperty?: string | undefined;
1510
1514
  }, {
1511
1515
  entries: {
@@ -1515,6 +1519,8 @@ export declare const LegendConfigSchema: z.ZodObject<{
1515
1519
  }[];
1516
1520
  displayMode?: "categorical" | "gradient" | "simple" | undefined;
1517
1521
  showLabelsCollapsed?: boolean | undefined;
1522
+ showColorBar?: boolean | undefined;
1523
+ showDisclosureArrow?: boolean | undefined;
1518
1524
  gradientProperty?: string | undefined;
1519
1525
  }>;
1520
1526
  export declare const TextSearchFieldSchema: z.ZodObject<{
@@ -1522,6 +1528,7 @@ export declare const TextSearchFieldSchema: z.ZodObject<{
1522
1528
  autocomplete: z.ZodDefault<z.ZodBoolean>;
1523
1529
  prefetch: z.ZodOptional<z.ZodBoolean>;
1524
1530
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1531
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
1525
1532
  property: z.ZodString;
1526
1533
  label: z.ZodString;
1527
1534
  placeholder: z.ZodOptional<z.ZodString>;
@@ -1532,6 +1539,7 @@ export declare const TextSearchFieldSchema: z.ZodObject<{
1532
1539
  property: string;
1533
1540
  options?: string[] | undefined;
1534
1541
  prefetch?: boolean | undefined;
1542
+ zoomTo?: boolean | undefined;
1535
1543
  placeholder?: string | undefined;
1536
1544
  }, {
1537
1545
  type: "text";
@@ -1540,12 +1548,15 @@ export declare const TextSearchFieldSchema: z.ZodObject<{
1540
1548
  options?: string[] | undefined;
1541
1549
  autocomplete?: boolean | undefined;
1542
1550
  prefetch?: boolean | undefined;
1551
+ zoomTo?: boolean | undefined;
1543
1552
  placeholder?: string | undefined;
1544
1553
  }>;
1545
1554
  export declare const NumberSearchFieldSchema: z.ZodObject<{
1546
1555
  type: z.ZodLiteral<"number">;
1547
1556
  inputMode: z.ZodDefault<z.ZodEnum<["input", "slider"]>>;
1548
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>;
1549
1560
  min: z.ZodOptional<z.ZodNumber>;
1550
1561
  max: z.ZodOptional<z.ZodNumber>;
1551
1562
  step: z.ZodOptional<z.ZodNumber>;
@@ -1559,6 +1570,8 @@ export declare const NumberSearchFieldSchema: z.ZodObject<{
1559
1570
  inputMode: "input" | "slider";
1560
1571
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
1561
1572
  placeholder?: string | undefined;
1573
+ operatorLabelStyle?: "symbol" | "word" | undefined;
1574
+ showRange?: boolean | undefined;
1562
1575
  min?: number | undefined;
1563
1576
  max?: number | undefined;
1564
1577
  step?: number | undefined;
@@ -1569,6 +1582,8 @@ export declare const NumberSearchFieldSchema: z.ZodObject<{
1569
1582
  placeholder?: string | undefined;
1570
1583
  inputMode?: "input" | "slider" | undefined;
1571
1584
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
1585
+ operatorLabelStyle?: "symbol" | "word" | undefined;
1586
+ showRange?: boolean | undefined;
1572
1587
  min?: number | undefined;
1573
1588
  max?: number | undefined;
1574
1589
  step?: number | undefined;
@@ -1596,6 +1611,7 @@ export declare const SelectSearchFieldSchema: z.ZodObject<{
1596
1611
  type: z.ZodLiteral<"select">;
1597
1612
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1598
1613
  prefetch: z.ZodOptional<z.ZodBoolean>;
1614
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
1599
1615
  property: z.ZodString;
1600
1616
  label: z.ZodString;
1601
1617
  placeholder: z.ZodOptional<z.ZodString>;
@@ -1605,6 +1621,7 @@ export declare const SelectSearchFieldSchema: z.ZodObject<{
1605
1621
  property: string;
1606
1622
  options?: string[] | undefined;
1607
1623
  prefetch?: boolean | undefined;
1624
+ zoomTo?: boolean | undefined;
1608
1625
  placeholder?: string | undefined;
1609
1626
  }, {
1610
1627
  type: "select";
@@ -1612,6 +1629,7 @@ export declare const SelectSearchFieldSchema: z.ZodObject<{
1612
1629
  property: string;
1613
1630
  options?: string[] | undefined;
1614
1631
  prefetch?: boolean | undefined;
1632
+ zoomTo?: boolean | undefined;
1615
1633
  placeholder?: string | undefined;
1616
1634
  }>;
1617
1635
  export declare const SearchFieldSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
@@ -1619,6 +1637,7 @@ export declare const SearchFieldSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
1619
1637
  autocomplete: z.ZodDefault<z.ZodBoolean>;
1620
1638
  prefetch: z.ZodOptional<z.ZodBoolean>;
1621
1639
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1640
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
1622
1641
  property: z.ZodString;
1623
1642
  label: z.ZodString;
1624
1643
  placeholder: z.ZodOptional<z.ZodString>;
@@ -1629,6 +1648,7 @@ export declare const SearchFieldSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
1629
1648
  property: string;
1630
1649
  options?: string[] | undefined;
1631
1650
  prefetch?: boolean | undefined;
1651
+ zoomTo?: boolean | undefined;
1632
1652
  placeholder?: string | undefined;
1633
1653
  }, {
1634
1654
  type: "text";
@@ -1637,11 +1657,14 @@ export declare const SearchFieldSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
1637
1657
  options?: string[] | undefined;
1638
1658
  autocomplete?: boolean | undefined;
1639
1659
  prefetch?: boolean | undefined;
1660
+ zoomTo?: boolean | undefined;
1640
1661
  placeholder?: string | undefined;
1641
1662
  }>, z.ZodObject<{
1642
1663
  type: z.ZodLiteral<"number">;
1643
1664
  inputMode: z.ZodDefault<z.ZodEnum<["input", "slider"]>>;
1644
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>;
1645
1668
  min: z.ZodOptional<z.ZodNumber>;
1646
1669
  max: z.ZodOptional<z.ZodNumber>;
1647
1670
  step: z.ZodOptional<z.ZodNumber>;
@@ -1655,6 +1678,8 @@ export declare const SearchFieldSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
1655
1678
  inputMode: "input" | "slider";
1656
1679
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
1657
1680
  placeholder?: string | undefined;
1681
+ operatorLabelStyle?: "symbol" | "word" | undefined;
1682
+ showRange?: boolean | undefined;
1658
1683
  min?: number | undefined;
1659
1684
  max?: number | undefined;
1660
1685
  step?: number | undefined;
@@ -1665,6 +1690,8 @@ export declare const SearchFieldSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
1665
1690
  placeholder?: string | undefined;
1666
1691
  inputMode?: "input" | "slider" | undefined;
1667
1692
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
1693
+ operatorLabelStyle?: "symbol" | "word" | undefined;
1694
+ showRange?: boolean | undefined;
1668
1695
  min?: number | undefined;
1669
1696
  max?: number | undefined;
1670
1697
  step?: number | undefined;
@@ -1690,6 +1717,7 @@ export declare const SearchFieldSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
1690
1717
  type: z.ZodLiteral<"select">;
1691
1718
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1692
1719
  prefetch: z.ZodOptional<z.ZodBoolean>;
1720
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
1693
1721
  property: z.ZodString;
1694
1722
  label: z.ZodString;
1695
1723
  placeholder: z.ZodOptional<z.ZodString>;
@@ -1699,6 +1727,7 @@ export declare const SearchFieldSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
1699
1727
  property: string;
1700
1728
  options?: string[] | undefined;
1701
1729
  prefetch?: boolean | undefined;
1730
+ zoomTo?: boolean | undefined;
1702
1731
  placeholder?: string | undefined;
1703
1732
  }, {
1704
1733
  type: "select";
@@ -1706,6 +1735,7 @@ export declare const SearchFieldSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
1706
1735
  property: string;
1707
1736
  options?: string[] | undefined;
1708
1737
  prefetch?: boolean | undefined;
1738
+ zoomTo?: boolean | undefined;
1709
1739
  placeholder?: string | undefined;
1710
1740
  }>]>;
1711
1741
  export declare const SearchConfigSchema: z.ZodObject<{
@@ -1714,6 +1744,7 @@ export declare const SearchConfigSchema: z.ZodObject<{
1714
1744
  autocomplete: z.ZodDefault<z.ZodBoolean>;
1715
1745
  prefetch: z.ZodOptional<z.ZodBoolean>;
1716
1746
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1747
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
1717
1748
  property: z.ZodString;
1718
1749
  label: z.ZodString;
1719
1750
  placeholder: z.ZodOptional<z.ZodString>;
@@ -1724,6 +1755,7 @@ export declare const SearchConfigSchema: z.ZodObject<{
1724
1755
  property: string;
1725
1756
  options?: string[] | undefined;
1726
1757
  prefetch?: boolean | undefined;
1758
+ zoomTo?: boolean | undefined;
1727
1759
  placeholder?: string | undefined;
1728
1760
  }, {
1729
1761
  type: "text";
@@ -1732,11 +1764,14 @@ export declare const SearchConfigSchema: z.ZodObject<{
1732
1764
  options?: string[] | undefined;
1733
1765
  autocomplete?: boolean | undefined;
1734
1766
  prefetch?: boolean | undefined;
1767
+ zoomTo?: boolean | undefined;
1735
1768
  placeholder?: string | undefined;
1736
1769
  }>, z.ZodObject<{
1737
1770
  type: z.ZodLiteral<"number">;
1738
1771
  inputMode: z.ZodDefault<z.ZodEnum<["input", "slider"]>>;
1739
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>;
1740
1775
  min: z.ZodOptional<z.ZodNumber>;
1741
1776
  max: z.ZodOptional<z.ZodNumber>;
1742
1777
  step: z.ZodOptional<z.ZodNumber>;
@@ -1750,6 +1785,8 @@ export declare const SearchConfigSchema: z.ZodObject<{
1750
1785
  inputMode: "input" | "slider";
1751
1786
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
1752
1787
  placeholder?: string | undefined;
1788
+ operatorLabelStyle?: "symbol" | "word" | undefined;
1789
+ showRange?: boolean | undefined;
1753
1790
  min?: number | undefined;
1754
1791
  max?: number | undefined;
1755
1792
  step?: number | undefined;
@@ -1760,6 +1797,8 @@ export declare const SearchConfigSchema: z.ZodObject<{
1760
1797
  placeholder?: string | undefined;
1761
1798
  inputMode?: "input" | "slider" | undefined;
1762
1799
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
1800
+ operatorLabelStyle?: "symbol" | "word" | undefined;
1801
+ showRange?: boolean | undefined;
1763
1802
  min?: number | undefined;
1764
1803
  max?: number | undefined;
1765
1804
  step?: number | undefined;
@@ -1785,6 +1824,7 @@ export declare const SearchConfigSchema: z.ZodObject<{
1785
1824
  type: z.ZodLiteral<"select">;
1786
1825
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1787
1826
  prefetch: z.ZodOptional<z.ZodBoolean>;
1827
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
1788
1828
  property: z.ZodString;
1789
1829
  label: z.ZodString;
1790
1830
  placeholder: z.ZodOptional<z.ZodString>;
@@ -1794,6 +1834,7 @@ export declare const SearchConfigSchema: z.ZodObject<{
1794
1834
  property: string;
1795
1835
  options?: string[] | undefined;
1796
1836
  prefetch?: boolean | undefined;
1837
+ zoomTo?: boolean | undefined;
1797
1838
  placeholder?: string | undefined;
1798
1839
  }, {
1799
1840
  type: "select";
@@ -1801,6 +1842,7 @@ export declare const SearchConfigSchema: z.ZodObject<{
1801
1842
  property: string;
1802
1843
  options?: string[] | undefined;
1803
1844
  prefetch?: boolean | undefined;
1845
+ zoomTo?: boolean | undefined;
1804
1846
  placeholder?: string | undefined;
1805
1847
  }>]>, "many">;
1806
1848
  }, "strip", z.ZodTypeAny, {
@@ -1811,6 +1853,7 @@ export declare const SearchConfigSchema: z.ZodObject<{
1811
1853
  property: string;
1812
1854
  options?: string[] | undefined;
1813
1855
  prefetch?: boolean | undefined;
1856
+ zoomTo?: boolean | undefined;
1814
1857
  placeholder?: string | undefined;
1815
1858
  } | {
1816
1859
  type: "number";
@@ -1819,6 +1862,8 @@ export declare const SearchConfigSchema: z.ZodObject<{
1819
1862
  inputMode: "input" | "slider";
1820
1863
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
1821
1864
  placeholder?: string | undefined;
1865
+ operatorLabelStyle?: "symbol" | "word" | undefined;
1866
+ showRange?: boolean | undefined;
1822
1867
  min?: number | undefined;
1823
1868
  max?: number | undefined;
1824
1869
  step?: number | undefined;
@@ -1834,6 +1879,7 @@ export declare const SearchConfigSchema: z.ZodObject<{
1834
1879
  property: string;
1835
1880
  options?: string[] | undefined;
1836
1881
  prefetch?: boolean | undefined;
1882
+ zoomTo?: boolean | undefined;
1837
1883
  placeholder?: string | undefined;
1838
1884
  })[];
1839
1885
  }, {
@@ -1844,6 +1890,7 @@ export declare const SearchConfigSchema: z.ZodObject<{
1844
1890
  options?: string[] | undefined;
1845
1891
  autocomplete?: boolean | undefined;
1846
1892
  prefetch?: boolean | undefined;
1893
+ zoomTo?: boolean | undefined;
1847
1894
  placeholder?: string | undefined;
1848
1895
  } | {
1849
1896
  type: "number";
@@ -1852,6 +1899,8 @@ export declare const SearchConfigSchema: z.ZodObject<{
1852
1899
  placeholder?: string | undefined;
1853
1900
  inputMode?: "input" | "slider" | undefined;
1854
1901
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
1902
+ operatorLabelStyle?: "symbol" | "word" | undefined;
1903
+ showRange?: boolean | undefined;
1855
1904
  min?: number | undefined;
1856
1905
  max?: number | undefined;
1857
1906
  step?: number | undefined;
@@ -1867,6 +1916,7 @@ export declare const SearchConfigSchema: z.ZodObject<{
1867
1916
  property: string;
1868
1917
  options?: string[] | undefined;
1869
1918
  prefetch?: boolean | undefined;
1919
+ zoomTo?: boolean | undefined;
1870
1920
  placeholder?: string | undefined;
1871
1921
  })[];
1872
1922
  }>;
@@ -2487,6 +2537,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2487
2537
  }>, "many">;
2488
2538
  displayMode: z.ZodOptional<z.ZodEnum<["categorical", "gradient", "simple"]>>;
2489
2539
  showLabelsCollapsed: z.ZodOptional<z.ZodBoolean>;
2540
+ showColorBar: z.ZodOptional<z.ZodBoolean>;
2541
+ showDisclosureArrow: z.ZodOptional<z.ZodBoolean>;
2490
2542
  gradientProperty: z.ZodOptional<z.ZodString>;
2491
2543
  }, "strip", z.ZodTypeAny, {
2492
2544
  entries: {
@@ -2496,6 +2548,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2496
2548
  }[];
2497
2549
  displayMode?: "categorical" | "gradient" | "simple" | undefined;
2498
2550
  showLabelsCollapsed?: boolean | undefined;
2551
+ showColorBar?: boolean | undefined;
2552
+ showDisclosureArrow?: boolean | undefined;
2499
2553
  gradientProperty?: string | undefined;
2500
2554
  }, {
2501
2555
  entries: {
@@ -2505,6 +2559,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2505
2559
  }[];
2506
2560
  displayMode?: "categorical" | "gradient" | "simple" | undefined;
2507
2561
  showLabelsCollapsed?: boolean | undefined;
2562
+ showColorBar?: boolean | undefined;
2563
+ showDisclosureArrow?: boolean | undefined;
2508
2564
  gradientProperty?: string | undefined;
2509
2565
  }>>;
2510
2566
  filters: z.ZodOptional<z.ZodObject<{
@@ -2526,6 +2582,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2526
2582
  autocomplete: z.ZodDefault<z.ZodBoolean>;
2527
2583
  prefetch: z.ZodOptional<z.ZodBoolean>;
2528
2584
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2585
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
2529
2586
  property: z.ZodString;
2530
2587
  label: z.ZodString;
2531
2588
  placeholder: z.ZodOptional<z.ZodString>;
@@ -2536,6 +2593,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2536
2593
  property: string;
2537
2594
  options?: string[] | undefined;
2538
2595
  prefetch?: boolean | undefined;
2596
+ zoomTo?: boolean | undefined;
2539
2597
  placeholder?: string | undefined;
2540
2598
  }, {
2541
2599
  type: "text";
@@ -2544,11 +2602,14 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2544
2602
  options?: string[] | undefined;
2545
2603
  autocomplete?: boolean | undefined;
2546
2604
  prefetch?: boolean | undefined;
2605
+ zoomTo?: boolean | undefined;
2547
2606
  placeholder?: string | undefined;
2548
2607
  }>, z.ZodObject<{
2549
2608
  type: z.ZodLiteral<"number">;
2550
2609
  inputMode: z.ZodDefault<z.ZodEnum<["input", "slider"]>>;
2551
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>;
2552
2613
  min: z.ZodOptional<z.ZodNumber>;
2553
2614
  max: z.ZodOptional<z.ZodNumber>;
2554
2615
  step: z.ZodOptional<z.ZodNumber>;
@@ -2562,6 +2623,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2562
2623
  inputMode: "input" | "slider";
2563
2624
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
2564
2625
  placeholder?: string | undefined;
2626
+ operatorLabelStyle?: "symbol" | "word" | undefined;
2627
+ showRange?: boolean | undefined;
2565
2628
  min?: number | undefined;
2566
2629
  max?: number | undefined;
2567
2630
  step?: number | undefined;
@@ -2572,6 +2635,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2572
2635
  placeholder?: string | undefined;
2573
2636
  inputMode?: "input" | "slider" | undefined;
2574
2637
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
2638
+ operatorLabelStyle?: "symbol" | "word" | undefined;
2639
+ showRange?: boolean | undefined;
2575
2640
  min?: number | undefined;
2576
2641
  max?: number | undefined;
2577
2642
  step?: number | undefined;
@@ -2597,6 +2662,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2597
2662
  type: z.ZodLiteral<"select">;
2598
2663
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2599
2664
  prefetch: z.ZodOptional<z.ZodBoolean>;
2665
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
2600
2666
  property: z.ZodString;
2601
2667
  label: z.ZodString;
2602
2668
  placeholder: z.ZodOptional<z.ZodString>;
@@ -2606,6 +2672,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2606
2672
  property: string;
2607
2673
  options?: string[] | undefined;
2608
2674
  prefetch?: boolean | undefined;
2675
+ zoomTo?: boolean | undefined;
2609
2676
  placeholder?: string | undefined;
2610
2677
  }, {
2611
2678
  type: "select";
@@ -2613,6 +2680,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2613
2680
  property: string;
2614
2681
  options?: string[] | undefined;
2615
2682
  prefetch?: boolean | undefined;
2683
+ zoomTo?: boolean | undefined;
2616
2684
  placeholder?: string | undefined;
2617
2685
  }>]>, "many">;
2618
2686
  }, "strip", z.ZodTypeAny, {
@@ -2623,6 +2691,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2623
2691
  property: string;
2624
2692
  options?: string[] | undefined;
2625
2693
  prefetch?: boolean | undefined;
2694
+ zoomTo?: boolean | undefined;
2626
2695
  placeholder?: string | undefined;
2627
2696
  } | {
2628
2697
  type: "number";
@@ -2631,6 +2700,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2631
2700
  inputMode: "input" | "slider";
2632
2701
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
2633
2702
  placeholder?: string | undefined;
2703
+ operatorLabelStyle?: "symbol" | "word" | undefined;
2704
+ showRange?: boolean | undefined;
2634
2705
  min?: number | undefined;
2635
2706
  max?: number | undefined;
2636
2707
  step?: number | undefined;
@@ -2646,6 +2717,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2646
2717
  property: string;
2647
2718
  options?: string[] | undefined;
2648
2719
  prefetch?: boolean | undefined;
2720
+ zoomTo?: boolean | undefined;
2649
2721
  placeholder?: string | undefined;
2650
2722
  })[];
2651
2723
  }, {
@@ -2656,6 +2728,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2656
2728
  options?: string[] | undefined;
2657
2729
  autocomplete?: boolean | undefined;
2658
2730
  prefetch?: boolean | undefined;
2731
+ zoomTo?: boolean | undefined;
2659
2732
  placeholder?: string | undefined;
2660
2733
  } | {
2661
2734
  type: "number";
@@ -2664,6 +2737,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2664
2737
  placeholder?: string | undefined;
2665
2738
  inputMode?: "input" | "slider" | undefined;
2666
2739
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
2740
+ operatorLabelStyle?: "symbol" | "word" | undefined;
2741
+ showRange?: boolean | undefined;
2667
2742
  min?: number | undefined;
2668
2743
  max?: number | undefined;
2669
2744
  step?: number | undefined;
@@ -2679,6 +2754,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2679
2754
  property: string;
2680
2755
  options?: string[] | undefined;
2681
2756
  prefetch?: boolean | undefined;
2757
+ zoomTo?: boolean | undefined;
2682
2758
  placeholder?: string | undefined;
2683
2759
  })[];
2684
2760
  }>>;
@@ -2828,6 +2904,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2828
2904
  }[];
2829
2905
  displayMode?: "categorical" | "gradient" | "simple" | undefined;
2830
2906
  showLabelsCollapsed?: boolean | undefined;
2907
+ showColorBar?: boolean | undefined;
2908
+ showDisclosureArrow?: boolean | undefined;
2831
2909
  gradientProperty?: string | undefined;
2832
2910
  } | undefined;
2833
2911
  filters?: {
@@ -2843,6 +2921,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2843
2921
  property: string;
2844
2922
  options?: string[] | undefined;
2845
2923
  prefetch?: boolean | undefined;
2924
+ zoomTo?: boolean | undefined;
2846
2925
  placeholder?: string | undefined;
2847
2926
  } | {
2848
2927
  type: "number";
@@ -2851,6 +2930,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2851
2930
  inputMode: "input" | "slider";
2852
2931
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
2853
2932
  placeholder?: string | undefined;
2933
+ operatorLabelStyle?: "symbol" | "word" | undefined;
2934
+ showRange?: boolean | undefined;
2854
2935
  min?: number | undefined;
2855
2936
  max?: number | undefined;
2856
2937
  step?: number | undefined;
@@ -2866,6 +2947,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
2866
2947
  property: string;
2867
2948
  options?: string[] | undefined;
2868
2949
  prefetch?: boolean | undefined;
2950
+ zoomTo?: boolean | undefined;
2869
2951
  placeholder?: string | undefined;
2870
2952
  })[];
2871
2953
  } | undefined;
@@ -3009,6 +3091,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
3009
3091
  }[];
3010
3092
  displayMode?: "categorical" | "gradient" | "simple" | undefined;
3011
3093
  showLabelsCollapsed?: boolean | undefined;
3094
+ showColorBar?: boolean | undefined;
3095
+ showDisclosureArrow?: boolean | undefined;
3012
3096
  gradientProperty?: string | undefined;
3013
3097
  } | undefined;
3014
3098
  filters?: {
@@ -3024,6 +3108,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
3024
3108
  options?: string[] | undefined;
3025
3109
  autocomplete?: boolean | undefined;
3026
3110
  prefetch?: boolean | undefined;
3111
+ zoomTo?: boolean | undefined;
3027
3112
  placeholder?: string | undefined;
3028
3113
  } | {
3029
3114
  type: "number";
@@ -3032,6 +3117,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
3032
3117
  placeholder?: string | undefined;
3033
3118
  inputMode?: "input" | "slider" | undefined;
3034
3119
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
3120
+ operatorLabelStyle?: "symbol" | "word" | undefined;
3121
+ showRange?: boolean | undefined;
3035
3122
  min?: number | undefined;
3036
3123
  max?: number | undefined;
3037
3124
  step?: number | undefined;
@@ -3047,6 +3134,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
3047
3134
  property: string;
3048
3135
  options?: string[] | undefined;
3049
3136
  prefetch?: boolean | undefined;
3137
+ zoomTo?: boolean | undefined;
3050
3138
  placeholder?: string | undefined;
3051
3139
  })[];
3052
3140
  } | undefined;
@@ -3190,6 +3278,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
3190
3278
  }[];
3191
3279
  displayMode?: "categorical" | "gradient" | "simple" | undefined;
3192
3280
  showLabelsCollapsed?: boolean | undefined;
3281
+ showColorBar?: boolean | undefined;
3282
+ showDisclosureArrow?: boolean | undefined;
3193
3283
  gradientProperty?: string | undefined;
3194
3284
  } | undefined;
3195
3285
  filters?: {
@@ -3205,6 +3295,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
3205
3295
  property: string;
3206
3296
  options?: string[] | undefined;
3207
3297
  prefetch?: boolean | undefined;
3298
+ zoomTo?: boolean | undefined;
3208
3299
  placeholder?: string | undefined;
3209
3300
  } | {
3210
3301
  type: "number";
@@ -3213,6 +3304,8 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
3213
3304
  inputMode: "input" | "slider";
3214
3305
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
3215
3306
  placeholder?: string | undefined;
3307
+ operatorLabelStyle?: "symbol" | "word" | undefined;
3308
+ showRange?: boolean | undefined;
3216
3309
  min?: number | undefined;
3217
3310
  max?: number | undefined;
3218
3311
  step?: number | undefined;
@@ -3228,6 +3321,7 @@ export declare const LayerConfigSchema: z.ZodEffects<z.ZodObject<{
3228
3321
  property: string;
3229
3322
  options?: string[] | undefined;
3230
3323
  prefetch?: boolean | undefined;
3324
+ zoomTo?: boolean | undefined;
3231
3325
  placeholder?: string | undefined;
3232
3326
  })[];
3233
3327
  } | undefined;
@@ -3272,6 +3366,7 @@ export declare const UIConfigSchema: z.ZodObject<{
3272
3366
  showFeatureTooltip: z.ZodDefault<z.ZodBoolean>;
3273
3367
  showExportButton: z.ZodDefault<z.ZodBoolean>;
3274
3368
  showLegendOpacity: z.ZodDefault<z.ZodBoolean>;
3369
+ showMeasureTool: z.ZodDefault<z.ZodBoolean>;
3275
3370
  }, "strip", z.ZodTypeAny, {
3276
3371
  showLayerPanel: boolean;
3277
3372
  showLegend: boolean;
@@ -3282,6 +3377,7 @@ export declare const UIConfigSchema: z.ZodObject<{
3282
3377
  showFeatureTooltip: boolean;
3283
3378
  showExportButton: boolean;
3284
3379
  showLegendOpacity: boolean;
3380
+ showMeasureTool: boolean;
3285
3381
  }, {
3286
3382
  showLayerPanel?: boolean | undefined;
3287
3383
  showLegend?: boolean | undefined;
@@ -3292,6 +3388,7 @@ export declare const UIConfigSchema: z.ZodObject<{
3292
3388
  showFeatureTooltip?: boolean | undefined;
3293
3389
  showExportButton?: boolean | undefined;
3294
3390
  showLegendOpacity?: boolean | undefined;
3391
+ showMeasureTool?: boolean | undefined;
3295
3392
  }>;
3296
3393
  export declare const MapConfigSchema: z.ZodObject<{
3297
3394
  sources: z.ZodArray<z.ZodObject<{
@@ -3894,6 +3991,8 @@ export declare const MapConfigSchema: z.ZodObject<{
3894
3991
  }>, "many">;
3895
3992
  displayMode: z.ZodOptional<z.ZodEnum<["categorical", "gradient", "simple"]>>;
3896
3993
  showLabelsCollapsed: z.ZodOptional<z.ZodBoolean>;
3994
+ showColorBar: z.ZodOptional<z.ZodBoolean>;
3995
+ showDisclosureArrow: z.ZodOptional<z.ZodBoolean>;
3897
3996
  gradientProperty: z.ZodOptional<z.ZodString>;
3898
3997
  }, "strip", z.ZodTypeAny, {
3899
3998
  entries: {
@@ -3903,6 +4002,8 @@ export declare const MapConfigSchema: z.ZodObject<{
3903
4002
  }[];
3904
4003
  displayMode?: "categorical" | "gradient" | "simple" | undefined;
3905
4004
  showLabelsCollapsed?: boolean | undefined;
4005
+ showColorBar?: boolean | undefined;
4006
+ showDisclosureArrow?: boolean | undefined;
3906
4007
  gradientProperty?: string | undefined;
3907
4008
  }, {
3908
4009
  entries: {
@@ -3912,6 +4013,8 @@ export declare const MapConfigSchema: z.ZodObject<{
3912
4013
  }[];
3913
4014
  displayMode?: "categorical" | "gradient" | "simple" | undefined;
3914
4015
  showLabelsCollapsed?: boolean | undefined;
4016
+ showColorBar?: boolean | undefined;
4017
+ showDisclosureArrow?: boolean | undefined;
3915
4018
  gradientProperty?: string | undefined;
3916
4019
  }>>;
3917
4020
  filters: z.ZodOptional<z.ZodObject<{
@@ -3933,6 +4036,7 @@ export declare const MapConfigSchema: z.ZodObject<{
3933
4036
  autocomplete: z.ZodDefault<z.ZodBoolean>;
3934
4037
  prefetch: z.ZodOptional<z.ZodBoolean>;
3935
4038
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4039
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
3936
4040
  property: z.ZodString;
3937
4041
  label: z.ZodString;
3938
4042
  placeholder: z.ZodOptional<z.ZodString>;
@@ -3943,6 +4047,7 @@ export declare const MapConfigSchema: z.ZodObject<{
3943
4047
  property: string;
3944
4048
  options?: string[] | undefined;
3945
4049
  prefetch?: boolean | undefined;
4050
+ zoomTo?: boolean | undefined;
3946
4051
  placeholder?: string | undefined;
3947
4052
  }, {
3948
4053
  type: "text";
@@ -3951,11 +4056,14 @@ export declare const MapConfigSchema: z.ZodObject<{
3951
4056
  options?: string[] | undefined;
3952
4057
  autocomplete?: boolean | undefined;
3953
4058
  prefetch?: boolean | undefined;
4059
+ zoomTo?: boolean | undefined;
3954
4060
  placeholder?: string | undefined;
3955
4061
  }>, z.ZodObject<{
3956
4062
  type: z.ZodLiteral<"number">;
3957
4063
  inputMode: z.ZodDefault<z.ZodEnum<["input", "slider"]>>;
3958
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>;
3959
4067
  min: z.ZodOptional<z.ZodNumber>;
3960
4068
  max: z.ZodOptional<z.ZodNumber>;
3961
4069
  step: z.ZodOptional<z.ZodNumber>;
@@ -3969,6 +4077,8 @@ export declare const MapConfigSchema: z.ZodObject<{
3969
4077
  inputMode: "input" | "slider";
3970
4078
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
3971
4079
  placeholder?: string | undefined;
4080
+ operatorLabelStyle?: "symbol" | "word" | undefined;
4081
+ showRange?: boolean | undefined;
3972
4082
  min?: number | undefined;
3973
4083
  max?: number | undefined;
3974
4084
  step?: number | undefined;
@@ -3979,6 +4089,8 @@ export declare const MapConfigSchema: z.ZodObject<{
3979
4089
  placeholder?: string | undefined;
3980
4090
  inputMode?: "input" | "slider" | undefined;
3981
4091
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
4092
+ operatorLabelStyle?: "symbol" | "word" | undefined;
4093
+ showRange?: boolean | undefined;
3982
4094
  min?: number | undefined;
3983
4095
  max?: number | undefined;
3984
4096
  step?: number | undefined;
@@ -4004,6 +4116,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4004
4116
  type: z.ZodLiteral<"select">;
4005
4117
  options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4006
4118
  prefetch: z.ZodOptional<z.ZodBoolean>;
4119
+ zoomTo: z.ZodOptional<z.ZodBoolean>;
4007
4120
  property: z.ZodString;
4008
4121
  label: z.ZodString;
4009
4122
  placeholder: z.ZodOptional<z.ZodString>;
@@ -4013,6 +4126,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4013
4126
  property: string;
4014
4127
  options?: string[] | undefined;
4015
4128
  prefetch?: boolean | undefined;
4129
+ zoomTo?: boolean | undefined;
4016
4130
  placeholder?: string | undefined;
4017
4131
  }, {
4018
4132
  type: "select";
@@ -4020,6 +4134,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4020
4134
  property: string;
4021
4135
  options?: string[] | undefined;
4022
4136
  prefetch?: boolean | undefined;
4137
+ zoomTo?: boolean | undefined;
4023
4138
  placeholder?: string | undefined;
4024
4139
  }>]>, "many">;
4025
4140
  }, "strip", z.ZodTypeAny, {
@@ -4030,6 +4145,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4030
4145
  property: string;
4031
4146
  options?: string[] | undefined;
4032
4147
  prefetch?: boolean | undefined;
4148
+ zoomTo?: boolean | undefined;
4033
4149
  placeholder?: string | undefined;
4034
4150
  } | {
4035
4151
  type: "number";
@@ -4038,6 +4154,8 @@ export declare const MapConfigSchema: z.ZodObject<{
4038
4154
  inputMode: "input" | "slider";
4039
4155
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
4040
4156
  placeholder?: string | undefined;
4157
+ operatorLabelStyle?: "symbol" | "word" | undefined;
4158
+ showRange?: boolean | undefined;
4041
4159
  min?: number | undefined;
4042
4160
  max?: number | undefined;
4043
4161
  step?: number | undefined;
@@ -4053,6 +4171,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4053
4171
  property: string;
4054
4172
  options?: string[] | undefined;
4055
4173
  prefetch?: boolean | undefined;
4174
+ zoomTo?: boolean | undefined;
4056
4175
  placeholder?: string | undefined;
4057
4176
  })[];
4058
4177
  }, {
@@ -4063,6 +4182,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4063
4182
  options?: string[] | undefined;
4064
4183
  autocomplete?: boolean | undefined;
4065
4184
  prefetch?: boolean | undefined;
4185
+ zoomTo?: boolean | undefined;
4066
4186
  placeholder?: string | undefined;
4067
4187
  } | {
4068
4188
  type: "number";
@@ -4071,6 +4191,8 @@ export declare const MapConfigSchema: z.ZodObject<{
4071
4191
  placeholder?: string | undefined;
4072
4192
  inputMode?: "input" | "slider" | undefined;
4073
4193
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
4194
+ operatorLabelStyle?: "symbol" | "word" | undefined;
4195
+ showRange?: boolean | undefined;
4074
4196
  min?: number | undefined;
4075
4197
  max?: number | undefined;
4076
4198
  step?: number | undefined;
@@ -4086,6 +4208,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4086
4208
  property: string;
4087
4209
  options?: string[] | undefined;
4088
4210
  prefetch?: boolean | undefined;
4211
+ zoomTo?: boolean | undefined;
4089
4212
  placeholder?: string | undefined;
4090
4213
  })[];
4091
4214
  }>>;
@@ -4235,6 +4358,8 @@ export declare const MapConfigSchema: z.ZodObject<{
4235
4358
  }[];
4236
4359
  displayMode?: "categorical" | "gradient" | "simple" | undefined;
4237
4360
  showLabelsCollapsed?: boolean | undefined;
4361
+ showColorBar?: boolean | undefined;
4362
+ showDisclosureArrow?: boolean | undefined;
4238
4363
  gradientProperty?: string | undefined;
4239
4364
  } | undefined;
4240
4365
  filters?: {
@@ -4250,6 +4375,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4250
4375
  property: string;
4251
4376
  options?: string[] | undefined;
4252
4377
  prefetch?: boolean | undefined;
4378
+ zoomTo?: boolean | undefined;
4253
4379
  placeholder?: string | undefined;
4254
4380
  } | {
4255
4381
  type: "number";
@@ -4258,6 +4384,8 @@ export declare const MapConfigSchema: z.ZodObject<{
4258
4384
  inputMode: "input" | "slider";
4259
4385
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
4260
4386
  placeholder?: string | undefined;
4387
+ operatorLabelStyle?: "symbol" | "word" | undefined;
4388
+ showRange?: boolean | undefined;
4261
4389
  min?: number | undefined;
4262
4390
  max?: number | undefined;
4263
4391
  step?: number | undefined;
@@ -4273,6 +4401,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4273
4401
  property: string;
4274
4402
  options?: string[] | undefined;
4275
4403
  prefetch?: boolean | undefined;
4404
+ zoomTo?: boolean | undefined;
4276
4405
  placeholder?: string | undefined;
4277
4406
  })[];
4278
4407
  } | undefined;
@@ -4416,6 +4545,8 @@ export declare const MapConfigSchema: z.ZodObject<{
4416
4545
  }[];
4417
4546
  displayMode?: "categorical" | "gradient" | "simple" | undefined;
4418
4547
  showLabelsCollapsed?: boolean | undefined;
4548
+ showColorBar?: boolean | undefined;
4549
+ showDisclosureArrow?: boolean | undefined;
4419
4550
  gradientProperty?: string | undefined;
4420
4551
  } | undefined;
4421
4552
  filters?: {
@@ -4431,6 +4562,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4431
4562
  options?: string[] | undefined;
4432
4563
  autocomplete?: boolean | undefined;
4433
4564
  prefetch?: boolean | undefined;
4565
+ zoomTo?: boolean | undefined;
4434
4566
  placeholder?: string | undefined;
4435
4567
  } | {
4436
4568
  type: "number";
@@ -4439,6 +4571,8 @@ export declare const MapConfigSchema: z.ZodObject<{
4439
4571
  placeholder?: string | undefined;
4440
4572
  inputMode?: "input" | "slider" | undefined;
4441
4573
  operator?: "eq" | "gt" | "lt" | "gte" | "lte" | "between" | undefined;
4574
+ operatorLabelStyle?: "symbol" | "word" | undefined;
4575
+ showRange?: boolean | undefined;
4442
4576
  min?: number | undefined;
4443
4577
  max?: number | undefined;
4444
4578
  step?: number | undefined;
@@ -4454,6 +4588,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4454
4588
  property: string;
4455
4589
  options?: string[] | undefined;
4456
4590
  prefetch?: boolean | undefined;
4591
+ zoomTo?: boolean | undefined;
4457
4592
  placeholder?: string | undefined;
4458
4593
  })[];
4459
4594
  } | undefined;
@@ -4597,6 +4732,8 @@ export declare const MapConfigSchema: z.ZodObject<{
4597
4732
  }[];
4598
4733
  displayMode?: "categorical" | "gradient" | "simple" | undefined;
4599
4734
  showLabelsCollapsed?: boolean | undefined;
4735
+ showColorBar?: boolean | undefined;
4736
+ showDisclosureArrow?: boolean | undefined;
4600
4737
  gradientProperty?: string | undefined;
4601
4738
  } | undefined;
4602
4739
  filters?: {
@@ -4612,6 +4749,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4612
4749
  property: string;
4613
4750
  options?: string[] | undefined;
4614
4751
  prefetch?: boolean | undefined;
4752
+ zoomTo?: boolean | undefined;
4615
4753
  placeholder?: string | undefined;
4616
4754
  } | {
4617
4755
  type: "number";
@@ -4620,6 +4758,8 @@ export declare const MapConfigSchema: z.ZodObject<{
4620
4758
  inputMode: "input" | "slider";
4621
4759
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
4622
4760
  placeholder?: string | undefined;
4761
+ operatorLabelStyle?: "symbol" | "word" | undefined;
4762
+ showRange?: boolean | undefined;
4623
4763
  min?: number | undefined;
4624
4764
  max?: number | undefined;
4625
4765
  step?: number | undefined;
@@ -4635,6 +4775,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4635
4775
  property: string;
4636
4776
  options?: string[] | undefined;
4637
4777
  prefetch?: boolean | undefined;
4778
+ zoomTo?: boolean | undefined;
4638
4779
  placeholder?: string | undefined;
4639
4780
  })[];
4640
4781
  } | undefined;
@@ -4679,6 +4820,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4679
4820
  showFeatureTooltip: z.ZodDefault<z.ZodBoolean>;
4680
4821
  showExportButton: z.ZodDefault<z.ZodBoolean>;
4681
4822
  showLegendOpacity: z.ZodDefault<z.ZodBoolean>;
4823
+ showMeasureTool: z.ZodDefault<z.ZodBoolean>;
4682
4824
  }, "strip", z.ZodTypeAny, {
4683
4825
  showLayerPanel: boolean;
4684
4826
  showLegend: boolean;
@@ -4689,6 +4831,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4689
4831
  showFeatureTooltip: boolean;
4690
4832
  showExportButton: boolean;
4691
4833
  showLegendOpacity: boolean;
4834
+ showMeasureTool: boolean;
4692
4835
  }, {
4693
4836
  showLayerPanel?: boolean | undefined;
4694
4837
  showLegend?: boolean | undefined;
@@ -4699,6 +4842,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4699
4842
  showFeatureTooltip?: boolean | undefined;
4700
4843
  showExportButton?: boolean | undefined;
4701
4844
  showLegendOpacity?: boolean | undefined;
4845
+ showMeasureTool?: boolean | undefined;
4702
4846
  }>>;
4703
4847
  initialView: z.ZodObject<{
4704
4848
  latitude: z.ZodNumber;
@@ -4862,6 +5006,8 @@ export declare const MapConfigSchema: z.ZodObject<{
4862
5006
  }[];
4863
5007
  displayMode?: "categorical" | "gradient" | "simple" | undefined;
4864
5008
  showLabelsCollapsed?: boolean | undefined;
5009
+ showColorBar?: boolean | undefined;
5010
+ showDisclosureArrow?: boolean | undefined;
4865
5011
  gradientProperty?: string | undefined;
4866
5012
  } | undefined;
4867
5013
  filters?: {
@@ -4877,6 +5023,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4877
5023
  property: string;
4878
5024
  options?: string[] | undefined;
4879
5025
  prefetch?: boolean | undefined;
5026
+ zoomTo?: boolean | undefined;
4880
5027
  placeholder?: string | undefined;
4881
5028
  } | {
4882
5029
  type: "number";
@@ -4885,6 +5032,8 @@ export declare const MapConfigSchema: z.ZodObject<{
4885
5032
  inputMode: "input" | "slider";
4886
5033
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
4887
5034
  placeholder?: string | undefined;
5035
+ operatorLabelStyle?: "symbol" | "word" | undefined;
5036
+ showRange?: boolean | undefined;
4888
5037
  min?: number | undefined;
4889
5038
  max?: number | undefined;
4890
5039
  step?: number | undefined;
@@ -4900,6 +5049,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4900
5049
  property: string;
4901
5050
  options?: string[] | undefined;
4902
5051
  prefetch?: boolean | undefined;
5052
+ zoomTo?: boolean | undefined;
4903
5053
  placeholder?: string | undefined;
4904
5054
  })[];
4905
5055
  } | undefined;
@@ -4924,6 +5074,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4924
5074
  showFeatureTooltip: boolean;
4925
5075
  showExportButton: boolean;
4926
5076
  showLegendOpacity: boolean;
5077
+ showMeasureTool: boolean;
4927
5078
  };
4928
5079
  initialView: {
4929
5080
  latitude: number;
@@ -4971,6 +5122,7 @@ export declare const MapConfigSchema: z.ZodObject<{
4971
5122
  showFeatureTooltip?: boolean | undefined;
4972
5123
  showExportButton?: boolean | undefined;
4973
5124
  showLegendOpacity?: boolean | undefined;
5125
+ showMeasureTool?: boolean | undefined;
4974
5126
  } | undefined;
4975
5127
  }>;
4976
5128
  /**
@@ -5119,6 +5271,8 @@ export declare function validateMapConfig(config: unknown): {
5119
5271
  }[];
5120
5272
  displayMode?: "categorical" | "gradient" | "simple" | undefined;
5121
5273
  showLabelsCollapsed?: boolean | undefined;
5274
+ showColorBar?: boolean | undefined;
5275
+ showDisclosureArrow?: boolean | undefined;
5122
5276
  gradientProperty?: string | undefined;
5123
5277
  } | undefined;
5124
5278
  filters?: {
@@ -5134,6 +5288,7 @@ export declare function validateMapConfig(config: unknown): {
5134
5288
  property: string;
5135
5289
  options?: string[] | undefined;
5136
5290
  prefetch?: boolean | undefined;
5291
+ zoomTo?: boolean | undefined;
5137
5292
  placeholder?: string | undefined;
5138
5293
  } | {
5139
5294
  type: "number";
@@ -5142,6 +5297,8 @@ export declare function validateMapConfig(config: unknown): {
5142
5297
  inputMode: "input" | "slider";
5143
5298
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
5144
5299
  placeholder?: string | undefined;
5300
+ operatorLabelStyle?: "symbol" | "word" | undefined;
5301
+ showRange?: boolean | undefined;
5145
5302
  min?: number | undefined;
5146
5303
  max?: number | undefined;
5147
5304
  step?: number | undefined;
@@ -5157,6 +5314,7 @@ export declare function validateMapConfig(config: unknown): {
5157
5314
  property: string;
5158
5315
  options?: string[] | undefined;
5159
5316
  prefetch?: boolean | undefined;
5317
+ zoomTo?: boolean | undefined;
5160
5318
  placeholder?: string | undefined;
5161
5319
  })[];
5162
5320
  } | undefined;
@@ -5181,6 +5339,7 @@ export declare function validateMapConfig(config: unknown): {
5181
5339
  showFeatureTooltip: boolean;
5182
5340
  showExportButton: boolean;
5183
5341
  showLegendOpacity: boolean;
5342
+ showMeasureTool: boolean;
5184
5343
  };
5185
5344
  initialView: {
5186
5345
  latitude: number;
@@ -5232,6 +5391,7 @@ export declare function safeValidateMapConfig(config: unknown): z.SafeParseRetur
5232
5391
  showFeatureTooltip?: boolean | undefined;
5233
5392
  showExportButton?: boolean | undefined;
5234
5393
  showLegendOpacity?: boolean | undefined;
5394
+ showMeasureTool?: boolean | undefined;
5235
5395
  } | undefined;
5236
5396
  }, {
5237
5397
  sources: {
@@ -5376,6 +5536,8 @@ export declare function safeValidateMapConfig(config: unknown): z.SafeParseRetur
5376
5536
  }[];
5377
5537
  displayMode?: "categorical" | "gradient" | "simple" | undefined;
5378
5538
  showLabelsCollapsed?: boolean | undefined;
5539
+ showColorBar?: boolean | undefined;
5540
+ showDisclosureArrow?: boolean | undefined;
5379
5541
  gradientProperty?: string | undefined;
5380
5542
  } | undefined;
5381
5543
  filters?: {
@@ -5391,6 +5553,7 @@ export declare function safeValidateMapConfig(config: unknown): z.SafeParseRetur
5391
5553
  property: string;
5392
5554
  options?: string[] | undefined;
5393
5555
  prefetch?: boolean | undefined;
5556
+ zoomTo?: boolean | undefined;
5394
5557
  placeholder?: string | undefined;
5395
5558
  } | {
5396
5559
  type: "number";
@@ -5399,6 +5562,8 @@ export declare function safeValidateMapConfig(config: unknown): z.SafeParseRetur
5399
5562
  inputMode: "input" | "slider";
5400
5563
  operator: "eq" | "gt" | "lt" | "gte" | "lte" | "between";
5401
5564
  placeholder?: string | undefined;
5565
+ operatorLabelStyle?: "symbol" | "word" | undefined;
5566
+ showRange?: boolean | undefined;
5402
5567
  min?: number | undefined;
5403
5568
  max?: number | undefined;
5404
5569
  step?: number | undefined;
@@ -5414,6 +5579,7 @@ export declare function safeValidateMapConfig(config: unknown): z.SafeParseRetur
5414
5579
  property: string;
5415
5580
  options?: string[] | undefined;
5416
5581
  prefetch?: boolean | undefined;
5582
+ zoomTo?: boolean | undefined;
5417
5583
  placeholder?: string | undefined;
5418
5584
  })[];
5419
5585
  } | undefined;
@@ -5438,6 +5604,7 @@ export declare function safeValidateMapConfig(config: unknown): z.SafeParseRetur
5438
5604
  showFeatureTooltip: boolean;
5439
5605
  showExportButton: boolean;
5440
5606
  showLegendOpacity: boolean;
5607
+ showMeasureTool: boolean;
5441
5608
  };
5442
5609
  initialView: {
5443
5610
  latitude: number;