issue-pane 3.0.1-9c24db98 → 3.0.1-d28c27fa
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 +10 -0
- package/declarations.d.ts +12 -0
- package/index.d.ts +2 -0
- package/lib/issue-pane.js +2522 -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 +148 -0
- package/lib/styles/issuePane.css +65 -0
- package/lib/styles/newIssue.css +13 -0
- package/lib/styles/newTracker.css +3 -0
- package/package.json +23 -6
- 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
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export interface PaneDefinition {
|
|
2
|
+
icon: string
|
|
3
|
+
name: string
|
|
4
|
+
audience: unknown[]
|
|
5
|
+
label: (subject: unknown, context: unknown) => string | null
|
|
6
|
+
render: (subject: unknown, context: { dom: Document }) => HTMLElement
|
|
7
|
+
mintClass?: unknown
|
|
8
|
+
mintNew?: (context: unknown, options: unknown) => Promise<unknown>
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
declare const issuePane: PaneDefinition
|
|
12
|
+
export default issuePane
|
package/index.d.ts
ADDED