@almadar/ui 2.1.11 → 2.2.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/{chunk-7NEWMNNU.js → chunk-3JGAROCW.js} +2 -0
- package/dist/{chunk-6OACETQB.js → chunk-42WRQA7T.js} +2 -2
- package/dist/{chunk-CTNDYHXY.js → chunk-CC3UOKHI.js} +222 -260
- package/dist/{chunk-BTXQJGFB.js → chunk-DKQN5FVU.js} +1 -1
- package/dist/{chunk-JLEMVREZ.js → chunk-GOZKH7QW.js} +6 -3
- package/dist/chunk-TSETXL2E.js +103 -0
- package/dist/components/index.d.ts +15 -12
- package/dist/components/index.js +126 -134
- package/dist/components/organisms/game/three/index.d.ts +7 -1
- package/dist/context/index.d.ts +2 -2
- package/dist/context/index.js +3 -3
- package/dist/hooks/index.d.ts +1 -1
- package/dist/hooks/index.js +4 -3
- package/dist/locales/index.js +1 -102
- package/dist/providers/index.js +6 -5
- package/dist/renderer/index.js +0 -1
- package/dist/{useUISlots-D0mttBSP.d.ts → useUISlots-BBjNvQtb.d.ts} +1 -1
- package/package.json +1 -1
package/dist/providers/index.js
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
import { SuspenseConfigProvider } from '../chunk-
|
|
2
|
-
import { ThemeProvider } from '../chunk-
|
|
3
|
-
import { SelectionProvider, EntityDataProvider } from '../chunk-
|
|
4
|
-
export { SelectionContext, SelectionProvider, useSelection, useSelectionOptional } from '../chunk-
|
|
1
|
+
import { SuspenseConfigProvider } from '../chunk-CC3UOKHI.js';
|
|
2
|
+
import { ThemeProvider } from '../chunk-DKQN5FVU.js';
|
|
3
|
+
import { SelectionProvider, EntityDataProvider } from '../chunk-GOZKH7QW.js';
|
|
4
|
+
export { SelectionContext, SelectionProvider, useSelection, useSelectionOptional } from '../chunk-GOZKH7QW.js';
|
|
5
5
|
import { useEventBus, EventBusProvider } from '../chunk-YXZM3WCF.js';
|
|
6
6
|
export { EventBusContext, EventBusProvider } from '../chunk-YXZM3WCF.js';
|
|
7
|
-
import '../chunk-
|
|
7
|
+
import '../chunk-3JGAROCW.js';
|
|
8
8
|
import { recordTransition, registerCheck, bindEventBus, bindTraitStateGetter } from '../chunk-45CTDYBT.js';
|
|
9
9
|
import '../chunk-KKCVDUK7.js';
|
|
10
|
+
import '../chunk-TSETXL2E.js';
|
|
10
11
|
import { useOfflineExecutor } from '../chunk-PL7MD6GF.js';
|
|
11
12
|
import '../chunk-PKBMQBKP.js';
|
|
12
13
|
import { createContext, useState, useCallback, useMemo, useContext, useRef, useEffect } from 'react';
|
package/dist/renderer/index.js
CHANGED
|
@@ -604,7 +604,6 @@ function initializePatterns() {
|
|
|
604
604
|
console.log("[PatternResolver] Extracted patterns count:", Object.keys(patternRegistry2).length);
|
|
605
605
|
initializePatternResolver({
|
|
606
606
|
componentMapping: componentMapping2,
|
|
607
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
608
607
|
patternRegistry: patternRegistry2
|
|
609
608
|
});
|
|
610
609
|
console.log(`[PatternResolver] Initialized with ${Object.keys(componentMapping2).length} component mappings and ${Object.keys(patternRegistry2).length} pattern definitions`);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Valid UI slot names
|
|
3
3
|
*/
|
|
4
|
-
type UISlot = 'main' | 'sidebar' | 'modal' | 'drawer' | 'overlay' | 'center' | 'toast' | 'hud-top' | 'hud-bottom' | 'floating';
|
|
4
|
+
type UISlot = 'main' | 'sidebar' | 'modal' | 'drawer' | 'overlay' | 'center' | 'toast' | 'hud-top' | 'hud-bottom' | 'hud-left' | 'hud-right' | 'floating';
|
|
5
5
|
/**
|
|
6
6
|
* Animation types for slot transitions
|
|
7
7
|
*/
|