Skip to content

Commit 7ba1e0f

Browse files
authored
Merge branch 'master' into simeonoff/improve-spacing
2 parents aef3ec1 + 2fbd9c5 commit 7ba1e0f

File tree

16 files changed

+171
-105
lines changed

16 files changed

+171
-105
lines changed

package-lock.json

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

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@
6262
"@custom-elements-manifest/analyzer": "^0.10.4",
6363
"@igniteui/material-icons-extended": "^3.1.0",
6464
"@open-wc/testing": "^4.0.0",
65-
"@storybook/addon-a11y": "^9.1.0",
66-
"@storybook/addon-docs": "^9.1.0",
67-
"@storybook/addon-links": "^9.1.0",
68-
"@storybook/web-components-vite": "^9.1.0",
65+
"@storybook/addon-a11y": "^9.1.1",
66+
"@storybook/addon-docs": "^9.1.1",
67+
"@storybook/addon-links": "^9.1.1",
68+
"@storybook/web-components-vite": "^9.1.1",
6969
"@types/mocha": "^10.0.10",
7070
"@web/dev-server-esbuild": "^1.0.4",
7171
"@web/test-runner": "^0.20.2",
@@ -81,7 +81,7 @@
8181
"ig-typedoc-theme": "^6.2.3",
8282
"igniteui-theming": "^19.2.3",
8383
"keep-a-changelog": "^2.6.2",
84-
"lint-staged": "^16.1.2",
84+
"lint-staged": "^16.1.4",
8585
"lit-analyzer": "^2.0.3",
8686
"madge": "^8.0.0",
8787
"node-watch": "^0.7.4",
@@ -91,7 +91,7 @@
9191
"rimraf": "^6.0.1",
9292
"sass-embedded": "~1.78.0",
9393
"sinon": "^21.0.0",
94-
"storybook": "^9.1.0",
94+
"storybook": "^9.1.1",
9595
"stylelint": "^16.23.0",
9696
"stylelint-config-standard-scss": "^15.0.1",
9797
"stylelint-prettier": "^5.0.3",
@@ -101,7 +101,7 @@
101101
"typedoc": "~0.27.9",
102102
"typedoc-plugin-localization": "^3.0.6",
103103
"typescript": "^5.8.3",
104-
"vite": "^7.0.6"
104+
"vite": "^7.1.0"
105105
},
106106
"browserslist": [
107107
"defaults"

src/components/accordion/accordion.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,7 @@ export default class IgcAccordionComponent extends LitElement {
5454

5555
addSafeEventListener(this, 'igcOpening' as any, this.handlePanelOpening);
5656

57-
addKeybindings(this, {
58-
skip: this.skipKeybinding,
59-
bindingDefaults: { preventDefault: true },
60-
})
57+
addKeybindings(this, { skip: this.skipKeybinding })
6158
.set(homeKey, () =>
6259
this.getPanelHeader(first(this.enabledPanels)).focus()
6360
)

src/components/calendar/days-view/days-view.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,7 @@ export default class IgcDaysViewComponent extends EventEmitterMixin<
140140
super();
141141

142142
addThemingController(this, all);
143-
144-
addKeybindings(this, {
145-
bindingDefaults: { preventDefault: true },
146-
}).setActivateHandler(this.handleInteraction);
147-
143+
addKeybindings(this).setActivateHandler(this.handleInteraction);
148144
addSafeEventListener(this, 'click', this.handleInteraction);
149145
}
150146

0 commit comments

Comments
 (0)