@almadar/ui 5.76.6 → 5.76.7
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 +13 -9
- package/dist/avl/index.css +3 -3
- package/dist/avl/index.js +13 -9
- package/dist/components/core/atoms/FlipContainer.d.ts +1 -1
- package/dist/components/core/molecules/Card.d.ts +1 -1
- package/dist/components/core/molecules/DataGrid.d.ts +1 -1
- package/dist/components/core/molecules/DataList.d.ts +1 -1
- package/dist/components/core/molecules/DocPagination.d.ts +8 -1
- package/dist/components/core/molecules/DocSearch.d.ts +8 -1
- package/dist/components/core/molecules/FlipCard.d.ts +1 -1
- package/dist/components/core/molecules/MapView.d.ts +18 -1
- package/dist/components/core/molecules/SortableList.d.ts +1 -1
- package/dist/components/core/molecules/TableView.d.ts +1 -1
- package/dist/components/core/organisms/DataTable.d.ts +1 -1
- package/dist/components/core/organisms/debug/RuntimeDebugger.d.ts +10 -1
- package/dist/components/core/organisms/debug/tabs/EntitiesTab.d.ts +2 -1
- package/dist/components/core/organisms/debug/tabs/EventDispatcherTab.d.ts +2 -1
- package/dist/components/core/organisms/debug/tabs/EventFlowTab.d.ts +6 -1
- package/dist/components/core/organisms/debug/tabs/GuardsPanel.d.ts +6 -1
- package/dist/components/core/organisms/debug/tabs/ServerBridgeTab.d.ts +12 -1
- package/dist/components/core/organisms/debug/tabs/TicksTab.d.ts +2 -1
- package/dist/components/core/organisms/debug/tabs/TraitsTab.d.ts +2 -1
- package/dist/components/core/organisms/debug/tabs/TransitionTimeline.d.ts +11 -1
- package/dist/components/core/organisms/debug/tabs/VerificationTab.d.ts +8 -1
- package/dist/components/game/2d/atoms/ActionButton.d.ts +2 -1
- package/dist/components/game/2d/atoms/ChoiceButton.d.ts +2 -1
- package/dist/components/game/2d/atoms/ComboCounter.d.ts +2 -1
- package/dist/components/game/2d/atoms/ControlButton.d.ts +2 -1
- package/dist/components/game/2d/atoms/DamageNumber.d.ts +2 -1
- package/dist/components/game/2d/atoms/DialogueBubble.d.ts +2 -1
- package/dist/components/game/2d/atoms/GameIcon.d.ts +2 -1
- package/dist/components/game/2d/atoms/HealthBar.d.ts +2 -1
- package/dist/components/game/2d/atoms/ItemSlot.d.ts +2 -1
- package/dist/components/game/2d/atoms/MiniMap.d.ts +2 -1
- package/dist/components/game/2d/atoms/ResourceCounter.d.ts +2 -1
- package/dist/components/game/2d/atoms/ScoreDisplay.d.ts +2 -1
- package/dist/components/game/2d/atoms/StatusEffect.d.ts +2 -1
- package/dist/components/game/2d/atoms/TimerDisplay.d.ts +2 -1
- package/dist/components/game/2d/atoms/TurnIndicator.d.ts +2 -1
- package/dist/components/game/2d/atoms/WaypointMarker.d.ts +2 -1
- package/dist/components/game/2d/molecules/GameHud.d.ts +2 -1
- package/dist/components/game/2d/molecules/GameMenu.d.ts +2 -1
- package/dist/components/game/2d/molecules/InventoryGrid.d.ts +2 -1
- package/dist/components/game/2d/molecules/ResourceBar.d.ts +2 -1
- package/dist/components/game/2d/molecules/StatBadge.d.ts +2 -1
- package/dist/components/game/shared/lib/editorUtils.d.ts +8 -8
- package/dist/components/index.cjs +9 -5
- package/dist/components/index.css +3 -3
- package/dist/components/index.js +9 -5
- package/dist/hooks/useGitHub.d.ts +7 -7
- package/dist/marketing/index.cjs +2 -2
- package/dist/marketing/index.js +2 -2
- package/dist/providers/EventBusProvider.d.ts +1 -1
- package/dist/providers/SelectionProvider.d.ts +1 -1
- package/dist/providers/ServerBridge.d.ts +1 -1
- package/dist/providers/index.cjs +9 -5
- package/dist/providers/index.css +3 -3
- package/dist/providers/index.js +9 -5
- package/dist/runtime/index.cjs +9 -5
- package/dist/runtime/index.css +3 -3
- package/dist/runtime/index.js +9 -5
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
1
2
|
import type { ColorToken } from '../../../core/atoms/types';
|
|
2
3
|
import { type IconInput } from '../../../core/atoms/Icon';
|
|
3
4
|
import type { Asset } from '@almadar/core';
|
|
@@ -19,7 +20,7 @@ export interface ResourceCounterProps {
|
|
|
19
20
|
/** Additional CSS classes */
|
|
20
21
|
className?: string;
|
|
21
22
|
}
|
|
22
|
-
export declare function ResourceCounter({ assetUrl, icon, label, value, max, color, size, className, }: ResourceCounterProps):
|
|
23
|
+
export declare function ResourceCounter({ assetUrl, icon, label, value, max, color, size, className, }: ResourceCounterProps): React.JSX.Element;
|
|
23
24
|
export declare namespace ResourceCounter {
|
|
24
25
|
var displayName: string;
|
|
25
26
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
1
2
|
import { type IconInput } from '../../../core/atoms/Icon';
|
|
2
3
|
import type { Asset } from '@almadar/core';
|
|
3
4
|
export interface ScoreDisplayProps {
|
|
@@ -18,7 +19,7 @@ export interface ScoreDisplayProps {
|
|
|
18
19
|
/** Number formatting locale */
|
|
19
20
|
locale?: string;
|
|
20
21
|
}
|
|
21
|
-
export declare function ScoreDisplay({ assetUrl, value, score, label, icon, size, className, locale, }: ScoreDisplayProps):
|
|
22
|
+
export declare function ScoreDisplay({ assetUrl, value, score, label, icon, size, className, locale, }: ScoreDisplayProps): React.JSX.Element;
|
|
22
23
|
export declare namespace ScoreDisplay {
|
|
23
24
|
var displayName: string;
|
|
24
25
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
1
2
|
import { type IconInput } from '../../../core/atoms/Icon';
|
|
2
3
|
import type { Asset } from '@almadar/core';
|
|
3
4
|
export interface StatusEffectProps {
|
|
@@ -18,7 +19,7 @@ export interface StatusEffectProps {
|
|
|
18
19
|
/** Additional CSS classes */
|
|
19
20
|
className?: string;
|
|
20
21
|
}
|
|
21
|
-
export declare function StatusEffect({ assetUrl, icon, label, duration, stacks, variant, size, className, }: StatusEffectProps):
|
|
22
|
+
export declare function StatusEffect({ assetUrl, icon, label, duration, stacks, variant, size, className, }: StatusEffectProps): React.JSX.Element;
|
|
22
23
|
export declare namespace StatusEffect {
|
|
23
24
|
var displayName: string;
|
|
24
25
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
1
2
|
export interface TimerDisplayProps {
|
|
2
3
|
/** Time in seconds */
|
|
3
4
|
seconds: number;
|
|
@@ -12,7 +13,7 @@ export interface TimerDisplayProps {
|
|
|
12
13
|
/** Seconds below which to pulse red */
|
|
13
14
|
lowThreshold?: number;
|
|
14
15
|
}
|
|
15
|
-
export declare function TimerDisplay({ seconds, running, format, size, className, lowThreshold, }: TimerDisplayProps):
|
|
16
|
+
export declare function TimerDisplay({ seconds, running, format, size, className, lowThreshold, }: TimerDisplayProps): React.JSX.Element;
|
|
16
17
|
export declare namespace TimerDisplay {
|
|
17
18
|
var displayName: string;
|
|
18
19
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
1
2
|
import type { Asset } from '@almadar/core';
|
|
2
3
|
export interface TurnIndicatorProps {
|
|
3
4
|
/** Sprite asset — takes precedence over the dot indicator when provided */
|
|
@@ -15,7 +16,7 @@ export interface TurnIndicatorProps {
|
|
|
15
16
|
/** Additional CSS classes */
|
|
16
17
|
className?: string;
|
|
17
18
|
}
|
|
18
|
-
export declare function TurnIndicator({ assetUrl, currentTurn, maxTurns, activeTeam, phase, size, className, }: TurnIndicatorProps):
|
|
19
|
+
export declare function TurnIndicator({ assetUrl, currentTurn, maxTurns, activeTeam, phase, size, className, }: TurnIndicatorProps): React.JSX.Element;
|
|
19
20
|
export declare namespace TurnIndicator {
|
|
20
21
|
var displayName: string;
|
|
21
22
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
1
2
|
import { type IconInput } from '../../../core/atoms/Icon';
|
|
2
3
|
import type { Asset } from '@almadar/core';
|
|
3
4
|
export interface WaypointMarkerProps {
|
|
@@ -16,7 +17,7 @@ export interface WaypointMarkerProps {
|
|
|
16
17
|
/** Additional CSS classes */
|
|
17
18
|
className?: string;
|
|
18
19
|
}
|
|
19
|
-
export declare function WaypointMarker({ assetUrl, label, icon, active, completed, size, className, }: WaypointMarkerProps):
|
|
20
|
+
export declare function WaypointMarker({ assetUrl, label, icon, active, completed, size, className, }: WaypointMarkerProps): React.JSX.Element;
|
|
20
21
|
export declare namespace WaypointMarker {
|
|
21
22
|
var displayName: string;
|
|
22
23
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as React from "react";
|
|
1
2
|
import { type StatBadgeProps } from "./StatBadge";
|
|
2
3
|
import type { Asset } from "@almadar/core";
|
|
3
4
|
import type { IconInput } from "../../../core/atoms/index";
|
|
@@ -45,7 +46,7 @@ export interface GameHudProps {
|
|
|
45
46
|
/** Whether to use a semi-transparent background */
|
|
46
47
|
transparent?: boolean;
|
|
47
48
|
}
|
|
48
|
-
export declare function GameHud({ position: propPosition, stats: propStats, items, elements, size, className, transparent, }: GameHudProps):
|
|
49
|
+
export declare function GameHud({ position: propPosition, stats: propStats, items, elements, size, className, transparent, }: GameHudProps): React.JSX.Element;
|
|
49
50
|
export declare namespace GameHud {
|
|
50
51
|
var displayName: string;
|
|
51
52
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as React from "react";
|
|
1
2
|
import type { EventKey, EventPayload } from "@almadar/core";
|
|
2
3
|
import { type EventBusContextType } from "../../../../hooks/useEventBus";
|
|
3
4
|
export type MenuOption = EventPayload & {
|
|
@@ -38,7 +39,7 @@ export interface GameMenuProps {
|
|
|
38
39
|
/** Additional CSS classes */
|
|
39
40
|
className?: string;
|
|
40
41
|
}
|
|
41
|
-
export declare function GameMenu({ title, subtitle, options, menuItems, onSelect, eventBus: eventBusProp, background, logo, className, }: GameMenuProps):
|
|
42
|
+
export declare function GameMenu({ title, subtitle, options, menuItems, onSelect, eventBus: eventBusProp, background, logo, className, }: GameMenuProps): React.JSX.Element;
|
|
42
43
|
export declare namespace GameMenu {
|
|
43
44
|
var displayName: string;
|
|
44
45
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
1
2
|
import type { EventEmit, Asset } from '@almadar/core';
|
|
2
3
|
import type { IconInput } from '../../../core/atoms/index';
|
|
3
4
|
export interface InventoryGridItem {
|
|
@@ -28,7 +29,7 @@ export interface InventoryGridProps {
|
|
|
28
29
|
/** Additional CSS classes */
|
|
29
30
|
className?: string;
|
|
30
31
|
}
|
|
31
|
-
export declare function InventoryGrid({ items, columns, totalSlots, selectedId, onSelect, selectEvent, size, className, }: InventoryGridProps):
|
|
32
|
+
export declare function InventoryGrid({ items, columns, totalSlots, selectedId, onSelect, selectEvent, size, className, }: InventoryGridProps): React.JSX.Element;
|
|
32
33
|
export declare namespace InventoryGrid {
|
|
33
34
|
var displayName: string;
|
|
34
35
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
1
2
|
import type { Asset } from '@almadar/core';
|
|
2
3
|
import type { IconInput } from '../../../core/atoms/index';
|
|
3
4
|
export interface ResourceBarResource {
|
|
@@ -19,7 +20,7 @@ export interface ResourceBarProps {
|
|
|
19
20
|
/** Additional CSS classes */
|
|
20
21
|
className?: string;
|
|
21
22
|
}
|
|
22
|
-
export declare function ResourceBar({ resources, size, className, }: ResourceBarProps):
|
|
23
|
+
export declare function ResourceBar({ resources, size, className, }: ResourceBarProps): React.JSX.Element;
|
|
23
24
|
export declare namespace ResourceBar {
|
|
24
25
|
var displayName: string;
|
|
25
26
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
1
2
|
import { type IconInput } from '../../../core/atoms/Icon';
|
|
2
3
|
import type { Asset } from '@almadar/core';
|
|
3
4
|
/**
|
|
@@ -32,7 +33,7 @@ export interface StatBadgeProps {
|
|
|
32
33
|
/** Additional CSS classes */
|
|
33
34
|
className?: string;
|
|
34
35
|
}
|
|
35
|
-
export declare function StatBadge({ assetUrl, iconUrl, label, value, max, format, icon, size, variant, className, source: _source, field: _field, }: StatBadgeProps):
|
|
36
|
+
export declare function StatBadge({ assetUrl, iconUrl, label, value, max, format, icon, size, variant, className, source: _source, field: _field, }: StatBadgeProps): React.JSX.Element;
|
|
36
37
|
export declare namespace StatBadge {
|
|
37
38
|
var displayName: string;
|
|
38
39
|
}
|
|
@@ -23,7 +23,7 @@ export interface CollapsibleSectionProps {
|
|
|
23
23
|
};
|
|
24
24
|
className?: string;
|
|
25
25
|
}
|
|
26
|
-
export declare function CollapsibleSection({ title, expanded, onToggle, children, assetManifest, className }: CollapsibleSectionProps):
|
|
26
|
+
export declare function CollapsibleSection({ title, expanded, onToggle, children, assetManifest, className }: CollapsibleSectionProps): React.JSX.Element;
|
|
27
27
|
export declare namespace CollapsibleSection {
|
|
28
28
|
var displayName: string;
|
|
29
29
|
}
|
|
@@ -36,7 +36,7 @@ export interface EditorSliderProps {
|
|
|
36
36
|
onChange: (value: number) => void;
|
|
37
37
|
className?: string;
|
|
38
38
|
}
|
|
39
|
-
export declare function EditorSlider({ label, value, min, max, step, onChange, className }: EditorSliderProps):
|
|
39
|
+
export declare function EditorSlider({ label, value, min, max, step, onChange, className }: EditorSliderProps): React.JSX.Element;
|
|
40
40
|
export declare namespace EditorSlider {
|
|
41
41
|
var displayName: string;
|
|
42
42
|
}
|
|
@@ -50,7 +50,7 @@ export interface EditorSelectProps {
|
|
|
50
50
|
onChange: (value: string) => void;
|
|
51
51
|
className?: string;
|
|
52
52
|
}
|
|
53
|
-
export declare function EditorSelect({ label, value, options, onChange, className }: EditorSelectProps):
|
|
53
|
+
export declare function EditorSelect({ label, value, options, onChange, className }: EditorSelectProps): React.JSX.Element;
|
|
54
54
|
export declare namespace EditorSelect {
|
|
55
55
|
var displayName: string;
|
|
56
56
|
}
|
|
@@ -60,7 +60,7 @@ export interface EditorCheckboxProps {
|
|
|
60
60
|
onChange: (checked: boolean) => void;
|
|
61
61
|
className?: string;
|
|
62
62
|
}
|
|
63
|
-
export declare function EditorCheckbox({ label, checked, onChange, className }: EditorCheckboxProps):
|
|
63
|
+
export declare function EditorCheckbox({ label, checked, onChange, className }: EditorCheckboxProps): React.JSX.Element;
|
|
64
64
|
export declare namespace EditorCheckbox {
|
|
65
65
|
var displayName: string;
|
|
66
66
|
}
|
|
@@ -71,7 +71,7 @@ export interface EditorTextInputProps {
|
|
|
71
71
|
placeholder?: string;
|
|
72
72
|
className?: string;
|
|
73
73
|
}
|
|
74
|
-
export declare function EditorTextInput({ label, value, onChange, placeholder, className }: EditorTextInputProps):
|
|
74
|
+
export declare function EditorTextInput({ label, value, onChange, placeholder, className }: EditorTextInputProps): React.JSX.Element;
|
|
75
75
|
export declare namespace EditorTextInput {
|
|
76
76
|
var displayName: string;
|
|
77
77
|
}
|
|
@@ -89,7 +89,7 @@ export interface StatusBarProps {
|
|
|
89
89
|
featureCount?: number;
|
|
90
90
|
className?: string;
|
|
91
91
|
}
|
|
92
|
-
export declare function StatusBar({ hoveredTile, mode, gridSize, unitCount, featureCount, className }: StatusBarProps):
|
|
92
|
+
export declare function StatusBar({ hoveredTile, mode, gridSize, unitCount, featureCount, className }: StatusBarProps): React.JSX.Element;
|
|
93
93
|
export declare namespace StatusBar {
|
|
94
94
|
var displayName: string;
|
|
95
95
|
}
|
|
@@ -99,7 +99,7 @@ export interface TerrainPaletteProps {
|
|
|
99
99
|
onSelect: (terrain: string) => void;
|
|
100
100
|
className?: string;
|
|
101
101
|
}
|
|
102
|
-
export declare function TerrainPalette({ terrains, selectedTerrain, onSelect, className }: TerrainPaletteProps):
|
|
102
|
+
export declare function TerrainPalette({ terrains, selectedTerrain, onSelect, className }: TerrainPaletteProps): React.JSX.Element;
|
|
103
103
|
export declare namespace TerrainPalette {
|
|
104
104
|
var displayName: string;
|
|
105
105
|
}
|
|
@@ -108,7 +108,7 @@ export interface EditorToolbarProps {
|
|
|
108
108
|
onModeChange: (mode: EditorMode) => void;
|
|
109
109
|
className?: string;
|
|
110
110
|
}
|
|
111
|
-
export declare function EditorToolbar({ mode, onModeChange, className }: EditorToolbarProps):
|
|
111
|
+
export declare function EditorToolbar({ mode, onModeChange, className }: EditorToolbarProps): React.JSX.Element;
|
|
112
112
|
export declare namespace EditorToolbar {
|
|
113
113
|
var displayName: string;
|
|
114
114
|
}
|
|
@@ -4039,7 +4039,11 @@ var init_Switch = __esm({
|
|
|
4039
4039
|
disabled,
|
|
4040
4040
|
onClick: handleClick,
|
|
4041
4041
|
className: cn(
|
|
4042
|
-
|
|
4042
|
+
// Fixed rem sizes instead of spacing tokens: themes like atelier
|
|
4043
|
+
// redefine --space-11 to 68px, which makes w-11 enormous and leaves
|
|
4044
|
+
// the thumb stuck near the left edge. The switch geometry must stay
|
|
4045
|
+
// proportional regardless of a theme's density scale.
|
|
4046
|
+
"relative inline-flex h-[1.5rem] w-[2.75rem] shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors",
|
|
4043
4047
|
"focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background",
|
|
4044
4048
|
isChecked ? "bg-primary" : "bg-muted",
|
|
4045
4049
|
disabled && "cursor-not-allowed opacity-50"
|
|
@@ -4048,8 +4052,8 @@ var init_Switch = __esm({
|
|
|
4048
4052
|
"span",
|
|
4049
4053
|
{
|
|
4050
4054
|
className: cn(
|
|
4051
|
-
"pointer-events-none block h-
|
|
4052
|
-
isChecked ? "translate-x-
|
|
4055
|
+
"pointer-events-none block h-[1.25rem] w-[1.25rem] rounded-full bg-background shadow-lg ring-0 transition-transform",
|
|
4056
|
+
isChecked ? "translate-x-[1.25rem]" : "translate-x-0"
|
|
4053
4057
|
)
|
|
4054
4058
|
}
|
|
4055
4059
|
)
|
|
@@ -12350,9 +12354,9 @@ var init_BehaviorView = __esm({
|
|
|
12350
12354
|
}
|
|
12351
12355
|
});
|
|
12352
12356
|
|
|
12353
|
-
// node_modules/katex/dist/katex.min.css
|
|
12357
|
+
// node_modules/.pnpm/katex@0.16.47/node_modules/katex/dist/katex.min.css
|
|
12354
12358
|
var init_katex_min = __esm({
|
|
12355
|
-
"node_modules/katex/dist/katex.min.css"() {
|
|
12359
|
+
"node_modules/.pnpm/katex@0.16.47/node_modules/katex/dist/katex.min.css"() {
|
|
12356
12360
|
}
|
|
12357
12361
|
});
|
|
12358
12362
|
exports.Tabs = void 0;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* node_modules/katex/dist/katex.min.css */
|
|
1
|
+
/* node_modules/.pnpm/katex@0.16.47/node_modules/katex/dist/katex.min.css */
|
|
2
2
|
@font-face {
|
|
3
3
|
font-display: block;
|
|
4
4
|
font-family: KaTeX_AMS;
|
|
@@ -214,11 +214,11 @@
|
|
|
214
214
|
border-color: currentColor;
|
|
215
215
|
}
|
|
216
216
|
.katex .katex-version:after {
|
|
217
|
-
content: "0.16.
|
|
217
|
+
content: "0.16.47";
|
|
218
218
|
}
|
|
219
219
|
.katex .katex-mathml {
|
|
220
|
-
clip: rect(1px, 1px, 1px, 1px);
|
|
221
220
|
border: 0;
|
|
221
|
+
clip-path: inset(50%);
|
|
222
222
|
height: 1px;
|
|
223
223
|
overflow: hidden;
|
|
224
224
|
padding: 0;
|
package/dist/components/index.js
CHANGED
|
@@ -3993,7 +3993,11 @@ var init_Switch = __esm({
|
|
|
3993
3993
|
disabled,
|
|
3994
3994
|
onClick: handleClick,
|
|
3995
3995
|
className: cn(
|
|
3996
|
-
|
|
3996
|
+
// Fixed rem sizes instead of spacing tokens: themes like atelier
|
|
3997
|
+
// redefine --space-11 to 68px, which makes w-11 enormous and leaves
|
|
3998
|
+
// the thumb stuck near the left edge. The switch geometry must stay
|
|
3999
|
+
// proportional regardless of a theme's density scale.
|
|
4000
|
+
"relative inline-flex h-[1.5rem] w-[2.75rem] shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors",
|
|
3997
4001
|
"focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background",
|
|
3998
4002
|
isChecked ? "bg-primary" : "bg-muted",
|
|
3999
4003
|
disabled && "cursor-not-allowed opacity-50"
|
|
@@ -4002,8 +4006,8 @@ var init_Switch = __esm({
|
|
|
4002
4006
|
"span",
|
|
4003
4007
|
{
|
|
4004
4008
|
className: cn(
|
|
4005
|
-
"pointer-events-none block h-
|
|
4006
|
-
isChecked ? "translate-x-
|
|
4009
|
+
"pointer-events-none block h-[1.25rem] w-[1.25rem] rounded-full bg-background shadow-lg ring-0 transition-transform",
|
|
4010
|
+
isChecked ? "translate-x-[1.25rem]" : "translate-x-0"
|
|
4007
4011
|
)
|
|
4008
4012
|
}
|
|
4009
4013
|
)
|
|
@@ -12304,9 +12308,9 @@ var init_BehaviorView = __esm({
|
|
|
12304
12308
|
}
|
|
12305
12309
|
});
|
|
12306
12310
|
|
|
12307
|
-
// node_modules/katex/dist/katex.min.css
|
|
12311
|
+
// node_modules/.pnpm/katex@0.16.47/node_modules/katex/dist/katex.min.css
|
|
12308
12312
|
var init_katex_min = __esm({
|
|
12309
|
-
"node_modules/katex/dist/katex.min.css"() {
|
|
12313
|
+
"node_modules/.pnpm/katex@0.16.47/node_modules/katex/dist/katex.min.css"() {
|
|
12310
12314
|
}
|
|
12311
12315
|
});
|
|
12312
12316
|
var Tabs;
|
|
@@ -25,7 +25,7 @@ export interface GitHubRepo {
|
|
|
25
25
|
/**
|
|
26
26
|
* Hook to get GitHub connection status
|
|
27
27
|
*/
|
|
28
|
-
export declare function useGitHubStatus(): import("@tanstack/react-query").UseQueryResult<GitHubStatus
|
|
28
|
+
export declare function useGitHubStatus(): import("@tanstack/react-query").UseQueryResult<NoInfer<GitHubStatus>, Error>;
|
|
29
29
|
/**
|
|
30
30
|
* Hook to connect GitHub (initiate OAuth flow)
|
|
31
31
|
*/
|
|
@@ -39,20 +39,20 @@ export declare function useDisconnectGitHub(): import("@tanstack/react-query").U
|
|
|
39
39
|
/**
|
|
40
40
|
* Hook to list GitHub repositories
|
|
41
41
|
*/
|
|
42
|
-
export declare function useGitHubRepos(page?: number, perPage?: number): import("@tanstack/react-query").UseQueryResult<{
|
|
42
|
+
export declare function useGitHubRepos(page?: number, perPage?: number): import("@tanstack/react-query").UseQueryResult<NoInfer<{
|
|
43
43
|
repos: GitHubRepo[];
|
|
44
44
|
page: number;
|
|
45
45
|
perPage: number;
|
|
46
|
-
}
|
|
46
|
+
}>, Error>;
|
|
47
47
|
/**
|
|
48
48
|
* Hook to get repository details
|
|
49
49
|
*/
|
|
50
|
-
export declare function useGitHubRepo(owner: string, repo: string, enabled?: boolean): import("@tanstack/react-query").UseQueryResult<{
|
|
50
|
+
export declare function useGitHubRepo(owner: string, repo: string, enabled?: boolean): import("@tanstack/react-query").UseQueryResult<NoInfer<{
|
|
51
51
|
repo: GitHubRepo;
|
|
52
|
-
}
|
|
52
|
+
}>, Error>;
|
|
53
53
|
/**
|
|
54
54
|
* Hook to list repository branches
|
|
55
55
|
*/
|
|
56
|
-
export declare function useGitHubBranches(owner: string, repo: string, enabled?: boolean): import("@tanstack/react-query").UseQueryResult<{
|
|
56
|
+
export declare function useGitHubBranches(owner: string, repo: string, enabled?: boolean): import("@tanstack/react-query").UseQueryResult<NoInfer<{
|
|
57
57
|
branches: string[];
|
|
58
|
-
}
|
|
58
|
+
}>, Error>;
|
package/dist/marketing/index.cjs
CHANGED
|
@@ -28,7 +28,7 @@ function _interopNamespace(e) {
|
|
|
28
28
|
var React11__default = /*#__PURE__*/_interopDefault(React11);
|
|
29
29
|
var LucideIcons2__namespace = /*#__PURE__*/_interopNamespace(LucideIcons2);
|
|
30
30
|
|
|
31
|
-
// node_modules/clsx/dist/clsx.mjs
|
|
31
|
+
// node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs
|
|
32
32
|
function r(e) {
|
|
33
33
|
var t, f3, n = "";
|
|
34
34
|
if ("string" == typeof e || "number" == typeof e) n += e;
|
|
@@ -43,7 +43,7 @@ function clsx() {
|
|
|
43
43
|
return n;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
// node_modules/tailwind-merge/dist/bundle-mjs.mjs
|
|
46
|
+
// node_modules/.pnpm/tailwind-merge@2.6.1/node_modules/tailwind-merge/dist/bundle-mjs.mjs
|
|
47
47
|
var CLASS_PART_SEPARATOR = "-";
|
|
48
48
|
var createClassGroupUtils = (config) => {
|
|
49
49
|
const classMap = createClassMap(config);
|
package/dist/marketing/index.js
CHANGED
|
@@ -4,7 +4,7 @@ import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
|
|
|
4
4
|
import * as LucideIcons2 from 'lucide-react';
|
|
5
5
|
import { Loader2, X } from 'lucide-react';
|
|
6
6
|
|
|
7
|
-
// node_modules/clsx/dist/clsx.mjs
|
|
7
|
+
// node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs
|
|
8
8
|
function r(e) {
|
|
9
9
|
var t, f3, n = "";
|
|
10
10
|
if ("string" == typeof e || "number" == typeof e) n += e;
|
|
@@ -19,7 +19,7 @@ function clsx() {
|
|
|
19
19
|
return n;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
// node_modules/tailwind-merge/dist/bundle-mjs.mjs
|
|
22
|
+
// node_modules/.pnpm/tailwind-merge@2.6.1/node_modules/tailwind-merge/dist/bundle-mjs.mjs
|
|
23
23
|
var CLASS_PART_SEPARATOR = "-";
|
|
24
24
|
var createClassGroupUtils = (config) => {
|
|
25
25
|
const classMap = createClassMap(config);
|
|
@@ -43,5 +43,5 @@ interface EventBusProviderProps {
|
|
|
43
43
|
*/
|
|
44
44
|
isolated?: boolean;
|
|
45
45
|
}
|
|
46
|
-
export declare function EventBusProvider({ children, isolated }: EventBusProviderProps):
|
|
46
|
+
export declare function EventBusProvider({ children, isolated }: EventBusProviderProps): React.JSX.Element;
|
|
47
47
|
export type { EventBusContextType };
|
|
@@ -50,7 +50,7 @@ interface SelectionProviderProps {
|
|
|
50
50
|
* }
|
|
51
51
|
* ```
|
|
52
52
|
*/
|
|
53
|
-
export declare function SelectionProvider({ children, debug, compareEntities, }: SelectionProviderProps):
|
|
53
|
+
export declare function SelectionProvider({ children, debug, compareEntities, }: SelectionProviderProps): React.JSX.Element;
|
|
54
54
|
/**
|
|
55
55
|
* Hook to access selection state.
|
|
56
56
|
*
|
|
@@ -98,5 +98,5 @@ export interface ServerBridgeProviderProps {
|
|
|
98
98
|
transport?: ServerBridgeTransport;
|
|
99
99
|
children: ReactNode;
|
|
100
100
|
}
|
|
101
|
-
export declare function ServerBridgeProvider({ schema, serverUrl, transport: customTransport, children, }: ServerBridgeProviderProps): import("react
|
|
101
|
+
export declare function ServerBridgeProvider({ schema, serverUrl, transport: customTransport, children, }: ServerBridgeProviderProps): import("react").JSX.Element;
|
|
102
102
|
export {};
|
package/dist/providers/index.cjs
CHANGED
|
@@ -4727,7 +4727,11 @@ var init_Switch = __esm({
|
|
|
4727
4727
|
disabled,
|
|
4728
4728
|
onClick: handleClick,
|
|
4729
4729
|
className: cn(
|
|
4730
|
-
|
|
4730
|
+
// Fixed rem sizes instead of spacing tokens: themes like atelier
|
|
4731
|
+
// redefine --space-11 to 68px, which makes w-11 enormous and leaves
|
|
4732
|
+
// the thumb stuck near the left edge. The switch geometry must stay
|
|
4733
|
+
// proportional regardless of a theme's density scale.
|
|
4734
|
+
"relative inline-flex h-[1.5rem] w-[2.75rem] shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors",
|
|
4731
4735
|
"focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background",
|
|
4732
4736
|
isChecked ? "bg-primary" : "bg-muted",
|
|
4733
4737
|
disabled && "cursor-not-allowed opacity-50"
|
|
@@ -4736,8 +4740,8 @@ var init_Switch = __esm({
|
|
|
4736
4740
|
"span",
|
|
4737
4741
|
{
|
|
4738
4742
|
className: cn(
|
|
4739
|
-
"pointer-events-none block h-
|
|
4740
|
-
isChecked ? "translate-x-
|
|
4743
|
+
"pointer-events-none block h-[1.25rem] w-[1.25rem] rounded-full bg-background shadow-lg ring-0 transition-transform",
|
|
4744
|
+
isChecked ? "translate-x-[1.25rem]" : "translate-x-0"
|
|
4741
4745
|
)
|
|
4742
4746
|
}
|
|
4743
4747
|
)
|
|
@@ -23027,9 +23031,9 @@ var init_BehaviorView = __esm({
|
|
|
23027
23031
|
}
|
|
23028
23032
|
});
|
|
23029
23033
|
|
|
23030
|
-
// node_modules/katex/dist/katex.min.css
|
|
23034
|
+
// node_modules/.pnpm/katex@0.16.47/node_modules/katex/dist/katex.min.css
|
|
23031
23035
|
var init_katex_min = __esm({
|
|
23032
|
-
"node_modules/katex/dist/katex.min.css"() {
|
|
23036
|
+
"node_modules/.pnpm/katex@0.16.47/node_modules/katex/dist/katex.min.css"() {
|
|
23033
23037
|
}
|
|
23034
23038
|
});
|
|
23035
23039
|
var Tabs;
|
package/dist/providers/index.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* node_modules/katex/dist/katex.min.css */
|
|
1
|
+
/* node_modules/.pnpm/katex@0.16.47/node_modules/katex/dist/katex.min.css */
|
|
2
2
|
@font-face {
|
|
3
3
|
font-display: block;
|
|
4
4
|
font-family: KaTeX_AMS;
|
|
@@ -214,11 +214,11 @@
|
|
|
214
214
|
border-color: currentColor;
|
|
215
215
|
}
|
|
216
216
|
.katex .katex-version:after {
|
|
217
|
-
content: "0.16.
|
|
217
|
+
content: "0.16.47";
|
|
218
218
|
}
|
|
219
219
|
.katex .katex-mathml {
|
|
220
|
-
clip: rect(1px, 1px, 1px, 1px);
|
|
221
220
|
border: 0;
|
|
221
|
+
clip-path: inset(50%);
|
|
222
222
|
height: 1px;
|
|
223
223
|
overflow: hidden;
|
|
224
224
|
padding: 0;
|
package/dist/providers/index.js
CHANGED
|
@@ -4682,7 +4682,11 @@ var init_Switch = __esm({
|
|
|
4682
4682
|
disabled,
|
|
4683
4683
|
onClick: handleClick,
|
|
4684
4684
|
className: cn(
|
|
4685
|
-
|
|
4685
|
+
// Fixed rem sizes instead of spacing tokens: themes like atelier
|
|
4686
|
+
// redefine --space-11 to 68px, which makes w-11 enormous and leaves
|
|
4687
|
+
// the thumb stuck near the left edge. The switch geometry must stay
|
|
4688
|
+
// proportional regardless of a theme's density scale.
|
|
4689
|
+
"relative inline-flex h-[1.5rem] w-[2.75rem] shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors",
|
|
4686
4690
|
"focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background",
|
|
4687
4691
|
isChecked ? "bg-primary" : "bg-muted",
|
|
4688
4692
|
disabled && "cursor-not-allowed opacity-50"
|
|
@@ -4691,8 +4695,8 @@ var init_Switch = __esm({
|
|
|
4691
4695
|
"span",
|
|
4692
4696
|
{
|
|
4693
4697
|
className: cn(
|
|
4694
|
-
"pointer-events-none block h-
|
|
4695
|
-
isChecked ? "translate-x-
|
|
4698
|
+
"pointer-events-none block h-[1.25rem] w-[1.25rem] rounded-full bg-background shadow-lg ring-0 transition-transform",
|
|
4699
|
+
isChecked ? "translate-x-[1.25rem]" : "translate-x-0"
|
|
4696
4700
|
)
|
|
4697
4701
|
}
|
|
4698
4702
|
)
|
|
@@ -22982,9 +22986,9 @@ var init_BehaviorView = __esm({
|
|
|
22982
22986
|
}
|
|
22983
22987
|
});
|
|
22984
22988
|
|
|
22985
|
-
// node_modules/katex/dist/katex.min.css
|
|
22989
|
+
// node_modules/.pnpm/katex@0.16.47/node_modules/katex/dist/katex.min.css
|
|
22986
22990
|
var init_katex_min = __esm({
|
|
22987
|
-
"node_modules/katex/dist/katex.min.css"() {
|
|
22991
|
+
"node_modules/.pnpm/katex@0.16.47/node_modules/katex/dist/katex.min.css"() {
|
|
22988
22992
|
}
|
|
22989
22993
|
});
|
|
22990
22994
|
var Tabs;
|
package/dist/runtime/index.cjs
CHANGED
|
@@ -5276,7 +5276,11 @@ var init_Switch = __esm({
|
|
|
5276
5276
|
disabled,
|
|
5277
5277
|
onClick: handleClick,
|
|
5278
5278
|
className: cn(
|
|
5279
|
-
|
|
5279
|
+
// Fixed rem sizes instead of spacing tokens: themes like atelier
|
|
5280
|
+
// redefine --space-11 to 68px, which makes w-11 enormous and leaves
|
|
5281
|
+
// the thumb stuck near the left edge. The switch geometry must stay
|
|
5282
|
+
// proportional regardless of a theme's density scale.
|
|
5283
|
+
"relative inline-flex h-[1.5rem] w-[2.75rem] shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors",
|
|
5280
5284
|
"focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background",
|
|
5281
5285
|
isChecked ? "bg-primary" : "bg-muted",
|
|
5282
5286
|
disabled && "cursor-not-allowed opacity-50"
|
|
@@ -5285,8 +5289,8 @@ var init_Switch = __esm({
|
|
|
5285
5289
|
"span",
|
|
5286
5290
|
{
|
|
5287
5291
|
className: cn(
|
|
5288
|
-
"pointer-events-none block h-
|
|
5289
|
-
isChecked ? "translate-x-
|
|
5292
|
+
"pointer-events-none block h-[1.25rem] w-[1.25rem] rounded-full bg-background shadow-lg ring-0 transition-transform",
|
|
5293
|
+
isChecked ? "translate-x-[1.25rem]" : "translate-x-0"
|
|
5290
5294
|
)
|
|
5291
5295
|
}
|
|
5292
5296
|
)
|
|
@@ -22991,9 +22995,9 @@ var init_BehaviorView = __esm({
|
|
|
22991
22995
|
}
|
|
22992
22996
|
});
|
|
22993
22997
|
|
|
22994
|
-
// node_modules/katex/dist/katex.min.css
|
|
22998
|
+
// node_modules/.pnpm/katex@0.16.47/node_modules/katex/dist/katex.min.css
|
|
22995
22999
|
var init_katex_min = __esm({
|
|
22996
|
-
"node_modules/katex/dist/katex.min.css"() {
|
|
23000
|
+
"node_modules/.pnpm/katex@0.16.47/node_modules/katex/dist/katex.min.css"() {
|
|
22997
23001
|
}
|
|
22998
23002
|
});
|
|
22999
23003
|
var Tabs;
|
package/dist/runtime/index.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* node_modules/katex/dist/katex.min.css */
|
|
1
|
+
/* node_modules/.pnpm/katex@0.16.47/node_modules/katex/dist/katex.min.css */
|
|
2
2
|
@font-face {
|
|
3
3
|
font-display: block;
|
|
4
4
|
font-family: KaTeX_AMS;
|
|
@@ -214,11 +214,11 @@
|
|
|
214
214
|
border-color: currentColor;
|
|
215
215
|
}
|
|
216
216
|
.katex .katex-version:after {
|
|
217
|
-
content: "0.16.
|
|
217
|
+
content: "0.16.47";
|
|
218
218
|
}
|
|
219
219
|
.katex .katex-mathml {
|
|
220
|
-
clip: rect(1px, 1px, 1px, 1px);
|
|
221
220
|
border: 0;
|
|
221
|
+
clip-path: inset(50%);
|
|
222
222
|
height: 1px;
|
|
223
223
|
overflow: hidden;
|
|
224
224
|
padding: 0;
|
package/dist/runtime/index.js
CHANGED
|
@@ -5231,7 +5231,11 @@ var init_Switch = __esm({
|
|
|
5231
5231
|
disabled,
|
|
5232
5232
|
onClick: handleClick,
|
|
5233
5233
|
className: cn(
|
|
5234
|
-
|
|
5234
|
+
// Fixed rem sizes instead of spacing tokens: themes like atelier
|
|
5235
|
+
// redefine --space-11 to 68px, which makes w-11 enormous and leaves
|
|
5236
|
+
// the thumb stuck near the left edge. The switch geometry must stay
|
|
5237
|
+
// proportional regardless of a theme's density scale.
|
|
5238
|
+
"relative inline-flex h-[1.5rem] w-[2.75rem] shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors",
|
|
5235
5239
|
"focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background",
|
|
5236
5240
|
isChecked ? "bg-primary" : "bg-muted",
|
|
5237
5241
|
disabled && "cursor-not-allowed opacity-50"
|
|
@@ -5240,8 +5244,8 @@ var init_Switch = __esm({
|
|
|
5240
5244
|
"span",
|
|
5241
5245
|
{
|
|
5242
5246
|
className: cn(
|
|
5243
|
-
"pointer-events-none block h-
|
|
5244
|
-
isChecked ? "translate-x-
|
|
5247
|
+
"pointer-events-none block h-[1.25rem] w-[1.25rem] rounded-full bg-background shadow-lg ring-0 transition-transform",
|
|
5248
|
+
isChecked ? "translate-x-[1.25rem]" : "translate-x-0"
|
|
5245
5249
|
)
|
|
5246
5250
|
}
|
|
5247
5251
|
)
|
|
@@ -22946,9 +22950,9 @@ var init_BehaviorView = __esm({
|
|
|
22946
22950
|
}
|
|
22947
22951
|
});
|
|
22948
22952
|
|
|
22949
|
-
// node_modules/katex/dist/katex.min.css
|
|
22953
|
+
// node_modules/.pnpm/katex@0.16.47/node_modules/katex/dist/katex.min.css
|
|
22950
22954
|
var init_katex_min = __esm({
|
|
22951
|
-
"node_modules/katex/dist/katex.min.css"() {
|
|
22955
|
+
"node_modules/.pnpm/katex@0.16.47/node_modules/katex/dist/katex.min.css"() {
|
|
22952
22956
|
}
|
|
22953
22957
|
});
|
|
22954
22958
|
var Tabs;
|