Skip to main content

Type Alias: PasteStyles()

PasteStyles = () => Promise<void>

Function

Applies previously copied styles to the currently selected product.

This function applies style options (like finishes, colors, and materials) that were previously copied using copyStyles() to the currently selected product. The target product must be compatible with the copied styles.

Style pasting allows for quick application of consistent visual attributes across multiple components in a modular design.

Returns

Promise<void>

Example

// Complete the copy-paste style workflow with buttons for each step
document.getElementById('copy-styles-btn').addEventListener('click', () => {
// First select the source product, then click this button
window.mimeeqApp.actions.copyStyles();
alert('Styles copied! Now select another product and click "Paste Styles"');
});

document.getElementById('paste-styles-btn').addEventListener('click', () => {
// Select the target product, then click this button
window.mimeeqApp.actions.pasteStyles();
});