@skyux/datetime 14.9.2 → 14.11.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/datetime",
3
- "version": "14.9.2",
3
+ "version": "14.11.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -20,13 +20,13 @@
20
20
  "@angular/common": "^21.2.0",
21
21
  "@angular/core": "^21.2.0",
22
22
  "@angular/forms": "^21.2.0",
23
- "@skyux/core": "14.9.2",
24
- "@skyux/forms": "14.9.2",
25
- "@skyux/i18n": "14.9.2",
26
- "@skyux/icon": "14.9.2",
27
- "@skyux/indicators": "14.9.2",
28
- "@skyux/popovers": "14.9.2",
29
- "@skyux/theme": "14.9.2",
23
+ "@skyux/core": "14.11.0",
24
+ "@skyux/forms": "14.11.0",
25
+ "@skyux/i18n": "14.11.0",
26
+ "@skyux/icon": "14.11.0",
27
+ "@skyux/indicators": "14.11.0",
28
+ "@skyux/popovers": "14.11.0",
29
+ "@skyux/theme": "14.11.0",
30
30
  "moment": "^2.30.1"
31
31
  },
32
32
  "dependencies": {
@@ -1201,6 +1201,14 @@ declare class SkyTimepickerInputDirective implements OnInit, OnDestroy, ControlV
1201
1201
  * see the [moment.js](https://momentjs.com/docs/#/displaying/format/) docs.
1202
1202
  */
1203
1203
  returnFormat: string | undefined;
1204
+ /**
1205
+ * Whether to retain invalid entries in the input when it loses focus. When
1206
+ * set to `true`, an invalid value remains in the field and the associated
1207
+ * form control is flagged with a `skyTime` error, matching the behavior of
1208
+ * the datepicker.
1209
+ * @default false
1210
+ */
1211
+ readonly skyTimepickerRetainInvalidValues: i0.InputSignalWithTransform<boolean, unknown>;
1204
1212
  /**
1205
1213
  * Whether to disable the timepicker on template-driven forms. Don't use this input on reactive forms because they may overwrite the input or leave the control out of sync.
1206
1214
  * To set the disabled state on reactive forms, use the `FormControl` instead.
@@ -1221,7 +1229,7 @@ declare class SkyTimepickerInputDirective implements OnInit, OnDestroy, ControlV
1221
1229
  writeValue(value: any): void;
1222
1230
  validate(control: AbstractControl): ValidationErrors | null;
1223
1231
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyTimepickerInputDirective, never>;
1224
- static ɵdir: i0.ɵɵDirectiveDeclaration<SkyTimepickerInputDirective, "[skyTimepickerInput]", never, { "skyTimepickerInput": { "alias": "skyTimepickerInput"; "required": false; }; "timeFormat": { "alias": "timeFormat"; "required": false; }; "returnFormat": { "alias": "returnFormat"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, never>;
1232
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SkyTimepickerInputDirective, "[skyTimepickerInput]", never, { "skyTimepickerInput": { "alias": "skyTimepickerInput"; "required": false; }; "timeFormat": { "alias": "timeFormat"; "required": false; }; "returnFormat": { "alias": "returnFormat"; "required": false; }; "skyTimepickerRetainInvalidValues": { "alias": "skyTimepickerRetainInvalidValues"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, never>;
1225
1233
  }
1226
1234
 
1227
1235
  declare class SkyTimepickerModule {