sass-cms-template-common 0.0.19 → 0.0.20
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 +19 -0
- package/dist/index.js +304 -274
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3312,6 +3312,7 @@ export declare const enMessages: {
|
|
|
3312
3312
|
readonly SECTIONS: "Sections";
|
|
3313
3313
|
readonly TWITTERS: "Twitter Feeds";
|
|
3314
3314
|
readonly USERS: "Users";
|
|
3315
|
+
readonly COPILOT: "CoPilot";
|
|
3315
3316
|
readonly ZONES: "Zones";
|
|
3316
3317
|
readonly IA: "IA";
|
|
3317
3318
|
};
|
|
@@ -3538,6 +3539,7 @@ export declare const esMessages: {
|
|
|
3538
3539
|
SECTIONS: string;
|
|
3539
3540
|
TWITTERS: string;
|
|
3540
3541
|
USERS: string;
|
|
3542
|
+
COPILOT: string;
|
|
3541
3543
|
ZONES: string;
|
|
3542
3544
|
IA: string;
|
|
3543
3545
|
};
|
|
@@ -6274,6 +6276,7 @@ export declare const ptMessages: {
|
|
|
6274
6276
|
SECTIONS: string;
|
|
6275
6277
|
TWITTERS: string;
|
|
6276
6278
|
USERS: string;
|
|
6279
|
+
COPILOT: string;
|
|
6277
6280
|
ZONES: string;
|
|
6278
6281
|
IA: string;
|
|
6279
6282
|
};
|
|
@@ -7154,6 +7157,22 @@ export declare interface SubscriptionsGetResponse extends CmsResponse {
|
|
|
7154
7157
|
|
|
7155
7158
|
export declare const SUPPORTED_LOCALES: readonly ["es", "en", "pt"];
|
|
7156
7159
|
|
|
7160
|
+
/**
|
|
7161
|
+
* Superficie estándar de los menús desplegables (dropdowns, flyouts del menú
|
|
7162
|
+
* lateral, kebab de acciones de fila, "Mi Perfil", etc.). Unifica **borde +
|
|
7163
|
+
* radio + sombra** para que todos mantengan la misma estética (NAA-4799: algunos
|
|
7164
|
+
* papers tenían solo sombra, sin el borde definido, y se perdían contra el
|
|
7165
|
+
* fondo, que comparte el mismo gris).
|
|
7166
|
+
*
|
|
7167
|
+
* - Borde `divider` (= `outlineVariant`, #C4C6CF en claro / #3A3E46 en oscuro):
|
|
7168
|
+
* el mismo que ya usaba el flyout del menú lateral.
|
|
7169
|
+
* - Radio `radii.flyout` (12px) y sombra `shadows.flyout` (dos capas suaves).
|
|
7170
|
+
*
|
|
7171
|
+
* Cada paper agrega aparte lo suyo (ancho mínimo, padding, `overflow`, margen de
|
|
7172
|
+
* separación con el disparador). Se aplica con `...(sxMenuSurface as object)`.
|
|
7173
|
+
*/
|
|
7174
|
+
export declare const sxMenuSurface: SxProps<Theme>;
|
|
7175
|
+
|
|
7157
7176
|
/** Botón pill completo y autónomo. Reutilizable en cualquier CTA de la lib. */
|
|
7158
7177
|
export declare function sxPillButton(variant?: CmsButtonVariant): SxProps<Theme>;
|
|
7159
7178
|
|