-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: extract totp-consent to components package
- Loading branch information
tams sokari
committed
Nov 26, 2023
1 parent
ff50661
commit 7622f69
Showing
7 changed files
with
27 additions
and
14 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 |
---|---|---|
|
@@ -5,9 +5,15 @@ | |
"exports": { | ||
".": "./index.js", | ||
"./combobox": "./combobox/src/index.js", | ||
"./end-user-consent": "./end-user-consent/src/index.js" | ||
"./end-user-consent": "./end-user-consent/src/index.js", | ||
"./totp-consent": "./totp-consent/src/index.js" | ||
}, | ||
"description": "A collection of Web Components used by SmileID", | ||
"keywords": [ "Web Components" ], | ||
"author": "SmileID <[email protected]> (https://usesmileid.com)" | ||
"keywords": [ | ||
"Web Components" | ||
], | ||
"author": "SmileID <[email protected]> (https://usesmileid.com)", | ||
"dependencies": { | ||
"validate.js": "^0.13.1" | ||
} | ||
} |
This file contains 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 contains 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,3 @@ | ||
export { | ||
TotpConsent | ||
} from './TotpConsent'; |
This file contains 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 contains 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 contains 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