James
James
Hi @bestmomo, Replace file, delete, rename and download all return with an error message of "no way"? 
Seems to be active now... https://github.com/NativeScript/firebase
I'm also having issues with this :( I had a project with firebase in it. I removed firebase and the linker error stops and build continues.
Could I help by providing more detail?
Just changed the extension of the file being imported in from .css to .pcss and everything started working? This doesn't make sense to me as by the time 'postcss-extend' has...
^^^Documentation for milestone 3 would be awesome! Can't wait to learn about all the new additions. Do we have a rough date of release on it?
Hey @jonjamz, The validationValue needs amending in [AdjustableNumberOfInputs](https://github.com/meteortemplates/forms/blob/release/2.0.0/docs/reference/examples/form-elements/advanced/AdjustableNumberOfInputs.md) This outputs correctly for me... ``` validationValue: function (el, clean, template) { var values = $.map($(el).find("input"), function(e,i) { return $(e).val(); }); return...
Oops forgot to mention: `TemplatesForms.registerFormElement` should be `ReactiveForms.createElement`. ...Unless you're changing the method names in the next version.
The validationValue for [DateAndTime](https://github.com/meteortemplates/forms/blob/release/2.0.0/docs/reference/examples/form-elements/advanced/DateAndTime.md) needs amending. The below worked for me: ``` Date: Time: {{#if submitted}} {{#if errorMessage}}{{errorMessage}}{{/if}} {{/if}} ``` ``` Template.dateTimeElement.helpers({ dateToString: function(val){ return new Date(val).toDateString(); }, timeToString: function(val){...