@frontify/fondue
Version:
Design system of Frontify
29 lines (28 loc) • 737 B
JavaScript
var o = Object.defineProperty;
var B = (e, n, r) => n in e ? o(e, n, { enumerable: !0, configurable: !0, writable: !0, value: r }) : e[n] = r;
var t = (e, n, r) => B(e, typeof n != "symbol" ? n + "" : n, r);
import { Plugin as i } from "../Plugin.es.js";
import { createBlurOnBreakPlugin as a } from "./createBlurOnBreakPlugin.es.js";
import { BLUR_ON_BREAK_PLUGIN as u } from "./id.es.js";
class g extends i {
constructor(r) {
super(u, {
...r
});
t(this, "onBreak");
this.onBreak = r == null ? void 0 : r.onBreak;
}
plugins() {
return [
a({
options: {
onBreak: this.onBreak
}
})
];
}
}
export {
g as BlurOnBreakPlugin
};
//# sourceMappingURL=index.es.js.map