-
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.
perf: update to Lit2.0, TS support, issue templates, component regist…
…ration extension and update to Node 18+ Change to be committed: modified: package-lock.json modified: package.json modified: README.md modified: .github/settings.yml modified: .github/workflows/testPublish.yml modified: .husky/pre-commit modified: scripts/staticStyles-template.js modified: src/auro-dropdown.js deleted: .github/ISSUE_TEMPLATE/bug_report.md deleted: .github/ISSUE_TEMPLATE/feature_request.md deleted: .github/ISSUE_TEMPLATE/general-support.md deleted: packageScripts/postinstall.js new file: tsconfig.json new file: .github/ISSUE_TEMPLATE/bug_report.yml new file: .github/ISSUE_TEMPLATE/feature_request.yml new file: .github/ISSUE_TEMPLATE/general-support.yml new file: packageScripts/postinstall.mjs
- Loading branch information
1 parent
00fc103
commit 8432071
Showing
16 changed files
with
15,636 additions
and
12,620 deletions.
There are no files selected for viewing
This file was deleted.
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Bug report | ||
description: Create a report to help us improve | ||
title: '[issue summary] Please verify version before submitting new issue' | ||
labels: | ||
- 'Type: Bug' | ||
- not-reviewed | ||
- auro-dropdown | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Please verify the version of auro-dropdown you have installed | ||
- type: markdown | ||
attributes: | ||
value: > | ||
[![See it on | ||
NPM!](https://img.shields.io/npm/v/@alaskaairux/auro-dropdown?style=for-the-badge&color=orange)](https://www.npmjs.com/package/@alaskaairux/auro-dropdown) | ||
- type: textarea | ||
id: details | ||
attributes: | ||
label: Please describe the bug | ||
description: List out the steps to reproduce the behavior | ||
placeholder: 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error | ||
- type: dropdown | ||
id: repro | ||
attributes: | ||
label: Reproducing the error | ||
description: Are you able to reproduce this issue on the [Auro docsite](https://auro.alaskaair.com/)? | ||
options: | ||
- This issue is reproducible on the Auro docsite | ||
- This issue cannot be reproduced on the Auro docsite | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected behavior | ||
description: Please add a clear and concise description of what you expected to | ||
happen. | ||
- type: dropdown | ||
id: browsers | ||
attributes: | ||
label: What browsers are you seeing the problem on? | ||
multiple: true | ||
options: | ||
- Firefox | ||
- Chrome | ||
- Safari | ||
- Microsoft Edge | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here. |
This file was deleted.
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project | ||
title: 'auro-dropdown: [feature summary]' | ||
labels: | ||
- 'Type: Feature' | ||
- not-reviewed | ||
- auro-dropdown | ||
body: | ||
- type: textarea | ||
id: request | ||
attributes: | ||
label: Is your feature request related to a problem? Please describe. | ||
description: A clear and concise description of what the problem is. | ||
placeholder: Ex. I'm always frustrated when [...] | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Describe the solution you'd like | ||
description: A clear and concise description of what you want to happen. | ||
- type: textarea | ||
id: alternative | ||
attributes: | ||
label: Describe alternatives you've considered | ||
description: A clear and concise description of any alternative solutions or features you've considered. | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context or screenshots about the feature request here. |
This file was deleted.
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: General support | ||
description: Suggestions that are not related to bugs or new features | ||
title: 'auro-dropdown: [issue]' | ||
labels: | ||
- 'Type: Question' | ||
- 'Type: Feature' | ||
- not-reviewed | ||
- auro-dropdown | ||
body: | ||
- type: textarea | ||
id: request | ||
attributes: | ||
label: General Support Request | ||
description: A clear and concise description of what you are interested in seeing. | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Possible Solution | ||
description: Not obligatory, but suggest an idea of how to implement the requested update. | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context or screenshots about the feature request here. |
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,4 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
./node_modules/.bin/npm-run-all preCommit test linters postinstall | ||
npm test |
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.