with the following import in my module: import { SelectModule } from 'ng2-select';
and the following in my systemjs map: 'ng2-select': 'npm:ng2-select', and packges: 'ng2-select': {defaultExtension: 'js', main:'index.js'},
and my error is the following:
TypeError: self.context.typed is not a function
at CompiledTemplate.proxyViewClass.View_CreateCardComponent0.handleEvent_1 (/CreateCardModule/CreateCardComponent/component.ngfactory.js:871)
at CompiledTemplate.proxyViewClass.eval (core.umd.js:12399)
at SafeSubscriber.schedulerFn [as _next] (core.umd.js:3701)
at SafeSubscriber.__tryOrUnsub (Subscriber.ts:238)
at SafeSubscriber.next (Subscriber.ts:190)
at Subscriber._next (Subscriber.ts:135)
at Subscriber.next (Subscriber.ts:95)
at EventEmitter.Subject.next (Subject.ts:61)
at SelectComponent.doEvent (select.js:209)
at SelectComponent.inputEvent (select.js:181)
at View_SelectComponent6.handleEvent_0 (/SelectModule/SelectComponent/component.ngfactory.js:311)
at View_SelectComponent6.eval (core.umd.js:12399)
at HTMLInputElement.eval (platform-browser.umd.js:3224)
at ZoneDelegate.invokeTask (zone.js:275)
at Object.onInvokeTask (core.umd.js:3971)
is there any reason it is related to the Angular 2 version I am using or that I am using Bootstrap 4 instead of 3?
Hi, copy and pasted the code from the demo:
and
with the following import in my module:
import { SelectModule } from 'ng2-select';
and the following in my systemjs map:
'ng2-select': 'npm:ng2-select',
and packges:'ng2-select': {defaultExtension: 'js', main:'index.js'},
and my error is the following:
is there any reason it is related to the Angular 2 version I am using or that I am using Bootstrap 4 instead of 3?