@kolkrabbi/kol-component 0.118.1 → 0.118.2
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-component",
|
|
3
|
-
"version": "0.118.
|
|
3
|
+
"version": "0.118.2",
|
|
4
4
|
"description": "KOL design-system components — atoms through organisms, emitting canonical kol-* classes. Pairs with @kolkrabbi/kol-theme for styling.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -496,8 +496,12 @@ const ContentFilters = ({
|
|
|
496
496
|
)}
|
|
497
497
|
|
|
498
498
|
<div style={{ marginTop: 'var(--kol-spacing-6)', display: 'flex', flexDirection: 'column', flex: 1, minHeight: 0 }}>
|
|
499
|
-
{/* the items panel is a CONTAINER (WorkListingRowsAndFilters, 2026-08-27) — rows step on its width
|
|
500
|
-
|
|
499
|
+
{/* the items panel is a CONTAINER (WorkListingRowsAndFilters, 2026-08-27) — rows step on its width.
|
|
500
|
+
* It is ALSO the next link in the fill chain (ContentFiltersFillChain, kol-monitor 2026-08-28):
|
|
501
|
+
* `container-type: inline-size` contains only the inline axis, but the wrapper sat `flex: 0 1 auto`
|
|
502
|
+
* in the flex body above, so a `PageShell mode="fixed"` fill died here — a consumer's `renderItem`
|
|
503
|
+
* root with `flex: 1; min-height: 0` had nothing to fill and monitor's rack clipped its bottom row. */}
|
|
504
|
+
<div style={{ containerType: 'inline-size', display: 'flex', flexDirection: 'column', flex: 1, minHeight: 0 }}>{renderItem(filteredItems, viewMode, layout)}</div>
|
|
501
505
|
</div>
|
|
502
506
|
</div>
|
|
503
507
|
)
|