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

18284: digital business card #552

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
47feaf0
refactor: CredentialsLanding component: add heading card
amanji Sep 23, 2023
32dfef2
feat: CredentialsLanding component: add supplemental cards
amanji Sep 23, 2023
500763b
feat: CredentialsLanding component: add image and word wrapping
amanji Sep 23, 2023
168eca8
feat: CredentialsLanding component: link styling
amanji Sep 23, 2023
23e6d5b
feat: CredentialsStepper component: deprecate routes
amanji Sep 25, 2023
07bf666
refactor: CredentialsStepper component: function naming
amanji Sep 25, 2023
83d88ff
refactor: DigitalCredentials component: split into sub components
amanji Sep 26, 2023
8cae600
feat: DigitalCredentials component: add web socket component
amanji Sep 27, 2023
dee0f34
feat: DigitalCredentials component: re-add credential table
amanji Sep 28, 2023
bbd85b7
refactor: DigitalCredentials component: update types and imports
amanji Sep 28, 2023
d8289b2
feat: DigitalCredentials component: add revocation dialogs
amanji Oct 18, 2023
49c2baa
feat: DigitalCredentials component: add replacement dialogs
amanji Oct 19, 2023
fbfdc99
feat: devcontainer config
amanji Oct 19, 2023
03772a9
Merge remote-tracking branch 'upstream/main' into feature/digital-bus…
amanji Oct 19, 2023
ae9faa6
chore: fix linting errors
amanji Oct 19, 2023
4e43dc7
chore: bump version number
amanji Oct 20, 2023
ff10cbc
chore: rename route for specificity
amanji Oct 20, 2023
5a2c946
chore: ran linter and fixed linting errors
amanji Oct 20, 2023
990d34d
chore: make interface field optional
amanji Oct 20, 2023
3b1b44d
chore: revert auto-formatting
amanji Oct 20, 2023
917ff01
refactor: contain dialogs for DigitalCredentials component
amanji Oct 20, 2023
e6df545
chore: fix code smells
amanji Oct 20, 2023
88601ef
chore: address code review comments
amanji Oct 25, 2023
d085e12
chore: revert autoformatting
amanji Oct 25, 2023
a143ca0
chore: update wording and styling to align with UX
amanji Oct 27, 2023
c6a8c05
chore: fix styling
amanji Oct 27, 2023
7f3107b
feat: feature flag credentials feature with mixin
amanji Oct 27, 2023
045d251
feat: add TOU dialog
amanji Oct 27, 2023
5c1b4af
chore: fix test failiures and code comments
amanji Oct 27, 2023
081f591
chore: cleaup
amanji Oct 27, 2023
a1edda6
fix: mixin to access digital credential feature
amanji Oct 27, 2023
13a8187
fix: entity menu styling
amanji Oct 27, 2023
8c03739
feat: add loading indicators to digital credential route pages
amanji Oct 27, 2023
65c0c2a
feat: reset dialog and functions
amanji Oct 28, 2023
fdef2ed
chore: returl null if undefined
amanji Oct 30, 2023
f8864b8
chore: beef up conditional checks
amanji Oct 30, 2023
ae81205
chore: spelling error
amanji Oct 30, 2023
df06a6b
chore: spelling error
amanji Oct 30, 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
22 changes: 22 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
{
"name": "Node.js & TypeScript",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye"

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "yarn install",

// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
Loading
Loading