Skip to content

Commit

Permalink
Merge branch 'develop' into dw-update-svg-sprite-compile
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisdano committed Oct 3, 2022
2 parents 02bbe76 358679d commit 9c7822c
Show file tree
Hide file tree
Showing 2,034 changed files with 12,670 additions and 13,801 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 6,7 @@ orbs:
references:
container: &container
docker:
- image: circleci/node:16.13.0-browsers
- image: cimg/node:16.15.0-browsers
environment:
CHROME_PATH: $(which google-chrome-stable)

Expand Down
32 changes: 0 additions & 32 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

79 changes: 79 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 1,79 @@
name: Bug Report 🐞
description: Report a bug and help USWDS improve.
title: "USWDS - Bug: [YOUR TITLE]"
labels: ['Type: Bug','Status: Triage','Needs: Confirmation']
body:
- type: textarea
id: problem
attributes:
label: Describe the bug
description: Add a clear and concise description of the bug. Let us know if it impacts major or minor functionality and if you have workaround.
validations:
required: true
- type: textarea
id: reproduce
attributes:
label: Steps to reproduce the bug
description: Describe how to reproduce this issue.
placeholder: |
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error...
validations:
required: true
- type: textarea
id: expectation
attributes:
label: Expected Behavior
description: Add a clear and concise description of what you expected to happen.
validations:
required: true
- type: textarea
id: code
attributes:
label: Related code
description: If available, include relevant code snippets or a link to a demo of the bug.
validations:
required: false
- type: textarea
id: screenshots
attributes:
label: Screenshots
description: Add screenshots to help provide context, if applicable.
validations:
required: false
- type: textarea
id: system
attributes:
label: System setup
description: Provide your system details. Be sure to include your USWDS version, device, operating system, and browser (with version).
placeholder: |
- USWDS version:
- Device:
- Operating system:
- Browser and version:
validations:
required: false
- type: textarea
id: context
attributes:
label: Additional context
description: Add any other context about the problem.
validations:
required: false
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: Please confirm the following
options:
- label:
I agree to follow this project's [Code of
Conduct](https://designsystem.digital.gov/about/community/#community-conduct).
required: true
- label:
I checked the [current
issues](https://github.com/uswds/uswds/issues?q=is:issue is:open label:"Type: Bug") for
duplicate bug reports.
required: true
20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

52 changes: 52 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 1,52 @@
name: Feature Request 💡
description:
Suggest a new idea for the design system.
title: 'USWDS - Feature: [YOUR TITLE]'
labels: ['Type: Feature Request','Status: Triage']
body:
- type: markdown
attributes:
value: '## Feature Request 💡'
- type: textarea
id: problem
attributes:
label: Is your feature request related to a problem? Please describe.
description: "Provide a clear and concise description of what the problem is. Ex. I'm always frustrated when [...]"
validations:
required: true
- type: textarea
id: solution
attributes:
label: "Describe the solution you'd like"
description: "Provide a clear and concise description of what you want to happen."
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: "Describe alternatives you've considered"
description: "Provide a clear and concise description of any alternative solutions or features you've considered."
validations:
required: false
- type: textarea
id: context
attributes:
label: Additional context
description: "Add any other context or screenshots about the feature request."
validations:
required: false
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: Please confirm the following
options:
- label:
I agree to follow this project's [Code of
Conduct](https://designsystem.digital.gov/about/community/#community-conduct).
required: true
- label:
I checked the [current
issues](https://github.com/uswds/uswds/issues?q=is:issue is:open label:"Type: Feature Request") for
duplicate feature requests.
required: true
16 changes: 16 additions & 0 deletions .github/workflows/add-to-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 1,16 @@
name: Add all issues to project board

on:
issues:
types:
- opened

jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
project-url: https://github.com/orgs/uswds/projects/8
github-token: ${{ secrets.ADD_TO_PROJECT }}
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 27,3 @@ src/stylesheets/lib

# ignore sassdoc build
sassdoc/

# ignore gulp-generated svg-sprite
src/img/sprite.svg
packages/usa-icon/src/img/sprite.svg
src/img/symbol
4 changes: 2 additions & 2 deletions .storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 38,6 @@ module.exports = {
"@storybook/addon-links",
"@storybook/addon-essentials",
"@storybook/addon-a11y",
"@whitespace/storybook-addon-html",
],
staticDirs: ['../dist'],
webpackFinal: async (config, { configType }) => {
Expand Down Expand Up @@ -100,9 99,10 @@ module.exports = {
sourceMap: true,
sassOptions: {
includePaths: [
"./packages",
"./packages",
"./node_modules/@uswds"
],
implementation: require("sass-embedded")
},
},
},
Expand Down
4 changes: 3 additions & 1 deletion .storybook/preview.js
Original file line number Diff line number Diff line change
@@ -1,4 1,6 @@
import "../dist/js/uswds.min.js";
// import "../dist/js/uswds.min.js";

import "../packages/uswds-core/src/js/start";

export const parameters = {
actions: { argTypesRegex: "^on[A-Z].*" },
Expand Down
Loading

0 comments on commit 9c7822c

Please sign in to comment.