@marketrix.ai/widget 3.8.444 → 3.8.445
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/Avatar.d.ts +3 -2
- package/dist/src/components/base/Button.d.ts +3 -2
- package/dist/src/components/base/Icon.d.ts +3 -2
- package/dist/src/components/base/IconButton.d.ts +3 -2
- package/dist/src/components/base/Spinner.d.ts +3 -2
- package/dist/src/components/base/Stack.d.ts +3 -3
- package/dist/src/components/base/Text.d.ts +3 -2
- package/dist/src/components/blocks/ChatInput.d.ts +2 -1
- package/dist/src/sdk/contracts/common.d.ts +3 -3
- package/dist/src/sdk/contracts/entities.d.ts +1 -1
- package/dist/src/services/ConfigManager.d.ts +0 -2
- package/dist/src/services/StorageService.d.ts +0 -5
- package/dist/src/utils/bootstrap.d.ts +1 -1
- package/dist/widget.mjs +61 -61
- package/dist/widget.mjs.map +1 -1
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marketrix.ai/widget",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.445",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "./dist/widget.mjs",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"tag": "bash scripts/release.sh",
|
|
22
22
|
"start": "vite",
|
|
23
23
|
"build": "vite build",
|
|
24
|
+
"ci": "npm run type-check && npm run lint:check && npm run build && npm run format:check && npm run test:run && npm run visual:check && npm run a11y:check && npm run bundle:check",
|
|
24
25
|
"lint": "eslint . --ext .ts,.tsx --max-warnings 200 --fix",
|
|
25
26
|
"lint:check": "eslint . --ext .ts,.tsx --max-warnings 0",
|
|
26
27
|
"check": "tsc --noEmit",
|
|
@@ -76,7 +77,6 @@
|
|
|
76
77
|
"terser": "^5.49.2",
|
|
77
78
|
"typescript": "^6.0.3",
|
|
78
79
|
"vite": "^8.2.0",
|
|
79
|
-
"vite-plugin-css-injected-by-js": "^5.0.2",
|
|
80
80
|
"vitest": "^4.1.5",
|
|
81
81
|
"vitest-axe": "^0.1.0"
|
|
82
82
|
}
|