mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:21:23 +08:00
remove unused highlight.ts from addons/a11y
This commit is contained in:
parent
90e21f8893
commit
0e7af75465
@ -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),',
|
|
||||||
});
|
|
@ -3,7 +3,6 @@ import deprecate from 'util-deprecate';
|
|||||||
import dedent from 'ts-dedent';
|
import dedent from 'ts-dedent';
|
||||||
|
|
||||||
export { PARAM_KEY } from './constants';
|
export { PARAM_KEY } from './constants';
|
||||||
export * from './highlight';
|
|
||||||
export * from './params';
|
export * from './params';
|
||||||
|
|
||||||
if (module && module.hot && module.hot.decline) {
|
if (module && module.hot && module.hot.decline) {
|
||||||
|
@ -14,6 +14,12 @@ export const highlightStyle = (color = '#FF4785', style: OutlineStyle = 'dashed'
|
|||||||
box-shadow: 0 0 0 6px rgba(255,255,255,0.6);
|
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) {
|
if (module && module.hot && module.hot.decline) {
|
||||||
module.hot.decline();
|
module.hot.decline();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user