-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
111 changed files
with
1,246 additions
and
948 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
root: true | ||
extends: | ||
- prettier | ||
plugins: | ||
- prettier | ||
settings: | ||
react: | ||
version: detect | ||
parserOptions: | ||
ecmaVersion: latest | ||
ecmaFeatures: | ||
jsx: true | ||
sourceType: module | ||
rules: | ||
prettier/prettier: error | ||
no-unused-vars: off |
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,7 @@ | ||
.github | ||
node_modules | ||
dist | ||
build | ||
.svelte-kit | ||
.vercel | ||
.output |
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,2 @@ | ||
singleQuote: true | ||
printWidth: 100 |
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 |
---|---|---|
@@ -1,56 +1,51 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
<title>Auto-fill form with address autocomplete with PlaceKit Autocomplete JS</title> | ||
</head> | ||
<body class="bg-gray-50 px-4 py-8 lg:p-16"> | ||
<form id="form" class="max-w-xl mx-auto grid sm:grid-cols-3 gap-6 p-6 rounded-lg bg-white shadow-lg"> | ||
<div class="space-y-1 col-span-full"> | ||
<label for="address" class="block text-sm font-medium text-gray-700"> | ||
Address | ||
</label> | ||
<input | ||
type="search" | ||
name="address" | ||
placeholder="Search place..." | ||
class="block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500 sm:text-sm" | ||
id="placekit-input" | ||
/> | ||
</div> | ||
<div class="space-y-1"> | ||
<label for="city" class="block text-sm font-medium text-gray-700"> | ||
City | ||
</label> | ||
<input | ||
type="text" | ||
name="city" | ||
class="block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500 sm:text-sm" | ||
/> | ||
</div> | ||
<div class="space-y-1"> | ||
<label for="zipcode" class="block text-sm font-medium text-gray-700"> | ||
ZIP Code | ||
</label> | ||
<input | ||
type="text" | ||
name="zipcode" | ||
class="block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500 sm:text-sm" | ||
/> | ||
</div> | ||
<div class="space-y-1"> | ||
<label for="country" class="block text-sm font-medium text-gray-700"> | ||
Country | ||
</label> | ||
<input | ||
type="text" | ||
name="country" | ||
class="block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500 sm:text-sm" | ||
/> | ||
</div> | ||
</form> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
<title>Auto-fill form with address autocomplete with PlaceKit Autocomplete JS</title> | ||
</head> | ||
<body class="bg-gray-50 px-4 py-8 lg:p-16"> | ||
<form | ||
id="form" | ||
class="max-w-xl mx-auto grid sm:grid-cols-3 gap-6 p-6 rounded-lg bg-white shadow-lg" | ||
> | ||
<div class="space-y-1 col-span-full"> | ||
<label for="address" class="block text-sm font-medium text-gray-700"> Address </label> | ||
<input | ||
type="search" | ||
name="address" | ||
placeholder="Search place..." | ||
class="block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500 sm:text-sm" | ||
id="placekit-input" | ||
/> | ||
</div> | ||
<div class="space-y-1"> | ||
<label for="city" class="block text-sm font-medium text-gray-700"> City </label> | ||
<input | ||
type="text" | ||
name="city" | ||
class="block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500 sm:text-sm" | ||
/> | ||
</div> | ||
<div class="space-y-1"> | ||
<label for="zipcode" class="block text-sm font-medium text-gray-700"> ZIP Code </label> | ||
<input | ||
type="text" | ||
name="zipcode" | ||
class="block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500 sm:text-sm" | ||
/> | ||
</div> | ||
<div class="space-y-1"> | ||
<label for="country" class="block text-sm font-medium text-gray-700"> Country </label> | ||
<input | ||
type="text" | ||
name="country" | ||
class="block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500 sm:text-sm" | ||
/> | ||
</div> | ||
</form> | ||
|
||
<script type="module" src="main.js"></script> | ||
</body> | ||
</html> | ||
<script type="module" src="main.js"></script> | ||
</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
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,21 +1,21 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
<title>Basic address autocomplete with PlaceKit Autocomplete JS</title> | ||
</head> | ||
<body class="py-32 bg-slate-50"> | ||
<main class="max-w-md mx-auto"> | ||
<input | ||
type="search" | ||
name="place" | ||
placeholder="Search place..." | ||
class="pka-input w-full" | ||
id="placekit-input" | ||
/> | ||
</main> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
<title>Basic address autocomplete with PlaceKit Autocomplete JS</title> | ||
</head> | ||
<body class="py-32 bg-slate-50"> | ||
<main class="max-w-md mx-auto"> | ||
<input | ||
type="search" | ||
name="place" | ||
placeholder="Search place..." | ||
class="pka-input w-full" | ||
id="placekit-input" | ||
/> | ||
</main> | ||
|
||
<script type="module" src="main.js"></script> | ||
</body> | ||
</html> | ||
<script type="module" src="main.js"></script> | ||
</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
Oops, something went wrong.