@bizy/core 21.3.0 → 21.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizy/core",
3
- "version": "21.3.0",
3
+ "version": "21.4.1",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^21.0.0",
6
6
  "@angular/common": "^21.0.0",
@@ -146,6 +146,12 @@
146
146
  --bizy-gauge-chart-tooltip-color: #000;
147
147
  --bizy-gauge-chart-tooltip-background-color: #fff;
148
148
  --bizy-gauge-chart-tooltip-border-color: #fff;
149
+ --bizy-gauge-chart-background-color: var(--bizy-light-default-color);
150
+ --bizy-gauge-chart-progress-color: var(--bizy-accent-color);
151
+ --bizy-gauge-chart-value-color: var(--bizy-gauge-chart-progress-color);
152
+ --bizy-gauge-chart-text-color: var(--bizy-default-color);
153
+ --bizy-gauge-chart-anchor-color: var(--bizy-dark-default-color);
154
+ --bizy-gauge-chart-pointer-color: var(--bizy-dark-default-color);
149
155
 
150
156
  --bizy-grid-height: 100%;
151
157
  --bizy-grid-min-height: 5rem;
@@ -351,7 +357,8 @@
351
357
  --bizy-stacked-bar-chart-width: 100%;
352
358
  --bizy-stacked-bar-chart-height: 0.5rem;
353
359
  --bizy-stacked-bar-chart-border-radius: 0.3rem;
354
- --bizy-stacked-bar-chart-background-color: var(var(--bizy-light-default-color));
360
+ --bizy-stacked-bar-chart-color: var(--bizy-accent-color);
361
+ --bizy-stacked-bar-chart-background-color: var(--bizy-default-color);
355
362
 
356
363
  --bizy-table-height: 100%;
357
364
  --bizy-table-min-height: 5rem;
@@ -12,7 +12,6 @@ import { ActivatedRouteSnapshot, Router, ActivatedRoute } from '@angular/router'
12
12
  import { DomSanitizer, SafeHtml, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';
13
13
  import Fuse, { FuseGetFunction } from 'fuse.js';
14
14
  import AutoNumeric from 'autonumeric';
15
- import { NgForOf } from '@angular/common';
16
15
 
17
16
  declare class BizyAccordionComponent {
18
17
  #private;
@@ -1599,13 +1598,13 @@ declare class BizyStackedBarChartSegmentComponent implements AfterViewChecked {
1599
1598
  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
1599
  }
1601
1600
 
1602
- declare enum ANURA_STACKED_BAR_CHART_LEGEND_POSITION {
1601
+ declare enum BIZY_STACKED_BAR_CHART_LEGEND_POSITION {
1603
1602
  TOP = "top",
1604
1603
  BOTTOM = "bottom"
1605
1604
  }
1606
1605
  interface IBizyStackedBarChartLegends {
1607
1606
  show?: boolean;
1608
- position?: ANURA_STACKED_BAR_CHART_LEGEND_POSITION;
1607
+ position?: BIZY_STACKED_BAR_CHART_LEGEND_POSITION;
1609
1608
  }
1610
1609
 
1611
1610
  declare class BizyStackedBarChartComponent {
@@ -1615,7 +1614,7 @@ declare class BizyStackedBarChartComponent {
1615
1614
  _total: number;
1616
1615
  _forcedTotal: number;
1617
1616
  _legends: IBizyStackedBarChartLegends;
1618
- readonly ANURA_STACKED_BAR_CHART_LEGEND_POSITION: typeof ANURA_STACKED_BAR_CHART_LEGEND_POSITION;
1617
+ readonly BIZY_STACKED_BAR_CHART_LEGEND_POSITION: typeof BIZY_STACKED_BAR_CHART_LEGEND_POSITION;
1619
1618
  getNativeElement: () => any;
1620
1619
  ngAfterContentInit(): void;
1621
1620
  set legends(legends: IBizyStackedBarChartLegends);
@@ -2512,16 +2511,6 @@ declare class BizyTooltipDirective implements OnDestroy {
2512
2511
  static ɵdir: i0.ɵɵDirectiveDeclaration<BizyTooltipDirective, "[bizyTooltip]", never, { "tooltipCustomClass": { "alias": "tooltipCustomClass"; "required": false; }; "tooltipPlacement": { "alias": "tooltipPlacement"; "required": false; }; "tooltipDelay": { "alias": "tooltipDelay"; "required": false; }; "showTooltip": { "alias": "showTooltip"; "required": false; }; "tooltipLongPressDuration": { "alias": "tooltipLongPressDuration"; "required": false; }; "tooltipLineClamp": { "alias": "tooltipLineClamp"; "required": false; }; "tooltipText": { "alias": "bizyTooltip"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "delay": { "alias": "delay"; "required": false; }; }, {}, never, never, true, never>;
2513
2512
  }
2514
2513
 
2515
- interface Item {
2516
- id: string;
2517
- }
2518
- declare class BizyTrackByIdDirective<T extends Item> {
2519
- private readonly ngFor;
2520
- constructor(ngFor: NgForOf<T>);
2521
- static ɵfac: i0.ɵɵFactoryDeclaration<BizyTrackByIdDirective<any>, [{ host: true; }]>;
2522
- static ɵdir: i0.ɵɵDirectiveDeclaration<BizyTrackByIdDirective<any>, "[bizyTrackById]", never, {}, {}, never, never, true, never>;
2523
- }
2524
-
2525
2514
  declare class BizyAutoFocusDirective implements AfterViewInit {
2526
2515
  private elementRef;
2527
2516
  private ref;
@@ -2535,9 +2524,9 @@ declare class BizyAutoFocusDirective implements AfterViewInit {
2535
2524
 
2536
2525
  declare class BizyDirectivesModule {
2537
2526
  static ɵfac: i0.ɵɵFactoryDeclaration<BizyDirectivesModule, never>;
2538
- static ɵmod: i0.ɵɵNgModuleDeclaration<BizyDirectivesModule, never, [typeof BizyCopyToClipboardDirective, typeof BizyCurrencyFormatDirective, typeof BizyLoadingDirective, typeof BizyLongPressDirective, typeof BizyOnlyNumbersDirective, typeof BizyOnlyPhoneDigitsDirective, typeof BizyTextEllipsisDirective, typeof BizyTooltipDirective, typeof BizyTrackByIdDirective, typeof BizyAutoFocusDirective, typeof BizyReloadDirective], [typeof BizyCopyToClipboardDirective, typeof BizyCurrencyFormatDirective, typeof BizyLoadingDirective, typeof BizyLongPressDirective, typeof BizyOnlyNumbersDirective, typeof BizyOnlyPhoneDigitsDirective, typeof BizyTextEllipsisDirective, typeof BizyTooltipDirective, typeof BizyTrackByIdDirective, typeof BizyAutoFocusDirective, typeof BizyReloadDirective]>;
2527
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BizyDirectivesModule, never, [typeof BizyCopyToClipboardDirective, typeof BizyCurrencyFormatDirective, typeof BizyLoadingDirective, typeof BizyLongPressDirective, typeof BizyOnlyNumbersDirective, typeof BizyOnlyPhoneDigitsDirective, typeof BizyTextEllipsisDirective, typeof BizyTooltipDirective, typeof BizyAutoFocusDirective, typeof BizyReloadDirective], [typeof BizyCopyToClipboardDirective, typeof BizyCurrencyFormatDirective, typeof BizyLoadingDirective, typeof BizyLongPressDirective, typeof BizyOnlyNumbersDirective, typeof BizyOnlyPhoneDigitsDirective, typeof BizyTextEllipsisDirective, typeof BizyTooltipDirective, typeof BizyAutoFocusDirective, typeof BizyReloadDirective]>;
2539
2528
  static ɵinj: i0.ɵɵInjectorDeclaration<BizyDirectivesModule>;
2540
2529
  }
2541
2530
 
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 };
2531
+ 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_STACKED_BAR_CHART_LEGEND_POSITION, 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, BizyTranslateModule, BizyTranslatePipe, BizyTranslateService, BizyUniquePipe, BizyValidatorService, BizyViewportService, LANGUAGE, LOADING_TYPE, MIME_TYPE, POPUP_PLACEMENT };
2543
2532
  export type { IBizyBarLineChartData, IBizyBreadcrumb, IBizyCalendarEvent, IBizyDonutChartData, IBizyGaugeChartData, IBizyHeatMapChartData, IBizyHeatMapChartRange, IBizyHeatMapHighlightArea, IBizyHeatMapHighlightLine, IBizyHeatMapHighlightLineLabel, IBizyPieChartData, IBizyPopupResponse, IBizySearchPipeOptions, IBizyStackedBarChartLegends, ILocale, LabelPosition };