Skip to content

Commit 0c91fbe

Browse files
build(deps-dev): bump the npm-deps group with 8 updates (#5899)
* build(deps-dev): bump the npm-deps group with 8 updates Bumps the npm-deps group with 8 updates: | Package | From | To | | --- | --- | --- | | [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) | `0.0.289` | `0.0.293` | | [eslint](https://github.com/eslint/eslint) | `9.17.0` | `9.18.0` | | [puppeteer](https://github.com/puppeteer/puppeteer) | `23.11.1` | `24.0.0` | | [stylelint](https://github.com/stylelint/stylelint) | `16.12.0` | `16.13.0` | | [stylelint-config-standard](https://github.com/stylelint/stylelint-config-standard) | `36.0.1` | `37.0.0` | | [typescript](https://github.com/microsoft/TypeScript) | `5.7.2` | `5.7.3` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.19.0` | `8.19.1` | | [undici-types](https://github.com/nodejs/undici) | `7.2.0` | `7.2.1` | Updates `@types/chrome` from 0.0.289 to 0.0.293 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chrome) Updates `eslint` from 9.17.0 to 9.18.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](eslint/eslint@v9.17.0...v9.18.0) Updates `puppeteer` from 23.11.1 to 24.0.0 - [Release notes](https://github.com/puppeteer/puppeteer/releases) - [Changelog](https://github.com/puppeteer/puppeteer/blob/main/CHANGELOG.md) - [Commits](puppeteer/puppeteer@puppeteer-v23.11.1...puppeteer-v24.0.0) Updates `stylelint` from 16.12.0 to 16.13.0 - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](stylelint/stylelint@16.12.0...16.13.0) Updates `stylelint-config-standard` from 36.0.1 to 37.0.0 - [Release notes](https://github.com/stylelint/stylelint-config-standard/releases) - [Changelog](https://github.com/stylelint/stylelint-config-standard/blob/main/CHANGELOG.md) - [Commits](stylelint/stylelint-config-standard@36.0.1...37.0.0) Updates `typescript` from 5.7.2 to 5.7.3 - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](microsoft/TypeScript@v5.7.2...v5.7.3) Updates `typescript-eslint` from 8.19.0 to 8.19.1 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.19.1/packages/typescript-eslint) Updates `undici-types` from 7.2.0 to 7.2.1 - [Release notes](https://github.com/nodejs/undici/releases) - [Commits](nodejs/undici@v7.2.0...v7.2.1) --- updated-dependencies: - dependency-name: "@types/chrome" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-deps - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-deps - dependency-name: puppeteer dependency-type: direct:development update-type: version-update:semver-major dependency-group: npm-deps - dependency-name: stylelint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-deps - dependency-name: stylelint-config-standard dependency-type: direct:development update-type: version-update:semver-major dependency-group: npm-deps - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-deps - dependency-name: typescript-eslint dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-deps - dependency-name: undici-types dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-deps ... Signed-off-by: dependabot[bot] <[email protected]> * fix * css fix --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roma Sosnovsky <[email protected]>
1 parent 7adc496 commit 0c91fbe

File tree

7 files changed

+278
-196
lines changed

7 files changed

+278
-196
lines changed

extension/chrome/elements/compose-modules/compose-quote-module.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,12 @@ export class ComposeQuoteModule extends ViewModule<ComposeView> {
8787
const decoded = await Mime.decode(Buf.fromBase64UrlStr(raw));
8888
const headers = {
8989
subject: decoded.subject,
90-
date: String(decoded.headers.date),
90+
date: decoded.headers.date as string,
9191
from: decoded.from,
9292
to: decoded.to,
9393
cc: decoded.cc,
94-
references: String(decoded.headers.references || ''),
95-
'message-id': String(decoded.headers['message-id'] || ''),
94+
references: (decoded.headers.references as string) || '',
95+
'message-id': (decoded.headers['message-id'] as string) || '',
9696
};
9797
const message = decoded.rawSignedContent ? await Mime.process(Buf.fromUtfStr(decoded.rawSignedContent)) : Mime.processDecoded(decoded);
9898
const readableBlockTypes = ['encryptedMsg', 'plainText', 'plainHtml', 'signedMsg'];

extension/chrome/popups/default.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<link rel="stylesheet" href="/css/browser-popup.css" />
1212
</head>
1313

14-
<body style="zoom: reset">
14+
<body style="zoom: 1">
1515
<div id="set_up_account" style="display: none; width: 156px; padding: 1px">
1616
<span class="button green action_set_up_account">Setup FlowCrypt</span>
1717
</div>

extension/css/cryptup.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3321,7 +3321,7 @@ body#select_account {
33213321
width: 340px;
33223322
padding: 0;
33233323
font-size: 14px;
3324-
zoom: reset;
3324+
zoom: 1;
33253325
}
33263326

33273327
body#select_account #title {
@@ -3362,7 +3362,6 @@ body#select_account .emails li a {
33623362
text-transform: none;
33633363
color: #337ab7;
33643364
transition: 0.5s;
3365-
letter-spacing: 0.35;
33663365
font-weight: 600;
33673366
}
33683367

extension/css/settings.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ a.gray_link {
124124
cursor: pointer;
125125
height: auto;
126126
border: 1px solid #f3f3f3;
127-
letter-spacing: 0.35;
128127
}
129128

130129
#alt-accounts.accounts-row .row.alt-accounts .contains_email {

extension/js/common/core/mime.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ export class Mime {
228228
}
229229
}
230230
const headers = Mime.headerGetAddress(mimeContent, ['from', 'to', 'cc', 'bcc']);
231-
mimeContent.subject = String(mimeContent.subject || mimeContent.headers.subject || '');
231+
mimeContent.subject = mimeContent.subject || (mimeContent.headers.subject as string) || '';
232232
mimeContent = Object.assign(mimeContent, headers);
233233
resolve(mimeContent);
234234
} catch (e) {

0 commit comments

Comments
 (0)