This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/postcss-focus-within/index.es.mjs
2020-11-01 22:46:04 +00:00

27 lines
732 B
JavaScript

import postcss from 'postcss';
const selectorRegExp = /:focus-within([^\w-]|$)/gi;
var index = postcss.plugin('postcss-focus-within', opts => {
const replaceWith = String(Object(opts).replaceWith || '[focus-within]');
const preserve = Boolean('preserve' in Object(opts) ? opts.preserve : true);
return root => {
root.walkRules(selectorRegExp, rule => {
const selector = rule.selector.replace(selectorRegExp, ($0, $1) => {
return `${replaceWith}${$1}`;
});
const clone = rule.clone({
selector
});
if (preserve) {
rule.before(clone);
} else {
rule.replaceWith(clone);
}
});
};
});
export default index;
//# sourceMappingURL=index.es.mjs.map