@industry-theme/agent-panels 0.1.0
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/LICENSE +21 -0
- package/README.md +536 -0
- package/dist/index.d.ts +17 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/mocks/panelContext.d.ts +24 -0
- package/dist/mocks/panelContext.d.ts.map +1 -0
- package/dist/panels/SkillDetailPanel.d.ts +7 -0
- package/dist/panels/SkillDetailPanel.d.ts.map +1 -0
- package/dist/panels/SkillDetailPanel.stories.d.ts +48 -0
- package/dist/panels/SkillDetailPanel.stories.d.ts.map +1 -0
- package/dist/panels/SkillsLifecycle.stories.d.ts +29 -0
- package/dist/panels/SkillsLifecycle.stories.d.ts.map +1 -0
- package/dist/panels/SkillsListPanel.d.ts +13 -0
- package/dist/panels/SkillsListPanel.d.ts.map +1 -0
- package/dist/panels/SkillsListPanel.stories.d.ts +55 -0
- package/dist/panels/SkillsListPanel.stories.d.ts.map +1 -0
- package/dist/panels/skills/components/SkillCard.d.ts +13 -0
- package/dist/panels/skills/components/SkillCard.d.ts.map +1 -0
- package/dist/panels/skills/hooks/useSkillsData.d.ts +31 -0
- package/dist/panels/skills/hooks/useSkillsData.d.ts.map +1 -0
- package/dist/panels.bundle.css +190 -0
- package/dist/panels.bundle.js +47767 -0
- package/dist/panels.bundle.js.map +1 -0
- package/dist/tools/index.d.ts +2 -0
- package/dist/tools/index.d.ts.map +1 -0
- package/dist/tools.bundle.js +0 -0
- package/dist/types/index.d.ts +7 -0
- package/dist/types/index.d.ts.map +1 -0
- package/package.json +110 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC"}
|
|
File without changes
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Panel Extension Type Definitions
|
|
3
|
+
*
|
|
4
|
+
* Re-exports core types from @principal-ade/panel-framework-core
|
|
5
|
+
*/
|
|
6
|
+
export type { DataSlice, WorkspaceMetadata, RepositoryMetadata, FileTreeSource, ActiveFileSlice, PanelEventType, PanelEvent, PanelEventEmitter, PanelActions, PanelContextValue, PanelComponentProps, PanelMetadata, PanelLifecycleHooks, PanelDefinition, PanelModule, PanelRegistryEntry, PanelLoader, PanelRegistryConfig, PanelTool, PanelToolsMetadata, JsonSchema, PanelEventCallTemplate, } from '@principal-ade/panel-framework-core';
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,YAAY,EAEV,SAAS,EACT,iBAAiB,EACjB,kBAAkB,EAClB,cAAc,EACd,eAAe,EAGf,cAAc,EACd,UAAU,EACV,iBAAiB,EAGjB,YAAY,EACZ,iBAAiB,EACjB,mBAAmB,EAGnB,aAAa,EACb,mBAAmB,EACnB,eAAe,EACf,WAAW,EAGX,kBAAkB,EAClB,WAAW,EACX,mBAAmB,EAGnB,SAAS,EACT,kBAAkB,EAClB,UAAU,EACV,sBAAsB,GACvB,MAAM,qCAAqC,CAAC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@industry-theme/agent-panels",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A collection of panel extensions for displaying and managing agent-related resources",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/panels.bundle.js",
|
|
7
|
+
"module": "dist/panels.bundle.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/panels.bundle.js",
|
|
13
|
+
"require": "./dist/panels.bundle.js",
|
|
14
|
+
"default": "./dist/panels.bundle.js"
|
|
15
|
+
},
|
|
16
|
+
"./tools": {
|
|
17
|
+
"types": "./dist/tools/index.d.ts",
|
|
18
|
+
"import": "./dist/tools.bundle.js",
|
|
19
|
+
"require": "./dist/tools.bundle.js",
|
|
20
|
+
"default": "./dist/tools.bundle.js"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"panel-extension"
|
|
25
|
+
],
|
|
26
|
+
"author": "Your Name",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "bun run clean && bun run build:panel && bun run build:tools && bun run build:types",
|
|
30
|
+
"build:panel": "vite build",
|
|
31
|
+
"build:tools": "bun build ./src/tools/index.ts --outfile ./dist/tools.bundle.js --format esm --target browser",
|
|
32
|
+
"build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly --declaration --declarationMap",
|
|
33
|
+
"dev": "vite build --watch",
|
|
34
|
+
"clean": "rm -rf dist",
|
|
35
|
+
"typecheck": "tsc --noEmit",
|
|
36
|
+
"lint": "eslint . --ext .ts,.tsx",
|
|
37
|
+
"lint:fix": "eslint . --ext .ts,.tsx --fix",
|
|
38
|
+
"format": "prettier --write .",
|
|
39
|
+
"format:check": "prettier --check .",
|
|
40
|
+
"test": "bun test",
|
|
41
|
+
"test:watch": "bun test --watch",
|
|
42
|
+
"storybook": "storybook dev -p 6006",
|
|
43
|
+
"build-storybook": "storybook build"
|
|
44
|
+
},
|
|
45
|
+
"peerDependencies": {
|
|
46
|
+
"react": ">=19.0.0",
|
|
47
|
+
"react-dom": ">=19.0.0"
|
|
48
|
+
},
|
|
49
|
+
"peerDependenciesMeta": {
|
|
50
|
+
"@principal-ade/panel-framework-core": {
|
|
51
|
+
"optional": true
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@principal-ade/industry-theme": "^0.1.3",
|
|
56
|
+
"@principal-ade/panel-framework-core": "^0.1.5",
|
|
57
|
+
"@principal-ade/panel-layouts": "^0.3.16",
|
|
58
|
+
"@principal-ade/utcp-panel-event": "^0.1.0",
|
|
59
|
+
"@principal-ai/repository-abstraction": "^0.4.0",
|
|
60
|
+
"clsx": "^2.1.1",
|
|
61
|
+
"lucide-react": "^0.552.0",
|
|
62
|
+
"themed-markdown": "^0.1.80"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@chromatic-com/storybook": "^4.1.3",
|
|
66
|
+
"@eslint/js": "^9.32.0",
|
|
67
|
+
"@storybook/addon-docs": "10.1.2",
|
|
68
|
+
"@storybook/addon-links": "10.1.2",
|
|
69
|
+
"@storybook/addon-onboarding": "10.1.2",
|
|
70
|
+
"@storybook/react-vite": "10.1.2",
|
|
71
|
+
"@types/bun": "latest",
|
|
72
|
+
"@types/node": "^22.15.26",
|
|
73
|
+
"@types/react": "^19.0.0",
|
|
74
|
+
"@types/react-dom": "^19.0.0",
|
|
75
|
+
"@typescript-eslint/eslint-plugin": "^8.38.0",
|
|
76
|
+
"@typescript-eslint/parser": "^8.38.0",
|
|
77
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
78
|
+
"esbuild": "^0.25.8",
|
|
79
|
+
"eslint": "^9.32.0",
|
|
80
|
+
"eslint-config-prettier": "^10.1.8",
|
|
81
|
+
"eslint-plugin-react": "^7.37.2",
|
|
82
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
83
|
+
"eslint-plugin-storybook": "10.1.2",
|
|
84
|
+
"hast-util-sanitize": "^5.0.2",
|
|
85
|
+
"highlight.js": "^11.11.1",
|
|
86
|
+
"prettier": "^3.6.2",
|
|
87
|
+
"react": "^19.0.0",
|
|
88
|
+
"react-dom": "^19.0.0",
|
|
89
|
+
"react-markdown": "^10.1.0",
|
|
90
|
+
"react-zoom-pan-pinch": "^3.7.0",
|
|
91
|
+
"rehype-highlight": "^7.0.2",
|
|
92
|
+
"rehype-raw": "^7.0.0",
|
|
93
|
+
"rehype-sanitize": "^6.0.0",
|
|
94
|
+
"rehype-slug": "^6.0.0",
|
|
95
|
+
"remark-gfm": "^4.0.1",
|
|
96
|
+
"storybook": "10.1.2",
|
|
97
|
+
"typescript": "^5.0.4",
|
|
98
|
+
"typescript-eslint": "^8.38.0",
|
|
99
|
+
"vite": "^6.0.7"
|
|
100
|
+
},
|
|
101
|
+
"files": [
|
|
102
|
+
"dist",
|
|
103
|
+
"README.md",
|
|
104
|
+
"LICENSE"
|
|
105
|
+
],
|
|
106
|
+
"repository": {
|
|
107
|
+
"type": "git",
|
|
108
|
+
"url": "git+https://github.com/principal-ade/industry-themed-agent-panels.git"
|
|
109
|
+
}
|
|
110
|
+
}
|