Skip to content

Commit 5ec770f

Browse files
authored
Merge pull request #2382 from hashicorp/remove-wiki-content
Remove wiki content
2 parents a6d662d + 653802e commit 5ec770f

32 files changed

+13
-1706
lines changed

.github/pull_request_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ Figma file: [if it applies]
2323
### 👀 Component checklist
2424

2525
- [ ] Percy was checked for any visual regression
26-
- [ ] A changelog entry was added via [Changesets](https://github.com/changesets/changesets) if needed (see [templates here](https://github.com/hashicorp/design-system/blob/main/wiki/Website-Changelog.md#templates-for-npm-packages))
26+
- [ ] A changelog entry was added via [Changesets](https://github.com/changesets/changesets) if needed (see [templates here](https://hashicorp.atlassian.net/wiki/spaces/HDS/pages/3243114706/Changelog+authoring+best+practices#Templates))
2727

2828
:speech_balloon: Please consider using [conventional comments](https://conventionalcomments.org/) when reviewing this PR.

.github/workflows/open-pull-request-for-icon-update.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,6 @@ jobs:
7575
7676
### 👀 Component checklist
7777
78-
- [ ] A changelog entry was added via [Changesets](https://github.com/changesets/changesets) if needed ([instructions here](https://github.com/hashicorp/design-system/blob/main/packages/flight-icons/CONTRIBUTING.md#updating-the-icons-in-flight-icons) / [expected format here](https://github.com/hashicorp/design-system/blob/main/wiki/Website-Changelog.md#new-icons))
78+
- [ ] A changelog entry was added via [Changesets](https://github.com/changesets/changesets) if needed ([instructions here](https://github.com/hashicorp/design-system/blob/main/packages/flight-icons/CONTRIBUTING.md#updating-the-icons-in-flight-icons) / [expected format here](https://hashicorp.atlassian.net/wiki/spaces/HDS/pages/3243114706/Changelog+authoring+best+practices#New-icons))
7979
- [ ] Percy was checked for any visual regression
8080
token: ${{ secrets.PAT_TOKEN }}

packages/components/NEW-COMPONENT-CHECKLIST.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The following should be available as resources for the Project Kickoff.
1111

1212
## Project Kickoff
1313

14-
A project kickoff will be scheduled before the project start date. The kickoff will be used to align on project scope, timelines, and milestones and as a space to discuss any open questions. In attendance should be Design System team leadership, lead Designer and Engineer on the project, and Design/Engineer buddies (if applicable).
14+
A project kickoff will be scheduled before the project start date. The kickoff will be used to align on project scope, timelines, and milestones and as a space to discuss any open questions. In attendance should be Design System team leadership, lead Designer and Engineer on the project, and Design/Engineer buddies (if applicable).
1515

1616
## Design Checklist
1717
The design checklist has 4 primary parts:
@@ -31,18 +31,18 @@ The design process is largely cyclical, so some steps may be repeated until fina
3131
- [ ] change "{Component name}" to the name of the component
3232
- [ ] delete the figma tips frame, if not needed
3333
- [ ] design and build the component, taking into account existing [foundations](https://www.figma.com/file/oQsMzMMnynfPWpMEt91OpH/HDS-Product---Foundations?node-id=2916%3A4) and patterns, as well as the findings from the audit and requirements from the CRD
34-
- artifacts should include:
34+
- artifacts should include:
3535
- component explorations
3636
- examples in context
3737
- built component
3838
- [ ] review with situationally appropriate stakeholders and iterate
39-
- reviewers should include:
39+
- reviewers should include:
4040
- HDS designers and manager
4141
- engineering partner(s)
4242
- a11y SME
4343
- other external stakeholders as defined during the kickoff
4444
- consider also including any key stakeholders
45-
- reviews should include checks for:
45+
- reviews should include checks for:
4646
- alignment to Helios design vision
4747
- ux solution
4848
- fulfillment of requirements from the audit and CRD
@@ -57,7 +57,7 @@ The design process is largely cyclical, so some steps may be repeated until fina
5757
- [ ] request a final branch review from HDS designers
5858
- [ ] sync with your engineering partner
5959
- let them know it's been approved and answer any remaining questions
60-
60+
6161
### Component Testing
6262
- [ ] prepare for testing
6363
- [ ] lock the components
@@ -70,14 +70,14 @@ The design process is largely cyclical, so some steps may be repeated until fina
7070
- [ ] ask key stakeholders to test the component
7171
- depending on the complexity, we usually give them 3-4 days to complete the testing
7272
- [ ] if iterations are needed, work through the process until approved (don't forget to branch!)
73-
73+
7474
### Documentation
7575
- [ ] while the component is being tested, write the documentation
7676
- artifacts should include:
7777
- design guidelines
7878
- specifications
7979
- relevant accessibility details
80-
80+
8181
### Release in Figma
8282
Once key stakeholders have tested the component and iterations are approved, prepare for a final release of the component.
8383

@@ -164,4 +164,4 @@ When ready for review:
164164

165165
- [ ] add situationally appropriate reviewers
166166
- [ ] add instructions for reviewers in your PR, letting them know what kind of review you need
167-
- [ ] add a changelog update via [Changesets](https://github.com/changesets/changesets) if needed using the command `yarn changeset` (in the project root) using the [predefined format](https://github.com/hashicorp/design-system/blob/main/wiki/Website-Changelog.md#templates-for-npm-packages))
167+
- [ ] add a changelog update via [Changesets](https://github.com/changesets/changesets) if needed using the command `yarn changeset` (in the project root) using the [predefined format](https://hashicorp.atlassian.net/wiki/spaces/HDS/pages/3243114706/Changelog+authoring+best+practices#Templates))

showcase/blueprints/hds-component/files/src/components/hds/__name__/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ import Component from '@glimmer/component';
88
export interface Hds<%= classifiedModuleName %>Signature {
99
// The arguments accepted by the component
1010
Args: {};
11-
// Any blocks yielded by the component
11+
// Any blocks yielded by the component
1212
Blocks: {
1313
default: [];
1414
};
15-
// The element to which `...attributes` is applied in the component template
15+
// The element to which `...attributes` is applied in the component template
1616
Element: HTMLDivElement;
1717
}
18-
// More info on types and signatures: https://github.com/hashicorp/design-system/blob/main/wiki/TypeScript-Migration.md
18+
// More info on types and signatures: https://hashicorp.atlassian.net/wiki/spaces/HDS/pages/3245932580/Using+Typescript
1919

2020
export default class Hds<%= classifiedModuleName %>Component extends Component<Hds<%= classifiedModuleName %>Signature> {
2121
// UNCOMMENT THIS IF YOU NEED A CONSTRUCTOR

wiki/Home.md

-1
This file was deleted.

wiki/Infrastructure-Efficiency.md

-41
This file was deleted.

wiki/TypeScript-Migration.md

-89
This file was deleted.

wiki/Website-Analytics.md

-23
This file was deleted.

0 commit comments

Comments
 (0)