sass-template-common 0.9.184 → 0.9.186-debugAudit.1

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.
@@ -104,7 +104,15 @@ export declare interface AutorInfo {
104
104
  USER_PAGE_TWITTER: string;
105
105
  USER_PAGE_INSTAGRAM: string;
106
106
  USER_PAGE_LINKEDIN: string;
107
+ USER_PAGE_TIKTOK: string;
108
+ USER_PAGE_YOUTUBE: string;
109
+ USER_PAGE_PINTEREST: string;
110
+ USER_FACEBOOK_FAN_PAGE: string;
107
111
  USER_POSITION: string;
112
+ USER_POSITION_EN: string;
113
+ USER_DESCRIPCION: string;
114
+ USER_DESCRIPCION_EN: string;
115
+ USER_MOSTRAR_MAIL: string;
108
116
  };
109
117
  }
110
118
 
@@ -1388,6 +1396,14 @@ export declare type LibraryConfig = {
1388
1396
  SHOW_DEV_RANKING?: boolean;
1389
1397
  SHOW_GOOGLE_PROFILE?: boolean;
1390
1398
  MORE_NEWS_SSR?: boolean;
1399
+ /**
1400
+ * Activa el auditor de HTML client-side inline (panel de debug en Shadow DOM).
1401
+ * Se setea una vez en `initLibrary` y se propaga a todas las páginas vía GenerateHead.
1402
+ * Default `false`.
1403
+ */
1404
+ HTML_AUDIT?: boolean;
1405
+ /** nonce opcional para CSP estricta del <script> inline del auditor. */
1406
+ HTML_AUDIT_NONCE?: string;
1391
1407
  NEWS_JOURNALIST_COMPONENT?: 'op1' | 'op2' | 'op3';
1392
1408
  COMPONENTS?: {
1393
1409
  PlayIcon?: ComponentType<SVGProps<SVGSVGElement>>;