@bizy/core 21.4.0 → 21.4.2
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 +22 -22
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/variables.css +11 -4
- package/types/bizy-core.d.ts +4 -4
package/package.json
CHANGED
package/styles/variables.css
CHANGED
|
@@ -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;
|
|
@@ -222,8 +228,8 @@
|
|
|
222
228
|
--bizy-menu-background-color: #fff;
|
|
223
229
|
--bizy-menu-arrow-height: 0.9rem;
|
|
224
230
|
--bizy-menu-min-width: fit-content;
|
|
225
|
-
--bizy-menu-max-width:
|
|
226
|
-
--bizy-menu-max-height:
|
|
231
|
+
--bizy-menu-max-width: 90dvw;
|
|
232
|
+
--bizy-menu-max-height: 90dvh;
|
|
227
233
|
--bizy-menu-scroll-bar-color: var(--bizy-default-color);
|
|
228
234
|
--bizy-menu-scroll-bar-hover-color: #999;
|
|
229
235
|
|
|
@@ -241,7 +247,7 @@
|
|
|
241
247
|
--bizy-popup-background-color: #fff;
|
|
242
248
|
--bizy-popup-min-width: 20rem;
|
|
243
249
|
--bizy-popup-width: fit-content;
|
|
244
|
-
--bizy-popup-max-width:
|
|
250
|
+
--bizy-popup-max-width: 90dvw;
|
|
245
251
|
--bizy-popup-padding: 0.5rem;
|
|
246
252
|
--bizy-popup-border-radius: 0.3rem;
|
|
247
253
|
--bizy-popup-drag-button-color: var(--bizy-default-color);
|
|
@@ -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-
|
|
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;
|
package/types/bizy-core.d.ts
CHANGED
|
@@ -1598,13 +1598,13 @@ declare class BizyStackedBarChartSegmentComponent implements AfterViewChecked {
|
|
|
1598
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>;
|
|
1599
1599
|
}
|
|
1600
1600
|
|
|
1601
|
-
declare enum
|
|
1601
|
+
declare enum BIZY_STACKED_BAR_CHART_LEGEND_POSITION {
|
|
1602
1602
|
TOP = "top",
|
|
1603
1603
|
BOTTOM = "bottom"
|
|
1604
1604
|
}
|
|
1605
1605
|
interface IBizyStackedBarChartLegends {
|
|
1606
1606
|
show?: boolean;
|
|
1607
|
-
position?:
|
|
1607
|
+
position?: BIZY_STACKED_BAR_CHART_LEGEND_POSITION;
|
|
1608
1608
|
}
|
|
1609
1609
|
|
|
1610
1610
|
declare class BizyStackedBarChartComponent {
|
|
@@ -1614,7 +1614,7 @@ declare class BizyStackedBarChartComponent {
|
|
|
1614
1614
|
_total: number;
|
|
1615
1615
|
_forcedTotal: number;
|
|
1616
1616
|
_legends: IBizyStackedBarChartLegends;
|
|
1617
|
-
readonly
|
|
1617
|
+
readonly BIZY_STACKED_BAR_CHART_LEGEND_POSITION: typeof BIZY_STACKED_BAR_CHART_LEGEND_POSITION;
|
|
1618
1618
|
getNativeElement: () => any;
|
|
1619
1619
|
ngAfterContentInit(): void;
|
|
1620
1620
|
set legends(legends: IBizyStackedBarChartLegends);
|
|
@@ -2528,5 +2528,5 @@ declare class BizyDirectivesModule {
|
|
|
2528
2528
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyDirectivesModule>;
|
|
2529
2529
|
}
|
|
2530
2530
|
|
|
2531
|
-
export {
|
|
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 };
|
|
2532
2532
|
export type { IBizyBarLineChartData, IBizyBreadcrumb, IBizyCalendarEvent, IBizyDonutChartData, IBizyGaugeChartData, IBizyHeatMapChartData, IBizyHeatMapChartRange, IBizyHeatMapHighlightArea, IBizyHeatMapHighlightLine, IBizyHeatMapHighlightLineLabel, IBizyPieChartData, IBizyPopupResponse, IBizySearchPipeOptions, IBizyStackedBarChartLegends, ILocale, LabelPosition };
|