agentic-ui-libs 1.0.0-beta.3 → 1.0.0-beta.4
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/dist/assets/style.css +1432 -3
- package/dist/features/md-editor/MDEditor.d.ts +5 -0
- package/dist/features/md-editor/MDEditor.d.ts.map +1 -0
- package/dist/features/md-editor/components/AIContextMenu.d.ts +10 -0
- package/dist/features/md-editor/components/AIContextMenu.d.ts.map +1 -0
- package/dist/features/md-editor/components/AIRefinePanel.d.ts +5 -0
- package/dist/features/md-editor/components/AIRefinePanel.d.ts.map +1 -0
- package/dist/features/md-editor/components/DragHandle.d.ts +8 -0
- package/dist/features/md-editor/components/DragHandle.d.ts.map +1 -0
- package/dist/features/md-editor/components/InlineToolbar.d.ts +15 -0
- package/dist/features/md-editor/components/InlineToolbar.d.ts.map +1 -0
- package/dist/features/md-editor/components/MentionChip.d.ts +12 -0
- package/dist/features/md-editor/components/MentionChip.d.ts.map +1 -0
- package/dist/features/md-editor/components/SlashMenu.d.ts +15 -0
- package/dist/features/md-editor/components/SlashMenu.d.ts.map +1 -0
- package/dist/features/md-editor/components/TableToolbar.d.ts +9 -0
- package/dist/features/md-editor/components/TableToolbar.d.ts.map +1 -0
- package/dist/features/md-editor/components/VariableChip.d.ts +12 -0
- package/dist/features/md-editor/components/VariableChip.d.ts.map +1 -0
- package/dist/features/md-editor/components/VariableMenu.d.ts +19 -0
- package/dist/features/md-editor/components/VariableMenu.d.ts.map +1 -0
- package/dist/features/md-editor/components/index.d.ts +9 -0
- package/dist/features/md-editor/components/index.d.ts.map +1 -0
- package/dist/features/md-editor/extensions/AIRefineExtension.d.ts +20 -0
- package/dist/features/md-editor/extensions/AIRefineExtension.d.ts.map +1 -0
- package/dist/features/md-editor/extensions/MentionChip.d.ts +22 -0
- package/dist/features/md-editor/extensions/MentionChip.d.ts.map +1 -0
- package/dist/features/md-editor/extensions/SlashCommand.d.ts +19 -0
- package/dist/features/md-editor/extensions/SlashCommand.d.ts.map +1 -0
- package/dist/features/md-editor/extensions/VariableChip.d.ts +21 -0
- package/dist/features/md-editor/extensions/VariableChip.d.ts.map +1 -0
- package/dist/features/md-editor/extensions/index.d.ts +4 -0
- package/dist/features/md-editor/extensions/index.d.ts.map +1 -0
- package/dist/features/md-editor/index.d.ts +9 -0
- package/dist/features/md-editor/index.d.ts.map +1 -0
- package/dist/features/md-editor/types.d.ts +346 -0
- package/dist/features/md-editor/types.d.ts.map +1 -0
- package/dist/features/md-editor/utils/index.d.ts +2 -0
- package/dist/features/md-editor/utils/index.d.ts.map +1 -0
- package/dist/features/md-editor/utils/markdown.d.ts +19 -0
- package/dist/features/md-editor/utils/markdown.d.ts.map +1 -0
- package/dist/features/prompt-editor/types.d.ts +1 -0
- package/dist/features/prompt-editor/types.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +32686 -1307
- package/dist/ui-libs.umd.js +33581 -2202
- package/package.json +26 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-ui-libs",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A modular, config-driven analytics library for React and Angular applications",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -32,6 +32,11 @@
|
|
|
32
32
|
"require": "./dist/features/prompt-editor/index.js",
|
|
33
33
|
"types": "./dist/features/prompt-editor/index.d.ts"
|
|
34
34
|
},
|
|
35
|
+
"./md-editor": {
|
|
36
|
+
"import": "./dist/features/md-editor/index.js",
|
|
37
|
+
"require": "./dist/features/md-editor/index.js",
|
|
38
|
+
"types": "./dist/features/md-editor/index.d.ts"
|
|
39
|
+
},
|
|
35
40
|
"./styles.css": "./dist/assets/style.css",
|
|
36
41
|
"./dist/assets/*": "./dist/assets/*",
|
|
37
42
|
"./package.json": "./package.json"
|
|
@@ -41,7 +46,8 @@
|
|
|
41
46
|
],
|
|
42
47
|
"scripts": {
|
|
43
48
|
"dev": "vite",
|
|
44
|
-
"dev:prompt-editor": "vite src/example/prompteditor.html",
|
|
49
|
+
"dev:prompt-editor": "vite --open /src/example/prompteditor.html",
|
|
50
|
+
"dev:md-editor": "vite --open /src/example/mdeditor.html",
|
|
45
51
|
"dev:watch": "node scripts/watch-and-sync.cjs",
|
|
46
52
|
"build": "vite build && tsc -p tsconfig.lib.json",
|
|
47
53
|
"build:sync": "npm run build && node scripts/dev-sync.cjs",
|
|
@@ -66,19 +72,36 @@
|
|
|
66
72
|
"author": "Sri Harsha",
|
|
67
73
|
"license": "MIT",
|
|
68
74
|
"dependencies": {
|
|
75
|
+
"@tiptap/core": "^2.4.0",
|
|
76
|
+
"@tiptap/extension-bubble-menu": "^2.4.0",
|
|
77
|
+
"@tiptap/extension-highlight": "^3.11.1",
|
|
78
|
+
"@tiptap/extension-link": "^2.4.0",
|
|
79
|
+
"@tiptap/extension-placeholder": "^2.4.0",
|
|
80
|
+
"@tiptap/extension-table": "^2.4.0",
|
|
81
|
+
"@tiptap/extension-table-cell": "^2.4.0",
|
|
82
|
+
"@tiptap/extension-table-header": "^2.4.0",
|
|
83
|
+
"@tiptap/extension-table-row": "^2.4.0",
|
|
84
|
+
"@tiptap/extension-underline": "^2.4.0",
|
|
85
|
+
"@tiptap/pm": "^2.4.0",
|
|
86
|
+
"@tiptap/react": "^2.4.0",
|
|
87
|
+
"@tiptap/starter-kit": "^2.4.0",
|
|
88
|
+
"@tiptap/suggestion": "^2.4.0",
|
|
69
89
|
"class-variance-authority": "^0.7.0",
|
|
70
90
|
"clsx": "^2.0.0",
|
|
71
91
|
"date-fns": "^2.30.0",
|
|
72
92
|
"lucide-react": "^0.294.0",
|
|
73
93
|
"react": "^18.2.0",
|
|
74
94
|
"react-dom": "^18.2.0",
|
|
95
|
+
"react-router-dom": "^7.9.6",
|
|
75
96
|
"recharts": "^2.8.0",
|
|
76
97
|
"rxjs": "^7.8.1",
|
|
77
|
-
"tailwind-merge": "^2.0.0"
|
|
98
|
+
"tailwind-merge": "^2.0.0",
|
|
99
|
+
"tippy.js": "^6.3.7"
|
|
78
100
|
},
|
|
79
101
|
"devDependencies": {
|
|
80
102
|
"@types/react": "^18.2.43",
|
|
81
103
|
"@types/react-dom": "^18.2.17",
|
|
104
|
+
"@types/react-router-dom": "^5.3.3",
|
|
82
105
|
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
|
83
106
|
"@typescript-eslint/parser": "^6.14.0",
|
|
84
107
|
"@vitejs/plugin-react": "^4.2.1",
|