@mk-kit/ui 0.43.0 → 0.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/fesm2022/mk-kit-ui-core.mjs +5 -0
- package/fesm2022/mk-kit-ui-core.mjs.map +1 -1
- package/fesm2022/mk-kit-ui-data.mjs +1 -1
- package/fesm2022/mk-kit-ui-data.mjs.map +1 -1
- package/fesm2022/mk-kit-ui-directives.mjs +27 -8
- package/fesm2022/mk-kit-ui-directives.mjs.map +1 -1
- package/fesm2022/mk-kit-ui-dnd.mjs +43 -8
- package/fesm2022/mk-kit-ui-dnd.mjs.map +1 -1
- package/fesm2022/mk-kit-ui-forms.mjs +1 -1
- package/fesm2022/mk-kit-ui-forms.mjs.map +1 -1
- package/fesm2022/mk-kit-ui-media.mjs +1 -1
- package/fesm2022/mk-kit-ui-media.mjs.map +1 -1
- package/fesm2022/mk-kit-ui-table.mjs +658 -22
- package/fesm2022/mk-kit-ui-table.mjs.map +1 -1
- package/fesm2022/mk-kit-ui-testing.mjs +54 -0
- package/fesm2022/mk-kit-ui-testing.mjs.map +1 -1
- package/package.json +1 -1
- package/types/mk-kit-ui-core.d.ts +10 -0
- package/types/mk-kit-ui-directives.d.ts +12 -6
- package/types/mk-kit-ui-dnd.d.ts +32 -4
- package/types/mk-kit-ui-table.d.ts +234 -8
- package/types/mk-kit-ui-testing.d.ts +16 -0
package/README.md
CHANGED
|
@@ -176,6 +176,8 @@ modals, an Escape that closes only the topmost overlay, live-region
|
|
|
176
176
|
announcements for async state, contrast-checked tokens in both themes,
|
|
177
177
|
`prefers-reduced-motion` and `forced-colors` support. Axe runs over rendered
|
|
178
178
|
fixtures in the test suite; information is never conveyed by colour alone.
|
|
179
|
+
The [accessibility statement](https://mk-kit.dev/accessibility) lists what is
|
|
180
|
+
verified automatically and the known gaps.
|
|
179
181
|
|
|
180
182
|
## SSR & zoneless
|
|
181
183
|
|
|
@@ -1585,6 +1585,11 @@ const MK_DEFAULT_I18N = {
|
|
|
1585
1585
|
chartShare: 'Share',
|
|
1586
1586
|
chartLabel: 'Label',
|
|
1587
1587
|
qrCodeLabel: (text) => `QR code: ${text}`,
|
|
1588
|
+
sortableListLabel: 'Sortable list',
|
|
1589
|
+
filterColumn: (column) => `Filter ${column}`,
|
|
1590
|
+
clearFilter: (column) => `Clear filter for ${column}`,
|
|
1591
|
+
filterAny: 'All',
|
|
1592
|
+
filterMin: 'Min',
|
|
1588
1593
|
blockEditor: {
|
|
1589
1594
|
addBlock: 'Add block',
|
|
1590
1595
|
addFirstBlock: 'Add your first block',
|