@morozeckiy/dd-lib 0.8.5 → 0.9.1
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/fesm2022/morozeckiy-dd-lib.mjs +268 -268
- package/fesm2022/morozeckiy-dd-lib.mjs.map +1 -1
- package/morozeckiy-dd-lib-0.9.1.tgz +0 -0
- package/package.json +3 -3
- package/{index.d.ts → types/morozeckiy-dd-lib.d.ts} +8 -8
- package/morozeckiy-dd-lib-0.8.4.tgz +0 -0
- package/morozeckiy-dd-lib-0.8.5.tgz +0 -0
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@morozeckiy/dd-lib",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"types": "./src/typings.d.ts",
|
|
5
5
|
"repository": "https://gitlab.com/Morozeckiy/dd-lib",
|
|
6
6
|
"publishConfig": {
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
},
|
|
12
12
|
"sideEffects": false,
|
|
13
13
|
"module": "fesm2022/morozeckiy-dd-lib.mjs",
|
|
14
|
-
"typings": "
|
|
14
|
+
"typings": "types/morozeckiy-dd-lib.d.ts",
|
|
15
15
|
"exports": {
|
|
16
16
|
"./package.json": {
|
|
17
17
|
"default": "./package.json"
|
|
18
18
|
},
|
|
19
19
|
".": {
|
|
20
|
-
"types": "./
|
|
20
|
+
"types": "./types/morozeckiy-dd-lib.d.ts",
|
|
21
21
|
"default": "./fesm2022/morozeckiy-dd-lib.mjs"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
+
import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent, HttpHeaders, HttpContext, HttpParams, HttpClient } from '@angular/common/http';
|
|
1
2
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { ElementRef, EventEmitter, AfterViewChecked, ChangeDetectorRef, AfterViewInit,
|
|
3
|
-
import { AbstractControl, ValidationErrors, Validators, NgControl, Validator, ControlValueAccessor, ControlContainer } from '@angular/forms';
|
|
4
|
-
import { SafeHtml, DomSanitizer, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';
|
|
5
|
-
import { Location } from '@angular/common';
|
|
6
|
-
import { Router, ActivatedRoute } from '@angular/router';
|
|
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';
|
|
7
4
|
import { Observable, Subject, BehaviorSubject } from 'rxjs';
|
|
5
|
+
import { AbstractControl, ValidationErrors, Validators, NgControl, Validator, ControlValueAccessor, ControlContainer } from '@angular/forms';
|
|
8
6
|
import { Overlay, OverlayRef, PositionStrategy, ScrollStrategy } from '@angular/cdk/overlay';
|
|
9
|
-
import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent, HttpHeaders, HttpContext, HttpParams, HttpClient } from '@angular/common/http';
|
|
10
7
|
import { CdkPortalOutlet, ComponentPortal, TemplatePortal } from '@angular/cdk/portal';
|
|
11
8
|
import { FocusTrapFactory, FocusTrap } from '@angular/cdk/a11y';
|
|
9
|
+
import { Router, ActivatedRoute } from '@angular/router';
|
|
10
|
+
import { Location } from '@angular/common';
|
|
11
|
+
import { SafeHtml, DomSanitizer, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';
|
|
12
12
|
|
|
13
13
|
declare abstract class LibCommonButtonComponent {
|
|
14
14
|
width: string | undefined;
|
|
@@ -1080,7 +1080,7 @@ declare class SelectableItemDirective {
|
|
|
1080
1080
|
private lastSelectedItem;
|
|
1081
1081
|
private firstSelection;
|
|
1082
1082
|
constructor(el: ElementRef, renderer: Renderer2);
|
|
1083
|
-
onEnter(event:
|
|
1083
|
+
onEnter(event: Event): void;
|
|
1084
1084
|
onMouseDown(event: MouseEvent): void;
|
|
1085
1085
|
onMouseMove(event: MouseEvent): void;
|
|
1086
1086
|
onMouseUp(): void;
|
|
@@ -1861,7 +1861,7 @@ declare class LibDateRangeComponent implements ControlValueAccessor, OnInit {
|
|
|
1861
1861
|
endIsFocused: boolean;
|
|
1862
1862
|
startIsFocused: boolean;
|
|
1863
1863
|
constructor(cdr: ChangeDetectorRef);
|
|
1864
|
-
pressTab(e:
|
|
1864
|
+
pressTab(e: Event): void;
|
|
1865
1865
|
ngOnInit(): void;
|
|
1866
1866
|
get startDateStr(): string;
|
|
1867
1867
|
set startDateStr(value: string | undefined);
|
|
Binary file
|
|
Binary file
|