@league-of-foundry-developers/foundry-vtt-types 13.346.0-beta.20250708124637 → 13.346.0-beta.20250709002729

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@league-of-foundry-developers/foundry-vtt-types",
4
- "version": "13.346.0-beta.20250708124637",
4
+ "version": "13.346.0-beta.20250709002729",
5
5
  "description": "TypeScript type definitions for Foundry VTT",
6
6
  "type": "module",
7
7
  "types": "./src/index.d.mts",
@@ -746,7 +746,7 @@ declare class ApplicationV2<
746
746
  * Update the Application element position using provided data which is merged with the prior position.
747
747
  * @param position - New Application positioning data
748
748
  */
749
- setPosition(position: DeepPartial<ApplicationV2.Position>): ApplicationV2.Position | void;
749
+ setPosition(position?: DeepPartial<ApplicationV2.Position>): ApplicationV2.Position | void;
750
750
 
751
751
  /**
752
752
  * Translate a requested application position updated into a resolved allowed position for the Application.
@@ -857,6 +857,13 @@ declare class ApplicationV2<
857
857
  */
858
858
  protected _onRender(context: DeepPartial<RenderContext>, options: DeepPartial<RenderOptions>): Promise<void>;
859
859
 
860
+ /**
861
+ * Perform post-render finalization actions.
862
+ * @param context - Prepared context data
863
+ * @param options - Provided render options
864
+ */
865
+ protected _postRender(context: DeepPartial<RenderContext>, options: DeepPartial<RenderOptions>): Promise<void>;
866
+
860
867
  /**
861
868
  * Actions performed before closing the Application.
862
869
  * Pre-close steps are awaited by the close process.