1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 13:53:34 +00:00

Update npm minor (#5724)

* Update npm minor

* Do not update past prettier major version

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Matt Gibson <mgibson@bitwarden.com>
This commit is contained in:
renovate[bot]
2023-08-15 15:54:39 -04:00
committed by GitHub
parent 8593966a71
commit 7b4faeaaca
8 changed files with 4255 additions and 1961 deletions

View File

@@ -49,29 +49,29 @@
"dependencies": { "dependencies": {
"@koa/multer": "3.0.2", "@koa/multer": "3.0.2",
"@koa/router": "12.0.0", "@koa/router": "12.0.0",
"argon2": "0.30.3", "argon2": "0.31.0",
"big-integer": "1.6.51", "big-integer": "1.6.51",
"browser-hrtime": "1.1.8", "browser-hrtime": "1.1.8",
"chalk": "4.1.2", "chalk": "4.1.2",
"commander": "7.2.0", "commander": "7.2.0",
"form-data": "4.0.0", "form-data": "4.0.0",
"https-proxy-agent": "5.0.1", "https-proxy-agent": "5.0.1",
"inquirer": "8.2.5", "inquirer": "8.2.6",
"jsdom": "22.1.0", "jsdom": "22.1.0",
"jszip": "3.10.1", "jszip": "3.10.1",
"koa": "2.14.2", "koa": "2.14.2",
"koa-bodyparser": "4.4.0", "koa-bodyparser": "4.4.1",
"koa-json": "2.0.2", "koa-json": "2.0.2",
"lowdb": "1.0.0", "lowdb": "1.0.0",
"lunr": "2.3.9", "lunr": "2.3.9",
"multer": "1.4.5-lts.1", "multer": "1.4.5-lts.1",
"node-fetch": "2.6.11", "node-fetch": "2.6.12",
"node-forge": "1.3.1", "node-forge": "1.3.1",
"open": "8.4.2", "open": "8.4.2",
"papaparse": "5.4.1", "papaparse": "5.4.1",
"proper-lockfile": "4.1.2", "proper-lockfile": "4.1.2",
"rxjs": "7.8.1", "rxjs": "7.8.1",
"tldts": "6.0.5", "tldts": "6.0.14",
"zxcvbn": "4.4.2" "zxcvbn": "4.4.2"
} }
} }

View File

@@ -11,7 +11,7 @@
"author": "", "author": "",
"license": "GPL-3.0", "license": "GPL-3.0",
"devDependencies": { "devDependencies": {
"@napi-rs/cli": "2.16.1" "@napi-rs/cli": "2.16.2"
}, },
"napi": { "napi": {
"name": "desktop_native", "name": "desktop_native",

View File

@@ -19,7 +19,7 @@
}, },
"devDependencies": { "devDependencies": {
"@tsconfig/node16": "1.0.4", "@tsconfig/node16": "1.0.4",
"@types/node": "18.16.16", "@types/node": "18.17.5",
"@types/node-ipc": "9.2.0", "@types/node-ipc": "9.2.0",
"typescript": "4.7.4" "typescript": "4.7.4"
} }
@@ -99,9 +99,9 @@
"integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==" "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA=="
}, },
"node_modules/@types/node": { "node_modules/@types/node": {
"version": "18.16.16", "version": "18.17.5",
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.16.16.tgz", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.17.5.tgz",
"integrity": "sha512-NpaM49IGQQAUlBhHMF82QH80J08os4ZmyF9MkpCzWAGuOHqE4gTEbhzd7L3l5LmWuZ6E0OiC1FweQ4tsiW35+g==" "integrity": "sha512-xNbS75FxH6P4UXTPUJp/zNPq6/xsfdJKussCWNOnz4aULWIRwMgP1LgaB5RiBnMX1DPCYenuqGZfnIAx5mbFLA=="
}, },
"node_modules/@types/node-ipc": { "node_modules/@types/node-ipc": {
"version": "9.2.0", "version": "9.2.0",

View File

@@ -24,7 +24,7 @@
}, },
"devDependencies": { "devDependencies": {
"@tsconfig/node16": "1.0.4", "@tsconfig/node16": "1.0.4",
"@types/node": "18.16.16", "@types/node": "18.17.5",
"@types/node-ipc": "9.2.0", "@types/node-ipc": "9.2.0",
"typescript": "4.7.4" "typescript": "4.7.4"
}, },

View File

@@ -11,11 +11,7 @@
<td bitCell [ngClass]="RowHeightClass" class="tw-min-w-fit"> <td bitCell [ngClass]="RowHeightClass" class="tw-min-w-fit">
<app-vault-icon [cipher]="cipher"></app-vault-icon> <app-vault-icon [cipher]="cipher"></app-vault-icon>
</td> </td>
<td <td bitCell [ngClass]="RowHeightClass" class="tw-truncate">
bitCell
[ngClass]="RowHeightClass"
class="tw-overflow-hidden tw-text-ellipsis tw-whitespace-nowrap"
>
<div class="tw-inline-flex tw-w-full"> <div class="tw-inline-flex tw-w-full">
<button <button
bitLink bitLink

View File

@@ -47,7 +47,7 @@
<!-- The `fvw` class passes focus to `this.focusVisibleWithin$` --> <!-- The `fvw` class passes focus to `this.focusVisibleWithin$` -->
<!-- The following `class` field should match the `#isButton` class field below --> <!-- The following `class` field should match the `#isButton` class field below -->
<a <a
class="fvw tw-w-full tw-overflow-hidden tw-text-ellipsis tw-whitespace-nowrap tw-border-none tw-bg-transparent tw-p-0 tw-text-start !tw-text-alt2 hover:tw-text-alt2 hover:tw-no-underline focus:tw-outline-none [&>:not(.bwi)]:hover:tw-underline" class="fvw tw-w-full tw-truncate tw-border-none tw-bg-transparent tw-p-0 tw-text-start !tw-text-alt2 hover:tw-text-alt2 hover:tw-no-underline focus:tw-outline-none [&>:not(.bwi)]:hover:tw-underline"
[routerLink]="route" [routerLink]="route"
[attr.aria-label]="ariaLabel || text" [attr.aria-label]="ariaLabel || text"
routerLinkActive routerLinkActive
@@ -65,7 +65,7 @@
<!-- Class field should match `#isAnchor` class field above --> <!-- Class field should match `#isAnchor` class field above -->
<button <button
type="button" type="button"
class="fvw tw-w-full tw-overflow-hidden tw-text-ellipsis tw-whitespace-nowrap tw-border-none tw-bg-transparent tw-p-0 tw-text-start !tw-text-alt2 hover:tw-text-alt2 hover:tw-no-underline focus:tw-outline-none [&>:not(.bwi)]:hover:tw-underline" class="fvw tw-w-full tw-truncate tw-border-none tw-bg-transparent tw-p-0 tw-text-start !tw-text-alt2 hover:tw-text-alt2 hover:tw-no-underline focus:tw-outline-none [&>:not(.bwi)]:hover:tw-underline"
(click)="mainContentClicked.emit()" (click)="mainContentClicked.emit()"
> >
<ng-container *ngTemplateOutlet="anchorAndButtonContent"></ng-container> <ng-container *ngTemplateOutlet="anchorAndButtonContent"></ng-container>

6080
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -34,56 +34,56 @@
"libs/*" "libs/*"
], ],
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "15.2.8", "@angular-devkit/build-angular": "15.2.9",
"@angular-eslint/eslint-plugin": "15.2.1", "@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1", "@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/template-parser": "15.2.1", "@angular-eslint/template-parser": "15.2.1",
"@angular/cli": "15.2.8", "@angular/cli": "15.2.9",
"@angular/compiler-cli": "15.2.9", "@angular/compiler-cli": "15.2.9",
"@angular/elements": "15.2.9", "@angular/elements": "15.2.9",
"@compodoc/compodoc": "1.1.21", "@compodoc/compodoc": "1.1.21",
"@electron/notarize": "1.2.3", "@electron/notarize": "1.2.4",
"@electron/rebuild": "3.2.13", "@electron/rebuild": "3.2.13",
"@fluffy-spoon/substitute": "1.208.0", "@fluffy-spoon/substitute": "1.208.0",
"@ngtools/webpack": "15.2.8", "@ngtools/webpack": "15.2.9",
"@storybook/addon-a11y": "7.2.2", "@storybook/addon-a11y": "7.3.0",
"@storybook/addon-actions": "7.2.2", "@storybook/addon-actions": "7.3.0",
"@storybook/addon-designs": "7.0.4", "@storybook/addon-designs": "7.0.4",
"@storybook/addon-essentials": "7.2.2", "@storybook/addon-essentials": "7.3.0",
"@storybook/addon-links": "7.2.2", "@storybook/addon-links": "7.3.0",
"@storybook/angular": "7.2.2", "@storybook/angular": "7.3.0",
"@types/argon2-browser": "1.18.1", "@types/argon2-browser": "1.18.1",
"@types/chrome": "0.0.237", "@types/chrome": "0.0.243",
"@types/duo_web_sdk": "2.7.1", "@types/duo_web_sdk": "2.7.1",
"@types/firefox-webext-browser": "111.0.1", "@types/firefox-webext-browser": "111.0.1",
"@types/inquirer": "8.2.6", "@types/inquirer": "8.2.6",
"@types/jest": "29.5.2", "@types/jest": "29.5.3",
"@types/jquery": "3.5.16", "@types/jquery": "3.5.16",
"@types/jsdom": "21.1.1", "@types/jsdom": "21.1.1",
"@types/koa": "2.13.6", "@types/koa": "2.13.8",
"@types/koa__multer": "2.0.4", "@types/koa__multer": "2.0.4",
"@types/koa__router": "12.0.0", "@types/koa__router": "12.0.0",
"@types/koa-bodyparser": "4.3.7", "@types/koa-bodyparser": "4.3.7",
"@types/koa-json": "2.0.20", "@types/koa-json": "2.0.20",
"@types/lowdb": "1.0.11", "@types/lowdb": "1.0.11",
"@types/lunr": "2.3.4", "@types/lunr": "2.3.4",
"@types/node": "18.16.16", "@types/node": "18.17.5",
"@types/node-fetch": "2.6.4", "@types/node-fetch": "2.6.4",
"@types/node-forge": "1.3.2", "@types/node-forge": "1.3.4",
"@types/node-ipc": "9.2.0", "@types/node-ipc": "9.2.0",
"@types/papaparse": "5.3.7", "@types/papaparse": "5.3.7",
"@types/proper-lockfile": "4.1.2", "@types/proper-lockfile": "4.1.2",
"@types/react": "16.14.42", "@types/react": "16.14.45",
"@types/retry": "0.12.2", "@types/retry": "0.12.2",
"@types/zxcvbn": "4.4.1", "@types/zxcvbn": "4.4.1",
"@typescript-eslint/eslint-plugin": "5.59.8", "@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.59.8", "@typescript-eslint/parser": "5.62.0",
"autoprefixer": "10.4.14", "autoprefixer": "10.4.15",
"base64-loader": "1.0.0", "base64-loader": "1.0.0",
"buffer": "6.0.3", "buffer": "6.0.3",
"chromatic": "6.18.0", "chromatic": "6.22.0",
"clean-webpack-plugin": "4.0.0", "clean-webpack-plugin": "4.0.0",
"concurrently": "8.1.0", "concurrently": "8.2.0",
"copy-webpack-plugin": "11.0.0", "copy-webpack-plugin": "11.0.0",
"cross-env": "7.0.3", "cross-env": "7.0.3",
"css-loader": "6.8.1", "css-loader": "6.8.1",
@@ -94,33 +94,33 @@
"electron-reload": "2.0.0-alpha.1", "electron-reload": "2.0.0-alpha.1",
"electron-store": "8.1.0", "electron-store": "8.1.0",
"electron-updater": "5.3.0", "electron-updater": "5.3.0",
"eslint": "8.42.0", "eslint": "8.47.0",
"eslint-config-prettier": "8.8.0", "eslint-config-prettier": "8.10.0",
"eslint-import-resolver-typescript": "3.5.5", "eslint-import-resolver-typescript": "3.6.0",
"eslint-plugin-import": "2.27.5", "eslint-plugin-import": "2.28.0",
"eslint-plugin-rxjs": "5.0.3", "eslint-plugin-rxjs": "5.0.3",
"eslint-plugin-rxjs-angular": "2.0.1", "eslint-plugin-rxjs-angular": "2.0.1",
"eslint-plugin-storybook": "0.6.13", "eslint-plugin-storybook": "0.6.13",
"eslint-plugin-tailwindcss": "3.12.1", "eslint-plugin-tailwindcss": "3.13.0",
"gulp": "4.0.2", "gulp": "4.0.2",
"gulp-filter": "7.0.0", "gulp-filter": "7.0.0",
"gulp-if": "3.0.0", "gulp-if": "3.0.0",
"gulp-json-editor": "2.5.6", "gulp-json-editor": "2.5.7",
"gulp-replace": "1.1.4", "gulp-replace": "1.1.4",
"gulp-zip": "5.1.0", "gulp-zip": "5.1.0",
"html-loader": "4.2.0", "html-loader": "4.2.0",
"html-webpack-injector": "1.1.4", "html-webpack-injector": "1.1.4",
"html-webpack-plugin": "5.5.1", "html-webpack-plugin": "5.5.3",
"husky": "8.0.3", "husky": "8.0.3",
"jest-junit": "16.0.0", "jest-junit": "16.0.0",
"jest-mock-extended": "3.0.4", "jest-mock-extended": "3.0.5",
"jest-preset-angular": "13.1.1", "jest-preset-angular": "13.1.1",
"lint-staged": "13.2.2", "lint-staged": "13.3.0",
"mini-css-extract-plugin": "2.7.6", "mini-css-extract-plugin": "2.7.6",
"node-ipc": "9.2.1", "node-ipc": "9.2.1",
"pkg": "5.8.1", "pkg": "5.8.1",
"postcss": "8.4.24", "postcss": "8.4.27",
"postcss-loader": "7.3.2", "postcss-loader": "7.3.3",
"prettier": "2.8.8", "prettier": "2.8.8",
"prettier-plugin-tailwindcss": "0.3.0", "prettier-plugin-tailwindcss": "0.3.0",
"process": "0.11.10", "process": "0.11.10",
@@ -129,22 +129,22 @@
"regedit": "^3.0.3", "regedit": "^3.0.3",
"remark-gfm": "3.0.1", "remark-gfm": "3.0.1",
"rimraf": "5.0.1", "rimraf": "5.0.1",
"sass": "1.62.1", "sass": "1.65.1",
"sass-loader": "13.3.1", "sass-loader": "13.3.2",
"storybook": "7.2.2", "storybook": "7.3.0",
"style-loader": "3.3.3", "style-loader": "3.3.3",
"tailwindcss": "3.3.2", "tailwindcss": "3.3.3",
"ts-jest": "29.1.0", "ts-jest": "29.1.1",
"ts-loader": "9.4.3", "ts-loader": "9.4.4",
"tsconfig-paths-webpack-plugin": "4.0.1", "tsconfig-paths-webpack-plugin": "4.1.0",
"type-fest": "2.19.0", "type-fest": "2.19.0",
"typescript": "4.9.5", "typescript": "4.9.5",
"url": "0.11.0", "url": "0.11.1",
"util": "0.12.5", "util": "0.12.5",
"wait-on": "7.0.1", "wait-on": "7.0.1",
"webpack": "5.85.0", "webpack": "5.88.2",
"webpack-cli": "5.1.3", "webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.0", "webpack-dev-server": "4.15.1",
"webpack-node-externals": "3.0.0" "webpack-node-externals": "3.0.0"
}, },
"dependencies": { "dependencies": {
@@ -159,35 +159,35 @@
"@angular/router": "15.2.9", "@angular/router": "15.2.9",
"@koa/multer": "3.0.2", "@koa/multer": "3.0.2",
"@koa/router": "12.0.0", "@koa/router": "12.0.0",
"@microsoft/signalr": "6.0.16", "@microsoft/signalr": "6.0.21",
"@microsoft/signalr-protocol-msgpack": "6.0.16", "@microsoft/signalr-protocol-msgpack": "6.0.21",
"@ng-select/ng-select": "10.0.4", "@ng-select/ng-select": "10.0.4",
"argon2": "0.30.3", "argon2": "0.31.0",
"argon2-browser": "1.18.0", "argon2-browser": "1.18.0",
"big-integer": "1.6.51", "big-integer": "1.6.51",
"bootstrap": "4.6.0", "bootstrap": "4.6.0",
"braintree-web-drop-in": "1.38.0", "braintree-web-drop-in": "1.40.0",
"bufferutil": "4.0.7", "bufferutil": "4.0.7",
"chalk": "4.1.2", "chalk": "4.1.2",
"commander": "7.2.0", "commander": "7.2.0",
"core-js": "3.30.2", "core-js": "3.32.0",
"date-input-polyfill": "2.14.0", "date-input-polyfill": "2.14.0",
"duo_web_sdk": "github:duosecurity/duo_web_sdk", "duo_web_sdk": "github:duosecurity/duo_web_sdk",
"form-data": "4.0.0", "form-data": "4.0.0",
"https-proxy-agent": "5.0.1", "https-proxy-agent": "5.0.1",
"inquirer": "8.2.5", "inquirer": "8.2.6",
"jquery": "3.7.0", "jquery": "3.7.0",
"jsdom": "22.1.0", "jsdom": "22.1.0",
"jszip": "3.10.1", "jszip": "3.10.1",
"koa": "2.14.2", "koa": "2.14.2",
"koa-bodyparser": "4.4.0", "koa-bodyparser": "4.4.1",
"koa-json": "2.0.2", "koa-json": "2.0.2",
"lowdb": "1.0.0", "lowdb": "1.0.0",
"lunr": "2.3.9", "lunr": "2.3.9",
"multer": "1.4.5-lts.1", "multer": "1.4.5-lts.1",
"ngx-infinite-scroll": "15.0.0", "ngx-infinite-scroll": "15.0.0",
"ngx-toastr": "16.2.0", "ngx-toastr": "16.2.0",
"node-fetch": "2.6.11", "node-fetch": "2.6.12",
"node-forge": "1.3.1", "node-forge": "1.3.1",
"nord": "0.2.1", "nord": "0.2.1",
"open": "8.4.2", "open": "8.4.2",
@@ -198,7 +198,7 @@
"qrious": "4.0.2", "qrious": "4.0.2",
"rxjs": "7.8.1", "rxjs": "7.8.1",
"sweetalert2": "10.16.11", "sweetalert2": "10.16.11",
"tldts": "6.0.5", "tldts": "6.0.14",
"utf-8-validate": "5.0.10", "utf-8-validate": "5.0.10",
"zone.js": "0.12.0", "zone.js": "0.12.0",
"zxcvbn": "4.4.2" "zxcvbn": "4.4.2"
@@ -211,7 +211,7 @@
"replacestream": "4.0.3" "replacestream": "4.0.3"
}, },
"resolutions": { "resolutions": {
"@types/react": "16.14.42" "@types/react": "16.14.45"
}, },
"lint-staged": { "lint-staged": {
"*": "prettier --cache --ignore-unknown --write", "*": "prettier --cache --ignore-unknown --write",