@bizy/core 21.8.8 → 21.9.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizy/core",
3
- "version": "21.8.8",
3
+ "version": "21.9.0",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^21.0.0",
6
6
  "@angular/common": "^21.0.0",
@@ -10,10 +10,13 @@
10
10
  "@angular/platform-browser-dynamic": "^21.0.0",
11
11
  "@angular/router": "^21.0.0",
12
12
  "@ngx-translate/core": "17.0.0",
13
- "@uppy/core": "3.13.1",
14
- "@uppy/dashboard": "3.8.3",
15
- "@uppy/locales": "3.5.3",
16
- "@uppy/xhr-upload": "3.6.7",
13
+ "@uppy/core": "5.2.0",
14
+ "@uppy/dashboard": "5.1.1",
15
+ "@uppy/locales": "5.1.1",
16
+ "@uppy/provider-views": "5.2.2",
17
+ "@uppy/thumbnail-generator": "5.1.0",
18
+ "@uppy/utils": "7.2.0",
19
+ "@uppy/xhr-upload": "5.2.0",
17
20
  "angular-calendar": "0.32.0",
18
21
  "angular-draggable-droppable": "9.0.1",
19
22
  "angular-resizable-element": "8.0.0",
@@ -1,2 +1,2 @@
1
1
  @import 'flatpickr/dist/flatpickr.min.css';
2
- @import 'flatpickr/dist/plugins/confirmDate/confirmDate.css';
2
+ @import 'flatpickr/dist/plugins/monthSelect/style.css';
@@ -1,2 +1,2 @@
1
- @import "@uppy/core/dist/style.min.css";
2
- @import "@uppy/dashboard/dist/style.min.css";
1
+ @import "@uppy/core/css/style.min.css";
2
+ @import "@uppy/dashboard/css/style.min.css";
@@ -112,7 +112,7 @@
112
112
  --bizy-card-content-gap: 0.5rem;
113
113
  --bizy-card-content-column-gap: 0.5rem;
114
114
  --bizy-card-content-row-gap: 0.5rem;
115
- --bizy-card-content-flex-wrap: wrap;
115
+ --bizy-card-content-flex-wrap: nowrap;
116
116
  --bizy-card-footer-align-items: center;
117
117
  --bizy-card-footer-background-color: transparent;
118
118
  --bizy-card-footer-column-gap: 0.5rem;
@@ -214,6 +214,7 @@
214
214
  --bizy-input-option-selected-background-color: var(--bizy-info-color);
215
215
  --bizy-input-font-size: 1rem;
216
216
  --bizy-input-placeholder-color: #999;
217
+ --bizy-input-resize: none;
217
218
 
218
219
  --bizy-list-height: fit-content;
219
220
  --bizy-list-width: 100%;
@@ -261,10 +262,13 @@
261
262
  --bizy-pie-chart-tooltip-border-color: #fff;
262
263
 
263
264
  --bizy-popup-background-color: #fff;
264
- --bizy-popup-min-width: 20rem;
265
+ --bizy-popup-min-width: 10rem;
265
266
  --bizy-popup-width: fit-content;
266
267
  --bizy-popup-max-width: 90dvw;
267
- --bizy-popup-padding: 0.5rem;
268
+ --bizy-popup-min-height: 10rem;
269
+ --bizy-popup-height: fit-content;
270
+ --bizy-popup-max-height: 90dvh;
271
+ --bizy-popup-padding: 0;
268
272
  --bizy-popup-border-radius: 0.3rem;
269
273
  --bizy-popup-drag-button-color: var(--bizy-default-color);
270
274
  --bizy-popup-drag-button-border: 0.1rem solid #ccc;
@@ -274,10 +278,14 @@
274
278
  --bizy-popup-close-button-color: var(--bizy-default-color);
275
279
  --bizy-popup-close-button-hover-color: var(--bizy-danger-color);
276
280
 
277
- --bizy-popup-full-screen-height: auto;
281
+ --bizy-popup-full-screen-min-width: 100dvw;
282
+ --bizy-popup-full-screen-width: auto;
283
+ --bizy-popup-full-screen-max-width: 100dvw;
284
+ --bizy-popup-full-screen-min-height: 20rem;
285
+ --bizy-popup-full-screen-height: fit-content;
286
+ --bizy-popup-full-screen-max-height: 90dvh;
278
287
  --bizy-popup-full-screen-background-color: #fff;
279
- --bizy-popup-full-screen-padding: 0.5rem;
280
- --bizy-popup-full-screen-border-radius: 1rem;
288
+ --bizy-popup-full-screen-padding: 2.2rem 0 0 0;
281
289
  --bizy-popup-full-screen-close-button-border: transparent;
282
290
  --bizy-popup-full-screen-close-button-background-color: transparent;
283
291
  --bizy-popup-full-screen-close-button-color: var(--bizy-default-color);
@@ -438,7 +446,7 @@
438
446
  --bizy-tag-info-color: var(--bizy-dark-info-color);
439
447
  --bizy-tag-warning-background-color: #fbd9b5;
440
448
  --bizy-tag-warning-color: var(--bizy-dark-warning-color);
441
- --bizy-tag-danger-background-color: #f3c5c5;
449
+ --bizy-tag-danger-background-color: #eda9a9;
442
450
  --bizy-tag-danger-color: var(--bizy-dark-danger-color);
443
451
  --bizy-tag-cursor: pointer;
444
452
  --bizy-tag-height: auto;
@@ -3,7 +3,7 @@ import { EventEmitter, PipeTransform, ElementRef, AfterViewInit, OnDestroy, OnCh
3
3
  import * as rxjs from 'rxjs';
4
4
  import { Observable, Subject, BehaviorSubject } from 'rxjs';
5
5
  import { CalendarEvent, CalendarMonthViewDay } from 'angular-calendar';
6
- import { UppyFile, SuccessResponse } from '@uppy/core';
6
+ import { UppyFile } from '@uppy/core';
7
7
  import { CdkConnectedOverlay } from '@angular/cdk/overlay';
8
8
  import { AbstractControl, ValidatorFn } from '@angular/forms';
9
9
  import { Portal, TemplatePortal, ComponentType } from '@angular/cdk/portal';
@@ -573,6 +573,36 @@ declare class BizyDonutChartModule {
573
573
  static ɵinj: i0.ɵɵInjectorDeclaration<BizyDonutChartModule>;
574
574
  }
575
575
 
576
+ declare enum BIZY_FILE_UPLOADER_MODE {
577
+ UPLOAD = "UPLOAD",
578
+ ATTACH = "ATTACH"
579
+ }
580
+ type BizyFileUploaderAttachment = {
581
+ id: string;
582
+ file: Blob | File;
583
+ meta: BizyFileUploaderFile['meta'];
584
+ name: string;
585
+ size: number | null;
586
+ type: string;
587
+ };
588
+ type BizyFileUploaderLoadFile = {
589
+ id: string;
590
+ file: File;
591
+ };
592
+ type BizyFileUploaderInputFile = File | BizyFileUploaderLoadFile;
593
+ type BizyFileUploaderMeta = {
594
+ referenceId?: string;
595
+ relativePath?: string;
596
+ };
597
+ type BizyFileUploaderResponseBody = {
598
+ [key: string]: unknown;
599
+ fileId: string;
600
+ response?: XMLHttpRequest;
601
+ };
602
+ type BizyFileUploaderFile = UppyFile<BizyFileUploaderMeta, BizyFileUploaderResponseBody>;
603
+ type BizyFileUploaderSuccessResponse = NonNullable<BizyFileUploaderFile['response']>;
604
+ type BizyFileUploaderErrorResponse = Omit<BizyFileUploaderSuccessResponse, 'uploadURL'>;
605
+
576
606
  declare class BizyFileUploaderComponent implements AfterViewInit, OnDestroy {
577
607
  #private;
578
608
  dragDropAreaWidth: string;
@@ -584,19 +614,19 @@ declare class BizyFileUploaderComponent implements AfterViewInit, OnDestroy {
584
614
  maxTotalFileSize: number | null;
585
615
  maxNumberOfFiles: number | null;
586
616
  minNumberOfFiles: number | null;
587
- allowedFileTypes: string[];
617
+ allowedFileTypes: Array<string> | string | null;
588
618
  hideUploadButton: boolean;
589
619
  hidePauseResumeButton: boolean;
590
620
  hideCancelButton: boolean;
591
621
  disableLocalFiles: boolean;
592
- load: Subject<{
593
- id: string;
594
- file: File;
595
- }>;
622
+ mode: BIZY_FILE_UPLOADER_MODE;
623
+ load: Subject<BizyFileUploaderLoadFile> | null;
596
624
  upload: Subject<{
597
625
  endpoint: string;
598
626
  headers?: Record<string, string>;
599
- }>;
627
+ }> | null;
628
+ set files(value: Array<BizyFileUploaderInputFile> | null | undefined);
629
+ get files(): Array<BizyFileUploaderInputFile>;
600
630
  set disabled(value: boolean);
601
631
  completed: EventEmitter<{
602
632
  successful: Array<{
@@ -608,13 +638,14 @@ declare class BizyFileUploaderComponent implements AfterViewInit, OnDestroy {
608
638
  meta: unknown;
609
639
  }>;
610
640
  }>;
611
- loadedFiles: EventEmitter<UppyFile[]>;
641
+ loadedFiles: EventEmitter<BizyFileUploaderFile[]>;
642
+ attachedFiles: EventEmitter<BizyFileUploaderAttachment[]>;
612
643
  readonly TEMPLATE_ID = "bizy-file-uploader-template";
613
644
  ngAfterViewInit(): void;
614
645
  getNativeElement: () => any;
615
646
  ngOnDestroy(): void;
616
647
  static ɵfac: i0.ɵɵFactoryDeclaration<BizyFileUploaderComponent, never>;
617
- static ɵcmp: i0.ɵɵComponentDeclaration<BizyFileUploaderComponent, "bizy-file-uploader", never, { "dragDropAreaWidth": { "alias": "dragDropAreaWidth"; "required": false; }; "dragDropAreaHeight": { "alias": "dragDropAreaHeight"; "required": false; }; "language": { "alias": "language"; "required": false; }; "headers": { "alias": "headers"; "required": false; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; }; "minFileSize": { "alias": "minFileSize"; "required": false; }; "maxTotalFileSize": { "alias": "maxTotalFileSize"; "required": false; }; "maxNumberOfFiles": { "alias": "maxNumberOfFiles"; "required": false; }; "minNumberOfFiles": { "alias": "minNumberOfFiles"; "required": false; }; "allowedFileTypes": { "alias": "allowedFileTypes"; "required": false; }; "hideUploadButton": { "alias": "hideUploadButton"; "required": false; }; "hidePauseResumeButton": { "alias": "hidePauseResumeButton"; "required": false; }; "hideCancelButton": { "alias": "hideCancelButton"; "required": false; }; "disableLocalFiles": { "alias": "disableLocalFiles"; "required": false; }; "load": { "alias": "load"; "required": false; }; "upload": { "alias": "upload"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "completed": "completed"; "loadedFiles": "loadedFiles"; }, never, never, true, never>;
648
+ static ɵcmp: i0.ɵɵComponentDeclaration<BizyFileUploaderComponent, "bizy-file-uploader", never, { "dragDropAreaWidth": { "alias": "dragDropAreaWidth"; "required": false; }; "dragDropAreaHeight": { "alias": "dragDropAreaHeight"; "required": false; }; "language": { "alias": "language"; "required": false; }; "headers": { "alias": "headers"; "required": false; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; }; "minFileSize": { "alias": "minFileSize"; "required": false; }; "maxTotalFileSize": { "alias": "maxTotalFileSize"; "required": false; }; "maxNumberOfFiles": { "alias": "maxNumberOfFiles"; "required": false; }; "minNumberOfFiles": { "alias": "minNumberOfFiles"; "required": false; }; "allowedFileTypes": { "alias": "allowedFileTypes"; "required": false; }; "hideUploadButton": { "alias": "hideUploadButton"; "required": false; }; "hidePauseResumeButton": { "alias": "hidePauseResumeButton"; "required": false; }; "hideCancelButton": { "alias": "hideCancelButton"; "required": false; }; "disableLocalFiles": { "alias": "disableLocalFiles"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "load": { "alias": "load"; "required": false; }; "upload": { "alias": "upload"; "required": false; }; "files": { "alias": "files"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "completed": "completed"; "loadedFiles": "loadedFiles"; "attachedFiles": "attachedFiles"; }, never, never, true, never>;
618
649
  }
619
650
 
620
651
  declare class BizyFileUploaderModule {
@@ -625,21 +656,22 @@ declare class BizyFileUploaderModule {
625
656
 
626
657
  declare class BizyFileUploaderService {
627
658
  #private;
628
- get fileLoaded$(): Observable<UppyFile>;
629
- get fileRemoved$(): Observable<UppyFile>;
659
+ get fileLoaded$(): Observable<BizyFileUploaderFile>;
660
+ get fileRemoved$(): Observable<BizyFileUploaderFile>;
630
661
  get upload$(): Observable<void>;
631
662
  get uploadSuccess$(): Observable<{
632
- file: UppyFile;
633
- response: SuccessResponse;
663
+ file: BizyFileUploaderFile;
664
+ response: BizyFileUploaderSuccessResponse;
634
665
  }>;
635
666
  get error$(): Observable<{
636
- file?: UppyFile;
667
+ file?: BizyFileUploaderFile;
637
668
  error: Error;
669
+ response?: BizyFileUploaderErrorResponse;
638
670
  }>;
639
671
  get cancelAll$(): Observable<void>;
640
672
  get complete$(): Observable<{
641
- successful: Array<UppyFile>;
642
- failed: Array<UppyFile>;
673
+ successful: Array<BizyFileUploaderFile>;
674
+ failed: Array<BizyFileUploaderFile>;
643
675
  }>;
644
676
  createFileUploader(data: {
645
677
  maxFileSize: number | null;
@@ -649,19 +681,18 @@ declare class BizyFileUploaderService {
649
681
  minNumberOfFiles: number | null;
650
682
  dragDropAreaWidth: string;
651
683
  dragDropAreaHeight: string;
652
- allowedFileTypes: Array<string>;
684
+ allowedFileTypes: Array<string> | null;
653
685
  language: 'es' | 'en';
654
686
  templateId: string;
655
687
  hideCancelButton: boolean;
656
688
  hideUploadButton: boolean;
657
689
  hidePauseResumeButton: boolean;
658
690
  disableLocalFiles: boolean;
691
+ enableUpload: boolean;
659
692
  headers: Record<string, string>;
660
693
  }): void;
661
- load: (data: {
662
- id: string;
663
- file: File;
664
- }) => void;
694
+ load: (data: BizyFileUploaderInputFile) => string | null;
695
+ remove: (fileId: string) => void;
665
696
  disable(value: boolean): void;
666
697
  upload: (data: {
667
698
  endpoint: string;
@@ -852,6 +883,7 @@ declare class BizyInputComponent implements OnDestroy {
852
883
  valueChange: EventEmitter<string | number>;
853
884
  onChange: EventEmitter<string | number>;
854
885
  onEnter: EventEmitter<KeyboardEvent>;
886
+ onKey: EventEmitter<string>;
855
887
  onBackspace: EventEmitter<KeyboardEvent>;
856
888
  onSelect: EventEmitter<PointerEvent>;
857
889
  onBlur: EventEmitter<FocusEvent>;
@@ -870,6 +902,7 @@ declare class BizyInputComponent implements OnDestroy {
870
902
  _onchange: (value: string) => void;
871
903
  _onClick: (event: PointerEvent) => void;
872
904
  _onEnter: (event: KeyboardEvent) => void;
905
+ _onKeyDown: (event: KeyboardEvent) => void;
873
906
  _onBackspace: (event: KeyboardEvent) => void;
874
907
  setTouched: (touched: boolean) => void;
875
908
  onOpen: () => void;
@@ -882,7 +915,7 @@ declare class BizyInputComponent implements OnDestroy {
882
915
  }, button?: HTMLButtonElement) => void;
883
916
  ngOnDestroy(): void;
884
917
  static ɵfac: i0.ɵɵFactoryDeclaration<BizyInputComponent, never>;
885
- static ɵcmp: i0.ɵɵComponentDeclaration<BizyInputComponent, "bizy-input", never, { "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "type": { "alias": "type"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "onChange": "onChange"; "onEnter": "onEnter"; "onBackspace": "onBackspace"; "onSelect": "onSelect"; "onBlur": "onBlur"; "onFocus": "onFocus"; "onPaste": "onPaste"; }, ["options"], ["[slot=header]", "[slot=prefix]", "[slot=suffix]", "bizy-input-option", "[slot=error]"], true, never>;
918
+ static ɵcmp: i0.ɵɵComponentDeclaration<BizyInputComponent, "bizy-input", never, { "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "type": { "alias": "type"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "onChange": "onChange"; "onEnter": "onEnter"; "onKey": "onKey"; "onBackspace": "onBackspace"; "onSelect": "onSelect"; "onBlur": "onBlur"; "onFocus": "onFocus"; "onPaste": "onPaste"; }, ["options"], ["[slot=header]", "[slot=prefix]", "[slot=suffix]", "bizy-input-option", "[slot=error]"], true, never>;
886
919
  }
887
920
 
888
921
  declare class BizySelectOptionComponent {
@@ -1017,25 +1050,28 @@ declare class BizyGridForDirective {
1017
1050
  static ɵdir: i0.ɵɵDirectiveDeclaration<BizyGridForDirective, "[gridFor]", never, { "gridForOf": { "alias": "gridForOf"; "required": false; }; }, {}, never, never, true, never>;
1018
1051
  }
1019
1052
 
1020
- declare class BizyGridComponent implements AfterContentInit {
1053
+ declare class BizyGridComponent implements AfterViewInit, OnDestroy {
1021
1054
  #private;
1022
1055
  private virtualScroll;
1023
- content: TemplateRef<object>;
1024
- gridDirective: BizyGridForDirective;
1025
- resizeRef: ElementRef | null;
1056
+ content: TemplateRef<object> | null;
1057
+ gridDirective: BizyGridForDirective | null;
1058
+ resizeRef: ElementRef<HTMLElement> | HTMLElement | null;
1059
+ scrollDisabled: boolean;
1060
+ set scrollResetKey(_value: string | number | null);
1061
+ endReached: EventEmitter<void>;
1026
1062
  notifier$: Subject<void>;
1027
1063
  rowHeight: number;
1028
1064
  itemRows: Array<Array<unknown>>;
1029
1065
  items: Array<unknown>;
1030
- itemTemplate: TemplateRef<unknown>;
1066
+ itemTemplate: TemplateRef<unknown> | null;
1031
1067
  itemsPerRow: number;
1032
- getNativeElement: () => any;
1033
- ngAfterContentInit(): void;
1068
+ getNativeElement: () => HTMLElement;
1069
+ ngAfterViewInit(): void;
1034
1070
  trackByRow(index: number, row: any[]): any;
1035
1071
  scrollTo(index: number, behavior?: 'auto' | 'instant' | 'smooth'): void;
1036
1072
  ngOnDestroy(): void;
1037
1073
  static ɵfac: i0.ɵɵFactoryDeclaration<BizyGridComponent, never>;
1038
- static ɵcmp: i0.ɵɵComponentDeclaration<BizyGridComponent, "bizy-grid", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; }, {}, ["gridDirective"], ["*"], true, never>;
1074
+ static ɵcmp: i0.ɵɵComponentDeclaration<BizyGridComponent, "bizy-grid", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; "scrollDisabled": { "alias": "scrollDisabled"; "required": false; }; "scrollResetKey": { "alias": "scrollResetKey"; "required": false; }; }, { "endReached": "endReached"; }, ["gridDirective"], ["*"], true, never>;
1039
1075
  }
1040
1076
 
1041
1077
  declare class BizyGridRowComponent {
@@ -1421,6 +1457,14 @@ declare class BizyFullScreenPopupWrapperComponent<T> {
1421
1457
  disabled: boolean;
1422
1458
  disableClose: boolean;
1423
1459
  disableDrag: boolean;
1460
+ position: {
1461
+ main?: string;
1462
+ right?: string;
1463
+ bottom?: string;
1464
+ left?: string;
1465
+ transform?: string;
1466
+ };
1467
+ minWidth: string;
1424
1468
  ngOnInit(): void;
1425
1469
  ngAfterViewInit(): void;
1426
1470
  loadDynamicComponent: () => void;
@@ -2264,18 +2308,21 @@ declare class BizyDeviceService {
2264
2308
  }
2265
2309
 
2266
2310
  declare class BizyRouterService {
2311
+ #private;
2267
2312
  private router;
2268
2313
  static backPath: string;
2314
+ static data: Record<string, unknown>;
2269
2315
  transitionsEnd$: Observable<ActivatedRouteSnapshot>;
2270
2316
  transitionsStart$: Observable<ActivatedRouteSnapshot>;
2271
2317
  popStateEvent$: Observable<PopStateEvent>;
2272
2318
  routeChange$: Observable<void>;
2273
2319
  constructor(router: Router);
2274
- getURL(): string;
2275
- getBackPath(): string;
2276
- getId(activatedRoute: ActivatedRoute, param: string): string | null;
2277
- getQueryParam(activatedRoute: ActivatedRoute, param: string): string | null;
2320
+ getURL: () => string;
2321
+ getBackPath: () => string;
2322
+ getId: (activatedRoute: ActivatedRoute, param: string) => string | null;
2323
+ getQueryParam: (activatedRoute: ActivatedRoute, param: string) => string | null;
2278
2324
  getAllQueryParam(): Record<string, string>;
2325
+ getData: () => Record<string, unknown>;
2279
2326
  goTo(data: {
2280
2327
  path: string;
2281
2328
  params?: Record<string, string>;
@@ -2286,7 +2333,6 @@ declare class BizyRouterService {
2286
2333
  path: string;
2287
2334
  }): void;
2288
2335
  reload(force?: boolean): void;
2289
- private _serialize;
2290
2336
  static ɵfac: i0.ɵɵFactoryDeclaration<BizyRouterService, never>;
2291
2337
  static ɵprov: i0.ɵɵInjectableDeclaration<BizyRouterService>;
2292
2338
  }
@@ -2732,5 +2778,5 @@ declare class BizyDirectivesModule {
2732
2778
  static ɵinj: i0.ɵɵInjectorDeclaration<BizyDirectivesModule>;
2733
2779
  }
2734
2780
 
2735
- export { BIZY_ANIMATION, BIZY_BAR_LINE_CHART_AXIS_POSITION, BIZY_CALENDAR_DAY, BIZY_CALENDAR_EVENT_ACTION, BIZY_CALENDAR_LANGUAGE, BIZY_CALENDAR_MODE, BIZY_FORMAT_SECONDS_FORMAT, BIZY_FORMAT_SECONDS_LANGUAGE, BIZY_SKELETON_SHAPE, BIZY_STACKED_BAR_CHART_LEGEND_POSITION, BIZY_TAG_TYPE, BizyAccordionComponent, BizyAccordionModule, BizyAnimationService, BizyAudioPlayerComponent, BizyAudioPlayerFormatSecondsPipe, BizyAudioPlayerModule, BizyAudioRecorderComponent, BizyAudioRecorderModule, BizyAutoFocusDirective, BizyAveragePipe, BizyBarChartComponent, BizyBarLineChartComponent, BizyBarLineChartModule, BizyBarLineChartPopupComponent, BizyBreadcrumbComponent, BizyBreadcrumbModule, BizyButtonComponent, BizyButtonModule, BizyCacheService, BizyCalendarComponent, BizyCalendarModule, BizyCardComponent, BizyCardModule, BizyCheckboxComponent, BizyCheckboxModule, BizyContentComponent, BizyContentModule, BizyCopyToClipboardDirective, BizyCopyToClipboardService, BizyCurrencyFormatDirective, BizyDatePickerComponent, BizyDatePickerModule, BizyDeviceService, BizyDirectivesModule, BizyDonutChartComponent, BizyDonutChartModule, BizyDonutChartPopupComponent, BizyDonutChartSectionComponent, BizyEnumToArrayPipe, BizyExportToCSVService, BizyExtractNumbersPipe, BizyFileUploaderComponent, BizyFileUploaderModule, BizyFileUploaderService, BizyFilterComponent, BizyFilterContentComponent, BizyFilterModule, BizyFilterPipe, BizyFilterSectionCheckboxOptionComponent, BizyFilterSectionComponent, BizyFilterSectionRangeOptionComponent, BizyFilterSectionSearchOptionComponent, BizyFilterSectionsComponent, BizyFormComponent, BizyFormModule, BizyFormatSecondsPipe, BizyFormatSecondsService, BizyFullScreenPopupWrapperComponent, BizyGaugeChartComponent, BizyGaugeChartModule, BizyGaugeChartPopupComponent, BizyGridComponent, BizyGridForDirective, BizyGridModule, BizyGridRowComponent, BizyHeatMapChartComponent, BizyHeatMapChartModule, BizyInputComponent, BizyInputModule, BizyInputOptionComponent, BizyKeyboardService, BizyLineChartComponent, BizyListComponent, BizyListModule, BizyLoadingDirective, BizyLogService, BizyLongPressDirective, BizyMenuBarComponent, BizyMenuBarModule, BizyMenuBarOptionComponent, BizyMenuComponent, BizyMenuModule, BizyMenuOptionComponent, BizyMenuTitleComponent, BizyMouseOverDirective, BizyOnlyNumbersDirective, BizyOnlyPhoneDigitsDirective, BizyOrderByPipe, BizyPieChartComponent, BizyPieChartModule, BizyPieChartPopupComponent, BizyPieChartSectionComponent, BizyPieChartService, BizyPipesModule, BizyPopupModule, BizyPopupService, BizyPopupWrapperComponent, BizyProgressBarComponent, BizyProgressBarModule, BizyRadioComponent, BizyRadioModule, BizyRangeFilterPipe, BizyReducePipe, BizyReloadDirective, BizyRepeatPipe, BizyRoundPipe, BizyRouterService, BizySafePipe, BizySearchPipe, BizySectionCenterComponent, BizySectionComponent, BizySectionEndComponent, BizySectionModule, BizySectionStartComponent, BizySelectComponent, BizySelectModule, BizySelectOptionComponent, BizySelectSelectedOptionComponent, BizyServicesModule, BizySetToArrayPipe, BizySidebarComponent, BizySidebarFloatingOptionComponent, BizySidebarFloatingOptionTitleComponent, BizySidebarModule, BizySidebarOptionComponent, BizySkeletonComponent, BizySkeletonModule, BizySliderComponent, BizySliderModule, BizyStackedBarChartComponent, BizyStackedBarChartModule, BizyStackedBarChartSegmentComponent, BizyStorageService, BizyTabComponent, BizyTableColumnArrowsComponent, BizyTableColumnComponent, BizyTableColumnFixedDirective, BizyTableComponent, BizyTableFooterComponent, BizyTableHeaderComponent, BizyTableModule, BizyTableRowComponent, BizyTableRowExpandContentComponent, BizyTableScrollingComponent, BizyTableScrollingDirective, BizyTabsComponent, BizyTabsModule, BizyTagComponent, BizyTagModule, BizyTextEllipsisDirective, BizyTimelineComponent, BizyTimelineEventComponent, BizyTimelineModule, BizyToastModule, BizyToastService, BizyToastWrapperComponent, BizyToggleComponent, BizyToggleModule, BizyToolbarComponent, BizyToolbarModule, BizyTooltipDirective, BizyTranslateModule, BizyTranslatePipe, BizyTranslateService, BizyUniquePipe, BizyValidatorService, BizyViewportService, LANGUAGE, LOADING_TYPE, MIME_TYPE, POPUP_PLACEMENT };
2736
- export type { IBizyBarLineChartAxis, IBizyBarLineChartDownload, IBizyBarLineChartTooltip, IBizyBarLineChartValue, IBizyBreadcrumb, IBizyCalendarEvent, IBizyGaugeChartData, IBizyHeatMapChartData, IBizyHeatMapChartRange, IBizyHeatMapHighlightArea, IBizyHeatMapHighlightLine, IBizyHeatMapHighlightLineLabel, IBizyPopupResponse, IBizySearchPipeOptions, IBizyStackedBarChartLegends, ILocale, LabelPosition };
2781
+ export { BIZY_ANIMATION, BIZY_BAR_LINE_CHART_AXIS_POSITION, BIZY_CALENDAR_DAY, BIZY_CALENDAR_EVENT_ACTION, BIZY_CALENDAR_LANGUAGE, BIZY_CALENDAR_MODE, BIZY_DEVICE_BROWSER, BIZY_DEVICE_OS, BIZY_FILE_UPLOADER_MODE, BIZY_FORMAT_SECONDS_FORMAT, BIZY_FORMAT_SECONDS_LANGUAGE, BIZY_SKELETON_SHAPE, BIZY_STACKED_BAR_CHART_LEGEND_POSITION, BIZY_TAG_TYPE, BizyAccordionComponent, BizyAccordionModule, BizyAnimationService, BizyAudioPlayerComponent, BizyAudioPlayerFormatSecondsPipe, BizyAudioPlayerModule, BizyAudioRecorderComponent, BizyAudioRecorderModule, BizyAutoFocusDirective, BizyAveragePipe, BizyBarChartComponent, BizyBarLineChartComponent, BizyBarLineChartModule, BizyBarLineChartPopupComponent, BizyBreadcrumbComponent, BizyBreadcrumbModule, BizyButtonComponent, BizyButtonModule, BizyCacheService, BizyCalendarComponent, BizyCalendarModule, BizyCardComponent, BizyCardModule, BizyCheckboxComponent, BizyCheckboxModule, BizyContentComponent, BizyContentModule, BizyCopyToClipboardDirective, BizyCopyToClipboardService, BizyCurrencyFormatDirective, BizyDatePickerComponent, BizyDatePickerModule, BizyDeviceService, BizyDirectivesModule, BizyDonutChartComponent, BizyDonutChartModule, BizyDonutChartPopupComponent, BizyDonutChartSectionComponent, BizyEnumToArrayPipe, BizyExportToCSVService, BizyExtractNumbersPipe, BizyFileUploaderComponent, BizyFileUploaderModule, BizyFileUploaderService, BizyFilterComponent, BizyFilterContentComponent, BizyFilterModule, BizyFilterPipe, BizyFilterSectionCheckboxOptionComponent, BizyFilterSectionComponent, BizyFilterSectionRangeOptionComponent, BizyFilterSectionSearchOptionComponent, BizyFilterSectionsComponent, BizyFormComponent, BizyFormModule, BizyFormatSecondsPipe, BizyFormatSecondsService, BizyFullScreenPopupWrapperComponent, BizyGaugeChartComponent, BizyGaugeChartModule, BizyGaugeChartPopupComponent, BizyGridComponent, BizyGridForDirective, BizyGridModule, BizyGridRowComponent, BizyHeatMapChartComponent, BizyHeatMapChartModule, BizyInputComponent, BizyInputModule, BizyInputOptionComponent, BizyKeyboardService, BizyLineChartComponent, BizyListComponent, BizyListModule, BizyLoadingDirective, BizyLogService, BizyLongPressDirective, BizyMenuBarComponent, BizyMenuBarModule, BizyMenuBarOptionComponent, BizyMenuComponent, BizyMenuModule, BizyMenuOptionComponent, BizyMenuTitleComponent, BizyMouseOverDirective, BizyOnlyNumbersDirective, BizyOnlyPhoneDigitsDirective, BizyOrderByPipe, BizyPieChartComponent, BizyPieChartModule, BizyPieChartPopupComponent, BizyPieChartSectionComponent, BizyPieChartService, BizyPipesModule, BizyPopupModule, BizyPopupService, BizyPopupWrapperComponent, BizyProgressBarComponent, BizyProgressBarModule, BizyRadioComponent, BizyRadioModule, BizyRangeFilterPipe, BizyReducePipe, BizyReloadDirective, BizyRepeatPipe, BizyRoundPipe, BizyRouterService, BizySafePipe, BizySearchPipe, BizySectionCenterComponent, BizySectionComponent, BizySectionEndComponent, BizySectionModule, BizySectionStartComponent, BizySelectComponent, BizySelectModule, BizySelectOptionComponent, BizySelectSelectedOptionComponent, BizyServicesModule, BizySetToArrayPipe, BizySidebarComponent, BizySidebarFloatingOptionComponent, BizySidebarFloatingOptionTitleComponent, BizySidebarModule, BizySidebarOptionComponent, BizySkeletonComponent, BizySkeletonModule, BizySliderComponent, BizySliderModule, BizyStackedBarChartComponent, BizyStackedBarChartModule, BizyStackedBarChartSegmentComponent, BizyStorageService, BizyTabComponent, BizyTableColumnArrowsComponent, BizyTableColumnComponent, BizyTableColumnFixedDirective, BizyTableComponent, BizyTableFooterComponent, BizyTableHeaderComponent, BizyTableModule, BizyTableRowComponent, BizyTableRowExpandContentComponent, BizyTableScrollingComponent, BizyTableScrollingDirective, BizyTabsComponent, BizyTabsModule, BizyTagComponent, BizyTagModule, BizyTextEllipsisDirective, BizyTimelineComponent, BizyTimelineEventComponent, BizyTimelineModule, BizyToastModule, BizyToastService, BizyToastWrapperComponent, BizyToggleComponent, BizyToggleModule, BizyToolbarComponent, BizyToolbarModule, BizyTooltipDirective, BizyTranslateModule, BizyTranslatePipe, BizyTranslateService, BizyUniquePipe, BizyValidatorService, BizyViewportService, LANGUAGE, LOADING_TYPE, MIME_TYPE, POPUP_PLACEMENT };
2782
+ export type { BizyFileUploaderAttachment, BizyFileUploaderErrorResponse, BizyFileUploaderFile, BizyFileUploaderInputFile, BizyFileUploaderLoadFile, BizyFileUploaderMeta, BizyFileUploaderResponseBody, BizyFileUploaderSuccessResponse, IBizyBarLineChartAxis, IBizyBarLineChartDownload, IBizyBarLineChartTooltip, IBizyBarLineChartValue, IBizyBreadcrumb, IBizyCalendarEvent, IBizyGaugeChartData, IBizyHeatMapChartData, IBizyHeatMapChartRange, IBizyHeatMapHighlightArea, IBizyHeatMapHighlightLine, IBizyHeatMapHighlightLineLabel, IBizyPopupResponse, IBizySearchPipeOptions, IBizyStackedBarChartLegends, ILocale, IWindowSize, LabelPosition };