Add support for setting-based payment method dependencies

This commit is contained in:
Daniel Dudzic 2025-03-03 14:26:08 +01:00
parent 6fc9aad4ea
commit e8be67d286
No known key found for this signature in database
GPG key ID: 31B40D33E3465483
19 changed files with 563 additions and 201 deletions

View file

@ -74,15 +74,6 @@ export const setIsReady = ( isReady ) => setTransient( 'isReady', isReady );
export const setActiveModal = ( activeModal ) =>
setTransient( 'activeModal', activeModal );
/**
* Transient. Sets the active settings highlight.
*
* @param {string} activeHighlight
* @return {Action} The action.
*/
export const setActiveHighlight = ( activeHighlight ) =>
setTransient( 'activeHighlight', activeHighlight );
/**
* Persistent. Sets the sandbox mode on or off.
*