Steve Yin
Steve Yin
btw, change this directive to work with `ng-template` only, you also need to change the `swal` component, ``` @ContentChild(swalPortal, { read: TemplateRef }) swalPortalTemplate: TemplateRef; ``` then use it like:...
here is how `ng-select` process their directives: only one directive exists [ @ContentChild(NgOptionTemplateDirective, { read: TemplateRef }) optionTemplate: TemplateRef; ](https://github.com/ng-select/ng-select/blob/865d3f62d8431eca0da008dba7dca5f52440ab24/src/ng-select/lib/ng-select.component.ts#L167) `swiper`'s way: multiple directives exists: [ @ContentChildren(SwiperSlideDirective, { descendants: false,...
when can we see these rotation feature?
@fancyapps create `.d.ts` using this way will create so many junk, like these ``` declare namespace defaults { ``` this `defaults` namespace is just a useless and is a very...
@fancyapps I have created a simple version of typescript definitions, but I'm not sure if all the functions should be exposed to typescript. Should I create a PR?
@fancyapps I've submitted the PR #243 , you might need to revise these.
well, there would be huge work to do if you rewrite whole library with typescript, an simple solution is merge my d.ts, because those are just types, not actual codes....
why do you want a sql database for this kind of data? isn't VelocityDB a much better choice for fast and efficient object cache store? I personally vote to use...
I got it , but still have some question about this esentdb store. What is this esentdb store for? a internal cacheing method or just another data store file format?...
and what will happen when I strip out the entire esent support to create a cross platform version of XbimEssentials? if this just another internal file format, then I will...