@arbor-education/ask-arbor-chat-panel 1.0.2 → 1.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/README.md +105 -30
- package/dist/index.cjs +21 -21
- package/dist/index.d.ts +13 -2
- package/dist/index.js +593 -558
- package/dist/style.css +1 -1
- package/dist-iife/ask-arbor-slideover.js +975 -0
- package/dist-iife/ask-arbor-widget.js +975 -0
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arbor-education/ask-arbor-chat-panel",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Standalone ChatPanel component — Arbor AI chat interface with no arbor-fe ecosystem dependencies",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -24,13 +24,15 @@
|
|
|
24
24
|
"./style.css": "./dist/style.css"
|
|
25
25
|
},
|
|
26
26
|
"files": [
|
|
27
|
-
"dist"
|
|
27
|
+
"dist",
|
|
28
|
+
"dist-iife"
|
|
28
29
|
],
|
|
29
30
|
"scripts": {
|
|
30
31
|
"build": "vite build",
|
|
31
|
-
"prepublishOnly": "yarn build",
|
|
32
|
-
"build:
|
|
33
|
-
"build:
|
|
32
|
+
"prepublishOnly": "yarn build:all",
|
|
33
|
+
"build:slideover": "vite build --config vite.widget.config.ts",
|
|
34
|
+
"build:widget": "vite build --config vite.panel.config.ts",
|
|
35
|
+
"build:all": "yarn build && yarn build:slideover && yarn build:widget",
|
|
34
36
|
"build:demo": "node scripts/build-demo.js",
|
|
35
37
|
"demo": "node demo/serve.mjs",
|
|
36
38
|
"watch:widget": "vite build --config vite.widget.config.ts --watch",
|