-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
35 changed files
with
2,018 additions
and
495 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
import { AuroCheckboxGroup } from '../../src/auro-checkbox-group.js'; | ||
|
||
/** | ||
* The auro-checkbox-group element is a wrapper for auro-checkbox element. | ||
*/ | ||
class AuroCheckboxGroupWCA extends AuroCheckboxGroup {} | ||
|
||
if (!customElements.get("auro-checkbox-group")) { | ||
customElements.define("auro-checkbox-group", AuroCheckboxGroupWCA); | ||
} |
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,11 @@ | ||
|
||
import { AuroCheckbox } from '../../src/auro-checkbox.js'; | ||
|
||
/** | ||
* Custom element for the purpose of allowing users to select one or more options of a limited number of choices. | ||
*/ | ||
class AuroCheckboxWCA extends AuroCheckbox {} | ||
|
||
if (!customElements.get("auro-checkbox")) { | ||
customElements.define("auro-checkbox", AuroCheckboxWCA); | ||
} |
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,10 @@ | ||
|
||
import { AuroCombobox } from '../../src/auro-combobox.js'; | ||
|
||
/** | ||
*/ | ||
class AuroComboboxWCA extends AuroCombobox {} | ||
|
||
if (!customElements.get("auro-combobox")) { | ||
customElements.define("auro-combobox", AuroComboboxWCA); | ||
} |
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,10 @@ | ||
|
||
import { AuroDatePicker } from '../../src/auro-datepicker.js'; | ||
|
||
/** | ||
*/ | ||
class AuroDatePickerWCA extends AuroDatePicker {} | ||
|
||
if (!customElements.get("auro-datepicker")) { | ||
customElements.define("auro-datepicker", AuroDatePickerWCA); | ||
} |
Oops, something went wrong.