babylonjs-gui-editor 5.6.0 → 5.8.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.
@@ -1141,6 +1141,77 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
1141
1141
 
1142
1142
 
1143
1143
 
1144
+ }
1145
+ declare module BABYLON {
1146
+
1147
+ }
1148
+ declare module BABYLON.GuiEditor.SharedUIComponents {
1149
+ /// <reference types="react" />
1150
+ export type ButtonProps = {
1151
+ disabled?: boolean;
1152
+ active?: boolean;
1153
+ onClick?: () => void;
1154
+ color: "light" | "dark";
1155
+ size: "default" | "small" | "wide";
1156
+ title?: string;
1157
+ };
1158
+ export var Button: React.FC<ButtonProps>;
1159
+
1160
+
1161
+
1162
+ }
1163
+ declare module BABYLON {
1164
+
1165
+ }
1166
+ declare module BABYLON.GuiEditor.SharedUIComponents {
1167
+ export function ClassNames(names: any, styleObject: any): string;
1168
+
1169
+
1170
+
1171
+ }
1172
+ declare module BABYLON {
1173
+
1174
+ }
1175
+ declare module BABYLON.GuiEditor.SharedUIComponents {
1176
+ /// <reference types="react" />
1177
+ export type IconProps = {
1178
+ color?: "dark" | "light";
1179
+ icon: string;
1180
+ };
1181
+ export var Icon: React.FC<IconProps>;
1182
+
1183
+
1184
+
1185
+ }
1186
+ declare module BABYLON {
1187
+
1188
+ }
1189
+ declare module BABYLON.GuiEditor.SharedUIComponents {
1190
+ export type LabelProps = {
1191
+ text: string;
1192
+ children?: React.ReactChild;
1193
+ color?: "dark" | "light";
1194
+ };
1195
+ export var Label: React.FC<LabelProps>;
1196
+
1197
+
1198
+
1199
+ }
1200
+ declare module BABYLON {
1201
+
1202
+ }
1203
+ declare module BABYLON.GuiEditor.SharedUIComponents {
1204
+ /// <reference types="react" />
1205
+ export type ToggleProps = {
1206
+ toggled: "on" | "mixed" | "off";
1207
+ onToggle?: () => void;
1208
+ padded?: boolean;
1209
+ color?: "dark" | "light";
1210
+ };
1211
+ export var Toggle: React.FC<ToggleProps>;
1212
+
1213
+
1214
+
1144
1215
  }
1145
1216
  declare module BABYLON {
1146
1217
 
@@ -2054,6 +2125,66 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
2054
2125
 
2055
2126
 
2056
2127
 
2128
+ }
2129
+ declare module BABYLON {
2130
+
2131
+ }
2132
+ declare module BABYLON.GuiEditor.SharedUIComponents {
2133
+ /// <reference types="react" />
2134
+ var _default: {
2135
+ title: string;
2136
+ component: import("react").FC<BABYLON.GuiEditor.SharedUIComponents.ButtonProps>;
2137
+ };
2138
+ export var Default: any;
2139
+ export var Wide: any;
2140
+ export var Small: any;
2141
+
2142
+
2143
+
2144
+ }
2145
+ declare module BABYLON {
2146
+
2147
+ }
2148
+ declare module BABYLON.GuiEditor.SharedUIComponents {
2149
+ /// <reference types="react" />
2150
+ var _default: {
2151
+ title: string;
2152
+ component: import("react").FC<BABYLON.GuiEditor.SharedUIComponents.IconProps>;
2153
+ };
2154
+ export var Light: any;
2155
+ export var Dark: any;
2156
+
2157
+
2158
+
2159
+ }
2160
+ declare module BABYLON {
2161
+
2162
+ }
2163
+ declare module BABYLON.GuiEditor.SharedUIComponents {
2164
+ /// <reference types="react" />
2165
+ var _default: {
2166
+ title: string;
2167
+ component: import("react").FC<BABYLON.GuiEditor.SharedUIComponents.LabelProps>;
2168
+ };
2169
+ export var Default: any;
2170
+
2171
+
2172
+
2173
+ }
2174
+ declare module BABYLON {
2175
+
2176
+ }
2177
+ declare module BABYLON.GuiEditor.SharedUIComponents {
2178
+ /// <reference types="react" />
2179
+ var _default: {
2180
+ title: string;
2181
+ component: import("react").FC<BABYLON.GuiEditor.SharedUIComponents.ToggleProps>;
2182
+ };
2183
+ export var Default: any;
2184
+ export var Padded: any;
2185
+
2186
+
2187
+
2057
2188
  }
2058
2189
  declare module BABYLON {
2059
2190