survey-angular-ui 2.4.0 → 2.5.0
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/README.md +1 -3
- package/bundles/survey-angular-ui.umd.js +15 -6
- package/bundles/survey-angular-ui.umd.js.map +1 -1
- package/components/matrix-actions/drag-drop-icon/drag-drop-icon.d.ts +2 -1
- package/esm2015/components/action-bar/action-bar-item-dropdown.component.js +6 -5
- package/esm2015/components/action-bar/action-bar-item.component.js +5 -4
- package/esm2015/components/matrix-actions/drag-drop-icon/drag-drop-icon.js +5 -2
- package/esm2015/questions/matrix-row.component.js +2 -2
- package/esm2015/string-viewer.component.js +5 -3
- package/fesm2015/survey-angular-ui.js +11 -6
- package/fesm2015/survey-angular-ui.js.map +1 -1
- package/package.json +2 -2
- package/string-viewer.component.d.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-angular-ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
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.
|
|
45
|
+
"survey-core": "2.5.0"
|
|
46
46
|
},
|
|
47
47
|
"overrides": {
|
|
48
48
|
"stylus": "github:stylus/stylus#0.54.8"
|
|
@@ -4,6 +4,7 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class StringViewerComponent implements DoCheck {
|
|
5
5
|
private changeDetectorRef;
|
|
6
6
|
model: LocalizableString;
|
|
7
|
+
textClass: string | undefined;
|
|
7
8
|
className: string;
|
|
8
9
|
private previousModel;
|
|
9
10
|
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
@@ -11,5 +12,5 @@ export declare class StringViewerComponent implements DoCheck {
|
|
|
11
12
|
clearOnChanged(model: LocalizableString): void;
|
|
12
13
|
ngOnDestroy(): void;
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<StringViewerComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StringViewerComponent, "sv-ng-string-viewer, string-viewer, '[sv-ng-string-viewer]'", never, { "model": "model"; }, {}, never, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StringViewerComponent, "sv-ng-string-viewer, string-viewer, '[sv-ng-string-viewer]'", never, { "model": "model"; "textClass": "textClass"; }, {}, never, never>;
|
|
15
16
|
}
|