survey-angular-ui 2.5.3 → 2.5.4
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/bundles/survey-angular-ui.umd.js +16 -2
- package/bundles/survey-angular-ui.umd.js.map +1 -1
- package/esm2015/utils/ng-key2click.directive.js +17 -3
- package/fesm2015/survey-angular-ui.js +16 -2
- package/fesm2015/survey-angular-ui.js.map +1 -1
- package/package.json +2 -2
- package/utils/ng-key2click.directive.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-angular-ui",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.4",
|
|
4
4
|
"homepage": "https://surveyjs.io/",
|
|
5
5
|
"author": "DevSoft Baltic OU <info@devsoftbaltic.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@angular/cdk": "*",
|
|
43
43
|
"@angular/core": "*",
|
|
44
44
|
"@angular/forms": "*",
|
|
45
|
-
"survey-core": "2.5.
|
|
45
|
+
"survey-core": "2.5.4"
|
|
46
46
|
},
|
|
47
47
|
"overrides": {
|
|
48
48
|
"stylus": "github:stylus/stylus#0.54.8"
|
|
@@ -5,6 +5,7 @@ export declare class Key2ClickDirective implements OnChanges, OnDestroy {
|
|
|
5
5
|
private el;
|
|
6
6
|
static defaultOptions: IAttachKey2clickOptions;
|
|
7
7
|
private isSubscribed;
|
|
8
|
+
private isPointerUpSubscribed;
|
|
8
9
|
options?: IAttachKey2clickOptions;
|
|
9
10
|
key2click?: IAttachKey2clickOptions;
|
|
10
11
|
private onkeydown;
|
|
@@ -13,6 +14,8 @@ export declare class Key2ClickDirective implements OnChanges, OnDestroy {
|
|
|
13
14
|
private blur;
|
|
14
15
|
constructor(el: ElementRef);
|
|
15
16
|
get element(): any;
|
|
17
|
+
subscribePointerUp(): void;
|
|
18
|
+
unsubscribePointerUp(): void;
|
|
16
19
|
subscribeEventListeners(): void;
|
|
17
20
|
unsubscribeEventListeners(): void;
|
|
18
21
|
ngOnChanges(changes: SimpleChanges): void;
|