@gtkx/react 0.17.1 → 0.17.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.
@@ -11,6 +11,7 @@ import type * as Pango from "@gtkx/ffi/pango";
11
11
  import type * as Vte from "@gtkx/ffi/vte";
12
12
  import type * as WebKit from "@gtkx/ffi/webkit";
13
13
  import type * as cairo from "@gtkx/ffi/cairo";
14
+ /** Base props shared by all GTK widget elements. */
14
15
  export type WidgetProps = {
15
16
  /**
16
17
  * Whether the widget or any of its descendents can accept
@@ -18452,6 +18453,7 @@ export declare const AdwTabOverview: "AdwTabOverview";
18452
18453
  * are the accessible parent objects of the child widgets.
18453
18454
  */
18454
18455
  export declare const AdwTabView: "AdwTabView";
18456
+ /** A Vte.Terminal widget element. */
18455
18457
  export declare const VteTerminal: "VteTerminal";
18456
18458
  /**
18457
18459
  * A single-line text entry.
@@ -19468,6 +19470,7 @@ export declare const GtkVolumeButton: "GtkVolumeButton";
19468
19470
  * you don't need to embed it in a #GtkScrolledWindow.
19469
19471
  */
19470
19472
  export declare const WebKitWebView: "WebKitWebView";
19473
+ /** A WebKit.WebViewBase widget element. */
19471
19474
  export declare const WebKitWebViewBase: "WebKitWebViewBase";
19472
19475
  /**
19473
19476
  * Shows window frame controls.
@@ -7959,6 +7959,7 @@ export const AdwTabOverview = "AdwTabOverview";
7959
7959
  * are the accessible parent objects of the child widgets.
7960
7960
  */
7961
7961
  export const AdwTabView = "AdwTabView";
7962
+ /** A Vte.Terminal widget element. */
7962
7963
  export const VteTerminal = "VteTerminal";
7963
7964
  /**
7964
7965
  * A single-line text entry.
@@ -8975,6 +8976,7 @@ export const GtkVolumeButton = "GtkVolumeButton";
8975
8976
  * you don't need to embed it in a #GtkScrolledWindow.
8976
8977
  */
8977
8978
  export const WebKitWebView = "WebKitWebView";
8979
+ /** A WebKit.WebViewBase widget element. */
8978
8980
  export const WebKitWebViewBase = "WebKitWebViewBase";
8979
8981
  /**
8980
8982
  * Shows window frame controls.
@@ -1,7 +1,13 @@
1
1
  import type * as Gdk from "@gtkx/ffi/gdk";
2
2
  import * as Gtk from "@gtkx/ffi/gtk";
3
3
  import { VirtualNode } from "./virtual.js";
4
+ /**
5
+ * Props for the TextPaintable virtual element.
6
+ *
7
+ * Used to embed inline images or icons within text content in a GtkTextView.
8
+ */
4
9
  export type TextPaintableProps = {
10
+ /** The paintable (image, icon, etc.) to embed inline with the text */
5
11
  paintable: Gdk.Paintable;
6
12
  };
7
13
  export declare class TextPaintableNode extends VirtualNode<TextPaintableProps> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gtkx/react",
3
- "version": "0.17.1",
3
+ "version": "0.17.2",
4
4
  "description": "Build GTK4 desktop applications with React and TypeScript",
5
5
  "keywords": [
6
6
  "gtkx",
@@ -37,8 +37,8 @@
37
37
  ],
38
38
  "dependencies": {
39
39
  "react-reconciler": "^0.33.0",
40
- "@gtkx/ffi": "0.17.1",
41
- "@gtkx/gir": "0.17.1"
40
+ "@gtkx/ffi": "0.17.2",
41
+ "@gtkx/gir": "0.17.2"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/react-reconciler": "^0.33.0"