cps-ui-kit 17.19.0 → 17.21.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/esm2022/lib/components/cps-timepicker/cps-timepicker.component.mjs +7 -13
- package/esm2022/lib/services/cps-dialog/cps-dialog.service.mjs +9 -5
- package/fesm2022/cps-ui-kit.mjs +14 -16
- package/fesm2022/cps-ui-kit.mjs.map +1 -1
- package/lib/components/cps-timepicker/cps-timepicker.component.d.ts +1 -2
- package/lib/services/cps-dialog/cps-dialog.service.d.ts +3 -2
- package/package.json +1 -1
|
@@ -123,7 +123,7 @@ export declare class CpsTimepickerComponent implements OnInit, AfterViewInit, On
|
|
|
123
123
|
registerOnChange(fn: any): void;
|
|
124
124
|
registerOnTouched(fn: any): void;
|
|
125
125
|
setDisabledState(disabled: boolean): void;
|
|
126
|
-
writeValue(value: CpsTime): void;
|
|
126
|
+
writeValue(value: CpsTime | undefined): void;
|
|
127
127
|
onFieldBlur(): void;
|
|
128
128
|
updateHours(hours: string): void;
|
|
129
129
|
updateMinutes(minutes: string): void;
|
|
@@ -137,7 +137,6 @@ export declare class CpsTimepickerComponent implements OnInit, AfterViewInit, On
|
|
|
137
137
|
private _checkErrors;
|
|
138
138
|
private _initHoursOptions;
|
|
139
139
|
private _updateValue;
|
|
140
|
-
private _tryUpdateValue;
|
|
141
140
|
private _getRange;
|
|
142
141
|
static ɵfac: i0.ɵɵFactoryDeclaration<CpsTimepickerComponent, [{ optional: true; self: true; }]>;
|
|
143
142
|
static ɵcmp: i0.ɵɵComponentDeclaration<CpsTimepickerComponent, "cps-timepicker", never, { "label": { "alias": "label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "use24HourTime": { "alias": "use24HourTime"; "required": false; }; "withSeconds": { "alias": "withSeconds"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "hideDetails": { "alias": "hideDetails"; "required": false; }; "infoTooltip": { "alias": "infoTooltip"; "required": false; }; "infoTooltipClass": { "alias": "infoTooltipClass"; "required": false; }; "infoTooltipMaxWidth": { "alias": "infoTooltipMaxWidth"; "required": false; }; "infoTooltipPersistent": { "alias": "infoTooltipPersistent"; "required": false; }; "infoTooltipPosition": { "alias": "infoTooltipPosition"; "required": false; }; "mandatoryValue": { "alias": "mandatoryValue"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChanged": "valueChanged"; }, never, never, true, never>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Type, ComponentRef, ApplicationRef, EnvironmentInjector } from '@angular/core';
|
|
1
|
+
import { Type, ComponentRef, ApplicationRef, EnvironmentInjector, Injector } from '@angular/core';
|
|
2
2
|
import { CpsDialogRef } from './utils/cps-dialog-ref';
|
|
3
3
|
import { CpsDialogConfig } from './utils/cps-dialog-config';
|
|
4
4
|
import { CpsDialogComponent } from './internal/components/cps-dialog/cps-dialog.component';
|
|
@@ -10,9 +10,10 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
export declare class CpsDialogService {
|
|
11
11
|
private _appRef;
|
|
12
12
|
private _environmentInjector;
|
|
13
|
+
private _injector;
|
|
13
14
|
private document;
|
|
14
15
|
dialogComponentRefMap: Map<CpsDialogRef, ComponentRef<CpsDialogComponent>>;
|
|
15
|
-
constructor(_appRef: ApplicationRef, _environmentInjector: EnvironmentInjector, document: Document);
|
|
16
|
+
constructor(_appRef: ApplicationRef, _environmentInjector: EnvironmentInjector, _injector: Injector, document: Document);
|
|
16
17
|
/**
|
|
17
18
|
* Opens a dialog with a dynamically loaded component.
|
|
18
19
|
* @param {*} componentType - Dynamic component for content template.
|