Kagol

Results 210 comments of Kagol

@stwflyfox 可以通过覆盖样式解决。 ```css .tiny-calendar-view .tiny-calendar-view-month__main .main-container>ul>li { height: 50px; // 默认是 80px } ``` vue项目中可以使用 `:deep()` 做样式穿透: ```css .my-calendar-view.tiny-calendar-view :deep(.tiny-calendar-view-month__main .main-container>ul>li) { height: 50px; // 默认是 80px } ``` 效果如下:...

> 简单试了一下,发现如果用 vite 配合 rollup 的 typescript plugin 会有一些问题,分别打包 es 和 cjs 需要分别调度 rollup 打包才行,或许直接用 tsc 打包 ts 文件更方便一些? @WindRunnerMax @hongdundada 我试了下,通过 vite-plugin-dst 插件打包是可以正确生成 ts 类型声明文件的,已发布 alpha 版本:`@opentiny/[email protected]`

@hongdundada 已发布正式版本 v3.21.0,导出了 TypeScript 类型声明。

全屏是很实用的功能,后续可以集成到 Fluent Edtior 中。

我看了下,附件中的三份试卷中,大部分公式都是支持的,主要有以下5种情况不支持: 1. ✅双向箭头 -- 可用普通符号`⇌` ![Image](https://github.com/user-attachments/assets/3ce8e20b-6f75-401e-9327-22c614d5bf3a) 2. ✅向上箭头 -- 可用普通符号`↑` ![Image](https://github.com/user-attachments/assets/3e8b2d77-a478-4040-86d4-b54f2f8eb592) 3. ✅三等号 -- 可用普通符号`≡` ![Image](https://github.com/user-attachments/assets/07314577-ba91-4099-aa20-5e4b00b2b1f8) 4. ❌箭头上方显示内容 ![Image](https://github.com/user-attachments/assets/6ee41215-60c3-4ed1-948e-1c3d8e4b8e92) 5. ❌上下标同时显示 ![Image](https://github.com/user-attachments/assets/ecc79996-101d-43f8-b686-3d25fd87d12c) 如果有其他场景不支持,请 @stwflyfox 补充 @kiss-keray 有空也可以看下 4/5 两种情况有没有什么好的办法解决。

@gweesin 建议只修改以下3个命令涉及到的 vitest 版本号: ``` "test:unit2": "pnpm -C examples/vue2 test:unit", "test:unit2.7": "pnpm -C examples/vue2.7 test:unit", "test:unit3": "pnpm -C examples/vue3 test:unit", ``` 其他无关的无需修改

@necoxrr 虚拟滚动是一个新组件,先参考[这个文档](增加新组件的步骤),走通组件流程,确保执行 `pnpm site` 命令之后,打开的本地网站左侧组件导航能看到这个组件,并且可以看到组件的demo/api文档。 请参考:[增加新组件的步骤](https://github.com/opentiny/tiny-vue/wiki/%E5%A2%9E%E5%8A%A0%E6%96%B0%E7%BB%84%E4%BB%B6%E7%9A%84%E6%AD%A5%E9%AA%A4)

深色模式主题已经安排上了~