valtech-components 2.0.925 → 2.0.927
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/banner/banner.component.mjs +6 -16
- package/esm2022/lib/components/organisms/toolbar/toolbar.component.mjs +11 -14
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +10 -23
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/organisms/banner/banner.component.d.ts +2 -5
- package/lib/components/organisms/toolbar/toolbar.component.d.ts +2 -6
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,14 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { BannerMetadata } from './types';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class BannerComponent implements OnInit
|
|
5
|
-
private cdr;
|
|
4
|
+
export declare class BannerComponent implements OnInit {
|
|
6
5
|
props: BannerMetadata;
|
|
7
6
|
onClick: EventEmitter<string>;
|
|
8
7
|
onClose: EventEmitter<any>;
|
|
9
|
-
constructor(cdr: ChangeDetectorRef);
|
|
10
8
|
ngOnInit(): void;
|
|
11
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
12
9
|
clickHandler(token?: string): void;
|
|
13
10
|
closeHandler(): void;
|
|
14
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<BannerComponent, never>;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { NavController } from '@ionic/angular';
|
|
3
2
|
import { IconService } from '../../../services/icons.service';
|
|
4
3
|
import { ToolbarAction, ToolbarActionType } from '../../types';
|
|
5
4
|
import { ToolbarMetadata } from './types';
|
|
@@ -17,7 +16,6 @@ import * as i0 from "@angular/core";
|
|
|
17
16
|
* @output onClick - Emite el token de la acción clicada.
|
|
18
17
|
*/
|
|
19
18
|
export declare class ToolbarComponent implements OnInit {
|
|
20
|
-
private navCtrl;
|
|
21
19
|
/**
|
|
22
20
|
* Metadatos de la barra de herramientas.
|
|
23
21
|
*/
|
|
@@ -27,16 +25,14 @@ export declare class ToolbarComponent implements OnInit {
|
|
|
27
25
|
*/
|
|
28
26
|
onClick: EventEmitter<string>;
|
|
29
27
|
actionTypes: typeof ToolbarActionType;
|
|
30
|
-
|
|
28
|
+
private nav;
|
|
29
|
+
constructor(icon: IconService);
|
|
31
30
|
ngOnInit(): void;
|
|
32
31
|
/**
|
|
33
32
|
* Emite el token de la acción clicada.
|
|
34
33
|
* @param token Token de la acción
|
|
35
34
|
*/
|
|
36
35
|
clickHandler(token?: string): void;
|
|
37
|
-
/**
|
|
38
|
-
* Navega hacia atrás usando NavController.
|
|
39
|
-
*/
|
|
40
36
|
goBack(): void;
|
|
41
37
|
/**
|
|
42
38
|
* Determina si hay acciones a la derecha.
|
package/lib/version.d.ts
CHANGED