[AngularJS] Re: Angular Element's limitations while converting components to element.

2018-12-27 Thread f-end
On Friday, December 28, 2018 at 1:27:12 AM UTC+5:30, Sander Elias wrote: > > Hi F-end > > Elements and routes are not really meant to work together. Angular > elements are meant to be used as small reusable building blocks. You better > take care of routing outside of ele

[AngularJS] How to add Style into angular element?

2019-01-02 Thread f-end
Hi, Custom element spec tells to add style into the template. But I am not able to get it working on how to embed css in my final .js. I have .scss file with some imports and definitions. I am using angular elements to generate Custom element. -- You received this message because you are

[AngularJS] Angular Element's limitations while converting components to element.

2018-12-27 Thread f-end
Hi, I am first time working on custom element and using angular element to generate custom element. But whenever a component depends on angular route then it dose not work properly as custom element. Is there any limitations to angular elements? -- You received this message because you are

[AngularJS] Re: Multiple Custom element developed in angular element

2019-01-10 Thread f-end
No this dosn't help :( On Wednesday, January 9, 2019 at 5:32:40 PM UTC+5:30, Tito wrote: > > What if you deleted package-lock.json > Delete node_modules and do > > Npm ci > > Read a few places this might resolve issue > > -- You received this message because you are subscribed to the Google

[AngularJS] Re: How to add Style into angular element?

2019-01-03 Thread f-end
: > > Hi F-end > > Well, if you are using .scss you have to manually compile and build your > css. Then include the resulting css into your Custom Element's template. > > Regards > Sander > -- You received this message because you are subscribed to the Google Gro

[AngularJS] Multiple Custom element developed in angular element

2019-01-09 Thread f-end
Hi, I developed 2 custom elements in different Angular element projects and when I try to use them in single html I get error "Failed to execute 'define' on 'CustomElementRegistry': this name has already been used with this registry" How to followed this link to develop

Re: [AngularJS] Re: Registering Service worker in Ionic 4 project

2019-02-06 Thread f-end
it will not register. On Tuesday, February 5, 2019 at 12:27:08 PM UTC+5:30, Komal Shah wrote: > > The file is not getting loaded in Chrom Dev tools -> source > Should i add the serviceworker.js reference in index.html? > > On Tue, Feb 5, 2019 at 12:20 PM f-end > > wrote: &

[AngularJS] Re: Registering Service worker in Ionic 4 project

2019-02-04 Thread f-end
Did you tried access Serviceworker.js in browser directly? for example if you are referring .js as "/Serviceworker.js" then try http://localost:5000/Serviceworker.js and see if you can access. localhost:5000 depends on your server and port. Thanks Sandeep On Tuesday, February 5, 2019 at

[AngularJS] Re: How to call a report via URL in Angular 6

2019-02-04 Thread f-end
https://medium.com/codingthesmartway-com-blog/angular-4-3-httpclient-accessing-rest-web-services-with-angular-2305b8fd654b for adding basic auth/ username password you need to add header manually: headers.append("Authorization", "Basic " + btoa("username:password")); On Monday, February 4,