diff --git a/addons/a11y/src/highlight.ts b/addons/a11y/src/highlight.ts deleted file mode 100644 index 268f1c57d96..00000000000 --- a/addons/a11y/src/highlight.ts +++ /dev/null @@ -1,11 +0,0 @@ -export const highlightStyle = (color: string) => ` - outline: 2px dashed ${color}; - outline-offset: 2px; - box-shadow: 0 0 0 6px rgba(255,255,255,0.6); -`; - -export const highlightObject = (color: string) => ({ - outline: `2px dashed ${color}`, - outlineOffset: 2, - boxShadow: '0 0 0 6px rgba(255,255,255,0.6),', -}); diff --git a/addons/a11y/src/index.ts b/addons/a11y/src/index.ts index 76e1182f2b4..6bb2d2d21dc 100644 --- a/addons/a11y/src/index.ts +++ b/addons/a11y/src/index.ts @@ -3,7 +3,6 @@ import deprecate from 'util-deprecate'; import dedent from 'ts-dedent'; export { PARAM_KEY } from './constants'; -export * from './highlight'; export * from './params'; if (module && module.hot && module.hot.decline) { diff --git a/addons/highlight/src/highlight.ts b/addons/highlight/src/highlight.ts index 86a4e69073a..b3bf0acfaa7 100644 --- a/addons/highlight/src/highlight.ts +++ b/addons/highlight/src/highlight.ts @@ -14,6 +14,12 @@ export const highlightStyle = (color = '#FF4785', style: OutlineStyle = 'dashed' box-shadow: 0 0 0 6px rgba(255,255,255,0.6); `; +export const highlightObject = (color: string) => ({ + outline: `2px dashed ${color}`, + outlineOffset: 2, + boxShadow: '0 0 0 6px rgba(255,255,255,0.6)', +}); + if (module && module.hot && module.hot.decline) { module.hot.decline(); }