更新字体

This commit is contained in:
satori 2024-12-08 13:07:23 +08:00
parent 3ad79bc529
commit 62f8bfda2d
4 changed files with 13 additions and 4 deletions

View File

@ -5,6 +5,15 @@
(本质上只是给创建 html 的js方法套了一层使其能够链式调用) (本质上只是给创建 html 的js方法套了一层使其能够链式调用)
```bash
npm version patch # 修复问题
npm version minor # 添加功能
npm version major # 破坏性更改
npm publish
```
```bash ```bash
npm i @laniakeasupercluster/widgets npm i @laniakeasupercluster/widgets
``` ```

View File

@ -1,4 +1,4 @@
import { div, span, pre, h1, h2, p, ul, li, button, createElement } from './main.js' import { div, span, pre, h1, h2, p, ul, li, button } from './main.js'
import { Dialog } from './widgets/dialog.js' import { Dialog } from './widgets/dialog.js'
document.body.style.fontFamily = 'Arial, sans-serif' document.body.style.fontFamily = 'Arial, sans-serif'

View File

@ -103,8 +103,8 @@ export function createElement({ innerText, innerHTML, textContent, readOnly, chi
} }
if (key === 'font') { if (key === 'font') {
if (['bold', 'semibold'].includes(value)) { if (['medium', 'bold', 'semibold'].includes(value)) {
const fontWeightMap = { 'semibold': 600, 'bold': 700 } const fontWeightMap = { 'medium':500, 'semibold': 600, 'bold': 700 }
element.style.fontWeight = fontWeightMap[value] element.style.fontWeight = fontWeightMap[value]
return return
} }

View File

@ -1,7 +1,7 @@
{ {
"name": "@laniakeasupercluster/widgets", "name": "@laniakeasupercluster/widgets",
"description": "A simple widgets tracker", "description": "A simple widgets tracker",
"version": "1.1.6", "version": "1.1.7",
"type": "module", "type": "module",
"main": "main.js", "main": "main.js",
"author": "Laniakea Supercluster <huan0016@gmail.com>", "author": "Laniakea Supercluster <huan0016@gmail.com>",