@ethlete/cdk 4.55.0 → 4.55.1
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @ethlete/cdk
|
|
2
2
|
|
|
3
|
+
## 4.55.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2624](https://github.com/ethlete-io/ethdk/pull/2624) [`c5be6a0`](https://github.com/ethlete-io/ethdk/commit/c5be6a0f06a86eae66c9312a9d440c3a24450e4c) Thanks [@nicks-passiert](https://github.com/nicks-passiert)! - Complete min and max attribute implementation on time input
|
|
8
|
+
|
|
3
9
|
## 4.55.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/fesm2022/ethlete-cdk.mjs
CHANGED
|
@@ -5500,13 +5500,16 @@ class TimeInputComponent extends DecoratedInputBase {
|
|
|
5500
5500
|
this.timeInput = inject(TIME_INPUT_TOKEN);
|
|
5501
5501
|
}
|
|
5502
5502
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: TimeInputComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5503
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.7", type: TimeInputComponent, isStandalone: true, selector: "et-time-input", host: { classAttribute: "et-time-input" }, usesInheritance: true, hostDirectives: [{ directive: TimeInputDirective }, { directive: InputDirective, inputs: ["autocomplete", "autocomplete", "placeholder", "placeholder"] }], ngImport: i0, template: "<ng-content select=\"[etInputPrefix]\" />\n\n<input\n [attr.id]=\"input.id\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [required]=\"input.required$ | async\"\n [disabled]=\"input.disabled$ | async\"\n [attr.autocomplete]=\"input.autocomplete || null\"\n [attr.placeholder]=\"input.placeholder || null\"\n [attr.
|
|
5503
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.7", type: TimeInputComponent, isStandalone: true, selector: "et-time-input", host: { classAttribute: "et-time-input" }, usesInheritance: true, hostDirectives: [{ directive: TimeInputDirective }, { directive: InputDirective, inputs: ["autocomplete", "autocomplete", "placeholder", "placeholder", "min", "min", "max", "max"] }], ngImport: i0, template: "<ng-content select=\"[etInputPrefix]\" />\n\n<input\n [attr.id]=\"input.id\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [required]=\"input.required$ | async\"\n [disabled]=\"input.disabled$ | async\"\n [attr.autocomplete]=\"input.autocomplete || null\"\n [attr.placeholder]=\"input.placeholder || null\"\n [attr.min]=\"input.min || null\"\n [attr.max]=\"input.max || null\"\n [attr.aria-describedby]=\"input.describedBy$ | async\"\n (input)=\"timeInput._onInputInteraction($event)\"\n (blur)=\"timeInput._controlTouched()\"\n class=\"et-input-native-control et-time-input-native-control\"\n type=\"time\"\n etNativeInputRef\n/>\n\n<ng-content select=\"[etInputSuffix]\" />\n", styles: [""], dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "directive", type: NativeInputRefDirective, selector: "input[etNativeInputRef], textarea[etNativeInputRef], select[etNativeInputRef], button[etNativeInputRef]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
5504
5504
|
}
|
|
5505
5505
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: TimeInputComponent, decorators: [{
|
|
5506
5506
|
type: Component,
|
|
5507
5507
|
args: [{ selector: 'et-time-input', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
5508
5508
|
class: 'et-time-input',
|
|
5509
|
-
}, imports: [AsyncPipe, NativeInputRefDirective], hostDirectives: [
|
|
5509
|
+
}, imports: [AsyncPipe, NativeInputRefDirective], hostDirectives: [
|
|
5510
|
+
TimeInputDirective,
|
|
5511
|
+
{ directive: InputDirective, inputs: ['autocomplete', 'placeholder', 'min', 'max'] },
|
|
5512
|
+
], template: "<ng-content select=\"[etInputPrefix]\" />\n\n<input\n [attr.id]=\"input.id\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [required]=\"input.required$ | async\"\n [disabled]=\"input.disabled$ | async\"\n [attr.autocomplete]=\"input.autocomplete || null\"\n [attr.placeholder]=\"input.placeholder || null\"\n [attr.min]=\"input.min || null\"\n [attr.max]=\"input.max || null\"\n [attr.aria-describedby]=\"input.describedBy$ | async\"\n (input)=\"timeInput._onInputInteraction($event)\"\n (blur)=\"timeInput._controlTouched()\"\n class=\"et-input-native-control et-time-input-native-control\"\n type=\"time\"\n etNativeInputRef\n/>\n\n<ng-content select=\"[etInputSuffix]\" />\n" }]
|
|
5510
5513
|
}] });
|
|
5511
5514
|
|
|
5512
5515
|
class AutosizeTextareaDirective {
|