-
Notifications
You must be signed in to change notification settings - Fork 9
Ionic7 #179
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
Draft
serge-gaia
wants to merge
29
commits into
develop
Choose a base branch
from
ionic7
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Ionic7 #179
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
634ef8a
Initial Commit
BrandonKitt-Kitt-iSolutions fa8560f
Updates to npm environment; fixed scrolling issue
chungvl 50f80d5
Move browserlist to package json
BrandonKitt-Kitt-iSolutions ac01aef
Remove unnecessary plugins
BrandonKitt-Kitt-iSolutions eec3436
Remove cordova googlemaps plugin
BrandonKitt-Kitt-iSolutions 5eca645
Readd AndroidX plugins for older plugins compatibility
BrandonKitt-Kitt-iSolutions c6fd2fe
Rollback unnecessary change
chungvl 1647eeb
Rollback unnecessary change
chungvl fc2f9aa
Rollback unnecessary change
chungvl 98af88c
Rollback unnecessary change
chungvl 208b478
Rollback unnecessary change
chungvl ade2e5b
Merge pull request #178 from BrandonKitt-Kitt-iSolutions/VLC-bootstra…
chungvl b4c835d
new line configuration:
649fa52
Reintroduce .nvmrc with node version 20.11 (latest LTS)
a6166db
Commit from hell - ran dos2unix over every source file.
chungvl b6e7597
Removed circular dependencies and updated biosys-core branch
chungvl 524220d
Login working
chungvl 04708b6
Update navPush to directly call router instead of emitting to a paren…
bri-gaia 079ff11
Remove biosys submodule so it can be integrated into this repo
bri-gaia 6d77c36
Integrate biosys-core
bri-gaia 22d5638
Ham fisted gag for ts errors.
bri-gaia 4fbbac1
Add SchemaService to module providers
bri-gaia 49ccb6b
WIP Alternate call to geolocation - UNTESTED.
bri-gaia 634ca70
Reformat ts code.
bri-gaia 530a50e
Add .git-blame-ignore-revs
bri-gaia 580b117
Schema Service - Rip out datapackage.
bri-gaia 8c27457
Attempt at fixing Forms
nick-crawford-gaia 56bb6e8
Re-implement old NavParams functionality using new Angular Routes.
bri-gaia e9cac57
Removed debug
bri-gaia File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,17 +1,17 @@ | ||
| # EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs | ||
| # editorconfig.org | ||
|
|
||
| # Editor configuration, see https://editorconfig.org | ||
| root = true | ||
|
|
||
| [*] | ||
| charset = utf-8 | ||
| indent_style = space | ||
| indent_size = 2 | ||
|
|
||
| # We recommend you to keep these unchanged | ||
| end_of_line = lf | ||
| charset = utf-8 | ||
| trim_trailing_whitespace = true | ||
| insert_final_newline = true | ||
| trim_trailing_whitespace = true | ||
| end_of_line = lf | ||
|
|
||
| [*.ts] | ||
| quote_type = single | ||
|
|
||
| [*.md] | ||
| max_line_length = off | ||
| trim_trailing_whitespace = false |
This file contains hidden or 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,46 @@ | ||
| { | ||
| "root": true, | ||
| "ignorePatterns": ["projects/**/*"], | ||
| "overrides": [ | ||
| { | ||
| "files": ["*.ts"], | ||
| "parserOptions": { | ||
| "project": ["tsconfig.json"], | ||
| "createDefaultProgram": true | ||
| }, | ||
| "extends": [ | ||
| "plugin:@angular-eslint/recommended", | ||
| "plugin:@angular-eslint/template/process-inline-templates" | ||
| ], | ||
| "rules": { | ||
| "@angular-eslint/component-class-suffix": [ | ||
| "error", | ||
| { | ||
| "suffixes": ["Page", "Component"] | ||
| } | ||
| ], | ||
| "@angular-eslint/component-selector": [ | ||
| "error", | ||
| { | ||
| "type": "element", | ||
| "prefix": "app", | ||
| "style": "kebab-case" | ||
| } | ||
| ], | ||
| "@angular-eslint/directive-selector": [ | ||
| "error", | ||
| { | ||
| "type": "attribute", | ||
| "prefix": "app", | ||
| "style": "camelCase" | ||
| } | ||
| ] | ||
| } | ||
| }, | ||
| { | ||
| "files": ["*.html"], | ||
| "extends": ["plugin:@angular-eslint/template/recommended"], | ||
| "rules": {} | ||
| } | ||
| ] | ||
| } |
This file contains hidden or 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 @@ | ||
| # Reformat TS files | ||
| 634ca70b3d06aeaedee9cd6bd9c81e56f829265f |
This file contains hidden or 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 @@ | ||
| * text=auto eol=lf |
This file contains hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 @@ | ||
| @mobiscroll:registry=https://npm.mobiscroll.com | ||
| //npm.mobiscroll.com/:_authToken=JaDKXJ5BATSBEJgalenYEyp3vBsC5Gn8TSlfB3gSc5i+xDfl4MBOE8nte4hS/xh4OWBwkL9xcishkjENGvcWAQ== | ||
This file contains hidden or 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 +1 @@ | ||
| 10 | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
| 20.11 | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why this?