Skip to content

Commit

Permalink
Merge pull request #5 from RyanBirtch-aot/map-adding-points
Browse files Browse the repository at this point in the history
Map adding points
  • Loading branch information
abhilash-aot authored Jul 2, 2024
2 parents 25d99b8 + 602bde6 commit 5dd1e7d
Show file tree
Hide file tree
Showing 16 changed files with 661 additions and 20 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,5 @@ build
!app/frontend/.env
!local-infrastructure/.env
.history
realm-export.json
chefs_build
21 changes: 18 additions & 3 deletions app/frontend/package-lock.json

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

2 changes: 2 additions & 0 deletions app/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
"font-awesome": "^4.7.0",
"formiojs": "^4.14.13",
"keycloak-js": "^21.1.1",
"leaflet": "^1.9.4",
"leaflet-draw": "^1.0.4",
"lodash": "^4.17.21",
"mitt": "^3.0.0",
"moment": "^2.29.4",
Expand Down
1 change: 1 addition & 0 deletions app/frontend/src/components/designer/FormDesigner.vue
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ export default {
simplefile: this.form.userType !== this.ID_MODE.PUBLIC,
bcaddress: true,
simplebcaddress: true,
map: true,
},
},
},
Expand Down
203 changes: 187 additions & 16 deletions components/package-lock.json

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

5 changes: 5 additions & 0 deletions components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,13 @@
"components"
],
"dependencies": {
"@types/leaflet": "^1.9.12",
"@types/leaflet-draw": "^1.0.11",
"autocompleter": "^7.0.1",
"css-loader": "^7.1.2",
"formiojs": "^4.14.6",
"leaflet": "^1.9.4",
"leaflet-draw": "^1.0.4",
"lodash": "^4.17.21",
"native-promise-only": "^0.8.1",
"path-browserify": "^1.0.1",
Expand Down
4 changes: 4 additions & 0 deletions components/src/components/Map/Common/Constants.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export declare abstract class Constants {
static readonly DEFAULT_HELP_LINK: string;
static readonly ADV: string;
}
4 changes: 4 additions & 0 deletions components/src/components/Map/Common/Constants.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export class Constants {
static DEFAULT_HELP_LINK = 'https://github.com/bcgov/common-hosted-form-service/wiki';
static ADV = '';
}
Loading

0 comments on commit 5dd1e7d

Please sign in to comment.