@bizy/core 21.2.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 +298 -114
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/variables.css +7 -2
- package/types/bizy-core.d.ts +55 -4
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;
|
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
|
|
230
230
|
--bizy-menu-bar-option-background-color: #fff;
|
|
231
231
|
--bizy-menu-bar-option-border: 0.1rem solid var(--bizy-dark-info-color);
|
|
232
|
-
--bizy-menu-bar-option-color: var(--bizy-dark-info-color)
|
|
232
|
+
--bizy-menu-bar-option-color: var(--bizy-dark-info-color);
|
|
233
233
|
--bizy-menu-bar-option-min-width: 8rem;
|
|
234
234
|
--bizy-menu-bar-option-selected-background-color: var(--bizy-light-info-color);
|
|
235
235
|
|
|
@@ -348,6 +348,11 @@
|
|
|
348
348
|
--bizy-slider-range-color: var(--bizy-accent-color);
|
|
349
349
|
--bizy-slider-accent-color: var(--bizy-info-color);
|
|
350
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
|
+
|
|
351
356
|
--bizy-table-height: 100%;
|
|
352
357
|
--bizy-table-min-height: 5rem;
|
|
353
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';
|
|
@@ -980,7 +980,6 @@ declare class BizyGridComponent implements AfterContentInit {
|
|
|
980
980
|
itemTemplate: TemplateRef<unknown>;
|
|
981
981
|
itemsPerRow: number;
|
|
982
982
|
ngAfterContentInit(): void;
|
|
983
|
-
trackById(index: number, item: any): any;
|
|
984
983
|
scrollTo(index: number, behavior?: 'auto' | 'instant' | 'smooth'): void;
|
|
985
984
|
ngOnDestroy(): void;
|
|
986
985
|
getNativeElement: () => any;
|
|
@@ -1580,6 +1579,58 @@ declare class BizySliderModule {
|
|
|
1580
1579
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizySliderModule>;
|
|
1581
1580
|
}
|
|
1582
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
|
+
|
|
1583
1634
|
declare class BizyTableColumnComponent {
|
|
1584
1635
|
#private;
|
|
1585
1636
|
id: string;
|
|
@@ -2488,5 +2539,5 @@ declare class BizyDirectivesModule {
|
|
|
2488
2539
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyDirectivesModule>;
|
|
2489
2540
|
}
|
|
2490
2541
|
|
|
2491
|
-
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, 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, 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 };
|
|
2492
|
-
export type { IBizyBarLineChartData, IBizyBreadcrumb, IBizyCalendarEvent, IBizyDonutChartData, 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 };
|