Skip to content

Commit a399717

Browse files
authored
Merge branch 'master' into didimmova/fix-filtering-row-mask
2 parents 3422c94 + d665827 commit a399717

37 files changed

Lines changed: 536 additions & 207 deletions

.github/workflows/npm-publish.yml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: actions/setup-node@v4
1616
with:
17-
node-version: 22
17+
node-version: '22.22.1' # Specifically avoid 22.22.2 due to a regression with npm latest
1818
cache: 'npm'
1919
registry-url: 'https://registry.npmjs.org'
2020

@@ -87,3 +87,25 @@ jobs:
8787
- name: Publish igniteui-angular-extras
8888
run: npm publish --tag ${NPM_TAG}
8989
working-directory: dist/igniteui-angular-extras
90+
91+
dispatch-api-update:
92+
needs: build
93+
runs-on: ubuntu-latest
94+
steps:
95+
- name: Get app token
96+
id: app-token
97+
uses: actions/create-github-app-token@v2
98+
with:
99+
app-id: ${{ secrets.IGNITEUI_GITHUB_APP_ID }}
100+
private-key: ${{ secrets.IGNITEUI_GITHUB_APP_PRIVATE_KEY }}
101+
owner: IgniteUI
102+
- name: Trigger API update workflow
103+
uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697
104+
with:
105+
token: ${{ steps.app-token.outputs.token }}
106+
repository: IgniteUI/igniteui-angular-api-i18n
107+
event-type: api-update
108+
client-payload: |
109+
{
110+
"release_tag": "${{ github.event.release.tag_name }}"
111+
}

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
"igniteui-angular-charts": "^21.0.0",
134134
"igniteui-angular-core": "^21.0.0",
135135
"igniteui-dockmanager": "^1.17.0",
136-
"igniteui-grid-lite": "^0.6.0",
136+
"igniteui-grid-lite": "~0.7.1",
137137
"igniteui-i18n-resources": "^1.0.2",
138138
"igniteui-sassdoc-theme": "^2.1.0",
139139
"igniteui-webcomponents": "^7.0.0",

projects/igniteui-angular/core/src/core/styles/components/splitter/_splitter-component.scss

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
@extend %igx-splitter-base !optional;
1717

1818
@include b(#{$this}-bar-host) {
19-
&:focus {
19+
&:focus-visible {
2020
@extend %igx-splitter-bar--focus !optional;
2121
}
2222
}
@@ -39,9 +39,35 @@
3939
@extend %igx-splitter-expander--end !optional;
4040
}
4141

42+
&:active {
43+
@extend %igx-splitter-bar--active !optional;
44+
45+
@include e(handle) {
46+
@extend %igx-splitter-handle--active !optional;
47+
}
48+
49+
@include e(expander, 'start') {
50+
@extend %igx-splitter-expander--start--active !optional;
51+
}
52+
53+
@include e(expander, 'end') {
54+
@extend %igx-splitter-expander--end--active !optional;
55+
}
56+
}
57+
4258
@include m('vertical') {
4359
@extend %igx-splitter-bar--vertical !optional;
4460

61+
&:active {
62+
@include e(expander, 'start') {
63+
@extend %igx-splitter-expander--start-vertical--active !optional;
64+
}
65+
66+
@include e(expander, 'end') {
67+
@extend %igx-splitter-expander--end-vertical--active !optional;
68+
}
69+
}
70+
4571
@include e(handle) {
4672
@extend %igx-splitter-handle !optional;
4773
@extend %igx-splitter-handle--vertical !optional;

0 commit comments

Comments
 (0)