@elementor/editor-controls 4.3.0-1059 → 4.3.0-1060
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 +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +243 -135
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +201 -83
- package/dist/index.mjs.map +1 -1
- package/package.json +16 -16
- package/src/controls/open-icon-library.ts +82 -0
- package/src/controls/svg-media-control.tsx +124 -18
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
|
-
|
|
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
|
-
|
|
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
|
|