@gtkx/react 0.1.23 → 0.1.24

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.
@@ -231,9 +231,7 @@ ${widgetPropsContent}
231
231
  const parentPropsName = this.getParentPropsName(widget);
232
232
  const namedChildPropNames = new Set(metadata.namedChildSlots.map((s) => toCamelCase(s.propertyName)));
233
233
  const lines = [];
234
- if (widget.doc) {
235
- lines.push(formatDoc(widget.doc).trimEnd());
236
- }
234
+ lines.push(`/** Props for the {@link ${widgetName}} widget. */`);
237
235
  lines.push(`export interface ${widgetName}Props extends ${parentPropsName} {`);
238
236
  const requiredCtorParams = this.getRequiredConstructorParams(widget);
239
237
  const seenProps = new Set();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gtkx/react",
3
- "version": "0.1.23",
3
+ "version": "0.1.24",
4
4
  "description": "Build GTK4 desktop applications with React and TypeScript",
5
5
  "keywords": [
6
6
  "gtk",
@@ -40,10 +40,10 @@
40
40
  ],
41
41
  "dependencies": {
42
42
  "react-reconciler": "0.33.0",
43
- "@gtkx/ffi": "0.1.23"
43
+ "@gtkx/ffi": "0.1.24"
44
44
  },
45
45
  "devDependencies": {
46
- "@gtkx/gir": "0.1.23"
46
+ "@gtkx/gir": "0.1.24"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "react": "^19"