@osovitny/anatoly 3.17.86 → 3.17.87
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/core/converts/dateConvert.mjs +1 -2
- package/esm2022/lib/iam/configs.mjs +1 -2
- package/esm2022/lib/iam/consts.mjs +1 -2
- package/esm2022/lib/ui/components/base/components/edit.component.mjs +5 -2
- package/esm2022/lib/ui/components/base/components/enum-edit.component.mjs +7 -1
- package/esm2022/lib/ui/dialogs/contact-us/contact-us.dialog.mjs +2 -3
- package/esm2022/lib/ui/dialogs/exports.mjs +1 -2
- package/esm2022/lib/ui/dialogs/index.mjs +1 -2
- package/esm2022/lib/ui/directives/exports.mjs +1 -2
- package/esm2022/lib/ui/directives/hover.directive.mjs +1 -2
- package/esm2022/lib/ui/directives/index.mjs +1 -2
- package/esm2022/lib/ui/directives/native-element.directive.mjs +1 -2
- package/esm2022/lib/ui/forms/exports.mjs +1 -2
- package/esm2022/lib/ui/forms/index.mjs +1 -2
- package/fesm2022/osovitny-anatoly.mjs +11 -14
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/ui/components/base/components/edit.component.d.ts +2 -1
- package/lib/ui/components/base/components/enum-edit.component.d.ts +2 -0
- package/lib/ui/components/index.d.ts +1 -1
- package/lib/ui/pipes/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ export declare abstract class EditComponentBase extends ComponentBase {
|
|
|
7
7
|
formGroup: FormGroup;
|
|
8
8
|
formSubmitted: boolean;
|
|
9
9
|
controlName: string;
|
|
10
|
+
controlTitle: string;
|
|
10
11
|
constructor();
|
|
11
12
|
isControlValid(name: string, frmGroup?: FormGroup): boolean;
|
|
12
13
|
isControlInvalid(name: string, frmGroup?: FormGroup): boolean;
|
|
@@ -56,5 +57,5 @@ export declare abstract class EditComponentBase extends ComponentBase {
|
|
|
56
57
|
};
|
|
57
58
|
get isNgModelBased(): boolean;
|
|
58
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditComponentBase, never>;
|
|
59
|
-
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>;
|
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditComponentBase, "ng-component", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "formSubmitted": { "alias": "formSubmitted"; "required": false; }; "controlName": { "alias": "controlName"; "required": false; }; "controlTitle": { "alias": "controlTitle"; "required": false; }; }, {}, never, never, false, never>;
|
|
60
61
|
}
|
|
@@ -8,6 +8,8 @@ export declare abstract class EnumEditComponentBase extends EditComponentBase im
|
|
|
8
8
|
defaultValue: number;
|
|
9
9
|
valueChange: EventEmitter<any>;
|
|
10
10
|
ngOnInit(): void;
|
|
11
|
+
private setDefaults;
|
|
12
|
+
private setValues;
|
|
11
13
|
private fireValueChange;
|
|
12
14
|
private renderItems;
|
|
13
15
|
reset(): void;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { BuyAccessButtonComponent, SubscribePlanButtonComponent, CardComponent, CheckIconComponent, Copy2ClipboardComponent, CountryDropdownlist, TimezoneDropdownlist, NodataComponent, PageSpinnerComponent, LoadingComponent } from './exports';
|
|
2
|
-
export declare const MAIN_COMPONENTS: (typeof
|
|
2
|
+
export declare const MAIN_COMPONENTS: (typeof TimezoneDropdownlist | typeof CountryDropdownlist | typeof BuyAccessButtonComponent | typeof SubscribePlanButtonComponent | typeof CardComponent | typeof CheckIconComponent | typeof Copy2ClipboardComponent | typeof NodataComponent | typeof PageSpinnerComponent | typeof LoadingComponent)[];
|
package/lib/ui/pipes/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SafeHtmlPipe, ReplaceTextPipe, FileSizePipe } from './exports';
|
|
2
|
-
export declare const PIPES: (typeof
|
|
2
|
+
export declare const PIPES: (typeof SafeHtmlPipe | typeof ReplaceTextPipe | typeof FileSizePipe)[];
|