babylonjs-gui-editor 7.28.0 → 7.29.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.
@@ -2888,6 +2888,34 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
2888
2888
 
2889
2889
 
2890
2890
 
2891
+ }
2892
+ declare module BABYLON {
2893
+
2894
+
2895
+ }
2896
+ declare module BABYLON.GuiEditor.SharedUIComponents {
2897
+ interface ILineWithFileButtonComponentProps {
2898
+ title: string;
2899
+ closed?: boolean;
2900
+ multiple?: boolean;
2901
+ label: string;
2902
+ iconImage: any;
2903
+ onIconClick: (file: File) => void;
2904
+ accept: string;
2905
+ uploadName?: string;
2906
+ }
2907
+ export class LineWithFileButtonComponent extends React.Component<ILineWithFileButtonComponentProps, {
2908
+ isExpanded: boolean;
2909
+ }> {
2910
+ private _uploadRef;
2911
+ constructor(props: ILineWithFileButtonComponentProps);
2912
+ onChange(evt: any): void;
2913
+ switchExpandedState(): void;
2914
+ render(): import("react/jsx-runtime").JSX.Element;
2915
+ }
2916
+
2917
+
2918
+
2891
2919
  }
2892
2920
  declare module BABYLON {
2893
2921
 
@@ -3152,6 +3180,28 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
3152
3180
 
3153
3181
 
3154
3182
 
3183
+ }
3184
+ declare module BABYLON {
3185
+
3186
+
3187
+ }
3188
+ declare module BABYLON.GuiEditor.SharedUIComponents {
3189
+ export interface IDraggableLineWithButtonComponent {
3190
+ format: string;
3191
+ data: string;
3192
+ tooltip: string;
3193
+ iconImage: any;
3194
+ onIconClick: (value: string) => void;
3195
+ iconTitle: string;
3196
+ lenSuffixToRemove?: number;
3197
+ }
3198
+ export class DraggableLineWithButtonComponent extends React.Component<IDraggableLineWithButtonComponent> {
3199
+ constructor(props: IDraggableLineWithButtonComponent);
3200
+ render(): import("react/jsx-runtime").JSX.Element;
3201
+ }
3202
+
3203
+
3204
+
3155
3205
  }
3156
3206
  declare module BABYLON {
3157
3207
 
@@ -3159,6 +3209,7 @@ declare module BABYLON {
3159
3209
  }
3160
3210
  declare module BABYLON.GuiEditor.SharedUIComponents {
3161
3211
  export interface IButtonLineComponentProps {
3212
+ format: string;
3162
3213
  data: string;
3163
3214
  tooltip: string;
3164
3215
  }
@@ -3115,6 +3115,30 @@ export class LinkButtonComponent extends React.Component<ILinkButtonComponentPro
3115
3115
  }
3116
3116
  export {};
3117
3117
 
3118
+ }
3119
+ declare module "babylonjs-gui-editor/lines/lineWithFileButtonComponent" {
3120
+ import * as React from "react";
3121
+ interface ILineWithFileButtonComponentProps {
3122
+ title: string;
3123
+ closed?: boolean;
3124
+ multiple?: boolean;
3125
+ label: string;
3126
+ iconImage: any;
3127
+ onIconClick: (file: File) => void;
3128
+ accept: string;
3129
+ uploadName?: string;
3130
+ }
3131
+ export class LineWithFileButtonComponent extends React.Component<ILineWithFileButtonComponentProps, {
3132
+ isExpanded: boolean;
3133
+ }> {
3134
+ private _uploadRef;
3135
+ constructor(props: ILineWithFileButtonComponentProps);
3136
+ onChange(evt: any): void;
3137
+ switchExpandedState(): void;
3138
+
3139
+ }
3140
+ export {};
3141
+
3118
3142
  }
3119
3143
  declare module "babylonjs-gui-editor/lines/lineContainerComponent" {
3120
3144
  import * as React from "react";
@@ -3343,10 +3367,28 @@ export class FileButtonLine extends React.Component<IFileButtonLineProps> {
3343
3367
  }
3344
3368
  export {};
3345
3369
 
3370
+ }
3371
+ declare module "babylonjs-gui-editor/lines/draggableLineWithButtonComponent" {
3372
+ import * as React from "react";
3373
+ export interface IDraggableLineWithButtonComponent {
3374
+ format: string;
3375
+ data: string;
3376
+ tooltip: string;
3377
+ iconImage: any;
3378
+ onIconClick: (value: string) => void;
3379
+ iconTitle: string;
3380
+ lenSuffixToRemove?: number;
3381
+ }
3382
+ export class DraggableLineWithButtonComponent extends React.Component<IDraggableLineWithButtonComponent> {
3383
+ constructor(props: IDraggableLineWithButtonComponent);
3384
+
3385
+ }
3386
+
3346
3387
  }
3347
3388
  declare module "babylonjs-gui-editor/lines/draggableLineComponent" {
3348
3389
  import * as React from "react";
3349
3390
  export interface IButtonLineComponentProps {
3391
+ format: string;
3350
3392
  data: string;
3351
3393
  tooltip: string;
3352
3394
  }
@@ -7537,6 +7579,34 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
7537
7579
 
7538
7580
 
7539
7581
 
7582
+ }
7583
+ declare module BABYLON {
7584
+
7585
+
7586
+ }
7587
+ declare module BABYLON.GuiEditor.SharedUIComponents {
7588
+ interface ILineWithFileButtonComponentProps {
7589
+ title: string;
7590
+ closed?: boolean;
7591
+ multiple?: boolean;
7592
+ label: string;
7593
+ iconImage: any;
7594
+ onIconClick: (file: File) => void;
7595
+ accept: string;
7596
+ uploadName?: string;
7597
+ }
7598
+ export class LineWithFileButtonComponent extends React.Component<ILineWithFileButtonComponentProps, {
7599
+ isExpanded: boolean;
7600
+ }> {
7601
+ private _uploadRef;
7602
+ constructor(props: ILineWithFileButtonComponentProps);
7603
+ onChange(evt: any): void;
7604
+ switchExpandedState(): void;
7605
+ render(): import("react/jsx-runtime").JSX.Element;
7606
+ }
7607
+
7608
+
7609
+
7540
7610
  }
7541
7611
  declare module BABYLON {
7542
7612
 
@@ -7801,6 +7871,28 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
7801
7871
 
7802
7872
 
7803
7873
 
7874
+ }
7875
+ declare module BABYLON {
7876
+
7877
+
7878
+ }
7879
+ declare module BABYLON.GuiEditor.SharedUIComponents {
7880
+ export interface IDraggableLineWithButtonComponent {
7881
+ format: string;
7882
+ data: string;
7883
+ tooltip: string;
7884
+ iconImage: any;
7885
+ onIconClick: (value: string) => void;
7886
+ iconTitle: string;
7887
+ lenSuffixToRemove?: number;
7888
+ }
7889
+ export class DraggableLineWithButtonComponent extends React.Component<IDraggableLineWithButtonComponent> {
7890
+ constructor(props: IDraggableLineWithButtonComponent);
7891
+ render(): import("react/jsx-runtime").JSX.Element;
7892
+ }
7893
+
7894
+
7895
+
7804
7896
  }
7805
7897
  declare module BABYLON {
7806
7898
 
@@ -7808,6 +7900,7 @@ declare module BABYLON {
7808
7900
  }
7809
7901
  declare module BABYLON.GuiEditor.SharedUIComponents {
7810
7902
  export interface IButtonLineComponentProps {
7903
+ format: string;
7811
7904
  data: string;
7812
7905
  tooltip: string;
7813
7906
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-gui-editor",
3
- "version": "7.28.0",
3
+ "version": "7.29.0",
4
4
  "main": "babylon.guiEditor.max.js",
5
5
  "types": "babylon.guiEditor.module.d.ts",
6
6
  "files": [
@@ -14,8 +14,8 @@
14
14
  "clean": "rimraf dist && rimraf babylon*.* -g"
15
15
  },
16
16
  "dependencies": {
17
- "babylonjs": "^7.28.0",
18
- "babylonjs-gui": "^7.28.0"
17
+ "babylonjs": "^7.29.0",
18
+ "babylonjs-gui": "^7.29.0"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@dev/build-tools": "1.0.0",