@almadar/ui 1.0.10 → 1.0.11
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-I5RSZIOE.js → chunk-DTKTZ3UR.js} +24 -24
- package/dist/{chunk-4FRUCUO5.js → chunk-QFAKJLOK.js} +1 -1
- package/dist/components/index.js +4 -4
- package/dist/context/index.js +2 -2
- package/dist/hooks/index.d.ts +129 -129
- package/dist/hooks/index.js +1 -1
- package/dist/providers/index.js +1 -1
- package/package.json +15 -14
- package/LICENSE +0 -72
- /package/dist/{chunk-BCERHHKU.js → chunk-4AIGHVQK.js} +0 -0
|
@@ -1,30 +1,7 @@
|
|
|
1
1
|
import { useUISlotManager } from './chunk-7NEWMNNU.js';
|
|
2
|
-
import { createContext, useMemo,
|
|
2
|
+
import { createContext, useMemo, useState, useEffect, useCallback, useContext } from 'react';
|
|
3
3
|
import { jsx } from 'react/jsx-runtime';
|
|
4
4
|
|
|
5
|
-
var UISlotContext = createContext(null);
|
|
6
|
-
function UISlotProvider({ children }) {
|
|
7
|
-
const slotManager = useUISlotManager();
|
|
8
|
-
const contextValue = useMemo(() => slotManager, [slotManager]);
|
|
9
|
-
return /* @__PURE__ */ jsx(UISlotContext.Provider, { value: contextValue, children });
|
|
10
|
-
}
|
|
11
|
-
function useUISlots() {
|
|
12
|
-
const context = useContext(UISlotContext);
|
|
13
|
-
if (!context) {
|
|
14
|
-
throw new Error(
|
|
15
|
-
"useUISlots must be used within a UISlotProvider. Make sure your component tree is wrapped with <UISlotProvider>."
|
|
16
|
-
);
|
|
17
|
-
}
|
|
18
|
-
return context;
|
|
19
|
-
}
|
|
20
|
-
function useSlotContent(slot) {
|
|
21
|
-
const { getContent } = useUISlots();
|
|
22
|
-
return getContent(slot);
|
|
23
|
-
}
|
|
24
|
-
function useSlotHasContent(slot) {
|
|
25
|
-
const { hasContent } = useUISlots();
|
|
26
|
-
return hasContent(slot);
|
|
27
|
-
}
|
|
28
5
|
var BUILT_IN_THEMES = [
|
|
29
6
|
{
|
|
30
7
|
name: "wireframe",
|
|
@@ -186,5 +163,28 @@ function useTheme() {
|
|
|
186
163
|
return context;
|
|
187
164
|
}
|
|
188
165
|
var ThemeContext_default = ThemeContext;
|
|
166
|
+
var UISlotContext = createContext(null);
|
|
167
|
+
function UISlotProvider({ children }) {
|
|
168
|
+
const slotManager = useUISlotManager();
|
|
169
|
+
const contextValue = useMemo(() => slotManager, [slotManager]);
|
|
170
|
+
return /* @__PURE__ */ jsx(UISlotContext.Provider, { value: contextValue, children });
|
|
171
|
+
}
|
|
172
|
+
function useUISlots() {
|
|
173
|
+
const context = useContext(UISlotContext);
|
|
174
|
+
if (!context) {
|
|
175
|
+
throw new Error(
|
|
176
|
+
"useUISlots must be used within a UISlotProvider. Make sure your component tree is wrapped with <UISlotProvider>."
|
|
177
|
+
);
|
|
178
|
+
}
|
|
179
|
+
return context;
|
|
180
|
+
}
|
|
181
|
+
function useSlotContent(slot) {
|
|
182
|
+
const { getContent } = useUISlots();
|
|
183
|
+
return getContent(slot);
|
|
184
|
+
}
|
|
185
|
+
function useSlotHasContent(slot) {
|
|
186
|
+
const { hasContent } = useUISlots();
|
|
187
|
+
return hasContent(slot);
|
|
188
|
+
}
|
|
189
189
|
|
|
190
190
|
export { BUILT_IN_THEMES, ThemeContext_default, ThemeProvider, UISlotContext, UISlotProvider, useSlotContent, useSlotHasContent, useTheme, useUISlots };
|
package/dist/components/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { useDesignTheme } from '../chunk-
|
|
2
|
-
import { useQuerySingleton, usePaginatedEntityList, useEntityList, useSelectedEntity, useEntityDetail, useEntities, useAuthContext } from '../chunk-BCERHHKU.js';
|
|
3
|
-
export { ENTITY_EVENTS, entityDataKeys, parseQueryBinding, useAgentChat, useAuthContext, useCompile, useConnectGitHub, useCreateEntity, useDeepAgentGeneration, useDeleteEntity, useDisconnectGitHub, useEntities, useEntitiesByType, useEntity, useEntity2 as useEntityById, useEntityDetail, useEntityList, useEntityMutations, useExtensions, useFileEditor, useFileSystem, useGitHubBranches, useGitHubRepo, useGitHubRepos, useGitHubStatus, useInput, useOrbitalHistory, useOrbitalMutations, usePhysics, usePlayer, usePreview, useQuerySingleton, useSelectedEntity, useSendOrbitalEvent, useSingletonEntity, useUIEvents, useUpdateEntity, useValidation } from '../chunk-BCERHHKU.js';
|
|
1
|
+
import { useDesignTheme } from '../chunk-QFAKJLOK.js';
|
|
4
2
|
import { cn, debugGroup, debug, debugGroupEnd, getNestedValue, isDebugEnabled, debugInput, debugCollision } from '../chunk-KKCVDUK7.js';
|
|
5
3
|
export { cn } from '../chunk-KKCVDUK7.js';
|
|
4
|
+
import { useQuerySingleton, usePaginatedEntityList, useEntityList, useSelectedEntity, useEntityDetail, useEntities, useAuthContext } from '../chunk-4AIGHVQK.js';
|
|
5
|
+
export { ENTITY_EVENTS, entityDataKeys, parseQueryBinding, useAgentChat, useAuthContext, useCompile, useConnectGitHub, useCreateEntity, useDeepAgentGeneration, useDeleteEntity, useDisconnectGitHub, useEntities, useEntitiesByType, useEntity, useEntity2 as useEntityById, useEntityDetail, useEntityList, useEntityMutations, useExtensions, useFileEditor, useFileSystem, useGitHubBranches, useGitHubRepo, useGitHubRepos, useGitHubStatus, useInput, useOrbitalHistory, useOrbitalMutations, usePhysics, usePlayer, usePreview, useQuerySingleton, useSelectedEntity, useSendOrbitalEvent, useSingletonEntity, useUIEvents, useUpdateEntity, useValidation } from '../chunk-4AIGHVQK.js';
|
|
6
6
|
import '../chunk-XSEDIUM6.js';
|
|
7
|
-
import { useTheme, useUISlots } from '../chunk-
|
|
7
|
+
import { useTheme, useUISlots } from '../chunk-DTKTZ3UR.js';
|
|
8
8
|
import { useEventBus } from '../chunk-TTXKOHDO.js';
|
|
9
9
|
export { useEmitEvent, useEventBus, useEventListener } from '../chunk-TTXKOHDO.js';
|
|
10
10
|
export { DEFAULT_SLOTS, useUISlotManager } from '../chunk-7NEWMNNU.js';
|
package/dist/context/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { DesignThemeProvider, useDesignTheme } from '../chunk-
|
|
2
|
-
export { BUILT_IN_THEMES, ThemeContext_default as ThemeContext, ThemeProvider, UISlotContext, UISlotProvider, useSlotContent, useSlotHasContent, useTheme, useUISlots } from '../chunk-
|
|
1
|
+
export { DesignThemeProvider, useDesignTheme } from '../chunk-QFAKJLOK.js';
|
|
2
|
+
export { BUILT_IN_THEMES, ThemeContext_default as ThemeContext, ThemeProvider, UISlotContext, UISlotProvider, useSlotContent, useSlotHasContent, useTheme, useUISlots } from '../chunk-DTKTZ3UR.js';
|
|
3
3
|
import '../chunk-7NEWMNNU.js';
|
|
4
4
|
import '../chunk-S7EYY36U.js';
|
|
5
5
|
import { createContext, useCallback, useMemo, useContext } from 'react';
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -5,6 +5,133 @@ export { D as DEFAULT_SLOTS, R as RenderUIConfig, b as SlotAnimation, c as SlotC
|
|
|
5
5
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
6
6
|
import { Entity, getEntity, getByType, getAllEntities, getSingleton, spawnEntity, updateEntity, updateSingleton, removeEntity, clearEntities } from '../stores/index.js';
|
|
7
7
|
|
|
8
|
+
/**
|
|
9
|
+
* useEntities Hook
|
|
10
|
+
*
|
|
11
|
+
* React hook to access the entity store.
|
|
12
|
+
* Uses useSyncExternalStore for efficient updates.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Hook to access all entities
|
|
17
|
+
*/
|
|
18
|
+
declare function useEntities(): {
|
|
19
|
+
entities: Map<string, Entity>;
|
|
20
|
+
getEntity: typeof getEntity;
|
|
21
|
+
getByType: typeof getByType;
|
|
22
|
+
getAllEntities: typeof getAllEntities;
|
|
23
|
+
getSingleton: typeof getSingleton;
|
|
24
|
+
spawnEntity: typeof spawnEntity;
|
|
25
|
+
updateEntity: typeof updateEntity;
|
|
26
|
+
updateSingleton: typeof updateSingleton;
|
|
27
|
+
removeEntity: typeof removeEntity;
|
|
28
|
+
clearEntities: typeof clearEntities;
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* Hook to access a specific entity by ID
|
|
32
|
+
*/
|
|
33
|
+
declare function useEntity$1(id: string): Entity | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* Hook to access entities of a specific type
|
|
36
|
+
*/
|
|
37
|
+
declare function useEntitiesByType(type: string): Entity[];
|
|
38
|
+
/**
|
|
39
|
+
* Hook to access a singleton entity by type
|
|
40
|
+
*/
|
|
41
|
+
declare function useSingletonEntity<T extends Entity = Entity>(type: string): T | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* Hook for Player entity (convenience)
|
|
44
|
+
*/
|
|
45
|
+
declare function usePlayer(): {
|
|
46
|
+
player: Entity | undefined;
|
|
47
|
+
updatePlayer: (updates: Partial<Entity>) => void;
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* Hook for Physics entity (convenience)
|
|
51
|
+
*/
|
|
52
|
+
declare function usePhysics(): {
|
|
53
|
+
physics: Entity | undefined;
|
|
54
|
+
updatePhysics: (updates: Partial<Entity>) => void;
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
* Hook for Input entity (convenience)
|
|
58
|
+
*/
|
|
59
|
+
declare function useInput(): {
|
|
60
|
+
input: Entity | undefined;
|
|
61
|
+
updateInput: (updates: Partial<Entity>) => void;
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* useEventBus Hook
|
|
66
|
+
*
|
|
67
|
+
* Provides event bus utilities for component communication.
|
|
68
|
+
* This connects to the EventBusProvider for real applications
|
|
69
|
+
* or provides a simple in-memory bus for design system / Storybook.
|
|
70
|
+
*
|
|
71
|
+
* @packageDocumentation
|
|
72
|
+
*/
|
|
73
|
+
|
|
74
|
+
declare global {
|
|
75
|
+
interface Window {
|
|
76
|
+
__kflowEventBus?: EventBusContextType | null;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Hook for accessing the event bus.
|
|
81
|
+
*
|
|
82
|
+
* Uses EventBusProvider context if available, otherwise falls back to
|
|
83
|
+
* a simple in-memory event bus (for design system / Storybook).
|
|
84
|
+
*
|
|
85
|
+
* @returns Event bus instance with emit, on, once, and hasListeners methods
|
|
86
|
+
*
|
|
87
|
+
* @example
|
|
88
|
+
* ```tsx
|
|
89
|
+
* const eventBus = useEventBus();
|
|
90
|
+
*
|
|
91
|
+
* // Emit an event
|
|
92
|
+
* eventBus.emit('UI:CLICK', { id: '123' });
|
|
93
|
+
*
|
|
94
|
+
* // Subscribe to an event
|
|
95
|
+
* useEffect(() => {
|
|
96
|
+
* return eventBus.on('UI:CLICK', (event) => {
|
|
97
|
+
* console.log('Clicked:', event.payload);
|
|
98
|
+
* });
|
|
99
|
+
* }, []);
|
|
100
|
+
* ```
|
|
101
|
+
*/
|
|
102
|
+
declare function useEventBus(): EventBusContextType;
|
|
103
|
+
/**
|
|
104
|
+
* Hook for subscribing to a specific event.
|
|
105
|
+
* Automatically cleans up subscription on unmount.
|
|
106
|
+
*
|
|
107
|
+
* @param event - Event name to subscribe to
|
|
108
|
+
* @param handler - Event handler function
|
|
109
|
+
*
|
|
110
|
+
* @example
|
|
111
|
+
* ```tsx
|
|
112
|
+
* useEventListener('UI:CLICK', (event) => {
|
|
113
|
+
* console.log('Clicked:', event.payload);
|
|
114
|
+
* });
|
|
115
|
+
* ```
|
|
116
|
+
*/
|
|
117
|
+
declare function useEventListener(event: string, handler: EventListener): void;
|
|
118
|
+
/**
|
|
119
|
+
* Hook for emitting events.
|
|
120
|
+
* Returns a memoized emit function.
|
|
121
|
+
*
|
|
122
|
+
* @returns Function to emit events
|
|
123
|
+
*
|
|
124
|
+
* @example
|
|
125
|
+
* ```tsx
|
|
126
|
+
* const emit = useEmitEvent();
|
|
127
|
+
*
|
|
128
|
+
* const handleClick = () => {
|
|
129
|
+
* emit('UI:CLICK', { id: '123' });
|
|
130
|
+
* };
|
|
131
|
+
* ```
|
|
132
|
+
*/
|
|
133
|
+
declare function useEmitEvent(): (type: string, payload?: Record<string, unknown>) => void;
|
|
134
|
+
|
|
8
135
|
/**
|
|
9
136
|
* useOrbitalHistory Hook
|
|
10
137
|
*
|
|
@@ -478,77 +605,6 @@ interface UseValidationResult {
|
|
|
478
605
|
}
|
|
479
606
|
declare function useValidation(): UseValidationResult;
|
|
480
607
|
|
|
481
|
-
/**
|
|
482
|
-
* useEventBus Hook
|
|
483
|
-
*
|
|
484
|
-
* Provides event bus utilities for component communication.
|
|
485
|
-
* This connects to the EventBusProvider for real applications
|
|
486
|
-
* or provides a simple in-memory bus for design system / Storybook.
|
|
487
|
-
*
|
|
488
|
-
* @packageDocumentation
|
|
489
|
-
*/
|
|
490
|
-
|
|
491
|
-
declare global {
|
|
492
|
-
interface Window {
|
|
493
|
-
__kflowEventBus?: EventBusContextType | null;
|
|
494
|
-
}
|
|
495
|
-
}
|
|
496
|
-
/**
|
|
497
|
-
* Hook for accessing the event bus.
|
|
498
|
-
*
|
|
499
|
-
* Uses EventBusProvider context if available, otherwise falls back to
|
|
500
|
-
* a simple in-memory event bus (for design system / Storybook).
|
|
501
|
-
*
|
|
502
|
-
* @returns Event bus instance with emit, on, once, and hasListeners methods
|
|
503
|
-
*
|
|
504
|
-
* @example
|
|
505
|
-
* ```tsx
|
|
506
|
-
* const eventBus = useEventBus();
|
|
507
|
-
*
|
|
508
|
-
* // Emit an event
|
|
509
|
-
* eventBus.emit('UI:CLICK', { id: '123' });
|
|
510
|
-
*
|
|
511
|
-
* // Subscribe to an event
|
|
512
|
-
* useEffect(() => {
|
|
513
|
-
* return eventBus.on('UI:CLICK', (event) => {
|
|
514
|
-
* console.log('Clicked:', event.payload);
|
|
515
|
-
* });
|
|
516
|
-
* }, []);
|
|
517
|
-
* ```
|
|
518
|
-
*/
|
|
519
|
-
declare function useEventBus(): EventBusContextType;
|
|
520
|
-
/**
|
|
521
|
-
* Hook for subscribing to a specific event.
|
|
522
|
-
* Automatically cleans up subscription on unmount.
|
|
523
|
-
*
|
|
524
|
-
* @param event - Event name to subscribe to
|
|
525
|
-
* @param handler - Event handler function
|
|
526
|
-
*
|
|
527
|
-
* @example
|
|
528
|
-
* ```tsx
|
|
529
|
-
* useEventListener('UI:CLICK', (event) => {
|
|
530
|
-
* console.log('Clicked:', event.payload);
|
|
531
|
-
* });
|
|
532
|
-
* ```
|
|
533
|
-
*/
|
|
534
|
-
declare function useEventListener(event: string, handler: EventListener): void;
|
|
535
|
-
/**
|
|
536
|
-
* Hook for emitting events.
|
|
537
|
-
* Returns a memoized emit function.
|
|
538
|
-
*
|
|
539
|
-
* @returns Function to emit events
|
|
540
|
-
*
|
|
541
|
-
* @example
|
|
542
|
-
* ```tsx
|
|
543
|
-
* const emit = useEmitEvent();
|
|
544
|
-
*
|
|
545
|
-
* const handleClick = () => {
|
|
546
|
-
* emit('UI:CLICK', { id: '123' });
|
|
547
|
-
* };
|
|
548
|
-
* ```
|
|
549
|
-
*/
|
|
550
|
-
declare function useEmitEvent(): (type: string, payload?: Record<string, unknown>) => void;
|
|
551
|
-
|
|
552
608
|
/**
|
|
553
609
|
* useUIEvents - UI Event to State Machine Bridge
|
|
554
610
|
*
|
|
@@ -652,7 +708,7 @@ declare function useEntityList<T = Record<string, unknown>>(entity: string | und
|
|
|
652
708
|
* @param id - Entity ID
|
|
653
709
|
* @returns Single entity data and loading states
|
|
654
710
|
*/
|
|
655
|
-
declare function useEntity
|
|
711
|
+
declare function useEntity<T = Record<string, unknown>>(entity: string | undefined, id: string | undefined): {
|
|
656
712
|
data: T | null;
|
|
657
713
|
isLoading: boolean;
|
|
658
714
|
error: Error | null;
|
|
@@ -926,62 +982,6 @@ declare function useEntityMutations(entityName: string, options?: UseEntityMutat
|
|
|
926
982
|
deleteError: Error | null;
|
|
927
983
|
};
|
|
928
984
|
|
|
929
|
-
/**
|
|
930
|
-
* useEntities Hook
|
|
931
|
-
*
|
|
932
|
-
* React hook to access the entity store.
|
|
933
|
-
* Uses useSyncExternalStore for efficient updates.
|
|
934
|
-
*/
|
|
935
|
-
|
|
936
|
-
/**
|
|
937
|
-
* Hook to access all entities
|
|
938
|
-
*/
|
|
939
|
-
declare function useEntities(): {
|
|
940
|
-
entities: Map<string, Entity>;
|
|
941
|
-
getEntity: typeof getEntity;
|
|
942
|
-
getByType: typeof getByType;
|
|
943
|
-
getAllEntities: typeof getAllEntities;
|
|
944
|
-
getSingleton: typeof getSingleton;
|
|
945
|
-
spawnEntity: typeof spawnEntity;
|
|
946
|
-
updateEntity: typeof updateEntity;
|
|
947
|
-
updateSingleton: typeof updateSingleton;
|
|
948
|
-
removeEntity: typeof removeEntity;
|
|
949
|
-
clearEntities: typeof clearEntities;
|
|
950
|
-
};
|
|
951
|
-
/**
|
|
952
|
-
* Hook to access a specific entity by ID
|
|
953
|
-
*/
|
|
954
|
-
declare function useEntity(id: string): Entity | undefined;
|
|
955
|
-
/**
|
|
956
|
-
* Hook to access entities of a specific type
|
|
957
|
-
*/
|
|
958
|
-
declare function useEntitiesByType(type: string): Entity[];
|
|
959
|
-
/**
|
|
960
|
-
* Hook to access a singleton entity by type
|
|
961
|
-
*/
|
|
962
|
-
declare function useSingletonEntity<T extends Entity = Entity>(type: string): T | undefined;
|
|
963
|
-
/**
|
|
964
|
-
* Hook for Player entity (convenience)
|
|
965
|
-
*/
|
|
966
|
-
declare function usePlayer(): {
|
|
967
|
-
player: Entity | undefined;
|
|
968
|
-
updatePlayer: (updates: Partial<Entity>) => void;
|
|
969
|
-
};
|
|
970
|
-
/**
|
|
971
|
-
* Hook for Physics entity (convenience)
|
|
972
|
-
*/
|
|
973
|
-
declare function usePhysics(): {
|
|
974
|
-
physics: Entity | undefined;
|
|
975
|
-
updatePhysics: (updates: Partial<Entity>) => void;
|
|
976
|
-
};
|
|
977
|
-
/**
|
|
978
|
-
* Hook for Input entity (convenience)
|
|
979
|
-
*/
|
|
980
|
-
declare function useInput(): {
|
|
981
|
-
input: Entity | undefined;
|
|
982
|
-
updateInput: (updates: Partial<Entity>) => void;
|
|
983
|
-
};
|
|
984
|
-
|
|
985
985
|
/**
|
|
986
986
|
* Auth Context Hook Stub
|
|
987
987
|
*
|
|
@@ -1072,4 +1072,4 @@ declare function useGitHubBranches(owner: string, repo: string, enabled?: boolea
|
|
|
1072
1072
|
branches: string[];
|
|
1073
1073
|
}, Error>;
|
|
1074
1074
|
|
|
1075
|
-
export { type AuthContextValue, type AuthUser, type ChangeSummary, type CompileResult, type CompileStage, ENTITY_EVENTS, Entity, type EntityDataRecord, type EntityMutationResult, EventBusContextType, EventListener, type Extension, type ExtensionManifest, type FileSystemFile, type FileSystemStatus, type GitHubRepo, type GitHubStatus, type HistoryTimelineItem, type OpenFile, type OrbitalEventPayload, type OrbitalEventResponse, type QuerySingletonEntity, type QuerySingletonResult, type QuerySingletonState, type QueryState, type RevertResult, type SelectedFile, type UseCompileResult, type UseEntityDetailResult, type UseEntityListOptions, type UseEntityListResult, type UseEntityMutationsOptions, type UseExtensionsOptions, type UseExtensionsResult, type UseFileEditorOptions, type UseFileEditorResult, type UseFileSystemResult, type UseOrbitalHistoryOptions, type UseOrbitalHistoryResult, clearEntities, entityDataKeys, getAllEntities, getByType, getEntity, getSingleton, parseQueryBinding, removeEntity, spawnEntity, updateEntity, updateSingleton, useAgentChat, useAuthContext, useCompile, useConnectGitHub, useCreateEntity, useDeepAgentGeneration, useDeleteEntity, useDisconnectGitHub, useEmitEvent, useEntities, useEntitiesByType, useEntity
|
|
1075
|
+
export { type AuthContextValue, type AuthUser, type ChangeSummary, type CompileResult, type CompileStage, ENTITY_EVENTS, Entity, type EntityDataRecord, type EntityMutationResult, EventBusContextType, EventListener, type Extension, type ExtensionManifest, type FileSystemFile, type FileSystemStatus, type GitHubRepo, type GitHubStatus, type HistoryTimelineItem, type OpenFile, type OrbitalEventPayload, type OrbitalEventResponse, type QuerySingletonEntity, type QuerySingletonResult, type QuerySingletonState, type QueryState, type RevertResult, type SelectedFile, type UseCompileResult, type UseEntityDetailResult, type UseEntityListOptions, type UseEntityListResult, type UseEntityMutationsOptions, type UseExtensionsOptions, type UseExtensionsResult, type UseFileEditorOptions, type UseFileEditorResult, type UseFileSystemResult, type UseOrbitalHistoryOptions, type UseOrbitalHistoryResult, clearEntities, entityDataKeys, getAllEntities, getByType, getEntity, getSingleton, parseQueryBinding, removeEntity, spawnEntity, updateEntity, updateSingleton, useAgentChat, useAuthContext, useCompile, useConnectGitHub, useCreateEntity, useDeepAgentGeneration, useDeleteEntity, useDisconnectGitHub, useEmitEvent, useEntities, useEntitiesByType, useEntity, useEntity$1 as useEntityById, useEntityDetail, useEntityList, useEntityMutations, useEventBus, useEventListener, useExtensions, useFileEditor, useFileSystem, useGitHubBranches, useGitHubRepo, useGitHubRepos, useGitHubStatus, useInput, useOrbitalHistory, useOrbitalMutations, usePhysics, usePlayer, usePreview, useQuerySingleton, useSelectedEntity, useSendOrbitalEvent, useSingletonEntity, useUIEvents, useUpdateEntity, useValidation };
|
package/dist/hooks/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ENTITY_EVENTS, entityDataKeys, parseQueryBinding, useAgentChat, useAuthContext, useCompile, useConnectGitHub, useCreateEntity, useDeepAgentGeneration, useDeleteEntity, useDisconnectGitHub, useEntities, useEntitiesByType, useEntity, useEntity2 as useEntityById, useEntityDetail, useEntityList, useEntityMutations, useExtensions, useFileEditor, useFileSystem, useGitHubBranches, useGitHubRepo, useGitHubRepos, useGitHubStatus, useInput, useOrbitalHistory, useOrbitalMutations, usePhysics, usePlayer, usePreview, useQuerySingleton, useSelectedEntity, useSendOrbitalEvent, useSingletonEntity, useUIEvents, useUpdateEntity, useValidation } from '../chunk-
|
|
1
|
+
export { ENTITY_EVENTS, entityDataKeys, parseQueryBinding, useAgentChat, useAuthContext, useCompile, useConnectGitHub, useCreateEntity, useDeepAgentGeneration, useDeleteEntity, useDisconnectGitHub, useEntities, useEntitiesByType, useEntity, useEntity2 as useEntityById, useEntityDetail, useEntityList, useEntityMutations, useExtensions, useFileEditor, useFileSystem, useGitHubBranches, useGitHubRepo, useGitHubRepos, useGitHubStatus, useInput, useOrbitalHistory, useOrbitalMutations, usePhysics, usePlayer, usePreview, useQuerySingleton, useSelectedEntity, useSendOrbitalEvent, useSingletonEntity, useUIEvents, useUpdateEntity, useValidation } from '../chunk-4AIGHVQK.js';
|
|
2
2
|
import '../chunk-XSEDIUM6.js';
|
|
3
3
|
export { useEmitEvent, useEventBus, useEventListener } from '../chunk-TTXKOHDO.js';
|
|
4
4
|
export { DEFAULT_SLOTS, useUISlotManager } from '../chunk-7NEWMNNU.js';
|
package/dist/providers/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ThemeProvider, UISlotProvider } from '../chunk-
|
|
1
|
+
import { ThemeProvider, UISlotProvider } from '../chunk-DTKTZ3UR.js';
|
|
2
2
|
import { EventBusProvider, SelectionProvider } from '../chunk-TTXKOHDO.js';
|
|
3
3
|
export { EventBusContext, EventBusProvider, SelectionContext, SelectionProvider, useSelection, useSelectionOptional } from '../chunk-TTXKOHDO.js';
|
|
4
4
|
import '../chunk-7NEWMNNU.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.11",
|
|
4
4
|
"description": "React UI components, hooks, and providers for Almadar",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/components/index.js",
|
|
@@ -48,7 +48,18 @@
|
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "tsup",
|
|
53
|
+
"build:watch": "tsup --watch",
|
|
54
|
+
"storybook": "storybook dev -p 6006",
|
|
55
|
+
"build-storybook": "storybook build -o storybook-static",
|
|
56
|
+
"typecheck": "tsc --noEmit",
|
|
57
|
+
"prepublishOnly": "pnpm run build"
|
|
58
|
+
},
|
|
51
59
|
"dependencies": {
|
|
60
|
+
"@almadar/core": "workspace:*",
|
|
61
|
+
"@almadar/evaluator": "workspace:*",
|
|
62
|
+
"@almadar/patterns": "workspace:*",
|
|
52
63
|
"clsx": "^2.1.0",
|
|
53
64
|
"tailwind-merge": "^2.2.0",
|
|
54
65
|
"lucide-react": "^0.344.0",
|
|
@@ -59,10 +70,7 @@
|
|
|
59
70
|
"rehype-raw": "^7.0.0",
|
|
60
71
|
"remark-gfm": "^4.0.1",
|
|
61
72
|
"remark-math": "^6.0.0",
|
|
62
|
-
"react-force-graph-2d": "^1.28.0"
|
|
63
|
-
"@almadar/evaluator": "1.0.10",
|
|
64
|
-
"@almadar/core": "1.0.10",
|
|
65
|
-
"@almadar/patterns": "1.0.10"
|
|
73
|
+
"react-force-graph-2d": "^1.28.0"
|
|
66
74
|
},
|
|
67
75
|
"peerDependencies": {
|
|
68
76
|
"react": "^18.0.0",
|
|
@@ -108,12 +116,5 @@
|
|
|
108
116
|
"react",
|
|
109
117
|
"components",
|
|
110
118
|
"hooks"
|
|
111
|
-
]
|
|
112
|
-
|
|
113
|
-
"build": "tsup",
|
|
114
|
-
"build:watch": "tsup --watch",
|
|
115
|
-
"storybook": "storybook dev -p 6006",
|
|
116
|
-
"build-storybook": "storybook build -o storybook-static",
|
|
117
|
-
"typecheck": "tsc --noEmit"
|
|
118
|
-
}
|
|
119
|
-
}
|
|
119
|
+
]
|
|
120
|
+
}
|
package/LICENSE
DELETED
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
Business Source License 1.1
|
|
2
|
-
|
|
3
|
-
Parameters
|
|
4
|
-
|
|
5
|
-
Licensor: Almadar FZE
|
|
6
|
-
Licensed Work: KFlow Builder / Almadar
|
|
7
|
-
The Licensed Work is (c) 2025-2026 Almadar FZE.
|
|
8
|
-
Additional Use Grant: You may make production use of the Licensed Work for
|
|
9
|
-
non-commercial purposes and for internal evaluation.
|
|
10
|
-
Production use for commercial purposes requires a
|
|
11
|
-
commercial license from the Licensor.
|
|
12
|
-
Change Date: 2030-02-01
|
|
13
|
-
Change License: Apache License, Version 2.0
|
|
14
|
-
|
|
15
|
-
Terms
|
|
16
|
-
|
|
17
|
-
The Licensor hereby grants you the right to copy, modify, create derivative
|
|
18
|
-
works, redistribute, and make non-production use of the Licensed Work. The
|
|
19
|
-
Licensor may make an Additional Use Grant, above, permitting limited
|
|
20
|
-
production use.
|
|
21
|
-
|
|
22
|
-
Effective on the Change Date, or the fourth anniversary of the first publicly
|
|
23
|
-
available distribution of a specific version of the Licensed Work under this
|
|
24
|
-
License, whichever comes first, the Licensor hereby grants you rights under
|
|
25
|
-
the terms of the Change License, and the rights granted in the paragraph
|
|
26
|
-
above terminate.
|
|
27
|
-
|
|
28
|
-
If your use of the Licensed Work does not comply with the requirements
|
|
29
|
-
currently in effect as described in this License, you must purchase a
|
|
30
|
-
commercial license from the Licensor, its affiliated entities, or authorized
|
|
31
|
-
resellers, or you must refrain from using the Licensed Work.
|
|
32
|
-
|
|
33
|
-
All copies of the original and modified Licensed Work, and derivative works
|
|
34
|
-
of the Licensed Work, are subject to this License. This License applies
|
|
35
|
-
separately for each version of the Licensed Work and the Change Date may vary
|
|
36
|
-
for each version of the Licensed Work released by Licensor.
|
|
37
|
-
|
|
38
|
-
You must conspicuously display this License on each original or modified copy
|
|
39
|
-
of the Licensed Work. If you receive the Licensed Work in original or
|
|
40
|
-
modified form from a third party, the terms and conditions set forth in this
|
|
41
|
-
License apply to your use of that work.
|
|
42
|
-
|
|
43
|
-
Any use of the Licensed Work in violation of this License will automatically
|
|
44
|
-
terminate your rights under this License for the current and all other
|
|
45
|
-
versions of the Licensed Work.
|
|
46
|
-
|
|
47
|
-
This License does not grant you any right in any trademark or logo of
|
|
48
|
-
Licensor or its affiliates (provided that you may use a trademark or logo of
|
|
49
|
-
Licensor as expressly required by this License).
|
|
50
|
-
|
|
51
|
-
TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON
|
|
52
|
-
AN "AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS,
|
|
53
|
-
EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF
|
|
54
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND
|
|
55
|
-
TITLE.
|
|
56
|
-
|
|
57
|
-
---
|
|
58
|
-
|
|
59
|
-
License text copyright (c) 2017 MariaDB Corporation Ab, All Rights Reserved.
|
|
60
|
-
"Business Source License" is a trademark of MariaDB Corporation Ab.
|
|
61
|
-
|
|
62
|
-
ADDITIONAL TERMS:
|
|
63
|
-
|
|
64
|
-
Documentation (builder/packages/website/docs/) is licensed under CC BY 4.0.
|
|
65
|
-
|
|
66
|
-
TRADEMARKS:
|
|
67
|
-
|
|
68
|
-
"Orbital", "KFlow", "Almadar", and the Almadar logo are trademarks of
|
|
69
|
-
Almadar FZE. You may not use these trademarks without prior written
|
|
70
|
-
permission from Almadar FZE.
|
|
71
|
-
|
|
72
|
-
For licensing inquiries: licensing@almadar.io
|
|
File without changes
|