I keep getting this error when I do ng serve
that it Can't bind to 'ngModel' since it isn't a known property of 'nouislider'
Can't bind to 'tooltips' since it isn't a known property of 'nouislider'.
: Can't bind to 'step' since it isn't a known property of 'nouislider'.
so many of this different errors but I believe the fix would be one for all of them
Error: src/app/main/print-layouts/print-options/print-options.component.html:56:17 - error NG8002: Can't bind to 'behaviour' since it isn't a known property of 'nouislider'.
56 [behaviour]="'tap'"
~~~~~~~~~~~~~~~~~~~
src/app/main/print-layouts/print-options/print-options.component.ts:8:16
8 templateUrl: "./print-options.component.html",
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Error occurs in the template of component PrintOptionsComponent.
Error: src/app/main/print-layouts/print-options/print-options.component.html:57:17 - error NG8002: Can't bind to 'max' since it isn't a known property of 'nouislider'.
57 [max]="20"
~~~~~~~~~~
src/app/main/print-layouts/print-options/print-options.component.ts:8:16
8 templateUrl: "./print-options.component.html",
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Error occurs in the template of component PrintOptionsComponent.
Error: src/app/main/print-layouts/print-options/print-options.component.html:58:17 - error NG8002: Can't bind to 'step' since it isn't a known property of 'nouislider'.
58 [step]="1"
~~~~~~~~~~
src/app/main/print-layouts/print-options/print-options.component.ts:8:16
8 templateUrl: "./print-options.component.html",
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Error occurs in the template of component PrintOptionsComponent.
Error: src/app/main/print-layouts/print-options/print-options.component.html:59:17 - error NG8002: Can't bind to 'tooltips' since it isn't a known property of 'nouislider'.
59 [tooltips]="true"
~~~~~~~~~~~~~~~~~
src/app/main/print-layouts/print-options/print-options.component.ts:8:16
8 templateUrl: "./print-options.component.html",
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Error occurs in the template of component PrintOptionsComponent.
Error: src/app/main/print-layouts/print-options/print-options.component.html:60:17 - error NG8002: Can't bind to 'ngModel' since it isn't a known property of 'nouislider'.
60 [(ngModel)]="sliderWithNgModel"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/app/main/print-layouts/print-options/print-options.component.ts:8:16
8 templateUrl: "./print-options.component.html",
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Error occurs in the template of component PrintOptionsComponent.
Any idea how can I fix it?