Skip to content

Commit

Permalink
chore(deps): update dependency jquery to v3.7.1 (23_2) (#25660)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Roman Semenov <roman.semenov@devexpress.com>
Co-authored-by: Alexander Bulychev <git@bulychev.net>
  • Loading branch information
3 people authored Dec 4, 2023
1 parent 71e2924 commit 4986774
Show file tree
Hide file tree
Showing 9 changed files with 205 additions and 212 deletions.
357 changes: 175 additions & 182 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions packages/devextreme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"@testcafe-community/axe": "3.5.0",
"@types/enzyme": "3.10.16",
"@types/jest": "24.9.1",
"@types/jquery": "2.0.66",
"@types/jquery": "3.5.22",
"@types/react": "16.14.34",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/experimental-utils": "5.48.0",
Expand Down Expand Up @@ -128,7 +128,7 @@
"intl": "1.2.5",
"jest": "26.6.3",
"jest-each": "26.6.2",
"jquery": "3.6.3",
"jquery": "3.7.1",
"jquery.tmpl": "0.0.2",
"jspdf": "2.5.1",
"jspdf-autotable": "3.5.28",
Expand Down Expand Up @@ -211,7 +211,7 @@
"update-ts-bundle": "dx-tools generate-ts-bundle --sources ./js --output-path ./ts/dx.all.d.ts --exclude js/renovation/",
"regenerate": "npm run update-ts-bundle && npm run update-ts-reexports",
"validate-ts": "gulp validate-ts",
"validate-declarations": "dx-tools validate-declarations --sources ./js --exclude \"js/(renovation|__internal|.eslintrc.js)\"",
"validate-declarations": "dx-tools validate-declarations --sources ./js --exclude \"js/(renovation|__internal|.eslintrc.js)\" --compiler-options \"{ \\\"typeRoots\\\": [] }\"",
"testcafe-in-docker": "docker build -f ./testing/testcafe/docker/Dockerfile -t testcafe-testing . && docker run -it testcafe-testing",
"test-testcafe": "node ./testing/testcafe/runner",
"test-testcafe-inprogress": "node ./testing/testcafe/runner --meta=renovation",
Expand Down
14 changes: 7 additions & 7 deletions packages/devextreme/testing/bundlers/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/devextreme/testing/bundlers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"cross-env": "7.0.3",
"devextreme-cldr-data": "1.0.3",
"globalize": "1.7.0",
"jquery": "3.6.3",
"jquery": "3.7.1",
"minimist": "1.2.7",
"parcel": "2.8.2",
"rimraf": "3.0.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ safeSizeTest('The master detail row should display correctly when renderAsync, v
dataGrid._getTemplate = () => ({
render(options) {
setTimeout(() => {
if ($(options.container).closest(document).length) {
if ($(options.container).closest(document as any).length) {
$(options.container).append($('<div/>').html(`
<p>${options.model.data.id}</p>
<p>${options.model.data.text}</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5909,7 +5909,7 @@ QUnit.module('focus policy', {
assert.strictEqual(focusStub.callCount, 1, 'FocusIn event has not been triggered');
assert.strictEqual(blurStub.callCount, 0, 'FocusOut event has not been triggered');

actionButton.focus();
$(actionButton.element()).trigger('click');
assert.strictEqual(focusStub.callCount, 1, 'new FocusIn event has not been triggered');
assert.strictEqual(blurStub.callCount, 0, 'FocusOut event has not been triggered');
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ QUnit.module('general', {}, () => {
assert.strictEqual(focusStub.callCount, 1, 'FocusIn event has been triggered');
assert.strictEqual(blurStub.callCount, 0, 'FocusOut event has not been triggered');

actionButton.focus();
$(actionButton.element()).trigger('click');
assert.ok($textEditor.hasClass('dx-state-focused'), 'input is still focused');
assert.strictEqual(focusStub.callCount, 1, 'new FocusIn event has not been triggered');
assert.strictEqual(blurStub.callCount, 0, 'FocusOut event has not been triggered');
Expand Down
28 changes: 14 additions & 14 deletions packages/devextreme/testing/typescript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/devextreme/testing/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"@angular/common": "^11.2.14"
},
"devDependencies": {
"jquery": "3.6.3",
"@types/jquery": "3.5.16"
"jquery": "3.7.1",
"@types/jquery": "3.5.22"
}
}

0 comments on commit 4986774

Please sign in to comment.