@marketrix.ai/widget 4.0.107 → 4.0.109
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/layoutProps.d.ts +4 -4
- package/dist/src/components/blocks/Notifications.d.ts +3 -3
- package/dist/src/context/UIStateContext.d.ts +1 -1
- package/dist/src/hooks/useFocusTrap.d.ts +1 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/sdk/contract.d.ts +2 -2
- package/dist/src/sdk/contracts/activityLogMetadata.d.ts +217 -0
- package/dist/src/sdk/contracts/activityLogVocabulary.d.ts +66 -0
- package/dist/src/sdk/contracts/entities.d.ts +7 -59
- package/dist/src/sdk/contracts/widget.d.ts +5 -5
- package/dist/src/sdk/index.d.ts +2 -2
- package/dist/src/services/StorageService.d.ts +6 -0
- package/dist/src/test/fixtures.d.ts +2 -0
- package/dist/src/types/index.d.ts +5 -5
- package/dist/widget.mjs +64 -64
- package/package.json +2 -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.109",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"packageManager": "bun@1.4.2",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"start": "vite",
|
|
25
25
|
"build": "vite build",
|
|
26
26
|
"ci": "bun run code:check && bun run test && bun run build && bun run bundle:check",
|
|
27
|
-
"lint": "eslint . --max-warnings
|
|
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",
|