@wavemaker/app-ng-runtime 11.9.0-next.27456 → 11.9.0-next.27462

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.
Files changed (46) hide show
  1. app-ng-runtime/build-task/bundles/index.umd.js +4 -4
  2. app-ng-runtime/build-task/esm2022/basic/default/label/label.build.mjs +2 -2
  3. app-ng-runtime/build-task/esm2022/basic/default/picture/picture.build.mjs +2 -2
  4. app-ng-runtime/build-task/esm2022/containers/tile/tile.build.mjs +2 -2
  5. app-ng-runtime/build-task/esm2022/data/form/form-field/form-field.build.mjs +2 -2
  6. app-ng-runtime/build-task/fesm2022/index.mjs +4 -4
  7. app-ng-runtime/build-task/fesm2022/index.mjs.map +1 -1
  8. app-ng-runtime/components/advanced/carousel/bundles/index.umd.js +1 -1
  9. app-ng-runtime/components/advanced/carousel/esm2022/carousel.animator.mjs +2 -2
  10. app-ng-runtime/components/advanced/carousel/fesm2022/index.mjs +1 -1
  11. app-ng-runtime/components/advanced/carousel/fesm2022/index.mjs.map +1 -1
  12. app-ng-runtime/components/basic/default/bundles/index.umd.js +1 -1
  13. app-ng-runtime/components/basic/default/esm2022/label/label.props.mjs +1 -2
  14. app-ng-runtime/components/basic/default/esm2022/picture/picture.directive.mjs +2 -2
  15. app-ng-runtime/components/basic/default/esm2022/picture/picture.props.mjs +2 -1
  16. app-ng-runtime/components/basic/default/fesm2022/index.mjs +1 -1
  17. app-ng-runtime/components/basic/default/fesm2022/index.mjs.map +1 -1
  18. app-ng-runtime/components/basic/default/picture/picture.directive.d.ts +2 -1
  19. app-ng-runtime/components/containers/accordion/bundles/index.umd.js +3 -3
  20. app-ng-runtime/components/containers/accordion/esm2022/accordion-pane/accordion-pane.component.mjs +4 -4
  21. app-ng-runtime/components/containers/accordion/fesm2022/index.mjs +3 -3
  22. app-ng-runtime/components/containers/accordion/fesm2022/index.mjs.map +1 -1
  23. app-ng-runtime/components/input/default/bundles/index.umd.js +25 -19
  24. app-ng-runtime/components/input/default/esm2022/checkboxset/checkboxset.component.mjs +14 -9
  25. app-ng-runtime/components/input/default/esm2022/radioset/radioset.component.mjs +13 -12
  26. app-ng-runtime/components/input/default/fesm2022/index.mjs +25 -19
  27. app-ng-runtime/components/input/default/fesm2022/index.mjs.map +1 -1
  28. app-ng-runtime/components/navigation/menu/bundles/index.umd.js +5 -4
  29. app-ng-runtime/components/navigation/menu/esm2022/menu.component.mjs +6 -5
  30. app-ng-runtime/components/navigation/menu/fesm2022/index.mjs +5 -4
  31. app-ng-runtime/components/navigation/menu/fesm2022/index.mjs.map +1 -1
  32. app-ng-runtime/components/navigation/popover/bundles/index.umd.js +2 -2
  33. app-ng-runtime/components/navigation/popover/esm2022/popover.component.mjs +3 -3
  34. app-ng-runtime/components/navigation/popover/fesm2022/index.mjs +2 -2
  35. app-ng-runtime/components/navigation/popover/fesm2022/index.mjs.map +1 -1
  36. app-ng-runtime/components/navigation/popover/popover.component.d.ts +2 -0
  37. app-ng-runtime/core/bundles/index.umd.js +5 -5
  38. app-ng-runtime/core/esm2022/utils/build-utils.mjs +6 -6
  39. app-ng-runtime/core/fesm2022/index.mjs +5 -5
  40. app-ng-runtime/core/fesm2022/index.mjs.map +1 -1
  41. app-ng-runtime/package.json +1 -1
  42. app-ng-runtime/runtime/base/bundles/index.umd.js +3 -2
  43. app-ng-runtime/runtime/base/esm2022/guards/can-deactivate-page.guard.mjs +4 -3
  44. app-ng-runtime/runtime/base/fesm2022/index.mjs +3 -2
  45. app-ng-runtime/runtime/base/fesm2022/index.mjs.map +1 -1
  46. app-ng-runtime/runtime/base/guards/can-deactivate-page.guard.d.ts +2 -1
@@ -1,10 +1,11 @@
1
1
  import { Observable } from 'rxjs';
2
+ import { ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
2
3
  import * as i0 from "@angular/core";
3
4
  export interface CanComponentDeactivate {
4
5
  canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
5
6
  }
6
7
  export declare class CanDeactivatePageGuard {
7
- canDeactivate(component: CanComponentDeactivate): any;
8
+ canDeactivate(component: CanComponentDeactivate, currentRoute: ActivatedRouteSnapshot, currentState: RouterStateSnapshot, nextState?: RouterStateSnapshot): any;
8
9
  static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivatePageGuard, never>;
9
10
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivatePageGuard>;
10
11
  }