@elementor/editor-controls 4.3.0-1059 → 4.3.0-1061

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/dist/index.d.mts CHANGED
@@ -347,7 +347,10 @@ declare const AspectRatioControl: ControlComponent$1<({ label }: {
347
347
  label: string;
348
348
  }) => React$1.JSX.Element>;
349
349
 
350
- declare const SvgMediaControl: ControlComponent$1<() => React$1.JSX.Element>;
350
+ type SvgMediaControlProps = {
351
+ showIconLibrary?: boolean;
352
+ };
353
+ declare const SvgMediaControl: ControlComponent$1<({ showIconLibrary }: SvgMediaControlProps) => React$1.JSX.Element>;
351
354
 
352
355
  declare const VideoMediaControl: ControlComponent$1<() => React$1.JSX.Element>;
353
356
 
package/dist/index.d.ts CHANGED
@@ -347,7 +347,10 @@ declare const AspectRatioControl: ControlComponent$1<({ label }: {
347
347
  label: string;
348
348
  }) => React$1.JSX.Element>;
349
349
 
350
- declare const SvgMediaControl: ControlComponent$1<() => React$1.JSX.Element>;
350
+ type SvgMediaControlProps = {
351
+ showIconLibrary?: boolean;
352
+ };
353
+ declare const SvgMediaControl: ControlComponent$1<({ showIconLibrary }: SvgMediaControlProps) => React$1.JSX.Element>;
351
354
 
352
355
  declare const VideoMediaControl: ControlComponent$1<() => React$1.JSX.Element>;
353
356