Revert "chore: temp prevent next @lion/ui release"
This reverts commit 5a2e01c3c7.
This commit is contained in:
parent
b193d22f92
commit
af80affa53
8 changed files with 57 additions and 0 deletions
5
.changeset/forty-teachers-sleep.md
Normal file
5
.changeset/forty-teachers-sleep.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'@lion/ui': patch
|
||||
---
|
||||
|
||||
[checkbox-group] add role="list" and role="listitem" to checkbox-indeterminate and its children
|
||||
5
.changeset/fresh-moles-reflect.md
Normal file
5
.changeset/fresh-moles-reflect.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'@lion/ui': patch
|
||||
---
|
||||
|
||||
migrate deprecated `performUpdate` api to `scheduleUpdate`
|
||||
5
.changeset/pink-islands-return.md
Normal file
5
.changeset/pink-islands-return.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'@lion/ui': minor
|
||||
---
|
||||
|
||||
[input-stepper] a11y enhancement & added translations
|
||||
5
.changeset/polite-otters-sort.md
Normal file
5
.changeset/polite-otters-sort.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'@lion/ui': patch
|
||||
---
|
||||
|
||||
[form-core]: set aria-disabled next to the disabled attribute for NVDA screen reader
|
||||
5
.changeset/slow-ties-carry.md
Normal file
5
.changeset/slow-ties-carry.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'@lion/ui': patch
|
||||
---
|
||||
|
||||
[form-core] remove fieldset label/helpt-text from input-field aria-labelledby/aria-describedby. See https://github.com/ing-bank/lion/issues/1576
|
||||
5
.changeset/sour-students-invent.md
Normal file
5
.changeset/sour-students-invent.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'@lion/ui': patch
|
||||
---
|
||||
|
||||
[input-range] add screen-reader labels for minimum and maximum value
|
||||
22
.changeset/swift-deers-taste.md
Normal file
22
.changeset/swift-deers-taste.md
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
'@lion/ui': patch
|
||||
---
|
||||
|
||||
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:
|
||||
|
||||
```js
|
||||
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.
|
||||
5
.changeset/witty-houses-argue.md
Normal file
5
.changeset/witty-houses-argue.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'@lion/ui': patch
|
||||
---
|
||||
|
||||
[form-core] order aria-labelledby and aria-describedby based on slot order instead of dom order
|
||||
Loading…
Reference in a new issue