@bizy/core 20.2.7 → 20.3.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/fesm2022/bizy-core.mjs +351 -400
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +98 -63
- package/package.json +1 -1
- package/styles/variables.css +0 -7
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>;
|
|
@@ -106,6 +107,7 @@ declare class BizyBarLineChartComponent implements OnDestroy, AfterViewInit {
|
|
|
106
107
|
onSelect: EventEmitter<string>;
|
|
107
108
|
ngAfterViewInit(): void;
|
|
108
109
|
set data(data: Array<IBizyBarLineChartData>);
|
|
110
|
+
getNativeElement: () => any;
|
|
109
111
|
ngOnDestroy(): void;
|
|
110
112
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyBarLineChartComponent, never>;
|
|
111
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>;
|
|
@@ -125,14 +127,14 @@ interface IBizyBreadcrumb {
|
|
|
125
127
|
}
|
|
126
128
|
|
|
127
129
|
declare class BizyBreadcrumbComponent {
|
|
128
|
-
private
|
|
130
|
+
#private;
|
|
129
131
|
onSelect: EventEmitter<IBizyBreadcrumb>;
|
|
130
132
|
_breadcrumbs: Array<IBizyBreadcrumb>;
|
|
131
133
|
showGoBack: boolean;
|
|
132
|
-
constructor(ref: ChangeDetectorRef);
|
|
133
134
|
set breadcrumbs(breadcrumbs: Array<IBizyBreadcrumb>);
|
|
134
135
|
goTo(breadcrumb: IBizyBreadcrumb): void;
|
|
135
136
|
goBack(): void;
|
|
137
|
+
getNativeElement(): any;
|
|
136
138
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyBreadcrumbComponent, never>;
|
|
137
139
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyBreadcrumbComponent, "bizy-breadcrumb", never, { "breadcrumbs": { "alias": "breadcrumbs"; "required": false; }; }, { "onSelect": "onSelect"; }, never, never, true, never>;
|
|
138
140
|
}
|
|
@@ -144,6 +146,7 @@ declare class BizyBreadcrumbModule {
|
|
|
144
146
|
}
|
|
145
147
|
|
|
146
148
|
declare class BizyButtonComponent {
|
|
149
|
+
#private;
|
|
147
150
|
id: string;
|
|
148
151
|
disabled: boolean;
|
|
149
152
|
type: 'button' | 'submit';
|
|
@@ -151,6 +154,7 @@ declare class BizyButtonComponent {
|
|
|
151
154
|
onSelect: EventEmitter<PointerEvent>;
|
|
152
155
|
_focused: boolean;
|
|
153
156
|
_onSelect(event: PointerEvent): void;
|
|
157
|
+
getNativeElement: () => any;
|
|
154
158
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyButtonComponent, never>;
|
|
155
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>;
|
|
156
160
|
}
|
|
@@ -239,6 +243,7 @@ declare class BizyCalendarComponent {
|
|
|
239
243
|
eventClicked(event: CalendarEvent): void;
|
|
240
244
|
dayHeaderClicked(date: Date): void;
|
|
241
245
|
hourSegmentClicked(date: Date): void;
|
|
246
|
+
getNativeElement: () => any;
|
|
242
247
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyCalendarComponent, never>;
|
|
243
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>;
|
|
244
249
|
}
|
|
@@ -250,12 +255,14 @@ declare class BizyCalendarModule {
|
|
|
250
255
|
}
|
|
251
256
|
|
|
252
257
|
declare class BizyCardComponent {
|
|
258
|
+
#private;
|
|
253
259
|
id: string;
|
|
254
260
|
disabled: boolean;
|
|
255
261
|
selected: boolean;
|
|
256
262
|
customClass: string;
|
|
257
263
|
onSelect: EventEmitter<PointerEvent>;
|
|
258
264
|
_onSelect(event: PointerEvent): void;
|
|
265
|
+
getNativeElement: () => any;
|
|
259
266
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyCardComponent, never>;
|
|
260
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>;
|
|
261
268
|
}
|
|
@@ -267,6 +274,7 @@ declare class BizyCardModule {
|
|
|
267
274
|
}
|
|
268
275
|
|
|
269
276
|
declare class BizyCheckboxComponent {
|
|
277
|
+
#private;
|
|
270
278
|
id: string;
|
|
271
279
|
selected: boolean;
|
|
272
280
|
disabled: boolean;
|
|
@@ -274,6 +282,7 @@ declare class BizyCheckboxComponent {
|
|
|
274
282
|
onSelect: EventEmitter<PointerEvent>;
|
|
275
283
|
_checkboxId: string;
|
|
276
284
|
_onSelect(event: PointerEvent): void;
|
|
285
|
+
getNativeElement: () => any;
|
|
277
286
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyCheckboxComponent, never>;
|
|
278
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>;
|
|
279
288
|
}
|
|
@@ -285,6 +294,8 @@ declare class BizyCheckboxModule {
|
|
|
285
294
|
}
|
|
286
295
|
|
|
287
296
|
declare class BizyContentComponent {
|
|
297
|
+
#private;
|
|
298
|
+
getNativeElement: () => any;
|
|
288
299
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyContentComponent, never>;
|
|
289
300
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyContentComponent, "bizy-content", never, {}, {}, never, ["*"], true, never>;
|
|
290
301
|
}
|
|
@@ -335,6 +346,7 @@ declare class BizyDatePickerComponent {
|
|
|
335
346
|
set type(type: 'date' | 'date-time' | 'time' | 'year-month');
|
|
336
347
|
ngAfterViewInit(): void;
|
|
337
348
|
setTouched(touched: boolean): void;
|
|
349
|
+
getNativeElement: () => any;
|
|
338
350
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyDatePickerComponent, never>;
|
|
339
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>;
|
|
340
352
|
}
|
|
@@ -383,6 +395,7 @@ declare class BizyFileUploaderComponent implements AfterViewInit, OnDestroy {
|
|
|
383
395
|
loadedFiles: EventEmitter<UppyFile[]>;
|
|
384
396
|
readonly TEMPLATE_ID = "bizy-file-uploader-template";
|
|
385
397
|
ngAfterViewInit(): void;
|
|
398
|
+
getNativeElement: () => any;
|
|
386
399
|
ngOnDestroy(): void;
|
|
387
400
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFileUploaderComponent, never>;
|
|
388
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>;
|
|
@@ -445,8 +458,6 @@ declare class BizyFileUploaderService {
|
|
|
445
458
|
|
|
446
459
|
declare class BizyFilterComponent {
|
|
447
460
|
#private;
|
|
448
|
-
private document;
|
|
449
|
-
private ref;
|
|
450
461
|
private sections;
|
|
451
462
|
id: string;
|
|
452
463
|
disabled: boolean;
|
|
@@ -456,7 +467,6 @@ declare class BizyFilterComponent {
|
|
|
456
467
|
onChange: EventEmitter<boolean>;
|
|
457
468
|
_filterWidth: number;
|
|
458
469
|
_activated: boolean;
|
|
459
|
-
constructor(document: Document, ref: ChangeDetectorRef);
|
|
460
470
|
ngAfterViewInit(): void;
|
|
461
471
|
_onOpen: (event: any) => void;
|
|
462
472
|
close: (event: PointerEvent & {
|
|
@@ -464,6 +474,7 @@ declare class BizyFilterComponent {
|
|
|
464
474
|
id: string;
|
|
465
475
|
};
|
|
466
476
|
}) => void;
|
|
477
|
+
getNativeElement: () => any;
|
|
467
478
|
ngOnDestroy(): void;
|
|
468
479
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFilterComponent, never>;
|
|
469
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>;
|
|
@@ -471,8 +482,6 @@ declare class BizyFilterComponent {
|
|
|
471
482
|
|
|
472
483
|
declare class BizyFilterSectionComponent {
|
|
473
484
|
#private;
|
|
474
|
-
private document;
|
|
475
|
-
private ref;
|
|
476
485
|
private checkboxOptions;
|
|
477
486
|
private rangeOption;
|
|
478
487
|
private searchOption;
|
|
@@ -481,33 +490,35 @@ declare class BizyFilterSectionComponent {
|
|
|
481
490
|
customClass: string;
|
|
482
491
|
onSelect: EventEmitter<boolean>;
|
|
483
492
|
_activated: boolean;
|
|
484
|
-
constructor(document: Document, ref: ChangeDetectorRef);
|
|
485
493
|
ngAfterViewInit(): void;
|
|
486
494
|
_onSelect: (selected: boolean) => void;
|
|
487
495
|
onClean: () => void;
|
|
488
496
|
isActivated: () => boolean;
|
|
489
497
|
getId: () => string;
|
|
498
|
+
getNativeElement: () => any;
|
|
490
499
|
ngOnDestroy(): void;
|
|
491
500
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFilterSectionComponent, never>;
|
|
492
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>;
|
|
493
502
|
}
|
|
494
503
|
|
|
495
504
|
declare class BizyFilterContentComponent {
|
|
505
|
+
#private;
|
|
506
|
+
getNativeElement: () => any;
|
|
496
507
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFilterContentComponent, never>;
|
|
497
508
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyFilterContentComponent, "bizy-filter-content", never, {}, {}, never, ["*"], true, never>;
|
|
498
509
|
}
|
|
499
510
|
|
|
500
511
|
declare class BizyFilterSectionCheckboxOptionComponent {
|
|
501
|
-
private
|
|
512
|
+
#private;
|
|
502
513
|
id: string;
|
|
503
514
|
disabled: boolean;
|
|
504
515
|
customClass: string;
|
|
505
516
|
onChange: EventEmitter<boolean>;
|
|
506
517
|
set selected(selected: boolean);
|
|
507
518
|
_selected: boolean;
|
|
508
|
-
constructor(ref: ChangeDetectorRef);
|
|
509
519
|
onSelect: (selected: boolean) => void;
|
|
510
520
|
getSelected: () => boolean;
|
|
521
|
+
getNativeElement: () => any;
|
|
511
522
|
getId: () => string;
|
|
512
523
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFilterSectionCheckboxOptionComponent, never>;
|
|
513
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>;
|
|
@@ -535,6 +546,7 @@ declare class BizyFilterSectionRangeOptionComponent {
|
|
|
535
546
|
get maxValue(): AbstractControl<number | string>;
|
|
536
547
|
onClean: () => void;
|
|
537
548
|
getId: () => string;
|
|
549
|
+
getNativeElement: () => any;
|
|
538
550
|
isActivated: () => boolean;
|
|
539
551
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFilterSectionRangeOptionComponent, never>;
|
|
540
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>;
|
|
@@ -542,7 +554,6 @@ declare class BizyFilterSectionRangeOptionComponent {
|
|
|
542
554
|
|
|
543
555
|
declare class BizyFilterSectionSearchOptionComponent {
|
|
544
556
|
#private;
|
|
545
|
-
private ref;
|
|
546
557
|
id: string;
|
|
547
558
|
customClass: string;
|
|
548
559
|
valueChange: EventEmitter<string>;
|
|
@@ -550,16 +561,18 @@ declare class BizyFilterSectionSearchOptionComponent {
|
|
|
550
561
|
_value: string;
|
|
551
562
|
get activated$(): Observable<boolean>;
|
|
552
563
|
set value(value: string);
|
|
553
|
-
constructor(ref: ChangeDetectorRef);
|
|
554
564
|
_onChange(value: string): void;
|
|
555
565
|
getId: () => string;
|
|
556
566
|
getValue: () => string;
|
|
567
|
+
getNativeElement: () => any;
|
|
557
568
|
isActivated: () => boolean;
|
|
558
569
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFilterSectionSearchOptionComponent, never>;
|
|
559
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>;
|
|
560
571
|
}
|
|
561
572
|
|
|
562
573
|
declare class BizyFilterSectionsComponent {
|
|
574
|
+
#private;
|
|
575
|
+
getNativeElement: () => any;
|
|
563
576
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFilterSectionsComponent, never>;
|
|
564
577
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyFilterSectionsComponent, "bizy-filter-sections", never, {}, {}, never, ["*"], true, never>;
|
|
565
578
|
}
|
|
@@ -589,23 +602,22 @@ declare class BizyFilterModule {
|
|
|
589
602
|
}
|
|
590
603
|
|
|
591
604
|
declare class BizyInputOptionComponent {
|
|
592
|
-
private
|
|
605
|
+
#private;
|
|
593
606
|
id: string;
|
|
594
607
|
disabled: boolean;
|
|
595
608
|
customClass: string;
|
|
596
609
|
selected: boolean;
|
|
597
610
|
onSelect: EventEmitter<PointerEvent>;
|
|
598
|
-
constructor(ref: ChangeDetectorRef);
|
|
599
611
|
_onSelect(event: PointerEvent): void;
|
|
600
612
|
getId: () => string;
|
|
601
613
|
getSelected: () => boolean;
|
|
614
|
+
getNativeElement: () => any;
|
|
602
615
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyInputOptionComponent, never>;
|
|
603
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>;
|
|
604
617
|
}
|
|
605
618
|
|
|
606
619
|
declare class BizyInputComponent implements OnDestroy {
|
|
607
620
|
#private;
|
|
608
|
-
private ref;
|
|
609
621
|
options: QueryList<BizyInputOptionComponent>;
|
|
610
622
|
bizyInputWrapper: ElementRef;
|
|
611
623
|
bizyInput: ElementRef;
|
|
@@ -634,7 +646,6 @@ declare class BizyInputComponent implements OnDestroy {
|
|
|
634
646
|
_currencyValue: number | null;
|
|
635
647
|
currencyOptions: string;
|
|
636
648
|
onChange$: Subject<string | number>;
|
|
637
|
-
constructor(ref: ChangeDetectorRef);
|
|
638
649
|
getWidth(): number;
|
|
639
650
|
_onchange(value: string): void;
|
|
640
651
|
_onClick(event: PointerEvent): void;
|
|
@@ -652,24 +663,23 @@ declare class BizyInputComponent implements OnDestroy {
|
|
|
652
663
|
};
|
|
653
664
|
}, button?: HTMLButtonElement) => void;
|
|
654
665
|
ngOnDestroy(): void;
|
|
666
|
+
getNativeElement: () => any;
|
|
655
667
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyInputComponent, never>;
|
|
656
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>;
|
|
657
669
|
}
|
|
658
670
|
|
|
659
671
|
declare class BizySelectOptionComponent {
|
|
660
672
|
#private;
|
|
661
|
-
private elementRef;
|
|
662
|
-
private ref;
|
|
663
673
|
id: string;
|
|
664
674
|
disabled: boolean;
|
|
665
675
|
customClass: string;
|
|
666
676
|
onSelect: EventEmitter<void>;
|
|
667
677
|
set selected(selected: boolean);
|
|
668
678
|
get selected$(): Observable<boolean>;
|
|
669
|
-
constructor(elementRef: ElementRef, ref: ChangeDetectorRef);
|
|
670
679
|
_onSelect(): void;
|
|
671
680
|
getId: () => string;
|
|
672
681
|
getSelected: () => boolean;
|
|
682
|
+
getNativeElement: () => any;
|
|
673
683
|
getValue: () => string;
|
|
674
684
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySelectOptionComponent, never>;
|
|
675
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>;
|
|
@@ -677,7 +687,6 @@ declare class BizySelectOptionComponent {
|
|
|
677
687
|
|
|
678
688
|
declare class BizySelectComponent implements AfterViewInit {
|
|
679
689
|
#private;
|
|
680
|
-
private ref;
|
|
681
690
|
templatePortalContent: TemplateRef<unknown>;
|
|
682
691
|
options: QueryList<BizySelectOptionComponent>;
|
|
683
692
|
bizyInput: BizyInputComponent;
|
|
@@ -693,7 +702,6 @@ declare class BizySelectComponent implements AfterViewInit {
|
|
|
693
702
|
_optionValue: string;
|
|
694
703
|
optionPortal: Portal<any>;
|
|
695
704
|
templatePortal: TemplatePortal<any> | null;
|
|
696
|
-
constructor(ref: ChangeDetectorRef);
|
|
697
705
|
get touched(): boolean;
|
|
698
706
|
ngAfterViewInit(): void;
|
|
699
707
|
_onOpen(event: PointerEvent): void;
|
|
@@ -703,12 +711,14 @@ declare class BizySelectComponent implements AfterViewInit {
|
|
|
703
711
|
};
|
|
704
712
|
}, select?: BizyInputComponent) => void;
|
|
705
713
|
setTouched(touched: boolean): void;
|
|
714
|
+
getNativeElement: () => any;
|
|
706
715
|
ngOnDestroy(): void;
|
|
707
716
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySelectComponent, never>;
|
|
708
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>;
|
|
709
718
|
}
|
|
710
719
|
|
|
711
720
|
declare class BizyFormComponent {
|
|
721
|
+
#private;
|
|
712
722
|
inputs: QueryList<BizyInputComponent>;
|
|
713
723
|
selects: QueryList<BizySelectComponent>;
|
|
714
724
|
datePickers: QueryList<BizyDatePickerComponent>;
|
|
@@ -716,6 +726,7 @@ declare class BizyFormComponent {
|
|
|
716
726
|
customClass: string;
|
|
717
727
|
onSubmit(event: Event): void;
|
|
718
728
|
setTouched: () => void;
|
|
729
|
+
getNativeElement: () => any;
|
|
719
730
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFormComponent, never>;
|
|
720
731
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyFormComponent, "bizy-form", never, { "id": { "alias": "id"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, {}, ["inputs", "selects", "datePickers"], ["*"], true, never>;
|
|
721
732
|
}
|
|
@@ -738,10 +749,6 @@ declare class BizyGridForDirective {
|
|
|
738
749
|
|
|
739
750
|
declare class BizyGridComponent implements AfterContentInit {
|
|
740
751
|
#private;
|
|
741
|
-
private ref;
|
|
742
|
-
private document;
|
|
743
|
-
private renderer;
|
|
744
|
-
private elementRef;
|
|
745
752
|
private virtualScroll;
|
|
746
753
|
content: TemplateRef<object>;
|
|
747
754
|
gridDirective: BizyGridForDirective;
|
|
@@ -752,11 +759,11 @@ declare class BizyGridComponent implements AfterContentInit {
|
|
|
752
759
|
items: Array<unknown>;
|
|
753
760
|
itemTemplate: TemplateRef<unknown>;
|
|
754
761
|
itemsPerRow: number;
|
|
755
|
-
constructor(ref: ChangeDetectorRef, document: Document, renderer: Renderer2, elementRef: ElementRef);
|
|
756
762
|
ngAfterContentInit(): void;
|
|
757
763
|
trackById(index: number, item: any): any;
|
|
758
764
|
scrollTo(index: number, behavior?: 'auto' | 'instant' | 'smooth'): void;
|
|
759
765
|
ngOnDestroy(): void;
|
|
766
|
+
getNativeElement: () => any;
|
|
760
767
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyGridComponent, never>;
|
|
761
768
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyGridComponent, "bizy-grid", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; }, {}, ["gridDirective"], ["*"], true, never>;
|
|
762
769
|
}
|
|
@@ -765,6 +772,7 @@ declare class BizyGridRowComponent {
|
|
|
765
772
|
#private;
|
|
766
773
|
rowHeight: number;
|
|
767
774
|
set itemsPerRow(itemsPerRow: number);
|
|
775
|
+
getNativeElement: () => any;
|
|
768
776
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyGridRowComponent, never>;
|
|
769
777
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyGridRowComponent, "bizy-grid-row", never, { "rowHeight": { "alias": "rowHeight"; "required": false; }; "itemsPerRow": { "alias": "itemsPerRow"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
770
778
|
}
|
|
@@ -782,7 +790,9 @@ declare class BizyInputModule {
|
|
|
782
790
|
}
|
|
783
791
|
|
|
784
792
|
declare class BizyListComponent {
|
|
793
|
+
#private;
|
|
785
794
|
id: string;
|
|
795
|
+
getNativeElement: () => any;
|
|
786
796
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyListComponent, never>;
|
|
787
797
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyListComponent, "bizy-list", never, { "id": { "alias": "id"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
788
798
|
}
|
|
@@ -794,6 +804,7 @@ declare class BizyListModule {
|
|
|
794
804
|
}
|
|
795
805
|
|
|
796
806
|
declare class BizyMenuOptionComponent {
|
|
807
|
+
#private;
|
|
797
808
|
id: string;
|
|
798
809
|
disabled: boolean;
|
|
799
810
|
customClass: string;
|
|
@@ -808,6 +819,7 @@ declare class BizyMenuOptionComponent {
|
|
|
808
819
|
id: string;
|
|
809
820
|
};
|
|
810
821
|
}): void;
|
|
822
|
+
getNativeElement: () => any;
|
|
811
823
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyMenuOptionComponent, never>;
|
|
812
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>;
|
|
813
825
|
}
|
|
@@ -832,14 +844,17 @@ declare class BizyMenuComponent {
|
|
|
832
844
|
id: string;
|
|
833
845
|
};
|
|
834
846
|
}) => void;
|
|
847
|
+
getNativeElement: () => any;
|
|
835
848
|
ngOnDestroy(): void;
|
|
836
849
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyMenuComponent, never>;
|
|
837
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>;
|
|
838
851
|
}
|
|
839
852
|
|
|
840
853
|
declare class BizyMenuTitleComponent {
|
|
854
|
+
#private;
|
|
841
855
|
id: string;
|
|
842
856
|
customClass: string;
|
|
857
|
+
getNativeElement: () => any;
|
|
843
858
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyMenuTitleComponent, never>;
|
|
844
859
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyMenuTitleComponent, "bizy-menu-title", never, { "id": { "alias": "id"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
845
860
|
}
|
|
@@ -871,6 +886,7 @@ declare class BizyPieChartComponent {
|
|
|
871
886
|
onSelect: EventEmitter<string>;
|
|
872
887
|
onDownload: EventEmitter<void>;
|
|
873
888
|
ngAfterViewInit(): void;
|
|
889
|
+
getNativeElement: () => any;
|
|
874
890
|
set data(data: Array<IBizyPieChartData>);
|
|
875
891
|
ngOnDestroy(): void;
|
|
876
892
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyPieChartComponent, never>;
|
|
@@ -892,6 +908,7 @@ declare class BizyFullScreenPopupWrapperComponent<T> {
|
|
|
892
908
|
ngOnInit(): void;
|
|
893
909
|
ngAfterViewInit(): void;
|
|
894
910
|
loadDynamicComponent: () => void;
|
|
911
|
+
getNativeElement: () => any;
|
|
895
912
|
close(): Promise<void>;
|
|
896
913
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFullScreenPopupWrapperComponent<any>, never>;
|
|
897
914
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyFullScreenPopupWrapperComponent<any>, "bizy-full-screen-popup-wrapper", never, {}, {}, never, never, true, never>;
|
|
@@ -911,6 +928,7 @@ declare class BizyPopupWrapperComponent<T> {
|
|
|
911
928
|
} | null;
|
|
912
929
|
ngOnInit(): void;
|
|
913
930
|
ngAfterViewInit(): void;
|
|
931
|
+
getNativeElement: () => any;
|
|
914
932
|
loadDynamicComponent: () => void;
|
|
915
933
|
close(): Promise<void>;
|
|
916
934
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyPopupWrapperComponent<any>, never>;
|
|
@@ -964,8 +982,10 @@ declare class BizyPopupService {
|
|
|
964
982
|
}
|
|
965
983
|
|
|
966
984
|
declare class BizyProgressBarComponent {
|
|
985
|
+
#private;
|
|
967
986
|
id: string;
|
|
968
987
|
progress: number | null;
|
|
988
|
+
getNativeElement: () => any;
|
|
969
989
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyProgressBarComponent, never>;
|
|
970
990
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyProgressBarComponent, "bizy-progress-bar", never, { "id": { "alias": "id"; "required": false; }; "progress": { "alias": "progress"; "required": false; }; }, {}, never, never, true, never>;
|
|
971
991
|
}
|
|
@@ -977,6 +997,7 @@ declare class BizyProgressBarModule {
|
|
|
977
997
|
}
|
|
978
998
|
|
|
979
999
|
declare class BizyRadioComponent {
|
|
1000
|
+
#private;
|
|
980
1001
|
id: string;
|
|
981
1002
|
name: string;
|
|
982
1003
|
selected: boolean;
|
|
@@ -984,6 +1005,7 @@ declare class BizyRadioComponent {
|
|
|
984
1005
|
selectedChange: EventEmitter<boolean>;
|
|
985
1006
|
onSelect: EventEmitter<PointerEvent>;
|
|
986
1007
|
_onSelect(event: PointerEvent): void;
|
|
1008
|
+
getNativeElement: () => any;
|
|
987
1009
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyRadioComponent, never>;
|
|
988
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>;
|
|
989
1011
|
}
|
|
@@ -995,25 +1017,33 @@ declare class BizyRadioModule {
|
|
|
995
1017
|
}
|
|
996
1018
|
|
|
997
1019
|
declare class BizySectionComponent {
|
|
1020
|
+
#private;
|
|
998
1021
|
id: string;
|
|
1022
|
+
getNativeElement: () => any;
|
|
999
1023
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySectionComponent, never>;
|
|
1000
1024
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizySectionComponent, "bizy-section", never, { "id": { "alias": "id"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1001
1025
|
}
|
|
1002
1026
|
|
|
1003
1027
|
declare class BizySectionStartComponent {
|
|
1028
|
+
#private;
|
|
1004
1029
|
id: string;
|
|
1030
|
+
getNativeElement: () => any;
|
|
1005
1031
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySectionStartComponent, never>;
|
|
1006
1032
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizySectionStartComponent, "bizy-section-start", never, { "id": { "alias": "id"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1007
1033
|
}
|
|
1008
1034
|
|
|
1009
1035
|
declare class BizySectionCenterComponent {
|
|
1036
|
+
#private;
|
|
1010
1037
|
id: string;
|
|
1038
|
+
getNativeElement: () => any;
|
|
1011
1039
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySectionCenterComponent, never>;
|
|
1012
1040
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizySectionCenterComponent, "bizy-section-center", never, { "id": { "alias": "id"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1013
1041
|
}
|
|
1014
1042
|
|
|
1015
1043
|
declare class BizySectionEndComponent {
|
|
1044
|
+
#private;
|
|
1016
1045
|
id: string;
|
|
1046
|
+
getNativeElement: () => any;
|
|
1017
1047
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySectionEndComponent, never>;
|
|
1018
1048
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizySectionEndComponent, "bizy-section-end", never, { "id": { "alias": "id"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1019
1049
|
}
|
|
@@ -1031,7 +1061,7 @@ declare class BizySelectModule {
|
|
|
1031
1061
|
}
|
|
1032
1062
|
|
|
1033
1063
|
declare class BizySidebarOptionComponent {
|
|
1034
|
-
private
|
|
1064
|
+
#private;
|
|
1035
1065
|
options: QueryList<BizySidebarOptionComponent>;
|
|
1036
1066
|
id: string;
|
|
1037
1067
|
disabled: boolean;
|
|
@@ -1042,10 +1072,10 @@ declare class BizySidebarOptionComponent {
|
|
|
1042
1072
|
_turnOn$: BehaviorSubject<boolean>;
|
|
1043
1073
|
_selected: boolean;
|
|
1044
1074
|
set selected(selected: boolean);
|
|
1045
|
-
constructor(ref: ChangeDetectorRef);
|
|
1046
1075
|
_onSelect(event: PointerEvent): void;
|
|
1047
1076
|
_setSelected(selected: boolean): void;
|
|
1048
1077
|
getId: () => string;
|
|
1078
|
+
getNativeElement: () => any;
|
|
1049
1079
|
getSelected: () => boolean;
|
|
1050
1080
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySidebarOptionComponent, never>;
|
|
1051
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>;
|
|
@@ -1053,7 +1083,6 @@ declare class BizySidebarOptionComponent {
|
|
|
1053
1083
|
|
|
1054
1084
|
declare class BizySidebarFloatingOptionComponent implements AfterContentInit {
|
|
1055
1085
|
#private;
|
|
1056
|
-
private ref;
|
|
1057
1086
|
options: QueryList<BizySidebarOptionComponent>;
|
|
1058
1087
|
id: string;
|
|
1059
1088
|
disabled: boolean;
|
|
@@ -1067,8 +1096,8 @@ declare class BizySidebarFloatingOptionComponent implements AfterContentInit {
|
|
|
1067
1096
|
_selected: boolean;
|
|
1068
1097
|
_opened: boolean;
|
|
1069
1098
|
set selected(selected: boolean);
|
|
1070
|
-
constructor(ref: ChangeDetectorRef);
|
|
1071
1099
|
ngAfterContentInit(): void;
|
|
1100
|
+
getNativeElement: () => any;
|
|
1072
1101
|
_onSelect(event: PointerEvent): void;
|
|
1073
1102
|
close: (event: PointerEvent & {
|
|
1074
1103
|
target: {
|
|
@@ -1092,6 +1121,7 @@ declare class BizySidebarComponent implements AfterContentInit {
|
|
|
1092
1121
|
_toggle: boolean;
|
|
1093
1122
|
set toggle(toggle: boolean);
|
|
1094
1123
|
ngAfterContentInit(): void;
|
|
1124
|
+
getNativeElement: () => any;
|
|
1095
1125
|
_onToggle(event: PointerEvent): void;
|
|
1096
1126
|
ngOnDestroy(): void;
|
|
1097
1127
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySidebarComponent, never>;
|
|
@@ -1099,8 +1129,10 @@ declare class BizySidebarComponent implements AfterContentInit {
|
|
|
1099
1129
|
}
|
|
1100
1130
|
|
|
1101
1131
|
declare class BizySidebarFloatingOptionTitleComponent {
|
|
1132
|
+
#private;
|
|
1102
1133
|
id: string;
|
|
1103
1134
|
customClass: string;
|
|
1135
|
+
getNativeElement: () => any;
|
|
1104
1136
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySidebarFloatingOptionTitleComponent, never>;
|
|
1105
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>;
|
|
1106
1138
|
}
|
|
@@ -1117,12 +1149,14 @@ declare enum BIZY_SKELETON_SHAPE {
|
|
|
1117
1149
|
}
|
|
1118
1150
|
|
|
1119
1151
|
declare class BizySkeletonComponent {
|
|
1152
|
+
#private;
|
|
1120
1153
|
id: string;
|
|
1121
1154
|
shape: BIZY_SKELETON_SHAPE;
|
|
1122
1155
|
height: string;
|
|
1123
1156
|
width: string;
|
|
1124
1157
|
customClass: string;
|
|
1125
1158
|
readonly BIZY_SKELETON_SHAPE: typeof BIZY_SKELETON_SHAPE;
|
|
1159
|
+
getNativeElement: () => any;
|
|
1126
1160
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySkeletonComponent, never>;
|
|
1127
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>;
|
|
1128
1162
|
}
|
|
@@ -1134,6 +1168,7 @@ declare class BizySkeletonModule {
|
|
|
1134
1168
|
}
|
|
1135
1169
|
|
|
1136
1170
|
declare class BizySliderComponent {
|
|
1171
|
+
#private;
|
|
1137
1172
|
fromSlider: ElementRef;
|
|
1138
1173
|
toSlider: ElementRef;
|
|
1139
1174
|
minLimit: number;
|
|
@@ -1147,6 +1182,7 @@ declare class BizySliderComponent {
|
|
|
1147
1182
|
set min(min: number);
|
|
1148
1183
|
set max(max: number);
|
|
1149
1184
|
setFromSlider(value: number): void;
|
|
1185
|
+
getNativeElement: () => any;
|
|
1150
1186
|
setToSlider(value: number): void;
|
|
1151
1187
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizySliderComponent, never>;
|
|
1152
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>;
|
|
@@ -1166,14 +1202,14 @@ declare class BizyTableColumnComponent {
|
|
|
1166
1202
|
onSelect: EventEmitter<PointerEvent>;
|
|
1167
1203
|
onRightClick(event: MouseEvent): void;
|
|
1168
1204
|
getId: () => string;
|
|
1205
|
+
getNativeElement: () => any;
|
|
1169
1206
|
setMarginLeft(margin: number): void;
|
|
1170
1207
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTableColumnComponent, never>;
|
|
1171
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>;
|
|
1172
1209
|
}
|
|
1173
1210
|
|
|
1174
1211
|
declare class BizyTableHeaderComponent {
|
|
1175
|
-
private
|
|
1176
|
-
elementRef: ElementRef;
|
|
1212
|
+
#private;
|
|
1177
1213
|
columns: QueryList<BizyTableColumnComponent>;
|
|
1178
1214
|
id: string;
|
|
1179
1215
|
customClass: string;
|
|
@@ -1182,8 +1218,8 @@ declare class BizyTableHeaderComponent {
|
|
|
1182
1218
|
selectedChange: EventEmitter<boolean>;
|
|
1183
1219
|
onSelect: EventEmitter<PointerEvent>;
|
|
1184
1220
|
marginRight: number;
|
|
1185
|
-
constructor(ref: ChangeDetectorRef, elementRef: ElementRef);
|
|
1186
1221
|
getId: () => string;
|
|
1222
|
+
getNativeElement: () => any;
|
|
1187
1223
|
getSelected: () => boolean;
|
|
1188
1224
|
setSelectable: (selectable: boolean) => void;
|
|
1189
1225
|
setMarginRight(margin: number): void;
|
|
@@ -1193,16 +1229,15 @@ declare class BizyTableHeaderComponent {
|
|
|
1193
1229
|
}
|
|
1194
1230
|
|
|
1195
1231
|
declare class BizyTableFooterComponent {
|
|
1196
|
-
private
|
|
1197
|
-
elementRef: ElementRef;
|
|
1232
|
+
#private;
|
|
1198
1233
|
columns: QueryList<BizyTableColumnComponent>;
|
|
1199
1234
|
id: string;
|
|
1200
1235
|
customClass: string;
|
|
1201
1236
|
marginRight: number;
|
|
1202
1237
|
_selectable: boolean;
|
|
1203
|
-
constructor(ref: ChangeDetectorRef, elementRef: ElementRef);
|
|
1204
1238
|
getId: () => string;
|
|
1205
1239
|
setSelectable: (selectable: boolean) => void;
|
|
1240
|
+
getNativeElement: () => any;
|
|
1206
1241
|
setMarginRight(margin: number): void;
|
|
1207
1242
|
setMarginLeft(margin: number): void;
|
|
1208
1243
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTableFooterComponent, never>;
|
|
@@ -1210,7 +1245,7 @@ declare class BizyTableFooterComponent {
|
|
|
1210
1245
|
}
|
|
1211
1246
|
|
|
1212
1247
|
declare class BizyTableRowComponent {
|
|
1213
|
-
private
|
|
1248
|
+
#private;
|
|
1214
1249
|
columns: QueryList<BizyTableColumnComponent>;
|
|
1215
1250
|
id: string;
|
|
1216
1251
|
customClass: string;
|
|
@@ -1223,7 +1258,7 @@ declare class BizyTableRowComponent {
|
|
|
1223
1258
|
openedChange: EventEmitter<boolean>;
|
|
1224
1259
|
onOpen: EventEmitter<PointerEvent>;
|
|
1225
1260
|
marginRight: number;
|
|
1226
|
-
|
|
1261
|
+
getNativeElement: () => any;
|
|
1227
1262
|
_onOpen(event: PointerEvent): void;
|
|
1228
1263
|
getId: () => string;
|
|
1229
1264
|
getSelected: () => boolean;
|
|
@@ -1249,17 +1284,14 @@ declare class BizyTableScrollingDirective {
|
|
|
1249
1284
|
|
|
1250
1285
|
declare class BizyTableScrollingComponent implements OnDestroy {
|
|
1251
1286
|
#private;
|
|
1252
|
-
private document;
|
|
1253
|
-
elementRef: ElementRef;
|
|
1254
|
-
ref: ChangeDetectorRef;
|
|
1255
1287
|
viewport: CdkVirtualScrollViewport;
|
|
1256
1288
|
content: TemplateRef<object>;
|
|
1257
1289
|
items$: Observable<Array<unknown>>;
|
|
1258
1290
|
itemTemplate: TemplateRef<BizyTableRowComponent>;
|
|
1259
1291
|
itemSize: number;
|
|
1260
|
-
constructor(document: Document, elementRef: ElementRef, ref: ChangeDetectorRef);
|
|
1261
1292
|
/** Called by the virtual-for directive inside of the viewport. */
|
|
1262
1293
|
attachView(tableDirective: BizyTableScrollingDirective): void;
|
|
1294
|
+
getNativeElement: () => any;
|
|
1263
1295
|
ngOnDestroy(): void;
|
|
1264
1296
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTableScrollingComponent, never>;
|
|
1265
1297
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyTableScrollingComponent, "bizy-table-scrolling", never, {}, {}, never, ["*"], true, never>;
|
|
@@ -1267,10 +1299,6 @@ declare class BizyTableScrollingComponent implements OnDestroy {
|
|
|
1267
1299
|
|
|
1268
1300
|
declare class BizyTableComponent implements AfterContentInit {
|
|
1269
1301
|
#private;
|
|
1270
|
-
private ref;
|
|
1271
|
-
private document;
|
|
1272
|
-
private renderer;
|
|
1273
|
-
private elementRef;
|
|
1274
1302
|
viewport: BizyTableScrollingComponent;
|
|
1275
1303
|
virtualFor: BizyTableScrollingDirective;
|
|
1276
1304
|
rows: QueryList<BizyTableRowComponent>;
|
|
@@ -1281,22 +1309,26 @@ declare class BizyTableComponent implements AfterContentInit {
|
|
|
1281
1309
|
marginRight: number;
|
|
1282
1310
|
marginLeft: number;
|
|
1283
1311
|
set selectable(selectable: boolean);
|
|
1284
|
-
constructor(ref: ChangeDetectorRef, document: Document, renderer: Renderer2, elementRef: ElementRef);
|
|
1285
1312
|
ngAfterContentInit(): void;
|
|
1286
1313
|
ngOnDestroy(): void;
|
|
1314
|
+
getNativeElement: () => any;
|
|
1287
1315
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTableComponent, never>;
|
|
1288
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>;
|
|
1289
1317
|
}
|
|
1290
1318
|
|
|
1291
1319
|
declare class BizyTableColumnArrowsComponent {
|
|
1320
|
+
#private;
|
|
1292
1321
|
order: 'asc' | 'desc' | null;
|
|
1293
1322
|
show: boolean;
|
|
1294
1323
|
customClass: string;
|
|
1324
|
+
getNativeElement: () => any;
|
|
1295
1325
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTableColumnArrowsComponent, never>;
|
|
1296
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>;
|
|
1297
1327
|
}
|
|
1298
1328
|
|
|
1299
1329
|
declare class BizyTableRowExpandContentComponent {
|
|
1330
|
+
#private;
|
|
1331
|
+
getNativeElement: () => any;
|
|
1300
1332
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTableRowExpandContentComponent, never>;
|
|
1301
1333
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyTableRowExpandContentComponent, "bizy-table-row-expand-content", never, {}, {}, never, ["*"], true, never>;
|
|
1302
1334
|
}
|
|
@@ -1317,7 +1349,7 @@ declare class BizyTableModule {
|
|
|
1317
1349
|
}
|
|
1318
1350
|
|
|
1319
1351
|
declare class BizyTabComponent {
|
|
1320
|
-
|
|
1352
|
+
#private;
|
|
1321
1353
|
id: string;
|
|
1322
1354
|
disabled: boolean;
|
|
1323
1355
|
selected: boolean;
|
|
@@ -1325,26 +1357,25 @@ declare class BizyTabComponent {
|
|
|
1325
1357
|
customClass: string;
|
|
1326
1358
|
selectedChange: EventEmitter<boolean>;
|
|
1327
1359
|
onSelect: EventEmitter<PointerEvent>;
|
|
1328
|
-
constructor(elementRef: ElementRef);
|
|
1329
1360
|
_onSelect(event: PointerEvent): void;
|
|
1361
|
+
getNativeElement: () => any;
|
|
1330
1362
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTabComponent, never>;
|
|
1331
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>;
|
|
1332
1364
|
}
|
|
1333
1365
|
|
|
1334
1366
|
declare class BizyTabsComponent implements AfterViewInit, AfterContentInit {
|
|
1335
1367
|
#private;
|
|
1336
|
-
private ref;
|
|
1337
1368
|
tabs: QueryList<BizyTabComponent>;
|
|
1338
1369
|
private bizyTabs;
|
|
1339
1370
|
private bizyTabsWrapper;
|
|
1340
1371
|
customClass: string;
|
|
1341
1372
|
showLeftButton: boolean;
|
|
1342
1373
|
showRightButton: boolean;
|
|
1343
|
-
constructor(ref: ChangeDetectorRef);
|
|
1344
1374
|
ngAfterViewInit(): void;
|
|
1345
1375
|
ngAfterContentInit(): void;
|
|
1346
1376
|
onScrollLeft(): void;
|
|
1347
1377
|
onScrollRight(): void;
|
|
1378
|
+
getNativeElement: () => any;
|
|
1348
1379
|
ngOnDestroy(): void;
|
|
1349
1380
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTabsComponent, never>;
|
|
1350
1381
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyTabsComponent, "bizy-tabs", never, { "customClass": { "alias": "customClass"; "required": false; }; }, {}, ["tabs"], ["bizy-tab"], true, never>;
|
|
@@ -1365,6 +1396,7 @@ declare enum BIZY_TAG_TYPE {
|
|
|
1365
1396
|
}
|
|
1366
1397
|
|
|
1367
1398
|
declare class BizyTagComponent {
|
|
1399
|
+
#private;
|
|
1368
1400
|
id: string;
|
|
1369
1401
|
customClass: string;
|
|
1370
1402
|
disabled: boolean;
|
|
@@ -1372,6 +1404,7 @@ declare class BizyTagComponent {
|
|
|
1372
1404
|
onSelect: EventEmitter<PointerEvent>;
|
|
1373
1405
|
_focused: boolean;
|
|
1374
1406
|
_onSelect(event: PointerEvent): void;
|
|
1407
|
+
getNativeElement: () => any;
|
|
1375
1408
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTagComponent, never>;
|
|
1376
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>;
|
|
1377
1410
|
}
|
|
@@ -1383,13 +1416,16 @@ declare class BizyTagModule {
|
|
|
1383
1416
|
}
|
|
1384
1417
|
|
|
1385
1418
|
declare class BizyTimelineComponent {
|
|
1419
|
+
#private;
|
|
1386
1420
|
id: string;
|
|
1387
1421
|
customClass: string;
|
|
1422
|
+
getNativeElement: () => any;
|
|
1388
1423
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTimelineComponent, never>;
|
|
1389
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>;
|
|
1390
1425
|
}
|
|
1391
1426
|
|
|
1392
1427
|
declare class BizyTimelineEventComponent {
|
|
1428
|
+
#private;
|
|
1393
1429
|
id: string;
|
|
1394
1430
|
customClass: string;
|
|
1395
1431
|
showLine: boolean;
|
|
@@ -1397,6 +1433,7 @@ declare class BizyTimelineEventComponent {
|
|
|
1397
1433
|
onSelect: EventEmitter<PointerEvent>;
|
|
1398
1434
|
_focused: boolean;
|
|
1399
1435
|
_onSelect(event: PointerEvent): void;
|
|
1436
|
+
getNativeElement: () => any;
|
|
1400
1437
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTimelineEventComponent, never>;
|
|
1401
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>;
|
|
1402
1439
|
}
|
|
@@ -1465,19 +1502,13 @@ declare class BizyToastService {
|
|
|
1465
1502
|
}
|
|
1466
1503
|
|
|
1467
1504
|
declare class BizyToastWrapperComponent {
|
|
1468
|
-
private
|
|
1469
|
-
private toast;
|
|
1505
|
+
#private;
|
|
1470
1506
|
type: TOAST;
|
|
1471
1507
|
title: string;
|
|
1472
1508
|
msg: string;
|
|
1473
1509
|
id: string;
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
title: string;
|
|
1477
|
-
msg: string;
|
|
1478
|
-
id: string;
|
|
1479
|
-
duration: number;
|
|
1480
|
-
}, toast: BizyToastService);
|
|
1510
|
+
ngOnInit(): void;
|
|
1511
|
+
getNativeElement: () => any;
|
|
1481
1512
|
close(): void;
|
|
1482
1513
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyToastWrapperComponent, never>;
|
|
1483
1514
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyToastWrapperComponent, "bizy-toast-wrapper", never, {}, {}, never, never, true, never>;
|
|
@@ -1490,12 +1521,14 @@ declare class BizyToastModule {
|
|
|
1490
1521
|
}
|
|
1491
1522
|
|
|
1492
1523
|
declare class BizyToggleComponent {
|
|
1524
|
+
#private;
|
|
1493
1525
|
id: string;
|
|
1494
1526
|
disabled: boolean;
|
|
1495
1527
|
selected: boolean;
|
|
1496
1528
|
onSelect: EventEmitter<PointerEvent>;
|
|
1497
1529
|
selectedChange: EventEmitter<boolean>;
|
|
1498
1530
|
_onSelect(event: PointerEvent): void;
|
|
1531
|
+
getNativeElement: () => any;
|
|
1499
1532
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyToggleComponent, never>;
|
|
1500
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>;
|
|
1501
1534
|
}
|
|
@@ -1509,6 +1542,8 @@ declare class BizyToggleModule {
|
|
|
1509
1542
|
type LabelPosition = 'before' | 'after';
|
|
1510
1543
|
|
|
1511
1544
|
declare class BizyToolbarComponent {
|
|
1545
|
+
#private;
|
|
1546
|
+
getNativeElement: () => any;
|
|
1512
1547
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyToolbarComponent, never>;
|
|
1513
1548
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyToolbarComponent, "bizy-toolbar", never, {}, {}, never, ["[slot=start]", "[slot=end]"], true, never>;
|
|
1514
1549
|
}
|