-
Notifications
You must be signed in to change notification settings - Fork 278
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(utils): delete the renderless/common directory and adjust all reference paths. #2849
Merged
Merged
Changes from 4 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
00dd4c5
fix(utils): 调整sha256, 移除 getWindow, isWeb
shenjunjian 39901e7
fix(utils): 移除isSerer到globalConfig, 删除isBrowser函数
shenjunjian 6e7aacd
fix(utils): 移除 prop-util 包
shenjunjian dba8c92
fix(utils): 更新date, calendar,date-utils, type四个引用
shenjunjian 538736f
fix(utils): 更新string包路径
shenjunjian ed9307f
fix(utils): 更新 object路径
shenjunjian 10f847f
fix(utils): 添加'@opentiny/utils' 依赖
shenjunjian 97c1f84
fix(utils): 添加'@opentiny/utils' 依赖
shenjunjian cb2d4b7
fix(utils): 更新 dataset 路径
shenjunjian 3119781
fix(utils): 更新 array 路径
shenjunjian ea19a56
fix(utils): 更新 array 路径
shenjunjian 63ec0f0
fix(utils): 更新 dataset 路径
shenjunjian 19c771b
fix(utils): 删除所有的renderless/common中的文件
shenjunjian 338eef3
fix(utils): 替换路径
shenjunjian 1ca41ba
fix(utils): 替换路径
shenjunjian 5586ff3
fix(utils): 替换路径
shenjunjian 7302c1c
fix(utils): 替换路径
shenjunjian ba298b5
fix(utils): 替换路径
shenjunjian d249b84
fix(utils): 替换路径
shenjunjian 54e95a7
fix(utils): 替换路径
shenjunjian 035da89
Merge branch 'dev' of github.com:opentiny/tiny-vue into refactor-util…
shenjunjian 0b0c263
fix(utils): fix
shenjunjian c6d2cc6
fix(utils): remove time-line-new
shenjunjian aaacca6
fix(utils): adjust import orders
shenjunjian 7064e5b
Merge branch 'dev' of github.com:opentiny/tiny-vue into refactor-util…
shenjunjian 1baade3
fix(utils): 替换路径
shenjunjian 6f68ab9
Merge branch 'dev' of github.com:opentiny/tiny-vue into refactor-util…
shenjunjian 44b3da9
fix(utils): add popup-manager file
shenjunjian File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the server check condition in
onTouchStart
.The current condition
if (isServer) return
will prevent touch handling in server environments, but allow it in server environments. This appears to be the opposite of the intended behavior, as touch events should only be handled in browser environments.Apply this fix:
Also applies to: 45-45