@lytjs/ui 6.6.0 → 6.8.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/dist/index.cjs CHANGED
@@ -1379,7 +1379,7 @@ var Table = component.defineComponent({
1379
1379
  vdom.createVNode("th", { class: "lyt-table__cell--selection" }, [
1380
1380
  vdom.createVNode(
1381
1381
  "input",
1382
- commonA11y.mergeA11yProps(getInputControlA11yProps({ ariaLabel: "\u5168\u9009" }), {
1382
+ commonA11y.mergeA11yProps(commonA11y.getInputControlA11yProps({ ariaLabel: "\u5168\u9009" }), {
1383
1383
  type: "checkbox",
1384
1384
  checked: allSelected(),
1385
1385
  onChange: (e) => handleSelectAll(e.target.checked)
@@ -1424,7 +1424,7 @@ var Table = component.defineComponent({
1424
1424
  vdom.createVNode("td", { class: "lyt-table__cell--selection" }, [
1425
1425
  vdom.createVNode(
1426
1426
  "input",
1427
- commonA11y.mergeA11yProps(getInputControlA11yProps({ ariaLabel: "\u9009\u62E9\u884C" }), {
1427
+ commonA11y.mergeA11yProps(commonA11y.getInputControlA11yProps({ ariaLabel: "\u9009\u62E9\u884C" }), {
1428
1428
  type: "checkbox",
1429
1429
  checked: selectedRows().has(row),
1430
1430
  onChange: (e) => handleRowSelect(row, e.target.checked)