@provoly/hypervisor 2.3.2 → 2.3.4
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/esm2022/src/lib/event/filters/date/date-filter.component.mjs +7 -5
- package/esm2022/src/lib/procedure/model-detail/procedure-model-detail.component.mjs +3 -3
- package/fesm2022/provoly-hypervisor.mjs +7 -5
- package/fesm2022/provoly-hypervisor.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/event/filters/date/date-filter.component.d.ts +2 -1
- package/styles/components/_o-hvy-event-detail.scss +16 -4
- package/styles/components/_o-hvy-procedure-detail.scss +3 -0
package/package.json
CHANGED
|
@@ -3,6 +3,7 @@ import { Store } from '@ngrx/store';
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class DateFilterComponent extends HvyUnitFilterComponent {
|
|
5
5
|
private store;
|
|
6
|
+
max?: string;
|
|
6
7
|
value: string;
|
|
7
8
|
constructor(store: Store);
|
|
8
9
|
getParams(): {
|
|
@@ -10,5 +11,5 @@ export declare class DateFilterComponent extends HvyUnitFilterComponent {
|
|
|
10
11
|
};
|
|
11
12
|
triggerChange($event: Event): void;
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateFilterComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateFilterComponent, "hvy-date-filter", never, {}, {}, never, never, false, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateFilterComponent, "hvy-date-filter", never, { "max": { "alias": "max"; "required": false; }; }, {}, never, never, false, never>;
|
|
14
15
|
}
|
|
@@ -386,16 +386,28 @@ div.mat-mdc-autocomplete-panel {
|
|
|
386
386
|
display: flex;
|
|
387
387
|
flex-direction: column;
|
|
388
388
|
align-items: center;
|
|
389
|
+
width: 28.25em;
|
|
390
|
+
max-width: 28.25em;
|
|
391
|
+
padding-bottom: 0.75em;
|
|
392
|
+
margin-top: -0.375em;
|
|
393
|
+
|
|
394
|
+
h3 {
|
|
395
|
+
font-size: 1.0625em;
|
|
396
|
+
font-weight: bold;
|
|
397
|
+
text-align: center;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
p {
|
|
401
|
+
font-size: 0.875em;
|
|
402
|
+
font-weight: normal;
|
|
403
|
+
text-align: center;
|
|
404
|
+
}
|
|
389
405
|
|
|
390
406
|
&__container {
|
|
391
407
|
display: flex;
|
|
392
408
|
width: max-content;
|
|
393
409
|
flex-direction: column;
|
|
394
410
|
align-items: center;
|
|
395
|
-
|
|
396
|
-
p:first-child {
|
|
397
|
-
//font-weight: bold;
|
|
398
|
-
}
|
|
399
411
|
}
|
|
400
412
|
}
|
|
401
413
|
|