Skip to content

Commit b9c4f33

Browse files
committed
feat: core version upgrade
1 parent 75ef07c commit b9c4f33

3 files changed

Lines changed: 138 additions & 16 deletions

File tree

package-lock.json

Lines changed: 133 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@
108108
"@revolist/stencil-vue2-output-target": "^0.0.6",
109109
"@revolist/svelte-output-target": "0.0.5",
110110
"@stencil/angular-output-target": "0.8.4",
111-
"@stencil/core": "4.23.0",
111+
"@stencil/core": "4.29.2",
112112
"@stencil/react-output-target": "0.5.3",
113113
"@stencil/sass": "^3.0.12",
114-
"@stencil/store": "^2.0.16",
114+
"@stencil/store": "^2.1.2",
115115
"@stencil/vue-output-target": "^0.8.9",
116116
"@types/events": "^3.0.3",
117117
"@types/jest": "^29.5.12",

src/plugins/wcag/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,16 @@ export class WCAGPlugin extends BasePlugin {
5454
const result = columnProperties?.(...args) || {};
5555

5656
result.role = 'columnheader';
57-
result['aria-colindex'] = index;
57+
result['aria-colindex'] = `${index}`;
5858

5959
return result;
6060
};
6161

6262
column.cellProperties = (...args) => {
6363
const wcagProps: CellProps = {
6464
['role']: 'gridcell',
65-
['aria-colindex']: index,
66-
['aria-rowindex']: args[0].rowIndex,
65+
['aria-colindex']: `${index}`,
66+
['aria-rowindex']: `${args[0].rowIndex}`,
6767
['tabindex']: -1,
6868
};
6969
const columnProps: CellProps = cellProperties?.(...args) || {};

0 commit comments

Comments
 (0)