Skip to content

time to update things #28

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
name: Bug report
about: Create a report to help us improve
title: 'Found a bug'
labels: 'bug'
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**

- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**

- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Feature Request
about: Create a feature request to help us improve
title: 'Feature Request'
labels: 'feature-request'
assignees: ''

---

**Description:**
A clear and concise description of the feature you are proposing.

**Use Case:**
Please provide an example of how this feature would be used or why it is needed.

**Additional Information:**
Any additional information or context that may be helpful.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/idea_proposal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Idea Proposal
about: Create an idea to help us improve
title: 'Eureka!'
labels: 'idea-proposal'
assignees: ''

---

**Description:**
A clear and concise description of your idea or proposal.

**Benefits:**
Explain the potential benefits or improvements that would result from implementing this idea.

**Implementation Details:**
If you have any specific details or suggestions on how to implement this idea, please provide them here.

**Additional Information:**
Any additional information or context that may be helpful.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/maintenance_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Maintenance Request
about: Create a maintenance request to help us improve
title: 'Maintenance needed!'
labels: 'maintenance-request'
assignees: ''

---

**Description:**
A clear and concise description of the maintenance request.

**Affected Component:**
Specify the component or area of the project that requires maintenance.

**Current Behavior:**
A description of the current behavior or issue that needs attention.

**Suggested Solution:**
If you have any suggestions for how to address the maintenance request, please describe them here.
18 changes: 18 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
### What is this and why does it exist?

Provide a description of what is being changed, and why. Reference any relevant issues, link to project plans or docs, provide screenshots, etc. Anything necessary to explain and justify what's happening.

### Testing instructions

Please provide a thorough explanation of how to test these changes.

### Screenshots and GIFs

If applicable, provide screenshots and/or GIFs to demonstrate the changes.

### Checklist

- [ ] I have tested these changes
- [ ] I have updated the documentation
- [ ] I have updated the tests
- [ ] I have updated the changelog
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ node_modules/
*.map
*.yml
.npmignore
.DS_Store
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# A simple React inline editing component

[![codecov](https://codecov.io/gh/iamwill123/react-inline-input-edit/branch/main/graph/badge.svg?token=ABC123)](https://codecov.io/gh/iamwill123/react-inline-input-edit) [![test](https://github.com/iamwill123/react-inline-input-edit/actions/workflows/run-unit-tests.yml/badge.svg)](https://github.com/iamwill123/react-inline-input-edit/actions/workflows/run-unit-tests.yml) [![License: MIT](https://img.shields.io/badge/License-MIT-red.svg)](https://opensource.org/licenses/MIT) ![NPM Downloads](https://img.shields.io/npm/dw/react-inline-input-edit)

## Reasoning

This npm package is originally adapted from <https://github.com/bfischer/react-inline-editing>. I found the package a few days ago and is super useful but un-maintained? Mainly needed it to work with TypeScript + ReactJS. The below README desc is adapted from the originator's README.
Expand Down
Loading