@quadrel-enterprise-ui/framework 18.25.1 → 18.25.3
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/esm2022/lib/forms/datepicker/calendar/calendar.component.mjs +8 -1
- package/esm2022/lib/forms/input/input.component.mjs +18 -9
- package/fesm2022/quadrel-enterprise-ui-framework.mjs +20 -8
- package/fesm2022/quadrel-enterprise-ui-framework.mjs.map +1 -1
- package/lib/forms/datepicker/calendar/calendar.component.d.ts +7 -0
- package/lib/forms/input/input.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { Moment } from 'moment';
|
|
3
3
|
import { QdCalendarDay, QdCalendarMode, QdDisabledDates } from '../../model/datepicker';
|
|
4
|
+
/**
|
|
5
|
+
* DO NOT REMOVE — Vite/ESM does not bundle Moment locales automatically.
|
|
6
|
+
* These side-effect imports register de/fr/it for month and weekday names.
|
|
7
|
+
*/
|
|
8
|
+
import 'moment/locale/de';
|
|
9
|
+
import 'moment/locale/fr';
|
|
10
|
+
import 'moment/locale/it';
|
|
4
11
|
import * as i0 from "@angular/core";
|
|
5
12
|
export declare class QdCalendarComponent implements OnInit, OnChanges {
|
|
6
13
|
/**
|
|
@@ -329,6 +329,7 @@ export declare class QdInputComponent implements OnInit, OnChanges, OnDestroy, C
|
|
|
329
329
|
private initializeOptionsResolver;
|
|
330
330
|
private emitValue;
|
|
331
331
|
private initOpModeSubscription;
|
|
332
|
+
private normalizeInitialControlValueIfNeeded;
|
|
332
333
|
static ɵfac: i0.ɵɵFactoryDeclaration<QdInputComponent, [null, null, { optional: true; host: true; skipSelf: true; }, { optional: true; }]>;
|
|
333
334
|
static ɵcmp: i0.ɵɵComponentDeclaration<QdInputComponent, "qd-input", never, { "formControlName": { "alias": "formControlName"; "required": false; }; "value": { "alias": "value"; "required": false; }; "config": { "alias": "config"; "required": false; }; "isError": { "alias": "isError"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "valueChange": "valueChange"; "enterClick": "enterClick"; "clickClear": "clickClear"; "clickHint": "clickHint"; "clickReadonly": "clickReadonly"; "clickViewonly": "clickViewonly"; }, never, ["[qdIconButton]"], false, never>;
|
|
334
335
|
}
|