Benny Powers - עם ישראל חי!
Benny Powers - עם ישראל חי!
It should be possible to replace the `State` class with and implementation of `ReactiveControllerHost` and the `Hook` class with and implementation of `ReactiveController`. We should investigate how easy that would...
This issue proposes to: 1. update typescript to latest (4.2 or 4.3 depending on when impl happens) 2. replace mocha-chrome-headless with `@web/test-runner` 2.1. use `esbuildPlugin` in wtr to run tests...
consider: ```ts const setWith = (setter: StateUpdater) => ({ target: { value } }) => setter(value); function AddUser(this: ApolloMutationElement) { const [mutate, { data, error, loading }] = useMutation(AddUserMutation); const...
## What I did 1. add assets in `` tags 2. traverse the AST for assets hidden in `` tags closes #1528
Akin to [`@web/test-runner-mocha`](https://github.com/modernweb-dev/web/tree/master/packages/test-runner-mocha), it would be lovely to have `@web/test-runner-uvu` that runs test files using [uvu](https://github.com/lukeed/uvu)
chai-dom-diff offers snapshot testing via ```js expect(element).shadowDom.to.equalSnapshot() ``` This fails in web test runner. Proximal cause is that `window.__mocha_context__` is undefined. (this is probably a karma API?) @LarsDenBakker recommended implementing...
Consider: ```html Fetch a list of users: {{ item.name }} Add a new user, using refetch-queries to update the list above User Name Avatar Image ``` In this case, apollo-mutation...
## Package `@apollo-elements/core` ## Description **Expected**: ApolloQueryController's manifest entry for `options` field should have type `ApolloQueryControllerOptions` **Actual**: it has type `ApolloControllerOptions`
## Case User wants to set variables or perform another side effect before the element first subscribes ## Example ```ts import { authClient } from '../my-auth-client'; // some JS SDK...