1
0
mirror of https://github.com/XFox111/TabsAsideExtension.git synced 2026-07-02 19:52:47 +03:00

Compare commits

...

4 Commits

Author SHA1 Message Date
dependabot[bot] 1e8cf0bb9c Bump @types/react from 19.2.16 to 19.2.17 in the react group
Bumps the react group with 1 update: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react).


Updates `@types/react` from 19.2.16 to 19.2.17
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

---
updated-dependencies:
- dependency-name: "@types/react"
  dependency-version: 19.2.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: react
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-07-01 03:55:38 +00:00
xfox111 2b7171805c build: add allowScripts to package.json 2026-06-04 16:10:33 +12:00
xfox111 7158e0cbad fix: make startup dialogs harder to accidentally dismiss 2026-06-04 16:10:03 +12:00
xfox111 ff96b3de99 docs: issue templates update 2026-06-04 16:08:55 +12:00
6 changed files with 16 additions and 8 deletions
+3 -1
View File
@@ -15,7 +15,7 @@ body:
attributes:
label: Description
description: A clear and concise description of what the bug is.
placeholder: e.g. Sometimes when generating a password not all character sets are included
placeholder: e.g. Sometimes clicking on the extension icon doesn't open the side panel
validations:
required: true
@@ -105,3 +105,5 @@ body:
required: true
- label: The provided reproduction is a minimal reproducible example of the bug.
required: true
- label: This issue was written in English.
required: true
@@ -60,3 +60,5 @@ body:
options:
- label: Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
required: true
- label: This issue was written in English.
required: true
@@ -11,7 +11,7 @@ export default function useSettingsReviewDialog(dialog: DialogContextType): Prom
if (needsReview.length > 0)
dialog.pushCustom(
<SettingsReviewDialog />,
undefined,
"alert",
() =>
{
settingsForReview.removeValue();
@@ -11,7 +11,7 @@ export default function useWelcomeDialog(dialog: DialogContextType): Promise<voi
if (showWelcome || import.meta.env.DEV)
dialog.pushCustom(
<WelcomeDialog />,
undefined,
"alert",
() =>
{
showWelcomeDialog.removeValue();
+4 -4
View File
@@ -27,7 +27,7 @@
"@eslint/js": "^9.39.4",
"@eslint/json": "^2.0.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/react": "^19.2.16",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@wxt-dev/module-react": "^1.2.2",
"eslint": "^9.39.4",
@@ -3456,9 +3456,9 @@
}
},
"node_modules/@types/react": {
"version": "19.2.16",
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.16.tgz",
"integrity": "sha512-esJiCAnl0kfpNdE69f3So4WJUXy95dLZydX0KwK46riIHDzHM7O9Vtf9xCHW0PXIqvgqNrswl522kA/5yx+F4w==",
"version": "19.2.17",
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.17.tgz",
"integrity": "sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==",
"license": "MIT",
"dependencies": {
"csstype": "^3.2.2"
+5 -1
View File
@@ -30,7 +30,7 @@
"@eslint/js": "^9.39.4",
"@eslint/json": "^2.0.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/react": "^19.2.16",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@wxt-dev/module-react": "^1.2.2",
"eslint": "^9.39.4",
@@ -46,5 +46,9 @@
"web-ext-run": {
"tmp": "^0.2.6"
}
},
"allowScripts": {
"esbuild": true,
"spawn-sync": true
}
}