sass-template-common 0.6.15 → 0.6.16

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.
@@ -1385,6 +1385,8 @@ export declare class MainComponentServices {
1385
1385
 
1386
1386
  export declare const Marfeel: () => "" | JSX.Element | undefined;
1387
1387
 
1388
+ export declare function maskEmail(email: string): string;
1389
+
1388
1390
  export declare interface MenuResponse {
1389
1391
  description: string;
1390
1392
  alt: string;
@@ -1796,6 +1798,14 @@ export declare type Params = {
1796
1798
 
1797
1799
  export declare const parseTags: (keywords: any) => string;
1798
1800
 
1801
+ export declare type passwordRule = {
1802
+ label: string;
1803
+ test: (pw: string) => boolean;
1804
+ };
1805
+
1806
+ /** Reglas de contraseña con labels por defecto (exportadas para LoginForm) */
1807
+ export declare const passwordRules: passwordRule[];
1808
+
1799
1809
  export declare const pathnameSplit: (pathname: string) => {
1800
1810
  slug: string;
1801
1811
  path: string;