@20minutes/hela 2.18.3 → 2.18.4

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.
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 25 Mar 2026 14:49:39 GMT
3
+ * Generated on Thu, 26 Mar 2026 09:34:40 GMT
4
4
  */
5
5
 
6
6
  $token-variables: (
@@ -1,5 +1,5 @@
1
1
  import { BoxProps } from '../../..';
2
- import { PoliticalPartyType } from '../../../../types';
2
+ import { LayoutType, PoliticalPartyType } from '../../../../types';
3
3
  interface DepartmentsPath {
4
4
  path: string;
5
5
  }
@@ -20,11 +20,12 @@ interface TownResultProps {
20
20
  politicalParty: PoliticalPartyType;
21
21
  }
22
22
  export interface MapTownsByDepartmentsProps extends BoxProps {
23
+ layout: LayoutType;
23
24
  resultsPerTown: TownResultProps[];
24
25
  departmentsPaths?: Record<string, DepartmentsPath>;
25
26
  dromsConfig?: Record<string, DromData>;
26
27
  townsSprite?: string;
27
28
  className?: string;
28
29
  }
29
- export declare const MapTownsByDepartments: ({ resultsPerTown, departmentsPaths, dromsConfig, townsSprite, className, ...boxProps }: MapTownsByDepartmentsProps) => import("react/jsx-runtime").JSX.Element;
30
+ export declare const MapTownsByDepartments: ({ layout, resultsPerTown, departmentsPaths, dromsConfig, townsSprite, className, ...boxProps }: MapTownsByDepartmentsProps) => import("react/jsx-runtime").JSX.Element;
30
31
  export {};
@@ -0,0 +1,2 @@
1
+ export declare const slugifyDepartmentName: (departmentName: string) => string;
2
+ export declare const getDepartmentUrl: (departmentName: string) => string;