@linaria/core
Version:
Blazing fast zero-runtime CSS in JS library
71 lines (68 loc) • 2.2 kB
JavaScript
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/index.ts
var src_exports = {};
__export(src_exports, {
css: () => css_default,
cx: () => cx_default
});
module.exports = __toCommonJS(src_exports);
// src/css.ts
var idx = 0;
var css = () => {
if (process.env.NODE_ENV === "test") {
return `mocked-css-${idx++}`;
}
throw new Error(
'Using the "css" tag in runtime is not supported. Make sure you have set up the Babel plugin correctly.'
);
};
var css_default = css;
// src/cx.ts
var cx = function cx2() {
const presentClassNames = Array.prototype.slice.call(arguments).filter(Boolean);
const atomicClasses = {};
const nonAtomicClasses = [];
presentClassNames.forEach((arg) => {
const individualClassNames = arg ? arg.split(" ") : [];
individualClassNames.forEach((className) => {
if (className.startsWith("atm_")) {
const [, keyHash] = className.split("_");
atomicClasses[keyHash] = className;
} else {
nonAtomicClasses.push(className);
}
});
});
const result = [];
for (const keyHash in atomicClasses) {
if (Object.prototype.hasOwnProperty.call(atomicClasses, keyHash)) {
result.push(atomicClasses[keyHash]);
}
}
result.push(...nonAtomicClasses);
return result.join(" ");
};
var cx_default = cx;
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
css,
cx
});
//# sourceMappingURL=index.js.map