issue-pane 3.0.0 → 3.0.1-0edf4ba8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -1
- package/lib/issue-pane.js +2601 -0
- package/lib/issue-pane.js.map +1 -0
- package/lib/issue-pane.min.js +2 -0
- package/lib/issue-pane.min.js.map +1 -0
- package/lib/styles/board.css +42 -0
- package/lib/styles/csvButton.css +0 -0
- package/lib/styles/issue.css +171 -0
- package/lib/styles/issuePane.css +70 -0
- package/lib/styles/newIssue.css +13 -0
- package/lib/styles/newTracker.css +3 -0
- package/lib/styles/utilites.css +4 -0
- package/package.json +32 -23
- package/dist/board.js +0 -1
- package/dist/csvButton.js +0 -1
- package/dist/issue.js +0 -1
- package/dist/issuePane.js +0 -1
- package/dist/newIssue.js +0 -1
- package/dist/newTracker.js +0 -1
package/README.md
CHANGED
|
@@ -5,6 +5,16 @@ At the moment to start a tracker you have to configure the config file in turtle
|
|
|
5
5
|
|
|
6
6
|
Would be good create a mintNew method to allow new ones to be created in the UI.
|
|
7
7
|
|
|
8
|
+
# Development Setup
|
|
9
|
+
|
|
10
|
+
This project uses Node `20.19.2` (see `.nvmrc`).
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
nvm use
|
|
14
|
+
npm install
|
|
15
|
+
npm run start
|
|
16
|
+
```
|
|
17
|
+
|
|
8
18
|
# Testing Guide
|
|
9
19
|
|
|
10
20
|
## Running Tests
|
|
@@ -17,4 +27,16 @@ npm run lint
|
|
|
17
27
|
|
|
18
28
|
# Auto-fix linting issues
|
|
19
29
|
npm run lint-fix
|
|
20
|
-
```
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Genertive AI usage
|
|
33
|
+
The SolidOS team is using GitHub Copilot integrated in Visual Studio Code.
|
|
34
|
+
We have added comments in the code to make it explicit which parts are 100% written by AI.
|
|
35
|
+
Example:
|
|
36
|
+
* Some code was generated by the GPT-5.3-Codex model in GitHub Copilot based on the following prompt:
|
|
37
|
+
* can you style my table and make it look nice by chance?
|
|
38
|
+
* the name of the file index.ttl in a new issue was over to the right now it's on the left can you fix that?
|
|
39
|
+
* I want this .trackerIssuePaneNewIssueButtonText to sit to the right side of the plus icon on the newIssueButton
|
|
40
|
+
* on newIssue i need the close button to be at the top right please.
|
|
41
|
+
* Could you move the color changes after // @@refreshTree into css?
|
|
42
|
+
* can you handle the visibility in exposeOverlay with css?
|