tiny-vue/packages/renderless
liukun 4be1cdfc6f
fix(vue-renderless/date-panel): 修复多时区场景下选中日期偏移一天的问题 (#4266)
预补偿 val - localOffset 后混用本地 getFullYear/getMonth 与 UTC 的 getUTCDate+1,导致所有时区偏移一天。

本地与 UTC 混用还会使西半球跨年/跨月边界错月错年。

改为统一读取 getUTCFullYear/getUTCMonth/getUTCDate,与预补偿语义一致,修正多时区及跨边界日期偏移。
2026-07-27 17:26:57 +08:00
..
scripts fix(renderless): fix renderless publish error and fix button-group apis (#2983) 2025-03-03 10:48:57 +08:00
src fix(vue-renderless/date-panel): 修复多时区场景下选中日期偏移一天的问题 (#4266) 2026-07-27 17:26:57 +08:00
types fix(drawer): add drag and drop icon(mobile-first) (#4249) 2026-07-22 09:44:49 +08:00
README.md feat(readme): add readme files to main packages (#1826) 2024-08-05 15:22:50 +08:00
README.zh-CN.md feat(readme): add readme files to main packages (#1826) 2024-08-05 15:22:50 +08:00
package.json chore: update to version 3.31.0 (#4255) 2026-07-23 14:27:08 +08:00
tsconfig.json feat: 还原renderless打包逻辑 2024-12-11 17:17:18 +08:00
tsup.config.ts chore: remove useless runtime-version (#3249) 2025-04-07 11:21:52 +08:00

README.md

@opentiny/vue-renderless

Provides a rendering-free logic layer for the TinyVue component.

You can customize the global configuration of some components

Modify the popup window starting level (z-index)

Add the following code to the entry file main.js:

import PopupManager from '@opentiny/vue-renderless/common/deps/popup-manager'

// Set the starting level to 3000
PopupManager.zIndex = 3000