winbox-ui-next
Version:
We Design Vue 2.0: A Vue.js 3 UI Library
29 lines (28 loc) • 784 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports[Symbol.toStringTag] = "Module";
var cssRender = require("css-render");
var pluginBem = require("@css-render/plugin-bem");
var createKey = require("./create-key.js");
const namespace = "w";
const prefix = `.${namespace}-`;
const elementPrefix = "__";
const modifierPrefix = "--";
const cssr = cssRender.CssRender();
const plugin = pluginBem.plugin({
blockPrefix: prefix,
elementPrefix,
modifierPrefix
});
cssr.use(plugin);
const { c, find } = cssr;
const { cB, cE, cM, cNotM } = plugin;
exports.createKey = createKey.createKey;
exports.c = c;
exports.cB = cB;
exports.cE = cE;
exports.cM = cM;
exports.cNotM = cNotM;
exports.find = find;
exports.namespace = namespace;
exports.prefix = prefix;