Derek Wickern
Derek Wickern
It seems the release process stripped out all vue3-specific code. https://www.runpkg.com/[email protected]/dist/v-click-outside.umd.js ^^ The hooks are hard-coded as `bind/update/unbind`
Fixes #730
Many databases support this shorthand for joins when the column names are the same in both tables. From Postgres docs: > The `USING` clause is a shorthand that allows you...
`@indeterminate` needs to be passed as an argument: https://ember-twiddle.com/843748d9d4e8bde8ae56824d28a21024?openFiles=templates.application%5C.hbs%2C
Improves `isTemplateOnlyComponent` to support linting some more file structures: - adds support for pods layout, using a simple heuristic so we don't need to read the app's `podModulePrefix` - adds...
After upgrading ember-auto-import from 2.6.1 to 2.6.2, the app has a runtime failure importing moment-timezone: ``` caught (in promise) Error: Could not find module `moment-timezone` imported from `ember-moment/services/moment.js` at missingModule...
Java 11 is required since #393
Dirty tracking is broken when setting a number attr with a numeric string. ``` var Model = Ember.Model.extend({ num: attr(Number) }); var obj = Model.create({ num: 1 }); obj.set('num', '2');...
Repro here: https://github.com/dwickern/ember-pdfjs-reproduction In pdfjs v4 the project was converted to ESM. After [upgrading pdfjs from v3 to v4](https://github.com/dwickern/ember-pdfjs-reproduction/commit/cd11c558296de0b7e9a7135f4283311a4b8ed4ba), its default export is an unresolved promise: To get it working,...
This code fails the ember-template-lint `prettier` rule: ```js module('Integration | Component | duration-picker', function (hooks) { test('renders', async function (assert) { await render(hbs` label `); assert.dom(this.element).includesText('label'); }); ); ``` ```...