sass-cms-template-common 0.0.8 → 0.0.10
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/dist/index.d.ts +51 -5
- package/dist/index.js +1801 -1453
- package/dist/index.js.map +1 -1
- package/dist/server.d.ts +4 -0
- package/package.json +1 -1
package/dist/server.d.ts
CHANGED
|
@@ -2389,6 +2389,10 @@ export declare type NavLinkItem = {
|
|
|
2389
2389
|
badge?: string;
|
|
2390
2390
|
children?: NavLinkItem[];
|
|
2391
2391
|
defaultOpen?: boolean;
|
|
2392
|
+
/** Acento visual (p. ej. destacar un ítem generado/asistido por IA). */
|
|
2393
|
+
accent?: 'ai';
|
|
2394
|
+
/** Si el href apunta al admin legacy (JSP/Angular), se prefija con `legacyBaseUrl`. */
|
|
2395
|
+
legacy?: boolean;
|
|
2392
2396
|
};
|
|
2393
2397
|
|
|
2394
2398
|
/** Cuerpo de la respuesta de POST /news/edit/adminNewsConfiguration. */
|