-
Notifications
You must be signed in to change notification settings - Fork 44
Description
Need help to find compatible version with angular 15 , below is angular version in current project .
Tried multiple version but all time getting run time errors , Please suggest.
"@angular-devkit/schematics": "^15.2.11",
"@angular/animations": "^15.2.10",
"@angular/cdk": "^15.2.9",
"@angular/common": "^15.2.10",
"@angular/compiler": "^15.2.10",
"@angular/core": "^15.2.10",
"@angular/forms": "^15.2.10",
"@angular/material": "^13.3.9",
"@angular/platform-browser": "^15.2.10",
"@angular/platform-browser-dynamic": "^15.2.10",
"@angular/router": "^15.2.10",
"@auth0/auth0-spa-js": "^1.13.2",
"@microsoft/applicationinsights-web": "^2.3.1",
"@ncstate/sat-popover": "^10.1.0",
Below is error that I get when I do ng build
Error: node_modules/@ncstate/sat-popover/popover/popover-hover.directive.d.ts:26:98 - error TS2344: Type '{ satPopoverHover: { alias: "satPopoverHover"; required: false; }; }' does not satisfy the constraint '{ [key: string]: string; }'.
Property '"satPopoverHover"' is incompatible with index signature.
Type '{ alias: "satPopoverHover"; required: false; }' is not assignable to type 'string'.
26 static ɵdir: i0.ɵɵDirectiveDeclaration<SatPopoverHoverDirective, "[satPopoverHover]", never, { "satPopoverHover": { "alias": "satPopoverHover"; "required": false; }; }, {}, never, never, false, never>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Error: node_modules/@ncstate/sat-popover/popover/popover.component.d.ts:16:106 - error TS2344: Type '{ popover: { alias: "satPopoverAnchor"; required: false; }; }' does not satisfy the constraint '{ [key: string]: string; }'.
Property '"popover"' is incompatible with index signature.
Type '{ alias: "satPopoverAnchor"; required: false; }' is not assignable to type 'string'.
16 static ɵdir: i0.ɵɵDirectiveDeclaration<SatPopoverAnchor, "[satPopoverAnchor]", ["satPopoverAnchor"], { "popover": { "alias": "satPopoverAnchor"; "required": false; }; }, {}, never, never, false, never>;
Which version should I use ?