@opentui/solid 0.1.27 → 0.1.29

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/dist/index.d.ts CHANGED
@@ -31,6 +31,7 @@ export function getComponentCatalogue(): {
31
31
  text: typeof TextRenderable3;
32
32
  input: typeof InputRenderable2;
33
33
  select: typeof SelectRenderable2;
34
+ textarea: typeof TextareaRenderable;
34
35
  ascii_font: typeof ASCIIFontRenderable;
35
36
  tab_select: typeof TabSelectRenderable2;
36
37
  scrollbox: typeof ScrollBoxRenderable;
@@ -55,6 +56,7 @@ export namespace componentCatalogue {
55
56
  export { TextRenderable3 as text };
56
57
  export { InputRenderable2 as input };
57
58
  export { SelectRenderable2 as select };
59
+ export { TextareaRenderable as textarea };
58
60
  export { ASCIIFontRenderable as ascii_font };
59
61
  export { TabSelectRenderable2 as tab_select };
60
62
  export { ScrollBoxRenderable as scrollbox };
@@ -111,6 +113,7 @@ import { BoxRenderable } from "@opentui/core";
111
113
  import { TextRenderable as TextRenderable3 } from "@opentui/core";
112
114
  import { InputRenderable as InputRenderable2 } from "@opentui/core";
113
115
  import { SelectRenderable as SelectRenderable2 } from "@opentui/core";
116
+ import { TextareaRenderable } from "@opentui/core";
114
117
  import { ASCIIFontRenderable } from "@opentui/core";
115
118
  import { TabSelectRenderable as TabSelectRenderable2 } from "@opentui/core";
116
119
  import { ScrollBoxRenderable } from "@opentui/core";
package/index.js CHANGED
@@ -12,6 +12,7 @@ import {
12
12
  ScrollBoxRenderable,
13
13
  SelectRenderable as SelectRenderable2,
14
14
  TabSelectRenderable as TabSelectRenderable2,
15
+ TextareaRenderable,
15
16
  TextAttributes,
16
17
  TextNodeRenderable as TextNodeRenderable3,
17
18
  TextRenderable as TextRenderable3
@@ -875,6 +876,7 @@ var baseComponents = {
875
876
  text: TextRenderable3,
876
877
  input: InputRenderable2,
877
878
  select: SelectRenderable2,
879
+ textarea: TextareaRenderable,
878
880
  ascii_font: ASCIIFontRenderable,
879
881
  tab_select: TabSelectRenderable2,
880
882
  scrollbox: ScrollBoxRenderable,
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.27",
7
+ "version": "0.1.29",
8
8
  "description": "SolidJS renderer for OpenTUI",
9
9
  "license": "MIT",
10
10
  "repository": {
@@ -27,7 +27,7 @@
27
27
  "dependencies": {
28
28
  "@babel/core": "7.28.0",
29
29
  "@babel/preset-typescript": "7.27.1",
30
- "@opentui/core": "0.1.27",
30
+ "@opentui/core": "0.1.29",
31
31
  "babel-plugin-module-resolver": "5.0.2",
32
32
  "babel-preset-solid": "1.9.9",
33
33
  "s-js": "^0.4.9"
@@ -1,4 +1,4 @@
1
- import { ASCIIFontRenderable, BoxRenderable, CodeRenderable, InputRenderable, ScrollBoxRenderable, SelectRenderable, TabSelectRenderable, TextNodeRenderable, TextRenderable, type RenderContext, type TextNodeOptions } from "@opentui/core";
1
+ import { ASCIIFontRenderable, BoxRenderable, CodeRenderable, InputRenderable, ScrollBoxRenderable, SelectRenderable, TabSelectRenderable, TextareaRenderable, TextNodeRenderable, TextRenderable, type RenderContext, type TextNodeOptions } from "@opentui/core";
2
2
  import type { RenderableConstructor } from "../types/elements";
3
3
  export * from "./hooks";
4
4
  export * from "./extras";
@@ -30,6 +30,7 @@ export declare const baseComponents: {
30
30
  text: typeof TextRenderable;
31
31
  input: typeof InputRenderable;
32
32
  select: typeof SelectRenderable;
33
+ textarea: typeof TextareaRenderable;
33
34
  ascii_font: typeof ASCIIFontRenderable;
34
35
  tab_select: typeof TabSelectRenderable;
35
36
  scrollbox: typeof ScrollBoxRenderable;