@almadar/ui 5.76.7 → 5.77.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 +264 -443
- package/dist/avl/index.css +3 -3
- package/dist/avl/index.js +265 -444
- 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 +1 -8
- package/dist/components/core/molecules/DocSearch.d.ts +1 -8
- package/dist/components/core/molecules/FlipCard.d.ts +1 -1
- package/dist/components/core/molecules/MapView.d.ts +1 -18
- 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 +1 -10
- package/dist/components/core/organisms/debug/tabs/EntitiesTab.d.ts +1 -2
- package/dist/components/core/organisms/debug/tabs/EventDispatcherTab.d.ts +1 -2
- package/dist/components/core/organisms/debug/tabs/EventFlowTab.d.ts +1 -6
- package/dist/components/core/organisms/debug/tabs/GuardsPanel.d.ts +1 -6
- package/dist/components/core/organisms/debug/tabs/ServerBridgeTab.d.ts +1 -12
- package/dist/components/core/organisms/debug/tabs/TicksTab.d.ts +1 -2
- package/dist/components/core/organisms/debug/tabs/TraitsTab.d.ts +1 -2
- package/dist/components/core/organisms/debug/tabs/TransitionTimeline.d.ts +1 -11
- package/dist/components/core/organisms/debug/tabs/VerificationTab.d.ts +1 -8
- package/dist/components/game/2d/atoms/ActionButton.d.ts +1 -2
- package/dist/components/game/2d/atoms/ChoiceButton.d.ts +1 -2
- package/dist/components/game/2d/atoms/ComboCounter.d.ts +1 -2
- package/dist/components/game/2d/atoms/ControlButton.d.ts +1 -2
- package/dist/components/game/2d/atoms/DamageNumber.d.ts +1 -2
- package/dist/components/game/2d/atoms/DialogueBubble.d.ts +1 -2
- package/dist/components/game/2d/atoms/GameIcon.d.ts +1 -2
- package/dist/components/game/2d/atoms/HealthBar.d.ts +1 -2
- package/dist/components/game/2d/atoms/ItemSlot.d.ts +1 -2
- package/dist/components/game/2d/atoms/MiniMap.d.ts +1 -2
- package/dist/components/game/2d/atoms/ResourceCounter.d.ts +1 -2
- package/dist/components/game/2d/atoms/ScoreDisplay.d.ts +1 -2
- package/dist/components/game/2d/atoms/StatusEffect.d.ts +1 -2
- package/dist/components/game/2d/atoms/TimerDisplay.d.ts +1 -2
- package/dist/components/game/2d/atoms/TurnIndicator.d.ts +1 -2
- package/dist/components/game/2d/atoms/WaypointMarker.d.ts +1 -2
- package/dist/components/game/2d/molecules/GameHud.d.ts +1 -2
- package/dist/components/game/2d/molecules/GameMenu.d.ts +1 -2
- package/dist/components/game/2d/molecules/InventoryGrid.d.ts +1 -2
- package/dist/components/game/2d/molecules/ResourceBar.d.ts +1 -2
- package/dist/components/game/2d/molecules/StatBadge.d.ts +1 -2
- package/dist/components/game/shared/lib/editorUtils.d.ts +8 -8
- package/dist/components/index.cjs +133 -134
- package/dist/components/index.css +3 -3
- package/dist/components/index.js +133 -134
- 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 +260 -439
- package/dist/providers/index.css +3 -3
- package/dist/providers/index.js +261 -440
- package/dist/runtime/index.cjs +260 -439
- package/dist/runtime/index.css +3 -3
- package/dist/runtime/index.js +261 -440
- package/package.json +2 -2
package/dist/components/index.js
CHANGED
|
@@ -12308,9 +12308,9 @@ var init_BehaviorView = __esm({
|
|
|
12308
12308
|
}
|
|
12309
12309
|
});
|
|
12310
12310
|
|
|
12311
|
-
// node_modules
|
|
12311
|
+
// node_modules/katex/dist/katex.min.css
|
|
12312
12312
|
var init_katex_min = __esm({
|
|
12313
|
-
"node_modules
|
|
12313
|
+
"node_modules/katex/dist/katex.min.css"() {
|
|
12314
12314
|
}
|
|
12315
12315
|
});
|
|
12316
12316
|
var Tabs;
|
|
@@ -16999,129 +16999,6 @@ var init_BuilderBoard = __esm({
|
|
|
16999
16999
|
BuilderBoard.displayName = "BuilderBoard";
|
|
17000
17000
|
}
|
|
17001
17001
|
});
|
|
17002
|
-
function useSafeEventBus2() {
|
|
17003
|
-
try {
|
|
17004
|
-
return useEventBus();
|
|
17005
|
-
} catch {
|
|
17006
|
-
return { emit: () => {
|
|
17007
|
-
}, on: () => () => {
|
|
17008
|
-
}, once: () => {
|
|
17009
|
-
} };
|
|
17010
|
-
}
|
|
17011
|
-
}
|
|
17012
|
-
var log6, lookStyles4, ButtonGroup;
|
|
17013
|
-
var init_ButtonGroup = __esm({
|
|
17014
|
-
"components/core/molecules/ButtonGroup.tsx"() {
|
|
17015
|
-
"use client";
|
|
17016
|
-
init_cn();
|
|
17017
|
-
init_atoms();
|
|
17018
|
-
init_useEventBus();
|
|
17019
|
-
log6 = createLogger("almadar:ui:button-group");
|
|
17020
|
-
lookStyles4 = {
|
|
17021
|
-
"right-aligned-buttons": "",
|
|
17022
|
-
"floating-bar": "fixed bottom-section left-1/2 -translate-x-1/2 shadow-elevation-toast bg-card p-card-sm rounded-container",
|
|
17023
|
-
"inline-row": "gap-2 inline-flex",
|
|
17024
|
-
"dropdown-menu": "[&>button:not(:first-child)]:hidden",
|
|
17025
|
-
"command-palette-trigger": "[&>button:not(:first-child)]:hidden"
|
|
17026
|
-
};
|
|
17027
|
-
ButtonGroup = ({
|
|
17028
|
-
children,
|
|
17029
|
-
primary,
|
|
17030
|
-
secondary,
|
|
17031
|
-
variant = "default",
|
|
17032
|
-
orientation = "horizontal",
|
|
17033
|
-
className,
|
|
17034
|
-
// Filter-group pattern props (entity and filters are used for schema-driven filtering)
|
|
17035
|
-
entity: _entity,
|
|
17036
|
-
filters,
|
|
17037
|
-
look = "right-aligned-buttons"
|
|
17038
|
-
}) => {
|
|
17039
|
-
const eventBus = useSafeEventBus2();
|
|
17040
|
-
const variantClasses2 = {
|
|
17041
|
-
default: "gap-0",
|
|
17042
|
-
segmented: "gap-0 [&>button]:rounded-none [&>button:first-child]:rounded-l-lg [&>button:last-child]:rounded-r-lg [&>button:not(:first-child)]:border-l-0",
|
|
17043
|
-
toggle: "gap-0 [&>button]:rounded-none [&>button:first-child]:rounded-l-lg [&>button:last-child]:rounded-r-lg [&>button:not(:first-child)]:border-l-0"
|
|
17044
|
-
};
|
|
17045
|
-
const orientationClasses = {
|
|
17046
|
-
horizontal: "flex-row",
|
|
17047
|
-
vertical: "flex-col [&>button:first-child]:rounded-t-lg [&>button:last-child]:rounded-b-lg [&>button:not(:first-child)]:border-t-0 [&>button:not(:first-child)]:border-l"
|
|
17048
|
-
};
|
|
17049
|
-
const handleActionClick = (action) => {
|
|
17050
|
-
if (action.event) {
|
|
17051
|
-
eventBus.emit("UI:DISPATCH", { event: action.event });
|
|
17052
|
-
}
|
|
17053
|
-
if (action.navigatesTo) {
|
|
17054
|
-
eventBus.emit("UI:NAVIGATE", { url: action.navigatesTo });
|
|
17055
|
-
}
|
|
17056
|
-
};
|
|
17057
|
-
const renderFormActions = () => {
|
|
17058
|
-
const buttons = [];
|
|
17059
|
-
if (secondary) {
|
|
17060
|
-
secondary.forEach((action, index) => {
|
|
17061
|
-
buttons.push(
|
|
17062
|
-
/* @__PURE__ */ jsx(
|
|
17063
|
-
Button,
|
|
17064
|
-
{
|
|
17065
|
-
type: action.actionType === "submit" ? "submit" : "button",
|
|
17066
|
-
variant: action.variant || "ghost",
|
|
17067
|
-
onClick: () => handleActionClick(action),
|
|
17068
|
-
children: action.label
|
|
17069
|
-
},
|
|
17070
|
-
`secondary-${index}`
|
|
17071
|
-
)
|
|
17072
|
-
);
|
|
17073
|
-
});
|
|
17074
|
-
}
|
|
17075
|
-
if (primary) {
|
|
17076
|
-
const isSubmit = primary.actionType === "submit";
|
|
17077
|
-
buttons.push(
|
|
17078
|
-
/* @__PURE__ */ jsx(
|
|
17079
|
-
Button,
|
|
17080
|
-
{
|
|
17081
|
-
type: isSubmit ? "submit" : "button",
|
|
17082
|
-
variant: primary.variant || "primary",
|
|
17083
|
-
onClick: () => handleActionClick(primary),
|
|
17084
|
-
"data-testid": isSubmit ? "form-submit" : void 0,
|
|
17085
|
-
children: primary.label
|
|
17086
|
-
},
|
|
17087
|
-
"primary"
|
|
17088
|
-
)
|
|
17089
|
-
);
|
|
17090
|
-
}
|
|
17091
|
-
return buttons;
|
|
17092
|
-
};
|
|
17093
|
-
const renderFilters = () => {
|
|
17094
|
-
if (!filters || filters.length === 0) return null;
|
|
17095
|
-
return filters.map((filter, index) => /* @__PURE__ */ jsx(
|
|
17096
|
-
Button,
|
|
17097
|
-
{
|
|
17098
|
-
variant: "ghost",
|
|
17099
|
-
onClick: () => {
|
|
17100
|
-
log6.debug("Filter clicked", { field: filter.field });
|
|
17101
|
-
},
|
|
17102
|
-
children: filter.label
|
|
17103
|
-
},
|
|
17104
|
-
`filter-${filter.field}-${index}`
|
|
17105
|
-
));
|
|
17106
|
-
};
|
|
17107
|
-
return /* @__PURE__ */ jsx(
|
|
17108
|
-
"div",
|
|
17109
|
-
{
|
|
17110
|
-
className: cn(
|
|
17111
|
-
"inline-flex gap-2",
|
|
17112
|
-
variantClasses2[variant],
|
|
17113
|
-
orientationClasses[orientation],
|
|
17114
|
-
lookStyles4[look],
|
|
17115
|
-
className
|
|
17116
|
-
),
|
|
17117
|
-
role: "group",
|
|
17118
|
-
children: children || renderFilters() || renderFormActions()
|
|
17119
|
-
}
|
|
17120
|
-
);
|
|
17121
|
-
};
|
|
17122
|
-
ButtonGroup.displayName = "ButtonGroup";
|
|
17123
|
-
}
|
|
17124
|
-
});
|
|
17125
17002
|
function useSwipeGesture(callbacks, options = {}) {
|
|
17126
17003
|
const { threshold = 50, velocityThreshold = 0.3, preventDefault = false } = options;
|
|
17127
17004
|
const startX = useRef(0);
|
|
@@ -19548,7 +19425,7 @@ var init_CardGrid = __esm({
|
|
|
19548
19425
|
CardGrid.displayName = "CardGrid";
|
|
19549
19426
|
}
|
|
19550
19427
|
});
|
|
19551
|
-
function
|
|
19428
|
+
function useSafeEventBus2() {
|
|
19552
19429
|
try {
|
|
19553
19430
|
return useEventBus();
|
|
19554
19431
|
} catch {
|
|
@@ -19584,7 +19461,7 @@ var init_Carousel = __esm({
|
|
|
19584
19461
|
const [activeIndex, setActiveIndex] = useState(0);
|
|
19585
19462
|
const scrollRef = useRef(null);
|
|
19586
19463
|
const autoPlayRef = useRef(null);
|
|
19587
|
-
const eventBus =
|
|
19464
|
+
const eventBus = useSafeEventBus2();
|
|
19588
19465
|
const { t } = useTranslate();
|
|
19589
19466
|
const safeItems = items ?? [];
|
|
19590
19467
|
const totalSlides = safeItems.length;
|
|
@@ -24209,7 +24086,7 @@ function DataGrid({
|
|
|
24209
24086
|
/* @__PURE__ */ jsx(
|
|
24210
24087
|
Box,
|
|
24211
24088
|
{
|
|
24212
|
-
className: cn("grid", gapStyles5[gap], scrollX ? "grid-flow-col overflow-x-auto" : colsClass,
|
|
24089
|
+
className: cn("grid", gapStyles5[gap], scrollX ? "grid-flow-col overflow-x-auto" : colsClass, lookStyles4[look], className),
|
|
24213
24090
|
style: scrollX ? { gridAutoFlow: "column", gridAutoColumns: `minmax(${minCardWidth}px, 1fr)` } : gridTemplateColumns ? { gridTemplateColumns } : void 0,
|
|
24214
24091
|
children: data.map((item, index) => {
|
|
24215
24092
|
const itemData = item;
|
|
@@ -24404,7 +24281,7 @@ function DataGrid({
|
|
|
24404
24281
|
] })
|
|
24405
24282
|
);
|
|
24406
24283
|
}
|
|
24407
|
-
var dataGridLog, BADGE_VARIANTS, gapStyles5,
|
|
24284
|
+
var dataGridLog, BADGE_VARIANTS, gapStyles5, lookStyles4;
|
|
24408
24285
|
var init_DataGrid = __esm({
|
|
24409
24286
|
"components/core/molecules/DataGrid.tsx"() {
|
|
24410
24287
|
"use client";
|
|
@@ -24439,7 +24316,7 @@ var init_DataGrid = __esm({
|
|
|
24439
24316
|
lg: "gap-6",
|
|
24440
24317
|
xl: "gap-8"
|
|
24441
24318
|
};
|
|
24442
|
-
|
|
24319
|
+
lookStyles4 = {
|
|
24443
24320
|
dense: "gap-2 [&>*]:p-card-sm",
|
|
24444
24321
|
spacious: "gap-8 [&>*]:p-card-lg",
|
|
24445
24322
|
striped: "[&>*:nth-child(even)]:bg-muted/30",
|
|
@@ -25983,6 +25860,129 @@ var init_FormField = __esm({
|
|
|
25983
25860
|
FormField.displayName = "FormField";
|
|
25984
25861
|
}
|
|
25985
25862
|
});
|
|
25863
|
+
function useSafeEventBus3() {
|
|
25864
|
+
try {
|
|
25865
|
+
return useEventBus();
|
|
25866
|
+
} catch {
|
|
25867
|
+
return { emit: () => {
|
|
25868
|
+
}, on: () => () => {
|
|
25869
|
+
}, once: () => {
|
|
25870
|
+
} };
|
|
25871
|
+
}
|
|
25872
|
+
}
|
|
25873
|
+
var log6, lookStyles5, ButtonGroup;
|
|
25874
|
+
var init_ButtonGroup = __esm({
|
|
25875
|
+
"components/core/molecules/ButtonGroup.tsx"() {
|
|
25876
|
+
"use client";
|
|
25877
|
+
init_cn();
|
|
25878
|
+
init_atoms();
|
|
25879
|
+
init_useEventBus();
|
|
25880
|
+
log6 = createLogger("almadar:ui:button-group");
|
|
25881
|
+
lookStyles5 = {
|
|
25882
|
+
"right-aligned-buttons": "",
|
|
25883
|
+
"floating-bar": "fixed bottom-section left-1/2 -translate-x-1/2 shadow-elevation-toast bg-card p-card-sm rounded-container",
|
|
25884
|
+
"inline-row": "gap-2 inline-flex",
|
|
25885
|
+
"dropdown-menu": "[&>button:not(:first-child)]:hidden",
|
|
25886
|
+
"command-palette-trigger": "[&>button:not(:first-child)]:hidden"
|
|
25887
|
+
};
|
|
25888
|
+
ButtonGroup = ({
|
|
25889
|
+
children,
|
|
25890
|
+
primary,
|
|
25891
|
+
secondary,
|
|
25892
|
+
variant = "default",
|
|
25893
|
+
orientation = "horizontal",
|
|
25894
|
+
className,
|
|
25895
|
+
// Filter-group pattern props (entity and filters are used for schema-driven filtering)
|
|
25896
|
+
entity: _entity,
|
|
25897
|
+
filters,
|
|
25898
|
+
look = "right-aligned-buttons"
|
|
25899
|
+
}) => {
|
|
25900
|
+
const eventBus = useSafeEventBus3();
|
|
25901
|
+
const variantClasses2 = {
|
|
25902
|
+
default: "gap-0",
|
|
25903
|
+
segmented: "gap-0 [&>button]:rounded-none [&>button:first-child]:rounded-l-lg [&>button:last-child]:rounded-r-lg [&>button:not(:first-child)]:border-l-0",
|
|
25904
|
+
toggle: "gap-0 [&>button]:rounded-none [&>button:first-child]:rounded-l-lg [&>button:last-child]:rounded-r-lg [&>button:not(:first-child)]:border-l-0"
|
|
25905
|
+
};
|
|
25906
|
+
const orientationClasses = {
|
|
25907
|
+
horizontal: "flex-row",
|
|
25908
|
+
vertical: "flex-col [&>button:first-child]:rounded-t-lg [&>button:last-child]:rounded-b-lg [&>button:not(:first-child)]:border-t-0 [&>button:not(:first-child)]:border-l"
|
|
25909
|
+
};
|
|
25910
|
+
const handleActionClick = (action) => {
|
|
25911
|
+
if (action.event) {
|
|
25912
|
+
eventBus.emit("UI:DISPATCH", { event: action.event });
|
|
25913
|
+
}
|
|
25914
|
+
if (action.navigatesTo) {
|
|
25915
|
+
eventBus.emit("UI:NAVIGATE", { url: action.navigatesTo });
|
|
25916
|
+
}
|
|
25917
|
+
};
|
|
25918
|
+
const renderFormActions = () => {
|
|
25919
|
+
const buttons = [];
|
|
25920
|
+
if (secondary) {
|
|
25921
|
+
secondary.forEach((action, index) => {
|
|
25922
|
+
buttons.push(
|
|
25923
|
+
/* @__PURE__ */ jsx(
|
|
25924
|
+
Button,
|
|
25925
|
+
{
|
|
25926
|
+
type: action.actionType === "submit" ? "submit" : "button",
|
|
25927
|
+
variant: action.variant || "ghost",
|
|
25928
|
+
onClick: () => handleActionClick(action),
|
|
25929
|
+
children: action.label
|
|
25930
|
+
},
|
|
25931
|
+
`secondary-${index}`
|
|
25932
|
+
)
|
|
25933
|
+
);
|
|
25934
|
+
});
|
|
25935
|
+
}
|
|
25936
|
+
if (primary) {
|
|
25937
|
+
const isSubmit = primary.actionType === "submit";
|
|
25938
|
+
buttons.push(
|
|
25939
|
+
/* @__PURE__ */ jsx(
|
|
25940
|
+
Button,
|
|
25941
|
+
{
|
|
25942
|
+
type: isSubmit ? "submit" : "button",
|
|
25943
|
+
variant: primary.variant || "primary",
|
|
25944
|
+
onClick: () => handleActionClick(primary),
|
|
25945
|
+
"data-testid": isSubmit ? "form-submit" : void 0,
|
|
25946
|
+
children: primary.label
|
|
25947
|
+
},
|
|
25948
|
+
"primary"
|
|
25949
|
+
)
|
|
25950
|
+
);
|
|
25951
|
+
}
|
|
25952
|
+
return buttons;
|
|
25953
|
+
};
|
|
25954
|
+
const renderFilters = () => {
|
|
25955
|
+
if (!filters || filters.length === 0) return null;
|
|
25956
|
+
return filters.map((filter, index) => /* @__PURE__ */ jsx(
|
|
25957
|
+
Button,
|
|
25958
|
+
{
|
|
25959
|
+
variant: "ghost",
|
|
25960
|
+
onClick: () => {
|
|
25961
|
+
log6.debug("Filter clicked", { field: filter.field });
|
|
25962
|
+
},
|
|
25963
|
+
children: filter.label
|
|
25964
|
+
},
|
|
25965
|
+
`filter-${filter.field}-${index}`
|
|
25966
|
+
));
|
|
25967
|
+
};
|
|
25968
|
+
return /* @__PURE__ */ jsx(
|
|
25969
|
+
"div",
|
|
25970
|
+
{
|
|
25971
|
+
className: cn(
|
|
25972
|
+
"inline-flex gap-2",
|
|
25973
|
+
variantClasses2[variant],
|
|
25974
|
+
orientationClasses[orientation],
|
|
25975
|
+
lookStyles5[look],
|
|
25976
|
+
className
|
|
25977
|
+
),
|
|
25978
|
+
role: "group",
|
|
25979
|
+
children: children || renderFilters() || renderFormActions()
|
|
25980
|
+
}
|
|
25981
|
+
);
|
|
25982
|
+
};
|
|
25983
|
+
ButtonGroup.displayName = "ButtonGroup";
|
|
25984
|
+
}
|
|
25985
|
+
});
|
|
25986
25986
|
function getOrCreateStore(query) {
|
|
25987
25987
|
if (!queryStores.has(query)) {
|
|
25988
25988
|
queryStores.set(query, {
|
|
@@ -52779,7 +52779,6 @@ var init_component_registry_generated = __esm({
|
|
|
52779
52779
|
init_BranchingLogicBuilder();
|
|
52780
52780
|
init_Breadcrumb();
|
|
52781
52781
|
init_BuilderBoard();
|
|
52782
|
-
init_ButtonGroup();
|
|
52783
52782
|
init_CTABanner();
|
|
52784
52783
|
init_CalendarGrid();
|
|
52785
52784
|
init_Canvas2D();
|
|
@@ -52856,9 +52855,9 @@ var init_component_registry_generated = __esm({
|
|
|
52856
52855
|
init_FlipContainer();
|
|
52857
52856
|
init_FloatingActionButton();
|
|
52858
52857
|
init_Form();
|
|
52858
|
+
init_FormSection();
|
|
52859
52859
|
init_FormField();
|
|
52860
52860
|
init_FormSectionHeader();
|
|
52861
|
-
init_GameAudioProvider();
|
|
52862
52861
|
init_GameAudioToggle();
|
|
52863
52862
|
init_GameCard();
|
|
52864
52863
|
init_GameHud();
|
|
@@ -53107,7 +53106,6 @@ var init_component_registry_generated = __esm({
|
|
|
53107
53106
|
"Breadcrumb": Breadcrumb,
|
|
53108
53107
|
"BuilderBoard": BuilderBoard,
|
|
53109
53108
|
"Button": ButtonPattern,
|
|
53110
|
-
"ButtonGroup": ButtonGroup,
|
|
53111
53109
|
"ButtonPattern": ButtonPattern,
|
|
53112
53110
|
"CTABanner": CTABanner,
|
|
53113
53111
|
"CalendarGrid": CalendarGrid,
|
|
@@ -53187,9 +53185,10 @@ var init_component_registry_generated = __esm({
|
|
|
53187
53185
|
"FlipContainer": FlipContainer,
|
|
53188
53186
|
"FloatingActionButton": FloatingActionButton,
|
|
53189
53187
|
"Form": Form,
|
|
53188
|
+
"FormActions": FormActions,
|
|
53190
53189
|
"FormField": FormField,
|
|
53190
|
+
"FormLayout": FormLayout,
|
|
53191
53191
|
"FormSectionHeader": FormSectionHeader,
|
|
53192
|
-
"GameAudioProvider": GameAudioProvider,
|
|
53193
53192
|
"GameAudioToggle": GameAudioToggle,
|
|
53194
53193
|
"GameBoard3D": GameBoard3D,
|
|
53195
53194
|
"GameCanvas3D": GameCanvas3D,
|
|
@@ -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<
|
|
28
|
+
export declare function useGitHubStatus(): import("@tanstack/react-query").UseQueryResult<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<{
|
|
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<{
|
|
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<{
|
|
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
|
|
31
|
+
// 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
|
|
46
|
+
// 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
|
|
7
|
+
// 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
|
|
22
|
+
// 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): import("react/jsx-runtime").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): import("react/jsx-runtime").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").JSX.Element;
|
|
101
|
+
export declare function ServerBridgeProvider({ schema, serverUrl, transport: customTransport, children, }: ServerBridgeProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
102
102
|
export {};
|