@osovitny/anatoly 3.16.88 → 3.16.89
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/ui/components/base/components/edit.component.mjs +5 -2
- package/esm2022/lib/ui/forms/components/dropdownlists/timezone/timezone.dropdownlist.mjs +5 -11
- package/esm2022/lib/ui/forms/components/urlslug/urlslug.component.mjs +2 -5
- package/esm2022/lib/ui/validation/item-validation-summary.component.mjs +4 -7
- package/fesm2022/osovitny-anatoly.mjs +10 -19
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/ui/components/base/components/edit.component.d.ts +2 -1
- package/lib/ui/forms/components/dropdownlists/timezone/timezone.dropdownlist.d.ts +1 -3
- package/lib/ui/forms/components/urlslug/urlslug.component.d.ts +1 -2
- package/lib/ui/validation/item-validation-summary.component.d.ts +1 -2
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ export declare abstract class EditComponentBase extends ComponentBase {
|
|
|
6
6
|
protected isEditMode: boolean;
|
|
7
7
|
formGroup: FormGroup;
|
|
8
8
|
formSubmitted: boolean;
|
|
9
|
+
controlName: any;
|
|
9
10
|
constructor();
|
|
10
11
|
isControlValid(name: string, frmGroup?: FormGroup): boolean;
|
|
11
12
|
isControlInvalid(name: string, frmGroup?: FormGroup): boolean;
|
|
@@ -54,5 +55,5 @@ export declare abstract class EditComponentBase extends ComponentBase {
|
|
|
54
55
|
[key: string]: AbstractControl<any, any>;
|
|
55
56
|
};
|
|
56
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditComponentBase, never>;
|
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EditComponentBase, "ng-component", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "formSubmitted": { "alias": "formSubmitted"; "required": false; }; }, {}, never, never, false, never>;
|
|
58
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditComponentBase, "ng-component", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "formSubmitted": { "alias": "formSubmitted"; "required": false; }; "controlName": { "alias": "controlName"; "required": false; }; }, {}, never, never, false, never>;
|
|
58
59
|
}
|
|
@@ -13,12 +13,10 @@ export declare class TimezoneDropdownlist extends EditComponentBase implements O
|
|
|
13
13
|
private api;
|
|
14
14
|
private appContext;
|
|
15
15
|
timezoneListItems: Timezone[];
|
|
16
|
-
controlName: string;
|
|
17
|
-
controlTitle: string;
|
|
18
16
|
constructor(api: CoreApiService, appContext: AppContextService);
|
|
19
17
|
ngOnInit(): void;
|
|
20
18
|
setValues(): void;
|
|
21
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<TimezoneDropdownlist, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TimezoneDropdownlist, "anatoly-forms-timezone-dropdownlist", never, {
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TimezoneDropdownlist, "anatoly-forms-timezone-dropdownlist", never, {}, {}, never, never, false, never>;
|
|
23
21
|
}
|
|
24
22
|
export {};
|
|
@@ -6,7 +6,6 @@ export declare class UrlSlugComponent extends EditComponentBase implements OnIni
|
|
|
6
6
|
hrefGo: string;
|
|
7
7
|
urlPrefix: string;
|
|
8
8
|
isGoButtonVisible: boolean;
|
|
9
|
-
controlName: string;
|
|
10
9
|
watchedControlName: string;
|
|
11
10
|
generating: EventEmitter<any>;
|
|
12
11
|
constructor();
|
|
@@ -15,5 +14,5 @@ export declare class UrlSlugComponent extends EditComponentBase implements OnIni
|
|
|
15
14
|
private startWatching;
|
|
16
15
|
onUrlSlugChange(): void;
|
|
17
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<UrlSlugComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UrlSlugComponent, "anatoly-forms-urlslug", never, { "urlPrefix": { "alias": "urlPrefix"; "required": false; }; "isGoButtonVisible": { "alias": "isGoButtonVisible"; "required": false; }; "
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UrlSlugComponent, "anatoly-forms-urlslug", never, { "urlPrefix": { "alias": "urlPrefix"; "required": false; }; "isGoButtonVisible": { "alias": "isGoButtonVisible"; "required": false; }; "watchedControlName": { "alias": "watchedControlName"; "required": false; }; }, { "generating": "generating"; }, never, never, false, never>;
|
|
19
18
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ValidationSummaryComponent } from "./validation-summary.component";
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class ItemValidationSummaryComponent extends ValidationSummaryComponent {
|
|
4
|
-
controlName: string;
|
|
5
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<ItemValidationSummaryComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ItemValidationSummaryComponent, "anatoly-item-validation-summary", never, {
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ItemValidationSummaryComponent, "anatoly-item-validation-summary", never, {}, {}, never, never, false, never>;
|
|
7
6
|
}
|