@validationcloud/fractal-ui 1.84.0 → 1.86.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.
package/README.md CHANGED
@@ -45,7 +45,7 @@ To add another generated map to this package:
45
45
 
46
46
  ## Development
47
47
 
48
- Requires Node.js 22.14.0+ and pnpm.
48
+ Requires Node.js 24+ and pnpm.
49
49
 
50
50
  ```sh
51
51
  pnpm install
@@ -3,7 +3,7 @@ type EChartsModule = {
3
3
  registerMap: typeof registerMap;
4
4
  };
5
5
  /** All available map names. This is the single source of truth for map registration. */
6
- export declare const MAP_NAMES: readonly ["world-countries", "world-continents", "world-regions", "us-states", "europe-countries", "americas-countries", "asia-countries", "africa-countries"];
6
+ declare const MAP_NAMES: readonly ["world-countries", "world-continents", "world-regions", "us-states", "europe-countries", "americas-countries", "asia-countries", "africa-countries"];
7
7
  export type MapName = (typeof MAP_NAMES)[number];
8
8
  export declare function isMapName(value: string): value is MapName;
9
9
  /**
@@ -54,7 +54,6 @@ function l(t, e, r) {
54
54
  s.has(e) || (t.registerMap(e, r), s.add(e));
55
55
  }
56
56
  export {
57
- a as MAP_NAMES,
58
57
  d as getRequiredMapName,
59
58
  f as isMapName,
60
59
  g as registerMapAsync,