@bizy/core 19.2.4 → 19.4.0

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.
@@ -1,19 +1,15 @@
1
1
  import { BizyDatePickerComponent } from './../date-picker/date-picker.component';
2
- import { AfterViewInit, ElementRef, OnDestroy, QueryList } from '@angular/core';
2
+ import { QueryList } from '@angular/core';
3
3
  import { BizyInputComponent } from '../input/input.component';
4
4
  import { BizySelectComponent } from '../select/select.component';
5
5
  import * as i0 from "@angular/core";
6
- export declare class BizyFormComponent implements AfterViewInit, OnDestroy {
7
- #private;
8
- private elementRef;
6
+ export declare class BizyFormComponent {
9
7
  inputs: QueryList<BizyInputComponent>;
10
8
  selects: QueryList<BizySelectComponent>;
11
9
  datePickers: QueryList<BizyDatePickerComponent>;
12
10
  id: string;
13
11
  customClass: string;
14
- constructor(elementRef: ElementRef);
15
- ngAfterViewInit(): void;
16
- ngOnDestroy(): void;
12
+ onSubmit(event: Event): void;
17
13
  static ɵfac: i0.ɵɵFactoryDeclaration<BizyFormComponent, never>;
18
14
  static ɵcmp: i0.ɵɵComponentDeclaration<BizyFormComponent, "bizy-form", never, { "id": { "alias": "id"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, {}, ["inputs", "selects", "datePickers"], ["*"], true, never>;
19
15
  }
@@ -3,9 +3,10 @@ import * as i0 from "@angular/core";
3
3
  export declare class BizyKeyboardService {
4
4
  #private;
5
5
  private document;
6
- get shiftHolding$(): Observable<boolean>;
6
+ get controlHolding$(): Observable<boolean>;
7
7
  constructor(document: Document);
8
8
  isShiftHolding(): boolean;
9
+ isControlHolding(): boolean;
9
10
  static ɵfac: i0.ɵɵFactoryDeclaration<BizyKeyboardService, never>;
10
11
  static ɵprov: i0.ɵɵInjectableDeclaration<BizyKeyboardService>;
11
12
  }
@@ -7,6 +7,7 @@ export declare class BizyRouterService {
7
7
  transitionsEnd$: Observable<ActivatedRouteSnapshot>;
8
8
  transitionsStart$: Observable<ActivatedRouteSnapshot>;
9
9
  popStateEvent$: Observable<PopStateEvent>;
10
+ routeChange$: Observable<void>;
10
11
  constructor(router: Router);
11
12
  getURL(): string;
12
13
  getBackPath(): string;
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@bizy/core",
3
- "version": "19.2.4",
3
+ "version": "19.4.0",
4
4
  "peerDependencies": {
5
- "@angular/animations": "19.2.1",
6
- "@angular/cdk": "19.2.2",
7
- "@angular/common": "19.2.1",
8
- "@angular/core": "19.2.1",
9
- "@angular/forms": "19.2.1",
10
- "@angular/platform-browser": "19.2.1",
11
- "@angular/platform-browser-dynamic": "19.2.1",
12
- "@angular/router": "19.2.1",
5
+ "@angular/animations": "19.2.3",
6
+ "@angular/cdk": "19.2.6",
7
+ "@angular/common": "19.2.3",
8
+ "@angular/core": "19.2.3",
9
+ "@angular/forms": "19.2.3",
10
+ "@angular/platform-browser": "19.2.3",
11
+ "@angular/platform-browser-dynamic": "19.2.3",
12
+ "@angular/router": "19.2.3",
13
13
  "@ngx-translate/core": "16.0.4",
14
14
  "@uppy/core": "3.13.1",
15
15
  "@uppy/dashboard": "3.8.3",
@@ -114,7 +114,7 @@
114
114
  --bizy-list-flex-direction: column;
115
115
  --bizy-list-column-gap: 0.5rem;
116
116
  --bizy-list-row-gap: 0.5rem;
117
- --bizy-list-justify-content: 'flex-start';
117
+ --bizy-list-justify-content: flex-start;
118
118
  --bizy-list-align-items: flex-start;
119
119
 
120
120
  --bizy-loading-bright-color: #fffa;