@shotstack/shotstack-studio 2.0.0-beta.13 → 2.0.0-beta.14
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.ts +8 -0
- package/dist/internal.es.js +13220 -18325
- package/dist/internal.umd.js +27 -65
- package/dist/schema/index.d.ts +8 -0
- package/dist/shotstack-studio.es.js +13799 -18904
- package/dist/shotstack-studio.umd.js +145 -183
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -815,6 +815,14 @@ export declare class Edit extends Entity {
|
|
|
815
815
|
pruneUnusedFonts(): void;
|
|
816
816
|
setTimelineBackground(color: string): void;
|
|
817
817
|
getTimelineBackground(): string;
|
|
818
|
+
/**
|
|
819
|
+
* Resolve merge field placeholders in a string.
|
|
820
|
+
* Replaces {{ FIELD_NAME }} patterns with their current values.
|
|
821
|
+
*
|
|
822
|
+
* @param input - String potentially containing merge field placeholders
|
|
823
|
+
* @returns String with all merge fields resolved to their values
|
|
824
|
+
*/
|
|
825
|
+
resolveMergeFields(input: string): string;
|
|
818
826
|
/**
|
|
819
827
|
* @deprecated Use `ui.registerButton()` instead.
|
|
820
828
|
*/
|