bpm-core 0.0.91 → 0.0.92
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/components/shared-components/form-field/info-item/info-item.component.mjs +7 -3
- package/esm2022/lib/testComponent/request-details-section/request-details-section.component.mjs +6 -5
- package/fesm2022/bpm-core.mjs +11 -7
- package/fesm2022/bpm-core.mjs.map +1 -1
- package/lib/components/shared-components/form-field/info-item/info-item.component.d.ts +1 -0
- package/lib/components/shared-components/form-field/shared-imports.d.ts +3 -3
- package/package.json +1 -1
|
@@ -18,6 +18,7 @@ export declare class InfoItemComponent implements OnInit {
|
|
|
18
18
|
ngOnInit(): void;
|
|
19
19
|
viewForm(url: string): void;
|
|
20
20
|
getImage(email: string): string;
|
|
21
|
+
getDate(date: any): string;
|
|
21
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<InfoItemComponent, never>;
|
|
22
23
|
static ɵcmp: i0.ɵɵComponentDeclaration<InfoItemComponent, "app-info-item", never, { "label": { "alias": "label"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "type": { "alias": "type"; "required": false; }; "dateType": { "alias": "dateType"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "insideTable": { "alias": "insideTable"; "required": false; }; "hasLabel": { "alias": "hasLabel"; "required": false; }; "arrayList": { "alias": "arrayList"; "required": false; }; "actionType": { "alias": "actionType"; "required": false; }; "download": { "alias": "download"; "required": false; }; }, {}, never, never, true, never>;
|
|
23
24
|
}
|
|
@@ -9,7 +9,7 @@ import { EnOnlyDirective } from "../../../directives/en.directive";
|
|
|
9
9
|
import { ArOnlyDirective } from "../../../directives/ar.directive";
|
|
10
10
|
import { NgClass } from "@angular/common";
|
|
11
11
|
import { TranslatePipe } from "../../../pipes/translate.pipe";
|
|
12
|
-
export declare const MatDatePickerImports: (typeof
|
|
13
|
-
export declare const MatFormImports: (typeof
|
|
14
|
-
export declare const Shareds: (typeof
|
|
12
|
+
export declare const MatDatePickerImports: (typeof MatDatepickerToggle | typeof MatDatepickerInput | typeof MatDatepickerModule)[];
|
|
13
|
+
export declare const MatFormImports: (typeof MatFormFieldModule | typeof MatFormField | typeof MatInput)[];
|
|
14
|
+
export declare const Shareds: (typeof FormLabelComponent | typeof ValidationErrorsComponent | typeof InfoItemComponent | typeof ReactiveFormsModule | typeof NgClass | typeof TranslatePipe)[];
|
|
15
15
|
export declare const TextLanguageDirectives: (typeof EnOnlyDirective | typeof ArOnlyDirective)[];
|