cps-ui-kit 21.9.0 → 21.10.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/fesm2022/cps-ui-kit.mjs +210 -201
- package/fesm2022/cps-ui-kit.mjs.map +1 -1
- package/package.json +1 -1
- package/types/cps-ui-kit.d.ts +9 -0
package/package.json
CHANGED
package/types/cps-ui-kit.d.ts
CHANGED
|
@@ -2196,6 +2196,7 @@ declare class CpsSchedulerComponent implements OnInit, OnChanges {
|
|
|
2196
2196
|
/**
|
|
2197
2197
|
* Time zone value.
|
|
2198
2198
|
* @group Props
|
|
2199
|
+
* @default System time zone, fallback UTC
|
|
2199
2200
|
*/
|
|
2200
2201
|
timeZone: string;
|
|
2201
2202
|
/**
|
|
@@ -5215,6 +5216,10 @@ declare class CpsDialogContentDirective {
|
|
|
5215
5216
|
static ɵdir: i0.ɵɵDirectiveDeclaration<CpsDialogContentDirective, "[cpsDialogContent]", never, {}, {}, never, never, true, never>;
|
|
5216
5217
|
}
|
|
5217
5218
|
|
|
5219
|
+
/**
|
|
5220
|
+
* Configuration for the dialog service.
|
|
5221
|
+
* @group Interface
|
|
5222
|
+
*/
|
|
5218
5223
|
declare class CpsDialogConfig<T = any> {
|
|
5219
5224
|
/**
|
|
5220
5225
|
* An object to pass to the component loaded inside the Dialog.
|
|
@@ -5456,6 +5461,10 @@ declare class CpsDialogComponent implements AfterViewInit, OnDestroy {
|
|
|
5456
5461
|
static ɵcmp: i0.ɵɵComponentDeclaration<CpsDialogComponent, "cps-dialog", never, {}, {}, never, never, true, never>;
|
|
5457
5462
|
}
|
|
5458
5463
|
|
|
5464
|
+
/**
|
|
5465
|
+
* Reference to an opened dialog, returned by CpsDialogService.open() and CpsDialogService.openConfirmationDialog().
|
|
5466
|
+
* @group Classes
|
|
5467
|
+
*/
|
|
5459
5468
|
declare class CpsDialogRef<T = any> {
|
|
5460
5469
|
private _containerInstance;
|
|
5461
5470
|
_setContainerInstance(instance: CpsDialogComponent): void;
|