@ethlete/cdk 4.38.0 → 4.38.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 +6 -0
- package/esm2022/lib/components/forms/components/input/components/color-input/color-input.component.mjs +24 -0
- package/esm2022/lib/components/forms/components/input/components/color-input/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/input/directives/color-input/color-input.directive.mjs +50 -0
- package/esm2022/lib/components/forms/components/input/directives/color-input/index.mjs +2 -0
- package/esm2022/lib/components/forms/components/input/input.imports.mjs +3 -1
- package/fesm2022/ethlete-cdk.mjs +61 -0
- package/fesm2022/ethlete-cdk.mjs.map +1 -1
- package/lib/components/forms/components/input/components/color-input/color-input.component.d.ts +10 -0
- package/lib/components/forms/components/input/components/color-input/index.d.ts +1 -0
- package/lib/components/forms/components/input/directives/color-input/color-input.directive.d.ts +13 -0
- package/lib/components/forms/components/input/directives/color-input/index.d.ts +1 -0
- package/lib/components/forms/components/input/input.imports.d.ts +2 -1
- package/package.json +1 -1
package/lib/components/forms/components/input/components/color-input/color-input.component.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DecoratedInputBase } from '../../../../utils';
|
|
2
|
+
import { ColorInputDirective } from '../../directives/color-input';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../../directives/color-input/color-input.directive";
|
|
5
|
+
import * as i2 from "../../../../directives/input/input.directive";
|
|
6
|
+
export declare class ColorInputComponent extends DecoratedInputBase {
|
|
7
|
+
protected readonly colorInput: ColorInputDirective;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ColorInputComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ColorInputComponent, "et-color-input", never, {}, {}, never, ["[etInputPrefix]", "[etInputSuffix]"], true, [{ directive: typeof i1.ColorInputDirective; inputs: {}; outputs: {}; }, { directive: typeof i2.InputDirective; inputs: { "autocomplete": "autocomplete"; "placeholder": "placeholder"; }; outputs: {}; }]>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './color-input.component';
|
package/lib/components/forms/components/input/directives/color-input/color-input.directive.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { InjectionToken, OnInit } from '@angular/core';
|
|
2
|
+
import { InputDirective } from '../../../../directives/input';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare const COLOR_INPUT_TOKEN: InjectionToken<ColorInputDirective>;
|
|
5
|
+
export declare class ColorInputDirective implements OnInit {
|
|
6
|
+
private readonly _destroy$;
|
|
7
|
+
readonly input: InputDirective<string | null, HTMLElement>;
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
_onInputInteraction(event: Event): void;
|
|
10
|
+
_controlTouched(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ColorInputDirective, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ColorInputDirective, never, ["etColorInput"], {}, {}, never, never, true, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './color-input.directive';
|
|
@@ -3,6 +3,7 @@ import { IfInputFilledDirective } from '../../directives/if-input-filled';
|
|
|
3
3
|
import { InputPrefixDirective } from '../../directives/input-prefix';
|
|
4
4
|
import { InputSuffixDirective } from '../../directives/input-suffix';
|
|
5
5
|
import { LabelComponent } from '../label/components/label';
|
|
6
|
+
import { ColorInputComponent } from './components/color-input';
|
|
6
7
|
import { DateInputComponent } from './components/date-input';
|
|
7
8
|
import { DateTimeInputComponent } from './components/date-time-input';
|
|
8
9
|
import { EmailInputComponent } from './components/email-input';
|
|
@@ -19,4 +20,4 @@ import { IfSupportsShowPickerDirective } from './directives/if-supports-show-pic
|
|
|
19
20
|
import { ShowPickerTriggerDirective } from './directives/show-picker-trigger';
|
|
20
21
|
import { PasswordInputToggleComponent } from './partials/password-input-toggle';
|
|
21
22
|
import { SearchInputClearComponent } from './partials/search-input-clear';
|
|
22
|
-
export declare const InputImports: readonly [typeof InputFieldComponent, typeof NumberInputComponent, typeof SearchInputComponent, typeof PasswordInputComponent, typeof PasswordInputToggleComponent, typeof TextInputComponent, typeof TextareaInputComponent, typeof TelInputComponent, typeof InputPrefixDirective, typeof InputSuffixDirective, typeof IfInputFilledDirective, typeof ShowPickerTriggerDirective, typeof IfInputEmptyDirective, typeof SearchInputClearComponent, typeof EmailInputComponent, typeof LabelComponent, typeof DateInputComponent, typeof DateTimeInputComponent, typeof TimeInputComponent, typeof IfSupportsShowPickerDirective, typeof AutosizeTextareaDirective];
|
|
23
|
+
export declare const InputImports: readonly [typeof InputFieldComponent, typeof NumberInputComponent, typeof SearchInputComponent, typeof PasswordInputComponent, typeof PasswordInputToggleComponent, typeof TextInputComponent, typeof TextareaInputComponent, typeof TelInputComponent, typeof InputPrefixDirective, typeof InputSuffixDirective, typeof IfInputFilledDirective, typeof ShowPickerTriggerDirective, typeof IfInputEmptyDirective, typeof SearchInputClearComponent, typeof EmailInputComponent, typeof LabelComponent, typeof DateInputComponent, typeof DateTimeInputComponent, typeof TimeInputComponent, typeof IfSupportsShowPickerDirective, typeof AutosizeTextareaDirective, typeof ColorInputComponent];
|