@bizy/core 21.4.1 → 21.4.3
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 +46 -14
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/variables.css +5 -4
- package/types/bizy-core.d.ts +2 -0
package/package.json
CHANGED
package/styles/variables.css
CHANGED
|
@@ -134,6 +134,7 @@
|
|
|
134
134
|
--bizy-filter-color: var(--bizy-default-color);
|
|
135
135
|
--bizy-filter-background-color: #fff;
|
|
136
136
|
--bizy-filter-badge-color: var(--bizy-danger-color);
|
|
137
|
+
--bizy-filter-max-width: 90dvw;
|
|
137
138
|
--bizy-filter-section-clear-color: var(--bizy-danger-color);
|
|
138
139
|
--bizy-filter-section-min-width: 8rem;
|
|
139
140
|
|
|
@@ -228,8 +229,8 @@
|
|
|
228
229
|
--bizy-menu-background-color: #fff;
|
|
229
230
|
--bizy-menu-arrow-height: 0.9rem;
|
|
230
231
|
--bizy-menu-min-width: fit-content;
|
|
231
|
-
--bizy-menu-max-width:
|
|
232
|
-
--bizy-menu-max-height:
|
|
232
|
+
--bizy-menu-max-width: 90dvw;
|
|
233
|
+
--bizy-menu-max-height: 90dvh;
|
|
233
234
|
--bizy-menu-scroll-bar-color: var(--bizy-default-color);
|
|
234
235
|
--bizy-menu-scroll-bar-hover-color: #999;
|
|
235
236
|
|
|
@@ -239,15 +240,15 @@
|
|
|
239
240
|
--bizy-menu-bar-option-min-width: 8rem;
|
|
240
241
|
--bizy-menu-bar-option-selected-background-color: var(--bizy-light-info-color);
|
|
241
242
|
|
|
243
|
+
--bizy-pie-chart-center-label-color: #000;
|
|
242
244
|
--bizy-pie-chart-tooltip-color: #000;
|
|
243
245
|
--bizy-pie-chart-tooltip-background-color: #fff;
|
|
244
246
|
--bizy-pie-chart-tooltip-border-color: #fff;
|
|
245
|
-
--bizy-pie-chart-center-label-color: #000;
|
|
246
247
|
|
|
247
248
|
--bizy-popup-background-color: #fff;
|
|
248
249
|
--bizy-popup-min-width: 20rem;
|
|
249
250
|
--bizy-popup-width: fit-content;
|
|
250
|
-
--bizy-popup-max-width:
|
|
251
|
+
--bizy-popup-max-width: 90dvw;
|
|
251
252
|
--bizy-popup-padding: 0.5rem;
|
|
252
253
|
--bizy-popup-border-radius: 0.3rem;
|
|
253
254
|
--bizy-popup-drag-button-color: var(--bizy-default-color);
|
package/types/bizy-core.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { EventEmitter, PipeTransform, ElementRef, AfterViewInit, OnDestroy, OnIn
|
|
|
3
3
|
import { CalendarEvent, CalendarMonthViewDay } from 'angular-calendar';
|
|
4
4
|
import { Subject, Observable, BehaviorSubject } from 'rxjs';
|
|
5
5
|
import { UppyFile, SuccessResponse } from '@uppy/core';
|
|
6
|
+
import { CdkConnectedOverlay } from '@angular/cdk/overlay';
|
|
6
7
|
import { AbstractControl, ValidatorFn } from '@angular/forms';
|
|
7
8
|
import { Portal, TemplatePortal, ComponentType } from '@angular/cdk/portal';
|
|
8
9
|
import { DialogRef } from '@angular/cdk/dialog';
|
|
@@ -625,6 +626,7 @@ declare class BizyFileUploaderService {
|
|
|
625
626
|
|
|
626
627
|
declare class BizyFilterComponent {
|
|
627
628
|
#private;
|
|
629
|
+
overlay: CdkConnectedOverlay;
|
|
628
630
|
private sections;
|
|
629
631
|
id: string;
|
|
630
632
|
disabled: boolean;
|