-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e81c8bd
commit e53e427
Showing
10 changed files
with
86 additions
and
24 deletions.
There are no files selected for viewing
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
2 changes: 1 addition & 1 deletion
2
src/components/input/password-strength/password-strength.constants.ts
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
type Requirement = { | ||
export type Requirement = { | ||
re: RegExp; | ||
label: string; | ||
}; | ||
|
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
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 |
---|---|---|
@@ -1,17 +1,30 @@ | ||
import type { DocType } from "@features/docs/docs.types"; | ||
|
||
export const CLIENT_DOCS_URL = `https://stegoer.github.io/client`; | ||
export const SERVER_DOCS_URL = `https://pkg.go.dev/github.com/stegoer/server`; | ||
export const CLIENT_DEVELOPMENT_DOCS_URL = `https://github.com/stegoer/client/blob/master/README.md`; | ||
export const SERVER_DEVELOPMENT_DOCS_URL = `https://github.com/stegoer/server/blob/main/README.md`; | ||
export const DOCUMENTATION_DEVELOPMENT_DOCS_URL = `https://github.com/stegoer/documentation/blob/main/README.md`; | ||
|
||
export const DOCUMENTATION_URLS: Record<DocType, string> = { | ||
client: CLIENT_DOCS_URL, | ||
server: SERVER_DOCS_URL, | ||
export const DEVELOPMENT_DOCUMENTATION_URLS: Record<DocType, string> = { | ||
client: CLIENT_DEVELOPMENT_DOCS_URL, | ||
server: SERVER_DEVELOPMENT_DOCS_URL, | ||
documentation: DOCUMENTATION_DEVELOPMENT_DOCS_URL | ||
} | ||
|
||
export const CLIENT_REFERENCE_URL = `https://stegoer.github.io/client`; | ||
export const SERVER_REFERENCE_URL = `https://pkg.go.dev/github.com/stegoer/server`; | ||
|
||
export const REFERENCE_URLS: Record<DocType, string | undefined> = { | ||
client: CLIENT_REFERENCE_URL, | ||
server: SERVER_REFERENCE_URL, | ||
documentation: undefined, | ||
} | ||
|
||
export const CLIENT_SOURCE_URL = `https://github.com/stegoer/client`; | ||
export const SERVER_SOURCE_URL = `https://github.com/stegoer/server`; | ||
export const DOCUMENTATION_SOURCE_URL = `https://github.com/stegoer/documentation`; | ||
|
||
export const SOURCE_URLS: Record<DocType, string> = { | ||
client: CLIENT_SOURCE_URL, | ||
server: SERVER_SOURCE_URL | ||
server: SERVER_SOURCE_URL, | ||
documentation: DOCUMENTATION_SOURCE_URL | ||
} |
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 |
---|---|---|
@@ -1 +1 @@ | ||
export type DocType = `client` | `server`; | ||
export type DocType = `client` | `server` | `documentation`; |
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