@cosmicdrift/kumiko-renderer-web 0.171.2 → 0.173.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/package.json +4 -4
- package/src/primitives/index.tsx +1 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-renderer-web",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.173.0",
|
|
4
4
|
"description": "Web-platform bindings for @cosmicdrift/kumiko-renderer. HTML default-primitives, browser history-based navigation, EventSource-backed live events, and a one-call createKumikoApp that mounts the whole stack via react-dom.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"./styles.css": "./src/styles.css"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@cosmicdrift/kumiko-dispatcher-live": "0.
|
|
20
|
-
"@cosmicdrift/kumiko-headless": "0.
|
|
21
|
-
"@cosmicdrift/kumiko-renderer": "0.
|
|
19
|
+
"@cosmicdrift/kumiko-dispatcher-live": "0.173.0",
|
|
20
|
+
"@cosmicdrift/kumiko-headless": "0.173.0",
|
|
21
|
+
"@cosmicdrift/kumiko-renderer": "0.173.0",
|
|
22
22
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
23
23
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
24
24
|
"@radix-ui/react-label": "^2.1.8",
|
package/src/primitives/index.tsx
CHANGED
|
@@ -1019,10 +1019,7 @@ function RowActionsKebab({
|
|
|
1019
1019
|
// lädt, ignorieren wir weitere Sichtbar-Events). Kein observer in
|
|
1020
1020
|
// Server-Side-Render, kein observer wenn hasMore=false — dann zeigt
|
|
1021
1021
|
// der Sentinel nur den End-of-list-Hinweis.
|
|
1022
|
-
// ponytail:
|
|
1023
|
-
// Liste (eine einzige Page) zeigt ihr Ende selbst, da wäre der Marker
|
|
1024
|
-
// nur Lärm. Schwellwert = eine Page; per Prop übersteuerbar falls Apps
|
|
1025
|
-
// andere Page-Größen fahren.
|
|
1022
|
+
// ponytail: Short lists do not need an end marker.
|
|
1026
1023
|
const END_LABEL_MIN_ROWS = 20;
|
|
1027
1024
|
|
|
1028
1025
|
function InfiniteSentinel({
|