@almadar/ui 5.166.0 → 6.0.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.
|
@@ -2422,6 +2422,10 @@ declare namespace GameMenu {
|
|
|
2422
2422
|
interface StateGraphTransition {
|
|
2423
2423
|
from: string;
|
|
2424
2424
|
to: string;
|
|
2425
|
+
/** Deliberately NOT `EventKey`: this is a drawn arrow's caption, not a bus
|
|
2426
|
+
* event. Typing it `EventKey` would tag `transitions` as an `event-list`
|
|
2427
|
+
* and validate the PLAYER's invented state-machine vocabulary against the
|
|
2428
|
+
* orbital's event set. The real bus outlet here is `nodeClickEvent`. */
|
|
2425
2429
|
event: string;
|
|
2426
2430
|
guardHint?: string;
|
|
2427
2431
|
}
|
|
@@ -3375,6 +3379,10 @@ declare namespace TransitionArrow {
|
|
|
3375
3379
|
interface StateJsonTransition {
|
|
3376
3380
|
from: string;
|
|
3377
3381
|
to: string;
|
|
3382
|
+
/** Deliberately NOT `EventKey`: these are JSON.stringify'd into a code
|
|
3383
|
+
* block for display. This component has no event bus and cannot emit;
|
|
3384
|
+
* tagging `transitions` as an `event-list` would police the PLAYER's
|
|
3385
|
+
* invented vocabulary against the orbital's event set. */
|
|
3378
3386
|
event: string;
|
|
3379
3387
|
}
|
|
3380
3388
|
interface StateJsonViewProps {
|
|
@@ -7595,7 +7603,7 @@ interface DataGridProps extends DataDndProps {
|
|
|
7595
7603
|
*/
|
|
7596
7604
|
look?: "dense" | "spacious" | "striped" | "borderless" | "card-rows";
|
|
7597
7605
|
}
|
|
7598
|
-
declare function DataGrid({ entity, fields, columns, itemActions, maxInlineActions, scrollX, cols, gap, minCardWidth, className, isLoading, error, imageField, selectable, selectionEvent, infiniteScroll, loadMoreEvent, hasMore, children, pageSize, renderItem: schemaRenderItem, dragGroup, accepts, sortable, dropEvent, reorderEvent, positionEvent, dndItemIdField, dndRoot, look, }: DataGridProps): string | number | bigint | boolean |
|
|
7606
|
+
declare function DataGrid({ entity, fields, columns, itemActions, maxInlineActions, scrollX, cols, gap, minCardWidth, className, isLoading, error, imageField, selectable, selectionEvent, infiniteScroll, loadMoreEvent, hasMore, children, pageSize, renderItem: schemaRenderItem, dragGroup, accepts, sortable, dropEvent, reorderEvent, positionEvent, dndItemIdField, dndRoot, look, }: DataGridProps): string | number | bigint | boolean | Iterable<React__default.ReactNode> | Promise<string | number | bigint | boolean | React__default.ReactPortal | React__default.ReactElement<unknown, string | React__default.JSXElementConstructor<any>> | Iterable<React__default.ReactNode> | null | undefined> | React__default.JSX.Element | null | undefined;
|
|
7599
7607
|
declare namespace DataGrid {
|
|
7600
7608
|
var displayName: string;
|
|
7601
7609
|
}
|
|
@@ -7748,7 +7756,7 @@ interface DataListProps extends DataDndProps {
|
|
|
7748
7756
|
*/
|
|
7749
7757
|
look?: "dense" | "spacious" | "striped" | "borderless" | "card-rows";
|
|
7750
7758
|
}
|
|
7751
|
-
declare function DataList({ entity, fields, columns, itemActions, maxInlineActions, itemClickEvent, gap, variant, groupBy, senderField, senderLabelField, currentUser, emptyMessage, className, isLoading, error, reorderable: _reorderable, reorderEvent: _reorderEvent, swipeLeftEvent: _swipeLeftEvent, swipeLeftActions: _swipeLeftActions, swipeRightEvent: _swipeRightEvent, swipeRightActions: _swipeRightActions, longPressEvent: _longPressEvent, infiniteScroll, loadMoreEvent, hasMore, children, pageSize, sortBy, sortDirection, renderItem: schemaRenderItem, dragGroup, accepts, sortable: sortableProp, dropEvent, reorderEvent: dndReorderEvent, positionEvent, dndItemIdField, dndRoot, look, }: DataListProps): string | number | bigint | boolean |
|
|
7759
|
+
declare function DataList({ entity, fields, columns, itemActions, maxInlineActions, itemClickEvent, gap, variant, groupBy, senderField, senderLabelField, currentUser, emptyMessage, className, isLoading, error, reorderable: _reorderable, reorderEvent: _reorderEvent, swipeLeftEvent: _swipeLeftEvent, swipeLeftActions: _swipeLeftActions, swipeRightEvent: _swipeRightEvent, swipeRightActions: _swipeRightActions, longPressEvent: _longPressEvent, infiniteScroll, loadMoreEvent, hasMore, children, pageSize, sortBy, sortDirection, renderItem: schemaRenderItem, dragGroup, accepts, sortable: sortableProp, dropEvent, reorderEvent: dndReorderEvent, positionEvent, dndItemIdField, dndRoot, look, }: DataListProps): string | number | bigint | boolean | Iterable<React__default.ReactNode> | Promise<string | number | bigint | boolean | React__default.ReactPortal | React__default.ReactElement<unknown, string | React__default.JSXElementConstructor<any>> | Iterable<React__default.ReactNode> | null | undefined> | React__default.JSX.Element | null | undefined;
|
|
7752
7760
|
declare namespace DataList {
|
|
7753
7761
|
var displayName: string;
|
|
7754
7762
|
}
|
|
@@ -2422,6 +2422,10 @@ declare namespace GameMenu {
|
|
|
2422
2422
|
interface StateGraphTransition {
|
|
2423
2423
|
from: string;
|
|
2424
2424
|
to: string;
|
|
2425
|
+
/** Deliberately NOT `EventKey`: this is a drawn arrow's caption, not a bus
|
|
2426
|
+
* event. Typing it `EventKey` would tag `transitions` as an `event-list`
|
|
2427
|
+
* and validate the PLAYER's invented state-machine vocabulary against the
|
|
2428
|
+
* orbital's event set. The real bus outlet here is `nodeClickEvent`. */
|
|
2425
2429
|
event: string;
|
|
2426
2430
|
guardHint?: string;
|
|
2427
2431
|
}
|
|
@@ -3375,6 +3379,10 @@ declare namespace TransitionArrow {
|
|
|
3375
3379
|
interface StateJsonTransition {
|
|
3376
3380
|
from: string;
|
|
3377
3381
|
to: string;
|
|
3382
|
+
/** Deliberately NOT `EventKey`: these are JSON.stringify'd into a code
|
|
3383
|
+
* block for display. This component has no event bus and cannot emit;
|
|
3384
|
+
* tagging `transitions` as an `event-list` would police the PLAYER's
|
|
3385
|
+
* invented vocabulary against the orbital's event set. */
|
|
3378
3386
|
event: string;
|
|
3379
3387
|
}
|
|
3380
3388
|
interface StateJsonViewProps {
|
|
@@ -7595,7 +7603,7 @@ interface DataGridProps extends DataDndProps {
|
|
|
7595
7603
|
*/
|
|
7596
7604
|
look?: "dense" | "spacious" | "striped" | "borderless" | "card-rows";
|
|
7597
7605
|
}
|
|
7598
|
-
declare function DataGrid({ entity, fields, columns, itemActions, maxInlineActions, scrollX, cols, gap, minCardWidth, className, isLoading, error, imageField, selectable, selectionEvent, infiniteScroll, loadMoreEvent, hasMore, children, pageSize, renderItem: schemaRenderItem, dragGroup, accepts, sortable, dropEvent, reorderEvent, positionEvent, dndItemIdField, dndRoot, look, }: DataGridProps): string | number | bigint | boolean |
|
|
7606
|
+
declare function DataGrid({ entity, fields, columns, itemActions, maxInlineActions, scrollX, cols, gap, minCardWidth, className, isLoading, error, imageField, selectable, selectionEvent, infiniteScroll, loadMoreEvent, hasMore, children, pageSize, renderItem: schemaRenderItem, dragGroup, accepts, sortable, dropEvent, reorderEvent, positionEvent, dndItemIdField, dndRoot, look, }: DataGridProps): string | number | bigint | boolean | Iterable<React__default.ReactNode> | Promise<string | number | bigint | boolean | React__default.ReactPortal | React__default.ReactElement<unknown, string | React__default.JSXElementConstructor<any>> | Iterable<React__default.ReactNode> | null | undefined> | React__default.JSX.Element | null | undefined;
|
|
7599
7607
|
declare namespace DataGrid {
|
|
7600
7608
|
var displayName: string;
|
|
7601
7609
|
}
|
|
@@ -7748,7 +7756,7 @@ interface DataListProps extends DataDndProps {
|
|
|
7748
7756
|
*/
|
|
7749
7757
|
look?: "dense" | "spacious" | "striped" | "borderless" | "card-rows";
|
|
7750
7758
|
}
|
|
7751
|
-
declare function DataList({ entity, fields, columns, itemActions, maxInlineActions, itemClickEvent, gap, variant, groupBy, senderField, senderLabelField, currentUser, emptyMessage, className, isLoading, error, reorderable: _reorderable, reorderEvent: _reorderEvent, swipeLeftEvent: _swipeLeftEvent, swipeLeftActions: _swipeLeftActions, swipeRightEvent: _swipeRightEvent, swipeRightActions: _swipeRightActions, longPressEvent: _longPressEvent, infiniteScroll, loadMoreEvent, hasMore, children, pageSize, sortBy, sortDirection, renderItem: schemaRenderItem, dragGroup, accepts, sortable: sortableProp, dropEvent, reorderEvent: dndReorderEvent, positionEvent, dndItemIdField, dndRoot, look, }: DataListProps): string | number | bigint | boolean |
|
|
7759
|
+
declare function DataList({ entity, fields, columns, itemActions, maxInlineActions, itemClickEvent, gap, variant, groupBy, senderField, senderLabelField, currentUser, emptyMessage, className, isLoading, error, reorderable: _reorderable, reorderEvent: _reorderEvent, swipeLeftEvent: _swipeLeftEvent, swipeLeftActions: _swipeLeftActions, swipeRightEvent: _swipeRightEvent, swipeRightActions: _swipeRightActions, longPressEvent: _longPressEvent, infiniteScroll, loadMoreEvent, hasMore, children, pageSize, sortBy, sortDirection, renderItem: schemaRenderItem, dragGroup, accepts, sortable: sortableProp, dropEvent, reorderEvent: dndReorderEvent, positionEvent, dndItemIdField, dndRoot, look, }: DataListProps): string | number | bigint | boolean | Iterable<React__default.ReactNode> | Promise<string | number | bigint | boolean | React__default.ReactPortal | React__default.ReactElement<unknown, string | React__default.JSXElementConstructor<any>> | Iterable<React__default.ReactNode> | null | undefined> | React__default.JSX.Element | null | undefined;
|
|
7752
7760
|
declare namespace DataList {
|
|
7753
7761
|
var displayName: string;
|
|
7754
7762
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "React UI components, hooks, and providers for Almadar",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
@@ -118,11 +118,11 @@
|
|
|
118
118
|
"access": "public"
|
|
119
119
|
},
|
|
120
120
|
"dependencies": {
|
|
121
|
-
"@almadar/core": "^10.
|
|
121
|
+
"@almadar/core": "^10.77.0",
|
|
122
122
|
"@almadar/evaluator": "^2.43.0",
|
|
123
123
|
"@almadar/logger": "^1.12.0",
|
|
124
|
-
"@almadar/runtime": "^6.
|
|
125
|
-
"@almadar/std": "^16.
|
|
124
|
+
"@almadar/runtime": "^6.67.0",
|
|
125
|
+
"@almadar/std": "^16.197.0",
|
|
126
126
|
"@almadar/syntax": "^1.16.0",
|
|
127
127
|
"@dnd-kit/core": "^6.3.1",
|
|
128
128
|
"@dnd-kit/sortable": "^10.0.0",
|