bpm-core 0.0.57 → 0.0.59
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/app-component-sections/layout/layout.component.mjs +3 -3
- package/esm2022/lib/components/shared-components/form-field/attachment-section/attachment-section.component.mjs +3 -3
- package/esm2022/lib/components/shared-components/form-field/date-range-picker/date-range-picker.component.mjs +3 -3
- package/esm2022/lib/components/shared-components/form-field/input/input.component.mjs +7 -4
- package/esm2022/lib/components/shared-components/form-field/toggle-button/toggle-button.component.mjs +3 -3
- package/esm2022/lib/components/shared-components/form-field/validation-errors/validation-errors.component.mjs +5 -5
- package/esm2022/lib/components/shared-components/table/table.component.mjs +2 -2
- package/esm2022/lib/i18n/ar.mjs +9 -2
- package/esm2022/lib/i18n/en.mjs +9 -2
- package/esm2022/lib/testComponent/general-approver-section/general-approver-section.component.mjs +2 -2
- package/esm2022/lib/testComponent/request-details-section/request-details-section.component.mjs +3 -3
- package/fesm2022/bpm-core.mjs +38 -21
- package/fesm2022/bpm-core.mjs.map +1 -1
- package/lib/components/shared-components/form-field/input/input.component.d.ts +2 -1
- package/lib/components/shared-components/form-field/shared-imports.d.ts +2 -2
- package/lib/i18n/ar.d.ts +7 -0
- package/lib/i18n/en.d.ts +7 -0
- package/package.json +1 -1
- package/src/lib/assets/scss/_general.scss +2 -2
|
@@ -7,6 +7,7 @@ export declare class InputComponent<Type> extends ControlValueAccessorDirective<
|
|
|
7
7
|
iconPrefixName: string;
|
|
8
8
|
iconSuffixName: string;
|
|
9
9
|
emitedChangedValue1: EventEmitter<any>;
|
|
10
|
+
customErrorMessages: any;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent<any>, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent<any>, "app-input", never, { "floatLabel": { "alias": "floatLabel"; "required": false; }; "className": { "alias": "className"; "required": false; }; "iconPrefixName": { "alias": "iconPrefixName"; "required": false; }; "iconSuffixName": { "alias": "iconSuffixName"; "required": false; }; "emitedChangedValue1": { "alias": "emitedChangedValue1"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent<any>, "app-input", never, { "floatLabel": { "alias": "floatLabel"; "required": false; }; "className": { "alias": "className"; "required": false; }; "iconPrefixName": { "alias": "iconPrefixName"; "required": false; }; "iconSuffixName": { "alias": "iconSuffixName"; "required": false; }; "emitedChangedValue1": { "alias": "emitedChangedValue1"; "required": false; }; "customErrorMessages": { "alias": "customErrorMessages"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
13
|
}
|
|
@@ -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
|
|
12
|
+
export declare const MatDatePickerImports: (typeof MatDatepickerInput | typeof MatDatepickerToggle | typeof MatDatepickerModule)[];
|
|
13
13
|
export declare const MatFormImports: (typeof MatFormFieldModule | typeof MatFormField | typeof MatInput)[];
|
|
14
|
-
export declare const Shareds: (typeof
|
|
14
|
+
export declare const Shareds: (typeof TranslatePipe | typeof NgClass | typeof ValidationErrorsComponent | typeof FormLabelComponent | typeof InfoItemComponent | typeof ReactiveFormsModule)[];
|
|
15
15
|
export declare const TextLanguageDirectives: (typeof EnOnlyDirective | typeof ArOnlyDirective)[];
|
package/lib/i18n/ar.d.ts
CHANGED
|
@@ -176,5 +176,12 @@ declare const _default: {
|
|
|
176
176
|
status: string;
|
|
177
177
|
downloadAll: string;
|
|
178
178
|
itemsPerPage: string;
|
|
179
|
+
thisFieldIsRequired: string;
|
|
180
|
+
thisFieldMaxLength: string;
|
|
181
|
+
thisFieldMinLength: string;
|
|
182
|
+
pleaseEnterValidNumber: string;
|
|
183
|
+
startDate: string;
|
|
184
|
+
endDate: string;
|
|
185
|
+
textArea: string;
|
|
179
186
|
};
|
|
180
187
|
export default _default;
|
package/lib/i18n/en.d.ts
CHANGED
|
@@ -180,5 +180,12 @@ declare const _default: {
|
|
|
180
180
|
status: string;
|
|
181
181
|
downloadAll: string;
|
|
182
182
|
itemsPerPage: string;
|
|
183
|
+
thisFieldIsRequired: string;
|
|
184
|
+
thisFieldMaxLength: string;
|
|
185
|
+
thisFieldMinLength: string;
|
|
186
|
+
pleaseEnterValidNumber: string;
|
|
187
|
+
startDate: string;
|
|
188
|
+
endDate: string;
|
|
189
|
+
textArea: string;
|
|
183
190
|
};
|
|
184
191
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1000,7 +1000,7 @@ html.NoScroll {
|
|
|
1000
1000
|
overflow: hidden;
|
|
1001
1001
|
}
|
|
1002
1002
|
|
|
1003
|
-
|
|
1003
|
+
/*.hup-main-container {
|
|
1004
1004
|
.hub-top-header {
|
|
1005
1005
|
display: none !important;
|
|
1006
1006
|
}
|
|
@@ -1008,7 +1008,7 @@ html.NoScroll {
|
|
|
1008
1008
|
.hup-main-wrapper {
|
|
1009
1009
|
margin-top: 0 !important;
|
|
1010
1010
|
}
|
|
1011
|
-
}
|
|
1011
|
+
}*/
|
|
1012
1012
|
|
|
1013
1013
|
.dockbar-ready {
|
|
1014
1014
|
.dockbar {
|