Zach Lankton

Results 21 issues of Zach Lankton

## UPDATE (TL;DR) For those searching this issue and looking for a quick fix: a forked and patched version of ottoman is available at [https://github.com/zachlankton/node-ottoman/tree/610-ensure-fix](https://github.com/zachlankton/node-ottoman/tree/610-ensure-fix). This will only be maintained...

## Overview This PR addresses a bug that is described in issue #2496 where posting an all docs query to a partition endpoint with keys that are not a part...

the following code: ```tsx { chkbox.checked = !chkbox.checked }}> ``` is being transpiled into this: ```tsx { chkbox.checked.set(!chkbox.checked) }}> ``` Expected: No transpilation should be happening on this as there...

bug

https://www.solidjs.com/tutorial/bindings_directives

enhancement

Support Styled-Components Library for Rezact took a quick look and the styled components library returns a react component from its output ```tsx const Button = styled.button` background: transparent; border-radius: 3px;...

enhancement

https://kit.svelte.dev/docs/link-options OR https://netbasal.com/a-comprehensive-guide-to-angulars-defer-block-468c74048df4

enhancement

Router methods should be async and there should be a way to handle navigation failures. https://router.vuejs.org/guide/advanced/navigation-failures.html

enhancement

current router.push and router.replace methods only take a string, would be nice to also pass an object, like vue. https://router.vuejs.org/guide/essentials/navigation.html

enhancement

# Discovered that this code: ```javascript function Page(props) { $: { console.log(props.router.route); console.log(props.router.$route); } return ( Hello World ) } ``` ### transforms into this: ```javascript function Page(props) { $:...

bug