babylonjs-gui 9.13.0 → 9.15.0

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/babylon.gui.d.ts CHANGED
@@ -1,5 +1,8 @@
1
1
 
2
2
  declare namespace BABYLON.GUI {
3
+ /** Pure barrel — re-exports only side-effect-free modules */
4
+
5
+
3
6
 
4
7
 
5
8
  /**
@@ -19,6 +22,9 @@ declare namespace BABYLON.GUI {
19
22
  }
20
23
 
21
24
 
25
+ /** Pure barrel — re-exports only side-effect-free modules */
26
+
27
+
22
28
 
23
29
 
24
30
  /**
@@ -108,6 +114,9 @@ declare namespace BABYLON.GUI {
108
114
  }
109
115
 
110
116
 
117
+ /** Pure barrel — re-exports only side-effect-free modules */
118
+
119
+
111
120
 
112
121
 
113
122
  /**
@@ -115,6 +124,9 @@ declare namespace BABYLON.GUI {
115
124
  */
116
125
 
117
126
 
127
+ /** Pure barrel — re-exports only side-effect-free modules */
128
+
129
+
118
130
  /**
119
131
  * Class used to render Slider Thumb material with MRDL
120
132
  */
@@ -436,8 +448,26 @@ declare namespace BABYLON.GUI {
436
448
  clone(name: string): MRDLSliderThumbMaterial;
437
449
  serialize(): any;
438
450
  getClassName(): string;
451
+ /**
452
+ * Parses a serialized MRDLSliderThumbMaterial and returns a new instance.
453
+ * @param source - the serialized object
454
+ * @param scene - defines the hosting scene
455
+ * @param rootUrl - the root URL used to load any associated textures
456
+ * @returns a new MRDLSliderThumbMaterial
457
+ */
439
458
  static Parse(source: any, scene: BABYLON.Scene, rootUrl: string): MRDLSliderThumbMaterial;
440
459
  }
460
+ /**
461
+ * Registers the MRDLSliderThumbMaterial class with the type store for serialization support.
462
+ * Safe to call multiple times; only the first call has an effect.
463
+ */
464
+ export function RegisterMRDLSliderThumbMaterial(): void;
465
+
466
+
467
+ /**
468
+ * Re-exports the pure implementation and applies the runtime registration side effect.
469
+ * Import "./mrdlSliderThumbMaterial.pure" for tree-shakeable, side-effect-free usage.
470
+ */
441
471
 
442
472
 
443
473
  /**
@@ -761,8 +791,26 @@ declare namespace BABYLON.GUI {
761
791
  clone(name: string): MRDLSliderBarMaterial;
762
792
  serialize(): any;
763
793
  getClassName(): string;
794
+ /**
795
+ * Parses a serialized MRDLSliderBarMaterial and returns a new instance.
796
+ * @param source - the serialized object
797
+ * @param scene - defines the hosting scene
798
+ * @param rootUrl - the root URL used to load any associated textures
799
+ * @returns a new MRDLSliderBarMaterial
800
+ */
764
801
  static Parse(source: any, scene: BABYLON.Scene, rootUrl: string): MRDLSliderBarMaterial;
765
802
  }
803
+ /**
804
+ * Registers the MRDLSliderBarMaterial class with the type store for serialization support.
805
+ * Safe to call multiple times; only the first call has an effect.
806
+ */
807
+ export function RegisterMRDLSliderBarMaterial(): void;
808
+
809
+
810
+ /**
811
+ * Re-exports the pure implementation and applies the runtime registration side effect.
812
+ * Import "./mrdlSliderBarMaterial.pure" for tree-shakeable, side-effect-free usage.
813
+ */
766
814
 
767
815
 
768
816
  export class MRDLInnerquadMaterial extends BABYLON.PushMaterial {
@@ -809,6 +857,17 @@ declare namespace BABYLON.GUI {
809
857
  getClassName(): string;
810
858
  static Parse(source: any, scene: BABYLON.Scene, rootUrl: string): MRDLInnerquadMaterial;
811
859
  }
860
+ /**
861
+ * Registers the MRDLInnerquadMaterial class with the type store for serialization support.
862
+ * Safe to call multiple times; only the first call has an effect.
863
+ */
864
+ export function RegisterMRDLInnerquadMaterial(): void;
865
+
866
+
867
+ /**
868
+ * Re-exports the pure implementation and applies the runtime registration side effect.
869
+ * Import "./mrdlInnerquadMaterial.pure" for tree-shakeable, side-effect-free usage.
870
+ */
812
871
 
813
872
 
814
873
  export class MRDLFrontplateMaterial extends BABYLON.PushMaterial {
@@ -984,6 +1043,17 @@ declare namespace BABYLON.GUI {
984
1043
  getClassName(): string;
985
1044
  static Parse(source: any, scene: BABYLON.Scene, rootUrl: string): MRDLFrontplateMaterial;
986
1045
  }
1046
+ /**
1047
+ * Registers the MRDLFrontplateMaterial class with the type store for serialization support.
1048
+ * Safe to call multiple times; only the first call has an effect.
1049
+ */
1050
+ export function RegisterMRDLFrontplateMaterial(): void;
1051
+
1052
+
1053
+ /**
1054
+ * Re-exports the pure implementation and applies the runtime registration side effect.
1055
+ * Import "./mrdlFrontplateMaterial.pure" for tree-shakeable, side-effect-free usage.
1056
+ */
987
1057
 
988
1058
 
989
1059
  /**
@@ -1119,8 +1189,26 @@ declare namespace BABYLON.GUI {
1119
1189
  clone(name: string): MRDLBackplateMaterial;
1120
1190
  serialize(): any;
1121
1191
  getClassName(): string;
1192
+ /**
1193
+ * Parses a serialized MRDLBackplateMaterial and returns a new instance.
1194
+ * @param source - the serialized object
1195
+ * @param scene - defines the hosting scene
1196
+ * @param rootUrl - the root URL used to load any associated textures
1197
+ * @returns a new MRDLBackplateMaterial
1198
+ */
1122
1199
  static Parse(source: any, scene: BABYLON.Scene, rootUrl: string): MRDLBackplateMaterial;
1123
1200
  }
1201
+ /**
1202
+ * Registers the MRDLBackplateMaterial class with the type store for serialization support.
1203
+ * Safe to call multiple times; only the first call has an effect.
1204
+ */
1205
+ export function RegisterMRDLBackplateMaterial(): void;
1206
+
1207
+
1208
+ /**
1209
+ * Re-exports the pure implementation and applies the runtime registration side effect.
1210
+ * Import "./mrdlBackplateMaterial.pure" for tree-shakeable, side-effect-free usage.
1211
+ */
1124
1212
 
1125
1213
 
1126
1214
  export class MRDLBackglowMaterial extends BABYLON.PushMaterial {
@@ -1198,6 +1286,17 @@ declare namespace BABYLON.GUI {
1198
1286
  getClassName(): string;
1199
1287
  static Parse(source: any, scene: BABYLON.Scene, rootUrl: string): MRDLBackglowMaterial;
1200
1288
  }
1289
+ /**
1290
+ * Registers the MRDLBackglowMaterial class with the type store for serialization support.
1291
+ * Safe to call multiple times; only the first call has an effect.
1292
+ */
1293
+ export function RegisterMRDLBackglowMaterial(): void;
1294
+
1295
+
1296
+ /**
1297
+ * Re-exports the pure implementation and applies the runtime registration side effect.
1298
+ * Import "./mrdlBackglowMaterial.pure" for tree-shakeable, side-effect-free usage.
1299
+ */
1201
1300
 
1202
1301
 
1203
1302
 
@@ -1286,6 +1385,9 @@ declare namespace BABYLON.GUI {
1286
1385
  };
1287
1386
 
1288
1387
 
1388
+ /** Pure barrel — re-exports only side-effect-free modules */
1389
+
1390
+
1289
1391
 
1290
1392
 
1291
1393
  /**
@@ -1352,6 +1454,12 @@ declare namespace BABYLON.GUI {
1352
1454
  }
1353
1455
 
1354
1456
 
1457
+ /**
1458
+ * Re-exports the pure implementation and applies the runtime registration side effect.
1459
+ * Import "./handleMaterial.pure" for tree-shakeable, side-effect-free usage.
1460
+ */
1461
+
1462
+
1355
1463
  /** @internal */
1356
1464
  export var handleVertexShaderWGSL: {
1357
1465
  name: string;
@@ -1380,6 +1488,9 @@ declare namespace BABYLON.GUI {
1380
1488
  };
1381
1489
 
1382
1490
 
1491
+ /** Pure barrel — re-exports only side-effect-free modules */
1492
+
1493
+
1383
1494
 
1384
1495
 
1385
1496
  /**
@@ -1572,6 +1683,17 @@ declare namespace BABYLON.GUI {
1572
1683
  */
1573
1684
  static Parse(source: any, scene: BABYLON.Scene, rootUrl: string): FluentButtonMaterial;
1574
1685
  }
1686
+ /**
1687
+ * Registers the FluentButtonMaterial class with the type store for serialization support.
1688
+ * Safe to call multiple times; only the first call has an effect.
1689
+ */
1690
+ export function RegisterFluentButtonMaterial(): void;
1691
+
1692
+
1693
+ /**
1694
+ * Re-exports the pure implementation and applies the runtime registration side effect.
1695
+ * Import "./fluentButtonMaterial.pure" for tree-shakeable, side-effect-free usage.
1696
+ */
1575
1697
 
1576
1698
 
1577
1699
  /** @internal */
@@ -1602,6 +1724,9 @@ declare namespace BABYLON.GUI {
1602
1724
  };
1603
1725
 
1604
1726
 
1727
+ /** Pure barrel — re-exports only side-effect-free modules */
1728
+
1729
+
1605
1730
 
1606
1731
 
1607
1732
  /**
@@ -1758,6 +1883,17 @@ declare namespace BABYLON.GUI {
1758
1883
  */
1759
1884
  static Parse(source: any, scene: BABYLON.Scene, rootUrl: string): FluentBackplateMaterial;
1760
1885
  }
1886
+ /**
1887
+ * Registers the FluentBackplateMaterial class with the type store for serialization support.
1888
+ * Safe to call multiple times; only the first call has an effect.
1889
+ */
1890
+ export function RegisterFluentBackplateMaterial(): void;
1891
+
1892
+
1893
+ /**
1894
+ * Re-exports the pure implementation and applies the runtime registration side effect.
1895
+ * Import "./fluentBackplateMaterial.pure" for tree-shakeable, side-effect-free usage.
1896
+ */
1761
1897
 
1762
1898
 
1763
1899
  /** @internal */
@@ -1788,6 +1924,9 @@ declare namespace BABYLON.GUI {
1788
1924
  };
1789
1925
 
1790
1926
 
1927
+ /** Pure barrel — re-exports only side-effect-free modules */
1928
+
1929
+
1791
1930
 
1792
1931
 
1793
1932
  /** @internal */
@@ -1880,6 +2019,17 @@ declare namespace BABYLON.GUI {
1880
2019
  */
1881
2020
  static Parse(source: any, scene: BABYLON.Scene, rootUrl: string): FluentMaterial;
1882
2021
  }
2022
+ /**
2023
+ * Registers the FluentMaterial class with the type store for serialization support.
2024
+ * Safe to call multiple times; only the first call has an effect.
2025
+ */
2026
+ export function RegisterFluentMaterial(): void;
2027
+
2028
+
2029
+ /**
2030
+ * Re-exports the pure implementation and applies the runtime registration side effect.
2031
+ * Import "./fluentMaterial.pure" for tree-shakeable, side-effect-free usage.
2032
+ */
1883
2033
 
1884
2034
 
1885
2035
  /** @internal */
@@ -1964,6 +2114,9 @@ declare namespace BABYLON.GUI {
1964
2114
  }
1965
2115
 
1966
2116
 
2117
+ /** Pure barrel — re-exports only side-effect-free modules */
2118
+
2119
+
1967
2120
 
1968
2121
 
1969
2122
  /**
@@ -2510,6 +2663,9 @@ declare namespace BABYLON.GUI {
2510
2663
  }
2511
2664
 
2512
2665
 
2666
+ /** Pure barrel — re-exports only side-effect-free modules */
2667
+
2668
+
2513
2669
  /**
2514
2670
  * Class used to create a container panel deployed on the surface of a plane
2515
2671
  */
@@ -3685,6 +3841,9 @@ declare namespace BABYLON.GUI {
3685
3841
  }
3686
3842
 
3687
3843
 
3844
+ /** Pure barrel — re-exports only side-effect-free modules */
3845
+
3846
+
3688
3847
  /**
3689
3848
  * Class used to store a point for a MultiLine object.
3690
3849
  * The point can be pure 2D coordinates, a mesh or a control
@@ -4626,6 +4785,17 @@ declare namespace BABYLON.GUI {
4626
4785
  */
4627
4786
  _parseFromContent(serializedObject: any, host: AdvancedDynamicTexture): void;
4628
4787
  }
4788
+ /**
4789
+ * Registers the VirtualKeyboard class with the type store for serialization support.
4790
+ * Safe to call multiple times; only the first call has an effect.
4791
+ */
4792
+ export function RegisterVirtualKeyboard(): void;
4793
+
4794
+
4795
+ /**
4796
+ * Re-exports the pure implementation and applies the runtime registration side effect.
4797
+ * Import "./virtualKeyboard.pure" for tree-shakeable, side-effect-free usage.
4798
+ */
4629
4799
 
4630
4800
 
4631
4801
  /**
@@ -4716,6 +4886,17 @@ declare namespace BABYLON.GUI {
4716
4886
  */
4717
4887
  _onPointerUp(target: Control, coordinates: BABYLON.Vector2, pointerId: number, buttonIndex: number, notifyClick: boolean, pi: BABYLON.PointerInfoBase): void;
4718
4888
  }
4889
+ /**
4890
+ * Registers the ToggleButton class with the type store for serialization support.
4891
+ * Safe to call multiple times; only the first call has an effect.
4892
+ */
4893
+ export function RegisterToggleButton(): void;
4894
+
4895
+
4896
+ /**
4897
+ * Re-exports the pure implementation and applies the runtime registration side effect.
4898
+ * Import "./toggleButton.pure" for tree-shakeable, side-effect-free usage.
4899
+ */
4719
4900
 
4720
4901
 
4721
4902
  /** @internal */
@@ -4945,6 +5126,17 @@ declare namespace BABYLON.GUI {
4945
5126
  computeExpectedHeight(): number;
4946
5127
  dispose(): void;
4947
5128
  }
5129
+ /**
5130
+ * Registers the TextBlock class with the type store for serialization support.
5131
+ * Safe to call multiple times; only the first call has an effect.
5132
+ */
5133
+ export function RegisterTextBlock(): void;
5134
+
5135
+
5136
+ /**
5137
+ * Re-exports the pure implementation and applies the runtime registration side effect.
5138
+ * Import "./textBlock.pure" for tree-shakeable, side-effect-free usage.
5139
+ */
4948
5140
 
4949
5141
 
4950
5142
  /**
@@ -4952,6 +5144,17 @@ declare namespace BABYLON.GUI {
4952
5144
  * @internal
4953
5145
  */
4954
5146
  const Name = "Statics";
5147
+ /**
5148
+ * Registers GUI static helpers such as {@link Control.AddHeader}.
5149
+ * Safe to call multiple times; only the first call has an effect.
5150
+ */
5151
+ export function RegisterGUIStatics(): void;
5152
+
5153
+
5154
+ /**
5155
+ * Re-exports the pure implementation and applies the runtime registration side effect.
5156
+ * Import "./statics.pure" for tree-shakeable, side-effect-free usage.
5157
+ */
4955
5158
 
4956
5159
 
4957
5160
  /**
@@ -5014,6 +5217,17 @@ declare namespace BABYLON.GUI {
5014
5217
  */
5015
5218
  _parseFromContent(serializedObject: any, host: AdvancedDynamicTexture): void;
5016
5219
  }
5220
+ /**
5221
+ * Registers the StackPanel class with the type store for serialization support.
5222
+ * Safe to call multiple times; only the first call has an effect.
5223
+ */
5224
+ export function RegisterStackPanel(): void;
5225
+
5226
+
5227
+ /**
5228
+ * Re-exports the pure implementation and applies the runtime registration side effect.
5229
+ * Import "./stackPanel.pure" for tree-shakeable, side-effect-free usage.
5230
+ */
5017
5231
 
5018
5232
 
5019
5233
  /** Class used to create a RadioGroup
@@ -5293,6 +5507,17 @@ declare namespace BABYLON.GUI {
5293
5507
  private _drawRoundedRect;
5294
5508
  protected _clipForChildren(context: BABYLON.ICanvasRenderingContext): void;
5295
5509
  }
5510
+ /**
5511
+ * Registers the Rectangle class with the type store for serialization support.
5512
+ * Safe to call multiple times; only the first call has an effect.
5513
+ */
5514
+ export function RegisterRectangle(): void;
5515
+
5516
+
5517
+ /**
5518
+ * Re-exports the pure implementation and applies the runtime registration side effect.
5519
+ * Import "./rectangle.pure" for tree-shakeable, side-effect-free usage.
5520
+ */
5296
5521
 
5297
5522
 
5298
5523
  /**
@@ -5338,6 +5563,20 @@ declare namespace BABYLON.GUI {
5338
5563
  */
5339
5564
  static AddRadioButtonWithHeader(title: string, group: string, isChecked: boolean, onValueChanged: (button: RadioButton, value: boolean) => void): StackPanel;
5340
5565
  }
5566
+ /**
5567
+ * Registers the RadioButton class with the type store for serialization support.
5568
+ * Safe to call multiple times; only the first call has an effect.
5569
+ */
5570
+ export function RegisterRadioButton(): void;
5571
+
5572
+
5573
+ /**
5574
+ * Re-exports the pure implementation and applies the runtime registration side effect.
5575
+ * Import "./radioButton.pure" for tree-shakeable, side-effect-free usage.
5576
+ */
5577
+
5578
+
5579
+ /** Pure barrel — re-exports only side-effect-free modules */
5341
5580
 
5342
5581
 
5343
5582
  /**
@@ -5411,6 +5650,17 @@ declare namespace BABYLON.GUI {
5411
5650
  protected _computeAlignment(): void;
5412
5651
  dispose(): void;
5413
5652
  }
5653
+ /**
5654
+ * Registers the MultiLine class with the type store for serialization support.
5655
+ * Safe to call multiple times; only the first call has an effect.
5656
+ */
5657
+ export function RegisterMultiLine(): void;
5658
+
5659
+
5660
+ /**
5661
+ * Re-exports the pure implementation and applies the runtime registration side effect.
5662
+ * Import "./multiLine.pure" for tree-shakeable, side-effect-free usage.
5663
+ */
5414
5664
 
5415
5665
 
5416
5666
  /** Class used to render 2D lines */
@@ -5481,6 +5731,17 @@ declare namespace BABYLON.GUI {
5481
5731
  */
5482
5732
  _moveToProjectedPosition(projectedPosition: BABYLON.Vector3, end?: boolean): void;
5483
5733
  }
5734
+ /**
5735
+ * Registers the Line class with the type store for serialization support.
5736
+ * Safe to call multiple times; only the first call has an effect.
5737
+ */
5738
+ export function RegisterLine(): void;
5739
+
5740
+
5741
+ /**
5742
+ * Re-exports the pure implementation and applies the runtime registration side effect.
5743
+ * Import "./line.pure" for tree-shakeable, side-effect-free usage.
5744
+ */
5484
5745
 
5485
5746
 
5486
5747
  /**
@@ -5615,6 +5876,17 @@ declare namespace BABYLON.GUI {
5615
5876
  selectAllText(): void;
5616
5877
  dispose(): void;
5617
5878
  }
5879
+ /**
5880
+ * Registers the InputTextArea class with the type store for serialization support.
5881
+ * Safe to call multiple times; only the first call has an effect.
5882
+ */
5883
+ export function RegisterInputTextArea(): void;
5884
+
5885
+
5886
+ /**
5887
+ * Re-exports the pure implementation and applies the runtime registration side effect.
5888
+ * Import "./inputTextArea.pure" for tree-shakeable, side-effect-free usage.
5889
+ */
5618
5890
 
5619
5891
 
5620
5892
  /**
@@ -5810,6 +6082,17 @@ declare namespace BABYLON.GUI {
5810
6082
  private get isTextHighlightOn();
5811
6083
  dispose(): void;
5812
6084
  }
6085
+ /**
6086
+ * Registers the InputText class with the type store for serialization support.
6087
+ * Safe to call multiple times; only the first call has an effect.
6088
+ */
6089
+ export function RegisterInputText(): void;
6090
+
6091
+
6092
+ /**
6093
+ * Re-exports the pure implementation and applies the runtime registration side effect.
6094
+ * Import "./inputText.pure" for tree-shakeable, side-effect-free usage.
6095
+ */
5813
6096
 
5814
6097
 
5815
6098
  /**
@@ -5819,6 +6102,17 @@ declare namespace BABYLON.GUI {
5819
6102
  protected _getTypeName(): string;
5820
6103
  protected _beforeRenderText(textWrapper: TextWrapper): TextWrapper;
5821
6104
  }
6105
+ /**
6106
+ * Registers the InputPassword class with the type store for serialization support.
6107
+ * Safe to call multiple times; only the first call has an effect.
6108
+ */
6109
+ export function RegisterInputPassword(): void;
6110
+
6111
+
6112
+ /**
6113
+ * Re-exports the pure implementation and applies the runtime registration side effect.
6114
+ * Import "./inputPassword.pure" for tree-shakeable, side-effect-free usage.
6115
+ */
5822
6116
 
5823
6117
 
5824
6118
 
@@ -6046,6 +6340,17 @@ declare namespace BABYLON.GUI {
6046
6340
  /** NINE_PATCH */
6047
6341
  static readonly STRETCH_NINE_PATCH = 4;
6048
6342
  }
6343
+ /**
6344
+ * Registers the Image class with the type store for serialization support.
6345
+ * Safe to call multiple times; only the first call has an effect.
6346
+ */
6347
+ export function RegisterImage(): void;
6348
+
6349
+
6350
+ /**
6351
+ * Re-exports the pure implementation and applies the runtime registration side effect.
6352
+ * Import "./image.pure" for tree-shakeable, side-effect-free usage.
6353
+ */
6049
6354
 
6050
6355
 
6051
6356
  /**
@@ -6192,6 +6497,17 @@ declare namespace BABYLON.GUI {
6192
6497
  */
6193
6498
  _parseFromContent(serializedObject: any, host: AdvancedDynamicTexture): void;
6194
6499
  }
6500
+ /**
6501
+ * Registers the Grid class with the type store for serialization support.
6502
+ * Safe to call multiple times; only the first call has an effect.
6503
+ */
6504
+ export function RegisterGrid(): void;
6505
+
6506
+
6507
+ /**
6508
+ * Re-exports the pure implementation and applies the runtime registration side effect.
6509
+ * Import "./grid.pure" for tree-shakeable, side-effect-free usage.
6510
+ */
6195
6511
 
6196
6512
 
6197
6513
  /**
@@ -6248,6 +6564,17 @@ declare namespace BABYLON.GUI {
6248
6564
  */
6249
6565
  _onPointerDown(target: Control, coordinates: BABYLON.Vector2, pointerId: number, buttonIndex: number, pi: BABYLON.PointerInfoBase): boolean;
6250
6566
  }
6567
+ /**
6568
+ * Registers the FocusableButton class with the type store for serialization support.
6569
+ * Safe to call multiple times; only the first call has an effect.
6570
+ */
6571
+ export function RegisterFocusableButton(): void;
6572
+
6573
+
6574
+ /**
6575
+ * Re-exports the pure implementation and applies the runtime registration side effect.
6576
+ * Import "./focusableButton.pure" for tree-shakeable, side-effect-free usage.
6577
+ */
6251
6578
 
6252
6579
 
6253
6580
  /** Class used to create 2D ellipse containers */
@@ -6272,6 +6599,17 @@ declare namespace BABYLON.GUI {
6272
6599
  protected _clipForChildren(context: BABYLON.ICanvasRenderingContext): void;
6273
6600
  _renderHighlightSpecific(context: BABYLON.ICanvasRenderingContext): void;
6274
6601
  }
6602
+ /**
6603
+ * Registers the Ellipse class with the type store for serialization support.
6604
+ * Safe to call multiple times; only the first call has an effect.
6605
+ */
6606
+ export function RegisterEllipse(): void;
6607
+
6608
+
6609
+ /**
6610
+ * Re-exports the pure implementation and applies the runtime registration side effect.
6611
+ * Import "./ellipse.pure" for tree-shakeable, side-effect-free usage.
6612
+ */
6275
6613
 
6276
6614
 
6277
6615
  /** Class used to render a grid */
@@ -6325,6 +6663,17 @@ declare namespace BABYLON.GUI {
6325
6663
  _draw(context: BABYLON.ICanvasRenderingContext): void;
6326
6664
  protected _getTypeName(): string;
6327
6665
  }
6666
+ /**
6667
+ * Registers the DisplayGrid class with the type store for serialization support.
6668
+ * Safe to call multiple times; only the first call has an effect.
6669
+ */
6670
+ export function RegisterDisplayGrid(): void;
6671
+
6672
+
6673
+ /**
6674
+ * Re-exports the pure implementation and applies the runtime registration side effect.
6675
+ * Import "./displayGrid.pure" for tree-shakeable, side-effect-free usage.
6676
+ */
6328
6677
 
6329
6678
 
6330
6679
  /**
@@ -7253,6 +7602,17 @@ declare namespace BABYLON.GUI {
7253
7602
  */
7254
7603
  isReady(): boolean;
7255
7604
  }
7605
+ /**
7606
+ * Registers the Control class with the type store for serialization support.
7607
+ * Safe to call multiple times; only the first call has an effect.
7608
+ */
7609
+ export function RegisterControl(): void;
7610
+
7611
+
7612
+ /**
7613
+ * Re-exports the pure implementation and applies the runtime registration side effect.
7614
+ * Import "./control.pure" for tree-shakeable, side-effect-free usage.
7615
+ */
7256
7616
 
7257
7617
 
7258
7618
  /**
@@ -7425,6 +7785,17 @@ declare namespace BABYLON.GUI {
7425
7785
  _parseFromContent(serializedObject: any, host: AdvancedDynamicTexture, urlRewriter?: (url: string) => string): void;
7426
7786
  isReady(): boolean;
7427
7787
  }
7788
+ /**
7789
+ * Registers the Container class with the type store for serialization support.
7790
+ * Safe to call multiple times; only the first call has an effect.
7791
+ */
7792
+ export function RegisterContainer(): void;
7793
+
7794
+
7795
+ /**
7796
+ * Re-exports the pure implementation and applies the runtime registration side effect.
7797
+ * Import "./container.pure" for tree-shakeable, side-effect-free usage.
7798
+ */
7428
7799
 
7429
7800
 
7430
7801
  /** Class used to create color pickers */
@@ -7520,6 +7891,17 @@ declare namespace BABYLON.GUI {
7520
7891
  pickedColor: string;
7521
7892
  }>;
7522
7893
  }
7894
+ /**
7895
+ * Registers the ColorPicker class with the type store for serialization support.
7896
+ * Safe to call multiple times; only the first call has an effect.
7897
+ */
7898
+ export function RegisterColorPicker(): void;
7899
+
7900
+
7901
+ /**
7902
+ * Re-exports the pure implementation and applies the runtime registration side effect.
7903
+ * Import "./colorpicker.pure" for tree-shakeable, side-effect-free usage.
7904
+ */
7523
7905
 
7524
7906
 
7525
7907
  /**
@@ -7569,6 +7951,17 @@ declare namespace BABYLON.GUI {
7569
7951
  */
7570
7952
  static AddCheckBoxWithHeader(title: string, onValueChanged: (value: boolean) => void): StackPanel;
7571
7953
  }
7954
+ /**
7955
+ * Registers the Checkbox class with the type store for serialization support.
7956
+ * Safe to call multiple times; only the first call has an effect.
7957
+ */
7958
+ export function RegisterCheckbox(): void;
7959
+
7960
+
7961
+ /**
7962
+ * Re-exports the pure implementation and applies the runtime registration side effect.
7963
+ * Import "./checkbox.pure" for tree-shakeable, side-effect-free usage.
7964
+ */
7572
7965
 
7573
7966
 
7574
7967
  /**
@@ -7671,6 +8064,17 @@ declare namespace BABYLON.GUI {
7671
8064
  */
7672
8065
  static CreateImageWithCenterTextButton(name: string, text: string, imageUrl: string): Button;
7673
8066
  }
8067
+ /**
8068
+ * Registers the Button class with the type store for serialization support.
8069
+ * Safe to call multiple times; only the first call has an effect.
8070
+ */
8071
+ export function RegisterButton(): void;
8072
+
8073
+
8074
+ /**
8075
+ * Re-exports the pure implementation and applies the runtime registration side effect.
8076
+ * Import "./button.pure" for tree-shakeable, side-effect-free usage.
8077
+ */
7674
8078
 
7675
8079
 
7676
8080
  /**
@@ -7714,6 +8118,17 @@ declare namespace BABYLON.GUI {
7714
8118
  /** @internal */
7715
8119
  _parseFromContent(serializedObject: any, host: AdvancedDynamicTexture): void;
7716
8120
  }
8121
+ /**
8122
+ * Registers the Slider class with the type store for serialization support.
8123
+ * Safe to call multiple times; only the first call has an effect.
8124
+ */
8125
+ export function RegisterSlider(): void;
8126
+
8127
+
8128
+ /**
8129
+ * Re-exports the pure implementation and applies the runtime registration side effect.
8130
+ * Import "./slider.pure" for tree-shakeable, side-effect-free usage.
8131
+ */
7717
8132
 
7718
8133
 
7719
8134
  /**
@@ -7758,6 +8173,20 @@ declare namespace BABYLON.GUI {
7758
8173
  serialize(serializationObject: any): void;
7759
8174
  _parseFromContent(serializationObject: any, host: AdvancedDynamicTexture): void;
7760
8175
  }
8176
+ /**
8177
+ * Registers the ScrollBar class with the type store for serialization support.
8178
+ * Safe to call multiple times; only the first call has an effect.
8179
+ */
8180
+ export function RegisterScrollBar(): void;
8181
+
8182
+
8183
+ /**
8184
+ * Re-exports the pure implementation and applies the runtime registration side effect.
8185
+ * Import "./scrollBar.pure" for tree-shakeable, side-effect-free usage.
8186
+ */
8187
+
8188
+
8189
+ /** Pure barrel — re-exports only side-effect-free modules */
7761
8190
 
7762
8191
 
7763
8192
  /**
@@ -7866,6 +8295,17 @@ declare namespace BABYLON.GUI {
7866
8295
  */
7867
8296
  _parseFromContent(serializedObject: any, host: AdvancedDynamicTexture): void;
7868
8297
  }
8298
+ /**
8299
+ * Registers the ImageBasedSlider class with the type store for serialization support.
8300
+ * Safe to call multiple times; only the first call has an effect.
8301
+ */
8302
+ export function RegisterImageBasedSlider(): void;
8303
+
8304
+
8305
+ /**
8306
+ * Re-exports the pure implementation and applies the runtime registration side effect.
8307
+ * Import "./imageBasedSlider.pure" for tree-shakeable, side-effect-free usage.
8308
+ */
7869
8309
 
7870
8310
 
7871
8311
  /**
@@ -8163,6 +8603,23 @@ declare namespace BABYLON.GUI {
8163
8603
  /** Releases associated resources */
8164
8604
  dispose(): void;
8165
8605
  }
8606
+ /**
8607
+ * Registers the ScrollViewer class with the type store for serialization support.
8608
+ * Safe to call multiple times; only the first call has an effect.
8609
+ */
8610
+ export function RegisterScrollViewer(): void;
8611
+
8612
+
8613
+ /**
8614
+ * Re-exports the pure implementation and applies the runtime registration side effect.
8615
+ * Import "./scrollViewer.pure" for tree-shakeable, side-effect-free usage.
8616
+ */
8617
+
8618
+
8619
+ /** Pure barrel — re-exports only side-effect-free modules */
8620
+
8621
+
8622
+ /** Pure barrel — re-exports only side-effect-free modules */
8166
8623
 
8167
8624
 
8168
8625
  /**
@@ -8216,6 +8673,17 @@ declare namespace BABYLON.GUI {
8216
8673
  */
8217
8674
  parse(serializationObject: any): void;
8218
8675
  }
8676
+ /**
8677
+ * Registers the RadialGradient class with the type store for serialization support.
8678
+ * Safe to call multiple times; only the first call has an effect.
8679
+ */
8680
+ export function RegisterRadialGradient(): void;
8681
+
8682
+
8683
+ /**
8684
+ * Re-exports the pure implementation and applies the runtime registration side effect.
8685
+ * Import "./RadialGradient.pure" for tree-shakeable, side-effect-free usage.
8686
+ */
8219
8687
 
8220
8688
 
8221
8689
  /**
@@ -8261,6 +8729,17 @@ declare namespace BABYLON.GUI {
8261
8729
  */
8262
8730
  parse(serializationObject: any): void;
8263
8731
  }
8732
+ /**
8733
+ * Registers the LinearGradient class with the type store for serialization support.
8734
+ * Safe to call multiple times; only the first call has an effect.
8735
+ */
8736
+ export function RegisterLinearGradient(): void;
8737
+
8738
+
8739
+ /**
8740
+ * Re-exports the pure implementation and applies the runtime registration side effect.
8741
+ * Import "./LinearGradient.pure" for tree-shakeable, side-effect-free usage.
8742
+ */
8264
8743
 
8265
8744
 
8266
8745
  /**
@@ -8369,6 +8848,20 @@ declare namespace BABYLON.GUI {
8369
8848
  get output(): BABYLON.NodeRenderGraphConnectionPoint;
8370
8849
  protected _buildBlock(state: BABYLON.NodeRenderGraphBuildState): void;
8371
8850
  }
8851
+ /**
8852
+ * Registers the NodeRenderGraphGUIBlock class with the type store for serialization support.
8853
+ * Safe to call multiple times; only the first call has an effect.
8854
+ */
8855
+ export function RegisterNodeRenderGraphGUIBlock(): void;
8856
+
8857
+
8858
+ /**
8859
+ * Re-exports the pure implementation and applies the runtime registration side effect.
8860
+ * Import "./renderGraphGUIBlock.pure" for tree-shakeable, side-effect-free usage.
8861
+ */
8862
+
8863
+
8864
+ /** Pure barrel — re-exports only side-effect-free modules */
8372
8865
 
8373
8866
 
8374
8867
  /**