valtech-components 2.0.817 → 2.0.819
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/molecules/refresher/refresher.component.mjs +7 -3
- package/esm2022/lib/components/templates/page-wrapper/page-wrapper.component.mjs +24 -12
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +24 -11
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/templates/page-wrapper/page-wrapper.component.d.ts +3 -4
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { ViewWillEnter, ViewWillLeave } from '@ionic/angular/standalone';
|
|
3
3
|
import { ContainerSize } from '../../atoms/container/types';
|
|
4
|
-
import { RefreshEvent } from '../../molecules/refresher/types';
|
|
5
4
|
import { PageRefreshService } from '../../../services/page-refresh/page-refresh.service';
|
|
6
5
|
import { PageWrapperMetadata } from './types';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
@@ -34,10 +33,10 @@ export declare class PageWrapperComponent implements ViewWillEnter, ViewWillLeav
|
|
|
34
33
|
/** Bus del pull-to-refresh — la página activa registra su handler aquí. */
|
|
35
34
|
protected pageRefresh: PageRefreshService;
|
|
36
35
|
/**
|
|
37
|
-
* Handler del gesto pull-to-refresh. Delega en
|
|
38
|
-
* página activa
|
|
36
|
+
* Handler del gesto pull-to-refresh (`ion-refresher` ionRefresh). Delega en
|
|
37
|
+
* el handler que registró la página activa y cierra el spinner al terminar.
|
|
39
38
|
*/
|
|
40
|
-
onPageRefresh(event:
|
|
39
|
+
onPageRefresh(event: Event): Promise<void>;
|
|
41
40
|
/**
|
|
42
41
|
* Page wrapper configuration.
|
|
43
42
|
* Signal-based input for full reactivity with computed().
|
package/lib/version.d.ts
CHANGED