-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: make the icons and indicators in the select accessible (#1462)
- Loading branch information
1 parent
c8ee1a4
commit 3b6d900
Showing
9 changed files
with
163 additions
and
135 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
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,54 @@ | ||
export const provinces = [ | ||
{ | ||
label: "Alberta", | ||
value: "AB", | ||
}, | ||
{ | ||
label: "British Columbia", | ||
value: "BC", | ||
}, | ||
{ | ||
label: "Manitoba", | ||
value: "MB", | ||
}, | ||
{ | ||
label: "New Brunswick", | ||
value: "NB", | ||
}, | ||
{ | ||
label: "Newfoundland and Labrador", | ||
value: "NL", | ||
}, | ||
{ | ||
label: "Northwest Territories", | ||
value: "NT", | ||
}, | ||
{ | ||
label: "Nova Scotia", | ||
value: "NS", | ||
}, | ||
{ | ||
label: "Nunavut", | ||
value: "NU", | ||
}, | ||
{ | ||
label: "Ontario", | ||
value: "ON", | ||
}, | ||
{ | ||
label: "Prince Edward Island", | ||
value: "PE", | ||
}, | ||
{ | ||
label: "Quebec", | ||
value: "QC", | ||
}, | ||
{ | ||
label: "Saskatchewan", | ||
value: "SK", | ||
}, | ||
{ | ||
label: "Yukon Territory", | ||
value: "YT", | ||
}, | ||
]; |
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
Oops, something went wrong.