@bizy/core 21.1.0 → 21.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 +982 -375
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/variables.css +12 -2
- package/types/bizy-core.d.ts +128 -20
package/package.json
CHANGED
package/styles/variables.css
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
--bizy-audio-player-height: 2.6rem;
|
|
37
37
|
--bizy-audio-player-seek-before-width: 0;
|
|
38
38
|
--bizy-audio-player-seek-before-background-color: var(--bizy-info-color);
|
|
39
|
-
--bizy-audio-player-seek-slider-thumb-border: 0.1rem solid var(--bizy-info-color)
|
|
39
|
+
--bizy-audio-player-seek-slider-thumb-border: 0.1rem solid var(--bizy-info-color);
|
|
40
40
|
--bizy-audio-player-seek-slider-thumb-background-color: #fff;
|
|
41
41
|
--bizy-audio-player-seek-slider-thumb-active-background-color: var(--bizy-light-info-color);
|
|
42
42
|
--bizy-audio-player-buffered-width: 0;
|
|
@@ -125,6 +125,11 @@
|
|
|
125
125
|
--bizy-copy-to-clipboard-success-color: #5fbc5a;
|
|
126
126
|
--bizy-copy-to-clipboard-danger-color: #e76565;
|
|
127
127
|
|
|
128
|
+
--bizy-donut-chart-center-label-color: #000;
|
|
129
|
+
--bizy-donut-chart-tooltip-color: #000;
|
|
130
|
+
--bizy-donut-chart-tooltip-background-color: #fff;
|
|
131
|
+
--bizy-donut-chart-tooltip-border-color: #fff;
|
|
132
|
+
|
|
128
133
|
--bizy-filter-padding: 0;
|
|
129
134
|
--bizy-filter-color: var(--bizy-default-color);
|
|
130
135
|
--bizy-filter-background-color: #fff;
|
|
@@ -224,7 +229,7 @@
|
|
|
224
229
|
|
|
225
230
|
--bizy-menu-bar-option-background-color: #fff;
|
|
226
231
|
--bizy-menu-bar-option-border: 0.1rem solid var(--bizy-dark-info-color);
|
|
227
|
-
--bizy-menu-bar-option-color: var(--bizy-dark-info-color)
|
|
232
|
+
--bizy-menu-bar-option-color: var(--bizy-dark-info-color);
|
|
228
233
|
--bizy-menu-bar-option-min-width: 8rem;
|
|
229
234
|
--bizy-menu-bar-option-selected-background-color: var(--bizy-light-info-color);
|
|
230
235
|
|
|
@@ -343,6 +348,11 @@
|
|
|
343
348
|
--bizy-slider-range-color: var(--bizy-accent-color);
|
|
344
349
|
--bizy-slider-accent-color: var(--bizy-info-color);
|
|
345
350
|
|
|
351
|
+
--bizy-stacked-bar-chart-width: 100%;
|
|
352
|
+
--bizy-stacked-bar-chart-height: 0.5rem;
|
|
353
|
+
--bizy-stacked-bar-chart-border-radius: 0.3rem;
|
|
354
|
+
--bizy-stacked-bar-chart-background-color: var(var(--bizy-light-default-color));
|
|
355
|
+
|
|
346
356
|
--bizy-table-height: 100%;
|
|
347
357
|
--bizy-table-min-height: 5rem;
|
|
348
358
|
--bizy-table-max-height: 100%;
|
package/types/bizy-core.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter, PipeTransform, ElementRef, AfterViewInit, OnDestroy, OnInit, TemplateRef, QueryList, ViewContainerRef, AfterContentInit, ChangeDetectorRef, RendererFactory2, Renderer2 } from '@angular/core';
|
|
2
|
+
import { EventEmitter, PipeTransform, ElementRef, AfterViewInit, OnDestroy, OnInit, TemplateRef, QueryList, ViewContainerRef, AfterContentInit, AfterViewChecked, ChangeDetectorRef, RendererFactory2, Renderer2 } 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';
|
|
@@ -465,6 +465,66 @@ declare class BizyDatePickerModule {
|
|
|
465
465
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyDatePickerModule>;
|
|
466
466
|
}
|
|
467
467
|
|
|
468
|
+
declare class BizyDonutChartPopupComponent implements OnInit {
|
|
469
|
+
#private;
|
|
470
|
+
ngOnInit(): void;
|
|
471
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BizyDonutChartPopupComponent, never>;
|
|
472
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyDonutChartPopupComponent, "bizy-donut-chart-popup", never, {}, {}, never, never, true, never>;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
interface IBizyDonutChartData {
|
|
476
|
+
name: string;
|
|
477
|
+
value: number;
|
|
478
|
+
color?: string;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
declare class BizyDonutChartComponent {
|
|
482
|
+
#private;
|
|
483
|
+
resizeRef: HTMLElement | null;
|
|
484
|
+
centerLabel: string | null;
|
|
485
|
+
tooltip: {
|
|
486
|
+
show?: boolean;
|
|
487
|
+
formatter?: (item: any) => string;
|
|
488
|
+
};
|
|
489
|
+
legend: {
|
|
490
|
+
show?: boolean;
|
|
491
|
+
orient?: 'vertical' | 'horizontal';
|
|
492
|
+
position?: {
|
|
493
|
+
x: 'left' | 'right' | 'center';
|
|
494
|
+
y: 'top' | 'bottom' | 'center';
|
|
495
|
+
};
|
|
496
|
+
};
|
|
497
|
+
download: {
|
|
498
|
+
show?: boolean;
|
|
499
|
+
label?: string;
|
|
500
|
+
name?: string;
|
|
501
|
+
};
|
|
502
|
+
expand: {
|
|
503
|
+
show?: boolean;
|
|
504
|
+
label?: string;
|
|
505
|
+
};
|
|
506
|
+
label: {
|
|
507
|
+
show?: boolean;
|
|
508
|
+
overflow?: 'break' | 'truncate';
|
|
509
|
+
line?: boolean;
|
|
510
|
+
formatter?: (item: any) => string;
|
|
511
|
+
};
|
|
512
|
+
onSelect: EventEmitter<string>;
|
|
513
|
+
onDownload: EventEmitter<void>;
|
|
514
|
+
ngAfterViewInit(): void;
|
|
515
|
+
getNativeElement: () => any;
|
|
516
|
+
set data(data: Array<IBizyDonutChartData> | null);
|
|
517
|
+
ngOnDestroy(): void;
|
|
518
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BizyDonutChartComponent, never>;
|
|
519
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyDonutChartComponent, "bizy-donut-chart", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; "centerLabel": { "alias": "centerLabel"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "legend": { "alias": "legend"; "required": false; }; "download": { "alias": "download"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "label": { "alias": "label"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "onSelect": "onSelect"; "onDownload": "onDownload"; }, never, never, true, never>;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
declare class BizyDonutChartModule {
|
|
523
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BizyDonutChartModule, never>;
|
|
524
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BizyDonutChartModule, never, [typeof BizyDonutChartComponent, typeof BizyDonutChartPopupComponent], [typeof BizyDonutChartComponent, typeof BizyDonutChartPopupComponent]>;
|
|
525
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BizyDonutChartModule>;
|
|
526
|
+
}
|
|
527
|
+
|
|
468
528
|
declare class BizyFileUploaderComponent implements AfterViewInit, OnDestroy {
|
|
469
529
|
#private;
|
|
470
530
|
dragDropAreaWidth: string;
|
|
@@ -920,7 +980,6 @@ declare class BizyGridComponent implements AfterContentInit {
|
|
|
920
980
|
itemTemplate: TemplateRef<unknown>;
|
|
921
981
|
itemsPerRow: number;
|
|
922
982
|
ngAfterContentInit(): void;
|
|
923
|
-
trackById(index: number, item: any): any;
|
|
924
983
|
scrollTo(index: number, behavior?: 'auto' | 'instant' | 'smooth'): void;
|
|
925
984
|
ngOnDestroy(): void;
|
|
926
985
|
getNativeElement: () => any;
|
|
@@ -1150,20 +1209,24 @@ declare class BizyMenuBarModule {
|
|
|
1150
1209
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyMenuBarModule>;
|
|
1151
1210
|
}
|
|
1152
1211
|
|
|
1212
|
+
declare class BizyPieChartPopupComponent implements OnInit {
|
|
1213
|
+
#private;
|
|
1214
|
+
ngOnInit(): void;
|
|
1215
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BizyPieChartPopupComponent, never>;
|
|
1216
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyPieChartPopupComponent, "bizy-pie-chart-popup", never, {}, {}, never, never, true, never>;
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1153
1219
|
interface IBizyPieChartData {
|
|
1154
1220
|
name: string;
|
|
1155
1221
|
value: number;
|
|
1156
1222
|
color?: string;
|
|
1223
|
+
metadata?: any;
|
|
1157
1224
|
}
|
|
1158
1225
|
|
|
1159
1226
|
declare class BizyPieChartComponent {
|
|
1160
1227
|
#private;
|
|
1161
1228
|
resizeRef: HTMLElement | null;
|
|
1162
|
-
|
|
1163
|
-
centerLabel: {
|
|
1164
|
-
value: string | number;
|
|
1165
|
-
color?: string;
|
|
1166
|
-
} | null;
|
|
1229
|
+
centerLabel: string | null;
|
|
1167
1230
|
tooltip: {
|
|
1168
1231
|
show?: boolean;
|
|
1169
1232
|
formatter?: (item: any) => string;
|
|
@@ -1188,24 +1251,17 @@ declare class BizyPieChartComponent {
|
|
|
1188
1251
|
label: {
|
|
1189
1252
|
show?: boolean;
|
|
1190
1253
|
overflow?: 'break' | 'truncate';
|
|
1191
|
-
line
|
|
1254
|
+
line?: boolean;
|
|
1192
1255
|
formatter?: (item: any) => string;
|
|
1193
|
-
}
|
|
1194
|
-
onSelect: EventEmitter<
|
|
1256
|
+
};
|
|
1257
|
+
onSelect: EventEmitter<IBizyPieChartData>;
|
|
1195
1258
|
onDownload: EventEmitter<void>;
|
|
1196
1259
|
ngAfterViewInit(): void;
|
|
1197
1260
|
getNativeElement: () => any;
|
|
1198
1261
|
set data(data: Array<IBizyPieChartData> | null);
|
|
1199
1262
|
ngOnDestroy(): void;
|
|
1200
1263
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyPieChartComponent, never>;
|
|
1201
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BizyPieChartComponent, "bizy-pie-chart", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; "
|
|
1202
|
-
}
|
|
1203
|
-
|
|
1204
|
-
declare class BizyPieChartPopupComponent implements OnInit {
|
|
1205
|
-
#private;
|
|
1206
|
-
ngOnInit(): void;
|
|
1207
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BizyPieChartPopupComponent, never>;
|
|
1208
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BizyPieChartPopupComponent, "bizy-pie-chart-popup", never, {}, {}, never, never, true, never>;
|
|
1264
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyPieChartComponent, "bizy-pie-chart", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; "centerLabel": { "alias": "centerLabel"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "legend": { "alias": "legend"; "required": false; }; "download": { "alias": "download"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "label": { "alias": "label"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "onSelect": "onSelect"; "onDownload": "onDownload"; }, never, never, true, never>;
|
|
1209
1265
|
}
|
|
1210
1266
|
|
|
1211
1267
|
declare class BizyPieChartModule {
|
|
@@ -1523,6 +1579,58 @@ declare class BizySliderModule {
|
|
|
1523
1579
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizySliderModule>;
|
|
1524
1580
|
}
|
|
1525
1581
|
|
|
1582
|
+
declare class BizyStackedBarChartSegmentComponent implements AfterViewChecked {
|
|
1583
|
+
#private;
|
|
1584
|
+
id: string;
|
|
1585
|
+
disabled: boolean;
|
|
1586
|
+
name: string | null;
|
|
1587
|
+
onSelect: EventEmitter<PointerEvent>;
|
|
1588
|
+
onLegendSelect: EventEmitter<PointerEvent>;
|
|
1589
|
+
_width: string;
|
|
1590
|
+
get color$(): Observable<string>;
|
|
1591
|
+
get value$(): Observable<number>;
|
|
1592
|
+
set value(value: number);
|
|
1593
|
+
ngAfterViewChecked(): void;
|
|
1594
|
+
getNativeElement: () => any;
|
|
1595
|
+
_onSelect(event: PointerEvent): void;
|
|
1596
|
+
_setWidth(width: string): void;
|
|
1597
|
+
_getValue: () => number;
|
|
1598
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BizyStackedBarChartSegmentComponent, never>;
|
|
1599
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyStackedBarChartSegmentComponent, "bizy-stacked-bar-chart-segment", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "onSelect": "onSelect"; "onLegendSelect": "onLegendSelect"; }, never, never, true, never>;
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
declare enum ANURA_STACKED_BAR_CHART_LEGEND_POSITION {
|
|
1603
|
+
TOP = "top",
|
|
1604
|
+
BOTTOM = "bottom"
|
|
1605
|
+
}
|
|
1606
|
+
interface IBizyStackedBarChartLegends {
|
|
1607
|
+
show?: boolean;
|
|
1608
|
+
position?: ANURA_STACKED_BAR_CHART_LEGEND_POSITION;
|
|
1609
|
+
}
|
|
1610
|
+
|
|
1611
|
+
declare class BizyStackedBarChartComponent {
|
|
1612
|
+
#private;
|
|
1613
|
+
id: string;
|
|
1614
|
+
segments: QueryList<BizyStackedBarChartSegmentComponent> | null;
|
|
1615
|
+
_total: number;
|
|
1616
|
+
_forcedTotal: number;
|
|
1617
|
+
_legends: IBizyStackedBarChartLegends;
|
|
1618
|
+
readonly ANURA_STACKED_BAR_CHART_LEGEND_POSITION: typeof ANURA_STACKED_BAR_CHART_LEGEND_POSITION;
|
|
1619
|
+
getNativeElement: () => any;
|
|
1620
|
+
ngAfterContentInit(): void;
|
|
1621
|
+
set legends(legends: IBizyStackedBarChartLegends);
|
|
1622
|
+
set total(total: number);
|
|
1623
|
+
ngOnDestroy(): void;
|
|
1624
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BizyStackedBarChartComponent, never>;
|
|
1625
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyStackedBarChartComponent, "bizy-stacked-bar-chart", never, { "id": { "alias": "id"; "required": false; }; "legends": { "alias": "legends"; "required": false; }; "total": { "alias": "total"; "required": false; }; }, {}, ["segments"], ["bizy-stacked-bar-chart-segment"], true, never>;
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
declare class BizyStackedBarChartModule {
|
|
1629
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BizyStackedBarChartModule, never>;
|
|
1630
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BizyStackedBarChartModule, never, [typeof BizyStackedBarChartComponent, typeof BizyStackedBarChartSegmentComponent], [typeof BizyStackedBarChartComponent, typeof BizyStackedBarChartSegmentComponent]>;
|
|
1631
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BizyStackedBarChartModule>;
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1526
1634
|
declare class BizyTableColumnComponent {
|
|
1527
1635
|
#private;
|
|
1528
1636
|
id: string;
|
|
@@ -2431,5 +2539,5 @@ declare class BizyDirectivesModule {
|
|
|
2431
2539
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyDirectivesModule>;
|
|
2432
2540
|
}
|
|
2433
2541
|
|
|
2434
|
-
export { BIZY_ANIMATION, BIZY_CALENDAR_DAY, BIZY_CALENDAR_EVENT_ACTION, BIZY_CALENDAR_LANGUAGE, BIZY_CALENDAR_MODE, BIZY_FORMAT_SECONDS_FORMAT, BIZY_FORMAT_SECONDS_LANGUAGE, BIZY_SKELETON_SHAPE, BIZY_TAG_TYPE, BizyAccordionComponent, BizyAccordionModule, BizyAnimationService, BizyAudioPlayerComponent, BizyAudioPlayerFormatSecondsPipe, BizyAudioPlayerModule, BizyAudioRecorderComponent, BizyAudioRecorderModule, BizyAutoFocusDirective, BizyAveragePipe, BizyBarLineChartComponent, BizyBarLineChartModule, BizyBarLineChartPopupComponent, BizyBreadcrumbComponent, BizyBreadcrumbModule, BizyButtonComponent, BizyButtonModule, BizyCacheService, BizyCalendarComponent, BizyCalendarModule, BizyCardComponent, BizyCardModule, BizyCheckboxComponent, BizyCheckboxModule, BizyContentComponent, BizyContentModule, BizyCopyToClipboardDirective, BizyCopyToClipboardService, BizyCurrencyFormatDirective, BizyDatePickerComponent, BizyDatePickerModule, BizyDeviceService, BizyDirectivesModule, BizyEnumToArrayPipe, BizyExportToCSVService, BizyExtractNumbersPipe, BizyFileUploaderComponent, BizyFileUploaderModule, BizyFileUploaderService, BizyFilterComponent, BizyFilterContentComponent, BizyFilterModule, BizyFilterPipe, BizyFilterSectionCheckboxOptionComponent, BizyFilterSectionComponent, BizyFilterSectionRangeOptionComponent, BizyFilterSectionSearchOptionComponent, BizyFilterSectionsComponent, BizyFormComponent, BizyFormModule, BizyFormatSecondsPipe, BizyFormatSecondsService, BizyFullScreenPopupWrapperComponent, BizyGaugeChartComponent, BizyGaugeChartModule, BizyGaugeChartPopupComponent, BizyGridComponent, BizyGridForDirective, BizyGridModule, BizyGridRowComponent, BizyHeatMapChartComponent, BizyHeatMapChartModule, BizyInputComponent, BizyInputModule, BizyInputOptionComponent, BizyKeyboardService, BizyListComponent, BizyListModule, BizyLoadingDirective, BizyLogService, BizyLongPressDirective, BizyMenuBarComponent, BizyMenuBarModule, BizyMenuBarOptionComponent, BizyMenuComponent, BizyMenuModule, BizyMenuOptionComponent, BizyMenuTitleComponent, BizyOnlyNumbersDirective, BizyOnlyPhoneDigitsDirective, BizyOrderByPipe, BizyPieChartComponent, BizyPieChartModule, BizyPieChartPopupComponent, BizyPipesModule, BizyPopupModule, BizyPopupService, BizyPopupWrapperComponent, BizyProgressBarComponent, BizyProgressBarModule, BizyRadioComponent, BizyRadioModule, BizyRangeFilterPipe, BizyReducePipe, BizyReloadDirective, BizyRepeatPipe, BizyRoundPipe, BizyRouterService, BizySafePipe, BizySearchPipe, BizySectionCenterComponent, BizySectionComponent, BizySectionEndComponent, BizySectionModule, BizySectionStartComponent, BizySelectComponent, BizySelectModule, BizySelectOptionComponent, BizyServicesModule, BizySetToArrayPipe, BizySidebarComponent, BizySidebarFloatingOptionComponent, BizySidebarFloatingOptionTitleComponent, BizySidebarModule, BizySidebarOptionComponent, BizySkeletonComponent, BizySkeletonModule, BizySliderComponent, BizySliderModule, BizyStorageService, BizyTabComponent, BizyTableColumnArrowsComponent, BizyTableColumnComponent, BizyTableColumnFixedDirective, BizyTableComponent, BizyTableFooterComponent, BizyTableHeaderComponent, BizyTableModule, BizyTableRowComponent, BizyTableRowExpandContentComponent, BizyTableScrollingComponent, BizyTableScrollingDirective, BizyTabsComponent, BizyTabsModule, BizyTagComponent, BizyTagModule, BizyTextEllipsisDirective, BizyTimelineComponent, BizyTimelineEventComponent, BizyTimelineModule, BizyToastModule, BizyToastService, BizyToastWrapperComponent, BizyToggleComponent, BizyToggleModule, BizyToolbarComponent, BizyToolbarModule, BizyTooltipDirective, BizyTrackByIdDirective, BizyTranslateModule, BizyTranslatePipe, BizyTranslateService, BizyUniquePipe, BizyValidatorService, BizyViewportService, LANGUAGE, LOADING_TYPE, MIME_TYPE, POPUP_PLACEMENT };
|
|
2435
|
-
export type { IBizyBarLineChartData, IBizyBreadcrumb, IBizyCalendarEvent, IBizyGaugeChartData, IBizyHeatMapChartData, IBizyHeatMapChartRange, IBizyHeatMapHighlightArea, IBizyHeatMapHighlightLine, IBizyHeatMapHighlightLineLabel, IBizyPieChartData, IBizyPopupResponse, IBizySearchPipeOptions, ILocale, LabelPosition };
|
|
2542
|
+
export { ANURA_STACKED_BAR_CHART_LEGEND_POSITION, BIZY_ANIMATION, BIZY_CALENDAR_DAY, BIZY_CALENDAR_EVENT_ACTION, BIZY_CALENDAR_LANGUAGE, BIZY_CALENDAR_MODE, BIZY_FORMAT_SECONDS_FORMAT, BIZY_FORMAT_SECONDS_LANGUAGE, BIZY_SKELETON_SHAPE, BIZY_TAG_TYPE, BizyAccordionComponent, BizyAccordionModule, BizyAnimationService, BizyAudioPlayerComponent, BizyAudioPlayerFormatSecondsPipe, BizyAudioPlayerModule, BizyAudioRecorderComponent, BizyAudioRecorderModule, BizyAutoFocusDirective, BizyAveragePipe, BizyBarLineChartComponent, BizyBarLineChartModule, BizyBarLineChartPopupComponent, BizyBreadcrumbComponent, BizyBreadcrumbModule, BizyButtonComponent, BizyButtonModule, BizyCacheService, BizyCalendarComponent, BizyCalendarModule, BizyCardComponent, BizyCardModule, BizyCheckboxComponent, BizyCheckboxModule, BizyContentComponent, BizyContentModule, BizyCopyToClipboardDirective, BizyCopyToClipboardService, BizyCurrencyFormatDirective, BizyDatePickerComponent, BizyDatePickerModule, BizyDeviceService, BizyDirectivesModule, BizyDonutChartComponent, BizyDonutChartModule, BizyDonutChartPopupComponent, BizyEnumToArrayPipe, BizyExportToCSVService, BizyExtractNumbersPipe, BizyFileUploaderComponent, BizyFileUploaderModule, BizyFileUploaderService, BizyFilterComponent, BizyFilterContentComponent, BizyFilterModule, BizyFilterPipe, BizyFilterSectionCheckboxOptionComponent, BizyFilterSectionComponent, BizyFilterSectionRangeOptionComponent, BizyFilterSectionSearchOptionComponent, BizyFilterSectionsComponent, BizyFormComponent, BizyFormModule, BizyFormatSecondsPipe, BizyFormatSecondsService, BizyFullScreenPopupWrapperComponent, BizyGaugeChartComponent, BizyGaugeChartModule, BizyGaugeChartPopupComponent, BizyGridComponent, BizyGridForDirective, BizyGridModule, BizyGridRowComponent, BizyHeatMapChartComponent, BizyHeatMapChartModule, BizyInputComponent, BizyInputModule, BizyInputOptionComponent, BizyKeyboardService, BizyListComponent, BizyListModule, BizyLoadingDirective, BizyLogService, BizyLongPressDirective, BizyMenuBarComponent, BizyMenuBarModule, BizyMenuBarOptionComponent, BizyMenuComponent, BizyMenuModule, BizyMenuOptionComponent, BizyMenuTitleComponent, BizyOnlyNumbersDirective, BizyOnlyPhoneDigitsDirective, BizyOrderByPipe, BizyPieChartComponent, BizyPieChartModule, BizyPieChartPopupComponent, BizyPipesModule, BizyPopupModule, BizyPopupService, BizyPopupWrapperComponent, BizyProgressBarComponent, BizyProgressBarModule, BizyRadioComponent, BizyRadioModule, BizyRangeFilterPipe, BizyReducePipe, BizyReloadDirective, BizyRepeatPipe, BizyRoundPipe, BizyRouterService, BizySafePipe, BizySearchPipe, BizySectionCenterComponent, BizySectionComponent, BizySectionEndComponent, BizySectionModule, BizySectionStartComponent, BizySelectComponent, BizySelectModule, BizySelectOptionComponent, BizyServicesModule, BizySetToArrayPipe, BizySidebarComponent, BizySidebarFloatingOptionComponent, BizySidebarFloatingOptionTitleComponent, BizySidebarModule, BizySidebarOptionComponent, BizySkeletonComponent, BizySkeletonModule, BizySliderComponent, BizySliderModule, BizyStackedBarChartComponent, BizyStackedBarChartModule, BizyStackedBarChartSegmentComponent, BizyStorageService, BizyTabComponent, BizyTableColumnArrowsComponent, BizyTableColumnComponent, BizyTableColumnFixedDirective, BizyTableComponent, BizyTableFooterComponent, BizyTableHeaderComponent, BizyTableModule, BizyTableRowComponent, BizyTableRowExpandContentComponent, BizyTableScrollingComponent, BizyTableScrollingDirective, BizyTabsComponent, BizyTabsModule, BizyTagComponent, BizyTagModule, BizyTextEllipsisDirective, BizyTimelineComponent, BizyTimelineEventComponent, BizyTimelineModule, BizyToastModule, BizyToastService, BizyToastWrapperComponent, BizyToggleComponent, BizyToggleModule, BizyToolbarComponent, BizyToolbarModule, BizyTooltipDirective, BizyTrackByIdDirective, BizyTranslateModule, BizyTranslatePipe, BizyTranslateService, BizyUniquePipe, BizyValidatorService, BizyViewportService, LANGUAGE, LOADING_TYPE, MIME_TYPE, POPUP_PLACEMENT };
|
|
2543
|
+
export type { IBizyBarLineChartData, IBizyBreadcrumb, IBizyCalendarEvent, IBizyDonutChartData, IBizyGaugeChartData, IBizyHeatMapChartData, IBizyHeatMapChartRange, IBizyHeatMapHighlightArea, IBizyHeatMapHighlightLine, IBizyHeatMapHighlightLineLabel, IBizyPieChartData, IBizyPopupResponse, IBizySearchPipeOptions, IBizyStackedBarChartLegends, ILocale, LabelPosition };
|