@ethlete/cdk 4.39.0 → 4.40.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/CHANGELOG.md +6 -0
- package/esm2022/lib/components/forms/components/input/components/date-time-input/date-time-input.component.mjs +6 -3
- package/esm2022/lib/components/forms/directives/input/input.directive.mjs +8 -2
- package/fesm2022/ethlete-cdk.mjs +12 -3
- package/fesm2022/ethlete-cdk.mjs.map +1 -1
- package/lib/components/forms/components/input/components/date-time-input/date-time-input.component.d.ts +1 -1
- package/lib/components/forms/directives/input/input.directive.d.ts +3 -1
- package/package.json +1 -1
|
@@ -6,5 +6,5 @@ import * as i2 from "../../../../directives/input/input.directive";
|
|
|
6
6
|
export declare class DateTimeInputComponent extends DecoratedInputBase {
|
|
7
7
|
protected readonly dateInput: DateTimeInputDirective;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateTimeInputComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateTimeInputComponent, "et-date-time-input", never, {}, {}, never, ["[etInputPrefix]", "[etInputSuffix]"], true, [{ directive: typeof i1.DateTimeInputDirective; inputs: {}; outputs: {}; }, { directive: typeof i2.InputDirective; inputs: { "autocomplete": "autocomplete"; "placeholder": "placeholder"; }; outputs: {}; }]>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateTimeInputComponent, "et-date-time-input", never, {}, {}, never, ["[etInputPrefix]", "[etInputSuffix]"], true, [{ directive: typeof i1.DateTimeInputDirective; inputs: {}; outputs: {}; }, { directive: typeof i2.InputDirective; inputs: { "autocomplete": "autocomplete"; "placeholder": "placeholder"; "min": "min"; "max": "max"; }; outputs: {}; }]>;
|
|
10
10
|
}
|
|
@@ -19,6 +19,8 @@ export declare class InputDirective<T = unknown, J extends HTMLElement = HTMLEle
|
|
|
19
19
|
private readonly _id;
|
|
20
20
|
autocomplete: string | null;
|
|
21
21
|
placeholder: string | null;
|
|
22
|
+
min: string | null;
|
|
23
|
+
max: string | null;
|
|
22
24
|
get id(): string;
|
|
23
25
|
get value$(): Observable<T | null>;
|
|
24
26
|
get value(): T | null;
|
|
@@ -71,5 +73,5 @@ export declare class InputDirective<T = unknown, J extends HTMLElement = HTMLEle
|
|
|
71
73
|
private _detectControlRequiredValidationChanges;
|
|
72
74
|
private _detectControlDisabledChanges;
|
|
73
75
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputDirective<any, any>, never>;
|
|
74
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<InputDirective<any, any>, "[etInput]", ["etInput"], { "autocomplete": { "alias": "autocomplete"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, {}, never, never, true, never>;
|
|
76
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<InputDirective<any, any>, "[etInput]", ["etInput"], { "autocomplete": { "alias": "autocomplete"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; }, {}, never, never, true, never>;
|
|
75
77
|
}
|