Skip to main content

Type Alias: CopyStyles()

CopyStyles = () => Promise<void>

Function

Activates style copying mode for the currently selected product.

This function enters a special interaction mode where the currently selected product's style options (like finishes, colors, and material selections) are copied and prepared for application to other products. After activating copy mode, the user must select a target product and use the pasteStyles function to apply the copied styles.

Style copying is useful for maintaining visual consistency across multiple components in a modular design without manually reconfiguring each one.

Returns

Promise<void>

Example

// Start the style copy process when the copy styles button is clicked
document.getElementById('copy-styles-btn').addEventListener('click', () => {
window.mimeeqApp.actions.copyStyles();
});

Fires

@mimeeq#mimeeq-modular-set-copyStyles (indirectly)