@kuma-ui/system
Version:
🐻 Kuma UI is a utility-first, zero-runtime CSS-in-JS library that offers an outstanding developer experience and optimized performance.
54 lines (52 loc) • 1.93 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/props/font.ts
var font_exports = {};
__export(font_exports, {
fontMappings: () => fontMappings
});
module.exports = __toCommonJS(font_exports);
var fontMappings = {
font: "font",
fontFamily: "font-family",
fontFeatureSettings: "font-feature-settings",
fontKerning: "font-kerning",
fontLanguageOverride: "font-language-override",
fontOpticalSizing: "font-optical-sizing",
fontPalette: "font-palette",
fontSize: "font-size",
fontSizeAdjust: "font-size-adjust",
fontStretch: "font-stretch",
fontStyle: "font-style",
fontSynthesis: "font-synthesis",
fontVariant: "font-variant",
fontVariantAlternates: "font-variant-alternates",
fontVariantCaps: "font-variant-caps",
fontVariantEastAsian: "font-variant-east-asian",
fontVariantEmoji: "font-variant-emoji",
fontVariantLigatures: "font-variant-ligatures",
fontVariantNumeric: "font-variant-numeric",
fontVariantPosition: "font-variant-position",
fontVariationSettings: "font-variation-settings",
fontWeight: "font-weight"
};
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
fontMappings
});