-
-
Notifications
You must be signed in to change notification settings - Fork 7
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 #2 from jofftiquez/feat/browser-extension
- Loading branch information
Showing
25 changed files
with
1,450 additions
and
4,042 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 |
---|---|---|
@@ -1,8 +1,6 @@ | ||
/dist | ||
/src-bex/www | ||
/src-capacitor | ||
/src-cordova | ||
/.quasar | ||
/node_modules | ||
.eslintrc.js | ||
babel.config.js |
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 was deleted.
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
<!-- create a basic style for all the forms inside this document --> | ||
<style> | ||
form { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
|
||
input { | ||
margin: 10px; | ||
padding: 10px; | ||
width: 200px; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<!-- create a form with all possible types of input elements --> | ||
<form action="inputs.php" method="post"> | ||
<input type="text" name="text" placeholder="text"> | ||
<input type="password" name="password" placeholder="password"> | ||
<input type="email" name="email" placeholder="email"> | ||
<input type="number" name="number" placeholder="number"> | ||
<input type="date" name="date" placeholder="date"> | ||
<input type="time" name="time" placeholder="time"> | ||
<input type="color" name="color" placeholder="color"> | ||
<input type="range" name="range" placeholder="range"> | ||
<input type="file" name="file" placeholder="file"> | ||
<input type="tel" name="tel" placeholder="tel"> | ||
<input type="url" name="url" placeholder="url"> | ||
<!-- add more fields for personal details --> | ||
<input type="text" name="first name" placeholder="first name"> | ||
<input type="text" name="middle name" placeholder="middle name"> | ||
<input type="text" name="last name" placeholder="surname"> | ||
<input type="text" name="age" placeholder="age"> | ||
<input type="submit" name="submit" value="submit"> | ||
</form> | ||
|
||
</body> | ||
|
||
</html> |
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,7 +1,7 @@ | ||
{ | ||
"name": "faker-js-ui", | ||
"version": "0.3.1", | ||
"description": "Use Faker.js UI to easiliy generate fake (but realistic) data for testing and development using Faker.js", | ||
"description": "Simple and intuitive UI for Faker.js", | ||
"productName": "Faker.js UI", | ||
"author": "Joff Tiquez <[email protected]>", | ||
"private": true, | ||
|
@@ -14,42 +14,49 @@ | |
"build:bex": "quasar build -m bex" | ||
}, | ||
"dependencies": { | ||
"@faker-js/faker": "^8.0.1", | ||
"@quasar/extras": "^1.0.0", | ||
"@faker-js/faker": "^8.0.2", | ||
"@quasar/extras": "^1.16.4", | ||
"axios": "^1.2.1", | ||
"core-js": "^3.6.5", | ||
"events": "^3.3.0", | ||
"lodash": "^4.17.21", | ||
"pinia": "^2.0.11", | ||
"quasar": "^2.6.0", | ||
"quasar": "^2.12.0", | ||
"vue": "^3.0.0", | ||
"vue-i18n": "^9.0.0", | ||
"vue-router": "^4.0.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/eslint-parser": "^7.13.14", | ||
"@quasar/app-webpack": "^3.0.0", | ||
"@intlify/vite-plugin-vue-i18n": "^3.3.1", | ||
"@quasar/app-vite": "^1.0.0", | ||
"autoprefixer": "^10.4.2", | ||
"eslint": "^8.10.0", | ||
"eslint-config-standard": "^17.0.0", | ||
"eslint-plugin-import": "^2.19.1", | ||
"eslint-plugin-n": "^15.0.0", | ||
"eslint-plugin-promise": "^6.0.0", | ||
"eslint-plugin-vue": "^9.0.0", | ||
"eslint-webpack-plugin": "^3.1.1" | ||
"postcss": "^8.4.14" | ||
}, | ||
"browserslist": [ | ||
"last 10 Chrome versions", | ||
"last 10 Firefox versions", | ||
"last 4 Edge versions", | ||
"last 7 Safari versions", | ||
"last 8 Android versions", | ||
"last 8 ChromeAndroid versions", | ||
"last 8 FirefoxAndroid versions", | ||
"last 10 iOS versions", | ||
"last 5 Opera versions" | ||
], | ||
"engines": { | ||
"node": ">= 12.22.1", | ||
"node": "^18 || ^16 || ^14.19", | ||
"npm": ">= 6.13.4", | ||
"yarn": ">= 1.21.1" | ||
} | ||
} | ||
}, | ||
"main": "quasar.config.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/jofftiquez/faker-js-ui.git" | ||
}, | ||
"keywords": [ | ||
"faker", | ||
"fakerjs", | ||
"fakerjsui", | ||
"javascript", | ||
"browser-extension" | ||
], | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/jofftiquez/faker-js-ui/issues" | ||
}, | ||
"homepage": "https://github.com/jofftiquez/faker-js-ui#readme" | ||
} |
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.