Minor Changes
- aeab467: [input-stepper] a11y enhancement & added translations
Patch Changes
-
aeab467: [checkbox-group] add role="list" and role="listitem" to checkbox-indeterminate and its children
-
aeab467: migrate deprecated
performUpdate
api toscheduleUpdate
-
aeab467: [form-core]: set aria-disabled next to the disabled attribute for NVDA screen reader
-
aeab467: [form-core] remove fieldset label/helpt-text from input-field aria-labelledby/aria-describedby. See #1576
-
aeab467: [input-range] add screen-reader labels for minimum and maximum value
-
aeab467: feat: split validate-messages-no-side-effects methods, so they can be bundled along with entrypoints.
For optimized bundling, it's reccommended to load feedback messages per entrypoint. For instance, when you only use form-core in your app:
import { LionInputTel } from '@lion/ui/input-tel.js'; import { getLocalizeManager } from '@lion/ui/localize-no-side-effects.js'; import { loadInputTelMessagesNoSideEffects } from '@lion/ui/validate-messages-no-side-effects.js'; export class MyInputTel extends LionInputTel { constructor() { super(); loadInputTelMessagesNoSideEffects({ localize: getLocalizeManager() }); } }
This prevents you from loading unused entrypoints like input-tel (which loads a full phone validation library) etc.
-
aeab467: [form-core] order aria-labelledby and aria-describedby based on slot order instead of dom order