valtech-components 4.0.46 → 4.0.47
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/esm2022/lib/components/organisms/toolbar/toolbar.component.mjs +15 -3
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +15 -3
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/organisms/toolbar/toolbar.component.d.ts +3 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -22,6 +22,8 @@ export declare class ToolbarComponent implements OnInit {
|
|
|
22
22
|
props: ToolbarMetadata;
|
|
23
23
|
private _lspInput;
|
|
24
24
|
private _lspCache;
|
|
25
|
+
private _fssInput;
|
|
26
|
+
private _fssCache;
|
|
25
27
|
/**
|
|
26
28
|
* Evento emitido al hacer click en una acción o botón de la barra.
|
|
27
29
|
*/
|
|
@@ -55,6 +57,7 @@ export declare class ToolbarComponent implements OnInit {
|
|
|
55
57
|
/**
|
|
56
58
|
* Language selector props — memoized to avoid new object reference on every CD cycle.
|
|
57
59
|
*/
|
|
60
|
+
get fontSizeSelectorProps(): any;
|
|
58
61
|
get languageSelectorProps(): any;
|
|
59
62
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarComponent, never>;
|
|
60
63
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarComponent, "val-toolbar", never, { "props": { "alias": "props"; "required": false; }; }, { "onClick": "onClick"; }, never, ["[toolbar-bottom]"], true, never>;
|
package/lib/version.d.ts
CHANGED