Skip to content

Commit cca9953

Browse files
authored
Merge pull request #1 from kit-data-manager/prototype
Prototype work
2 parents 947ebd2 + 7991b5b commit cca9953

13 files changed

+3046
-120
lines changed

.eslintrc.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"extends": ["standard-with-typescript", "prettier"],
7+
"overrides": [],
8+
"parserOptions": {
9+
"ecmaVersion": "latest",
10+
"sourceType": "module"
11+
},
12+
"rules": {}
13+
}

.prettierignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Ignore artifacts:
2+
build
3+
dist
4+
coverage
5+
.vscode

.prettierrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

index.html

Lines changed: 12 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,14 @@
11
<!DOCTYPE html>
2-
<link rel="stylesheet" href="./node_modules/typeahead-standalone/dist/basic.css" />
3-
<script src="./node_modules/typeahead-standalone/dist/typeahead-standalone.js"></script>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<script type="module" src="/src/main.ts"></script>
8+
<title>Web component test</title>
9+
</head>
410

5-
<meta charset="UTF-8">
6-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8-
9-
<script type="module" src="app.js"></script>
10-
<main>
11-
<form class="dropzone" id="my-form" action="/"></form>
12-
<pre id="output"></pre>
13-
<h1> Choose a Mapping </h1>
14-
15-
<div>
16-
<input type="search" id="searchInput" autocomplete="on" placeholder="Search...">
17-
</div>
18-
19-
</main>
20-
21-
</body>
22-
</html>
11+
<body>
12+
<mapping-input></mapping-input>
13+
</body>
14+
</html>

0 commit comments

Comments
 (0)