dsh-livebench-panel 0.1.18 → 0.1.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/client.js +3 -3
  2. package/package.json +1 -1
package/lib/client.js CHANGED
@@ -452,9 +452,9 @@ window.__ModuleLoader__.load({
452
452
  ),
453
453
  h("div", { className: c("field") },
454
454
  h("label", { className: c("label") }, "题目序号范围(可选)"),
455
- h("div", { className: c("row") },
456
- h("input", { className: c("input"), type: "number", min: 0, placeholder: "起", value: sel.begin, onChange: setField("begin"), style: { width: "50%" } }),
457
- h("input", { className: c("input"), type: "number", min: 0, placeholder: "止", value: sel.end, onChange: setField("end"), style: { width: "50%" } }),
455
+ h("div", { className: c("row"), style: { flexWrap: "nowrap" } },
456
+ h("input", { className: c("input"), type: "number", min: 0, placeholder: "起", value: sel.begin, onChange: setField("begin"), style: { flex: "1", minWidth: "0" } }),
457
+ h("input", { className: c("input"), type: "number", min: 0, placeholder: "止", value: sel.end, onChange: setField("end"), style: { flex: "1", minWidth: "0" } }),
458
458
  ),
459
459
  h("div", { className: c("field") },
460
460
  h("label", { className: c("label") }, "分类(可多选,不选 = 全部分类;括号内为该 release 下有效题数)"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-livebench-panel",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "description": "DSH web plugin: a LiveBench tab in the Trajectory view (right of 对话/轨迹). Run LiveBench evaluations against every model configured in the DeepSeek Harness — pick provider/model, category, task, release and question range from dropdowns, watch progress, and read scores in place.",
5
5
  "license": "MIT",
6
6
  "type": "module",