Skip to content
On this page

v13 ... v14

Breaking changes

Renamed classnames for Suggestion component

The following classnames have been changed. This impacts the customStyling in the following way:

Old:

deepdeskSDK.renderWidget(inputElement, {
    customStyles: {
        Suggestion: {
            iconButtons: '.myButtons',
            iconButton: '.myButton',
            iconButtonDisabled: '.myButtonDisabled',
        }
    }
});

New:

deepdeskSDK.renderWidget(inputElement, {
    customStyles: {
        Suggestion: {
            buttonsContainer: '.myButtons',
            button: '.myButton',
            buttonDisabled: '.myButtonDisabled',
        }
    }
});