@tsi-developpement/tsi-shared-ui 1.8.1 → 1.8.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/esm2022/lib/tsi-components/input-components/tsi-date-picker/tsi-date-picker.component.mjs +12 -11
- package/esm2022/lib/tsi-components/reporting/reporting.component.mjs +4 -4
- package/fesm2022/tsi-developpement-tsi-shared-ui.mjs +14 -13
- package/fesm2022/tsi-developpement-tsi-shared-ui.mjs.map +1 -1
- package/lib/consts/app-providers.d.ts +1 -1
- package/lib/providers/shared-ui-tsi.provider.d.ts +1 -1
- package/lib/tsi-components/input-components/tsi-date-picker/tsi-date-picker.component.d.ts +4 -3
- package/package.json +1 -1
|
@@ -3,4 +3,4 @@ import { FormStateService } from "../services/form/form-state.service";
|
|
|
3
3
|
import { PresentationDesignerBaseService } from "../services/presentation-setting/presentation-designer-base.service";
|
|
4
4
|
import { GenericValidationStateService } from "../services/validation/generic-validation-state.service";
|
|
5
5
|
import { InputRegistryService } from "../services/validation/input-registry.service";
|
|
6
|
-
export declare const appProviders: (typeof PresentationDesignerBaseService | typeof
|
|
6
|
+
export declare const appProviders: (typeof PresentationDesignerBaseService | typeof GenericValidationStateService | typeof InputRegistryService | typeof DynamicFormService | typeof FormStateService)[];
|
|
@@ -2,7 +2,7 @@ import { DynamicDialogConfig, DynamicDialogRef } from "primeng/dynamicdialog";
|
|
|
2
2
|
import { TabView } from "primeng/tabview";
|
|
3
3
|
import { JwtHelperService } from "@auth0/angular-jwt";
|
|
4
4
|
import { ConfirmationService, MessageService } from "primeng/api";
|
|
5
|
-
export declare const SharedUiTsiProviders: (typeof
|
|
5
|
+
export declare const SharedUiTsiProviders: (typeof TabView | typeof DynamicDialogRef | typeof DynamicDialogConfig | typeof JwtHelperService | typeof MessageService | typeof ConfirmationService | {
|
|
6
6
|
provide: import("@angular/core").InjectionToken<unknown>;
|
|
7
7
|
useValue: import("@angular/core").InjectionToken<unknown>;
|
|
8
8
|
})[];
|
|
@@ -24,11 +24,12 @@ export declare class TsiDatePickerComponent extends TsiInputBase<Date | undefine
|
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
constructor(_datePipe: DatePipe, _dateHelperService: DateHelperService, primeNGConfig: PrimeNGConfig, _layoutService: LayoutService);
|
|
27
|
-
onFocusOut(
|
|
28
|
-
onSelect(
|
|
27
|
+
onFocusOut(): void;
|
|
28
|
+
onSelect(): void;
|
|
29
29
|
ngOnInit(): void;
|
|
30
30
|
private _toString;
|
|
31
|
-
_updateInputFieldFromStringDate(
|
|
31
|
+
_updateInputFieldFromStringDate(): void;
|
|
32
|
+
onModelChange(event: any): void;
|
|
32
33
|
private _handleDateChange;
|
|
33
34
|
private _createUtcDate;
|
|
34
35
|
_initArabicLocal(): void;
|