@morozeckiy/dd-lib 0.9.6 → 0.9.8
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/assets/images/svg/award.svg +4 -11
- package/assets/images/svg/bell-cog.svg +11 -0
- package/assets/images/svg/home.svg +5 -0
- package/assets/images/svg/news.svg +6 -6
- package/assets/images/svg/star.svg +3 -3
- package/assets/images/svg/trophy.svg +8 -8
- package/assets/scss/common.scss +7 -0
- package/fesm2022/morozeckiy-dd-lib.mjs +35 -14
- package/fesm2022/morozeckiy-dd-lib.mjs.map +1 -1
- package/morozeckiy-dd-lib-0.9.7.tgz +0 -0
- package/morozeckiy-dd-lib-0.9.8.tgz +0 -0
- package/package.json +1 -1
- package/types/morozeckiy-dd-lib.d.ts +5 -4
- package/morozeckiy-dd-lib-0.9.5.tgz +0 -0
- package/morozeckiy-dd-lib-0.9.6.tgz +0 -0
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -2,8 +2,7 @@ import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent, HttpHeaders, Http
|
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
3
|
import { ElementRef, EventEmitter, AfterViewChecked, ChangeDetectorRef, AfterViewInit, Renderer2, RendererFactory2, OnDestroy, InjectionToken, PipeTransform, OnInit, OnChanges, SimpleChanges, TemplateRef, ViewContainerRef, Provider, Injector, ComponentRef, EmbeddedViewRef, ComponentFactoryResolver, Type, DestroyRef, WritableSignal } from '@angular/core';
|
|
4
4
|
import { Observable, Subject, BehaviorSubject, OperatorFunction } from 'rxjs';
|
|
5
|
-
import
|
|
6
|
-
import { AbstractControl, ValidationErrors, NgControl, Validator, ControlValueAccessor, ControlContainer } from '@angular/forms';
|
|
5
|
+
import { AbstractControl, ValidationErrors, Validators, NgControl, Validator, ControlValueAccessor, ControlContainer } from '@angular/forms';
|
|
7
6
|
import { Overlay, OverlayRef, PositionStrategy, ScrollStrategy } from '@angular/cdk/overlay';
|
|
8
7
|
import { CdkPortalOutlet, ComponentPortal, TemplatePortal } from '@angular/cdk/portal';
|
|
9
8
|
import { FocusTrapFactory, FocusTrap } from '@angular/cdk/a11y';
|
|
@@ -825,7 +824,7 @@ declare class ValidatorsService {
|
|
|
825
824
|
static wrongLoginOrPswd(): ValidationErrors;
|
|
826
825
|
static existLogin(): ValidationErrors;
|
|
827
826
|
/** валидатор имени*/
|
|
828
|
-
static getNameValid():
|
|
827
|
+
static getNameValid(): (typeof Validators.required)[];
|
|
829
828
|
/** валидатор email*/
|
|
830
829
|
static getMailValid(el?: AbstractControl): ValidationErrors | null;
|
|
831
830
|
static getErrorText(error: ValidationErrors | null | undefined): string | undefined;
|
|
@@ -1791,6 +1790,7 @@ declare class LibTabsFragmentComponent implements OnInit, ControlValueAccessor {
|
|
|
1791
1790
|
rout?: string;
|
|
1792
1791
|
tabs: ITab[] | undefined;
|
|
1793
1792
|
tabsFragment: (string | undefined)[] | undefined;
|
|
1793
|
+
tabsPath: (string | undefined)[] | undefined;
|
|
1794
1794
|
needInitEvent: boolean | undefined;
|
|
1795
1795
|
noFragment: boolean | undefined;
|
|
1796
1796
|
callEvent: boolean;
|
|
@@ -1807,8 +1807,9 @@ declare class LibTabsFragmentComponent implements OnInit, ControlValueAccessor {
|
|
|
1807
1807
|
checkActiveTab(tab?: ITab, callEvent?: boolean): void;
|
|
1808
1808
|
private handleTabSelection;
|
|
1809
1809
|
private getFragment;
|
|
1810
|
+
private getPath;
|
|
1810
1811
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibTabsFragmentComponent, never>;
|
|
1811
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibTabsFragmentComponent, "dd-lib-tabs-fragment", never, { "rout": { "alias": "rout"; "required": false; }; "tabs": { "alias": "tabs"; "required": false; }; "tabsFragment": { "alias": "tabsFragment"; "required": false; }; "needInitEvent": { "alias": "needInitEvent"; "required": false; }; "noFragment": { "alias": "noFragment"; "required": false; }; "callEvent": { "alias": "callEvent"; "required": false; }; }, { "setActiveTab": "setActiveTab"; }, never, never, true, never>;
|
|
1812
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibTabsFragmentComponent, "dd-lib-tabs-fragment", never, { "rout": { "alias": "rout"; "required": false; }; "tabs": { "alias": "tabs"; "required": false; }; "tabsFragment": { "alias": "tabsFragment"; "required": false; }; "tabsPath": { "alias": "tabsPath"; "required": false; }; "needInitEvent": { "alias": "needInitEvent"; "required": false; }; "noFragment": { "alias": "noFragment"; "required": false; }; "callEvent": { "alias": "callEvent"; "required": false; }; }, { "setActiveTab": "setActiveTab"; }, never, never, true, never>;
|
|
1812
1813
|
}
|
|
1813
1814
|
|
|
1814
1815
|
declare class LibTextareaComponent extends LibCommonInputTextComponent implements OnInit, OnDestroy, ControlValueAccessor {
|
|
Binary file
|
|
Binary file
|