remove unused highlight.ts from addons/a11y

This commit is contained in:
winkerVSbecks 2022-03-28 11:11:52 -04:00
parent 90e21f8893
commit 0e7af75465
3 changed files with 6 additions and 12 deletions

View File

@ -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),',
});

View File

@ -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) {

View File

@ -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();
}