Skip to content

Commit

Permalink
fix(package): exported colors and criteria enum #163 #143
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyNahas committed Apr 18, 2019
1 parent 9e033f8 commit 92d76c7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/module/enum/colors.enum.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export enum Colors {
primary = 'primary',
accent = 'accent',
warn = 'warn'
}
8 changes: 8 additions & 0 deletions src/module/enum/criteria.enum.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export enum Criteria {
at_least_eight_chars = 'minChar',
at_least_one_lower_case_char = 'lowerCase',
at_least_one_upper_case_char = 'upperCase',
at_least_one_digit_char = 'digit',
at_least_one_special_char = ' specialChar',
at_custom_chars = 'customChars'
}

0 comments on commit 92d76c7

Please sign in to comment.