babylonjs-gui-editor 7.54.0 → 7.54.1
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.guiEditor.d.ts
CHANGED
|
@@ -2847,6 +2847,33 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
2847
2847
|
|
|
2848
2848
|
|
|
2849
2849
|
|
|
2850
|
+
}
|
|
2851
|
+
declare module BABYLON {
|
|
2852
|
+
|
|
2853
|
+
|
|
2854
|
+
}
|
|
2855
|
+
declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
2856
|
+
interface ITextureButtonLineProps {
|
|
2857
|
+
label: string;
|
|
2858
|
+
scene: Scene;
|
|
2859
|
+
onClick: (file: File) => void;
|
|
2860
|
+
onLink: (texture: BaseTexture) => void;
|
|
2861
|
+
accept: string;
|
|
2862
|
+
}
|
|
2863
|
+
interface ITextureButtonLineState {
|
|
2864
|
+
isOpen: boolean;
|
|
2865
|
+
}
|
|
2866
|
+
export class TextureButtonLine extends React.Component<ITextureButtonLineProps, ITextureButtonLineState> {
|
|
2867
|
+
private static _IDGenerator;
|
|
2868
|
+
private _id;
|
|
2869
|
+
private _uploadInputRef;
|
|
2870
|
+
constructor(props: ITextureButtonLineProps);
|
|
2871
|
+
onChange(evt: any): void;
|
|
2872
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
2873
|
+
}
|
|
2874
|
+
|
|
2875
|
+
|
|
2876
|
+
|
|
2850
2877
|
}
|
|
2851
2878
|
declare module BABYLON {
|
|
2852
2879
|
|