@bizy/core 21.8.2 → 21.8.4

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.2",
3
+ "version": "21.8.4",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^21.0.0",
6
6
  "@angular/common": "^21.0.0",
@@ -425,10 +425,10 @@
425
425
  --bizy-tabs-arrow-button-color: var(--bizy-default-color);
426
426
  --bizy-tabs-arrow-button-background-color: #fff;
427
427
 
428
- --bizy-tag-background-color: var(--bizy-light-default-color);
429
- --bizy-tag-color: #d4d4d4;
430
- --bizy-tag-default-background-color: var(--bizy-light-default-color);
431
- --bizy-tag-default-color: #d4d4d4;
428
+ --bizy-tag-background-color: #d4d4d4;
429
+ --bizy-tag-color: var(--bizy-dark-default-color);
430
+ --bizy-tag-default-background-color: #d4d4d4;
431
+ --bizy-tag-default-color: var(--bizy-dark-default-color);
432
432
  --bizy-tag-success-background-color: #c7e0c8;
433
433
  --bizy-tag-success-color: var(--bizy-dark-success-color);
434
434
  --bizy-tag-info-background-color: #c9d9e0;
@@ -2629,14 +2629,14 @@ declare class BizyLoadingDirective {
2629
2629
 
2630
2630
  declare class BizyLongPressDirective implements OnDestroy {
2631
2631
  #private;
2632
- threshold: number;
2632
+ bizyLongPressDelay: number;
2633
2633
  bizyLongPress: EventEmitter<MouseEvent | TouchEvent>;
2634
2634
  onPressStart(event: MouseEvent | TouchEvent): void;
2635
2635
  onPressEnd(): void;
2636
2636
  private clearTimeout;
2637
2637
  ngOnDestroy(): void;
2638
2638
  static ɵfac: i0.ɵɵFactoryDeclaration<BizyLongPressDirective, never>;
2639
- static ɵdir: i0.ɵɵDirectiveDeclaration<BizyLongPressDirective, "[bizyLongPress]", never, { "threshold": { "alias": "threshold"; "required": false; }; }, { "bizyLongPress": "bizyLongPress"; }, never, never, true, never>;
2639
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BizyLongPressDirective, "[bizyLongPress]", never, { "bizyLongPressDelay": { "alias": "bizyLongPressDelay"; "required": false; }; }, { "bizyLongPress": "bizyLongPress"; }, never, never, true, never>;
2640
2640
  }
2641
2641
 
2642
2642
  declare class BizyOnlyNumbersDirective {