@bizy/core 21.4.2 → 21.4.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.4.2",
3
+ "version": "21.4.4",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^21.0.0",
6
6
  "@angular/common": "^21.0.0",
@@ -134,6 +134,7 @@
134
134
  --bizy-filter-color: var(--bizy-default-color);
135
135
  --bizy-filter-background-color: #fff;
136
136
  --bizy-filter-badge-color: var(--bizy-danger-color);
137
+ --bizy-filter-max-width: 90dvw;
137
138
  --bizy-filter-section-clear-color: var(--bizy-danger-color);
138
139
  --bizy-filter-section-min-width: 8rem;
139
140
 
@@ -239,10 +240,10 @@
239
240
  --bizy-menu-bar-option-min-width: 8rem;
240
241
  --bizy-menu-bar-option-selected-background-color: var(--bizy-light-info-color);
241
242
 
243
+ --bizy-pie-chart-center-label-color: #000;
242
244
  --bizy-pie-chart-tooltip-color: #000;
243
245
  --bizy-pie-chart-tooltip-background-color: #fff;
244
246
  --bizy-pie-chart-tooltip-border-color: #fff;
245
- --bizy-pie-chart-center-label-color: #000;
246
247
 
247
248
  --bizy-popup-background-color: #fff;
248
249
  --bizy-popup-min-width: 20rem;
@@ -3,6 +3,7 @@ import { EventEmitter, PipeTransform, ElementRef, AfterViewInit, OnDestroy, OnIn
3
3
  import { CalendarEvent, CalendarMonthViewDay } from 'angular-calendar';
4
4
  import { Subject, Observable, BehaviorSubject } from 'rxjs';
5
5
  import { UppyFile, SuccessResponse } from '@uppy/core';
6
+ import { CdkConnectedOverlay } from '@angular/cdk/overlay';
6
7
  import { AbstractControl, ValidatorFn } from '@angular/forms';
7
8
  import { Portal, TemplatePortal, ComponentType } from '@angular/cdk/portal';
8
9
  import { DialogRef } from '@angular/cdk/dialog';
@@ -625,6 +626,7 @@ declare class BizyFileUploaderService {
625
626
 
626
627
  declare class BizyFilterComponent {
627
628
  #private;
629
+ overlay: CdkConnectedOverlay;
628
630
  private sections;
629
631
  id: string;
630
632
  disabled: boolean;
@@ -732,6 +734,7 @@ declare class BizyFilterSectionSearchOptionComponent {
732
734
  getId: () => string;
733
735
  getValue: () => string;
734
736
  getNativeElement: () => any;
737
+ onClean(): void;
735
738
  isActivated: () => boolean;
736
739
  static ɵfac: i0.ɵɵFactoryDeclaration<BizyFilterSectionSearchOptionComponent, never>;
737
740
  static ɵcmp: i0.ɵɵComponentDeclaration<BizyFilterSectionSearchOptionComponent, "bizy-filter-section-search-option", never, { "id": { "alias": "id"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "onChange": "onChange"; }, never, ["[slot=prefix]", "[slot=suffix]"], true, never>;