issue-pane 3.0.1-d28c27fa → 3.0.1-eb7e54ed
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/package.json +1 -9
- package/declarations.d.ts +0 -12
- package/index.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "issue-pane",
|
|
3
|
-
"version": "3.0.1-
|
|
3
|
+
"version": "3.0.1-eb7e54ed",
|
|
4
4
|
"description": "Solid-compatible Panes: issue editor",
|
|
5
5
|
"main": "lib/issue-pane.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -9,17 +9,9 @@
|
|
|
9
9
|
],
|
|
10
10
|
"files": [
|
|
11
11
|
"lib/",
|
|
12
|
-
"index.d.ts",
|
|
13
|
-
"declarations.d.ts",
|
|
14
12
|
"README.md",
|
|
15
13
|
"LICENSE"
|
|
16
14
|
],
|
|
17
|
-
"exports": {
|
|
18
|
-
".": {
|
|
19
|
-
"types": "./index.d.ts",
|
|
20
|
-
"default": "./lib/issue-pane.js"
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
15
|
"scripts": {
|
|
24
16
|
"clean": "rm -rf lib",
|
|
25
17
|
"build": "npm run clean && npm run build-dist",
|
package/declarations.d.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
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
DELETED