Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency jquery to v3.7.1 (23_2) - abandoned #25660

Merged
merged 7 commits into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
}
}