Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"ember-a11y-refocus": "^5.1.0",
"ember-concurrency": "^4.0.4",
"ember-element-helper": "^0.8.6",
"ember-focus-trap": "^1.1.1",
"ember-focus-trap": "^2.0.0",
"ember-modifier": "^4.2.2",
"ember-power-select": "^8.12.0",
"ember-stargate": "^1.0.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
shouldTrapFocus=this._shouldTrapFocus
setCellElement=this.setElement
}}
{{! @glint-expect-error - https://github.com/josemarluedke/ember-focus-trap/issues/86 }}
{{focus-trap
isActive=this._shouldTrapFocus
focusTrapOptions=(hash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
shouldTrapFocus=this._shouldTrapFocus
setCellElement=this.setElement
}}
{{! @glint-expect-error - https://github.com/josemarluedke/ember-focus-trap/issues/86 }}
{{focus-trap
isActive=this._shouldTrapFocus
focusTrapOptions=(hash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
shouldTrapFocus=this._shouldTrapFocus
setCellElement=this.setElement
}}
{{! @glint-expect-error - https://github.com/josemarluedke/ember-focus-trap/issues/86 }}
{{focus-trap
isActive=this._shouldTrapFocus
focusTrapOptions=(hash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ import { registerDestructor } from '@ember/destroyable';
import { hash } from '@ember/helper';
import { and, not } from 'ember-truth-helpers';
import { NavigationNarrator } from 'ember-a11y-refocus';
// @ts-expect-error: missing types https://github.com/josemarluedke/ember-focus-trap/issues/86
import focusTrap from 'ember-focus-trap/modifiers/focus-trap';
import { focusTrap } from 'ember-focus-trap';

import type Owner from '@ember/owner';
import type { NavigationNarratorSignature } from 'ember-a11y-refocus/components/navigation-narrator';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ import { registerDestructor } from '@ember/destroyable';
import { modifier } from 'ember-modifier';
import { on } from '@ember/modifier';
import { fn } from '@ember/helper';
// @ts-expect-error: missing types https://github.com/josemarluedke/ember-focus-trap/issues/86
import focusTrap from 'ember-focus-trap/modifiers/focus-trap';
import { focusTrap } from 'ember-focus-trap';

import type Owner from '@ember/owner';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ import { hash } from '@ember/helper';
import { modifier } from 'ember-modifier';
import { or } from 'ember-truth-helpers';
import { tracked } from '@glimmer/tracking';
// @ts-expect-error: missing types https://github.com/josemarluedke/ember-focus-trap/issues/86
import focusTrap from 'ember-focus-trap/modifiers/focus-trap';
import { focusTrap } from 'ember-focus-trap';

import type { EditorView } from '@codemirror/view';
import type { WithBoundArgs } from '@glint/template';
Expand Down
3 changes: 1 addition & 2 deletions packages/components/src/components/hds/flyout/index.gts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ import { assert } from '@ember/debug';
import { buildWaiter } from '@ember/test-waiters';
import { modifier } from 'ember-modifier';
import { hash } from '@ember/helper';
// @ts-expect-error: missing types https://github.com/josemarluedke/ember-focus-trap/issues/86
import focusTrap from 'ember-focus-trap/modifiers/focus-trap';
import { focusTrap } from 'ember-focus-trap';

import type { WithBoundArgs } from '@glint/template';

Expand Down
3 changes: 1 addition & 2 deletions packages/components/src/components/hds/modal/index.gts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ import { assert } from '@ember/debug';
import { buildWaiter } from '@ember/test-waiters';
import { modifier } from 'ember-modifier';
import { hash } from '@ember/helper';
// @ts-expect-error: missing types https://github.com/josemarluedke/ember-focus-trap/issues/86
import focusTrap from 'ember-focus-trap/modifiers/focus-trap';
import { focusTrap } from 'ember-focus-trap';

import type { WithBoundArgs } from '@glint/template';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import type RenderModifiersRegistry from '@ember/render-modifiers/template-regis
import type EmberComposableHelpersRegistry from '@nullvoxpopuli/ember-composable-helpers/template-registry';
import type EmberIntlRegistry from 'ember-intl/template-registry';
import type EmberA11yRefocusRegistry from 'ember-a11y-refocus/template-registry';
import type EmberFocusTrapRegistry from 'ember-focus-trap/template-registry';

declare module '@glint/environment-ember-loose/registry' {
export default interface Registry
Expand All @@ -30,7 +31,8 @@ declare module '@glint/environment-ember-loose/registry' {
EmberComposableHelpersRegistry,
EmbroiderUtilRegistry,
EmberA11yRefocusRegistry,
EmberIntlRegistry /*, other addon registries */ {
EmberIntlRegistry,
EmberFocusTrapRegistry /*, other addon registries */ {
// local entries
Portal: typeof Portal;
PortalTarget: typeof PortalTarget;
Expand Down
58 changes: 22 additions & 36 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading