-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from linyisonger/dev
🚀v1.5.0 增加假数据模块
- Loading branch information
Showing
20 changed files
with
12,914 additions
and
197 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ node_modules/ | |
coverage/ | ||
package-lock.json | ||
yarn.lock | ||
docs/ | ||
docs/ | ||
assets/region.json |
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,3 +1,7 @@ | ||
### 🚀v1.5.0 增加假数据模块 | ||
➕: Fakery 假数据模块 | ||
➕: Maths 方法名简化 | ||
|
||
### 🚀v1.4.6 修复颜色转换rgbToHex | ||
➕: rgbToHex 正则问题 | ||
|
||
|
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,10 @@ | ||
/** 前二十姓氏 */ | ||
export const familyName: string[]; | ||
export const femaleName: string[]; | ||
export const maleName: string[]; | ||
declare namespace _default { | ||
export { familyName }; | ||
export { femaleName }; | ||
export { maleName }; | ||
} | ||
export default _default; |
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,9 @@ | ||
/** 前二十姓氏 */ | ||
export const familyName = "李,王,张,刘,陈,杨,赵,黄,周,吴,徐,孙,胡,朱,高,林,何,郭,马,罗".split(','); | ||
export const femaleName = '佳瑶,妙冉,娴婉,德莎,思芸,紫琴,洛雅,苡瑶,芮涵,冉雯'.split(','); | ||
export const maleName = '博宇,新安,华森,书皓,楷国,若煊,宸毅,宇轩,浩然,风昊'.split(','); | ||
export default { | ||
familyName, | ||
femaleName, | ||
maleName | ||
}; |
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,16 @@ | ||
declare const _default: { | ||
id: string; | ||
name: string; | ||
postal_code: string; | ||
subordinates: { | ||
id: string; | ||
name: string; | ||
postal_code: string; | ||
subordinates: { | ||
id: string; | ||
name: string; | ||
postal_code: string; | ||
}[]; | ||
}[]; | ||
}[]; | ||
export default _default; |
Large diffs are not rendered by default.
Oops, something went wrong.
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,10 @@ | ||
/** 前二十姓氏 */ | ||
export const familyName = "李,王,张,刘,陈,杨,赵,黄,周,吴,徐,孙,胡,朱,高,林,何,郭,马,罗".split(',') | ||
export const femaleName = '佳瑶,妙冉,娴婉,德莎,思芸,紫琴,洛雅,苡瑶,芮涵,冉雯'.split(',') | ||
export const maleName = '博宇,新安,华森,书皓,楷国,若煊,宸毅,宇轩,浩然,风昊'.split(',') | ||
|
||
export default { | ||
familyName, | ||
femaleName, | ||
maleName | ||
}; |
Oops, something went wrong.