@bizy/core 20.2.8 → 20.3.1
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/fesm2022/bizy-core.mjs +349 -450
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +98 -73
- package/package.json +1 -1
- package/styles/variables.css +3 -0
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter,
|
|
2
|
+
import { EventEmitter, OnDestroy, AfterViewInit, TemplateRef, PipeTransform, QueryList, ElementRef, ViewContainerRef, AfterContentInit, ChangeDetectorRef, RendererFactory2, Renderer2, OnInit } from '@angular/core';
|
|
3
3
|
import { CalendarEvent, CalendarMonthViewDay } from 'angular-calendar';
|
|
4
4
|
import { Subject, Observable, BehaviorSubject } from 'rxjs';
|
|
5
5
|
import { UppyFile, SuccessResponse } from '@uppy/core';
|
|
@@ -15,15 +15,15 @@ import AutoNumeric from 'autonumeric';
|
|
|
15
15
|
import { NgForOf } from '@angular/common';
|
|
16
16
|
|
|
17
17
|
declare class BizyAccordionComponent {
|
|
18
|
-
private
|
|
18
|
+
#private;
|
|
19
19
|
id: string;
|
|
20
20
|
customClass: string;
|
|
21
21
|
disabled: boolean;
|
|
22
22
|
opened: boolean;
|
|
23
23
|
openedChange: EventEmitter<boolean>;
|
|
24
24
|
onSelect: EventEmitter<PointerEvent>;
|
|
25
|
-
constructor(ref: ChangeDetectorRef);
|
|
26
25
|
_onSelect(event: PointerEvent): void;
|
|
26
|
+
getNativeElement: () => any;
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyAccordionComponent, never>;
|
|
28
28
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyAccordionComponent, "bizy-accordion", never, { "id": { "alias": "id"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "opened": { "alias": "opened"; "required": false; }; }, { "openedChange": "openedChange"; "onSelect": "onSelect"; }, never, ["*", "[accordion-option]"], true, never>;
|
|
29
29
|
}
|
|
@@ -60,6 +60,7 @@ declare class BizyAudioPlayerComponent {
|
|
|
60
60
|
_trackPlayerRate(): void;
|
|
61
61
|
_onTrackPlayerRate(): void;
|
|
62
62
|
_onDownload(): void;
|
|
63
|
+
getNativeElement: () => any;
|
|
63
64
|
ngOnDestroy(): void;
|
|
64
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyAudioPlayerComponent, never>;
|
|
65
66
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyAudioPlayerComponent, "bizy-audio-player", never, { "id": { "alias": "id"; "required": false; }; "mimeType": { "alias": "mimeType"; "required": false; }; "audioPlayerError": { "alias": "audioPlayerError"; "required": false; }; "showDownload": { "alias": "showDownload"; "required": false; }; "autoplay": { "alias": "autoplay"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "downloadURL": { "alias": "downloadURL"; "required": false; }; "downloadFileName": { "alias": "downloadFileName"; "required": false; }; "audioURL": { "alias": "audioURL"; "required": false; }; }, { "onDownload": "onDownload"; "canPlayThrough": "canPlayThrough"; "onTrackPlayerRate": "onTrackPlayerRate"; }, never, never, true, never>;
|
|
@@ -91,10 +92,6 @@ interface IBizyBarLineChartData {
|
|
|
91
92
|
|
|
92
93
|
declare class BizyBarLineChartComponent implements OnDestroy, AfterViewInit {
|
|
93
94
|
#private;
|
|
94
|
-
private elementRef;
|
|
95
|
-
private document;
|
|
96
|
-
private ref;
|
|
97
|
-
private renderer;
|
|
98
95
|
resizeRef: HTMLElement | null;
|
|
99
96
|
tooltip: boolean;
|
|
100
97
|
download: {
|
|
@@ -108,9 +105,9 @@ declare class BizyBarLineChartComponent implements OnDestroy, AfterViewInit {
|
|
|
108
105
|
onXAxisLabelFormatter: (item: any) => string;
|
|
109
106
|
onDownload: EventEmitter<void>;
|
|
110
107
|
onSelect: EventEmitter<string>;
|
|
111
|
-
constructor(elementRef: ElementRef, document: Document, ref: ChangeDetectorRef, renderer: Renderer2);
|
|
112
108
|
ngAfterViewInit(): void;
|
|
113
109
|
set data(data: Array<IBizyBarLineChartData>);
|
|
110
|
+
getNativeElement: () => any;
|
|
114
111
|
ngOnDestroy(): void;
|
|
115
112
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyBarLineChartComponent, never>;
|
|
116
113
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyBarLineChartComponent, "bizy-bar-line-chart", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "download": { "alias": "download"; "required": false; }; "axisPointer": { "alias": "axisPointer"; "required": false; }; "xAxisLabels": { "alias": "xAxisLabels"; "required": false; }; "onTooltipFormatter": { "alias": "onTooltipFormatter"; "required": false; }; "onXAxisLabelFormatter": { "alias": "onXAxisLabelFormatter"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "onDownload": "onDownload"; "onSelect": "onSelect"; }, never, never, true, never>;
|
|
@@ -130,14 +127,14 @@ interface IBizyBreadcrumb {
|
|
|
130
127
|
}
|
|
131
128
|
|
|
132
129
|
declare class BizyBreadcrumbComponent {
|
|
133
|
-
private
|
|
130
|
+
#private;
|
|
134
131
|
onSelect: EventEmitter<IBizyBreadcrumb>;
|
|
135
132
|
_breadcrumbs: Array<IBizyBreadcrumb>;
|
|
136
133
|
showGoBack: boolean;
|
|
137
|
-
constructor(ref: ChangeDetectorRef);
|
|
138
134
|
set breadcrumbs(breadcrumbs: Array<IBizyBreadcrumb>);
|
|
139
135
|
goTo(breadcrumb: IBizyBreadcrumb): void;
|
|
140
136
|
goBack(): void;
|
|
137
|
+
getNativeElement(): any;
|
|
141
138
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyBreadcrumbComponent, never>;
|
|
142
139
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyBreadcrumbComponent, "bizy-breadcrumb", never, { "breadcrumbs": { "alias": "breadcrumbs"; "required": false; }; }, { "onSelect": "onSelect"; }, never, never, true, never>;
|
|
143
140
|
}
|
|
@@ -149,6 +146,7 @@ declare class BizyBreadcrumbModule {
|
|
|
149
146
|
}
|
|
150
147
|
|
|
151
148
|
declare class BizyButtonComponent {
|
|
149
|
+
#private;
|
|
152
150
|
id: string;
|
|
153
151
|
disabled: boolean;
|
|
154
152
|
type: 'button' | 'submit';
|
|
@@ -156,6 +154,7 @@ declare class BizyButtonComponent {
|
|
|
156
154
|
onSelect: EventEmitter<PointerEvent>;
|
|
157
155
|
_focused: boolean;
|
|
158
156
|
_onSelect(event: PointerEvent): void;
|
|
157
|
+
getNativeElement: () => any;
|
|
159
158
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyButtonComponent, never>;
|
|
160
159
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyButtonComponent, "bizy-button", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "type": { "alias": "type"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, { "onSelect": "onSelect"; }, never, ["*"], true, never>;
|
|
161
160
|
}
|
|
@@ -244,6 +243,7 @@ declare class BizyCalendarComponent {
|
|
|
244
243
|
eventClicked(event: CalendarEvent): void;
|
|
245
244
|
dayHeaderClicked(date: Date): void;
|
|
246
245
|
hourSegmentClicked(date: Date): void;
|
|
246
|
+
getNativeElement: () => any;
|
|
247
247
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyCalendarComponent, never>;
|
|
248
248
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyCalendarComponent, "bizy-calendar", never, { "id": { "alias": "id"; "required": false; }; "hideHeaderDate": { "alias": "hideHeaderDate"; "required": false; }; "preventExpand": { "alias": "preventExpand"; "required": false; }; "dayStartHour": { "alias": "dayStartHour"; "required": false; }; "dayEndHour": { "alias": "dayEndHour"; "required": false; }; "hourMinutesDuration": { "alias": "hourMinutesDuration"; "required": false; }; "hourSegments": { "alias": "hourSegments"; "required": false; }; "language": { "alias": "language"; "required": false; }; "excludeDays": { "alias": "excludeDays"; "required": false; }; "weekendDays": { "alias": "weekendDays"; "required": false; }; "weekStartsOn": { "alias": "weekStartsOn"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "customCalendarWeekEventTemplate": { "alias": "customCalendarWeekEventTemplate"; "required": false; }; "viewDate": { "alias": "viewDate"; "required": false; }; "events": { "alias": "events"; "required": false; }; }, { "onEventSelect": "onEventSelect"; "onDateSelect": "onDateSelect"; "onEventDelete": "onEventDelete"; }, never, never, true, never>;
|
|
249
249
|
}
|
|
@@ -255,12 +255,14 @@ declare class BizyCalendarModule {
|
|
|
255
255
|
}
|
|
256
256
|
|
|
257
257
|
declare class BizyCardComponent {
|
|
258
|
+
#private;
|
|
258
259
|
id: string;
|
|
259
260
|
disabled: boolean;
|
|
260
261
|
selected: boolean;
|
|
261
262
|
customClass: string;
|
|
262
263
|
onSelect: EventEmitter<PointerEvent>;
|
|
263
264
|
_onSelect(event: PointerEvent): void;
|
|
265
|
+
getNativeElement: () => any;
|
|
264
266
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyCardComponent, never>;
|
|
265
267
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyCardComponent, "bizy-card", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, { "onSelect": "onSelect"; }, never, ["[slot=header-start]", "[slot=header-end]", "*", "[slot=footer-start]", "[slot=footer-end]"], true, never>;
|
|
266
268
|
}
|
|
@@ -272,6 +274,7 @@ declare class BizyCardModule {
|
|
|
272
274
|
}
|
|
273
275
|
|
|
274
276
|
declare class BizyCheckboxComponent {
|
|
277
|
+
#private;
|
|
275
278
|
id: string;
|
|
276
279
|
selected: boolean;
|
|
277
280
|
disabled: boolean;
|
|
@@ -279,6 +282,7 @@ declare class BizyCheckboxComponent {
|
|
|
279
282
|
onSelect: EventEmitter<PointerEvent>;
|
|
280
283
|
_checkboxId: string;
|
|
281
284
|
_onSelect(event: PointerEvent): void;
|
|
285
|
+
getNativeElement: () => any;
|
|
282
286
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyCheckboxComponent, never>;
|
|
283
287
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyCheckboxComponent, "bizy-checkbox", never, { "id": { "alias": "id"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "selectedChange": "selectedChange"; "onSelect": "onSelect"; }, never, ["[slot=start]", "[slot=end]"], true, never>;
|
|
284
288
|
}
|
|
@@ -290,6 +294,8 @@ declare class BizyCheckboxModule {
|
|
|
290
294
|
}
|
|
291
295
|
|
|
292
296
|
declare class BizyContentComponent {
|
|
297
|
+
#private;
|
|
298
|
+
getNativeElement: () => any;
|
|
293
299
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyContentComponent, never>;
|
|
294
300
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyContentComponent, "bizy-content", never, {}, {}, never, ["*"], true, never>;
|
|
295
301
|
}
|
|
@@ -340,6 +346,7 @@ declare class BizyDatePickerComponent {
|
|
|
340
346
|
set type(type: 'date' | 'date-time' | 'time' | 'year-month');
|
|
341
347
|
ngAfterViewInit(): void;
|
|
342
348
|
setTouched(touched: boolean): void;
|
|
349
|
+
getNativeElement: () => any;
|
|
343
350
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyDatePickerComponent, never>;
|
|
344
351
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyDatePickerComponent, "bizy-date-picker", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "opened": { "alias": "opened"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "enableSeconds": { "alias": "enableSeconds"; "required": false; }; "date": { "alias": "date"; "required": false; }; "range": { "alias": "range"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "dateChange": "dateChange"; "rangeChange": "rangeChange"; "onChange": "onChange"; "openedChange": "openedChange"; "onOpen": "onOpen"; "onSelect": "onSelect"; }, never, ["[slot=header]", "[slot=prefix]", "[slot=error]"], true, never>;
|
|
345
352
|
}
|
|
@@ -388,6 +395,7 @@ declare class BizyFileUploaderComponent implements AfterViewInit, OnDestroy {
|
|
|
388
395
|
loadedFiles: EventEmitter<UppyFile[]>;
|
|
389
396
|
readonly TEMPLATE_ID = "bizy-file-uploader-template";
|
|
390
397
|
ngAfterViewInit(): void;
|
|
398
|
+
getNativeElement: () => any;
|
|
391
399
|
ngOnDestroy(): void;
|
|
392
400
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFileUploaderComponent, never>;
|
|
393
401
|
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>;
|
|
@@ -450,8 +458,6 @@ declare class BizyFileUploaderService {
|
|
|
450
458
|
|
|
451
459
|
declare class BizyFilterComponent {
|
|
452
460
|
#private;
|
|
453
|
-
private document;
|
|
454
|
-
private ref;
|
|
455
461
|
private sections;
|
|
456
462
|
id: string;
|
|
457
463
|
disabled: boolean;
|
|
@@ -461,7 +467,6 @@ declare class BizyFilterComponent {
|
|
|
461
467
|
onChange: EventEmitter<boolean>;
|
|
462
468
|
_filterWidth: number;
|
|
463
469
|
_activated: boolean;
|
|
464
|
-
constructor(document: Document, ref: ChangeDetectorRef);
|
|
465
470
|
ngAfterViewInit(): void;
|
|
466
471
|
_onOpen: (event: any) => void;
|
|
467
472
|
close: (event: PointerEvent & {
|
|
@@ -469,6 +474,7 @@ declare class BizyFilterComponent {
|
|
|
469
474
|
id: string;
|
|
470
475
|
};
|
|
471
476
|
}) => void;
|
|
477
|
+
getNativeElement: () => any;
|
|
472
478
|
ngOnDestroy(): void;
|
|
473
479
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFilterComponent, never>;
|
|
474
480
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyFilterComponent, "bizy-filter", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "opened": { "alias": "opened"; "required": false; }; }, { "onOpen": "onOpen"; "onChange": "onChange"; }, ["sections"], ["*", "bizy-filter-section", "bizy-filter-content"], true, never>;
|
|
@@ -476,8 +482,6 @@ declare class BizyFilterComponent {
|
|
|
476
482
|
|
|
477
483
|
declare class BizyFilterSectionComponent {
|
|
478
484
|
#private;
|
|
479
|
-
private document;
|
|
480
|
-
private ref;
|
|
481
485
|
private checkboxOptions;
|
|
482
486
|
private rangeOption;
|
|
483
487
|
private searchOption;
|
|
@@ -486,33 +490,35 @@ declare class BizyFilterSectionComponent {
|
|
|
486
490
|
customClass: string;
|
|
487
491
|
onSelect: EventEmitter<boolean>;
|
|
488
492
|
_activated: boolean;
|
|
489
|
-
constructor(document: Document, ref: ChangeDetectorRef);
|
|
490
493
|
ngAfterViewInit(): void;
|
|
491
494
|
_onSelect: (selected: boolean) => void;
|
|
492
495
|
onClean: () => void;
|
|
493
496
|
isActivated: () => boolean;
|
|
494
497
|
getId: () => string;
|
|
498
|
+
getNativeElement: () => any;
|
|
495
499
|
ngOnDestroy(): void;
|
|
496
500
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFilterSectionComponent, never>;
|
|
497
501
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyFilterSectionComponent, "bizy-filter-section", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, { "onSelect": "onSelect"; }, ["rangeOption", "searchOption", "checkboxOptions"], ["[slot=header]", "bizy-filter-section-checkbox-option", "bizy-filter-section-range-option", "bizy-filter-section-search-option"], true, never>;
|
|
498
502
|
}
|
|
499
503
|
|
|
500
504
|
declare class BizyFilterContentComponent {
|
|
505
|
+
#private;
|
|
506
|
+
getNativeElement: () => any;
|
|
501
507
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFilterContentComponent, never>;
|
|
502
508
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyFilterContentComponent, "bizy-filter-content", never, {}, {}, never, ["*"], true, never>;
|
|
503
509
|
}
|
|
504
510
|
|
|
505
511
|
declare class BizyFilterSectionCheckboxOptionComponent {
|
|
506
|
-
private
|
|
512
|
+
#private;
|
|
507
513
|
id: string;
|
|
508
514
|
disabled: boolean;
|
|
509
515
|
customClass: string;
|
|
510
516
|
onChange: EventEmitter<boolean>;
|
|
511
517
|
set selected(selected: boolean);
|
|
512
518
|
_selected: boolean;
|
|
513
|
-
constructor(ref: ChangeDetectorRef);
|
|
514
519
|
onSelect: (selected: boolean) => void;
|
|
515
520
|
getSelected: () => boolean;
|
|
521
|
+
getNativeElement: () => any;
|
|
516
522
|
getId: () => string;
|
|
517
523
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFilterSectionCheckboxOptionComponent, never>;
|
|
518
524
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyFilterSectionCheckboxOptionComponent, "bizy-filter-section-checkbox-option", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "onChange": "onChange"; }, never, ["*"], true, never>;
|
|
@@ -540,6 +546,7 @@ declare class BizyFilterSectionRangeOptionComponent {
|
|
|
540
546
|
get maxValue(): AbstractControl<number | string>;
|
|
541
547
|
onClean: () => void;
|
|
542
548
|
getId: () => string;
|
|
549
|
+
getNativeElement: () => any;
|
|
543
550
|
isActivated: () => boolean;
|
|
544
551
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFilterSectionRangeOptionComponent, never>;
|
|
545
552
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyFilterSectionRangeOptionComponent, "bizy-filter-section-range-option", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "minLimit": { "alias": "minLimit"; "required": false; }; "maxLimit": { "alias": "maxLimit"; "required": false; }; }, { "onChange": "onChange"; }, never, ["[slot=min-header]", "[slot=max-header]"], true, never>;
|
|
@@ -547,7 +554,6 @@ declare class BizyFilterSectionRangeOptionComponent {
|
|
|
547
554
|
|
|
548
555
|
declare class BizyFilterSectionSearchOptionComponent {
|
|
549
556
|
#private;
|
|
550
|
-
private ref;
|
|
551
557
|
id: string;
|
|
552
558
|
customClass: string;
|
|
553
559
|
valueChange: EventEmitter<string>;
|
|
@@ -555,16 +561,18 @@ declare class BizyFilterSectionSearchOptionComponent {
|
|
|
555
561
|
_value: string;
|
|
556
562
|
get activated$(): Observable<boolean>;
|
|
557
563
|
set value(value: string);
|
|
558
|
-
constructor(ref: ChangeDetectorRef);
|
|
559
564
|
_onChange(value: string): void;
|
|
560
565
|
getId: () => string;
|
|
561
566
|
getValue: () => string;
|
|
567
|
+
getNativeElement: () => any;
|
|
562
568
|
isActivated: () => boolean;
|
|
563
569
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFilterSectionSearchOptionComponent, never>;
|
|
564
570
|
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>;
|
|
565
571
|
}
|
|
566
572
|
|
|
567
573
|
declare class BizyFilterSectionsComponent {
|
|
574
|
+
#private;
|
|
575
|
+
getNativeElement: () => any;
|
|
568
576
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFilterSectionsComponent, never>;
|
|
569
577
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyFilterSectionsComponent, "bizy-filter-sections", never, {}, {}, never, ["*"], true, never>;
|
|
570
578
|
}
|
|
@@ -594,23 +602,22 @@ declare class BizyFilterModule {
|
|
|
594
602
|
}
|
|
595
603
|
|
|
596
604
|
declare class BizyInputOptionComponent {
|
|
597
|
-
private
|
|
605
|
+
#private;
|
|
598
606
|
id: string;
|
|
599
607
|
disabled: boolean;
|
|
600
608
|
customClass: string;
|
|
601
609
|
selected: boolean;
|
|
602
610
|
onSelect: EventEmitter<PointerEvent>;
|
|
603
|
-
constructor(ref: ChangeDetectorRef);
|
|
604
611
|
_onSelect(event: PointerEvent): void;
|
|
605
612
|
getId: () => string;
|
|
606
613
|
getSelected: () => boolean;
|
|
614
|
+
getNativeElement: () => any;
|
|
607
615
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyInputOptionComponent, never>;
|
|
608
616
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyInputOptionComponent, "bizy-input-option", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "onSelect": "onSelect"; }, never, ["*"], true, never>;
|
|
609
617
|
}
|
|
610
618
|
|
|
611
619
|
declare class BizyInputComponent implements OnDestroy {
|
|
612
620
|
#private;
|
|
613
|
-
private ref;
|
|
614
621
|
options: QueryList<BizyInputOptionComponent>;
|
|
615
622
|
bizyInputWrapper: ElementRef;
|
|
616
623
|
bizyInput: ElementRef;
|
|
@@ -639,7 +646,6 @@ declare class BizyInputComponent implements OnDestroy {
|
|
|
639
646
|
_currencyValue: number | null;
|
|
640
647
|
currencyOptions: string;
|
|
641
648
|
onChange$: Subject<string | number>;
|
|
642
|
-
constructor(ref: ChangeDetectorRef);
|
|
643
649
|
getWidth(): number;
|
|
644
650
|
_onchange(value: string): void;
|
|
645
651
|
_onClick(event: PointerEvent): void;
|
|
@@ -657,24 +663,23 @@ declare class BizyInputComponent implements OnDestroy {
|
|
|
657
663
|
};
|
|
658
664
|
}, button?: HTMLButtonElement) => void;
|
|
659
665
|
ngOnDestroy(): void;
|
|
666
|
+
getNativeElement: () => any;
|
|
660
667
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyInputComponent, never>;
|
|
661
668
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyInputComponent, "bizy-input", never, { "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "type": { "alias": "type"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "onChange": "onChange"; "onEnter": "onEnter"; "onBackspace": "onBackspace"; "onSelect": "onSelect"; "onBlur": "onBlur"; "onFocus": "onFocus"; }, ["options"], ["[slot=header]", "[slot=prefix]", "[slot=suffix]", "bizy-input-option", "[slot=error]"], true, never>;
|
|
662
669
|
}
|
|
663
670
|
|
|
664
671
|
declare class BizySelectOptionComponent {
|
|
665
672
|
#private;
|
|
666
|
-
private elementRef;
|
|
667
|
-
private ref;
|
|
668
673
|
id: string;
|
|
669
674
|
disabled: boolean;
|
|
670
675
|
customClass: string;
|
|
671
676
|
onSelect: EventEmitter<void>;
|
|
672
677
|
set selected(selected: boolean);
|
|
673
678
|
get selected$(): Observable<boolean>;
|
|
674
|
-
constructor(elementRef: ElementRef, ref: ChangeDetectorRef);
|
|
675
679
|
_onSelect(): void;
|
|
676
680
|
getId: () => string;
|
|
677
681
|
getSelected: () => boolean;
|
|
682
|
+
getNativeElement: () => any;
|
|
678
683
|
getValue: () => string;
|
|
679
684
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySelectOptionComponent, never>;
|
|
680
685
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizySelectOptionComponent, "bizy-select-option", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "onSelect": "onSelect"; }, never, ["*"], true, never>;
|
|
@@ -682,7 +687,6 @@ declare class BizySelectOptionComponent {
|
|
|
682
687
|
|
|
683
688
|
declare class BizySelectComponent implements AfterViewInit {
|
|
684
689
|
#private;
|
|
685
|
-
private ref;
|
|
686
690
|
templatePortalContent: TemplateRef<unknown>;
|
|
687
691
|
options: QueryList<BizySelectOptionComponent>;
|
|
688
692
|
bizyInput: BizyInputComponent;
|
|
@@ -698,7 +702,6 @@ declare class BizySelectComponent implements AfterViewInit {
|
|
|
698
702
|
_optionValue: string;
|
|
699
703
|
optionPortal: Portal<any>;
|
|
700
704
|
templatePortal: TemplatePortal<any> | null;
|
|
701
|
-
constructor(ref: ChangeDetectorRef);
|
|
702
705
|
get touched(): boolean;
|
|
703
706
|
ngAfterViewInit(): void;
|
|
704
707
|
_onOpen(event: PointerEvent): void;
|
|
@@ -708,12 +711,14 @@ declare class BizySelectComponent implements AfterViewInit {
|
|
|
708
711
|
};
|
|
709
712
|
}, select?: BizyInputComponent) => void;
|
|
710
713
|
setTouched(touched: boolean): void;
|
|
714
|
+
getNativeElement: () => any;
|
|
711
715
|
ngOnDestroy(): void;
|
|
712
716
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySelectComponent, never>;
|
|
713
717
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizySelectComponent, "bizy-select", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "opened": { "alias": "opened"; "required": false; }; }, { "openedChange": "openedChange"; "onSelect": "onSelect"; "onOpen": "onOpen"; }, ["options"], ["[slot=header]", "[slot=prefix]", "[slot=error]", "bizy-select-option", "bizy-input"], true, never>;
|
|
714
718
|
}
|
|
715
719
|
|
|
716
720
|
declare class BizyFormComponent {
|
|
721
|
+
#private;
|
|
717
722
|
inputs: QueryList<BizyInputComponent>;
|
|
718
723
|
selects: QueryList<BizySelectComponent>;
|
|
719
724
|
datePickers: QueryList<BizyDatePickerComponent>;
|
|
@@ -721,6 +726,7 @@ declare class BizyFormComponent {
|
|
|
721
726
|
customClass: string;
|
|
722
727
|
onSubmit(event: Event): void;
|
|
723
728
|
setTouched: () => void;
|
|
729
|
+
getNativeElement: () => any;
|
|
724
730
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFormComponent, never>;
|
|
725
731
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyFormComponent, "bizy-form", never, { "id": { "alias": "id"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, {}, ["inputs", "selects", "datePickers"], ["*"], true, never>;
|
|
726
732
|
}
|
|
@@ -743,10 +749,6 @@ declare class BizyGridForDirective {
|
|
|
743
749
|
|
|
744
750
|
declare class BizyGridComponent implements AfterContentInit {
|
|
745
751
|
#private;
|
|
746
|
-
private ref;
|
|
747
|
-
private document;
|
|
748
|
-
private renderer;
|
|
749
|
-
private elementRef;
|
|
750
752
|
private virtualScroll;
|
|
751
753
|
content: TemplateRef<object>;
|
|
752
754
|
gridDirective: BizyGridForDirective;
|
|
@@ -757,11 +759,11 @@ declare class BizyGridComponent implements AfterContentInit {
|
|
|
757
759
|
items: Array<unknown>;
|
|
758
760
|
itemTemplate: TemplateRef<unknown>;
|
|
759
761
|
itemsPerRow: number;
|
|
760
|
-
constructor(ref: ChangeDetectorRef, document: Document, renderer: Renderer2, elementRef: ElementRef);
|
|
761
762
|
ngAfterContentInit(): void;
|
|
762
763
|
trackById(index: number, item: any): any;
|
|
763
764
|
scrollTo(index: number, behavior?: 'auto' | 'instant' | 'smooth'): void;
|
|
764
765
|
ngOnDestroy(): void;
|
|
766
|
+
getNativeElement: () => any;
|
|
765
767
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyGridComponent, never>;
|
|
766
768
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyGridComponent, "bizy-grid", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; }, {}, ["gridDirective"], ["*"], true, never>;
|
|
767
769
|
}
|
|
@@ -770,6 +772,7 @@ declare class BizyGridRowComponent {
|
|
|
770
772
|
#private;
|
|
771
773
|
rowHeight: number;
|
|
772
774
|
set itemsPerRow(itemsPerRow: number);
|
|
775
|
+
getNativeElement: () => any;
|
|
773
776
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyGridRowComponent, never>;
|
|
774
777
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyGridRowComponent, "bizy-grid-row", never, { "rowHeight": { "alias": "rowHeight"; "required": false; }; "itemsPerRow": { "alias": "itemsPerRow"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
775
778
|
}
|
|
@@ -787,7 +790,9 @@ declare class BizyInputModule {
|
|
|
787
790
|
}
|
|
788
791
|
|
|
789
792
|
declare class BizyListComponent {
|
|
793
|
+
#private;
|
|
790
794
|
id: string;
|
|
795
|
+
getNativeElement: () => any;
|
|
791
796
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyListComponent, never>;
|
|
792
797
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyListComponent, "bizy-list", never, { "id": { "alias": "id"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
793
798
|
}
|
|
@@ -799,6 +804,7 @@ declare class BizyListModule {
|
|
|
799
804
|
}
|
|
800
805
|
|
|
801
806
|
declare class BizyMenuOptionComponent {
|
|
807
|
+
#private;
|
|
802
808
|
id: string;
|
|
803
809
|
disabled: boolean;
|
|
804
810
|
customClass: string;
|
|
@@ -813,6 +819,7 @@ declare class BizyMenuOptionComponent {
|
|
|
813
819
|
id: string;
|
|
814
820
|
};
|
|
815
821
|
}): void;
|
|
822
|
+
getNativeElement: () => any;
|
|
816
823
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyMenuOptionComponent, never>;
|
|
817
824
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyMenuOptionComponent, "bizy-menu-option", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "onSelect": "onSelect"; }, never, ["*", "bizy-menu"], true, never>;
|
|
818
825
|
}
|
|
@@ -837,14 +844,17 @@ declare class BizyMenuComponent {
|
|
|
837
844
|
id: string;
|
|
838
845
|
};
|
|
839
846
|
}) => void;
|
|
847
|
+
getNativeElement: () => any;
|
|
840
848
|
ngOnDestroy(): void;
|
|
841
849
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyMenuComponent, never>;
|
|
842
850
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyMenuComponent, "bizy-menu", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "offsetX": { "alias": "offsetX"; "required": false; }; "offsetY": { "alias": "offsetY"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "hideArrow": { "alias": "hideArrow"; "required": false; }; "opened": { "alias": "opened"; "required": false; }; }, { "onSelect": "onSelect"; }, ["options"], ["*", "bizy-menu-title", "bizy-input", "bizy-menu-option"], true, never>;
|
|
843
851
|
}
|
|
844
852
|
|
|
845
853
|
declare class BizyMenuTitleComponent {
|
|
854
|
+
#private;
|
|
846
855
|
id: string;
|
|
847
856
|
customClass: string;
|
|
857
|
+
getNativeElement: () => any;
|
|
848
858
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyMenuTitleComponent, never>;
|
|
849
859
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyMenuTitleComponent, "bizy-menu-title", never, { "id": { "alias": "id"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
850
860
|
}
|
|
@@ -863,10 +873,6 @@ interface IBizyPieChartData {
|
|
|
863
873
|
|
|
864
874
|
declare class BizyPieChartComponent {
|
|
865
875
|
#private;
|
|
866
|
-
private elementRef;
|
|
867
|
-
private document;
|
|
868
|
-
private ref;
|
|
869
|
-
private renderer;
|
|
870
876
|
resizeRef: HTMLElement | null;
|
|
871
877
|
tooltip: boolean;
|
|
872
878
|
type: 'pie' | 'donut';
|
|
@@ -879,8 +885,8 @@ declare class BizyPieChartComponent {
|
|
|
879
885
|
onTooltipFormatter: (item: any) => string;
|
|
880
886
|
onSelect: EventEmitter<string>;
|
|
881
887
|
onDownload: EventEmitter<void>;
|
|
882
|
-
constructor(elementRef: ElementRef, document: Document, ref: ChangeDetectorRef, renderer: Renderer2);
|
|
883
888
|
ngAfterViewInit(): void;
|
|
889
|
+
getNativeElement: () => any;
|
|
884
890
|
set data(data: Array<IBizyPieChartData>);
|
|
885
891
|
ngOnDestroy(): void;
|
|
886
892
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyPieChartComponent, never>;
|
|
@@ -902,6 +908,7 @@ declare class BizyFullScreenPopupWrapperComponent<T> {
|
|
|
902
908
|
ngOnInit(): void;
|
|
903
909
|
ngAfterViewInit(): void;
|
|
904
910
|
loadDynamicComponent: () => void;
|
|
911
|
+
getNativeElement: () => any;
|
|
905
912
|
close(): Promise<void>;
|
|
906
913
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFullScreenPopupWrapperComponent<any>, never>;
|
|
907
914
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyFullScreenPopupWrapperComponent<any>, "bizy-full-screen-popup-wrapper", never, {}, {}, never, never, true, never>;
|
|
@@ -921,6 +928,7 @@ declare class BizyPopupWrapperComponent<T> {
|
|
|
921
928
|
} | null;
|
|
922
929
|
ngOnInit(): void;
|
|
923
930
|
ngAfterViewInit(): void;
|
|
931
|
+
getNativeElement: () => any;
|
|
924
932
|
loadDynamicComponent: () => void;
|
|
925
933
|
close(): Promise<void>;
|
|
926
934
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyPopupWrapperComponent<any>, never>;
|
|
@@ -974,8 +982,10 @@ declare class BizyPopupService {
|
|
|
974
982
|
}
|
|
975
983
|
|
|
976
984
|
declare class BizyProgressBarComponent {
|
|
985
|
+
#private;
|
|
977
986
|
id: string;
|
|
978
987
|
progress: number | null;
|
|
988
|
+
getNativeElement: () => any;
|
|
979
989
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyProgressBarComponent, never>;
|
|
980
990
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyProgressBarComponent, "bizy-progress-bar", never, { "id": { "alias": "id"; "required": false; }; "progress": { "alias": "progress"; "required": false; }; }, {}, never, never, true, never>;
|
|
981
991
|
}
|
|
@@ -987,6 +997,7 @@ declare class BizyProgressBarModule {
|
|
|
987
997
|
}
|
|
988
998
|
|
|
989
999
|
declare class BizyRadioComponent {
|
|
1000
|
+
#private;
|
|
990
1001
|
id: string;
|
|
991
1002
|
name: string;
|
|
992
1003
|
selected: boolean;
|
|
@@ -994,6 +1005,7 @@ declare class BizyRadioComponent {
|
|
|
994
1005
|
selectedChange: EventEmitter<boolean>;
|
|
995
1006
|
onSelect: EventEmitter<PointerEvent>;
|
|
996
1007
|
_onSelect(event: PointerEvent): void;
|
|
1008
|
+
getNativeElement: () => any;
|
|
997
1009
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyRadioComponent, never>;
|
|
998
1010
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyRadioComponent, "bizy-radio", never, { "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "selectedChange": "selectedChange"; "onSelect": "onSelect"; }, never, ["[slot=start]", "[slot=end]"], true, never>;
|
|
999
1011
|
}
|
|
@@ -1005,25 +1017,33 @@ declare class BizyRadioModule {
|
|
|
1005
1017
|
}
|
|
1006
1018
|
|
|
1007
1019
|
declare class BizySectionComponent {
|
|
1020
|
+
#private;
|
|
1008
1021
|
id: string;
|
|
1022
|
+
getNativeElement: () => any;
|
|
1009
1023
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySectionComponent, never>;
|
|
1010
1024
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizySectionComponent, "bizy-section", never, { "id": { "alias": "id"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1011
1025
|
}
|
|
1012
1026
|
|
|
1013
1027
|
declare class BizySectionStartComponent {
|
|
1028
|
+
#private;
|
|
1014
1029
|
id: string;
|
|
1030
|
+
getNativeElement: () => any;
|
|
1015
1031
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySectionStartComponent, never>;
|
|
1016
1032
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizySectionStartComponent, "bizy-section-start", never, { "id": { "alias": "id"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1017
1033
|
}
|
|
1018
1034
|
|
|
1019
1035
|
declare class BizySectionCenterComponent {
|
|
1036
|
+
#private;
|
|
1020
1037
|
id: string;
|
|
1038
|
+
getNativeElement: () => any;
|
|
1021
1039
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySectionCenterComponent, never>;
|
|
1022
1040
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizySectionCenterComponent, "bizy-section-center", never, { "id": { "alias": "id"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1023
1041
|
}
|
|
1024
1042
|
|
|
1025
1043
|
declare class BizySectionEndComponent {
|
|
1044
|
+
#private;
|
|
1026
1045
|
id: string;
|
|
1046
|
+
getNativeElement: () => any;
|
|
1027
1047
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySectionEndComponent, never>;
|
|
1028
1048
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizySectionEndComponent, "bizy-section-end", never, { "id": { "alias": "id"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1029
1049
|
}
|
|
@@ -1041,7 +1061,7 @@ declare class BizySelectModule {
|
|
|
1041
1061
|
}
|
|
1042
1062
|
|
|
1043
1063
|
declare class BizySidebarOptionComponent {
|
|
1044
|
-
private
|
|
1064
|
+
#private;
|
|
1045
1065
|
options: QueryList<BizySidebarOptionComponent>;
|
|
1046
1066
|
id: string;
|
|
1047
1067
|
disabled: boolean;
|
|
@@ -1052,10 +1072,10 @@ declare class BizySidebarOptionComponent {
|
|
|
1052
1072
|
_turnOn$: BehaviorSubject<boolean>;
|
|
1053
1073
|
_selected: boolean;
|
|
1054
1074
|
set selected(selected: boolean);
|
|
1055
|
-
constructor(ref: ChangeDetectorRef);
|
|
1056
1075
|
_onSelect(event: PointerEvent): void;
|
|
1057
1076
|
_setSelected(selected: boolean): void;
|
|
1058
1077
|
getId: () => string;
|
|
1078
|
+
getNativeElement: () => any;
|
|
1059
1079
|
getSelected: () => boolean;
|
|
1060
1080
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySidebarOptionComponent, never>;
|
|
1061
1081
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizySidebarOptionComponent, "bizy-sidebar-option", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "selectedChange": "selectedChange"; "onSelect": "onSelect"; }, ["options"], ["*", "bizy-sidebar-option"], true, never>;
|
|
@@ -1063,7 +1083,6 @@ declare class BizySidebarOptionComponent {
|
|
|
1063
1083
|
|
|
1064
1084
|
declare class BizySidebarFloatingOptionComponent implements AfterContentInit {
|
|
1065
1085
|
#private;
|
|
1066
|
-
private ref;
|
|
1067
1086
|
options: QueryList<BizySidebarOptionComponent>;
|
|
1068
1087
|
id: string;
|
|
1069
1088
|
disabled: boolean;
|
|
@@ -1077,8 +1096,8 @@ declare class BizySidebarFloatingOptionComponent implements AfterContentInit {
|
|
|
1077
1096
|
_selected: boolean;
|
|
1078
1097
|
_opened: boolean;
|
|
1079
1098
|
set selected(selected: boolean);
|
|
1080
|
-
constructor(ref: ChangeDetectorRef);
|
|
1081
1099
|
ngAfterContentInit(): void;
|
|
1100
|
+
getNativeElement: () => any;
|
|
1082
1101
|
_onSelect(event: PointerEvent): void;
|
|
1083
1102
|
close: (event: PointerEvent & {
|
|
1084
1103
|
target: {
|
|
@@ -1102,6 +1121,7 @@ declare class BizySidebarComponent implements AfterContentInit {
|
|
|
1102
1121
|
_toggle: boolean;
|
|
1103
1122
|
set toggle(toggle: boolean);
|
|
1104
1123
|
ngAfterContentInit(): void;
|
|
1124
|
+
getNativeElement: () => any;
|
|
1105
1125
|
_onToggle(event: PointerEvent): void;
|
|
1106
1126
|
ngOnDestroy(): void;
|
|
1107
1127
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySidebarComponent, never>;
|
|
@@ -1109,8 +1129,10 @@ declare class BizySidebarComponent implements AfterContentInit {
|
|
|
1109
1129
|
}
|
|
1110
1130
|
|
|
1111
1131
|
declare class BizySidebarFloatingOptionTitleComponent {
|
|
1132
|
+
#private;
|
|
1112
1133
|
id: string;
|
|
1113
1134
|
customClass: string;
|
|
1135
|
+
getNativeElement: () => any;
|
|
1114
1136
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySidebarFloatingOptionTitleComponent, never>;
|
|
1115
1137
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizySidebarFloatingOptionTitleComponent, "bizy-sidebar-floating-option-title", never, { "id": { "alias": "id"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1116
1138
|
}
|
|
@@ -1127,12 +1149,14 @@ declare enum BIZY_SKELETON_SHAPE {
|
|
|
1127
1149
|
}
|
|
1128
1150
|
|
|
1129
1151
|
declare class BizySkeletonComponent {
|
|
1152
|
+
#private;
|
|
1130
1153
|
id: string;
|
|
1131
1154
|
shape: BIZY_SKELETON_SHAPE;
|
|
1132
1155
|
height: string;
|
|
1133
1156
|
width: string;
|
|
1134
1157
|
customClass: string;
|
|
1135
1158
|
readonly BIZY_SKELETON_SHAPE: typeof BIZY_SKELETON_SHAPE;
|
|
1159
|
+
getNativeElement: () => any;
|
|
1136
1160
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySkeletonComponent, never>;
|
|
1137
1161
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizySkeletonComponent, "bizy-skeleton", never, { "id": { "alias": "id"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "height": { "alias": "height"; "required": false; }; "width": { "alias": "width"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, {}, never, never, true, never>;
|
|
1138
1162
|
}
|
|
@@ -1144,6 +1168,7 @@ declare class BizySkeletonModule {
|
|
|
1144
1168
|
}
|
|
1145
1169
|
|
|
1146
1170
|
declare class BizySliderComponent {
|
|
1171
|
+
#private;
|
|
1147
1172
|
fromSlider: ElementRef;
|
|
1148
1173
|
toSlider: ElementRef;
|
|
1149
1174
|
minLimit: number;
|
|
@@ -1157,6 +1182,7 @@ declare class BizySliderComponent {
|
|
|
1157
1182
|
set min(min: number);
|
|
1158
1183
|
set max(max: number);
|
|
1159
1184
|
setFromSlider(value: number): void;
|
|
1185
|
+
getNativeElement: () => any;
|
|
1160
1186
|
setToSlider(value: number): void;
|
|
1161
1187
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySliderComponent, never>;
|
|
1162
1188
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizySliderComponent, "bizy-slider", never, { "minLimit": { "alias": "minLimit"; "required": false; }; "maxLimit": { "alias": "maxLimit"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
@@ -1176,14 +1202,14 @@ declare class BizyTableColumnComponent {
|
|
|
1176
1202
|
onSelect: EventEmitter<PointerEvent>;
|
|
1177
1203
|
onRightClick(event: MouseEvent): void;
|
|
1178
1204
|
getId: () => string;
|
|
1205
|
+
getNativeElement: () => any;
|
|
1179
1206
|
setMarginLeft(margin: number): void;
|
|
1180
1207
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTableColumnComponent, never>;
|
|
1181
1208
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyTableColumnComponent, "bizy-table-column", never, { "id": { "alias": "id"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, { "contextMenu": "contextMenu"; "onSelect": "onSelect"; }, never, ["*"], true, never>;
|
|
1182
1209
|
}
|
|
1183
1210
|
|
|
1184
1211
|
declare class BizyTableHeaderComponent {
|
|
1185
|
-
private
|
|
1186
|
-
elementRef: ElementRef;
|
|
1212
|
+
#private;
|
|
1187
1213
|
columns: QueryList<BizyTableColumnComponent>;
|
|
1188
1214
|
id: string;
|
|
1189
1215
|
customClass: string;
|
|
@@ -1192,8 +1218,8 @@ declare class BizyTableHeaderComponent {
|
|
|
1192
1218
|
selectedChange: EventEmitter<boolean>;
|
|
1193
1219
|
onSelect: EventEmitter<PointerEvent>;
|
|
1194
1220
|
marginRight: number;
|
|
1195
|
-
constructor(ref: ChangeDetectorRef, elementRef: ElementRef);
|
|
1196
1221
|
getId: () => string;
|
|
1222
|
+
getNativeElement: () => any;
|
|
1197
1223
|
getSelected: () => boolean;
|
|
1198
1224
|
setSelectable: (selectable: boolean) => void;
|
|
1199
1225
|
setMarginRight(margin: number): void;
|
|
@@ -1203,16 +1229,15 @@ declare class BizyTableHeaderComponent {
|
|
|
1203
1229
|
}
|
|
1204
1230
|
|
|
1205
1231
|
declare class BizyTableFooterComponent {
|
|
1206
|
-
private
|
|
1207
|
-
elementRef: ElementRef;
|
|
1232
|
+
#private;
|
|
1208
1233
|
columns: QueryList<BizyTableColumnComponent>;
|
|
1209
1234
|
id: string;
|
|
1210
1235
|
customClass: string;
|
|
1211
1236
|
marginRight: number;
|
|
1212
1237
|
_selectable: boolean;
|
|
1213
|
-
constructor(ref: ChangeDetectorRef, elementRef: ElementRef);
|
|
1214
1238
|
getId: () => string;
|
|
1215
1239
|
setSelectable: (selectable: boolean) => void;
|
|
1240
|
+
getNativeElement: () => any;
|
|
1216
1241
|
setMarginRight(margin: number): void;
|
|
1217
1242
|
setMarginLeft(margin: number): void;
|
|
1218
1243
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTableFooterComponent, never>;
|
|
@@ -1220,7 +1245,7 @@ declare class BizyTableFooterComponent {
|
|
|
1220
1245
|
}
|
|
1221
1246
|
|
|
1222
1247
|
declare class BizyTableRowComponent {
|
|
1223
|
-
private
|
|
1248
|
+
#private;
|
|
1224
1249
|
columns: QueryList<BizyTableColumnComponent>;
|
|
1225
1250
|
id: string;
|
|
1226
1251
|
customClass: string;
|
|
@@ -1233,7 +1258,7 @@ declare class BizyTableRowComponent {
|
|
|
1233
1258
|
openedChange: EventEmitter<boolean>;
|
|
1234
1259
|
onOpen: EventEmitter<PointerEvent>;
|
|
1235
1260
|
marginRight: number;
|
|
1236
|
-
|
|
1261
|
+
getNativeElement: () => any;
|
|
1237
1262
|
_onOpen(event: PointerEvent): void;
|
|
1238
1263
|
getId: () => string;
|
|
1239
1264
|
getSelected: () => boolean;
|
|
@@ -1259,17 +1284,14 @@ declare class BizyTableScrollingDirective {
|
|
|
1259
1284
|
|
|
1260
1285
|
declare class BizyTableScrollingComponent implements OnDestroy {
|
|
1261
1286
|
#private;
|
|
1262
|
-
private document;
|
|
1263
|
-
elementRef: ElementRef;
|
|
1264
|
-
ref: ChangeDetectorRef;
|
|
1265
1287
|
viewport: CdkVirtualScrollViewport;
|
|
1266
1288
|
content: TemplateRef<object>;
|
|
1267
1289
|
items$: Observable<Array<unknown>>;
|
|
1268
1290
|
itemTemplate: TemplateRef<BizyTableRowComponent>;
|
|
1269
1291
|
itemSize: number;
|
|
1270
|
-
constructor(document: Document, elementRef: ElementRef, ref: ChangeDetectorRef);
|
|
1271
1292
|
/** Called by the virtual-for directive inside of the viewport. */
|
|
1272
1293
|
attachView(tableDirective: BizyTableScrollingDirective): void;
|
|
1294
|
+
getNativeElement: () => any;
|
|
1273
1295
|
ngOnDestroy(): void;
|
|
1274
1296
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTableScrollingComponent, never>;
|
|
1275
1297
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyTableScrollingComponent, "bizy-table-scrolling", never, {}, {}, never, ["*"], true, never>;
|
|
@@ -1277,10 +1299,6 @@ declare class BizyTableScrollingComponent implements OnDestroy {
|
|
|
1277
1299
|
|
|
1278
1300
|
declare class BizyTableComponent implements AfterContentInit {
|
|
1279
1301
|
#private;
|
|
1280
|
-
private ref;
|
|
1281
|
-
private document;
|
|
1282
|
-
private renderer;
|
|
1283
|
-
private elementRef;
|
|
1284
1302
|
viewport: BizyTableScrollingComponent;
|
|
1285
1303
|
virtualFor: BizyTableScrollingDirective;
|
|
1286
1304
|
rows: QueryList<BizyTableRowComponent>;
|
|
@@ -1291,22 +1309,26 @@ declare class BizyTableComponent implements AfterContentInit {
|
|
|
1291
1309
|
marginRight: number;
|
|
1292
1310
|
marginLeft: number;
|
|
1293
1311
|
set selectable(selectable: boolean);
|
|
1294
|
-
constructor(ref: ChangeDetectorRef, document: Document, renderer: Renderer2, elementRef: ElementRef);
|
|
1295
1312
|
ngAfterContentInit(): void;
|
|
1296
1313
|
ngOnDestroy(): void;
|
|
1314
|
+
getNativeElement: () => any;
|
|
1297
1315
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTableComponent, never>;
|
|
1298
1316
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyTableComponent, "bizy-table", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; }, {}, ["virtualFor", "rows", "headers", "footers"], ["bizy-table-header", "bizy-table-row", "bizy-table-footer"], true, never>;
|
|
1299
1317
|
}
|
|
1300
1318
|
|
|
1301
1319
|
declare class BizyTableColumnArrowsComponent {
|
|
1320
|
+
#private;
|
|
1302
1321
|
order: 'asc' | 'desc' | null;
|
|
1303
1322
|
show: boolean;
|
|
1304
1323
|
customClass: string;
|
|
1324
|
+
getNativeElement: () => any;
|
|
1305
1325
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTableColumnArrowsComponent, never>;
|
|
1306
1326
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyTableColumnArrowsComponent, "bizy-table-column-arrows", never, { "order": { "alias": "order"; "required": false; }; "show": { "alias": "show"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, {}, never, never, true, never>;
|
|
1307
1327
|
}
|
|
1308
1328
|
|
|
1309
1329
|
declare class BizyTableRowExpandContentComponent {
|
|
1330
|
+
#private;
|
|
1331
|
+
getNativeElement: () => any;
|
|
1310
1332
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTableRowExpandContentComponent, never>;
|
|
1311
1333
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyTableRowExpandContentComponent, "bizy-table-row-expand-content", never, {}, {}, never, ["*"], true, never>;
|
|
1312
1334
|
}
|
|
@@ -1327,7 +1349,7 @@ declare class BizyTableModule {
|
|
|
1327
1349
|
}
|
|
1328
1350
|
|
|
1329
1351
|
declare class BizyTabComponent {
|
|
1330
|
-
|
|
1352
|
+
#private;
|
|
1331
1353
|
id: string;
|
|
1332
1354
|
disabled: boolean;
|
|
1333
1355
|
selected: boolean;
|
|
@@ -1335,26 +1357,25 @@ declare class BizyTabComponent {
|
|
|
1335
1357
|
customClass: string;
|
|
1336
1358
|
selectedChange: EventEmitter<boolean>;
|
|
1337
1359
|
onSelect: EventEmitter<PointerEvent>;
|
|
1338
|
-
constructor(elementRef: ElementRef);
|
|
1339
1360
|
_onSelect(event: PointerEvent): void;
|
|
1361
|
+
getNativeElement: () => any;
|
|
1340
1362
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTabComponent, never>;
|
|
1341
1363
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyTabComponent, "bizy-tab", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "linePosition": { "alias": "linePosition"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, { "selectedChange": "selectedChange"; "onSelect": "onSelect"; }, never, ["*"], true, never>;
|
|
1342
1364
|
}
|
|
1343
1365
|
|
|
1344
1366
|
declare class BizyTabsComponent implements AfterViewInit, AfterContentInit {
|
|
1345
1367
|
#private;
|
|
1346
|
-
private ref;
|
|
1347
1368
|
tabs: QueryList<BizyTabComponent>;
|
|
1348
1369
|
private bizyTabs;
|
|
1349
1370
|
private bizyTabsWrapper;
|
|
1350
1371
|
customClass: string;
|
|
1351
1372
|
showLeftButton: boolean;
|
|
1352
1373
|
showRightButton: boolean;
|
|
1353
|
-
constructor(ref: ChangeDetectorRef);
|
|
1354
1374
|
ngAfterViewInit(): void;
|
|
1355
1375
|
ngAfterContentInit(): void;
|
|
1356
1376
|
onScrollLeft(): void;
|
|
1357
1377
|
onScrollRight(): void;
|
|
1378
|
+
getNativeElement: () => any;
|
|
1358
1379
|
ngOnDestroy(): void;
|
|
1359
1380
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTabsComponent, never>;
|
|
1360
1381
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyTabsComponent, "bizy-tabs", never, { "customClass": { "alias": "customClass"; "required": false; }; }, {}, ["tabs"], ["bizy-tab"], true, never>;
|
|
@@ -1375,6 +1396,7 @@ declare enum BIZY_TAG_TYPE {
|
|
|
1375
1396
|
}
|
|
1376
1397
|
|
|
1377
1398
|
declare class BizyTagComponent {
|
|
1399
|
+
#private;
|
|
1378
1400
|
id: string;
|
|
1379
1401
|
customClass: string;
|
|
1380
1402
|
disabled: boolean;
|
|
@@ -1382,6 +1404,7 @@ declare class BizyTagComponent {
|
|
|
1382
1404
|
onSelect: EventEmitter<PointerEvent>;
|
|
1383
1405
|
_focused: boolean;
|
|
1384
1406
|
_onSelect(event: PointerEvent): void;
|
|
1407
|
+
getNativeElement: () => any;
|
|
1385
1408
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTagComponent, never>;
|
|
1386
1409
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyTagComponent, "bizy-tag", never, { "id": { "alias": "id"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "onSelect": "onSelect"; }, never, ["*"], true, never>;
|
|
1387
1410
|
}
|
|
@@ -1393,13 +1416,16 @@ declare class BizyTagModule {
|
|
|
1393
1416
|
}
|
|
1394
1417
|
|
|
1395
1418
|
declare class BizyTimelineComponent {
|
|
1419
|
+
#private;
|
|
1396
1420
|
id: string;
|
|
1397
1421
|
customClass: string;
|
|
1422
|
+
getNativeElement: () => any;
|
|
1398
1423
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTimelineComponent, never>;
|
|
1399
1424
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyTimelineComponent, "bizy-timeline", never, { "id": { "alias": "id"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, {}, never, ["bizy-timeline-event"], true, never>;
|
|
1400
1425
|
}
|
|
1401
1426
|
|
|
1402
1427
|
declare class BizyTimelineEventComponent {
|
|
1428
|
+
#private;
|
|
1403
1429
|
id: string;
|
|
1404
1430
|
customClass: string;
|
|
1405
1431
|
showLine: boolean;
|
|
@@ -1407,6 +1433,7 @@ declare class BizyTimelineEventComponent {
|
|
|
1407
1433
|
onSelect: EventEmitter<PointerEvent>;
|
|
1408
1434
|
_focused: boolean;
|
|
1409
1435
|
_onSelect(event: PointerEvent): void;
|
|
1436
|
+
getNativeElement: () => any;
|
|
1410
1437
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTimelineEventComponent, never>;
|
|
1411
1438
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyTimelineEventComponent, "bizy-timeline-event", never, { "id": { "alias": "id"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "showLine": { "alias": "showLine"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "onSelect": "onSelect"; }, never, ["[slot=start]", "[slot=bullet]", "[slot=end]"], true, never>;
|
|
1412
1439
|
}
|
|
@@ -1475,19 +1502,13 @@ declare class BizyToastService {
|
|
|
1475
1502
|
}
|
|
1476
1503
|
|
|
1477
1504
|
declare class BizyToastWrapperComponent {
|
|
1478
|
-
private
|
|
1479
|
-
private toast;
|
|
1505
|
+
#private;
|
|
1480
1506
|
type: TOAST;
|
|
1481
1507
|
title: string;
|
|
1482
1508
|
msg: string;
|
|
1483
1509
|
id: string;
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
title: string;
|
|
1487
|
-
msg: string;
|
|
1488
|
-
id: string;
|
|
1489
|
-
duration: number;
|
|
1490
|
-
}, toast: BizyToastService);
|
|
1510
|
+
ngOnInit(): void;
|
|
1511
|
+
getNativeElement: () => any;
|
|
1491
1512
|
close(): void;
|
|
1492
1513
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyToastWrapperComponent, never>;
|
|
1493
1514
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyToastWrapperComponent, "bizy-toast-wrapper", never, {}, {}, never, never, true, never>;
|
|
@@ -1500,12 +1521,14 @@ declare class BizyToastModule {
|
|
|
1500
1521
|
}
|
|
1501
1522
|
|
|
1502
1523
|
declare class BizyToggleComponent {
|
|
1524
|
+
#private;
|
|
1503
1525
|
id: string;
|
|
1504
1526
|
disabled: boolean;
|
|
1505
1527
|
selected: boolean;
|
|
1506
1528
|
onSelect: EventEmitter<PointerEvent>;
|
|
1507
1529
|
selectedChange: EventEmitter<boolean>;
|
|
1508
1530
|
_onSelect(event: PointerEvent): void;
|
|
1531
|
+
getNativeElement: () => any;
|
|
1509
1532
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyToggleComponent, never>;
|
|
1510
1533
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyToggleComponent, "bizy-toggle", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "onSelect": "onSelect"; "selectedChange": "selectedChange"; }, never, ["[slot=start]", "[slot=end]"], true, never>;
|
|
1511
1534
|
}
|
|
@@ -1519,6 +1542,8 @@ declare class BizyToggleModule {
|
|
|
1519
1542
|
type LabelPosition = 'before' | 'after';
|
|
1520
1543
|
|
|
1521
1544
|
declare class BizyToolbarComponent {
|
|
1545
|
+
#private;
|
|
1546
|
+
getNativeElement: () => any;
|
|
1522
1547
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyToolbarComponent, never>;
|
|
1523
1548
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyToolbarComponent, "bizy-toolbar", never, {}, {}, never, ["[slot=start]", "[slot=end]"], true, never>;
|
|
1524
1549
|
}
|