@ikonai/sdk-react-ui-standard 1.0.51 → 1.0.52
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/components/virtual-list.d.ts +8 -0
- package/index.js +8109 -7966
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IkonUiComponentResolver } from '../../../sdk-react-ui/src/index.ts';
|
|
2
|
+
export declare function createVirtualListResolver(): IkonUiComponentResolver;
|
|
3
|
+
export declare function createVirtualGridResolver(): IkonUiComponentResolver;
|
|
4
|
+
/**
|
|
5
|
+
* Standalone passthrough for std.virtual-item nodes encountered outside a virtual list/grid
|
|
6
|
+
* (the parent renderer handles the windowing path; this fallback simply forwards children).
|
|
7
|
+
*/
|
|
8
|
+
export declare function createVirtualItemResolver(): IkonUiComponentResolver;
|