Skip to content

Commit 917a5e0

Browse files
authored
Merge branch 'master' into rkaraivanov/root-click-controller-keep-interaction-start
2 parents ed7beb5 + 9397594 commit 917a5e0

File tree

9 files changed

+717
-128
lines changed

9 files changed

+717
-128
lines changed

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ body:
2020
- Calendar
2121
- Card
2222
- Carousel
23+
- Chat
2324
- Chip
2425
- Checkbox / Switch
2526
- Combo

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
strategy:
2020
matrix:
21-
node-version: [20.x, 22.x]
21+
node-version: [22.x, 24.x]
2222
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2323

2424
steps:
@@ -34,7 +34,7 @@ jobs:
3434
- run: npm run test
3535
- run: npm run check
3636
- name: Publish to coveralls.io
37-
if: matrix.node-version == '20.x'
37+
if: matrix.node-version == '22.x'
3838
uses: coverallsapp/github-action@v2
3939
with:
4040
github-token: ${{ github.token }}

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-node@v4
1515
with:
16-
node-version: '20'
16+
node-version: '22'
1717
cache: 'npm'
1818
registry-url: 'https://registry.npmjs.org'
1919
- run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV

package-lock.json

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

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"lit": "^3.3.1"
6161
},
6262
"devDependencies": {
63-
"@biomejs/biome": "~2.3.6",
63+
"@biomejs/biome": "~2.3.7",
6464
"@custom-elements-manifest/analyzer": "^0.11.0",
6565
"@igniteui/material-icons-extended": "^3.1.0",
6666
"@open-wc/testing": "^4.0.0",
@@ -82,20 +82,20 @@
8282
"husky": "^9.1.7",
8383
"ig-typedoc-theme": "^7.0.0",
8484
"igniteui-i18n-resources": "0.7.0-alpha.8",
85-
"igniteui-theming": "^23.2.0",
85+
"igniteui-theming": "^24.0.0",
8686
"keep-a-changelog": "^2.7.1",
8787
"lint-staged": "^16.2.7",
8888
"lit-analyzer": "^2.0.3",
8989
"madge": "^8.0.0",
9090
"node-watch": "^0.7.4",
91-
"playwright": "^1.56.1",
91+
"playwright": "^1.57.0",
9292
"postcss": "^8.5.6",
9393
"prettier": "^3.6.2",
9494
"rimraf": "^6.1.2",
9595
"sass-embedded": "~1.93.3",
9696
"sinon": "^21.0.0",
9797
"storybook": "^10.0.8",
98-
"stylelint": "^16.25.0",
98+
"stylelint": "^16.26.0",
9999
"stylelint-config-standard-scss": "^16.0.0",
100100
"stylelint-prettier": "^5.0.3",
101101
"stylelint-scss": "^6.12.1",

src/components/mask-input/mask-input-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export abstract class IgcMaskInputBaseComponent extends IgcInputBaseComponent {
8888
if (isComposing) return;
8989
return this._updateInput('', {
9090
start: this._parser.getPreviousNonLiteralPosition(
91-
this._inputSelection.start
91+
this._inputSelection.start + 1
9292
),
9393
end,
9494
});

0 commit comments

Comments
 (0)