Skip to content
This repository was archived by the owner on Jan 6, 2023. It is now read-only.

Commit 4c7d27f

Browse files
committed
fix: export htmlSafe from @ember/template
1 parent 7dbbac8 commit 4c7d27f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

addon/components/-internals/contextual-container/element/component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Component from '@ember/component';
33
import { layout, tagName } from '@ember-decorators/component';
44
import { reads } from '@ember/object/computed';
55
import { computed, set } from '@ember/object';
6-
import { htmlSafe } from '@ember/string';
6+
import { htmlSafe } from '@ember/template';
77
import hide from '@popperjs/core/lib/modifiers/hide';
88
import flip from '@popperjs/core/lib/modifiers/flip';
99
import arrow from '@popperjs/core/lib/modifiers/arrow';

addon/components/ui-collapse/component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ import { computed, set } from '@ember/object';
33
import { addObserver } from '@ember/object/observers';
44
import { not, and } from '@ember/object/computed';
55
import { isPresent } from '@ember/utils';
6-
import { camelize, htmlSafe } from '@ember/string';
6+
import { camelize } from '@ember/string';
7+
import { htmlSafe } from '@ember/template';
78
import { scheduleOnce, next } from '@ember/runloop';
89
import { Promise } from 'rsvp';
910
import { layout, attribute, className, classNames } from '@ember-decorators/component';

addon/components/ui-popper/component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { computed, set } from '@ember/object';
44
import { not } from '@ember/object/computed';
55
import { assert } from '@ember/debug';
66
import { guidFor } from '@ember/object/internals';
7-
import { htmlSafe } from '@ember/string';
7+
import { htmlSafe } from '@ember/template';
88
import { debounce } from '@ember/runloop';
99
import { layout, tagName } from '@ember-decorators/component';
1010
import { createPopper } from '@popperjs/core/lib/popper-lite';

0 commit comments

Comments
 (0)