Lisandro

Results 7 issues of Lisandro

If some property of your model expects to receive some type of data, for example and Object, and it receives a String or Null, mapping fails. I added the normalize...

On some cases, making consecutive calls to ko.mapping.fromJS(....) using "create definitions", makes unusable the computables created by those "creates" (its values gets fixed at the initial value, and doesn't compute...

Since withProxyDependentObservable replaces ko.dependentObservable, ko.isComputed and ko.isWriteableObservable doesn't work on create callbacks when using ko.js (DEBUG VERSION). On theese fiddles, I test on a create ko.isComputable. On compiled ko.js version,...

Updating with a null value a model like this: model = ko.mapping.fromJS({ person:{ name: 'john' } }); updating it with {person: null} will break the bingings: http://jsfiddle.net/vJhj8/14/ ¿Is this the...

### Describe the bug I tried the gradio node client on new and existings nestjs project and all give me this error: ``` Error: No "exports" main defined in projects/nest-gradio/node_modules/@gradio/client/package.json...

bug
gradio_client

Added the option to pass a writeable observable to the template binding, in order to get notified when the template was loaded. example: myWriteableObservable = ko.observable( false ); Template was...

If you pass a writeable observable named 'loaded' to the template bindgin, you can get notified when the template is actually loaded.