@almadar/ui 2.12.6 → 2.13.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-HJJIE4K5.js → chunk-2GI2TR4Y.js} +23 -10
- package/dist/{chunk-TSETXL2E.js → chunk-2XXSUIOK.js} +3 -0
- package/dist/{chunk-GTIAVPI5.js → chunk-PERGHHON.js} +1 -1
- package/dist/{chunk-AX45OCIB.js → chunk-UYR7S2DP.js} +2 -2
- package/dist/{chunk-WGJIL4YR.js → chunk-Y7IHEYYE.js} +1 -1
- package/dist/components/index.d.ts +8 -8
- package/dist/components/index.js +7 -7
- package/dist/hooks/index.js +3 -3
- package/dist/locales/index.js +1 -1
- package/dist/providers/index.js +4 -4
- package/dist/runtime/index.js +5 -5
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { useTheme, useUISlots } from './chunk-DKQN5FVU.js';
|
|
2
|
-
import { useTranslate, useInfiniteScroll, useQuerySingleton, useLongPress, useSwipeGesture, useDragReorder, usePullToRefresh } from './chunk-
|
|
2
|
+
import { useTranslate, useInfiniteScroll, useQuerySingleton, useLongPress, useSwipeGesture, useDragReorder, usePullToRefresh } from './chunk-Y7IHEYYE.js';
|
|
3
3
|
import { useEventBus } from './chunk-YXZM3WCF.js';
|
|
4
4
|
import { cn, debugGroup, debug, debugGroupEnd, updateAssetStatus, bindCanvasCapture, getNestedValue, isDebugEnabled } from './chunk-WCTZ7WZX.js';
|
|
5
5
|
import { isPortalSlot } from './chunk-K2D5D3WK.js';
|
|
@@ -159,6 +159,18 @@ var iconSizeStyles = {
|
|
|
159
159
|
md: "h-4 w-4",
|
|
160
160
|
lg: "h-5 w-5"
|
|
161
161
|
};
|
|
162
|
+
function resolveIconProp(value, sizeClass) {
|
|
163
|
+
if (!value) return null;
|
|
164
|
+
if (typeof value === "string") {
|
|
165
|
+
const Resolved = resolveIcon(value);
|
|
166
|
+
return Resolved ? /* @__PURE__ */ jsx(Resolved, { className: sizeClass }) : null;
|
|
167
|
+
}
|
|
168
|
+
if (typeof value === "function") {
|
|
169
|
+
const IconComp = value;
|
|
170
|
+
return /* @__PURE__ */ jsx(IconComp, { className: sizeClass });
|
|
171
|
+
}
|
|
172
|
+
return value;
|
|
173
|
+
}
|
|
162
174
|
var Button = React80__default.forwardRef(
|
|
163
175
|
({
|
|
164
176
|
className,
|
|
@@ -178,10 +190,10 @@ var Button = React80__default.forwardRef(
|
|
|
178
190
|
...props
|
|
179
191
|
}, ref) => {
|
|
180
192
|
const eventBus = useEventBus();
|
|
181
|
-
const
|
|
182
|
-
const
|
|
183
|
-
const resolvedLeftIcon =
|
|
184
|
-
const resolvedRightIcon =
|
|
193
|
+
const leftIconValue = leftIcon || iconProp;
|
|
194
|
+
const rightIconValue = rightIcon || iconRightProp;
|
|
195
|
+
const resolvedLeftIcon = resolveIconProp(leftIconValue, iconSizeStyles[size]);
|
|
196
|
+
const resolvedRightIcon = resolveIconProp(rightIconValue, iconSizeStyles[size]);
|
|
185
197
|
const handleClick = (e) => {
|
|
186
198
|
if (action) {
|
|
187
199
|
eventBus.emit(`UI:${action}`, actionPayload ?? {});
|
|
@@ -9257,16 +9269,16 @@ function DialogueBox({
|
|
|
9257
9269
|
const [displayedText, setDisplayedText] = useState("");
|
|
9258
9270
|
const [isTyping, setIsTyping] = useState(false);
|
|
9259
9271
|
const [selectedChoice, setSelectedChoice] = useState(0);
|
|
9260
|
-
const textRef = useRef(dialogue.text);
|
|
9272
|
+
const textRef = useRef(dialogue.text ?? "");
|
|
9261
9273
|
const charIndexRef = useRef(0);
|
|
9262
9274
|
const autoAdvanceTimerRef = useRef(null);
|
|
9263
9275
|
useEffect(() => {
|
|
9264
|
-
textRef.current = dialogue.text;
|
|
9276
|
+
textRef.current = dialogue.text ?? "";
|
|
9265
9277
|
charIndexRef.current = 0;
|
|
9266
9278
|
setDisplayedText("");
|
|
9267
9279
|
setSelectedChoice(0);
|
|
9268
9280
|
if (typewriterSpeed === 0) {
|
|
9269
|
-
setDisplayedText(dialogue.text);
|
|
9281
|
+
setDisplayedText(dialogue.text ?? "");
|
|
9270
9282
|
setIsTyping(false);
|
|
9271
9283
|
if (completeEvent) eventBus.emit(`UI:${completeEvent}`, {});
|
|
9272
9284
|
onComplete?.();
|
|
@@ -9466,12 +9478,13 @@ function CombatLog({
|
|
|
9466
9478
|
scrollRef.current.scrollTop = scrollRef.current.scrollHeight;
|
|
9467
9479
|
}
|
|
9468
9480
|
}, [events, autoScroll]);
|
|
9469
|
-
const
|
|
9481
|
+
const safeEvents = events ?? [];
|
|
9482
|
+
const visibleEvents = safeEvents.slice(-maxVisible);
|
|
9470
9483
|
return /* @__PURE__ */ jsxs(Card, { variant: "default", className: cn("flex flex-col", className), children: [
|
|
9471
9484
|
/* @__PURE__ */ jsx(Box, { padding: "sm", border: true, className: "border-b-2 border-x-0 border-t-0 border-[var(--color-border)]", children: /* @__PURE__ */ jsxs(Box, { display: "flex", className: "items-center justify-between", children: [
|
|
9472
9485
|
/* @__PURE__ */ jsx(Typography, { variant: "body2", className: "font-bold", children: title }),
|
|
9473
9486
|
/* @__PURE__ */ jsxs(Badge, { variant: "neutral", size: "sm", children: [
|
|
9474
|
-
|
|
9487
|
+
safeEvents.length,
|
|
9475
9488
|
" events"
|
|
9476
9489
|
] })
|
|
9477
9490
|
] }) }),
|
|
@@ -58,6 +58,9 @@ var en_default = {
|
|
|
58
58
|
"error.loadFailed": "Failed to load: {{message}}",
|
|
59
59
|
"error.configMissing": "Configuration not found for: {{id}}",
|
|
60
60
|
"common.loading": "Loading...",
|
|
61
|
+
"common.showMore": "Show More",
|
|
62
|
+
"common.showLess": "Show Less",
|
|
63
|
+
"common.noResults": "No results found",
|
|
61
64
|
"common.saveChanges": "Save Changes",
|
|
62
65
|
"common.retry": "Retry",
|
|
63
66
|
"common.open": "Open",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { subscribe, getSnapshot, clearEntities, removeEntity, updateSingleton, updateEntity, spawnEntity, getSingleton, getAllEntities, getByType, getEntity } from './chunk-N7MVUW4R.js';
|
|
2
2
|
import { apiClient } from './chunk-3HJHHULT.js';
|
|
3
|
-
import { SelectionContext, entityDataKeys, useEntityList } from './chunk-
|
|
3
|
+
import { SelectionContext, entityDataKeys, useEntityList } from './chunk-Y7IHEYYE.js';
|
|
4
4
|
import { useEventBus } from './chunk-YXZM3WCF.js';
|
|
5
5
|
import { useCallback, useState, useEffect, useMemo, useContext, useSyncExternalStore, useRef } from 'react';
|
|
6
6
|
import { useQueryClient, useMutation, useQuery } from '@tanstack/react-query';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { SuspenseConfigProvider } from './chunk-
|
|
1
|
+
import { SuspenseConfigProvider } from './chunk-2GI2TR4Y.js';
|
|
2
2
|
import { ThemeProvider } from './chunk-DKQN5FVU.js';
|
|
3
|
-
import { SelectionProvider, EntityDataProvider } from './chunk-
|
|
3
|
+
import { SelectionProvider, EntityDataProvider } from './chunk-Y7IHEYYE.js';
|
|
4
4
|
import { useEventBus, EventBusProvider } from './chunk-YXZM3WCF.js';
|
|
5
5
|
import { recordTransition, registerCheck, bindEventBus, bindTraitStateGetter } from './chunk-WCTZ7WZX.js';
|
|
6
6
|
import { useOfflineExecutor } from './chunk-K2D5D3WK.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { useEventBus } from './chunk-YXZM3WCF.js';
|
|
2
|
-
import { en_default } from './chunk-
|
|
2
|
+
import { en_default } from './chunk-2XXSUIOK.js';
|
|
3
3
|
import React2, { createContext, useRef, useEffect, useCallback, useContext, useState, useMemo } from 'react';
|
|
4
4
|
import { jsx } from 'react/jsx-runtime';
|
|
5
5
|
|
|
@@ -22,14 +22,14 @@ interface ButtonProps extends React__default.ButtonHTMLAttributes<HTMLButtonElem
|
|
|
22
22
|
variant?: ButtonVariant;
|
|
23
23
|
size?: ButtonSize;
|
|
24
24
|
isLoading?: boolean;
|
|
25
|
-
/** Left icon as ReactNode (
|
|
26
|
-
leftIcon?: React__default.ReactNode;
|
|
27
|
-
/** Right icon as ReactNode
|
|
28
|
-
rightIcon?: React__default.ReactNode;
|
|
29
|
-
/**
|
|
30
|
-
icon?: LucideIcon | string;
|
|
31
|
-
/**
|
|
32
|
-
iconRight?: LucideIcon | string;
|
|
25
|
+
/** Left icon as ReactNode, Lucide component, or string name (e.g. "plus", "trash") */
|
|
26
|
+
leftIcon?: React__default.ReactNode | LucideIcon | string;
|
|
27
|
+
/** Right icon as ReactNode, Lucide component, or string name */
|
|
28
|
+
rightIcon?: React__default.ReactNode | LucideIcon | string;
|
|
29
|
+
/** Alias for leftIcon */
|
|
30
|
+
icon?: React__default.ReactNode | LucideIcon | string;
|
|
31
|
+
/** Alias for rightIcon */
|
|
32
|
+
iconRight?: React__default.ReactNode | LucideIcon | string;
|
|
33
33
|
/** Declarative event name — emits UI:{action} via eventBus on click */
|
|
34
34
|
action?: string;
|
|
35
35
|
/** Payload to include with the action event */
|
package/dist/components/index.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import { DEFAULT_CONFIG, renderStateMachineToDomData, parseContentSegments, isDebugEnabled, onDebugToggle, subscribeToTickChanges, subscribeToGuardChanges, subscribeToDebugEvents, getEntitySnapshot, getDebugEvents, getGuardHistory, getAllTicks } from '../chunk-4ZBSL37D.js';
|
|
2
|
-
import { useAuthContext } from '../chunk-
|
|
3
|
-
export { ENTITY_EVENTS, useAgentChat, useAuthContext, useCompile, useConnectGitHub, useCreateEntity, useDeepAgentGeneration, useDeleteEntity, useDisconnectGitHub, useEntities, useEntitiesByType, useEntity as useEntityById, useEntityMutations, useExtensions, useFileEditor, useFileSystem, useGitHubBranches, useGitHubRepo, useGitHubRepos, useGitHubStatus, useInput, useOrbitalHistory, useOrbitalMutations, usePhysics, usePinchZoom, usePlayer, usePreview, useResolvedEntity, useSelectedEntity, useSendOrbitalEvent, useSingletonEntity, useUIEvents, useUpdateEntity, useValidation } from '../chunk-
|
|
2
|
+
import { useAuthContext } from '../chunk-PERGHHON.js';
|
|
3
|
+
export { ENTITY_EVENTS, useAgentChat, useAuthContext, useCompile, useConnectGitHub, useCreateEntity, useDeepAgentGeneration, useDeleteEntity, useDisconnectGitHub, useEntities, useEntitiesByType, useEntity as useEntityById, useEntityMutations, useExtensions, useFileEditor, useFileSystem, useGitHubBranches, useGitHubRepo, useGitHubRepos, useGitHubStatus, useInput, useOrbitalHistory, useOrbitalMutations, usePhysics, usePinchZoom, usePlayer, usePreview, useResolvedEntity, useSelectedEntity, useSendOrbitalEvent, useSingletonEntity, useUIEvents, useUpdateEntity, useValidation } from '../chunk-PERGHHON.js';
|
|
4
4
|
export { clearEntities, getAllEntities, getByType, getEntity, getSingleton, removeEntity, spawnEntity, updateEntity, updateSingleton } from '../chunk-N7MVUW4R.js';
|
|
5
5
|
import { subscribeToTraitChanges, getAllTraits } from '../chunk-42YQ6JVR.js';
|
|
6
6
|
import '../chunk-3HJHHULT.js';
|
|
7
|
-
import { VStack, HStack, Typography, Button, Icon, Box, Card, Avatar, Badge, SearchInput, Checkbox, Menu as Menu$1, Pagination, LoadingState, EmptyState, Modal, ErrorState, QuizBlock, CodeBlock, ScaledDiagram, MarkdownContent, Divider, ProgressBar, isoToScreen, IsometricCanvas_default, Stack, Select, Drawer, Toast, Tabs, Input, ThemeToggle, TILE_WIDTH, EntityDisplayEvents, StateIndicator, Accordion, ButtonGroup, Container } from '../chunk-
|
|
8
|
-
export { ALL_PRESETS, Accordion, ActionButton, ActionButtons, Card2 as ActionCard, Alert, AnimatedCounter, Avatar, Badge, Box, Breadcrumb, Button, ButtonGroup, CalendarGrid, CanvasEffect, Card, CardBody, CardContent, CardFooter, CardGrid, CardHeader, CardTitle, Carousel, Center, Chart, ChartLegend, Checkbox, ChoiceButton, CodeBlock, CombatLog, ComboCounter, ConditionalWrapper, ConfettiEffect, Container, ControlButton, CraftingRecipe, DIAMOND_TOP_Y, DPad, DamageNumber, DataGrid, DataList, DataTable, DateRangeSelector, DayCell, DetailPanel, DialogueBox, DialogueBubble, Divider, Drawer, EmptyState, EnemyPlate, EntityDisplayEvents, ErrorBoundary, ErrorState, FEATURE_COLORS, FLOOR_HEIGHT, FilterGroup, Flex, FlipCard, FlipContainer, FloatingActionButton, Form, FormField, FormSectionHeader, GameCanvas2D, GameHud, GameMenu, GameOverScreen, GraphView, Grid, HStack, Heading, HealthBar, HealthPanel, Icon, InfiniteScrollSentinel, Input, InputGroup, InventoryGrid, InventoryPanel, IsometricCanvas, ItemSlot, Label, LawReferenceTooltip, Lightbox, LineChart, LoadingState, MapView, MarkdownContent, MasterDetail, Menu, Meter, MiniMap, Modal, NumberStepper, Overlay, PageHeader, Pagination, PlatformerCanvas, Popover, PowerupSlots, ProgressBar, ProgressDots, PullToRefresh, QuestTracker, QuizBlock, Radio, RangeSlider, RelationSelect, RepeatableFormSection, ResourceBar, ResourceCounter, ScaledDiagram, ScoreBoard, ScoreDisplay, SearchInput, Select, SidePanel, SimpleGrid, SimulationCanvas, SimulationControls, SimulationGraph, Skeleton, SlotContentRenderer, SortableList, Spacer, Spinner, Sprite, Stack, StarRating, StatBadge, StatCard, StatDisplay, StateIndicator, StatusDot, StatusEffect, SwipeableRow, Switch, TILE_HEIGHT, TILE_WIDTH, Tabs, Text, TextHighlight, Textarea, ThemeSelector, ThemeToggle, TimeSlotCell, TimerDisplay, Toast, Tooltip, TrendIndicator, TurnIndicator, TurnPanel, TypewriterText, Typography, UISlotComponent, UISlotRenderer, UnitCommandBar, UploadDropZone, VStack, ViolationAlert, WaypointMarker, WizardNavigation, WizardProgress, XPBar, drawSprite, isoToScreen, pendulum, projectileMotion, screenToIso, springOscillator, useCamera, useImageCache } from '../chunk-
|
|
7
|
+
import { VStack, HStack, Typography, Button, Icon, Box, Card, Avatar, Badge, SearchInput, Checkbox, Menu as Menu$1, Pagination, LoadingState, EmptyState, Modal, ErrorState, QuizBlock, CodeBlock, ScaledDiagram, MarkdownContent, Divider, ProgressBar, isoToScreen, IsometricCanvas_default, Stack, Select, Drawer, Toast, Tabs, Input, ThemeToggle, TILE_WIDTH, EntityDisplayEvents, StateIndicator, Accordion, ButtonGroup, Container } from '../chunk-2GI2TR4Y.js';
|
|
8
|
+
export { ALL_PRESETS, Accordion, ActionButton, ActionButtons, Card2 as ActionCard, Alert, AnimatedCounter, Avatar, Badge, Box, Breadcrumb, Button, ButtonGroup, CalendarGrid, CanvasEffect, Card, CardBody, CardContent, CardFooter, CardGrid, CardHeader, CardTitle, Carousel, Center, Chart, ChartLegend, Checkbox, ChoiceButton, CodeBlock, CombatLog, ComboCounter, ConditionalWrapper, ConfettiEffect, Container, ControlButton, CraftingRecipe, DIAMOND_TOP_Y, DPad, DamageNumber, DataGrid, DataList, DataTable, DateRangeSelector, DayCell, DetailPanel, DialogueBox, DialogueBubble, Divider, Drawer, EmptyState, EnemyPlate, EntityDisplayEvents, ErrorBoundary, ErrorState, FEATURE_COLORS, FLOOR_HEIGHT, FilterGroup, Flex, FlipCard, FlipContainer, FloatingActionButton, Form, FormField, FormSectionHeader, GameCanvas2D, GameHud, GameMenu, GameOverScreen, GraphView, Grid, HStack, Heading, HealthBar, HealthPanel, Icon, InfiniteScrollSentinel, Input, InputGroup, InventoryGrid, InventoryPanel, IsometricCanvas, ItemSlot, Label, LawReferenceTooltip, Lightbox, LineChart, LoadingState, MapView, MarkdownContent, MasterDetail, Menu, Meter, MiniMap, Modal, NumberStepper, Overlay, PageHeader, Pagination, PlatformerCanvas, Popover, PowerupSlots, ProgressBar, ProgressDots, PullToRefresh, QuestTracker, QuizBlock, Radio, RangeSlider, RelationSelect, RepeatableFormSection, ResourceBar, ResourceCounter, ScaledDiagram, ScoreBoard, ScoreDisplay, SearchInput, Select, SidePanel, SimpleGrid, SimulationCanvas, SimulationControls, SimulationGraph, Skeleton, SlotContentRenderer, SortableList, Spacer, Spinner, Sprite, Stack, StarRating, StatBadge, StatCard, StatDisplay, StateIndicator, StatusDot, StatusEffect, SwipeableRow, Switch, TILE_HEIGHT, TILE_WIDTH, Tabs, Text, TextHighlight, Textarea, ThemeSelector, ThemeToggle, TimeSlotCell, TimerDisplay, Toast, Tooltip, TrendIndicator, TurnIndicator, TurnPanel, TypewriterText, Typography, UISlotComponent, UISlotRenderer, UnitCommandBar, UploadDropZone, VStack, ViolationAlert, WaypointMarker, WizardNavigation, WizardProgress, XPBar, drawSprite, isoToScreen, pendulum, projectileMotion, screenToIso, springOscillator, useCamera, useImageCache } from '../chunk-2GI2TR4Y.js';
|
|
9
9
|
import '../chunk-DKQN5FVU.js';
|
|
10
|
-
import { useTranslate } from '../chunk-
|
|
11
|
-
export { EntityDataProvider, I18nProvider, createTranslate, entityDataKeys, parseQueryBinding, useDragReorder, useEntity, useEntityDataAdapter, useEntityDetail, useEntityList, useEntityListSuspense, useEntitySuspense, useInfiniteScroll, useLongPress, usePullToRefresh, useQuerySingleton, useSwipeGesture, useTranslate } from '../chunk-
|
|
10
|
+
import { useTranslate } from '../chunk-Y7IHEYYE.js';
|
|
11
|
+
export { EntityDataProvider, I18nProvider, createTranslate, entityDataKeys, parseQueryBinding, useDragReorder, useEntity, useEntityDataAdapter, useEntityDetail, useEntityList, useEntityListSuspense, useEntitySuspense, useInfiniteScroll, useLongPress, usePullToRefresh, useQuerySingleton, useSwipeGesture, useTranslate } from '../chunk-Y7IHEYYE.js';
|
|
12
12
|
import { useEventBus, useEventListener } from '../chunk-YXZM3WCF.js';
|
|
13
13
|
export { useEmitEvent, useEventBus, useEventListener } from '../chunk-YXZM3WCF.js';
|
|
14
14
|
export { DEFAULT_SLOTS, useUISlotManager } from '../chunk-3JGAROCW.js';
|
|
15
15
|
import { cn, getNestedValue, subscribeToVerification, getSummary, getBridgeHealth, getTransitions, getAllChecks } from '../chunk-WCTZ7WZX.js';
|
|
16
16
|
export { cn } from '../chunk-WCTZ7WZX.js';
|
|
17
|
-
import '../chunk-
|
|
17
|
+
import '../chunk-2XXSUIOK.js';
|
|
18
18
|
import '../chunk-K2D5D3WK.js';
|
|
19
19
|
import { __publicField } from '../chunk-PKBMQBKP.js';
|
|
20
20
|
import * as React44 from 'react';
|
package/dist/hooks/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export { ENTITY_EVENTS, useAgentChat, useAuthContext, useCompile, useConnectGitHub, useCreateEntity, useDeepAgentGeneration, useDeleteEntity, useDisconnectGitHub, useEntities, useEntitiesByType, useEntity as useEntityById, useEntityMutations, useExtensions, useFileEditor, useFileSystem, useGitHubBranches, useGitHubRepo, useGitHubRepos, useGitHubStatus, useInput, useOrbitalHistory, useOrbitalMutations, usePhysics, usePinchZoom, usePlayer, usePreview, useResolvedEntity, useSelectedEntity, useSendOrbitalEvent, useSingletonEntity, useUIEvents, useUpdateEntity, useValidation } from '../chunk-
|
|
1
|
+
export { ENTITY_EVENTS, useAgentChat, useAuthContext, useCompile, useConnectGitHub, useCreateEntity, useDeepAgentGeneration, useDeleteEntity, useDisconnectGitHub, useEntities, useEntitiesByType, useEntity as useEntityById, useEntityMutations, useExtensions, useFileEditor, useFileSystem, useGitHubBranches, useGitHubRepo, useGitHubRepos, useGitHubStatus, useInput, useOrbitalHistory, useOrbitalMutations, usePhysics, usePinchZoom, usePlayer, usePreview, useResolvedEntity, useSelectedEntity, useSendOrbitalEvent, useSingletonEntity, useUIEvents, useUpdateEntity, useValidation } from '../chunk-PERGHHON.js';
|
|
2
2
|
export { clearEntities, getAllEntities, getByType, getEntity, getSingleton, removeEntity, spawnEntity, updateEntity, updateSingleton } from '../chunk-N7MVUW4R.js';
|
|
3
3
|
import '../chunk-3HJHHULT.js';
|
|
4
|
-
export { EntityDataProvider, I18nProvider, createTranslate, entityDataKeys, parseQueryBinding, useDragReorder, useEntity, useEntityDataAdapter, useEntityDetail, useEntityList, useEntityListSuspense, useEntitySuspense, useInfiniteScroll, useLongPress, usePullToRefresh, useQuerySingleton, useSwipeGesture, useTranslate } from '../chunk-
|
|
4
|
+
export { EntityDataProvider, I18nProvider, createTranslate, entityDataKeys, parseQueryBinding, useDragReorder, useEntity, useEntityDataAdapter, useEntityDetail, useEntityList, useEntityListSuspense, useEntitySuspense, useInfiniteScroll, useLongPress, usePullToRefresh, useQuerySingleton, useSwipeGesture, useTranslate } from '../chunk-Y7IHEYYE.js';
|
|
5
5
|
export { useEmitEvent, useEventBus, useEventListener } from '../chunk-YXZM3WCF.js';
|
|
6
6
|
export { DEFAULT_SLOTS, useUISlotManager } from '../chunk-3JGAROCW.js';
|
|
7
|
-
import '../chunk-
|
|
7
|
+
import '../chunk-2XXSUIOK.js';
|
|
8
8
|
import '../chunk-PKBMQBKP.js';
|
package/dist/locales/index.js
CHANGED
package/dist/providers/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export { FetchedDataContext, FetchedDataProvider, OfflineModeProvider, OrbitalProvider, VerificationProvider, useFetchedData, useFetchedDataContext, useFetchedEntity, useOfflineMode, useOptionalOfflineMode } from '../chunk-
|
|
2
|
-
import '../chunk-
|
|
1
|
+
export { FetchedDataContext, FetchedDataProvider, OfflineModeProvider, OrbitalProvider, VerificationProvider, useFetchedData, useFetchedDataContext, useFetchedEntity, useOfflineMode, useOptionalOfflineMode } from '../chunk-UYR7S2DP.js';
|
|
2
|
+
import '../chunk-2GI2TR4Y.js';
|
|
3
3
|
import '../chunk-DKQN5FVU.js';
|
|
4
|
-
export { SelectionContext, SelectionProvider, useSelection, useSelectionOptional } from '../chunk-
|
|
4
|
+
export { SelectionContext, SelectionProvider, useSelection, useSelectionOptional } from '../chunk-Y7IHEYYE.js';
|
|
5
5
|
export { EventBusContext, EventBusProvider } from '../chunk-YXZM3WCF.js';
|
|
6
6
|
import '../chunk-3JGAROCW.js';
|
|
7
7
|
import '../chunk-WCTZ7WZX.js';
|
|
8
|
-
import '../chunk-
|
|
8
|
+
import '../chunk-2XXSUIOK.js';
|
|
9
9
|
import '../chunk-K2D5D3WK.js';
|
|
10
10
|
import '../chunk-PKBMQBKP.js';
|
package/dist/runtime/index.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import '../chunk-
|
|
1
|
+
import '../chunk-PERGHHON.js';
|
|
2
2
|
import '../chunk-N7MVUW4R.js';
|
|
3
3
|
import { registerTrait, unregisterTrait, updateTraitState } from '../chunk-42YQ6JVR.js';
|
|
4
4
|
import '../chunk-3HJHHULT.js';
|
|
5
|
-
import { useFetchedDataContext } from '../chunk-
|
|
6
|
-
import '../chunk-
|
|
5
|
+
import { useFetchedDataContext } from '../chunk-UYR7S2DP.js';
|
|
6
|
+
import '../chunk-2GI2TR4Y.js';
|
|
7
7
|
import '../chunk-DKQN5FVU.js';
|
|
8
|
-
import '../chunk-
|
|
8
|
+
import '../chunk-Y7IHEYYE.js';
|
|
9
9
|
import { useEventBus } from '../chunk-YXZM3WCF.js';
|
|
10
10
|
import '../chunk-3JGAROCW.js';
|
|
11
11
|
import { recordTransition } from '../chunk-WCTZ7WZX.js';
|
|
12
|
-
import '../chunk-
|
|
12
|
+
import '../chunk-2XXSUIOK.js';
|
|
13
13
|
import '../chunk-K2D5D3WK.js';
|
|
14
14
|
import '../chunk-PKBMQBKP.js';
|
|
15
15
|
import { createContext, useMemo, useContext, useState, useRef, useEffect, useCallback } from 'react';
|