@klippa/ngx-enhancy-forms 8.0.0 → 8.1.2
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/bundles/klippa-ngx-enhancy-forms.umd.js +93 -0
- package/bundles/klippa-ngx-enhancy-forms.umd.js.map +1 -1
- package/bundles/klippa-ngx-enhancy-forms.umd.min.js +1 -1
- package/bundles/klippa-ngx-enhancy-forms.umd.min.js.map +1 -1
- package/esm2015/lib/elements/hour-minute-input/hour-minute-input.component.js +86 -0
- package/esm2015/lib/ngx-enhancy-forms.module.js +4 -1
- package/esm2015/lib/validators/timeValidator.js +6 -0
- package/esm2015/public-api.js +2 -1
- package/fesm2015/klippa-ngx-enhancy-forms.js +90 -1
- package/fesm2015/klippa-ngx-enhancy-forms.js.map +1 -1
- package/klippa-ngx-enhancy-forms.metadata.json +1 -1
- package/lib/elements/hour-minute-input/hour-minute-input.component.d.ts +16 -0
- package/lib/validators/timeValidator.d.ts +3 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ValueAccessorBase } from '../value-accessor-base/value-accessor-base.component';
|
|
2
|
+
import { invalidTimeKey } from '../../validators/timeValidator';
|
|
3
|
+
export declare class HourMinuteInputComponent extends ValueAccessorBase<number | typeof invalidTimeKey> {
|
|
4
|
+
hours: string;
|
|
5
|
+
minutes: string;
|
|
6
|
+
private hoursTouched;
|
|
7
|
+
private minutesTouched;
|
|
8
|
+
formatHours(): void;
|
|
9
|
+
formatMinutes(): void;
|
|
10
|
+
formatTime(): void;
|
|
11
|
+
writeValue(value: number | typeof invalidTimeKey): void;
|
|
12
|
+
notifyNewTime(): void;
|
|
13
|
+
touchHours(): void;
|
|
14
|
+
touchMinutes(): void;
|
|
15
|
+
determineAllTouched(): void;
|
|
16
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export * from './lib/elements/sortable-grouped-items/sortable-grouped-items.comp
|
|
|
14
14
|
export * from './lib/elements/text-input/text-input.component';
|
|
15
15
|
export * from './lib/elements/toggle/toggle.component';
|
|
16
16
|
export * from './lib/elements/file-input/file-input.component';
|
|
17
|
+
export * from './lib/elements/hour-minute-input/hour-minute-input.component';
|
|
17
18
|
export * from './lib/elements/value-accessor-base/value-accessor-base.component';
|
|
18
19
|
export * from './lib/elements/value-accessor-base/multiple-value-accessor-base.component';
|
|
19
20
|
export * from './lib/form/form.component';
|