@opentui/solid 0.1.22 → 0.1.23

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/jsx-runtime.d.ts CHANGED
@@ -23,6 +23,7 @@ declare namespace JSX {
23
23
  select: SelectProps
24
24
  ascii_font: AsciiFontProps
25
25
  tab_select: TabSelectProps
26
+ scrollbox: ScrollBoxProps
26
27
  }
27
28
 
28
29
  interface ElementChildrenAttribute {
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "type": "module",
7
- "version": "0.1.22",
7
+ "version": "0.1.23",
8
8
  "description": "SolidJS renderer for OpenTUI",
9
9
  "license": "MIT",
10
10
  "repository": {
@@ -25,7 +25,7 @@
25
25
  "./jsx-dev-runtime": "./jsx-runtime.d.ts"
26
26
  },
27
27
  "dependencies": {
28
- "@opentui/core": "0.1.22",
28
+ "@opentui/core": "0.1.23",
29
29
  "babel-plugin-module-resolver": "5.0.2",
30
30
  "@babel/core": "7.28.0",
31
31
  "@babel/preset-typescript": "7.27.1",
@@ -47,6 +47,8 @@ export type TabSelectProps = ComponentProps<TabSelectRenderableOptions, TabSelec
47
47
  };
48
48
  export type ScrollBoxProps = ComponentProps<ContainerProps<ScrollBoxOptions>, ScrollBoxRenderable> & {
49
49
  focused?: boolean;
50
+ stickyScroll?: boolean;
51
+ stickyStart?: "bottom" | "top" | "left" | "right";
50
52
  };
51
53
  /** Convert renderable constructor to component props with proper style exclusions */
52
54
  export type ExtendedComponentProps<TConstructor extends RenderableConstructor, TOptions = ExtractRenderableOptions<TConstructor>> = TOptions & {