ui5-webcomponents
ui5-webcomponents copied to clipboard
refactor(ui5-tokenizer): refactor token-delete event
token-delete event now returns an array of deleted tokens.
BREAKING CHANGE: Thetoken-delete event now includes a tokens parameter, which is an array of ui5-tokens, replacing the previous single token parameter.
Before:
<ui5-multi-input id="multi-input">
<ui5-token slot="tokens" text="Argentina"></ui5-token>
<ui5-token slot="tokens" text="Mexico"></ui5-token>
<ui5-token slot="tokens" text="Philippines"></ui5-token>
<ui5-token slot="tokens" text="Sweden"></ui5-token>
<ui5-token slot="tokens" text="USA"></ui5-token>
</ui5-multi-input>
document.getElementById("multi-input").addEventListener("token-delete", function (event) {
const token = event.detail?.token;
token && token.remove();
});
Now:
<ui5-multi-input id="multi-input">
<ui5-token slot="tokens" text="Argentina"></ui5-token>
<ui5-token slot="tokens" text="Mexico"></ui5-token>
<ui5-token slot="tokens" text="Philippines"></ui5-token>
<ui5-token slot="tokens" text="Sweden"></ui5-token>
<ui5-token slot="tokens" text="USA"></ui5-token>
</ui5-multi-input>
document.getElementById("multi-input").addEventListener("token-delete", function (event) {
const tokens = event.detail?.tokens;
if (tokens) {
tokens.forEach(token => token.remove());
}
});
The selection-change event now has tokens param instead of selectedTokens.
token-deleteevent now returns an array of deleted tokens.BREAKING CHANGE: The
token-deleteevent now includes atokensparameter, which is an array ofui5-tokens, replacing the previous singletokenparameter.Before:
<ui5-multi-input id="multi-input"> <ui5-token slot="tokens" text="Argentina"></ui5-token> <ui5-token slot="tokens" text="Mexico"></ui5-token> <ui5-token slot="tokens" text="Philippines"></ui5-token> <ui5-token slot="tokens" text="Sweden"></ui5-token> <ui5-token slot="tokens" text="USA"></ui5-token> </ui5-multi-input>document.getElementById("multi-input").addEventListener("token-delete", function (event) { const token = event.detail?.token; token && token.remove(); });Now:
<ui5-multi-input id="multi-input"> <ui5-token slot="tokens" text="Argentina"></ui5-token> <ui5-token slot="tokens" text="Mexico"></ui5-token> <ui5-token slot="tokens" text="Philippines"></ui5-token> <ui5-token slot="tokens" text="Sweden"></ui5-token> <ui5-token slot="tokens" text="USA"></ui5-token> </ui5-multi-input>document.getElementById("multi-input").addEventListener("token-delete", function (event) { const tokens = event.detail?.tokens; if (tokens) { tokens.forEach(token => token.remove()); } });The
selection-changeevent now hastokensparam instead ofselectedTokens.