@marketrix.ai/widget 4.0.123 → 4.0.125
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/src/components/base/Flex.d.ts +1 -1
- package/dist/src/components/base/Surface.d.ts +6 -0
- package/dist/src/components/blocks/WidgetFab.d.ts +5 -2
- package/dist/src/components/chat/MessageItem.d.ts +1 -1
- package/dist/src/context/ChatContext.d.ts +6 -0
- package/dist/src/context/UIStateContext.d.ts +6 -8
- package/dist/src/context/sseReducer.d.ts +2 -2
- package/dist/src/design-system/component-tokens.d.ts +5 -0
- package/dist/src/design-system/semantic-tokens.d.ts +9 -0
- package/dist/src/hooks/useLatest.d.ts +1 -0
- package/dist/src/hooks/useWidget.d.ts +6 -1
- package/dist/src/index.d.ts +3 -2
- package/dist/src/services/BrowserToolService.d.ts +4 -0
- package/dist/src/services/ChatService.d.ts +2 -2
- package/dist/src/services/ShowModeService.d.ts +6 -0
- package/dist/src/services/StorageService.d.ts +9 -4
- package/dist/src/services/StreamClient.d.ts +5 -0
- package/dist/src/types/index.d.ts +4 -3
- package/dist/src/utils/chat.d.ts +8 -3
- package/dist/src/utils/color.d.ts +12 -6
- package/dist/src/utils/validation.d.ts +2 -2
- package/dist/widget.mjs +64 -64
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marketrix.ai/widget",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.125",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"packageManager": "bun@1.4.2",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -23,13 +23,14 @@
|
|
|
23
23
|
"tag": "bash scripts/release.sh",
|
|
24
24
|
"start": "vite",
|
|
25
25
|
"build": "vite build",
|
|
26
|
-
"ci": "bun run code:check && bun run build && bun run test && bun run bundle:check",
|
|
26
|
+
"ci": "bun run code:check && bun run build && bun run test && bun run bundle:check && bun run check:served",
|
|
27
27
|
"lint": "eslint . --max-warnings 0 --fix",
|
|
28
28
|
"type-check": "tsc --noEmit",
|
|
29
29
|
"test": "bun test --isolate",
|
|
30
30
|
"test:watch": "bun test --watch --isolate",
|
|
31
31
|
"test:coverage": "bun test --coverage --isolate",
|
|
32
32
|
"bundle:check": "bun scripts/bundle-check.mjs",
|
|
33
|
+
"check:served": "bun run scripts/checkServed.ts",
|
|
33
34
|
"code:fix": "eslint . --fix && prettier --write .",
|
|
34
35
|
"code:check": "tsc --noEmit && eslint . --max-warnings 0 && prettier --check ."
|
|
35
36
|
},
|