@almadar/ui 4.43.5 → 4.44.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/dist/avl/index.cjs +10254 -10876
- package/dist/avl/index.js +12781 -13415
- package/dist/components/index.cjs +16019 -21200
- package/dist/components/index.js +15336 -20523
- package/dist/components/molecules/index.d.ts +10 -0
- package/dist/components/organisms/game/three/index.cjs +10 -54
- package/dist/components/organisms/game/three/index.js +7 -51
- package/dist/components/organisms/index.d.ts +1 -0
- package/dist/context/index.cjs +2 -50
- package/dist/context/index.js +1 -49
- package/dist/docs/index.cjs +12 -56
- package/dist/docs/index.js +7 -51
- package/dist/hooks/index.cjs +11 -55
- package/dist/hooks/index.js +7 -51
- package/dist/lib/index.cjs +2 -57
- package/dist/lib/index.d.ts +0 -1
- package/dist/lib/index.js +2 -55
- package/dist/marketing/index.cjs +12 -56
- package/dist/marketing/index.js +7 -51
- package/dist/providers/index.cjs +3795 -9029
- package/dist/providers/index.js +2961 -8195
- package/dist/runtime/index.cjs +9733 -13103
- package/dist/runtime/index.js +4574 -7944
- package/dist/runtime/ui/slot-types.d.ts +1 -1
- package/package.json +4 -3
- package/dist/lib/logger.d.ts +0 -16
|
@@ -18,7 +18,7 @@ import type { PatternConfig, EventSource, ResolvedTrait } from '@almadar/core';
|
|
|
18
18
|
* lived in `SlotsContext.tsx`; consolidated here so consumers don't
|
|
19
19
|
* depend on the now-removed React provider.
|
|
20
20
|
*/
|
|
21
|
-
export declare const slotLog: import("
|
|
21
|
+
export declare const slotLog: import("@almadar/logger").Logger;
|
|
22
22
|
/**
|
|
23
23
|
* Stable per-object id used by slot-render logs to compare entity
|
|
24
24
|
* references across renders (e.g. spotting the form-reset bug where
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/ui",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.44.0",
|
|
4
4
|
"description": "React UI components, hooks, and providers for Almadar",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
@@ -129,10 +129,11 @@
|
|
|
129
129
|
"typecheck": "tsc --noEmit"
|
|
130
130
|
},
|
|
131
131
|
"dependencies": {
|
|
132
|
-
"@almadar/core": ">=7.
|
|
132
|
+
"@almadar/core": ">=7.13.0",
|
|
133
133
|
"@almadar/evaluator": ">=2.9.2",
|
|
134
|
+
"@almadar/logger": ">=1.1.0",
|
|
134
135
|
"@almadar/patterns": "^2.26.0",
|
|
135
|
-
"@almadar/runtime": "
|
|
136
|
+
"@almadar/runtime": ">=6.4.0",
|
|
136
137
|
"@almadar/std": ">=6.4.1",
|
|
137
138
|
"@almadar/syntax": ">=1.3.1",
|
|
138
139
|
"@xyflow/react": "12.10.1",
|
package/dist/lib/logger.d.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Almadar Structured Logger
|
|
3
|
-
*
|
|
4
|
-
* Namespace-based logging with level gating and correlation IDs.
|
|
5
|
-
* Pure TypeScript, zero React dependencies. Works in Node.js, Vite, and browser.
|
|
6
|
-
*
|
|
7
|
-
* @packageDocumentation
|
|
8
|
-
*/
|
|
9
|
-
export interface Logger {
|
|
10
|
-
debug: (msg: string, data?: Record<string, unknown>, cid?: string) => void;
|
|
11
|
-
info: (msg: string, data?: Record<string, unknown>, cid?: string) => void;
|
|
12
|
-
warn: (msg: string, data?: Record<string, unknown>, cid?: string) => void;
|
|
13
|
-
error: (msg: string, data?: Record<string, unknown>, cid?: string) => void;
|
|
14
|
-
}
|
|
15
|
-
export declare function createLogger(namespace: string): Logger;
|
|
16
|
-
export declare function generateCorrelationId(): string;
|