@bizy/core 21.8.4 → 21.8.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizy/core",
3
- "version": "21.8.4",
3
+ "version": "21.8.6",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^21.0.0",
6
6
  "@angular/common": "^21.0.0",
@@ -109,7 +109,10 @@
109
109
  --bizy-card-header-column-gap: 0.5rem;
110
110
  --bizy-card-content-align-items: center;
111
111
  --bizy-card-content-background-color: transparent;
112
+ --bizy-card-content-gap: 0.5rem;
112
113
  --bizy-card-content-column-gap: 0.5rem;
114
+ --bizy-card-content-row-gap: 0.5rem;
115
+ --bizy-card-content-flex-wrap: wrap;
113
116
  --bizy-card-footer-align-items: center;
114
117
  --bizy-card-footer-background-color: transparent;
115
118
  --bizy-card-footer-column-gap: 0.5rem;
@@ -2627,16 +2627,14 @@ declare class BizyLoadingDirective {
2627
2627
  static ɵdir: i0.ɵɵDirectiveDeclaration<BizyLoadingDirective, "[bizyLoading]", never, { "bizyLoading": { "alias": "bizyLoading"; "required": false; }; "bizyLoadingType": { "alias": "bizyLoadingType"; "required": false; }; }, {}, never, never, true, never>;
2628
2628
  }
2629
2629
 
2630
- declare class BizyLongPressDirective implements OnDestroy {
2630
+ declare class BizyLongPressDirective implements AfterViewInit, OnDestroy {
2631
2631
  #private;
2632
- bizyLongPressDelay: number;
2633
- bizyLongPress: EventEmitter<MouseEvent | TouchEvent>;
2634
- onPressStart(event: MouseEvent | TouchEvent): void;
2635
- onPressEnd(): void;
2636
- private clearTimeout;
2632
+ bizyLongPressThreshold: number;
2633
+ bizyLongPress: EventEmitter<void>;
2634
+ ngAfterViewInit(): void;
2637
2635
  ngOnDestroy(): void;
2638
2636
  static ɵfac: i0.ɵɵFactoryDeclaration<BizyLongPressDirective, never>;
2639
- static ɵdir: i0.ɵɵDirectiveDeclaration<BizyLongPressDirective, "[bizyLongPress]", never, { "bizyLongPressDelay": { "alias": "bizyLongPressDelay"; "required": false; }; }, { "bizyLongPress": "bizyLongPress"; }, never, never, true, never>;
2637
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BizyLongPressDirective, "[bizyLongPress]", never, { "bizyLongPressThreshold": { "alias": "bizyLongPressThreshold"; "required": false; }; }, { "bizyLongPress": "bizyLongPress"; }, never, never, true, never>;
2640
2638
  }
2641
2639
 
2642
2640
  declare class BizyOnlyNumbersDirective {