agentic-ui-libs 0.0.1
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 +113 -0
- package/dist/assets/style.css +1 -0
- package/dist/components/AgentListView.d.ts +9 -0
- package/dist/components/AgentListView.d.ts.map +1 -0
- package/dist/components/AnalyticsChart.d.ts +10 -0
- package/dist/components/AnalyticsChart.d.ts.map +1 -0
- package/dist/components/AnalyticsTable.d.ts +9 -0
- package/dist/components/AnalyticsTable.d.ts.map +1 -0
- package/dist/components/Dashboard.d.ts +14 -0
- package/dist/components/Dashboard.d.ts.map +1 -0
- package/dist/components/DashboardSection.d.ts +12 -0
- package/dist/components/DashboardSection.d.ts.map +1 -0
- package/dist/components/MetricCard.d.ts +10 -0
- package/dist/components/MetricCard.d.ts.map +1 -0
- package/dist/components/ModelListView.d.ts +9 -0
- package/dist/components/ModelListView.d.ts.map +1 -0
- package/dist/components/SectionControls.d.ts +9 -0
- package/dist/components/SectionControls.d.ts.map +1 -0
- package/dist/components/ToolListView.d.ts +9 -0
- package/dist/components/ToolListView.d.ts.map +1 -0
- package/dist/components/ViewRenderer.d.ts +14 -0
- package/dist/components/ViewRenderer.d.ts.map +1 -0
- package/dist/components/ui/Button.d.ts +10 -0
- package/dist/components/ui/Button.d.ts.map +1 -0
- package/dist/components/ui/Card.d.ts +19 -0
- package/dist/components/ui/Card.d.ts.map +1 -0
- package/dist/components/ui/MultiSelect.d.ts +15 -0
- package/dist/components/ui/MultiSelect.d.ts.map +1 -0
- package/dist/components/ui/Portal.d.ts +6 -0
- package/dist/components/ui/Portal.d.ts.map +1 -0
- package/dist/components/ui/Select.d.ts +13 -0
- package/dist/components/ui/Select.d.ts.map +1 -0
- package/dist/components/ui/Skeleton.d.ts +16 -0
- package/dist/components/ui/Skeleton.d.ts.map +1 -0
- package/dist/components/ui/daterangepicker.d.ts +12 -0
- package/dist/components/ui/daterangepicker.d.ts.map +1 -0
- package/dist/data/apiDashboardConfig.d.ts +5 -0
- package/dist/data/apiDashboardConfig.d.ts.map +1 -0
- package/dist/data/apisampleData.d.ts +48 -0
- package/dist/data/apisampleData.d.ts.map +1 -0
- package/dist/data/colorPalettes.d.ts +10 -0
- package/dist/data/colorPalettes.d.ts.map +1 -0
- package/dist/data/enhancedSampleData.d.ts +21 -0
- package/dist/data/enhancedSampleData.d.ts.map +1 -0
- package/dist/data/sampleData.d.ts +6 -0
- package/dist/data/sampleData.d.ts.map +1 -0
- package/dist/index.d.ts +29 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +26945 -0
- package/dist/lib/api-invoker.service.d.ts +29 -0
- package/dist/lib/api-invoker.service.d.ts.map +1 -0
- package/dist/lib/dashboard-api.service.d.ts +109 -0
- package/dist/lib/dashboard-api.service.d.ts.map +1 -0
- package/dist/lib/endpoints.config.d.ts +21 -0
- package/dist/lib/endpoints.config.d.ts.map +1 -0
- package/dist/lib/utils.d.ts +7 -0
- package/dist/lib/utils.d.ts.map +1 -0
- package/dist/types/index.d.ts +459 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/ui-libs.umd.js +259 -0
- package/package.json +69 -0
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agentic-ui-libs",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "A modular, config-driven analytics library for React and Angular applications",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"require": "./dist/ui-libs.umd.js",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
14
|
+
},
|
|
15
|
+
"./styles.css": "./dist/assets/style.css",
|
|
16
|
+
"./dist/assets/*": "./dist/assets/*",
|
|
17
|
+
"./package.json": "./package.json"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"dev": "vite",
|
|
24
|
+
"build": "vite build && tsc -p tsconfig.lib.json",
|
|
25
|
+
"preview": "vite preview",
|
|
26
|
+
"build:lib": "vite build --mode lib",
|
|
27
|
+
"storybook": "storybook dev -p 6006",
|
|
28
|
+
"build-storybook": "storybook build"
|
|
29
|
+
},
|
|
30
|
+
"keywords": [
|
|
31
|
+
"analytics",
|
|
32
|
+
"dashboard",
|
|
33
|
+
"react",
|
|
34
|
+
"angular",
|
|
35
|
+
"charts",
|
|
36
|
+
"modular"
|
|
37
|
+
],
|
|
38
|
+
"author": "Sri Harsha",
|
|
39
|
+
"license": "MIT",
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"class-variance-authority": "^0.7.0",
|
|
42
|
+
"clsx": "^2.0.0",
|
|
43
|
+
"date-fns": "^2.30.0",
|
|
44
|
+
"lucide-react": "^0.294.0",
|
|
45
|
+
"react": ">=16.8.0",
|
|
46
|
+
"react-dom": ">=16.8.0",
|
|
47
|
+
"recharts": "^2.8.0",
|
|
48
|
+
"tailwind-merge": "^2.0.0"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/react": "^18.2.43",
|
|
52
|
+
"@types/react-dom": "^18.2.17",
|
|
53
|
+
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
|
54
|
+
"@typescript-eslint/parser": "^6.14.0",
|
|
55
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
56
|
+
"autoprefixer": "^10.4.16",
|
|
57
|
+
"eslint": "^8.55.0",
|
|
58
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
59
|
+
"eslint-plugin-react-refresh": "^0.4.5",
|
|
60
|
+
"postcss": "^8.4.32",
|
|
61
|
+
"tailwindcss": "^3.3.6",
|
|
62
|
+
"typescript": "^5.2.2",
|
|
63
|
+
"vite": "^5.0.8"
|
|
64
|
+
},
|
|
65
|
+
"peerDependencies": {
|
|
66
|
+
"react": ">=16.8.0",
|
|
67
|
+
"react-dom": ">=16.8.0"
|
|
68
|
+
}
|
|
69
|
+
}
|