diff --git a/.changeset/chatty-badgers-dream.md b/.changeset/chatty-badgers-dream.md
new file mode 100644
index 0000000000..f5deff9571
--- /dev/null
+++ b/.changeset/chatty-badgers-dream.md
@@ -0,0 +1,10 @@
+---
+'@sl-design-system/tag': patch
+---
+
+Accessibility improvements to `` and ``:
+
+- The remove button now has a proper accessible label ("Remove tag 'X'") instead of being `aria-hidden`
+- The remove button uses `aria-disabled` instead of `disabled`, keeping it keyboard-reachable when the tag is disabled
+- Focus is delegated to the remove button via the component's `focus()` implementation; `:state(focus-visible)` tracks focus for styling
+- `` correctly sets `role="listitem"` on each tag
diff --git a/.changeset/shiny-shrimps-remain.md b/.changeset/shiny-shrimps-remain.md
new file mode 100644
index 0000000000..92a6d64b21
--- /dev/null
+++ b/.changeset/shiny-shrimps-remain.md
@@ -0,0 +1,5 @@
+---
+'@sl-design-system/combobox': patch
+---
+
+Improved keyboard focus behavior for removable selected tags in multi-select comboboxes. Focus now stays within the selected tag list when removing tags one by one and only returns to the input after the last tag is removed. The combobox also avoids showing a separate fake tag focus indicator when focus is on a tag remove button
diff --git a/.changeset/stupid-cougars-serve.md b/.changeset/stupid-cougars-serve.md
new file mode 100644
index 0000000000..f8266f99a2
--- /dev/null
+++ b/.changeset/stupid-cougars-serve.md
@@ -0,0 +1,5 @@
+---
+'@sl-design-system/locales': patch
+---
+
+Replace `sl.tag.removalInstructions` with `sl.tag.remove` (a parameterized string for the remove button label, e.g. "Remove tag 'X'") and add `sl.tagList.navigationInstructions` for tag-list roving tabindex instructions.
diff --git a/.storybook/stories/links.stories.ts b/.storybook/stories/links.stories.ts
index c5dca32eaf..1dcdba72b6 100644
--- a/.storybook/stories/links.stories.ts
+++ b/.storybook/stories/links.stories.ts
@@ -14,7 +14,9 @@ export default {
In the theme is a global.css file containing styling for links. This works as a global style for
links in your application and links in the light dom of SLDS components.
- Sanoma Learning Design system
+ Sanoma Learning Design system
`
} satisfies Meta;
diff --git a/packages/components/button/CHANGELOG.md b/packages/components/button/CHANGELOG.md
index dc65913741..e4b840d17d 100644
--- a/packages/components/button/CHANGELOG.md
+++ b/packages/components/button/CHANGELOG.md
@@ -9,12 +9,10 @@
### Patch Changes
- [#3299](https://github.com/sl-design-system/components/pull/3299) [`78e7333`](https://github.com/sl-design-system/components/commit/78e733338fd67ef59797b3e02b22907fe0f5c638) - Minor style fixes:
-
- fix icon-only size regression by using `box-sizing: content-box`
- fix `
@@ -53,12 +52,6 @@ export default {
export const Basic: Story = {};
-export const Disabled: Story = {
- args: {
- disabled: true
- }
-};
-
export const Info: Story = {
args: {
variant: 'info'
@@ -72,8 +65,29 @@ export const Overflow: Story = {
}
};
+export const OverflowRemovable: Story = {
+ args: {
+ ...Overflow.args,
+ removable: true
+ }
+};
+
export const Removable: Story = {
args: {
removable: true
}
};
+
+export const InfoRemovable: Story = {
+ args: {
+ removable: true,
+ variant: 'info'
+ }
+};
+
+export const RemovableDisabled: Story = {
+ args: {
+ disabled: true,
+ removable: true
+ }
+};
diff --git a/packages/components/tag/src/tag.ts b/packages/components/tag/src/tag.ts
index aa38b55f8e..66cc818cce 100644
--- a/packages/components/tag/src/tag.ts
+++ b/packages/components/tag/src/tag.ts
@@ -1,20 +1,14 @@
-import { localized, msg } from '@lit/localize';
+import { localized, msg, str } from '@lit/localize';
import {
type ScopedElementsMap,
ScopedElementsMixin
} from '@open-wc/scoped-elements/lit-element.js';
import { Icon } from '@sl-design-system/icon';
-import { EventEmitter, EventsController, event } from '@sl-design-system/shared';
+import { EventEmitter, event } from '@sl-design-system/shared';
import { Tooltip } from '@sl-design-system/tooltip';
-import {
- type CSSResultGroup,
- LitElement,
- type PropertyValues,
- type TemplateResult,
- html,
- nothing
-} from 'lit';
+import { type CSSResultGroup, LitElement, type TemplateResult, html, nothing } from 'lit';
import { property, state } from 'lit/decorators.js';
+import { ifDefined } from 'lit/directives/if-defined.js';
import styles from './tag.scss.js';
declare global {
@@ -39,7 +33,12 @@ export type TagVariant = 'neutral' | 'info';
* Tag label
* ```
*
+ * @customElement sl-tag
+ *
* @slot default - The tag label.
+ *
+ * @csspart label - The wrapper around the tag label.
+ * @csspart button - The remove button.
*/
@localized()
export class Tag extends ScopedElementsMixin(LitElement) {
@@ -54,14 +53,20 @@ export class Tag extends ScopedElementsMixin(LitElement) {
/** @internal */
static override styles: CSSResultGroup = styles;
- // eslint-disable-next-line no-unused-private-class-members
- #events = new EventsController(this, { keydown: this.#onKeydown });
+ /** @internal */
+ static override shadowRootOptions: ShadowRootInit = {
+ ...LitElement.shadowRootOptions,
+ delegatesFocus: true
+ };
+
+ /** @internal */
+ #internals = this.attachInternals();
/** Observe changes in size, so we can check whether we need to show tooltips for truncated links. */
#observer = new ResizeObserver(() => this.#onResize());
- /** Either an instanceof of Tooltip, or a cleanup function. */
- #tooltip?: Tooltip | (() => void);
+ /** Observe label text changes that do not trigger a resize or slotchange. */
+ #mutationObserver = new MutationObserver(() => this.#updateLabel());
/**
* Whether the tag component is disabled, when set no interaction is possible.
@@ -70,15 +75,21 @@ export class Tag extends ScopedElementsMixin(LitElement) {
*/
@property({ type: Boolean, reflect: true }) disabled?: boolean;
+ /** @internal Whether a tooltip should be shown. */
+ @state() tooltip?: boolean;
+
/** @internal The label of the tag component. */
@state() label = '';
+ /** @internal Clarifies tag list keyboard navigation for assistive technologies. */
+ @state() navigationDescription?: string;
+
/**
* Whether the tag component is removable.
*
* @default false
*/
- @property({ type: Boolean }) removable?: boolean;
+ @property({ type: Boolean, reflect: true }) removable?: boolean;
/** @internal Emits when the tag is removed. */
@event({ name: 'sl-remove' }) removeEvent!: EventEmitter;
@@ -97,71 +108,112 @@ export class Tag extends ScopedElementsMixin(LitElement) {
*/
@property({ reflect: true }) variant?: TagVariant;
+ override get tabIndex(): number {
+ return super.tabIndex;
+ }
+
+ override set tabIndex(tabIndex: number) {
+ super.tabIndex = tabIndex;
+ this.#syncButtonTabIndex();
+ }
+
override connectedCallback(): void {
super.connectedCallback();
this.#observer.observe(this);
+ this.#mutationObserver.observe(this, { characterData: true, childList: true, subtree: true });
}
override disconnectedCallback(): void {
this.#observer.disconnect();
-
- if (this.#tooltip instanceof Tooltip) {
- this.#tooltip?.remove();
- } else if (this.#tooltip) {
- this.#tooltip();
- }
-
- this.#tooltip = undefined;
+ this.#mutationObserver.disconnect();
super.disconnectedCallback();
}
- override updated(changes: PropertyValues): void {
- super.updated(changes);
+ override focus(options?: FocusOptions): void {
+ const focusTarget = this.removable
+ ? this.renderRoot.querySelector('button')
+ : this.renderRoot.querySelector('[part="label"][tabindex]');
- if (changes.has('disabled') || changes.has('removable')) {
- if (this.removable) {
- this.setAttribute('tabindex', this.disabled ? '-1' : '0');
- } else if (this.disabled || changes.get('removable')) {
- this.removeAttribute('tabindex');
- }
+ if (focusTarget) {
+ focusTarget.focus(options);
+ } else {
+ super.focus(options);
}
+ }
- if (changes.has('removable')) {
- if (this.removable) {
- this.setAttribute(
- 'aria-description',
- msg('Press the delete or backspace key to remove this item', {
- id: 'sl.tag.removalInstructions'
- })
- );
- } else {
- this.removeAttribute('aria-description');
- }
- }
+ protected override updated(): void {
+ this.#syncButtonTabIndex();
}
override render(): TemplateResult {
+ const labelTabIndex =
+ !this.disabled && !this.removable
+ ? this.hasAttribute('tabindex')
+ ? this.tabIndex.toString()
+ : this.tooltip
+ ? '0'
+ : undefined
+ : undefined,
+ buttonDescription = [
+ this.tooltip ? 'tooltip' : undefined,
+ this.navigationDescription ? 'navigation-description' : undefined
+ ]
+ .filter(Boolean)
+ .join(' ');
+
return html`
-
- ${this.removable && !this.disabled
+ ${this.tooltip ? html`${this.label}` : nothing}
+
+
+
+ ${this.removable
? html`
+ type="button">
+ ${this.navigationDescription
+ ? html`
+ ${this.navigationDescription}
+ `
+ : nothing}
`
: nothing}
`;
}
+ #onBlur(): void {
+ this.#internals.states.delete('focus-visible');
+ }
+
+ #onFocus(event: FocusEvent): void {
+ if ((event.target as HTMLElement).matches(':focus-visible')) {
+ this.#internals.states.add('focus-visible');
+ }
+ }
+
#onKeydown(event: KeyboardEvent): void {
- if (this.removable && (event.key === 'Backspace' || event.key === 'Delete')) {
+ if (event.key === 'Backspace' || event.key === 'Delete') {
+ event.preventDefault();
+ event.stopPropagation();
+
this.#onRemove(event);
}
}
@@ -179,40 +231,42 @@ export class Tag extends ScopedElementsMixin(LitElement) {
this.remove();
}
- #onResize(): void {
- const slot = this.renderRoot.querySelector('slot');
-
- if (slot && slot.clientWidth < slot.scrollWidth) {
- this.#tooltip ||= Tooltip.lazy(
- this,
- tooltip => {
- this.#tooltip = tooltip;
- tooltip.textContent = this.label;
- },
- { context: this.shadowRoot! }
- );
- } else if (this.#tooltip instanceof Tooltip) {
- this.#tooltip.remove();
- this.#tooltip = undefined;
- } else if (this.#tooltip) {
- this.#tooltip();
- this.#tooltip = undefined;
+ #syncButtonTabIndex(): void {
+ const button = this.renderRoot.querySelector('button');
+
+ if (!button) {
+ return;
}
- // If the contents of the tag overflows, make sure it is keyboard focusable,
- // so the user can tab to it.
- if (!this.disabled && (this.removable || this.#tooltip)) {
- this.setAttribute('tabindex', '0');
- } else if (!this.hasAttribute('aria-labelledby')) {
- this.removeAttribute('tabindex');
+ if (this.navigationDescription || this.hasAttribute('tabindex')) {
+ button.tabIndex = this.tabIndex;
+ } else {
+ button.removeAttribute('tabindex');
}
}
+ #onResize(): void {
+ const label = this.renderRoot.querySelector('[part="label"]');
+
+ this.tooltip = !!(label && label.clientWidth < label.scrollWidth);
+ }
+
#onSlotChange(event: Event & { target: HTMLSlotElement }): void {
- this.label = event.target
+ this.#updateLabel(event.target);
+ }
+
+ #updateLabel(slot = this.renderRoot.querySelector('slot')): void {
+ if (!slot) {
+ return;
+ }
+
+ this.label = slot
.assignedNodes({ flatten: true })
- .filter(node => node.nodeType === Node.TEXT_NODE)
- .map(node => node.textContent?.trim())
- .join('');
+ .map(node => node.textContent ?? '')
+ .join('')
+ .trim()
+ .replaceAll(/\s+/g, ' ');
+
+ void this.updateComplete.then(() => this.#onResize());
}
}
diff --git a/packages/components/text-field/CHANGELOG.md b/packages/components/text-field/CHANGELOG.md
index 0565a546f2..692de98346 100644
--- a/packages/components/text-field/CHANGELOG.md
+++ b/packages/components/text-field/CHANGELOG.md
@@ -44,7 +44,6 @@
- [#2547](https://github.com/sl-design-system/components/pull/2547) [`8f29a45`](https://github.com/sl-design-system/components/commit/8f29a4527d8fbe2bace08e32e31ba93aee0baf68) - Bump patch version of `@open-wc/scoped-elements` peer dependency
- [#2086](https://github.com/sl-design-system/components/pull/2086) [`0b48907`](https://github.com/sl-design-system/components/commit/0b48907b54289cbfd37266d870a42baba071ba1a) - - Refactor internals to help fix `` behavior
-
- Adding warning when `type="number"` is used that points to ``
- [#2561](https://github.com/sl-design-system/components/pull/2561) [`0e2e426`](https://github.com/sl-design-system/components/commit/0e2e426041997a299f3e35bcde499909d62f7ce9) - Remove duplication of `observedAttributes` from the components and into the `ObserveAttributesMixin`
@@ -119,7 +118,6 @@
### Patch Changes
- [#1785](https://github.com/sl-design-system/components/pull/1785) [`4e80437`](https://github.com/sl-design-system/components/commit/4e804374c3a02e88b04e4c1df662967740461f7c) - - Styling buttons improvements,
-
- Formatting value changes - using `formattedValue` instead of `formatValue`.
- [#1805](https://github.com/sl-design-system/components/pull/1805) [`94e2a7b`](https://github.com/sl-design-system/components/commit/94e2a7bf1ccaaa9d547654603554cc6bdfdf66fb) - Fix able to submit a parent form using the enter key in readonly mode
diff --git a/packages/locales/src/es-ES.ts b/packages/locales/src/es-ES.ts
index 27755fdbca..f8fb4a33b4 100644
--- a/packages/locales/src/es-ES.ts
+++ b/packages/locales/src/es-ES.ts
@@ -108,7 +108,9 @@ export const templates = {
'sl.select.validation.valueMissing': 'Elige una opción de la lista.',
'sl.tabs.showAll': 'Mostrar todo',
'sl.tag.listOfHiddenElements': 'Lista de elementos ocultados',
- 'sl.tag.removalInstructions': 'Pulsa la tecla Supr o Retroceso para eliminar este elemento',
+ 'sl.tag.remove': str`Eliminar etiqueta '${0}'`,
+ 'sl.tagList.navigationInstructions':
+ 'Usa las teclas de flecha para moverte entre etiquetas eliminables.',
'sl.timeField.empty': 'Vacío',
'sl.timeField.rangeOverflow': str`Selecciona una hora que no sea posterior a ${0}.`,
'sl.timeField.rangeUnderflow': str`Selecciona una hora que no sea anterior a ${0}.`,
diff --git a/packages/locales/src/es-ES.xlf b/packages/locales/src/es-ES.xlf
index 44c18375ef..c56f914ab5 100644
--- a/packages/locales/src/es-ES.xlf
+++ b/packages/locales/src/es-ES.xlf
@@ -10,10 +10,6 @@
LoadingCargando
-
- Press the delete or backspace key to remove this item
- Pulsa la tecla Supr o Retroceso para eliminar este elemento
-SelectedSeleccionado
@@ -174,6 +170,10 @@
List of hidden elementsLista de elementos ocultados
+
+ Use arrow keys to move between removable tags.
+ Usa las teclas de flecha para moverte entre etiquetas eliminables.
+Selected optionsOpciones seleccionadas
@@ -454,6 +454,10 @@
No later than No más tarde de
+
+ Remove tag ''
+ Eliminar etiqueta ''
+OptionsOpciones
diff --git a/packages/locales/src/it.ts b/packages/locales/src/it.ts
index d024ad7582..e47c3401be 100644
--- a/packages/locales/src/it.ts
+++ b/packages/locales/src/it.ts
@@ -108,7 +108,8 @@ export const templates = {
'sl.select.validation.valueMissing': "Scegli un'opzione dall'elenco.",
'sl.tabs.showAll': 'Mostra tutto',
'sl.tag.listOfHiddenElements': 'Elenco degli elementi nascosti',
- 'sl.tag.removalInstructions': 'Premi il tasto Canc o Backspace per rimuovere questo elemento',
+ 'sl.tag.remove': str`Rimuovi etichetta '${0}'`,
+ 'sl.tagList.navigationInstructions': 'Usa i tasti freccia per spostarti tra i tag rimovibili.',
'sl.timeField.empty': 'Vuoto',
'sl.timeField.rangeOverflow': str`Seleziona un orario non posteriore a ${0}.`,
'sl.timeField.rangeUnderflow': str`Seleziona un orario non anteriore a ${0}.`,
diff --git a/packages/locales/src/it.xlf b/packages/locales/src/it.xlf
index aba8f89b36..df0f4a0e99 100644
--- a/packages/locales/src/it.xlf
+++ b/packages/locales/src/it.xlf
@@ -10,10 +10,6 @@
LoadingCaricamento
-
- Press the delete or backspace key to remove this item
- Premi il tasto Canc o Backspace per rimuovere questo elemento
-SelectedSelezionato
@@ -174,6 +170,10 @@
List of hidden elementsElenco degli elementi nascosti
+
+ Use arrow keys to move between removable tags.
+ Usa i tasti freccia per spostarti tra i tag rimovibili.
+Selected optionsOpzioni selezionate
@@ -454,6 +454,10 @@
No later than Non oltre
+
+ Remove tag ''
+ Rimuovi etichetta ''
+OptionsOpzioni
diff --git a/packages/locales/src/nl.ts b/packages/locales/src/nl.ts
index c9c241eb64..543c09da0f 100644
--- a/packages/locales/src/nl.ts
+++ b/packages/locales/src/nl.ts
@@ -108,7 +108,9 @@ export const templates = {
'sl.select.validation.valueMissing': 'Kies een optie uit de lijst.',
'sl.tabs.showAll': 'Toon alles',
'sl.tag.listOfHiddenElements': 'Lijst met verborgen elementen',
- 'sl.tag.removalInstructions': 'Druk op de delete- of backspacetoets om dit item te verwijderen',
+ 'sl.tag.remove': str`Verwijder tag '${0}'`,
+ 'sl.tagList.navigationInstructions':
+ 'Gebruik de pijltjestoetsen om tussen verwijderbare tags te navigeren.',
'sl.timeField.empty': 'Leeg',
'sl.timeField.rangeOverflow': str`Voer een tijd in die niet later is dan ${0}.`,
'sl.timeField.rangeUnderflow': str`Voer een tijd in die niet eerder is dan ${0}.`,
diff --git a/packages/locales/src/nl.xlf b/packages/locales/src/nl.xlf
index 4f0c394971..b1038544c7 100644
--- a/packages/locales/src/nl.xlf
+++ b/packages/locales/src/nl.xlf
@@ -10,10 +10,6 @@
LoadingLaden
-
- Press the delete or backspace key to remove this item
- Druk op de delete- of backspacetoets om dit item te verwijderen
-SelectedGeselecteerd
@@ -174,6 +170,10 @@
List of hidden elementsLijst met verborgen elementen
+
+ Use arrow keys to move between removable tags.
+ Gebruik de pijltjestoetsen om tussen verwijderbare tags te navigeren.
+Selected optionsGeselecteerde opties
@@ -454,6 +454,10 @@
No later than Uiterlijk
+
+ Remove tag ''
+ Verwijder tag ''
+More informationMeer informatie
diff --git a/packages/locales/src/pl.ts b/packages/locales/src/pl.ts
index 462fc2b037..5c162d555d 100644
--- a/packages/locales/src/pl.ts
+++ b/packages/locales/src/pl.ts
@@ -108,7 +108,9 @@ export const templates = {
'sl.select.validation.valueMissing': 'Wybierz opcję z listy.',
'sl.tabs.showAll': 'Pokaż wszystkie',
'sl.tag.listOfHiddenElements': 'Lista ukrytych elementów',
- 'sl.tag.removalInstructions': 'Naciśnij klawisz Delete lub Backspace, aby usunąć ten element',
+ 'sl.tag.remove': str`Usuń etykietę '${0}'`,
+ 'sl.tagList.navigationInstructions':
+ 'Użyj klawiszy strzałek, aby przechodzić między usuwalnymi tagami.',
'sl.timeField.empty': 'Puste',
'sl.timeField.rangeOverflow': str`Wybierz godzinę nie późniejszą niż ${0}.`,
'sl.timeField.rangeUnderflow': str`Wybierz godzinę nie wcześniejszą niż ${0}.`,
diff --git a/packages/locales/src/pl.xlf b/packages/locales/src/pl.xlf
index 7b71b2c524..4aa6cb6721 100644
--- a/packages/locales/src/pl.xlf
+++ b/packages/locales/src/pl.xlf
@@ -10,10 +10,6 @@
LoadingŁadowanie
-
- Press the delete or backspace key to remove this item
- Naciśnij klawisz Delete lub Backspace, aby usunąć ten element
-SelectedWybrane
@@ -174,6 +170,10 @@
List of hidden elementsLista ukrytych elementów
+
+ Use arrow keys to move between removable tags.
+ Użyj klawiszy strzałek, aby przechodzić między usuwalnymi tagami.
+Selected optionsWybrane opcje
@@ -454,6 +454,10 @@
No later than Nie później niż
+
+ Remove tag ''
+ Usuń etykietę ''
+OptionsOpcje
diff --git a/packages/themes/bingel-dc/CHANGELOG.md b/packages/themes/bingel-dc/CHANGELOG.md
index 8e00e925d3..b2ad320c2c 100644
--- a/packages/themes/bingel-dc/CHANGELOG.md
+++ b/packages/themes/bingel-dc/CHANGELOG.md
@@ -23,11 +23,9 @@
### Minor Changes
- [#3020](https://github.com/sl-design-system/components/pull/3020) [`738e4a7`](https://github.com/sl-design-system/components/commit/738e4a77005043de2f9977fab9fb04d4fce6369d) - Added
-
- new elevation.surface.raised.primary token
Fixed
-
- form input interactive backgrounds (color.background.input.plain.interactive.plain) from plain to bold variants across all themes (e.g., accent.grey.interactive.bold) for better state contrast.
- [#2970](https://github.com/sl-design-system/components/pull/2970) [`e92ebb1`](https://github.com/sl-design-system/components/commit/e92ebb16c596919aaa301be2604ab5f3539738a9) - Caret icons have been updated to implement the new alignment strategy used in Font Awesome 7
@@ -147,11 +145,9 @@
- [#1710](https://github.com/sl-design-system/components/pull/1710) [`40cc538`](https://github.com/sl-design-system/components/commit/40cc538648e6ed5ac453fbe708bae8761caaab5e) - Overhaul of how (custom) icons are maintained in figma and exported to be used in the packages.
The following icons have changed:
-
- `circle` has been renamed to `circle-solid`
The following icons have been added:
-
- `badge-available`
- `badge-away`
- `badge-donotdisturb`
@@ -160,7 +156,6 @@
- `info`
The following items have been removed (mainly in cleaning up, they were never meant to be there)
-
- `svg-sort`
- `svg-sort-down`
- `svg-sort-up`
@@ -204,7 +199,6 @@
### Patch Changes
- [#1454](https://github.com/sl-design-system/components/pull/1454) [`af62ce4`](https://github.com/sl-design-system/components/commit/af62ce4d0e65b1363b9cede48642bc22d1fc9365) - - Improve toggle button and group tokens
-
- Add a `check-solid` icon for use in the `toggle-button` component
- [#1414](https://github.com/sl-design-system/components/pull/1414) [`ff1618c`](https://github.com/sl-design-system/components/commit/ff1618cdfa4d0060465d993f656345ba1044f88c) - Update icons to the latest fontawesome release (6.6.0)
@@ -219,7 +213,6 @@
### Patch Changes
- [#1389](https://github.com/sl-design-system/components/pull/1389) [`f03971b`](https://github.com/sl-design-system/components/commit/f03971b7b338a4248df292060b91b6b903b6c8ed) - Minor style fixes:
-
- Fix the title and subtitle text being cutoff for certain characters due not enough line-height
- Use a different color for the subtitle text
@@ -265,7 +258,6 @@
- [#1251](https://github.com/sl-design-system/components/pull/1251) [`a3da76c`](https://github.com/sl-design-system/components/commit/a3da76c7df521c2241b565dc22025715f1231e9c) - New search icon
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - - Enhanced the color contrast of buttons when used on slightly darker backgrounds across all themes.
-
- Enhanced the color contrast of inline messages to match our buttons.
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - Fix missing triangle-exclamation-solid icon
@@ -282,7 +274,6 @@
- [#1242](https://github.com/sl-design-system/components/pull/1242) [`ab122ec`](https://github.com/sl-design-system/components/commit/ab122ec672a515ae2ca7dce88c7344c1b209d538) - Fix missing `calc()` functions in theme parts.
- [#1225](https://github.com/sl-design-system/components/pull/1225) [`ad297ab`](https://github.com/sl-design-system/components/commit/ad297ab817ab998253b9c2a90033c72dcc686893) - Updated/added tokens:
-
- Button bar available in all themes
- Fixed accordion border
- Button fixes
diff --git a/packages/themes/bingel-int/CHANGELOG.md b/packages/themes/bingel-int/CHANGELOG.md
index e0dedde146..0a9adbbc36 100644
--- a/packages/themes/bingel-int/CHANGELOG.md
+++ b/packages/themes/bingel-int/CHANGELOG.md
@@ -23,11 +23,9 @@
### Minor Changes
- [#3020](https://github.com/sl-design-system/components/pull/3020) [`738e4a7`](https://github.com/sl-design-system/components/commit/738e4a77005043de2f9977fab9fb04d4fce6369d) - Added
-
- new elevation.surface.raised.primary token
Fixed
-
- form input interactive backgrounds (color.background.input.plain.interactive.plain) from plain to bold variants across all themes (e.g., accent.grey.interactive.bold) for better state contrast.
- [#2970](https://github.com/sl-design-system/components/pull/2970) [`e92ebb1`](https://github.com/sl-design-system/components/commit/e92ebb16c596919aaa301be2604ab5f3539738a9) - Caret icons have been updated to implement the new alignment strategy used in Font Awesome 7
@@ -147,11 +145,9 @@
- [#1710](https://github.com/sl-design-system/components/pull/1710) [`40cc538`](https://github.com/sl-design-system/components/commit/40cc538648e6ed5ac453fbe708bae8761caaab5e) - Overhaul of how (custom) icons are maintained in figma and exported to be used in the packages.
The following icons have changed:
-
- `circle` has been renamed to `circle-solid`
The following icons have been added:
-
- `badge-available`
- `badge-away`
- `badge-donotdisturb`
@@ -160,7 +156,6 @@
- `info`
The following items have been removed (mainly in cleaning up, they were never meant to be there)
-
- `svg-sort`
- `svg-sort-down`
- `svg-sort-up`
@@ -202,7 +197,6 @@
### Patch Changes
- [#1454](https://github.com/sl-design-system/components/pull/1454) [`af62ce4`](https://github.com/sl-design-system/components/commit/af62ce4d0e65b1363b9cede48642bc22d1fc9365) - - Improve toggle button and group tokens
-
- Add a `check-solid` icon for use in the `toggle-button` component
- [#1414](https://github.com/sl-design-system/components/pull/1414) [`ff1618c`](https://github.com/sl-design-system/components/commit/ff1618cdfa4d0060465d993f656345ba1044f88c) - Update icons to the latest fontawesome release (6.6.0)
@@ -217,7 +211,6 @@
### Patch Changes
- [#1389](https://github.com/sl-design-system/components/pull/1389) [`f03971b`](https://github.com/sl-design-system/components/commit/f03971b7b338a4248df292060b91b6b903b6c8ed) - Minor style fixes:
-
- Fix the title and subtitle text being cutoff for certain characters due not enough line-height
- Use a different color for the subtitle text
@@ -263,7 +256,6 @@
- [#1251](https://github.com/sl-design-system/components/pull/1251) [`a3da76c`](https://github.com/sl-design-system/components/commit/a3da76c7df521c2241b565dc22025715f1231e9c) - New search icon
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - - Enhanced the color contrast of buttons when used on slightly darker backgrounds across all themes.
-
- Enhanced the color contrast of inline messages to match our buttons.
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - Fix missing triangle-exclamation-solid icon
@@ -280,7 +272,6 @@
- [#1242](https://github.com/sl-design-system/components/pull/1242) [`ab122ec`](https://github.com/sl-design-system/components/commit/ab122ec672a515ae2ca7dce88c7344c1b209d538) - Fix missing `calc()` functions in theme parts.
- [#1225](https://github.com/sl-design-system/components/pull/1225) [`ad297ab`](https://github.com/sl-design-system/components/commit/ad297ab817ab998253b9c2a90033c72dcc686893) - Updated/added tokens:
-
- Button bar available in all themes
- Fixed accordion border
- Button fixes
diff --git a/packages/themes/clickedu/CHANGELOG.md b/packages/themes/clickedu/CHANGELOG.md
index 5c2260a3be..b65ed17eb6 100644
--- a/packages/themes/clickedu/CHANGELOG.md
+++ b/packages/themes/clickedu/CHANGELOG.md
@@ -27,15 +27,12 @@
### Patch Changes
- [#3020](https://github.com/sl-design-system/components/pull/3020) [`738e4a7`](https://github.com/sl-design-system/components/commit/738e4a77005043de2f9977fab9fb04d4fce6369d) - Added
-
- new elevation.surface.raised.primary token
Fixed
-
- form input interactive backgrounds (color.background.input.plain.interactive.plain) from plain to bold variants across all themes (e.g., accent.grey.interactive.bold) for better state contrast.
- [#3020](https://github.com/sl-design-system/components/pull/3020) [`738e4a7`](https://github.com/sl-design-system/components/commit/738e4a77005043de2f9977fab9fb04d4fce6369d) - - adjusted color.border.accent.grey.bold value from {grey.200} to {grey.300} for increased border visibility.
-
- updated color.blanket.plain transparency from {opacity.moderate} to {opacity.subtle} to align with updated design requirements for dialog overlays.
- [#2982](https://github.com/sl-design-system/components/pull/2982) [`5784b96`](https://github.com/sl-design-system/components/commit/5784b9682e183391f842b10f1d194ceb137606f0) - Updated global.css so we have the opportunity to overwrite the link color from a component.
@@ -153,11 +150,9 @@
- [#1710](https://github.com/sl-design-system/components/pull/1710) [`40cc538`](https://github.com/sl-design-system/components/commit/40cc538648e6ed5ac453fbe708bae8761caaab5e) - Overhaul of how (custom) icons are maintained in figma and exported to be used in the packages.
The following icons have changed:
-
- `circle` has been renamed to `circle-solid`
The following icons have been added:
-
- `badge-available`
- `badge-away`
- `badge-donotdisturb`
@@ -166,7 +161,6 @@
- `info`
The following items have been removed (mainly in cleaning up, they were never meant to be there)
-
- `svg-sort`
- `svg-sort-down`
- `svg-sort-up`
@@ -216,7 +210,6 @@
- [#1473](https://github.com/sl-design-system/components/pull/1473) [`04b9ce2`](https://github.com/sl-design-system/components/commit/04b9ce28077255bfc516bce7b62bb7e4642060b3) - Fix/1470 space grotesk to open sans clickedu ds
- [#1454](https://github.com/sl-design-system/components/pull/1454) [`af62ce4`](https://github.com/sl-design-system/components/commit/af62ce4d0e65b1363b9cede48642bc22d1fc9365) - - Improve toggle button and group tokens
-
- Add a `check-solid` icon for use in the `toggle-button` component
- [#1414](https://github.com/sl-design-system/components/pull/1414) [`ff1618c`](https://github.com/sl-design-system/components/commit/ff1618cdfa4d0060465d993f656345ba1044f88c) - Update icons to the latest fontawesome release (6.6.0)
@@ -231,7 +224,6 @@
### Patch Changes
- [#1389](https://github.com/sl-design-system/components/pull/1389) [`f03971b`](https://github.com/sl-design-system/components/commit/f03971b7b338a4248df292060b91b6b903b6c8ed) - Minor style fixes:
-
- Fix the title and subtitle text being cutoff for certain characters due not enough line-height
- Use a different color for the subtitle text
@@ -271,7 +263,6 @@
- [#1251](https://github.com/sl-design-system/components/pull/1251) [`a3da76c`](https://github.com/sl-design-system/components/commit/a3da76c7df521c2241b565dc22025715f1231e9c) - New search icon
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - - Enhanced the color contrast of buttons when used on slightly darker backgrounds across all themes.
-
- Enhanced the color contrast of inline messages to match our buttons.
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - Fix missing triangle-exclamation-solid icon
diff --git a/packages/themes/editorial-suite/CHANGELOG.md b/packages/themes/editorial-suite/CHANGELOG.md
index 2cd57c8e10..b02f6027cc 100644
--- a/packages/themes/editorial-suite/CHANGELOG.md
+++ b/packages/themes/editorial-suite/CHANGELOG.md
@@ -23,11 +23,9 @@
### Minor Changes
- [#3020](https://github.com/sl-design-system/components/pull/3020) [`738e4a7`](https://github.com/sl-design-system/components/commit/738e4a77005043de2f9977fab9fb04d4fce6369d) - Added
-
- new elevation.surface.raised.primary token
Fixed
-
- form input interactive backgrounds (color.background.input.plain.interactive.plain) from plain to bold variants across all themes (e.g., accent.grey.interactive.bold) for better state contrast.
- [#2970](https://github.com/sl-design-system/components/pull/2970) [`e92ebb1`](https://github.com/sl-design-system/components/commit/e92ebb16c596919aaa301be2604ab5f3539738a9) - Caret icons have been updated to implement the new alignment strategy used in Font Awesome 7
@@ -149,11 +147,9 @@
- [#1710](https://github.com/sl-design-system/components/pull/1710) [`40cc538`](https://github.com/sl-design-system/components/commit/40cc538648e6ed5ac453fbe708bae8761caaab5e) - Overhaul of how (custom) icons are maintained in figma and exported to be used in the packages.
The following icons have changed:
-
- `circle` has been renamed to `circle-solid`
The following icons have been added:
-
- `badge-available`
- `badge-away`
- `badge-donotdisturb`
@@ -162,7 +158,6 @@
- `info`
The following items have been removed (mainly in cleaning up, they were never meant to be there)
-
- `svg-sort`
- `svg-sort-down`
- `svg-sort-up`
@@ -210,7 +205,6 @@
### Patch Changes
- [#1454](https://github.com/sl-design-system/components/pull/1454) [`af62ce4`](https://github.com/sl-design-system/components/commit/af62ce4d0e65b1363b9cede48642bc22d1fc9365) - - Improve toggle button and group tokens
-
- Add a `check-solid` icon for use in the `toggle-button` component
- [#1414](https://github.com/sl-design-system/components/pull/1414) [`ff1618c`](https://github.com/sl-design-system/components/commit/ff1618cdfa4d0060465d993f656345ba1044f88c) - Update icons to the latest fontawesome release (6.6.0)
@@ -225,7 +219,6 @@
### Patch Changes
- [#1389](https://github.com/sl-design-system/components/pull/1389) [`f03971b`](https://github.com/sl-design-system/components/commit/f03971b7b338a4248df292060b91b6b903b6c8ed) - Minor style fixes:
-
- Fix the title and subtitle text being cutoff for certain characters due not enough line-height
- Use a different color for the subtitle text
@@ -265,7 +258,6 @@
- [#1251](https://github.com/sl-design-system/components/pull/1251) [`a3da76c`](https://github.com/sl-design-system/components/commit/a3da76c7df521c2241b565dc22025715f1231e9c) - New search icon
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - - Enhanced the color contrast of buttons when used on slightly darker backgrounds across all themes.
-
- Enhanced the color contrast of inline messages to match our buttons.
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - Fix missing triangle-exclamation-solid icon
diff --git a/packages/themes/itslearning/CHANGELOG.md b/packages/themes/itslearning/CHANGELOG.md
index 7598fb5af0..1fe806c54b 100644
--- a/packages/themes/itslearning/CHANGELOG.md
+++ b/packages/themes/itslearning/CHANGELOG.md
@@ -23,11 +23,9 @@
### Minor Changes
- [#3020](https://github.com/sl-design-system/components/pull/3020) [`738e4a7`](https://github.com/sl-design-system/components/commit/738e4a77005043de2f9977fab9fb04d4fce6369d) - Added
-
- new elevation.surface.raised.primary token
Fixed
-
- form input interactive backgrounds (color.background.input.plain.interactive.plain) from plain to bold variants across all themes (e.g., accent.grey.interactive.bold) for better state contrast.
- [#2970](https://github.com/sl-design-system/components/pull/2970) [`e92ebb1`](https://github.com/sl-design-system/components/commit/e92ebb16c596919aaa301be2604ab5f3539738a9) - Caret icons have been updated to implement the new alignment strategy used in Font Awesome 7
@@ -147,11 +145,9 @@
- [#1710](https://github.com/sl-design-system/components/pull/1710) [`40cc538`](https://github.com/sl-design-system/components/commit/40cc538648e6ed5ac453fbe708bae8761caaab5e) - Overhaul of how (custom) icons are maintained in figma and exported to be used in the packages.
The following icons have changed:
-
- `circle` has been renamed to `circle-solid`
The following icons have been added:
-
- `badge-available`
- `badge-away`
- `badge-donotdisturb`
@@ -160,7 +156,6 @@
- `info`
The following items have been removed (mainly in cleaning up, they were never meant to be there)
-
- `svg-sort`
- `svg-sort-down`
- `svg-sort-up`
@@ -208,7 +203,6 @@
### Patch Changes
- [#1454](https://github.com/sl-design-system/components/pull/1454) [`af62ce4`](https://github.com/sl-design-system/components/commit/af62ce4d0e65b1363b9cede48642bc22d1fc9365) - - Improve toggle button and group tokens
-
- Add a `check-solid` icon for use in the `toggle-button` component
- [#1414](https://github.com/sl-design-system/components/pull/1414) [`ff1618c`](https://github.com/sl-design-system/components/commit/ff1618cdfa4d0060465d993f656345ba1044f88c) - Update icons to the latest fontawesome release (6.6.0)
@@ -223,7 +217,6 @@
### Patch Changes
- [#1389](https://github.com/sl-design-system/components/pull/1389) [`f03971b`](https://github.com/sl-design-system/components/commit/f03971b7b338a4248df292060b91b6b903b6c8ed) - Minor style fixes:
-
- Fix the title and subtitle text being cutoff for certain characters due not enough line-height
- Use a different color for the subtitle text
@@ -263,7 +256,6 @@
- [#1251](https://github.com/sl-design-system/components/pull/1251) [`a3da76c`](https://github.com/sl-design-system/components/commit/a3da76c7df521c2241b565dc22025715f1231e9c) - New search icon
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - - Enhanced the color contrast of buttons when used on slightly darker backgrounds across all themes.
-
- Enhanced the color contrast of inline messages to match our buttons.
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - Fix missing triangle-exclamation-solid icon
@@ -280,7 +272,6 @@
- [#1242](https://github.com/sl-design-system/components/pull/1242) [`ab122ec`](https://github.com/sl-design-system/components/commit/ab122ec672a515ae2ca7dce88c7344c1b209d538) - Fix missing `calc()` functions in theme parts.
- [#1225](https://github.com/sl-design-system/components/pull/1225) [`ad297ab`](https://github.com/sl-design-system/components/commit/ad297ab817ab998253b9c2a90033c72dcc686893) - Updated/added tokens:
-
- Button bar available in all themes
- Fixed accordion border
- Button fixes
diff --git a/packages/themes/kampus/CHANGELOG.md b/packages/themes/kampus/CHANGELOG.md
index 7502b9eb45..fa59b313ae 100644
--- a/packages/themes/kampus/CHANGELOG.md
+++ b/packages/themes/kampus/CHANGELOG.md
@@ -23,11 +23,9 @@
### Minor Changes
- [#3020](https://github.com/sl-design-system/components/pull/3020) [`738e4a7`](https://github.com/sl-design-system/components/commit/738e4a77005043de2f9977fab9fb04d4fce6369d) - Added
-
- new elevation.surface.raised.primary token
Fixed
-
- form input interactive backgrounds (color.background.input.plain.interactive.plain) from plain to bold variants across all themes (e.g., accent.grey.interactive.bold) for better state contrast.
- [#2970](https://github.com/sl-design-system/components/pull/2970) [`e92ebb1`](https://github.com/sl-design-system/components/commit/e92ebb16c596919aaa301be2604ab5f3539738a9) - Caret icons have been updated to implement the new alignment strategy used in Font Awesome 7
@@ -147,11 +145,9 @@
- [#1710](https://github.com/sl-design-system/components/pull/1710) [`40cc538`](https://github.com/sl-design-system/components/commit/40cc538648e6ed5ac453fbe708bae8761caaab5e) - Overhaul of how (custom) icons are maintained in figma and exported to be used in the packages.
The following icons have changed:
-
- `circle` has been renamed to `circle-solid`
The following icons have been added:
-
- `badge-available`
- `badge-away`
- `badge-donotdisturb`
@@ -160,7 +156,6 @@
- `info`
The following items have been removed (mainly in cleaning up, they were never meant to be there)
-
- `svg-sort`
- `svg-sort-down`
- `svg-sort-up`
@@ -210,7 +205,6 @@
### Patch Changes
- [#1454](https://github.com/sl-design-system/components/pull/1454) [`af62ce4`](https://github.com/sl-design-system/components/commit/af62ce4d0e65b1363b9cede48642bc22d1fc9365) - - Improve toggle button and group tokens
-
- Add a `check-solid` icon for use in the `toggle-button` component
- [#1414](https://github.com/sl-design-system/components/pull/1414) [`ff1618c`](https://github.com/sl-design-system/components/commit/ff1618cdfa4d0060465d993f656345ba1044f88c) - Update icons to the latest fontawesome release (6.6.0)
@@ -225,7 +219,6 @@
### Patch Changes
- [#1389](https://github.com/sl-design-system/components/pull/1389) [`f03971b`](https://github.com/sl-design-system/components/commit/f03971b7b338a4248df292060b91b6b903b6c8ed) - Minor style fixes:
-
- Fix the title and subtitle text being cutoff for certain characters due not enough line-height
- Use a different color for the subtitle text
@@ -265,7 +258,6 @@
- [#1251](https://github.com/sl-design-system/components/pull/1251) [`a3da76c`](https://github.com/sl-design-system/components/commit/a3da76c7df521c2241b565dc22025715f1231e9c) - New search icon
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - - Enhanced the color contrast of buttons when used on slightly darker backgrounds across all themes.
-
- Enhanced the color contrast of inline messages to match our buttons.
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - Fix missing triangle-exclamation-solid icon
@@ -282,7 +274,6 @@
- [#1242](https://github.com/sl-design-system/components/pull/1242) [`ab122ec`](https://github.com/sl-design-system/components/commit/ab122ec672a515ae2ca7dce88c7344c1b209d538) - Fix missing `calc()` functions in theme parts.
- [#1225](https://github.com/sl-design-system/components/pull/1225) [`ad297ab`](https://github.com/sl-design-system/components/commit/ad297ab817ab998253b9c2a90033c72dcc686893) - Updated/added tokens:
-
- Button bar available in all themes
- Fixed accordion border
- Button fixes
diff --git a/packages/themes/magister/CHANGELOG.md b/packages/themes/magister/CHANGELOG.md
index dbd1205008..54dda88c82 100644
--- a/packages/themes/magister/CHANGELOG.md
+++ b/packages/themes/magister/CHANGELOG.md
@@ -23,11 +23,9 @@
### Minor Changes
- [#3020](https://github.com/sl-design-system/components/pull/3020) [`738e4a7`](https://github.com/sl-design-system/components/commit/738e4a77005043de2f9977fab9fb04d4fce6369d) - Added
-
- new elevation.surface.raised.primary token
Fixed
-
- form input interactive backgrounds (color.background.input.plain.interactive.plain) from plain to bold variants across all themes (e.g., accent.grey.interactive.bold) for better state contrast.
- [#2970](https://github.com/sl-design-system/components/pull/2970) [`e92ebb1`](https://github.com/sl-design-system/components/commit/e92ebb16c596919aaa301be2604ab5f3539738a9) - Caret icons have been updated to implement the new alignment strategy used in Font Awesome 7
@@ -164,11 +162,9 @@
- [#1710](https://github.com/sl-design-system/components/pull/1710) [`40cc538`](https://github.com/sl-design-system/components/commit/40cc538648e6ed5ac453fbe708bae8761caaab5e) - Overhaul of how (custom) icons are maintained in figma and exported to be used in the packages.
The following icons have changed:
-
- `circle` has been renamed to `circle-solid`
The following icons have been added:
-
- `badge-available`
- `badge-away`
- `badge-donotdisturb`
@@ -177,7 +173,6 @@
- `info`
The following items have been removed (mainly in cleaning up, they were never meant to be there)
-
- `svg-sort`
- `svg-sort-down`
- `svg-sort-up`
@@ -235,7 +230,6 @@
### Patch Changes
- [#1454](https://github.com/sl-design-system/components/pull/1454) [`af62ce4`](https://github.com/sl-design-system/components/commit/af62ce4d0e65b1363b9cede48642bc22d1fc9365) - - Improve toggle button and group tokens
-
- Add a `check-solid` icon for use in the `toggle-button` component
- [#1414](https://github.com/sl-design-system/components/pull/1414) [`ff1618c`](https://github.com/sl-design-system/components/commit/ff1618cdfa4d0060465d993f656345ba1044f88c) - Update icons to the latest fontawesome release (6.6.0)
@@ -250,7 +244,6 @@
### Patch Changes
- [#1389](https://github.com/sl-design-system/components/pull/1389) [`f03971b`](https://github.com/sl-design-system/components/commit/f03971b7b338a4248df292060b91b6b903b6c8ed) - Minor style fixes:
-
- Fix the title and subtitle text being cutoff for certain characters due not enough line-height
- Use a different color for the subtitle text
@@ -296,7 +289,6 @@
- [#1251](https://github.com/sl-design-system/components/pull/1251) [`a3da76c`](https://github.com/sl-design-system/components/commit/a3da76c7df521c2241b565dc22025715f1231e9c) - New search icon
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - - Enhanced the color contrast of buttons when used on slightly darker backgrounds across all themes.
-
- Enhanced the color contrast of inline messages to match our buttons.
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - Fix missing triangle-exclamation-solid icon
@@ -313,7 +305,6 @@
- [#1242](https://github.com/sl-design-system/components/pull/1242) [`ab122ec`](https://github.com/sl-design-system/components/commit/ab122ec672a515ae2ca7dce88c7344c1b209d538) - Fix missing `calc()` functions in theme parts.
- [#1225](https://github.com/sl-design-system/components/pull/1225) [`ad297ab`](https://github.com/sl-design-system/components/commit/ad297ab817ab998253b9c2a90033c72dcc686893) - Updated/added tokens:
-
- Button bar available in all themes
- Fixed accordion border
- Button fixes
diff --git a/packages/themes/max/CHANGELOG.md b/packages/themes/max/CHANGELOG.md
index 783beba8be..ceee0f1aad 100644
--- a/packages/themes/max/CHANGELOG.md
+++ b/packages/themes/max/CHANGELOG.md
@@ -23,11 +23,9 @@
### Minor Changes
- [#3020](https://github.com/sl-design-system/components/pull/3020) [`738e4a7`](https://github.com/sl-design-system/components/commit/738e4a77005043de2f9977fab9fb04d4fce6369d) - Added
-
- new elevation.surface.raised.primary token
Fixed
-
- form input interactive backgrounds (color.background.input.plain.interactive.plain) from plain to bold variants across all themes (e.g., accent.grey.interactive.bold) for better state contrast.
- [#2970](https://github.com/sl-design-system/components/pull/2970) [`e92ebb1`](https://github.com/sl-design-system/components/commit/e92ebb16c596919aaa301be2604ab5f3539738a9) - Caret icons have been updated to implement the new alignment strategy used in Font Awesome 7
@@ -149,11 +147,9 @@
- [#1710](https://github.com/sl-design-system/components/pull/1710) [`40cc538`](https://github.com/sl-design-system/components/commit/40cc538648e6ed5ac453fbe708bae8761caaab5e) - Overhaul of how (custom) icons are maintained in figma and exported to be used in the packages.
The following icons have changed:
-
- `circle` has been renamed to `circle-solid`
The following icons have been added:
-
- `badge-available`
- `badge-away`
- `badge-donotdisturb`
@@ -162,7 +158,6 @@
- `info`
The following items have been removed (mainly in cleaning up, they were never meant to be there)
-
- `svg-sort`
- `svg-sort-down`
- `svg-sort-up`
@@ -210,7 +205,6 @@
### Patch Changes
- [#1454](https://github.com/sl-design-system/components/pull/1454) [`af62ce4`](https://github.com/sl-design-system/components/commit/af62ce4d0e65b1363b9cede48642bc22d1fc9365) - - Improve toggle button and group tokens
-
- Add a `check-solid` icon for use in the `toggle-button` component
- [#1414](https://github.com/sl-design-system/components/pull/1414) [`ff1618c`](https://github.com/sl-design-system/components/commit/ff1618cdfa4d0060465d993f656345ba1044f88c) - Update icons to the latest fontawesome release (6.6.0)
@@ -225,7 +219,6 @@
### Patch Changes
- [#1389](https://github.com/sl-design-system/components/pull/1389) [`f03971b`](https://github.com/sl-design-system/components/commit/f03971b7b338a4248df292060b91b6b903b6c8ed) - Minor style fixes:
-
- Fix the title and subtitle text being cutoff for certain characters due not enough line-height
- Use a different color for the subtitle text
@@ -265,7 +258,6 @@
- [#1251](https://github.com/sl-design-system/components/pull/1251) [`a3da76c`](https://github.com/sl-design-system/components/commit/a3da76c7df521c2241b565dc22025715f1231e9c) - New search icon
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - - Enhanced the color contrast of buttons when used on slightly darker backgrounds across all themes.
-
- Enhanced the color contrast of inline messages to match our buttons.
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - Fix missing triangle-exclamation-solid icon
@@ -282,7 +274,6 @@
- [#1242](https://github.com/sl-design-system/components/pull/1242) [`ab122ec`](https://github.com/sl-design-system/components/commit/ab122ec672a515ae2ca7dce88c7344c1b209d538) - Fix missing `calc()` functions in theme parts.
- [#1225](https://github.com/sl-design-system/components/pull/1225) [`ad297ab`](https://github.com/sl-design-system/components/commit/ad297ab817ab998253b9c2a90033c72dcc686893) - Updated/added tokens:
-
- Button bar available in all themes
- Fixed accordion border
- Button fixes
diff --git a/packages/themes/my-digital-book/CHANGELOG.md b/packages/themes/my-digital-book/CHANGELOG.md
index 1f1a9ba848..623d8f3017 100644
--- a/packages/themes/my-digital-book/CHANGELOG.md
+++ b/packages/themes/my-digital-book/CHANGELOG.md
@@ -23,11 +23,9 @@
### Minor Changes
- [#3020](https://github.com/sl-design-system/components/pull/3020) [`738e4a7`](https://github.com/sl-design-system/components/commit/738e4a77005043de2f9977fab9fb04d4fce6369d) - Added
-
- new elevation.surface.raised.primary token
Fixed
-
- form input interactive backgrounds (color.background.input.plain.interactive.plain) from plain to bold variants across all themes (e.g., accent.grey.interactive.bold) for better state contrast.
- [#2970](https://github.com/sl-design-system/components/pull/2970) [`e92ebb1`](https://github.com/sl-design-system/components/commit/e92ebb16c596919aaa301be2604ab5f3539738a9) - Caret icons have been updated to implement the new alignment strategy used in Font Awesome 7
@@ -147,11 +145,9 @@
- [#1710](https://github.com/sl-design-system/components/pull/1710) [`40cc538`](https://github.com/sl-design-system/components/commit/40cc538648e6ed5ac453fbe708bae8761caaab5e) - Overhaul of how (custom) icons are maintained in figma and exported to be used in the packages.
The following icons have changed:
-
- `circle` has been renamed to `circle-solid`
The following icons have been added:
-
- `badge-available`
- `badge-away`
- `badge-donotdisturb`
@@ -160,7 +156,6 @@
- `info`
The following items have been removed (mainly in cleaning up, they were never meant to be there)
-
- `svg-sort`
- `svg-sort-down`
- `svg-sort-up`
@@ -208,7 +203,6 @@
### Patch Changes
- [#1454](https://github.com/sl-design-system/components/pull/1454) [`af62ce4`](https://github.com/sl-design-system/components/commit/af62ce4d0e65b1363b9cede48642bc22d1fc9365) - - Improve toggle button and group tokens
-
- Add a `check-solid` icon for use in the `toggle-button` component
- [#1414](https://github.com/sl-design-system/components/pull/1414) [`ff1618c`](https://github.com/sl-design-system/components/commit/ff1618cdfa4d0060465d993f656345ba1044f88c) - Update icons to the latest fontawesome release (6.6.0)
@@ -223,7 +217,6 @@
### Patch Changes
- [#1389](https://github.com/sl-design-system/components/pull/1389) [`f03971b`](https://github.com/sl-design-system/components/commit/f03971b7b338a4248df292060b91b6b903b6c8ed) - Minor style fixes:
-
- Fix the title and subtitle text being cutoff for certain characters due not enough line-height
- Use a different color for the subtitle text
@@ -263,7 +256,6 @@
- [#1251](https://github.com/sl-design-system/components/pull/1251) [`a3da76c`](https://github.com/sl-design-system/components/commit/a3da76c7df521c2241b565dc22025715f1231e9c) - New search icon
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - - Enhanced the color contrast of buttons when used on slightly darker backgrounds across all themes.
-
- Enhanced the color contrast of inline messages to match our buttons.
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - Fix missing triangle-exclamation-solid icon
diff --git a/packages/themes/myvanin_onhold/CHANGELOG.md b/packages/themes/myvanin_onhold/CHANGELOG.md
index e02970a6e1..76e2819738 100644
--- a/packages/themes/myvanin_onhold/CHANGELOG.md
+++ b/packages/themes/myvanin_onhold/CHANGELOG.md
@@ -105,11 +105,9 @@
- [#1710](https://github.com/sl-design-system/components/pull/1710) [`40cc538`](https://github.com/sl-design-system/components/commit/40cc538648e6ed5ac453fbe708bae8761caaab5e) - Overhaul of how (custom) icons are maintained in figma and exported to be used in the packages.
The following icons have changed:
-
- `circle` has been renamed to `circle-solid`
The following icons have been added:
-
- `badge-available`
- `badge-away`
- `badge-donotdisturb`
@@ -118,7 +116,6 @@
- `info`
The following items have been removed (mainly in cleaning up, they were never meant to be there)
-
- `svg-sort`
- `svg-sort-down`
- `svg-sort-up`
@@ -180,7 +177,6 @@
- [#1251](https://github.com/sl-design-system/components/pull/1251) [`a3da76c`](https://github.com/sl-design-system/components/commit/a3da76c7df521c2241b565dc22025715f1231e9c) - New search icon
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - - Enhanced the color contrast of buttons when used on slightly darker backgrounds across all themes.
-
- Enhanced the color contrast of inline messages to match our buttons.
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - Fix missing triangle-exclamation-solid icon
diff --git a/packages/themes/neon/CHANGELOG.md b/packages/themes/neon/CHANGELOG.md
index a7f725243d..f87baff427 100644
--- a/packages/themes/neon/CHANGELOG.md
+++ b/packages/themes/neon/CHANGELOG.md
@@ -23,11 +23,9 @@
### Minor Changes
- [#3020](https://github.com/sl-design-system/components/pull/3020) [`738e4a7`](https://github.com/sl-design-system/components/commit/738e4a77005043de2f9977fab9fb04d4fce6369d) - Added
-
- new elevation.surface.raised.primary token
Fixed
-
- form input interactive backgrounds (color.background.input.plain.interactive.plain) from plain to bold variants across all themes (e.g., accent.grey.interactive.bold) for better state contrast.
- [#2970](https://github.com/sl-design-system/components/pull/2970) [`e92ebb1`](https://github.com/sl-design-system/components/commit/e92ebb16c596919aaa301be2604ab5f3539738a9) - Caret icons have been updated to implement the new alignment strategy used in Font Awesome 7
@@ -149,11 +147,9 @@
- [#1710](https://github.com/sl-design-system/components/pull/1710) [`40cc538`](https://github.com/sl-design-system/components/commit/40cc538648e6ed5ac453fbe708bae8761caaab5e) - Overhaul of how (custom) icons are maintained in figma and exported to be used in the packages.
The following icons have changed:
-
- `circle` has been renamed to `circle-solid`
The following icons have been added:
-
- `badge-available`
- `badge-away`
- `badge-donotdisturb`
@@ -162,7 +158,6 @@
- `info`
The following items have been removed (mainly in cleaning up, they were never meant to be there)
-
- `svg-sort`
- `svg-sort-down`
- `svg-sort-up`
@@ -210,7 +205,6 @@
### Patch Changes
- [#1454](https://github.com/sl-design-system/components/pull/1454) [`af62ce4`](https://github.com/sl-design-system/components/commit/af62ce4d0e65b1363b9cede48642bc22d1fc9365) - - Improve toggle button and group tokens
-
- Add a `check-solid` icon for use in the `toggle-button` component
- [#1414](https://github.com/sl-design-system/components/pull/1414) [`ff1618c`](https://github.com/sl-design-system/components/commit/ff1618cdfa4d0060465d993f656345ba1044f88c) - Update icons to the latest fontawesome release (6.6.0)
@@ -225,7 +219,6 @@
### Patch Changes
- [#1389](https://github.com/sl-design-system/components/pull/1389) [`f03971b`](https://github.com/sl-design-system/components/commit/f03971b7b338a4248df292060b91b6b903b6c8ed) - Minor style fixes:
-
- Fix the title and subtitle text being cutoff for certain characters due not enough line-height
- Use a different color for the subtitle text
@@ -267,7 +260,6 @@
- [#1251](https://github.com/sl-design-system/components/pull/1251) [`a3da76c`](https://github.com/sl-design-system/components/commit/a3da76c7df521c2241b565dc22025715f1231e9c) - New search icon
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - - Enhanced the color contrast of buttons when used on slightly darker backgrounds across all themes.
-
- Enhanced the color contrast of inline messages to match our buttons.
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - Fix missing triangle-exclamation-solid icon
@@ -284,7 +276,6 @@
- [#1242](https://github.com/sl-design-system/components/pull/1242) [`ab122ec`](https://github.com/sl-design-system/components/commit/ab122ec672a515ae2ca7dce88c7344c1b209d538) - Fix missing `calc()` functions in theme parts.
- [#1225](https://github.com/sl-design-system/components/pull/1225) [`ad297ab`](https://github.com/sl-design-system/components/commit/ad297ab817ab998253b9c2a90033c72dcc686893) - Updated/added tokens:
-
- Button bar available in all themes
- Fixed accordion border
- Button fixes
diff --git a/packages/themes/sanoma-learning/CHANGELOG.md b/packages/themes/sanoma-learning/CHANGELOG.md
index af53b3b3cc..d459c3d991 100644
--- a/packages/themes/sanoma-learning/CHANGELOG.md
+++ b/packages/themes/sanoma-learning/CHANGELOG.md
@@ -23,11 +23,9 @@
### Minor Changes
- [#3020](https://github.com/sl-design-system/components/pull/3020) [`738e4a7`](https://github.com/sl-design-system/components/commit/738e4a77005043de2f9977fab9fb04d4fce6369d) - Added
-
- new elevation.surface.raised.primary token
Fixed
-
- form input interactive backgrounds (color.background.input.plain.interactive.plain) from plain to bold variants across all themes (e.g., accent.grey.interactive.bold) for better state contrast.
- [#2970](https://github.com/sl-design-system/components/pull/2970) [`e92ebb1`](https://github.com/sl-design-system/components/commit/e92ebb16c596919aaa301be2604ab5f3539738a9) - Caret icons have been updated to implement the new alignment strategy used in Font Awesome 7
@@ -155,11 +153,9 @@
- [#1710](https://github.com/sl-design-system/components/pull/1710) [`40cc538`](https://github.com/sl-design-system/components/commit/40cc538648e6ed5ac453fbe708bae8761caaab5e) - Overhaul of how (custom) icons are maintained in figma and exported to be used in the packages.
The following icons have changed:
-
- `circle` has been renamed to `circle-solid`
The following icons have been added:
-
- `badge-available`
- `badge-away`
- `badge-donotdisturb`
@@ -168,7 +164,6 @@
- `info`
The following items have been removed (mainly in cleaning up, they were never meant to be there)
-
- `svg-sort`
- `svg-sort-down`
- `svg-sort-up`
@@ -220,7 +215,6 @@
- [#1422](https://github.com/sl-design-system/components/pull/1422) [`2833861`](https://github.com/sl-design-system/components/commit/28338611d0fccf175c3e22eb268fc5892522dc78) - Added tag tokens
- [#1454](https://github.com/sl-design-system/components/pull/1454) [`af62ce4`](https://github.com/sl-design-system/components/commit/af62ce4d0e65b1363b9cede48642bc22d1fc9365) - - Improve toggle button and group tokens
-
- Add a `check-solid` icon for use in the `toggle-button` component
- [#1414](https://github.com/sl-design-system/components/pull/1414) [`ff1618c`](https://github.com/sl-design-system/components/commit/ff1618cdfa4d0060465d993f656345ba1044f88c) - Update icons to the latest fontawesome release (6.6.0)
@@ -233,7 +227,6 @@
### Patch Changes
- [#1389](https://github.com/sl-design-system/components/pull/1389) [`f03971b`](https://github.com/sl-design-system/components/commit/f03971b7b338a4248df292060b91b6b903b6c8ed) - Minor style fixes:
-
- Fix the title and subtitle text being cutoff for certain characters due not enough line-height
- Use a different color for the subtitle text
@@ -277,7 +270,6 @@
- [#1251](https://github.com/sl-design-system/components/pull/1251) [`a3da76c`](https://github.com/sl-design-system/components/commit/a3da76c7df521c2241b565dc22025715f1231e9c) - New search icon
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - - Enhanced the color contrast of buttons when used on slightly darker backgrounds across all themes.
-
- Enhanced the color contrast of inline messages to match our buttons.
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - Fix missing triangle-exclamation-solid icon
diff --git a/packages/themes/teas/CHANGELOG.md b/packages/themes/teas/CHANGELOG.md
index 112b72d888..0f8e98f2df 100644
--- a/packages/themes/teas/CHANGELOG.md
+++ b/packages/themes/teas/CHANGELOG.md
@@ -23,11 +23,9 @@
### Minor Changes
- [#3020](https://github.com/sl-design-system/components/pull/3020) [`738e4a7`](https://github.com/sl-design-system/components/commit/738e4a77005043de2f9977fab9fb04d4fce6369d) - Added
-
- new elevation.surface.raised.primary token
Fixed
-
- form input interactive backgrounds (color.background.input.plain.interactive.plain) from plain to bold variants across all themes (e.g., accent.grey.interactive.bold) for better state contrast.
- [#2970](https://github.com/sl-design-system/components/pull/2970) [`e92ebb1`](https://github.com/sl-design-system/components/commit/e92ebb16c596919aaa301be2604ab5f3539738a9) - Caret icons have been updated to implement the new alignment strategy used in Font Awesome 7
@@ -147,11 +145,9 @@
- [#1710](https://github.com/sl-design-system/components/pull/1710) [`40cc538`](https://github.com/sl-design-system/components/commit/40cc538648e6ed5ac453fbe708bae8761caaab5e) - Overhaul of how (custom) icons are maintained in figma and exported to be used in the packages.
The following icons have changed:
-
- `circle` has been renamed to `circle-solid`
The following icons have been added:
-
- `badge-available`
- `badge-away`
- `badge-donotdisturb`
@@ -160,7 +156,6 @@
- `info`
The following items have been removed (mainly in cleaning up, they were never meant to be there)
-
- `svg-sort`
- `svg-sort-down`
- `svg-sort-up`
@@ -212,7 +207,6 @@
- [#1469](https://github.com/sl-design-system/components/pull/1469) [`7e31a0d`](https://github.com/sl-design-system/components/commit/7e31a0d63766e7efbdadffdd17b53bcdd1951515) - updated color default ghost button in TEAS
- [#1454](https://github.com/sl-design-system/components/pull/1454) [`af62ce4`](https://github.com/sl-design-system/components/commit/af62ce4d0e65b1363b9cede48642bc22d1fc9365) - - Improve toggle button and group tokens
-
- Add a `check-solid` icon for use in the `toggle-button` component
- [#1414](https://github.com/sl-design-system/components/pull/1414) [`ff1618c`](https://github.com/sl-design-system/components/commit/ff1618cdfa4d0060465d993f656345ba1044f88c) - Update icons to the latest fontawesome release (6.6.0)
@@ -227,7 +221,6 @@
### Patch Changes
- [#1389](https://github.com/sl-design-system/components/pull/1389) [`f03971b`](https://github.com/sl-design-system/components/commit/f03971b7b338a4248df292060b91b6b903b6c8ed) - Minor style fixes:
-
- Fix the title and subtitle text being cutoff for certain characters due not enough line-height
- Use a different color for the subtitle text
@@ -267,7 +260,6 @@
- [#1251](https://github.com/sl-design-system/components/pull/1251) [`a3da76c`](https://github.com/sl-design-system/components/commit/a3da76c7df521c2241b565dc22025715f1231e9c) - New search icon
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - - Enhanced the color contrast of buttons when used on slightly darker backgrounds across all themes.
-
- Enhanced the color contrast of inline messages to match our buttons.
- [#1234](https://github.com/sl-design-system/components/pull/1234) [`fe047da`](https://github.com/sl-design-system/components/commit/fe047da265a3d657d74ee26df95ebd73f2d7ef7f) - Fix missing triangle-exclamation-solid icon
@@ -284,7 +276,6 @@
- [#1242](https://github.com/sl-design-system/components/pull/1242) [`ab122ec`](https://github.com/sl-design-system/components/commit/ab122ec672a515ae2ca7dce88c7344c1b209d538) - Fix missing `calc()` functions in theme parts.
- [#1225](https://github.com/sl-design-system/components/pull/1225) [`ad297ab`](https://github.com/sl-design-system/components/commit/ad297ab817ab998253b9c2a90033c72dcc686893) - Updated/added tokens:
-
- Button bar available in all themes
- Fixed accordion border
- Button fixes
diff --git a/packages/themes/tig/CHANGELOG.md b/packages/themes/tig/CHANGELOG.md
index 3c481f33b8..296085f74e 100644
--- a/packages/themes/tig/CHANGELOG.md
+++ b/packages/themes/tig/CHANGELOG.md
@@ -23,11 +23,9 @@
### Minor Changes
- [#3020](https://github.com/sl-design-system/components/pull/3020) [`738e4a7`](https://github.com/sl-design-system/components/commit/738e4a77005043de2f9977fab9fb04d4fce6369d) - Added
-
- new elevation.surface.raised.primary token
Fixed
-
- form input interactive backgrounds (color.background.input.plain.interactive.plain) from plain to bold variants across all themes (e.g., accent.grey.interactive.bold) for better state contrast.
- [#2970](https://github.com/sl-design-system/components/pull/2970) [`e92ebb1`](https://github.com/sl-design-system/components/commit/e92ebb16c596919aaa301be2604ab5f3539738a9) - Caret icons have been updated to implement the new alignment strategy used in Font Awesome 7
diff --git a/website/src/categories/components/tag/accessibility.md b/website/src/categories/components/tag/accessibility.md
index fa15a7b123..6d1e6f38ab 100644
--- a/website/src/categories/components/tag/accessibility.md
+++ b/website/src/categories/components/tag/accessibility.md
@@ -9,11 +9,10 @@ eleventyNavigation:
## Keyboard interactions
-The tag list component uses a roving tabindex. You can focus the first removable tag in the list by pressing the `Tab` key. After that, you can navigate through the removable tags using the left and right arrow keys. You can navigate back to the previous tag with left. The focus indicator loops, so when you are at the last option and press right it will focus on the first tag.
+The tag list component uses a roving tabindex for removable tags. You can focus the first remove button in the list by pressing the `Tab` key. After that, you can navigate through the remove buttons using the left and right arrow keys. The focus indicator loops, so when you are at the last option and press right it will focus on the first remove button.
In the stacked version of tag-list, when there are hidden tags, you can navigate only through visible removable tags with arrow keys. The first tag indicates how many hidden tags there are. Using a screen reader, it will announce how many hidden tags there are.
-
-When the tag is focused and is removable, it can be removed by pressing the `Delete` or `Backspace` key. This behavior is also announced by the screen reader.
+When a remove button is focused, the tag can be removed by activating the button or by pressing the `Delete` or `Backspace` key. The remove button has an accessible name that includes the tag label, for example "Remove tag 'History'".
@@ -29,7 +28,9 @@ When the tag is focused and is removable, it can be removed by pressing the `Del
|Attribute|Value|Description|
|-|-|-|
-|`role`|`'listitem', 'button'`|Identifies the tag element as a `listitem` when it's used inside the `sl-tag-list` - this role is added automatically. Please provide a role `button` when the tag is interactive, is used to perform an action or is removable and not used inside `sl-tag-list`.|
+|`role`|`'listitem'`|Identifies the tag element as a `listitem` when it's used inside the `sl-tag-list` - this role is added automatically. Removable tags contain a native remove button.|
+|`aria-label`|string|The remove button uses an accessible name that identifies which tag will be removed.|
+|`aria-disabled`|boolean|Used on the remove button when a removable tag is disabled. The button remains focusable but cannot remove the tag.|
{.ds-table .ds-table-align-top}
@@ -46,6 +47,8 @@ When the tag is focused and is removable, it can be removed by pressing the `Del
{.ds-table .ds-table-align-top}
+Do not mix static and removable tags in the same tag list. Use a static tag list when no tags can be removed, and a removable tag list when users can remove tags.
+
diff --git a/website/src/categories/components/tag/usage.md b/website/src/categories/components/tag/usage.md
index 362c09f3ed..556bb620b4 100644
--- a/website/src/categories/components/tag/usage.md
+++ b/website/src/categories/components/tag/usage.md
@@ -9,6 +9,22 @@ eleventyNavigation:
```html
-Mathematics
+MathematicsHistoryScience
```
@@ -33,7 +49,10 @@ Use tags to categorize and label course content, enhancing organization, discove
### User-Generated Tags
-Enable users to create and manage their own custom labels, allowing for a personalized organization system. In a student dashboard, for example, users might tag their notes or assignments with custom labels like "Exam Prep," "Homework," "Group Project," or "To Review," facilitating better organization.
+Enable users to create and manage their own custom labels, allowing for a personalized organization system. In a student dashboard, for example, users might tag their notes or assignments with custom labels like "Exam Prep," "Homework," "Group Project," or "To Review," facilitating better organization. Use removable tags when users can edit or remove those labels.
+
+### Tag lists
+Keep tag lists consistent: use either static tags or removable tags in a single list, but do not mix both types in the same list. A tag should only be disabled when it is also removable.
@@ -56,9 +75,9 @@ For tracking the status of tasks or items, such as "In Progress," "Completed," o
|Item|Name| Description | Optional|
|-|-|-|-|
-|1|Container |The container contains the label and close button |no|
+|1|Container |The container contains the label and optional close button |no|
|2|Label |The label is a brief text that describes the tag |no|
-|3|Close button |To remove the tag |yes|
+|3|Close button |The only interactive part of a removable tag |yes|
{.ds-table .ds-table-align-top}
diff --git a/website/src/styles/dark-light-mode.scss b/website/src/styles/dark-light-mode.scss
index 14949de1be..840f048ede 100644
--- a/website/src/styles/dark-light-mode.scss
+++ b/website/src/styles/dark-light-mode.scss
@@ -122,10 +122,10 @@
--input-menu-background: rgb(var(--ds-color-black-rgb) / 4%);
--input-menu-background--hover: rgb(var(--ds-color-black-rgb) / 8%);
--input-menu--border: var(--ds-color-light-grey);
- --link-color: var(--ds-color-blueberry-light);
+ --link-color: var(--ds-color-mariner);
--link-hover-color: var(--ds-color-mariner);
--link-active-color: var(--ds-color-mariner);
- --link-visited-color: var(--ds-color-blueberry-light);
+ --link-visited-color: var(--ds-color-mariner);
--logo: url('../assets/logo-black.svg');
--menu-button-hover: rgb(var(--ds-color-blue-rgb) / 4%);
--menu-font-color: var(--ds-color-raisin-black);
@@ -140,7 +140,7 @@
--table-code-background: var(--ds-color-concrete);
--table-separator: var(--ds-color-bright-grey);
--table-text-color: var(--ds-color-raisin-black);
- --tab-color: rgb(var(--ds-color-black-rgb) / 60%);
+ --tab-color: rgb(var(--ds-color-black-rgb) / 80%);
--tab-color--active: var(--ds-color-black);
--tab-color--hover: var(--ds-color-black);
--tab-indicator-background: var(--ds-color-blue);
diff --git a/website/src/ts/components/vertical-tabs/vertical-tabs.ts b/website/src/ts/components/vertical-tabs/vertical-tabs.ts
index 79b692342f..cffe555a70 100644
--- a/website/src/ts/components/vertical-tabs/vertical-tabs.ts
+++ b/website/src/ts/components/vertical-tabs/vertical-tabs.ts
@@ -30,8 +30,6 @@ export class VerticalTabs extends LitElement {
/** Used to render vertical links content - tagElement is a source of links text, H2 is the default */
@property() tagElement = 'H2';
- nextUniqueId = 0;
-
observer = new IntersectionObserver(
entries => {
let updated = false;
@@ -140,22 +138,19 @@ export class VerticalTabs extends LitElement {
return html`