@morozeckiy/dd-lib 0.1.12 → 0.1.14
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/index.mjs +2 -1
- package/esm2022/lib/core/tools.mjs +3 -1
- package/esm2022/lib/lib-skeleton/lib-skeleton.component.mjs +1 -1
- package/fesm2022/morozeckiy-dd-lib.mjs +3 -1
- package/fesm2022/morozeckiy-dd-lib.mjs.map +1 -1
- package/lib/core/index.d.ts +1 -0
- package/lib/core/services/validators.service.d.ts +2 -2
- package/lib/core/tools.d.ts +10 -0
- package/lib/lib-skeleton/lib-skeleton.component.d.ts +2 -2
- package/{morozeckiy-dd-lib-0.1.12.tgz → morozeckiy-dd-lib-0.1.14.tgz} +0 -0
- package/package.json +1 -1
package/lib/core/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AbstractControl, ValidationErrors
|
|
1
|
+
import { AbstractControl, ValidationErrors } from '@angular/forms';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class ValidatorsService {
|
|
@@ -10,7 +10,7 @@ export declare class ValidatorsService {
|
|
|
10
10
|
static wrongLoginOrPswd(): ValidationErrors;
|
|
11
11
|
static existLogin(): ValidationErrors;
|
|
12
12
|
/** валидатор имени*/
|
|
13
|
-
static getNameValid(): (
|
|
13
|
+
static getNameValid(): import("@angular/forms").ValidatorFn[];
|
|
14
14
|
/** валидатор email*/
|
|
15
15
|
static getMailValid(el?: AbstractControl): Observable<ValidationErrors | null>;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ValidatorsService, never>;
|
package/lib/core/tools.d.ts
CHANGED
|
@@ -14,3 +14,13 @@ export declare function iOS(): boolean;
|
|
|
14
14
|
export declare function Opera(): boolean;
|
|
15
15
|
export declare function Windows(): true | RegExpMatchArray | null;
|
|
16
16
|
export declare function dataURLtoFile(dataUrl: string, filename: string): File;
|
|
17
|
+
export declare const objConverting: ([name, data]: [string, string]) => {
|
|
18
|
+
name: string;
|
|
19
|
+
data: string;
|
|
20
|
+
};
|
|
21
|
+
export declare const iconsToArray: (obj: {
|
|
22
|
+
[key: string]: string;
|
|
23
|
+
}) => {
|
|
24
|
+
name: string;
|
|
25
|
+
data: string;
|
|
26
|
+
}[];
|
|
@@ -5,10 +5,10 @@ export declare class LibSkeletonComponent {
|
|
|
5
5
|
deepParent: number | undefined;
|
|
6
6
|
sHeight: string | undefined;
|
|
7
7
|
sMb: string | undefined;
|
|
8
|
-
set skeleton(s: boolean | undefined);
|
|
8
|
+
set skeleton(s: boolean | undefined | null);
|
|
9
9
|
set plugs(n: number | undefined);
|
|
10
10
|
_plugs: number[];
|
|
11
|
-
_skeleton: boolean | undefined;
|
|
11
|
+
_skeleton: boolean | undefined | null;
|
|
12
12
|
constructor(cdr: ChangeDetectorRef);
|
|
13
13
|
protected readonly length: number;
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibSkeletonComponent, never>;
|
|
Binary file
|