-
Notifications
You must be signed in to change notification settings - Fork 653
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* style: 调整 ReuseTab 样式 * fix(*): named more normalized * feat(reuse-tab): right key close tab * fix(reuse): 取消文字选中 * feat(*): 前端文件命名统一 * fix: 解决大小写不敏感问题 * fix: handle case insensitive issue * 权限组修改由弹窗改成page * feat: 优化体验 * feat: edit permission page; * feat(element-variable): 修改dialog样式,视觉上更加突出 * feat: upgrade to version 0.3.5 Co-authored-by: qiushiming <[email protected]> Co-authored-by: gongjs <[email protected]> Co-authored-by: JohnStream <[email protected]>
- Loading branch information
1 parent
fa288c5
commit 8b4ef5b
Showing
200 changed files
with
1,167 additions
and
536 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const came = str => `${str}`.replace(/-\D/g, match => match.charAt(1).toUpperCase()) | ||
|
||
const hyphenate = str => `${str}`.replace(/[A-Z]/g, match => `-${match.toLowerCase()}`) | ||
|
||
module.exports = { | ||
came, | ||
hyphenate, | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
// 本文件是自动生成, 请勿修改 | ||
<% plugins.forEach(function(plugin){ %>import <%= plugin.name %> from '@/plugins/<%= plugin.name %>/stage-config' | ||
<% plugins.forEach(function(plugin){ %>import <%= plugin.camelCaseName %> from '@/plugin/<%= plugin.name %>/stage-config' | ||
<% }); %> | ||
const pluginsConfig = [ | ||
<% plugins.forEach(function(plugin){ %> <%= plugin.name %>, | ||
<% plugins.forEach(function(plugin){ %> <%= plugin.camelCaseName %>, | ||
<% }); %>] | ||
|
||
export default pluginsConfig |
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
File renamed without changes
Oops, something went wrong.