Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

POC-145 #1667

Closed
wants to merge 32 commits into from
Closed

POC-145 #1667

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
b29909b
addedreported test date and result to family history
hiqedme Mar 8, 2023
3f05185
added reported test date and result to family history
hiqedme Mar 8, 2023
6a18997
Added locator map details component
hiqedme Mar 24, 2023
7817258
locator map 1
hiqedme May 16, 2023
a52c12c
Merge branch 'master' into POC-145
hiqedme May 16, 2023
6bd3f00
Merge pull request #1 from hiqedme/POC-145
sainingo May 19, 2023
4e7ff25
POC-145: UI
sainingo May 19, 2023
6fb07fb
Merge pull request #13 from sainingo/POC-145
hiqedme May 22, 2023
cb0619e
test
Angie-540 May 22, 2023
68161e3
add button
Angie-540 May 22, 2023
00f1b1c
added data to UI
hiqedme May 22, 2023
ec2f443
locator-map add button
Angie-540 May 23, 2023
f96f321
Merge remote-tracking branch 'hiqedme/POC-145' into POC-145a
Angie-540 May 23, 2023
267bfd6
Merge pull request #2 from hiqedme/POC-145
Angie-540 May 23, 2023
2a603ac
Merge remote-tracking branch 'origin/POC-145a' into POC-145a
Angie-540 May 23, 2023
47d7841
added view button
Angie-540 May 23, 2023
da6024e
added view and edit buttons
hiqedme May 23, 2023
e691828
merge
hiqedme May 23, 2023
1c599a8
Merge remote-tracking branch 'hiqedme/POC-145' into POC-145a
Angie-540 May 24, 2023
cfeb69c
added view
hiqedme May 24, 2023
0a6ab44
Merge remote-tracking branch 'hiqedme/POC-145' into POC-145a
Angie-540 May 24, 2023
524e0d6
add view button
Angie-540 May 24, 2023
16a1532
pop-up
Angie-540 May 25, 2023
2a66d1f
all
Angie-540 May 26, 2023
26b0256
modal component
Angie-540 May 30, 2023
45d43e5
dismiss modal
Angie-540 May 30, 2023
e6cbdcc
spacing
Angie-540 May 31, 2023
93b2929
Add locator-pretty viewer
Sep 14, 2023
9ae7b76
Add locator data
Sep 15, 2023
744b42a
Add download functionality
Sep 19, 2023
f686aa6
Remove unused code
Sep 19, 2023
2020f15
quick update
Sep 19, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 34 additions & 36 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,36 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "attach",
"name": "Unit tests",
"address": "localhost",
"port": 9333,
"sourceMaps": true,
"webRoot": "${workspaceRoot}"
},
{
"name": "ng serve",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000/#",
"webRoot": "${workspaceFolder}"
},
{
"name": "npm run test",
"type": "chrome",
"request": "launch",
"url": "http://localhost:9876/debug.html",
"webRoot": "${workspaceFolder}"
},
{
"name": "ng e2e",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/node_modules/protractor/bin/protractor",
"protocol": "inspector",
"args": [
"${workspaceFolder}/e2e/protractor.conf.js"
]
}
]
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "attach",
"name": "Unit tests",
"address": "localhost",
"port": 9333,
"sourceMaps": true,
"webRoot": "${workspaceRoot}"
},
{
"name": "ng serve",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000/#",
"webRoot": "${workspaceFolder}"
},
{
"name": "npm run test",
"type": "chrome",
"request": "launch",
"url": "http://localhost:9876/debug.html",
"webRoot": "${workspaceFolder}"
},
{
"name": "ng e2e",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/node_modules/protractor/bin/protractor",
"protocol": "inspector",
"args": ["${workspaceFolder}/e2e/protractor.conf.js"]
}
]
}
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
p {
padding: 8px;
background-color: rgba(29, 112, 219, 0.842);
color: #fff;
border-radius: 3px;
}

.header {
font-size: 16px;
font-weight: 600;
margin-left: 20px;
color: rgb(5, 102, 212);
display: block;
width: 100%;
}

.wrapper-container {
margin-top: 18px;
width: 100%;
}

.self-container {
margin-top: 18px;
width: 100%;
}

.wrapper {
padding-bottom: 32px;
}

.btn-print {
font-size: 24px;
float: right;
margin-right: 20px;
cursor: pointer;
}
Loading
Loading