diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
index 248e32538..52afe1134 100644
--- a/.github/workflows/nightly.yml
+++ b/.github/workflows/nightly.yml
@@ -37,7 +37,7 @@ jobs:
shell: bash
forge_platform: darwin
- name: linux
- image: ubuntu-latest
+ image: ubuntu-22.04
shell: bash
forge_platform: linux
- name: windows
@@ -102,7 +102,7 @@ jobs:
arch: [x64, arm64]
include:
- arch: x64
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
- arch: arm64
runs-on: ubuntu-24.04-arm
runs-on: ${{ matrix.runs-on }}
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index f571d634d..5f2bfbc62 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -73,7 +73,7 @@ jobs:
arch: [x64, arm64]
include:
- arch: x64
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
- arch: arm64
runs-on: ubuntu-24.04-arm
runs-on: ${{ matrix.runs-on }}
diff --git a/_regroup/package.json b/_regroup/package.json
index 2157ad9df..444597799 100644
--- a/_regroup/package.json
+++ b/_regroup/package.json
@@ -36,7 +36,7 @@
},
"devDependencies": {
"@playwright/test": "1.52.0",
- "@stylistic/eslint-plugin": "4.4.0",
+ "@stylistic/eslint-plugin": "4.4.1",
"@types/express": "5.0.1",
"@types/node": "22.15.29",
"@types/yargs": "17.0.33",
diff --git a/apps/client/package.json b/apps/client/package.json
index 752eca730..94f1a0ed3 100644
--- a/apps/client/package.json
+++ b/apps/client/package.json
@@ -64,7 +64,7 @@
"@types/leaflet-gpx": "1.3.7",
"@types/mark.js": "8.11.12",
"@types/react": "19.1.6",
- "@types/react-dom": "19.1.5",
+ "@types/react-dom": "19.1.6",
"copy-webpack-plugin": "13.0.0",
"happy-dom": "17.6.3",
"script-loader": "0.7.2",
diff --git a/apps/client/src/server_types.ts b/apps/client/src/server_types.ts
index df6e1a7fc..2aa521405 100644
--- a/apps/client/src/server_types.ts
+++ b/apps/client/src/server_types.ts
@@ -8,7 +8,7 @@ interface Entity {
export interface EntityChange {
id?: number | null;
noteId?: string;
- entityName: EntityRowNames;
+ entityName: EntityType;
entityId: string;
entity?: Entity;
positions?: Record;
@@ -22,3 +22,5 @@ export interface EntityChange {
changeId?: string | null;
instanceId?: string | null;
}
+
+export type EntityType = "notes" | "branches" | "attributes" | "note_reordering" | "revisions" | "options" | "attachments" | "blobs" | "etapi_tokens" | "note_embeddings";
diff --git a/apps/desktop/package.json b/apps/desktop/package.json
index 7c9813963..33948c6b6 100644
--- a/apps/desktop/package.json
+++ b/apps/desktop/package.json
@@ -17,7 +17,7 @@
"@types/electron-squirrel-startup": "1.0.2",
"@triliumnext/server": "workspace:*",
"copy-webpack-plugin": "13.0.0",
- "electron": "36.3.2",
+ "electron": "36.4.0",
"@electron-forge/cli": "7.8.1",
"@electron-forge/maker-deb": "7.8.1",
"@electron-forge/maker-dmg": "7.8.1",
diff --git a/apps/desktop/src/electron-main.ts b/apps/desktop/src/electron-main.ts
index c8c28ac77..3decb970d 100644
--- a/apps/desktop/src/electron-main.ts
+++ b/apps/desktop/src/electron-main.ts
@@ -7,8 +7,11 @@ import tray from "@triliumnext/server/src/services/tray.js";
import options from "@triliumnext/server/src/services/options.js";
import electronDebug from "electron-debug";
import electronDl from "electron-dl";
+import { deferred } from "@triliumnext/server/src/services/utils.js";
async function main() {
+ const serverInitializedPromise = deferred();
+
// Prevent Trilium starting twice on first install and on uninstall for the Windows installer.
if ((require("electron-squirrel-startup")).default) {
process.exit(0);
@@ -37,7 +40,11 @@ async function main() {
}
});
- electron.app.on("ready", onReady);
+ electron.app.on("ready", async () => {
+ await serverInitializedPromise;
+ console.log("Starting Electron...");
+ await onReady();
+ });
electron.app.on("will-quit", () => {
electron.globalShortcut.unregisterAll();
@@ -47,7 +54,10 @@ async function main() {
process.env["ELECTRON_DISABLE_SECURITY_WARNINGS"] = "true";
await initializeTranslations();
- await import("@triliumnext/server/src/main.js");
+ const startTriliumServer = (await import("@triliumnext/server/src/www.js")).default;
+ await startTriliumServer();
+ console.log("Server loaded");
+ serverInitializedPromise.resolve();
}
async function onReady() {
diff --git a/apps/edit-docs/package.json b/apps/edit-docs/package.json
index 82f97d457..3a11c9583 100644
--- a/apps/edit-docs/package.json
+++ b/apps/edit-docs/package.json
@@ -12,7 +12,7 @@
"@triliumnext/desktop": "workspace:*",
"@types/fs-extra": "11.0.4",
"copy-webpack-plugin": "13.0.0",
- "electron": "36.3.2",
+ "electron": "36.4.0",
"fs-extra": "11.3.0"
},
"nx": {
diff --git a/apps/edit-docs/src/utils.ts b/apps/edit-docs/src/utils.ts
index 059e1e0cc..28740f3bd 100644
--- a/apps/edit-docs/src/utils.ts
+++ b/apps/edit-docs/src/utils.ts
@@ -38,7 +38,8 @@ export function startElectron(callback: () => void): DeferredPromise {
console.log("Electron is ready!");
// Start the server.
- await import("@triliumnext/server/src/main.js");
+ const startTriliumServer = (await import("@triliumnext/server/src/www.js")).default;
+ await startTriliumServer();
// Create the main window.
await windowService.createMainWindow(electron.app);
diff --git a/apps/server/.edit-integration-db.env b/apps/server/.edit-integration-db.env
new file mode 100644
index 000000000..94194e2b1
--- /dev/null
+++ b/apps/server/.edit-integration-db.env
@@ -0,0 +1,6 @@
+TRILIUM_ENV=dev
+TRILIUM_DATA_DIR=./apps/server/spec/db
+TRILIUM_RESOURCE_DIR=./apps/server/dist
+TRILIUM_PUBLIC_SERVER=http://localhost:4200
+TRILIUM_PORT=8086
+TRILIUM_INTEGRATION_TEST=edit
\ No newline at end of file
diff --git a/apps/server/package.json b/apps/server/package.json
index 89a19b068..cd1255583 100644
--- a/apps/server/package.json
+++ b/apps/server/package.json
@@ -39,7 +39,7 @@
"@types/ws": "8.18.1",
"@types/xml2js": "0.4.14",
"express-http-proxy": "2.1.1",
- "@anthropic-ai/sdk": "0.52.0",
+ "@anthropic-ai/sdk": "0.53.0",
"@braintree/sanitize-url": "7.1.1",
"@triliumnext/commons": "workspace:*",
"@triliumnext/express-partial-content": "workspace:*",
@@ -59,7 +59,7 @@
"debounce": "2.2.0",
"debug": "4.4.1",
"ejs": "3.1.10",
- "electron": "36.3.2",
+ "electron": "36.4.0",
"electron-debug": "4.1.0",
"electron-window-state": "5.0.3",
"escape-html": "1.0.3",
@@ -129,6 +129,23 @@
"runBuildTargetDependencies": false
}
},
+ "edit-integration-db": {
+ "executor": "@nx/js:node",
+ "dependsOn": [
+ {
+ "projects": [
+ "client"
+ ],
+ "target": "serve"
+ },
+ "build-without-client"
+ ],
+ "continuous": true,
+ "options": {
+ "buildTarget": "server:build-without-client:development",
+ "runBuildTargetDependencies": false
+ }
+ },
"package": {
"dependsOn": [
"build"
diff --git a/apps/server/spec/db/document.db b/apps/server/spec/db/document.db
index c02b60d34..c1000f7f9 100644
Binary files a/apps/server/spec/db/document.db and b/apps/server/spec/db/document.db differ
diff --git a/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Advanced Usage/Advanced Showcases/Day Notes.html b/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Advanced Usage/Advanced Showcases/Day Notes.html
index 9b1b80b2b..2bfdb4108 100644
--- a/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Advanced Usage/Advanced Showcases/Day Notes.html
+++ b/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Advanced Usage/Advanced Showcases/Day Notes.html
@@ -28,7 +28,7 @@
where you can track your daily weight. This data is then used in Weight tracker .
Week Note and Quarter Note
Week and quarter notes are disabled by default, since it might be too
- much for some people. To enable them, you need to set #enableWeekNotes
and #enableQuarterNotes
attributes
+ much for some people. To enable them, you need to set #enableWeekNote
and #enableQuarterNote
attributes
on the root calendar note, which is identified by #calendarRoot
label.
Week note is affected by the first week of year option. Be careful when
you already have some week notes created, it will not automatically change
@@ -40,15 +40,26 @@
(identified by #calendarRoot
label):
yearTemplate
- quarterTemplate (if #enableQuarterNotes
is set)
+ quarterTemplate (if #enableQuarterNote
is set)
monthTemplate
- weekTemplate (if #enableWeekNotes
is set)
+ weekTemplate (if #enableWeekNote
is set)
dateTemplate
All of these are relations. When Trilium creates a new note for year or
month or date, it will take a look at the root and attach a corresponding ~template
relation
to the newly created role. Using this, you can e.g. create your daily template
with e.g. checkboxes for daily routine etc.
+Migrate from old template usage
+If you have been using Journal prior to version v0.93.0, the previous
+ template pattern likely used was ~child:template=
.
+ To transition to the new system:
+
+ Set up the new template pattern in the Calendar root note.
+ Use Bulk Actions to remove child:template
and child:child:template
from
+ all notes under the Journal (calendar root).
+ Ensure that all old template patterns are fully removed to prevent conflicts
+ with the new setup.
+
Naming pattern
You can customize the title of generated journal notes by defining a #datePattern
, #weekPattern
, #monthPattern
, #quarterPattern
and #yearPattern
attribute
on a root calendar note (identified by #calendarRoot
label).
@@ -138,9 +149,4 @@
Trilium has some special support for day notes in the form of backend Script API -
see e.g. getDayNote() function.
Day (and year, month) notes are created with a label - e.g. #dateNote="2025-03-09"
this
- can then be used by other scripts to add new notes to day note etc.
-Journal also has relation child:child:child:template=Day template
(see
- [[attribute inheritance]]) which effectively adds [[template]] to day notes
- (grand-grand-grand children of Journal). Please note that, when you enable
- week notes or quarter notes, it will not automatically change the relation
- for the child level.
\ No newline at end of file
+ can then be used by other scripts to add new notes to day note etc.
\ No newline at end of file
diff --git a/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Advanced Usage/Templates.html b/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Advanced Usage/Templates.html
index c0ebf0b9c..4c91ffc9c 100644
--- a/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Advanced Usage/Templates.html
+++ b/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Advanced Usage/Templates.html
@@ -40,7 +40,19 @@
you can also mark templates with #workspaceTemplate
to display
them only in the workspace.
Templates can also be added or changed after note creation by creating
- a ~template
relation pointing to the desired template note.
+ a ~template
relation pointing to the desired template note.
+To specify a template for child notes, you can use a ~child:template
relation
+ pointing to the appropriate template note. There is no limit to the depth
+ of the hierarchy — you can use ~child:child:template
, ~child:child:child:template
,
+ and so on.
+
+ Changing the template hierarchy after the parent note is created will
+ not retroactively apply to newly created child notes.
+ For example, if you initially use ~child:template
and later
+ switch to ~child:child:template
, it will not automatically
+ apply the new template to the grandchild notes. Only the structure present
+ at the time of note creation is considered.
+
Additional Notes
From a visual perspective, templates can define #iconClass
and #cssClass
attributes,
allowing all instance notes (e.g., books) to display a specific icon and
diff --git a/apps/server/src/becca/becca_loader.ts b/apps/server/src/becca/becca_loader.ts
index 44e3a9ce2..a968b1430 100644
--- a/apps/server/src/becca/becca_loader.ts
+++ b/apps/server/src/becca/becca_loader.ts
@@ -65,8 +65,16 @@ function load() {
new BEtapiToken(row);
}
- for (const row of sql.getRows(/*sql*/`SELECT embedId, noteId, providerId, modelId, dimension, embedding, version, dateCreated, dateModified, utcDateCreated, utcDateModified FROM note_embeddings`)) {
- new BNoteEmbedding(row).init();
+ try {
+ for (const row of sql.getRows(/*sql*/`SELECT embedId, noteId, providerId, modelId, dimension, embedding, version, dateCreated, dateModified, utcDateCreated, utcDateModified FROM note_embeddings`)) {
+ new BNoteEmbedding(row).init();
+ }
+ } catch (e: unknown) {
+ if (e && typeof e === "object" && "message" in e && typeof e.message === "string" && e.message.includes("no such table")) {
+ // Can be ignored.
+ } else {
+ throw e;
+ }
}
});
diff --git a/apps/server/src/main.ts b/apps/server/src/main.ts
index b334c148d..072ff3229 100644
--- a/apps/server/src/main.ts
+++ b/apps/server/src/main.ts
@@ -7,7 +7,8 @@ import { initializeTranslations } from "./services/i18n.js";
async function startApplication() {
await initializeTranslations();
- await import("./www.js");
+ const startTriliumServer = (await import("./www.js")).default;
+ await startTriliumServer();
}
startApplication();
diff --git a/apps/server/src/services/date_notes.ts b/apps/server/src/services/date_notes.ts
index 764c33700..afec6c882 100644
--- a/apps/server/src/services/date_notes.ts
+++ b/apps/server/src/services/date_notes.ts
@@ -266,7 +266,7 @@ function getMonthNote(dateStr: string, _rootNote: BNote | null = null): BNote {
return monthNote;
}
- let monthParentNote;
+ let monthParentNote: BNote | null;
if (rootNote.hasLabel("enableQuarterNote")) {
monthParentNote = getQuarterNote(getQuarterNumberStr(dayjs(dateStr)), rootNote);
@@ -296,7 +296,7 @@ function getMonthNote(dateStr: string, _rootNote: BNote | null = null): BNote {
function getWeekStartDate(date: Dayjs): Dayjs {
const day = date.day();
- let diff;
+ let diff: number;
if (optionService.getOption("firstDayOfWeek") === "0") { // Sunday
diff = date.date() - day + (day === 0 ? -6 : 1); // adjust when day is sunday
@@ -456,7 +456,7 @@ function getDayNote(dateStr: string, _rootNote: BNote | null = null): BNote {
return dateNote;
}
- let dateParentNote;
+ let dateParentNote: BNote | null;
if (rootNote.hasLabel("enableWeekNote")) {
dateParentNote = getWeekNote(getWeekNumberStr(dayjs(dateStr)), rootNote);
diff --git a/apps/server/src/services/migration.spec.ts b/apps/server/src/services/migration.spec.ts
index 23dcfa023..690956904 100644
--- a/apps/server/src/services/migration.spec.ts
+++ b/apps/server/src/services/migration.spec.ts
@@ -16,5 +16,5 @@ describe("Migration", () => {
resolve();
});
});
- });
+ }, 60_000);
});
diff --git a/apps/server/src/services/migration.ts b/apps/server/src/services/migration.ts
index 57ad890c6..6aaaa97bb 100644
--- a/apps/server/src/services/migration.ts
+++ b/apps/server/src/services/migration.ts
@@ -25,10 +25,12 @@ async function migrate() {
}
// backup before attempting migration
- await backupService.backupNow(
- // creating a special backup for version 0.60.4, the changes in 0.61 are major.
- currentDbVersion === 214 ? `before-migration-v060` : "before-migration"
- );
+ if (!process.env.TRILIUM_INTEGRATION_TEST) {
+ await backupService.backupNow(
+ // creating a special backup for version 0.60.4, the changes in 0.61 are major.
+ currentDbVersion === 214 ? `before-migration-v060` : "before-migration"
+ );
+ }
const migrations = await prepareMigrations(currentDbVersion);
diff --git a/apps/server/src/services/notes.ts b/apps/server/src/services/notes.ts
index f06e07ed8..4c82c0e8c 100644
--- a/apps/server/src/services/notes.ts
+++ b/apps/server/src/services/notes.ts
@@ -76,7 +76,7 @@ function deriveMime(type: string, mime?: string) {
function copyChildAttributes(parentNote: BNote, childNote: BNote) {
for (const attr of parentNote.getAttributes()) {
if (attr.name.startsWith("child:")) {
- const name = attr.name.substr(6);
+ const name = attr.name.substring(6);
const hasAlreadyTemplate = childNote.hasRelation("template");
if (hasAlreadyTemplate && attr.type === "relation" && name === "template") {
@@ -472,7 +472,7 @@ async function downloadImage(noteId: string, imageUrl: string) {
if (imageUrl.toLowerCase().startsWith("file://")) {
imageBuffer = await new Promise((res, rej) => {
- const localFilePath = imageUrl.substr("file://".length);
+ const localFilePath = imageUrl.substring("file://".length);
return fs.readFile(localFilePath, (err, data) => {
if (err) {
@@ -521,14 +521,14 @@ function downloadImages(noteId: string, content: string) {
const inlineImageMatch = /^data:image\/[a-z]+;base64,/.exec(url);
if (inlineImageMatch) {
- const imageBase64 = url.substr(inlineImageMatch[0].length);
+ const imageBase64 = url.substring(inlineImageMatch[0].length);
const imageBuffer = Buffer.from(imageBase64, "base64");
const attachment = imageService.saveImageToAttachment(noteId, imageBuffer, "inline image", true, true);
const encodedTitle = encodeURIComponent(attachment.title);
- content = `${content.substr(0, imageMatch.index)} ${title}${content.substr(attachmentMatch.index + attachmentMatch[0].length)}`;
+ content = `${content.substring(0, attachmentMatch.index)}${title} ${content.substring(attachmentMatch.index + attachmentMatch[0].length)}`;
}
// removing absolute references to server to keep it working between instances,
diff --git a/apps/server/src/www.ts b/apps/server/src/www.ts
index 2dcd74c80..58289fd1b 100644
--- a/apps/server/src/www.ts
+++ b/apps/server/src/www.ts
@@ -14,37 +14,35 @@ import type { Express } from "express";
const MINIMUM_NODE_VERSION = "20.0.0";
-// setup basic error handling even before requiring dependencies, since those can produce errors as well
+export default async function startTriliumServer() {
+ // setup basic error handling even before requiring dependencies, since those can produce errors as well
+ process.on("unhandledRejection", (error: Error) => {
+ // this makes sure that stacktrace of failed promise is printed out
+ console.log(error);
-process.on("unhandledRejection", (error: Error) => {
- // this makes sure that stacktrace of failed promise is printed out
- console.log(error);
+ // but also try to log it into file
+ log.info(error);
+ });
- // but also try to log it into file
- log.info(error);
-});
+ function exit() {
+ console.log("Caught interrupt/termination signal. Exiting.");
+ process.exit(0);
+ }
-function exit() {
- console.log("Caught interrupt/termination signal. Exiting.");
- process.exit(0);
-}
+ process.on("SIGINT", exit);
+ process.on("SIGTERM", exit);
-process.on("SIGINT", exit);
-process.on("SIGTERM", exit);
+ if (utils.compareVersions(process.versions.node, MINIMUM_NODE_VERSION) < 0) {
+ console.error();
+ console.error(`The Trilium server requires Node.js ${MINIMUM_NODE_VERSION} and later in order to start.\n`);
+ console.error(`\tCurrent version:\t${process.versions.node}`);
+ console.error(`\tExpected version:\t${MINIMUM_NODE_VERSION}`);
+ console.error();
+ process.exit(1);
+ }
-if (utils.compareVersions(process.versions.node, MINIMUM_NODE_VERSION) < 0) {
- console.error();
- console.error(`The Trilium server requires Node.js ${MINIMUM_NODE_VERSION} and later in order to start.\n`);
- console.error(`\tCurrent version:\t${process.versions.node}`);
- console.error(`\tExpected version:\t${MINIMUM_NODE_VERSION}`);
- console.error();
- process.exit(1);
-}
+ tmp.setGracefulCleanup();
-tmp.setGracefulCleanup();
-startTrilium();
-
-async function startTrilium() {
const app = await buildApp();
/**
@@ -98,7 +96,7 @@ function startHttpServer(app: Express) {
log.info(`Trusted reverse proxy: ${app.get("trust proxy")}`);
- let httpServer;
+ let httpServer: http.Server | https.Server;
if (config["Network"]["https"]) {
if (!config["Network"]["keyPath"] || !config["Network"]["keyPath"].trim().length) {
diff --git a/docs/User Guide/!!!meta.json b/docs/User Guide/!!!meta.json
index c6ccb941d..db52b1496 100644
--- a/docs/User Guide/!!!meta.json
+++ b/docs/User Guide/!!!meta.json
@@ -9341,6 +9341,13 @@
"isInheritable": false,
"position": 50
},
+ {
+ "type": "relation",
+ "name": "internalLink",
+ "value": "ivYnonVFBxbQ",
+ "isInheritable": false,
+ "position": 60
+ },
{
"type": "label",
"name": "shareAlias",
diff --git a/docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Day Notes.md b/docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Day Notes.md
index b13027f14..798a857d2 100644
--- a/docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Day Notes.md
+++ b/docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Day Notes.md
@@ -19,7 +19,7 @@ You can also notice how this day note has [promoted attribute](../Attributes/Pro
## Week Note and Quarter Note
-Week and quarter notes are disabled by default, since it might be too much for some people. To enable them, you need to set `#enableWeekNotes` and `#enableQuarterNotes` attributes on the root calendar note, which is identified by `#calendarRoot` label. Week note is affected by the first week of year option. Be careful when you already have some week notes created, it will not automatically change the existing week notes and might lead to some duplicates.
+Week and quarter notes are disabled by default, since it might be too much for some people. To enable them, you need to set `#enableWeekNote` and `#enableQuarterNote` attributes on the root calendar note, which is identified by `#calendarRoot` label. Week note is affected by the first week of year option. Be careful when you already have some week notes created, it will not automatically change the existing week notes and might lead to some duplicates.
## Templates
@@ -28,13 +28,22 @@ Trilium provides [template](../Templates.md) functionality, and it could be used
You can define one of the following relations on the root of the journal (identified by `#calendarRoot` label):
* yearTemplate
-* quarterTemplate (if `#enableQuarterNotes` is set)
+* quarterTemplate (if `#enableQuarterNote` is set)
* monthTemplate
-* weekTemplate (if `#enableWeekNotes` is set)
+* weekTemplate (if `#enableWeekNote` is set)
* dateTemplate
All of these are relations. When Trilium creates a new note for year or month or date, it will take a look at the root and attach a corresponding `~template` relation to the newly created role. Using this, you can e.g. create your daily template with e.g. checkboxes for daily routine etc.
+### Migrate from old template usage
+
+If you have been using Journal prior to version v0.93.0, the previous template pattern likely used was `~child:template=`.
+To transition to the new system:
+
+1. Set up the new template pattern in the Calendar root note.
+2. Use [Bulk Actions](../Bulk%20Actions.md) to remove `child:template` and `child:child:template` from all notes under the Journal (calendar root).
+3. Ensure that all old template patterns are fully removed to prevent conflicts with the new setup.
+
## Naming pattern
You can customize the title of generated journal notes by defining a `#datePattern`, `#weekPattern`, `#monthPattern`, `#quarterPattern` and `#yearPattern` attribute on a root calendar note (identified by `#calendarRoot` label). The naming pattern replacements follow a level-up compatibility - each level can use replacements from itself and all levels above it. For example, `#monthPattern` can use month, quarter and year replacements, while `#weekPattern` can use week, month, quarter and year replacements. But it is not possible to use week replacements in `#monthPattern`.
@@ -98,6 +107,4 @@ The default is `{year}`
Trilium has some special support for day notes in the form of [backend Script API](https://triliumnext.github.io/Notes/backend_api/BackendScriptApi.html) - see e.g. getDayNote() function.
-Day (and year, month) notes are created with a label - e.g. `#dateNote="2025-03-09"` this can then be used by other scripts to add new notes to day note etc.
-
-Journal also has relation `child:child:child:template=Day template` (see \[\[attribute inheritance\]\]) which effectively adds \[\[template\]\] to day notes (grand-grand-grand children of Journal). Please note that, when you enable week notes or quarter notes, it will not automatically change the relation for the child level.
\ No newline at end of file
+Day (and year, month) notes are created with a label - e.g. `#dateNote="2025-03-09"` this can then be used by other scripts to add new notes to day note etc.
\ No newline at end of file
diff --git a/docs/User Guide/User Guide/Advanced Usage/Templates.md b/docs/User Guide/User Guide/Advanced Usage/Templates.md
index 8ead4563d..88737e4a0 100644
--- a/docs/User Guide/User Guide/Advanced Usage/Templates.md
+++ b/docs/User Guide/User Guide/Advanced Usage/Templates.md
@@ -25,7 +25,13 @@ To create an instance note through the UI:
For the template to appear in the menu, the template note must have the `#template` label. Do not confuse this with the `~template` relation, which links the instance note to the template note. If you use [workspaces](../Basic%20Concepts%20and%20Features/Navigation/Workspaces.md), you can also mark templates with `#workspaceTemplate` to display them only in the workspace.
-Templates can also be added or changed after note creation by creating a `~template` relation pointing to the desired template note.
+Templates can also be added or changed after note creation by creating a `~template` relation pointing to the desired template note.
+
+To specify a template for child notes, you can use a `~child:template` relation pointing to the appropriate template note. There is no limit to the depth of the hierarchy — you can use `~child:child:template`, `~child:child:child:template`, and so on.
+
+> [!IMPORTANT]
+> Changing the template hierarchy after the parent note is created will not retroactively apply to newly created child notes.
+> For example, if you initially use `~child:template` and later switch to `~child:child:template`, it will not automatically apply the new template to the grandchild notes. Only the structure present at the time of note creation is considered.
## Additional Notes
diff --git a/packages/ckeditor5-admonition/package.json b/packages/ckeditor5-admonition/package.json
index 1bcb3570f..1a1e7b857 100644
--- a/packages/ckeditor5-admonition/package.json
+++ b/packages/ckeditor5-admonition/package.json
@@ -34,12 +34,12 @@
"devDependencies": {
"@ckeditor/ckeditor5-dev-build-tools": "43.0.1",
"@ckeditor/ckeditor5-inspector": ">=4.1.0",
- "@ckeditor/ckeditor5-package-tools": "^3.0.1",
+ "@ckeditor/ckeditor5-package-tools": "^4.0.0",
"@typescript-eslint/eslint-plugin": "~8.33.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/browser": "^3.0.5",
"@vitest/coverage-istanbul": "^3.0.5",
- "ckeditor5": "45.1.0",
+ "ckeditor5": "45.2.0",
"eslint": "^9.0.0",
"eslint-config-ckeditor5": ">=9.1.0",
"http-server": "^14.1.0",
@@ -53,7 +53,7 @@
"webdriverio": "^9.0.7"
},
"peerDependencies": {
- "ckeditor5": "45.1.0"
+ "ckeditor5": "45.2.0"
},
"author": "Elian Doran ",
"license": "GPL-2.0-or-later",
diff --git a/packages/ckeditor5-footnotes/package.json b/packages/ckeditor5-footnotes/package.json
index 39c068a71..b7ed474e7 100644
--- a/packages/ckeditor5-footnotes/package.json
+++ b/packages/ckeditor5-footnotes/package.json
@@ -35,12 +35,12 @@
"devDependencies": {
"@ckeditor/ckeditor5-dev-build-tools": "43.0.1",
"@ckeditor/ckeditor5-inspector": ">=4.1.0",
- "@ckeditor/ckeditor5-package-tools": "^3.0.1",
+ "@ckeditor/ckeditor5-package-tools": "^4.0.0",
"@typescript-eslint/eslint-plugin": "~8.33.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/browser": "^3.0.5",
"@vitest/coverage-istanbul": "^3.0.5",
- "ckeditor5": "45.1.0",
+ "ckeditor5": "45.2.0",
"eslint": "^9.0.0",
"eslint-config-ckeditor5": ">=9.1.0",
"http-server": "^14.1.0",
@@ -54,7 +54,7 @@
"webdriverio": "^9.0.7"
},
"peerDependencies": {
- "ckeditor5": "45.1.0"
+ "ckeditor5": "45.2.0"
},
"scripts": {
"build": "node ./scripts/build-dist.mjs",
diff --git a/packages/ckeditor5-keyboard-marker/package.json b/packages/ckeditor5-keyboard-marker/package.json
index 6af93a6ac..6dc478a24 100644
--- a/packages/ckeditor5-keyboard-marker/package.json
+++ b/packages/ckeditor5-keyboard-marker/package.json
@@ -37,12 +37,12 @@
"devDependencies": {
"@ckeditor/ckeditor5-dev-build-tools": "43.0.1",
"@ckeditor/ckeditor5-inspector": ">=4.1.0",
- "@ckeditor/ckeditor5-package-tools": "^3.0.1",
+ "@ckeditor/ckeditor5-package-tools": "^4.0.0",
"@typescript-eslint/eslint-plugin": "~8.33.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/browser": "^3.0.5",
"@vitest/coverage-istanbul": "^3.0.5",
- "ckeditor5": "45.1.0",
+ "ckeditor5": "45.2.0",
"eslint": "^9.0.0",
"eslint-config-ckeditor5": ">=9.1.0",
"http-server": "^14.1.0",
@@ -56,7 +56,7 @@
"webdriverio": "^9.0.7"
},
"peerDependencies": {
- "ckeditor5": "45.1.0"
+ "ckeditor5": "45.2.0"
},
"scripts": {
"build": "node ./scripts/build-dist.mjs",
diff --git a/packages/ckeditor5-math/package.json b/packages/ckeditor5-math/package.json
index 6ff732d5e..bbe71d1da 100644
--- a/packages/ckeditor5-math/package.json
+++ b/packages/ckeditor5-math/package.json
@@ -38,12 +38,12 @@
"@ckeditor/ckeditor5-dev-build-tools": "43.0.1",
"@ckeditor/ckeditor5-dev-utils": "43.0.1",
"@ckeditor/ckeditor5-inspector": ">=4.1.0",
- "@ckeditor/ckeditor5-package-tools": "^3.0.1",
+ "@ckeditor/ckeditor5-package-tools": "^4.0.0",
"@typescript-eslint/eslint-plugin": "~8.33.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/browser": "^3.0.5",
"@vitest/coverage-istanbul": "^3.0.5",
- "ckeditor5": "45.1.0",
+ "ckeditor5": "45.2.0",
"eslint": "^9.0.0",
"eslint-config-ckeditor5": ">=9.1.0",
"http-server": "^14.1.0",
@@ -57,7 +57,7 @@
"webdriverio": "^9.0.7"
},
"peerDependencies": {
- "ckeditor5": "45.1.0"
+ "ckeditor5": "45.2.0"
},
"scripts": {
"build": "node ./scripts/build-dist.mjs",
@@ -90,6 +90,6 @@
}
},
"dependencies": {
- "@ckeditor/ckeditor5-icons": "45.1.0"
+ "@ckeditor/ckeditor5-icons": "45.2.0"
}
}
diff --git a/packages/ckeditor5-mermaid/package.json b/packages/ckeditor5-mermaid/package.json
index 20bf3fae5..abd66b0cf 100644
--- a/packages/ckeditor5-mermaid/package.json
+++ b/packages/ckeditor5-mermaid/package.json
@@ -37,12 +37,12 @@
"devDependencies": {
"@ckeditor/ckeditor5-dev-build-tools": "43.0.1",
"@ckeditor/ckeditor5-inspector": ">=4.1.0",
- "@ckeditor/ckeditor5-package-tools": "^3.0.1",
+ "@ckeditor/ckeditor5-package-tools": "^4.0.0",
"@typescript-eslint/eslint-plugin": "~8.33.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/browser": "^3.0.5",
"@vitest/coverage-istanbul": "^3.0.5",
- "ckeditor5": "45.1.0",
+ "ckeditor5": "45.2.0",
"eslint": "^9.0.0",
"eslint-config-ckeditor5": ">=9.1.0",
"http-server": "^14.1.0",
@@ -56,7 +56,7 @@
"webdriverio": "^9.0.7"
},
"peerDependencies": {
- "ckeditor5": "45.1.0"
+ "ckeditor5": "45.2.0"
},
"scripts": {
"build": "node ./scripts/build-dist.mjs",
diff --git a/packages/ckeditor5/package.json b/packages/ckeditor5/package.json
index 428d72de7..863a3f6e8 100644
--- a/packages/ckeditor5/package.json
+++ b/packages/ckeditor5/package.json
@@ -28,7 +28,7 @@
}
},
"dependencies": {
- "ckeditor5": "45.1.0",
+ "ckeditor5": "45.2.0",
"@triliumnext/ckeditor5-keyboard-marker": "workspace:*",
"@triliumnext/ckeditor5-mermaid": "workspace:*",
"@triliumnext/ckeditor5-admonition": "workspace:*",
diff --git a/packages/codemirror/package.json b/packages/codemirror/package.json
index 643d6318f..e99ec1e88 100644
--- a/packages/codemirror/package.json
+++ b/packages/codemirror/package.json
@@ -31,29 +31,29 @@
"@codemirror/legacy-modes": "6.5.1",
"@codemirror/search": "6.5.11",
"@codemirror/view": "6.37.1",
- "@fsegurai/codemirror-theme-abcdef": "6.1.4",
- "@fsegurai/codemirror-theme-abyss": "6.1.4",
- "@fsegurai/codemirror-theme-android-studio": "6.1.4",
- "@fsegurai/codemirror-theme-andromeda": "6.1.4",
- "@fsegurai/codemirror-theme-basic-dark": "6.1.4",
- "@fsegurai/codemirror-theme-basic-light": "6.1.4",
- "@fsegurai/codemirror-theme-forest": "6.1.4",
- "@fsegurai/codemirror-theme-github-dark": "6.1.4",
- "@fsegurai/codemirror-theme-github-light": "6.1.4",
- "@fsegurai/codemirror-theme-gruvbox-dark": "6.1.4",
- "@fsegurai/codemirror-theme-gruvbox-light": "6.1.4",
- "@fsegurai/codemirror-theme-material-dark": "6.1.4",
- "@fsegurai/codemirror-theme-material-light": "6.1.4",
- "@fsegurai/codemirror-theme-monokai": "6.1.4",
- "@fsegurai/codemirror-theme-nord": "6.1.4",
- "@fsegurai/codemirror-theme-palenight": "6.1.4",
- "@fsegurai/codemirror-theme-solarized-dark": "6.1.4",
- "@fsegurai/codemirror-theme-solarized-light": "6.1.4",
- "@fsegurai/codemirror-theme-tokyo-night-day": "6.1.4",
- "@fsegurai/codemirror-theme-tokyo-night-storm": "6.1.4",
- "@fsegurai/codemirror-theme-volcano": "6.1.4",
- "@fsegurai/codemirror-theme-vscode-dark": "6.1.4",
- "@fsegurai/codemirror-theme-vscode-light": "6.1.4",
+ "@fsegurai/codemirror-theme-abcdef": "6.2.0",
+ "@fsegurai/codemirror-theme-abyss": "6.2.0",
+ "@fsegurai/codemirror-theme-android-studio": "6.2.0",
+ "@fsegurai/codemirror-theme-andromeda": "6.2.0",
+ "@fsegurai/codemirror-theme-basic-dark": "6.2.0",
+ "@fsegurai/codemirror-theme-basic-light": "6.2.0",
+ "@fsegurai/codemirror-theme-forest": "6.2.0",
+ "@fsegurai/codemirror-theme-github-dark": "6.2.0",
+ "@fsegurai/codemirror-theme-github-light": "6.2.0",
+ "@fsegurai/codemirror-theme-gruvbox-dark": "6.2.0",
+ "@fsegurai/codemirror-theme-gruvbox-light": "6.2.0",
+ "@fsegurai/codemirror-theme-material-dark": "6.2.0",
+ "@fsegurai/codemirror-theme-material-light": "6.2.0",
+ "@fsegurai/codemirror-theme-monokai": "6.2.0",
+ "@fsegurai/codemirror-theme-nord": "6.2.0",
+ "@fsegurai/codemirror-theme-palenight": "6.2.0",
+ "@fsegurai/codemirror-theme-solarized-dark": "6.2.0",
+ "@fsegurai/codemirror-theme-solarized-light": "6.2.0",
+ "@fsegurai/codemirror-theme-tokyo-night-day": "6.2.0",
+ "@fsegurai/codemirror-theme-tokyo-night-storm": "6.2.0",
+ "@fsegurai/codemirror-theme-volcano": "6.2.0",
+ "@fsegurai/codemirror-theme-vscode-dark": "6.2.0",
+ "@fsegurai/codemirror-theme-vscode-light": "6.2.0",
"@replit/codemirror-indentation-markers": "6.5.3",
"@replit/codemirror-lang-nix": "6.0.1",
"@replit/codemirror-vim": "6.3.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 4e568ae5a..fa5930c9b 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -155,7 +155,7 @@ importers:
version: 9.28.0
'@excalidraw/excalidraw':
specifier: 0.18.0
- version: 0.18.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 0.18.0(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@fullcalendar/core':
specifier: 6.1.17
version: 6.1.17
@@ -308,8 +308,8 @@ importers:
specifier: 19.1.6
version: 19.1.6
'@types/react-dom':
- specifier: 19.1.5
- version: 19.1.5(@types/react@19.1.6)
+ specifier: 19.1.6
+ version: 19.1.6(@types/react@19.1.6)
copy-webpack-plugin:
specifier: 13.0.0
version: 13.0.0(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.5))
@@ -342,7 +342,7 @@ importers:
dependencies:
'@electron/remote':
specifier: 2.1.2
- version: 2.1.2(electron@36.3.2)
+ version: 2.1.2(electron@36.4.0)
better-sqlite3:
specifier: ^11.9.1
version: 11.10.0
@@ -396,8 +396,8 @@ importers:
specifier: 13.0.0
version: 13.0.0(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.5))
electron:
- specifier: 36.3.2
- version: 36.3.2
+ specifier: 36.4.0
+ version: 36.4.0
prebuild-install:
specifier: ^7.1.1
version: 7.1.3
@@ -452,8 +452,8 @@ importers:
specifier: 13.0.0
version: 13.0.0(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.5))
electron:
- specifier: 36.3.2
- version: 36.3.2
+ specifier: 36.4.0
+ version: 36.4.0
fs-extra:
specifier: 11.3.0
version: 11.3.0
@@ -465,14 +465,14 @@ importers:
version: 11.10.0
devDependencies:
'@anthropic-ai/sdk':
- specifier: 0.52.0
- version: 0.52.0
+ specifier: 0.53.0
+ version: 0.53.0
'@braintree/sanitize-url':
specifier: 7.1.1
version: 7.1.1
'@electron/remote':
specifier: 2.1.2
- version: 2.1.2(electron@36.3.2)
+ version: 2.1.2(electron@36.4.0)
'@triliumnext/commons':
specifier: workspace:*
version: link:../../packages/commons
@@ -618,8 +618,8 @@ importers:
specifier: 3.1.10
version: 3.1.10
electron:
- specifier: 36.3.2
- version: 36.3.2
+ specifier: 36.4.0
+ version: 36.4.0
electron-debug:
specifier: 4.1.0
version: 4.1.0
@@ -792,8 +792,8 @@ importers:
specifier: workspace:*
version: link:../ckeditor5-mermaid
ckeditor5:
- specifier: 45.1.0
- version: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ specifier: 45.2.0
+ version: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
devDependencies:
'@types/jquery':
specifier: 3.5.32
@@ -808,8 +808,8 @@ importers:
specifier: '>=4.1.0'
version: 4.1.0
'@ckeditor/ckeditor5-package-tools':
- specifier: ^3.0.1
- version: 3.0.1(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.15.29)(bufferutil@4.0.9)(esbuild@0.25.5)(utf-8-validate@6.0.5)
+ specifier: ^4.0.0
+ version: 4.0.0(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.15.29)(bufferutil@4.0.9)(esbuild@0.25.5)(utf-8-validate@6.0.5)
'@typescript-eslint/eslint-plugin':
specifier: ~8.33.0
version: 8.33.1(@typescript-eslint/parser@8.33.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)
@@ -823,8 +823,8 @@ importers:
specifier: ^3.0.5
version: 3.2.0(vitest@3.2.0)
ckeditor5:
- specifier: 45.1.0
- version: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ specifier: 45.2.0
+ version: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
eslint:
specifier: ^9.0.0
version: 9.28.0(jiti@2.4.2)
@@ -868,8 +868,8 @@ importers:
specifier: '>=4.1.0'
version: 4.1.0
'@ckeditor/ckeditor5-package-tools':
- specifier: ^3.0.1
- version: 3.0.1(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.15.29)(bufferutil@4.0.9)(esbuild@0.25.5)(utf-8-validate@6.0.5)
+ specifier: ^4.0.0
+ version: 4.0.0(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.15.29)(bufferutil@4.0.9)(esbuild@0.25.5)(utf-8-validate@6.0.5)
'@typescript-eslint/eslint-plugin':
specifier: ~8.33.0
version: 8.33.1(@typescript-eslint/parser@8.33.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)
@@ -883,8 +883,8 @@ importers:
specifier: ^3.0.5
version: 3.2.0(vitest@3.2.0)
ckeditor5:
- specifier: 45.1.0
- version: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ specifier: 45.2.0
+ version: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
eslint:
specifier: ^9.0.0
version: 9.28.0(jiti@2.4.2)
@@ -928,8 +928,8 @@ importers:
specifier: '>=4.1.0'
version: 4.1.0
'@ckeditor/ckeditor5-package-tools':
- specifier: ^3.0.1
- version: 3.0.1(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.15.29)(bufferutil@4.0.9)(esbuild@0.25.5)(utf-8-validate@6.0.5)
+ specifier: ^4.0.0
+ version: 4.0.0(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.15.29)(bufferutil@4.0.9)(esbuild@0.25.5)(utf-8-validate@6.0.5)
'@typescript-eslint/eslint-plugin':
specifier: ~8.33.0
version: 8.33.1(@typescript-eslint/parser@8.33.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)
@@ -943,8 +943,8 @@ importers:
specifier: ^3.0.5
version: 3.2.0(vitest@3.2.0)
ckeditor5:
- specifier: 45.1.0
- version: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ specifier: 45.2.0
+ version: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
eslint:
specifier: ^9.0.0
version: 9.28.0(jiti@2.4.2)
@@ -982,8 +982,8 @@ importers:
packages/ckeditor5-math:
dependencies:
'@ckeditor/ckeditor5-icons':
- specifier: 45.1.0
- version: 45.1.0
+ specifier: 45.2.0
+ version: 45.2.0
devDependencies:
'@ckeditor/ckeditor5-dev-build-tools':
specifier: 43.0.1
@@ -995,8 +995,8 @@ importers:
specifier: '>=4.1.0'
version: 4.1.0
'@ckeditor/ckeditor5-package-tools':
- specifier: ^3.0.1
- version: 3.0.1(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.15.29)(bufferutil@4.0.9)(esbuild@0.25.5)(utf-8-validate@6.0.5)
+ specifier: ^4.0.0
+ version: 4.0.0(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.15.29)(bufferutil@4.0.9)(esbuild@0.25.5)(utf-8-validate@6.0.5)
'@typescript-eslint/eslint-plugin':
specifier: ~8.33.0
version: 8.33.1(@typescript-eslint/parser@8.33.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)
@@ -1010,8 +1010,8 @@ importers:
specifier: ^3.0.5
version: 3.2.0(vitest@3.2.0)
ckeditor5:
- specifier: 45.1.0
- version: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ specifier: 45.2.0
+ version: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
eslint:
specifier: ^9.0.0
version: 9.28.0(jiti@2.4.2)
@@ -1062,8 +1062,8 @@ importers:
specifier: '>=4.1.0'
version: 4.1.0
'@ckeditor/ckeditor5-package-tools':
- specifier: ^3.0.1
- version: 3.0.1(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.15.29)(bufferutil@4.0.9)(esbuild@0.25.5)(utf-8-validate@6.0.5)
+ specifier: ^4.0.0
+ version: 4.0.0(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.15.29)(bufferutil@4.0.9)(esbuild@0.25.5)(utf-8-validate@6.0.5)
'@typescript-eslint/eslint-plugin':
specifier: ~8.33.0
version: 8.33.1(@typescript-eslint/parser@8.33.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)
@@ -1077,8 +1077,8 @@ importers:
specifier: ^3.0.5
version: 3.2.0(vitest@3.2.0)
ckeditor5:
- specifier: 45.1.0
- version: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ specifier: 45.2.0
+ version: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
eslint:
specifier: ^9.0.0
version: 9.28.0(jiti@2.4.2)
@@ -1152,74 +1152,74 @@ importers:
specifier: 6.37.1
version: 6.37.1
'@fsegurai/codemirror-theme-abcdef':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-abyss':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-android-studio':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-andromeda':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-basic-dark':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-basic-light':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-forest':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-github-dark':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-github-light':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-gruvbox-dark':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-gruvbox-light':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-material-dark':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-material-light':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-monokai':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-nord':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-palenight':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-solarized-dark':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-solarized-light':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-tokyo-night-day':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-tokyo-night-storm':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-volcano':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-vscode-dark':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@fsegurai/codemirror-theme-vscode-light':
- specifier: 6.1.4
- version: 6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
+ specifier: 6.2.0
+ version: 6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)
'@replit/codemirror-indentation-markers':
specifier: 6.5.3
version: 6.5.3(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)
@@ -1295,8 +1295,8 @@ packages:
'@antfu/utils@8.1.1':
resolution: {integrity: sha512-Mex9nXf9vR6AhcXmMrlz/HVgYYZpVGJ6YlPgwl7UnaFpnshXs6EK/oa5Gpf3CzENMjkvEx2tQtntGnb7UtSTOQ==}
- '@anthropic-ai/sdk@0.52.0':
- resolution: {integrity: sha512-d4c+fg+xy9e46c8+YnrrgIQR45CZlAi7PwdzIfDXDM6ACxEZli1/fxhURsq30ZpMZy6LvSkr41jGq5aF5TD7rQ==}
+ '@anthropic-ai/sdk@0.53.0':
+ resolution: {integrity: sha512-bl2frVo0cgHCXTzQEIHXPH329uQXC4YKBaLBkZmUc59tNiR3GgcGpBZU7mwfyv5tPuU/yT7tGHyoe5AnjN02QA==}
hasBin: true
'@apidevtools/json-schema-ref-parser@9.1.2':
@@ -1971,44 +1971,44 @@ packages:
'@chevrotain/utils@11.0.3':
resolution: {integrity: sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==}
- '@ckeditor/ckeditor5-adapter-ckfinder@45.1.0':
- resolution: {integrity: sha512-otNU8VFFxKxRJH3t7u1C74BEq615EamHN7B/W+grpVszLqYoEvAZ3A2t1Q+OSg8+SIiTgpYsp8s5QqjWYB/72A==}
+ '@ckeditor/ckeditor5-adapter-ckfinder@45.2.0':
+ resolution: {integrity: sha512-wMDFBDGcUpq8jN/yftki1RxEz79FePfBedeS572+sWdvjm4lPDhkFQETOH0RwZ0TySNen3GJxFe8rKc4LI+iZA==}
- '@ckeditor/ckeditor5-alignment@45.1.0':
- resolution: {integrity: sha512-wRmR7ljy2t8w9Kv7WTHkQZnp6knK63C9LncwMARkmaTiUBU9QLrH0+M4DXRyv6uNdkGZ4WGtLurrtTBnIQcVUw==}
+ '@ckeditor/ckeditor5-alignment@45.2.0':
+ resolution: {integrity: sha512-fARxsVWFZpWgTTiWdaY5bxrXnDokafTNk2cEZul5YtVBG3qFXz7MA/MzPc9+NFlu1Kju3WDos9synwxtDrMKTQ==}
- '@ckeditor/ckeditor5-autoformat@45.1.0':
- resolution: {integrity: sha512-jdV2ot42GVFcoL2HOqUdxPCj/Cz8SjDBl6N/PAkwaHr7AjPOr78c/4WeGNA8a1rXxy+a1GcEKfQff1wq8xHOfg==}
+ '@ckeditor/ckeditor5-autoformat@45.2.0':
+ resolution: {integrity: sha512-CWu/oAdsKaAoe4vsoh4ghip9aLopjJGKxF2RuW7k423JUFXufLIB+Dz2Y/hWjtm2NnpcDMXsS18NePe3b33t1g==}
- '@ckeditor/ckeditor5-autosave@45.1.0':
- resolution: {integrity: sha512-FsMLxlDxxFxBDFFboCxqIPC+xFsOknqB9PpIE7il2sAfrNWZAtpdtQ73v8YqJwRlLwbPcY69ZaZapznl590lBg==}
+ '@ckeditor/ckeditor5-autosave@45.2.0':
+ resolution: {integrity: sha512-7qAyz/cj4EMDYbF1GzJN3fi8yvFsP+Ul7rbkmB1w6OXXnrxxgzv/H86obKylQLW/vCwa28pVjeNUvPwt2UxL7w==}
- '@ckeditor/ckeditor5-basic-styles@45.1.0':
- resolution: {integrity: sha512-aykdivtT5NgiQdgTqKlhbmffZuMG6vxEE+/XsmKfyi5mJ6oh9lv50zb0bze7sQvBhynt5CC8tKUI4O4VC3a5dw==}
+ '@ckeditor/ckeditor5-basic-styles@45.2.0':
+ resolution: {integrity: sha512-MmL+25jt9pe6NmU7gUK1p8Kh/BTZejFCRFgfsUFmNz6BpVnD0GKMZ3aVdPIlkhyNlEQdcqfPoGnuTpdMAn7bMw==}
- '@ckeditor/ckeditor5-block-quote@45.1.0':
- resolution: {integrity: sha512-zsZyuh6w1H/TV2QvJnZ6mScvYMNn6itnFbbTHJWAJoLQTs2XjiUaVy7m+pK81x0VHrH1HPsj/ErccscrHOQTdQ==}
+ '@ckeditor/ckeditor5-block-quote@45.2.0':
+ resolution: {integrity: sha512-mMwFBDMYTREzh0xdn3WyMPxEF5VLsfcu/Rc/bGLBEkvDqxPcqcXvRpMsW/ilmgFjtexsEkgUb/FbqvHDPRfH+A==}
- '@ckeditor/ckeditor5-bookmark@45.1.0':
- resolution: {integrity: sha512-UtdpprqMuoEstxH0JZIGzyRFqo2gpiiLP/4HozV3ygV2buonigbJgx0fDJvHqTmkcSzXIG7+FUACcXnyVvsDXA==}
+ '@ckeditor/ckeditor5-bookmark@45.2.0':
+ resolution: {integrity: sha512-mpMXvRA/ZWHR7K9nFOUd517/7CgJxSNfbJpgibEcXJMvWQxeKBAMgLtrA8hKO3uX22qbxbBxw5EipyGz3b1cYA==}
- '@ckeditor/ckeditor5-ckbox@45.1.0':
- resolution: {integrity: sha512-MjZl4R2AXTX+wKGIVAyifzNOJAFUfmdnaQ0j6f25Ezka2V83iY2Zxjt1fuu52OJWAcuiL4WEupZ0F75BN3Lm9w==}
+ '@ckeditor/ckeditor5-ckbox@45.2.0':
+ resolution: {integrity: sha512-HTwlpWUiozn4OubRCavQ0BJMZKvBBQ8bwjdbsC3hmRHMQvh62808r454wj6fETy4JuTBCaRNqaw9sO3j2eCpsQ==}
- '@ckeditor/ckeditor5-ckfinder@45.1.0':
- resolution: {integrity: sha512-iOcz/z8W+sd0Kf4L7R6U16CC2GYDeujrQbtlGEg9gF1REJAeTZBxsK9LAcLSOHF7KjaJSykH1GJpzo2Kzp2lKg==}
+ '@ckeditor/ckeditor5-ckfinder@45.2.0':
+ resolution: {integrity: sha512-16lsbm+evNJhQKXMI51fFgkjITQ74a/xOtRBdoGbE6ui1V8T3K1eM7woFMguEwEAUMevgfUWOgAlBo95GjEZEw==}
- '@ckeditor/ckeditor5-clipboard@45.1.0':
- resolution: {integrity: sha512-+78bGL0OQPs3n1OTSssnfEvYLSuCNLkGL2c/7IdDtBi3EWVt5CAr8edb6DMSWDfnlCHCsSm6pUQF8GeTPhQLHg==}
+ '@ckeditor/ckeditor5-clipboard@45.2.0':
+ resolution: {integrity: sha512-9o1xdbQvkiCeOxIMFpJBgZQSpvBqQK9w/A1WtjzN64Wmdjr5brtdfm1j0TwaZXXGkoLKdvNPJZXuBwQYU2SWhA==}
- '@ckeditor/ckeditor5-cloud-services@45.1.0':
- resolution: {integrity: sha512-dyJ+TaaZQwO33GF6bmMpPRnRttwmrWZH9GCHhVH1LiPPyDr0GnU0YPbwzdhStW1Q9PVvqtgQJAyosvQ4y8qiqQ==}
+ '@ckeditor/ckeditor5-cloud-services@45.2.0':
+ resolution: {integrity: sha512-Cjbyk0sU1hox/683E/NGZEaFFBLzPbfNhg4go+T/P1ig6rUc0VdlRitxNI5byvGlKA/36EprRSqoVecVCjWnPg==}
- '@ckeditor/ckeditor5-code-block@45.1.0':
- resolution: {integrity: sha512-M+WJRmQvbYrj6Vm7p2he0pj4vgAFTqAoWB9aNRDR4JPTOM2ZTYhpk7vVBZpYNbbmaSP+opJIjnw86MEcgFtRFg==}
+ '@ckeditor/ckeditor5-code-block@45.2.0':
+ resolution: {integrity: sha512-lU5PIc7hDUqZ7GEVrZQBI863cMeoIFWhuY9yVBzOgsGj4J6FcO1GeRGOUNeedCnwjIIRh9+hGEBgYfc8dMa5yg==}
- '@ckeditor/ckeditor5-core@45.1.0':
- resolution: {integrity: sha512-rpJIkorFOMpHwhDjaRPpqI3NB4O44Vab/HH6KAnTTc3ZUoUzUL7+NlBweb5AHzOcmluXneQQrGQXB7J9bJqrBQ==}
+ '@ckeditor/ckeditor5-core@45.2.0':
+ resolution: {integrity: sha512-mNHNCReBAeBLkMSffq54iD/l5p+eViYWOo+iRoUyXw+qNStmNRWac2Gkl4oWvwn05At1Gpprzs4LqHeWTEMNcw==}
'@ckeditor/ckeditor5-dev-build-tools@43.0.1':
resolution: {integrity: sha512-Ca8nF0+SY4IA+apGUjGWp76CBsqVg0Oy7YqbEDDkIDV/AHqQX0ipFp3W6s9RMj/0Rm/FSL7EV1uKdLxa04zm5A==}
@@ -2031,157 +2031,157 @@ packages:
resolution: {integrity: sha512-qy+9myEN/c/LSQYbjwXx9P1YEIb3ms1gmTb3LwOzyZFeEZacztC5vKjEopBFQaNBy38edm9F97UXyANiZ+BUiw==}
engines: {node: '>=18.0.0', npm: '>=5.7.1'}
- '@ckeditor/ckeditor5-easy-image@45.1.0':
- resolution: {integrity: sha512-NyJ0ZilpFQKFGa6KFYlQpIrZpZvKnunuz/moTCOwh3E4yb84Wug6Nk+UWyvHXX7/olU9sgZevWFS9vLKb/yLfA==}
+ '@ckeditor/ckeditor5-easy-image@45.2.0':
+ resolution: {integrity: sha512-6wPMwLiYtYQU3SuPQv/B0ujz7IMBEzETbKfqNtYzDk1MvzSdvDSfI5GjIH1tqTyGmK7wtEaJVZLI2B1Wu/R1mA==}
- '@ckeditor/ckeditor5-editor-balloon@45.1.0':
- resolution: {integrity: sha512-DNHGX2W16kmT/Y7YG4nSSqBOrEhArC975dlYqGTSBc6HUIB6PTZPbzu5qdFUJ+vziXbtw4YdnqtZCuQHswXypg==}
+ '@ckeditor/ckeditor5-editor-balloon@45.2.0':
+ resolution: {integrity: sha512-z+aT3uHtZ10KbQnHYaAkZK4J7A17jjX9yU6JTnDAeMH5pFblXgvroe1zzMXv9SSOxmr2v5p95gE8GgNsEWSG1w==}
- '@ckeditor/ckeditor5-editor-classic@45.1.0':
- resolution: {integrity: sha512-ZIa6PPMPl4dawjcG4mTZy8SnHaS4kNOybPJDEIziWh+LLlTDnHlwXRZqjOqdLyWR2b9yrrZKnOrVdWIaOGs29Q==}
+ '@ckeditor/ckeditor5-editor-classic@45.2.0':
+ resolution: {integrity: sha512-6WbaINZsmCdXGftHGVu9qA7i+qnuEpm4LcQYfBthAdV9k0C/fp8j9IV26SR0Q9PfPk/KaT2XG5wB0uBxn72q3g==}
- '@ckeditor/ckeditor5-editor-decoupled@45.1.0':
- resolution: {integrity: sha512-wAfN1k+wVSaOMcDdTTdViHWqTzXulB6MEMNFceO7KjwmTqJwHGnVjMQRH5Z27oKnJltBvs+kW9Bl/AH2UcuBLg==}
+ '@ckeditor/ckeditor5-editor-decoupled@45.2.0':
+ resolution: {integrity: sha512-utIwy3xFdpgbZ+cBTnqdwRguYhENjFOHDTR3cukAE8mEm+Wq7hFy0muybQ/HnnRFJVZBRnEZTXr/ZQFEGg42bA==}
- '@ckeditor/ckeditor5-editor-inline@45.1.0':
- resolution: {integrity: sha512-KQvZ0ObX7Y5AJvfkagaQ7S0eVCF2zHENjENaYraAh5OoaeNTWReh/w57UiijH9dTfE6JEzqDjaXYepyIhmNOYg==}
+ '@ckeditor/ckeditor5-editor-inline@45.2.0':
+ resolution: {integrity: sha512-JX0YCj8mCV7SLZCFrkIhXvK42up9eKRQDcLOj9i5XxO5K+J8i+frqMCJCptHK8VH4ibxCRNojiGoudY5LADRMQ==}
- '@ckeditor/ckeditor5-editor-multi-root@45.1.0':
- resolution: {integrity: sha512-1arT2NWuzQduDz4OpTr1cc4iS4S036No9YfaJFoUmCMtpZMQck0MyD6dnjXOUoALi9qpVhMtxPsUU8lvEP1Ynw==}
+ '@ckeditor/ckeditor5-editor-multi-root@45.2.0':
+ resolution: {integrity: sha512-MmVq3Dis/3gKME26aVeIHWp+ESqoi9VJTazzjTBuqtuplwCfG2/NhaYvMSX4goN9HGkmXGtfgRONlfWSaLQiPA==}
- '@ckeditor/ckeditor5-emoji@45.1.0':
- resolution: {integrity: sha512-KtUpD/1XBt7oi0NdkQrZxCd/cvc+XFFcZVZfwpz+3O7ypBcJORJpTn+9x/7Vxo/6iyFoI4XBfMVR/4jTFYgzIg==}
+ '@ckeditor/ckeditor5-emoji@45.2.0':
+ resolution: {integrity: sha512-NtUTMRyv26iWd14Rr6G0zbwLeRsInj51WzsjPSf2YPw0/yqhV3ul9q4mYELfKBEG4op/uReH0ZTPbF7DQNUstg==}
- '@ckeditor/ckeditor5-engine@45.1.0':
- resolution: {integrity: sha512-3O1fsxi1wGQBz60vtKgSFNPSzU+R2jxUXDPDPhm88oCpqU5l5Giz+bcM7AVQg6b8wc8caVu5dVeR4/U9JsqGmQ==}
+ '@ckeditor/ckeditor5-engine@45.2.0':
+ resolution: {integrity: sha512-jr9/pT5TaY1rew6ncNX4z7Dtjni5RmRf7u4mEt1TKPKhzDA5vszN+ZMj7wwa3nLtLLMiOUej5da2z3aDjvWz6w==}
- '@ckeditor/ckeditor5-enter@45.1.0':
- resolution: {integrity: sha512-TWuTFnSwFdnw7FPQBZL8rMEL8YCZ+9FXyNZua2tQ07trMoLHMyP7iiiCNhReDX3DIdnGMAQVMLnTMO3Xs6puhA==}
+ '@ckeditor/ckeditor5-enter@45.2.0':
+ resolution: {integrity: sha512-E1fAKr3rFknUPFfVH1lbemLtFCMmysNXY1BKT+LFBhpomk+aJ6yk53EJdqPSYQdbPCQHg9ebqAA5JVMxxaFshA==}
- '@ckeditor/ckeditor5-essentials@45.1.0':
- resolution: {integrity: sha512-ktQUTvbGHZdTcv/9Pt+LYi1ur6nuypf3WhosGkoqYCh6MOBlLwrtpsEY7hJpPwfZxFl548gCQXSMy4V2ePoVyQ==}
+ '@ckeditor/ckeditor5-essentials@45.2.0':
+ resolution: {integrity: sha512-z0CSUMTPHSr29agNg76K3rwI5mh3EAYvlu7BIzgzfZqrKVdAiJHwzbdBqU/LU2JorhLl4ZTHVb3H4wk4fHzxug==}
- '@ckeditor/ckeditor5-find-and-replace@45.1.0':
- resolution: {integrity: sha512-0RwInpUvjFll1Trl0B0KCtoWmWQLrClnTu1Eol1SPnY2C/oYroB8I7UPHChhwvSNaw1l8FYuXx4uyaQoSXSQMQ==}
+ '@ckeditor/ckeditor5-find-and-replace@45.2.0':
+ resolution: {integrity: sha512-Fn7vhHX8baV7MQgm5fr15sG8LS6QUyqvqdvY05gQuv4+CVs3HBgK2zdNznQwUFoI+Zlyk0erEhKnWdyTCYRcxQ==}
- '@ckeditor/ckeditor5-font@45.1.0':
- resolution: {integrity: sha512-7DqUhpoRYRajDWYFa2hIBypjNJ6Y6XwwiQO1UFZc0TFzbF0pqjRAqrE1Tq8Y5L9IGFUKW/H2pSG/OLcuxdBKoA==}
+ '@ckeditor/ckeditor5-font@45.2.0':
+ resolution: {integrity: sha512-EEamXmHw+Kckhjk7JmaxA6fDVK7P6rwAWGqmZiJzwfO0g7BRwzp/BtjTmXysbWVvaCxm7bbnib/OKX6MP8ZyWw==}
- '@ckeditor/ckeditor5-fullscreen@45.1.0':
- resolution: {integrity: sha512-K+ON+IHuGU0tHOyevwGu71l094NPcLVqmal7fQ8gzydztyR/7SiaBBgi4tKO3gz7T/PCCwszV6dNS2GLFOSVPg==}
+ '@ckeditor/ckeditor5-fullscreen@45.2.0':
+ resolution: {integrity: sha512-bYj3jt42X7qPpkJUGc4N7n+EzwsoHIVInVAHYXHeJLkN8axuiLraGAe+pguZvwRalMJOkIDqXj/flpm8go2x9w==}
- '@ckeditor/ckeditor5-heading@45.1.0':
- resolution: {integrity: sha512-E5VNB4cMGLIVzyPmDEABuJu4jK93qVdTTzM80w68xPYPsLHJs9qcdix1XbZm52Bd7oEXLMFI7XRw8MxNoYNxgw==}
+ '@ckeditor/ckeditor5-heading@45.2.0':
+ resolution: {integrity: sha512-yURkKMAtr9RY4LutfLSTSw8L/uRpWRi77NDFeknRv2h90/ouOImXBQuluwmIWfSgQ2o6HoTPvb+nd1EItF1uqQ==}
- '@ckeditor/ckeditor5-highlight@45.1.0':
- resolution: {integrity: sha512-zu7SOeKHEiU8XxRvwHC2eliYADERxsLppx7al9MhBUqfBhKGK5clOmvG7gjn88pGazmAs4iAABKy6pV0AJZSpg==}
+ '@ckeditor/ckeditor5-highlight@45.2.0':
+ resolution: {integrity: sha512-+JRQ9wfO0dBmla7iA5KVbMWHAgIf7vxRaAxnRixzeZJyY46p39rZmKK6h/olwMzdfiiAoufGnJSlQRsjiPTC8g==}
- '@ckeditor/ckeditor5-horizontal-line@45.1.0':
- resolution: {integrity: sha512-R2BUcsm46LzV/UtLoXPKBOKQfEkvrfFSsyNR699yK0XdiRBAd54t/PX62vckZ6irU77hk7NhM7R3qnxd6hqV7Q==}
+ '@ckeditor/ckeditor5-horizontal-line@45.2.0':
+ resolution: {integrity: sha512-wOdM53nqs9rTNHj3I5jfQnac2rrEqirMEu7wCDLBzGKDCsr7X7wBeH6oMLM7ML/+g041p3xXLRKrX3K1mBsXZg==}
- '@ckeditor/ckeditor5-html-embed@45.1.0':
- resolution: {integrity: sha512-LIC7FoQcusjp5tJ4PvYp3XwuPIOoEPevJIzXb8OBC1+8FwE9Iqp4Qg+3JIOS+wpmQymq/IpNAXJ4jzZ1QFUoSQ==}
+ '@ckeditor/ckeditor5-html-embed@45.2.0':
+ resolution: {integrity: sha512-SfkmolUysYvCGc05A2t8AP7F6DH3+kuO2bKLu38mv0mVkm4bD6/7CcZh+InN75YQD42uAL5DhmGqUZklrgNdSQ==}
- '@ckeditor/ckeditor5-html-support@45.1.0':
- resolution: {integrity: sha512-U1e9XiHHvcilUJ1bN1Wut/54ZLVxH2+LDhuokeBo7/erY6Q2HEIKSL/92bQykr8mnVSuZoKa7mFXHLMg5tLlQQ==}
+ '@ckeditor/ckeditor5-html-support@45.2.0':
+ resolution: {integrity: sha512-MRKO/hMQXwOOcXWbQra5dD2ztSFnnAQAO7hlKB0vYbhRcGjruhivDOHNrDjQkkdckJHv/C/xTKuvtE6RFX34tw==}
- '@ckeditor/ckeditor5-icons@45.1.0':
- resolution: {integrity: sha512-DeRpYnTn+Eng7HBvvn/y46C/du48dVGs7NHfY8kXLOCMY0G30fb1KrdqaYy92Rdsd/vZKCkPcXHw7PchRPbepQ==}
+ '@ckeditor/ckeditor5-icons@45.2.0':
+ resolution: {integrity: sha512-8BSpnnBYnhfRWd5QZuqzwTRmG8BL+WXB612Alo26T+EWJi3tiuEgNq1qm9EUVKj6j9dNiq87dNXKyQQY7B/7Gw==}
- '@ckeditor/ckeditor5-image@45.1.0':
- resolution: {integrity: sha512-FOazPw6gCtWIEJQFnkcfuWZk2Z12q49ZSlegEvPsF8uM6ltayb6ywk5B1EGarmMQmuk7fDaCliHJ54P53LklKA==}
+ '@ckeditor/ckeditor5-image@45.2.0':
+ resolution: {integrity: sha512-x218ePIog5HZ83H7m3OeAuH4gdclRN+sJczXZAi9zGSYuRzUxHmqcXh2s4rDyrLc0tFf2TB9W6jjrsqokmXZTA==}
- '@ckeditor/ckeditor5-indent@45.1.0':
- resolution: {integrity: sha512-Y3nBgYYIuQfcNvAKb9bo1UtEInynp+VG+DriGIvPClU66EcMwJrYg4meA0mzyMFqEARu3G0mn9Ii1KIW1Ix7Cg==}
+ '@ckeditor/ckeditor5-indent@45.2.0':
+ resolution: {integrity: sha512-gdJQugvCrT5OpDdQCvCIl+zsgDxWFh8q+Aj+aL7We2LDDXg2rlbDuT/lBbXPEBObyuLBBo0/MthlwcirkBoXKg==}
'@ckeditor/ckeditor5-inspector@4.1.0':
resolution: {integrity: sha512-yKoIFpaSVQQIhgFEyoltwG40OSsWX5psYdYvNxW84nfxgrs90DJrbMQDtdchVZNMXBu6CkJfPiPG0WBLU9su3g==}
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
- '@ckeditor/ckeditor5-language@45.1.0':
- resolution: {integrity: sha512-97ghaibmyHr0Lwd4E8lagKngnfdZEpBG0tJ5C5E1OXhu7uhMX201C7/JX4Mw+ZtyZ0fTxdTDiRiypDIoHlbowA==}
+ '@ckeditor/ckeditor5-language@45.2.0':
+ resolution: {integrity: sha512-1HW4Uz/7DwfKUvs7X9j5oN4+U6MgxH/uyrGbA3CZ9U0UyWDvddB0sUhiMVm1lv56tup6rnlilwGZRetwd6YXrA==}
- '@ckeditor/ckeditor5-link@45.1.0':
- resolution: {integrity: sha512-/JEHiklcG8mYEveyzhVAKfNSIqk64dqp8v9OkwB6VPFBMN3q7jemRi0gExBc6+HznDjBlM+0nmRB810sQnBuBQ==}
+ '@ckeditor/ckeditor5-link@45.2.0':
+ resolution: {integrity: sha512-0KHaoF+/tpHcJljdxdnrKRrPgtn8YVVPz/wyuTITeg0aO+K6r7UbtrB/LEsLOv8MUO/KLcb9LtlgCZw7Jxm4VQ==}
- '@ckeditor/ckeditor5-list@45.1.0':
- resolution: {integrity: sha512-T4kcaaqAuq0acYnw77G9fFKHDMZSB/X6lqNx0Uh68D/LoXyg44nlP3Bhx2HSeLsBUkrIR1WOTYuya59wF4tkGQ==}
+ '@ckeditor/ckeditor5-list@45.2.0':
+ resolution: {integrity: sha512-pXGpmkPhHxVmIDJnfjAaCuSS1MxbGJ29vJ+tHy9avTdN4oQjQJX3HMaKg7Fxq8iqsHKrXvMFM3k3kLq+ff2IFw==}
- '@ckeditor/ckeditor5-markdown-gfm@45.1.0':
- resolution: {integrity: sha512-stJpJC1KYiwYcJwzUmj5eg+g4GPz/rg/guiyN30jXDv0fRoUevsebhjCt+21Iwk9p1fvdcxm4At79k70MSVqtw==}
+ '@ckeditor/ckeditor5-markdown-gfm@45.2.0':
+ resolution: {integrity: sha512-o6II688bVNBEC/or4v1JwSW0O1aAroyIbv0L5eimoMhCDPp9/6HRK4gSLKcC9nemwKKko0X+fSj0R+E/6aXpXw==}
- '@ckeditor/ckeditor5-media-embed@45.1.0':
- resolution: {integrity: sha512-5mQEVb6P1AOH64CucfyAAE7NRf65VkVQUDfPxfbtXXAnwfVCW5PCoE3ksW3TV7QbZGlL6zlZEfP4wnJjpKN3Zw==}
+ '@ckeditor/ckeditor5-media-embed@45.2.0':
+ resolution: {integrity: sha512-VIoc/1T6XtM6M6PblWHu/hKShVlVOXx+dzMfg2W5dX99JfWXoevrABIqVNLlHnDhhM9SNDqW94Sos2yfZ+BeVQ==}
- '@ckeditor/ckeditor5-mention@45.1.0':
- resolution: {integrity: sha512-gbcuEqeI+AwQJ4TdCFKPQNWgWdr21Ht/b5KE0n/AvQHHW+KHzTTRQl+gKrt6CGCkC3MpllEokG7xhL7hHyyrpw==}
+ '@ckeditor/ckeditor5-mention@45.2.0':
+ resolution: {integrity: sha512-nBBEArPfYiopARSOI2TwbYCxLk9ALdKc/3qh2D2rjQwvoJ6zn7nBBoiDBMbhO2XC6J+AkUYQNEqcNVS4j3HIew==}
- '@ckeditor/ckeditor5-minimap@45.1.0':
- resolution: {integrity: sha512-mBkfs65+3tJUsJQjduW2zPuIsg4Q72Y2JSPr0Gw1+XYaEekZfCbhj1x6LvWQFy1waZQk7TvlBxGNTCQjo4DFBg==}
+ '@ckeditor/ckeditor5-minimap@45.2.0':
+ resolution: {integrity: sha512-24X53UrzhzppPHECa17Xb69EcnXuV/ktaSTbYFncIDbBFef4GwQjkQweplmXdgNRh630GLlhQc/GCCtbhIvDlA==}
- '@ckeditor/ckeditor5-package-tools@3.0.1':
- resolution: {integrity: sha512-nLxyUxuEIObypWu0JMs+7lpGvdhQcLnyZxyi2ZAHHnRqr+FjsUwoVyUa+uisY+yQsFyj4mMeTurPEdBYmn6JNQ==}
+ '@ckeditor/ckeditor5-package-tools@4.0.0':
+ resolution: {integrity: sha512-LSNB5Q51A7nZL2N/o7EuV3TcHn2rncpc1qucP3GgJstYSXELY37NEGgprGKWJPH20tQqs1vJIFO7L4Jq6h1h1A==}
hasBin: true
- '@ckeditor/ckeditor5-page-break@45.1.0':
- resolution: {integrity: sha512-O2hNGkvz88Kpy9vlhByd/7p81N5w1htuLTqS+fojpoFV13rwbwyX0g3EOVJwk7uSEk0L1iomNo1zDu87sNkKIw==}
+ '@ckeditor/ckeditor5-page-break@45.2.0':
+ resolution: {integrity: sha512-hKjc/pJS8CbCwQXJMmBb0EbqBjCb9811E+08SNo4o0AztZfFlxvZPcua4GjckWWQYYtjdG7GviTe+pmnR4vT+w==}
- '@ckeditor/ckeditor5-paragraph@45.1.0':
- resolution: {integrity: sha512-FST+msgRQ8M9pEiv9Whhn2v0H1hhwlfccf3BKxZ6BI7o2V1HyOZ5l9NxCKhD4ujN5mw9whAY5TrTApwyXEZqXg==}
+ '@ckeditor/ckeditor5-paragraph@45.2.0':
+ resolution: {integrity: sha512-6Cb7PdZigDe/wxDbIA6ZEmQFqDzOXfkzS8frXiQZ5EoU9DcylrF9GgRQhCO3vC2v0SoymqBZ72ldxGxHGhaVCw==}
- '@ckeditor/ckeditor5-paste-from-office@45.1.0':
- resolution: {integrity: sha512-AkvINYiuEF+D0DuJT7+tMwYCUmWWys8hwksvotihi6rU574UKf4pBrwYip+1BQuQ9FSb142/LUfixRRU39cKZw==}
+ '@ckeditor/ckeditor5-paste-from-office@45.2.0':
+ resolution: {integrity: sha512-lEvFlWW1xSzwX9+d8cfES7quvIjifbkKp3zy2x4pW3hSsk7ba4zNuV0ML1JRea95u79RjCNLYnK2FU3q0AXKUg==}
- '@ckeditor/ckeditor5-remove-format@45.1.0':
- resolution: {integrity: sha512-+6ml8//kp34HthxS5DA9XGJyJ9dw0Yxay6aqpbDYGIyClJTdwlUPjVuOAnRZfKhY/BW5ZZJrQleNww97YnUlfQ==}
+ '@ckeditor/ckeditor5-remove-format@45.2.0':
+ resolution: {integrity: sha512-NHHsbjSw0gXGgDW8eyuOIHRTjs6BtU3YJwhXFqLXP6h+RM1gs9xTypZoKAPF6IYqS8F9+73SNy50/bmSzGfcFg==}
- '@ckeditor/ckeditor5-restricted-editing@45.1.0':
- resolution: {integrity: sha512-qsYa9PpFnRXsBp6LbcsHbADGaVLQP91qGwFLiXNeaR2I0eYbJywRf+wbfgILGvhsQgZNLKld0AIM6h/yBqOTRA==}
+ '@ckeditor/ckeditor5-restricted-editing@45.2.0':
+ resolution: {integrity: sha512-HegnRobGiLHWkBtZcQVuPyUmbU6R5sFU0w2CKLLjQzqpgs9i1g2mTqcBr3GBPUdOty0v0nfc3r0Q0BM2X8Rtow==}
- '@ckeditor/ckeditor5-select-all@45.1.0':
- resolution: {integrity: sha512-Z/DSArfy7MUfHVaYMp4lJZos6XTiTWuyOzQEwp9BzcpiYyXHSRs+cH+JZYd7x5/JuddF9OsEZIqnS+xiw+PqfQ==}
+ '@ckeditor/ckeditor5-select-all@45.2.0':
+ resolution: {integrity: sha512-Q7qjnwnkDvev7wsIYV7kcqtap3Ki5PIUlEBisB8IBrnS+6JjZtkbVSbuRYK2E6Qfe0gDdz//tnOoUc4Hb65uWA==}
- '@ckeditor/ckeditor5-show-blocks@45.1.0':
- resolution: {integrity: sha512-61pmHQ82g3qS2ucmxJihFMwKashfJI6xcIHjqu09ctJlwHazq95T76uWH3s0fd5sBBx6cFZ5Dr4Y9Uz+hUc1pQ==}
+ '@ckeditor/ckeditor5-show-blocks@45.2.0':
+ resolution: {integrity: sha512-CCgj9R27PqMAat62COD/vfnX/YHWmFYzQCqyT88XuUIxB3GltsHEimxsZ+4uXo8G433bHeHhQWuOc9zWBh6CzQ==}
- '@ckeditor/ckeditor5-source-editing@45.1.0':
- resolution: {integrity: sha512-CDZbYt7903FjHOv0EnKVjmIw6g/Lu6gRMBv6HyDKzG+m3r+1blsCPOWlas7CPPeGsifxGE2+fS67DBuHlUelsg==}
+ '@ckeditor/ckeditor5-source-editing@45.2.0':
+ resolution: {integrity: sha512-3DZPIvuvjgpfD3kr6/TE210+wVTFHwML1RAKU0fcBfWbgz/OPr81DJAU35kcpaU4vwahurLAwc15iM7D+O/TGg==}
- '@ckeditor/ckeditor5-special-characters@45.1.0':
- resolution: {integrity: sha512-mf0crAk0x28c39rY/CatI7UMKv8HLFH4CTc/YvjtTBINqHvUoLuOYvJ9WnJh2SVxFS2YkYnxpfyppHaRp2/z0w==}
+ '@ckeditor/ckeditor5-special-characters@45.2.0':
+ resolution: {integrity: sha512-ZTGiLAiIrYRXJnnXjM0s4VyEt3Pj5BIsHvdfEy0sM2XdslQ3xjPHDvBz2r0hOSfysSWr1SZ4kPf2dwU1256Bxg==}
- '@ckeditor/ckeditor5-style@45.1.0':
- resolution: {integrity: sha512-MtBgioOzgQJWWoA952o8Y/51LwDaH8KkjYz78qck8fHTCR+aPnUJLs1z53aXq6AKFUFHMpu1QoR+66MIOXpmrg==}
+ '@ckeditor/ckeditor5-style@45.2.0':
+ resolution: {integrity: sha512-JQRGAf2FeQQp90oFNfg/Xq65tizF28Wbt25AXxT1g/WvaCeY8QW31cJc0joC8CKVvYGlFrzj/cN25TAwx/B8vQ==}
- '@ckeditor/ckeditor5-table@45.1.0':
- resolution: {integrity: sha512-M3FVHFKSBDhW4NVHRTZkbF8LCBIGX2nnX2B13dpLJArNvVcNfHsPsjM+y6O+lKX/bKgJw7bUTbxSvasoPbyvFQ==}
+ '@ckeditor/ckeditor5-table@45.2.0':
+ resolution: {integrity: sha512-sMYpAaHTx418RQwIsiHEQ1RXOhkmxXZxfVoThfFdCvdSVhVruCRmrXc6Thn809pJEFqAnAOe3t7Pf5gNIdFnrQ==}
- '@ckeditor/ckeditor5-theme-lark@45.1.0':
- resolution: {integrity: sha512-QaoVJ75yfi36uCju+rtUcxzkf0UwqHkZutswhiQ5U0CAp+uC5kKjPUSREFmH7yHY560uTR9Qx40//MB9+URbwQ==}
+ '@ckeditor/ckeditor5-theme-lark@45.2.0':
+ resolution: {integrity: sha512-oxW8jaa8YZcFoq9EgZUpRZhJS/YDlq7FBDahl92CYjhfHeCCXNWLpG48bx8OSLTLviFE+5wAR2fwvetwMhEkeA==}
- '@ckeditor/ckeditor5-typing@45.1.0':
- resolution: {integrity: sha512-lItJnsr0cnuM8aFTHHPbiNqh17Z0HDtdiIk9zpv0+t6xIP2kx92vk+ymkhNe44rM2atla6ExqTDkfvm5XOL54g==}
+ '@ckeditor/ckeditor5-typing@45.2.0':
+ resolution: {integrity: sha512-kIolXzb60SV9+oAA2tRz0gjsZgb/Tjyra6Jy1S+K7YPh8tMGaDZEhWzwNf4IZl6J0Ue840XwStZgA7Wnf1y1fw==}
- '@ckeditor/ckeditor5-ui@45.1.0':
- resolution: {integrity: sha512-4GynwAhsBxy/dTmVFG3gD4V25qI5rtN7gPF4UjABKIrMPTfF/1+lWXiS/KLUwQ1ftihR6TrwEOQ/AAQk/qEpRQ==}
+ '@ckeditor/ckeditor5-ui@45.2.0':
+ resolution: {integrity: sha512-nUyE4miGnBguqWpLkbtyQlGxmTq1Z9HndZ4J3r2+Db85CXVAQNvnBT62T1wdQlUp9hArEp16BgtYO8PwXTT6og==}
- '@ckeditor/ckeditor5-undo@45.1.0':
- resolution: {integrity: sha512-hahSIH+CWqetZaI1cUssvlDuwuSzXprBSNOPlULoyaBHej7otHzsdqWIyJoip+kOOb2gfPUioriIpKVaVd7itg==}
+ '@ckeditor/ckeditor5-undo@45.2.0':
+ resolution: {integrity: sha512-5ySaYtW2wgyYJCZauwJF96TbrCJBghzq28mbIay0M8G0BjQQNtSo8uDFlhYWVyoO0HF0qOFw5mbTsK27ggRS4A==}
- '@ckeditor/ckeditor5-upload@45.1.0':
- resolution: {integrity: sha512-D/A4U4/MTi5N3XAol00OTDzYc6hVjU25ShajvMkh2EVWhS6tdA+himQy2J2JI6KzORU3oCA1eMvuJ83gFFq3xg==}
+ '@ckeditor/ckeditor5-upload@45.2.0':
+ resolution: {integrity: sha512-t4oYi3OK/dYzVjPzZI55VxmHqfc9rA8GeVonQrnLOpQfBW3G9BHxDn4xzLhgGbKqyMKwDqYb1XIUoFrI84pvMg==}
- '@ckeditor/ckeditor5-utils@45.1.0':
- resolution: {integrity: sha512-YxGWzvlT0Is6L34Ejyl/TLASS9CCM8jDZjkqT2k4Zu9+xmkOsrPGKbL1az60NVD7rSGdY/DBDagxQNLzxMjUiw==}
+ '@ckeditor/ckeditor5-utils@45.2.0':
+ resolution: {integrity: sha512-SFRh25D5szN+AhnmzNwgef8zJFQisl9tP2f3GR7Mr4bVHzzyz/9SY/ZkGTwOG1Q5lt0kbwQyL3WWpDLfVkWPpg==}
- '@ckeditor/ckeditor5-watchdog@45.1.0':
- resolution: {integrity: sha512-+qnHn30D9QDbtp1VdzO3gpnUBQKLxQqTS+2O5k9DxwLHErDcQGTudIpwZhdwESzjBjzB8De1lS1Ftzvn7Q+nyQ==}
+ '@ckeditor/ckeditor5-watchdog@45.2.0':
+ resolution: {integrity: sha512-AnypB1eLI6xb6FEWzqkNMzYfmowE0VFlbtUAve6EPHQkRgBM1AAYoxoF00GpFDfpVanBdsE5T2g2HHndCvaR/g==}
- '@ckeditor/ckeditor5-widget@45.1.0':
- resolution: {integrity: sha512-MzAw89pG29QOTBJchtqqr327RdNK28R4b+eBMB2LwAGz9c6wVZjyepn8ZqiKtACvNZ2aC2xgdJOGvpZ4VJiqTA==}
+ '@ckeditor/ckeditor5-widget@45.2.0':
+ resolution: {integrity: sha512-Iu0mIp+T1Vb0FstIMW1w8qh3WeCE9jnUUEvTDKQEAp46r3ldjH9znWgkXqYqxyMGME6d8x2pL1Ewb14sAoUiHw==}
- '@ckeditor/ckeditor5-word-count@45.1.0':
- resolution: {integrity: sha512-CW7yktPoxakqOAniY+xDY5MAvdpIMvULj6XGWHskgB8VdumcaWF74Nam/mE5Hs2WuKMNBgTnFnsdGoRSGlpJzg==}
+ '@ckeditor/ckeditor5-word-count@45.2.0':
+ resolution: {integrity: sha512-zGhP62Nfebr7EKlGX509fkeO588DHL2YnkQzgEBZA4CkvU/5lden1pZ1gEK/dD3qKuLgujCXTWt+TuiCn8Z8QQ==}
'@codemirror/autocomplete@6.18.6':
resolution: {integrity: sha512-PHHBXFomUs5DF+9tCOM/UoW6XQ4R44lLNNhRaW9PKPTU0D7lIjRg3ElxaJnTwsl/oHiR93WSXDBrekhoUGCPtg==}
@@ -2664,184 +2664,184 @@ packages:
'@floating-ui/utils@0.2.9':
resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
- '@fsegurai/codemirror-theme-abcdef@6.1.4':
- resolution: {integrity: sha512-GN0+41KESPiMR87jwlNq7DTqNh7NlVe/DRZwXY1sfGoLGWFmFCmRshU44wfaW9BDMtLVdddFi9zhJyeEk3rfcw==}
+ '@fsegurai/codemirror-theme-abcdef@6.2.0':
+ resolution: {integrity: sha512-/MKY/FDRrkVrsxOkf9ushhFTgcoA8VNmqr7xEmfjwq85PcdiR5w/txXbBUGowa34KpScCeFGTrG+2L0CYmUVFg==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-abyss@6.1.4':
- resolution: {integrity: sha512-Rr5LM7z3LSoeZobunHe3cxlpQ+FU+eo5hagxoAlW+UCl50VGK55h7M8tI/XF8Ry3H7G2PWwacGHjweYiRhhzlA==}
+ '@fsegurai/codemirror-theme-abyss@6.2.0':
+ resolution: {integrity: sha512-ZLF60VBCo922bicL3hddnNF8SQgMz+b7pI5+A9fzQ+c3zsmVF8n2wmPxan0qIrkB8TRn3nUsz4aQjfhWir8UVw==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-android-studio@6.1.4':
- resolution: {integrity: sha512-NKIPzqnk85a3S+dXf7xo2kIquEEHG28GiByILyr/tE20jGho6w+HLDEa4Jng2Lcw34fa5em67idVSG2OcKlc3Q==}
+ '@fsegurai/codemirror-theme-android-studio@6.2.0':
+ resolution: {integrity: sha512-iI2jWZMqpxbffLiGZ0HnObpFHA3wAgVrZRU2IRbRyBPnnH+bO3kXKDvanCDH73odzGCFMINAQ837WHynjLhvaw==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-andromeda@6.1.4':
- resolution: {integrity: sha512-CUD/sHahsA2sZO9Px+G1r1QXg4aqs8ZVA1xe1QhU0Qf8Rc8wI3L0VVBmgvvvNB37rq3YBTyeDpMkxs2XafEUGg==}
+ '@fsegurai/codemirror-theme-andromeda@6.2.0':
+ resolution: {integrity: sha512-5p2kYi9PuorG3BWBCgxphg9p14IUOWwbVCv4JTmI7gqBko0pIhqTSt1Q+N9aTQgaytZJC61zD3lWXfmD8K84vQ==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-basic-dark@6.1.4':
- resolution: {integrity: sha512-Q/TNyBP6Gzqc7lFZu54dUm1mt7t2pTw47iFdGjA7AlxZC5XZX9i1Yn+nPuzVkzweY0C2LTIGniQ/oWs3vel0xA==}
+ '@fsegurai/codemirror-theme-basic-dark@6.2.0':
+ resolution: {integrity: sha512-C7EdTKdhVe7F4bsTU+z8W6eBIX75c/pGG103vPVciRsRp87ZjI7lolpo/mFBHoFEjF6Ijn+5X/MnKMxlH+wsQQ==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-basic-light@6.1.4':
- resolution: {integrity: sha512-XSn1QHSqMJC4vBj51R8kcoUqYT6EN1zocuWw5lk2DI/Jg9R6nxNOXavA2DNtwDY+18nLD5dy69vRmaUYHTwOng==}
+ '@fsegurai/codemirror-theme-basic-light@6.2.0':
+ resolution: {integrity: sha512-C1Gd7LxlFL/SsvCp5/KONjVb0e349IqoxY+HGkFnJ4v8KAfIzqDW/9an91T//pxSlrsn/CUrgpWKc0bwyU4c6Q==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-forest@6.1.4':
- resolution: {integrity: sha512-FOdjnwsotfIZoNpxe13RAl0Nfh+DGo5U5Ngi4JqFx3IvZlkXT3z60r7olVyAsGGG+/zhLKlo1W0t9n62PZyo3Q==}
+ '@fsegurai/codemirror-theme-forest@6.2.0':
+ resolution: {integrity: sha512-/K1QFwJhBQCmd92cKraeTBkkcfPXbTC1bSvUcoODqtR//sqZF17rvd2wpU9633K81pmGbLVPHLwxcAnnXVr4VQ==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-github-dark@6.1.4':
- resolution: {integrity: sha512-hhlOFLuKqoezSAOd8PZQv/NSzjDY0PeVbJj1xnbMuVVI/DRSVh+NCAKQEfqostG6zBa8/HJ1Xj//rva7QmTTYg==}
+ '@fsegurai/codemirror-theme-github-dark@6.2.0':
+ resolution: {integrity: sha512-XmKajOLo6n/gzWmzw90tL8OkS06oEYBKbokJMrDZ6amBdKHxIE5bRC4pRklEs/avcwMvLuuzRDoEoAamMQvsIw==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-github-light@6.1.4':
- resolution: {integrity: sha512-jO/P6j+YhlORYT/dpgV4kg+F3FIDt+CLEwPTBfgQ1a/4ts4uHxoAnTy+jWLdumOVe++pnfl4hdDXJNmLIxkPfw==}
+ '@fsegurai/codemirror-theme-github-light@6.2.0':
+ resolution: {integrity: sha512-k6nFCSQnGVHGVpKjPv6Fz3krjAg+3bTmMYvIB8XwEEfsmlfaqQ5BJ3SALTgaMEQl9Oyj3OCtL9ZKvDElZoa6vQ==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-gruvbox-dark@6.1.4':
- resolution: {integrity: sha512-/O2cJ3ktO4hESyBBlyUWL53mzVA5g9MxENArgLfOHcnFlk/mZekKD0Y77Rm0k+IW4wWOhAZJuN2mJkozv+jZ2Q==}
+ '@fsegurai/codemirror-theme-gruvbox-dark@6.2.0':
+ resolution: {integrity: sha512-AeQrgfP/6bometuQizMSaVbXv8ZAfyl31opL28dvcq4N1XasYTunCYom2FctGs0JWYEnLXzT3rOs+INwg69DLg==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-gruvbox-light@6.1.4':
- resolution: {integrity: sha512-6qq+PQqgHKKqRK1DefIQCMO47vqJ8+0zy+fTS2HweFkplb0GH2JHXTNwbd/aEyhty1qqn3zrkEOEohHzw0KJxg==}
+ '@fsegurai/codemirror-theme-gruvbox-light@6.2.0':
+ resolution: {integrity: sha512-9iEIBHY8ADwaesp41dYSvUiz6gx0JjyQYnwQvALexObbFkHiRGOBWwFpTyMJa9CHcTKrGvVvlX9sg416IDMauQ==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-material-dark@6.1.4':
- resolution: {integrity: sha512-n8Boue6sQjSrizVGmeR2V6cRE+1d33ijHQFbWXdNTiyDO5mDe9r2+Dt1KfssLIl2Z+8adjjJHgDIGMjdxkktcQ==}
+ '@fsegurai/codemirror-theme-material-dark@6.2.0':
+ resolution: {integrity: sha512-lPy1HxZs6qWAXzwUMnJDo+aGvZbKvb4fyL0j+pQ1+YIVUjyzYESmq4HgsGKrkFk+OYRpqQ07kgowlrL0PO/UTw==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-material-light@6.1.4':
- resolution: {integrity: sha512-DUnfO5QqbheNjp34IexWVthBCcF9jPDY3IiTiB+Sb0osQNW19vJOyBzZ/J8guT0/KRmM1+lnsHWsTOC6stEGGA==}
+ '@fsegurai/codemirror-theme-material-light@6.2.0':
+ resolution: {integrity: sha512-tLLqnFShWTuoA3Y2lGOZQ3gtOOvIeU5221byAu4shFmMrIxwhHFZtJxJpRgq+q2t2jS3a8UTWucB6+xGxRn3Iw==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-monokai@6.1.4':
- resolution: {integrity: sha512-kVyOAikXaXKXArJx3GY5S+SxuVB++p4HydxFIXMPujBlvNNQNZ/qdkw8GPWe+4JbdaqhqEbv35VUlTrh8sYJtA==}
+ '@fsegurai/codemirror-theme-monokai@6.2.0':
+ resolution: {integrity: sha512-AZmTQGn0JArnMwPXUn3yWlFxyr95DAFAi8ehuUcDTCZbTheoB2w/uRwPWN7li0zAUKi1H8FQbZ1K8+YGP6FXJw==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-nord@6.1.4':
- resolution: {integrity: sha512-tMPJ47BRdLdsnhFE2gHsNN8px6Gfvmgg8HTYvA4fI5deCNZVJQPNf3N6iLqwAkSaXXF27YLRlUhuKCShzc2Lyw==}
+ '@fsegurai/codemirror-theme-nord@6.2.0':
+ resolution: {integrity: sha512-PoJSEIKpCxB9NA9ocvp/WZFleD2GSe1hqhh60MDSaKSFnGP0yydWl0V0vQshnJsgzXyAjQmCEaD3Ujhbl8624Q==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-palenight@6.1.4':
- resolution: {integrity: sha512-YZcTEkkiwz5lr12FmPf4JU/gUb1k44eEW25Vj0jzCZwBu92vWESRD1RyPqKjl7p9TxAJkLNBCIC82A7D5uMhRA==}
+ '@fsegurai/codemirror-theme-palenight@6.2.0':
+ resolution: {integrity: sha512-8hOFcYyYhqhInZ7p4kyO4cfASps9E9HTw32g40HI9CFoC+z1Ip6vcI7BWAc74WBouvBLM7uO39gE8shnpvQ5jA==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-solarized-dark@6.1.4':
- resolution: {integrity: sha512-uEmGoajR8r1WPUhsUHTx22GXlDuoFniFjStULlNYrLW5pZOBJOOtHBt3H/D/vSVGfXI0Nur97oZdQTziSfIq2g==}
+ '@fsegurai/codemirror-theme-solarized-dark@6.2.0':
+ resolution: {integrity: sha512-4Jetr97zr4h1fTPmYN+uzIlvMcxVLfSg9YQHbj9zccIsFxgbuAg6oWw3QyvlOOnoTclU7JQd44o/4fSi5XyMEg==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-solarized-light@6.1.4':
- resolution: {integrity: sha512-cl+oiBHDJrNUKAagQNusoOsOlIS6dyDQs81mhdR/yd71BZLkesh/pca6SOU56R5+3GgcOQZEn56UQ/K0OAvnAQ==}
+ '@fsegurai/codemirror-theme-solarized-light@6.2.0':
+ resolution: {integrity: sha512-GFwucVQXl5fpP4Tlv6gTmj4kRw8+wgGem2be6YoeoYMvtvz7R0CZvxrswIYyBd1ZHcV3f9AduQ/ohMAKirePnQ==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-tokyo-night-day@6.1.4':
- resolution: {integrity: sha512-ufiBY5aGZRftAjG6hueImsGPIBEie/sEGu3Ms/kMrWh0Tgo+NtTJDFECTZ8ukJupnBBk7Sr774Eg3P/7t59p4A==}
+ '@fsegurai/codemirror-theme-tokyo-night-day@6.2.0':
+ resolution: {integrity: sha512-mXu41FIX05S9f4O697jTHoea8pdu3RAv7ydOTqn4bA4JWD9vzmBU7CgKvOanZwgzr4MAuAs6HQJE6XYaesBpRw==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-tokyo-night-storm@6.1.4':
- resolution: {integrity: sha512-n7RsAHZAfsx03JVDeCNFS42bOp3FbkFVi1kg+KJlAB9CB1aGI4qkG5QaTbH0d5qaFtPZXqJlyqs6PlwKbRqNjg==}
+ '@fsegurai/codemirror-theme-tokyo-night-storm@6.2.0':
+ resolution: {integrity: sha512-q2/SFJNqlfzgMHIMU/TlxKf5i9aSZeaTO26BP24OIraRIDiTrt0YhW9947h952z8aXF00DMjfTNOqym4r5wVjw==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-volcano@6.1.4':
- resolution: {integrity: sha512-J6GKrvU1JqLWP64s/uw/vy8ELd9rsqKAezGjTL8Lh8OyfdmMfDuz8bv31oJyrUL2qSwdGButk8eanCZTD/uvdQ==}
+ '@fsegurai/codemirror-theme-volcano@6.2.0':
+ resolution: {integrity: sha512-AmAgywdD8cTN6eLrE8BlKEsazocLhlKyQ8vp5UwwrJtOAgc+TOK00xnmaz2fHVSdGpy1ocoir4EsyQOy1m4OFQ==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-vscode-dark@6.1.4':
- resolution: {integrity: sha512-y+TuRWY0oUqD6OVS0gGpa1Lwfhp9YO5yvVbfnrkUhgzSlahrLc48UieQw4BUlGL4c6YUnWL56RMg1vce/sj/Zw==}
+ '@fsegurai/codemirror-theme-vscode-dark@6.2.0':
+ resolution: {integrity: sha512-qXBAJ5CF22oS7TpOIoG+ODBYl/w1eaFWqP+jhbdSHQEydQJRaHU86J6s3RcW4UyBF3jUkrtC+Rp/p8pP7OnwFA==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/highlight': ^1.0.0
- '@fsegurai/codemirror-theme-vscode-light@6.1.4':
- resolution: {integrity: sha512-3C1VL1pi8/W7T9pcfxQYF08HHw31/r3LAQJZVPOaAqX+kgU8KN+7d5eb6IIspU2RwdzEE5vOFM+aigWzoInY3w==}
+ '@fsegurai/codemirror-theme-vscode-light@6.2.0':
+ resolution: {integrity: sha512-C2V5EPm0xqSNb3slqczf4s91Eo+KaATH7+Am3KXxSV/ilSiAFMoOuWIvXe0gq4nu+PhKFVKX+yy2+lp/8S1SYg==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
@@ -4649,8 +4649,8 @@ packages:
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
- '@types/react-dom@19.1.5':
- resolution: {integrity: sha512-CMCjrWucUBZvohgZxkjd6S9h0nZxXjzus6yDfUb+xLxYM7VvjKNH1tQrE9GWLql1XoOP4/Ds3bwFqShHUYraGg==}
+ '@types/react-dom@19.1.6':
+ resolution: {integrity: sha512-4hOiT/dwO8Ko0gV1m/TJZYk3y0KBnY9vzDh7W+DH17b2HFSOGgdj33dhihPeuy3l0q23+4e+hoXHV6hCC4dCXw==}
peerDependencies:
'@types/react': ^19.0.0
@@ -5781,8 +5781,8 @@ packages:
cjs-module-lexer@1.4.3:
resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==}
- ckeditor5@45.1.0:
- resolution: {integrity: sha512-GvywHMp0uv5sEwkEaB/hqtK1UXDmr5njsLJ4k8ajz4Hx0su/hKuMl+67FnCqMhOxf4OhY/7FRQiiazDTufQ0vA==}
+ ckeditor5@45.2.0:
+ resolution: {integrity: sha512-1qmimEn9buiaadFq8e8ixUP/9rMWZ7YCw0UX6RokPy3njEUByXLlni20El6nMvDG1OEtPiYvl/G79DSs6DiN8w==}
clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
@@ -6855,8 +6855,8 @@ packages:
resolution: {integrity: sha512-bO3y10YikuUwUuDUQRM4KfwNkKhnpVO7IPdbsrejwN9/AABJzzTQ4GeHwyzNSrVO+tEH3/Np255a3sVZpZDjvg==}
engines: {node: '>=8.0.0'}
- electron@36.3.2:
- resolution: {integrity: sha512-v0/j7n22CL3OYv9BIhq6JJz2+e1HmY9H4bjTk8/WzVT9JwVX/T/21YNdR7xuQ6XDSEo9gP5JnqmjOamE+CUY8Q==}
+ electron@36.4.0:
+ resolution: {integrity: sha512-LLOOZEuW5oqvnjC7HBQhIqjIIJAZCIFjQxltQGLfEC7XFsBoZgQ3u3iFj+Kzw68Xj97u1n57Jdt7P98qLvUibQ==}
engines: {node: '>= 12.20.55'}
hasBin: true
@@ -13008,7 +13008,7 @@ snapshots:
'@antfu/utils@8.1.1': {}
- '@anthropic-ai/sdk@0.52.0': {}
+ '@anthropic-ai/sdk@0.53.0': {}
'@apidevtools/json-schema-ref-parser@9.1.2':
dependencies:
@@ -13861,120 +13861,120 @@ snapshots:
'@chevrotain/utils@11.0.3': {}
- '@ckeditor/ckeditor5-adapter-ckfinder@45.1.0':
+ '@ckeditor/ckeditor5-adapter-ckfinder@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-upload': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-upload': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-alignment@45.1.0':
+ '@ckeditor/ckeditor5-alignment@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-autoformat@45.1.0':
+ '@ckeditor/ckeditor5-autoformat@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-heading': 45.1.0
- '@ckeditor/ckeditor5-typing': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-heading': 45.2.0
+ '@ckeditor/ckeditor5-typing': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-autosave@45.1.0':
+ '@ckeditor/ckeditor5-autosave@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-basic-styles@45.1.0':
+ '@ckeditor/ckeditor5-basic-styles@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-typing': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-typing': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-block-quote@45.1.0':
+ '@ckeditor/ckeditor5-block-quote@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-enter': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-typing': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-enter': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-typing': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-bookmark@45.1.0':
+ '@ckeditor/ckeditor5-bookmark@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-link': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- '@ckeditor/ckeditor5-widget': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-link': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ '@ckeditor/ckeditor5-widget': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-ckbox@45.1.0':
+ '@ckeditor/ckeditor5-ckbox@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-cloud-services': 45.1.0
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-image': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-upload': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
+ '@ckeditor/ckeditor5-cloud-services': 45.2.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-image': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-upload': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
blurhash: 2.0.5
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-ckfinder@45.1.0':
+ '@ckeditor/ckeditor5-ckfinder@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-image': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-image': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-clipboard@45.1.0':
+ '@ckeditor/ckeditor5-clipboard@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- '@ckeditor/ckeditor5-widget': 45.1.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ '@ckeditor/ckeditor5-widget': 45.2.0
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-cloud-services@45.1.0':
+ '@ckeditor/ckeditor5-cloud-services@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-code-block@45.1.0(patch_hash=2361d8caad7d6b5bddacc3a3b4aa37dbfba260b1c1b22a450413a79c1bb1ce95)':
+ '@ckeditor/ckeditor5-code-block@45.2.0(patch_hash=2361d8caad7d6b5bddacc3a3b4aa37dbfba260b1c1b22a450413a79c1bb1ce95)':
dependencies:
- '@ckeditor/ckeditor5-clipboard': 45.1.0
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-enter': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-clipboard': 45.2.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-enter': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-core@45.1.0':
+ '@ckeditor/ckeditor5-core@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- '@ckeditor/ckeditor5-watchdog': 45.1.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ '@ckeditor/ckeditor5-watchdog': 45.2.0
es-toolkit: 1.32.0
'@ckeditor/ckeditor5-dev-build-tools@43.0.1(@swc/helpers@0.5.17)(tslib@2.8.1)(typescript@5.8.3)':
@@ -14022,7 +14022,7 @@ snapshots:
'@ckeditor/ckeditor5-dev-translations@45.0.10(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.5)(typescript@5.0.4)(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.5))':
dependencies:
- '@babel/parser': 7.27.0
+ '@babel/parser': 7.27.5
'@babel/traverse': 7.27.0
'@ckeditor/ckeditor5-dev-utils': 45.0.10(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.5)(typescript@5.0.4)(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.5))
chalk: 5.4.1
@@ -14104,277 +14104,277 @@ snapshots:
- uglify-js
- webpack
- '@ckeditor/ckeditor5-easy-image@45.1.0':
+ '@ckeditor/ckeditor5-easy-image@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-cloud-services': 45.1.0
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-upload': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-cloud-services': 45.2.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-upload': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-editor-balloon@45.1.0':
+ '@ckeditor/ckeditor5-editor-balloon@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-editor-classic@45.1.0':
+ '@ckeditor/ckeditor5-editor-classic@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-editor-decoupled@45.1.0':
+ '@ckeditor/ckeditor5-editor-decoupled@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-editor-inline@45.1.0':
+ '@ckeditor/ckeditor5-editor-inline@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-editor-multi-root@45.1.0':
+ '@ckeditor/ckeditor5-editor-multi-root@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-emoji@45.1.0':
+ '@ckeditor/ckeditor5-emoji@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-mention': 45.1.0(patch_hash=5981fb59ba35829e4dff1d39cf771000f8a8fdfa7a34b51d8af9549541f2d62d)
- '@ckeditor/ckeditor5-typing': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-mention': 45.2.0(patch_hash=5981fb59ba35829e4dff1d39cf771000f8a8fdfa7a34b51d8af9549541f2d62d)
+ '@ckeditor/ckeditor5-typing': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.32.0
fuzzysort: 3.1.0
- '@ckeditor/ckeditor5-engine@45.1.0':
+ '@ckeditor/ckeditor5-engine@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-utils': 45.1.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-enter@45.1.0':
+ '@ckeditor/ckeditor5-enter@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
- '@ckeditor/ckeditor5-essentials@45.1.0':
+ '@ckeditor/ckeditor5-essentials@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-clipboard': 45.1.0
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-enter': 45.1.0
- '@ckeditor/ckeditor5-select-all': 45.1.0
- '@ckeditor/ckeditor5-typing': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-undo': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-clipboard': 45.2.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-enter': 45.2.0
+ '@ckeditor/ckeditor5-select-all': 45.2.0
+ '@ckeditor/ckeditor5-typing': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-undo': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-find-and-replace@45.1.0':
+ '@ckeditor/ckeditor5-find-and-replace@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-font@45.1.0':
+ '@ckeditor/ckeditor5-font@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-fullscreen@45.1.0':
+ '@ckeditor/ckeditor5-fullscreen@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-editor-classic': 45.1.0
- '@ckeditor/ckeditor5-editor-decoupled': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-editor-classic': 45.2.0
+ '@ckeditor/ckeditor5-editor-decoupled': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-heading@45.1.0':
+ '@ckeditor/ckeditor5-heading@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-paragraph': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-paragraph': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-highlight@45.1.0':
+ '@ckeditor/ckeditor5-highlight@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-horizontal-line@45.1.0':
+ '@ckeditor/ckeditor5-horizontal-line@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- '@ckeditor/ckeditor5-widget': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ '@ckeditor/ckeditor5-widget': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-html-embed@45.1.0':
+ '@ckeditor/ckeditor5-html-embed@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- '@ckeditor/ckeditor5-widget': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ '@ckeditor/ckeditor5-widget': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-html-support@45.1.0':
+ '@ckeditor/ckeditor5-html-support@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-enter': 45.1.0
- '@ckeditor/ckeditor5-heading': 45.1.0
- '@ckeditor/ckeditor5-image': 45.1.0
- '@ckeditor/ckeditor5-list': 45.1.0
- '@ckeditor/ckeditor5-table': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- '@ckeditor/ckeditor5-widget': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-enter': 45.2.0
+ '@ckeditor/ckeditor5-heading': 45.2.0
+ '@ckeditor/ckeditor5-image': 45.2.0
+ '@ckeditor/ckeditor5-list': 45.2.0
+ '@ckeditor/ckeditor5-table': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ '@ckeditor/ckeditor5-widget': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-icons@45.1.0': {}
+ '@ckeditor/ckeditor5-icons@45.2.0': {}
- '@ckeditor/ckeditor5-image@45.1.0':
+ '@ckeditor/ckeditor5-image@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-clipboard': 45.1.0
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-typing': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-undo': 45.1.0
- '@ckeditor/ckeditor5-upload': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- '@ckeditor/ckeditor5-widget': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-clipboard': 45.2.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-typing': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-undo': 45.2.0
+ '@ckeditor/ckeditor5-upload': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ '@ckeditor/ckeditor5-widget': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-indent@45.1.0':
+ '@ckeditor/ckeditor5-indent@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-heading': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-list': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-heading': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-list': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
'@ckeditor/ckeditor5-inspector@4.1.0': {}
- '@ckeditor/ckeditor5-language@45.1.0':
+ '@ckeditor/ckeditor5-language@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-link@45.1.0':
+ '@ckeditor/ckeditor5-link@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-clipboard': 45.1.0
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-image': 45.1.0
- '@ckeditor/ckeditor5-typing': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- '@ckeditor/ckeditor5-widget': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-clipboard': 45.2.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-image': 45.2.0
+ '@ckeditor/ckeditor5-typing': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ '@ckeditor/ckeditor5-widget': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-list@45.1.0':
+ '@ckeditor/ckeditor5-list@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-clipboard': 45.1.0
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-enter': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-typing': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-clipboard': 45.2.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-enter': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-typing': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-markdown-gfm@45.1.0':
+ '@ckeditor/ckeditor5-markdown-gfm@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-clipboard': 45.1.0
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
+ '@ckeditor/ckeditor5-clipboard': 45.2.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
'@types/marked': 4.3.2
'@types/turndown': 5.0.5
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
marked: 4.0.12
turndown: 7.2.0
turndown-plugin-gfm: 1.0.2
- '@ckeditor/ckeditor5-media-embed@45.1.0':
+ '@ckeditor/ckeditor5-media-embed@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-clipboard': 45.1.0
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-typing': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-undo': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- '@ckeditor/ckeditor5-widget': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-clipboard': 45.2.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-typing': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-undo': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ '@ckeditor/ckeditor5-widget': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-mention@45.1.0(patch_hash=5981fb59ba35829e4dff1d39cf771000f8a8fdfa7a34b51d8af9549541f2d62d)':
+ '@ckeditor/ckeditor5-mention@45.2.0(patch_hash=5981fb59ba35829e4dff1d39cf771000f8a8fdfa7a34b51d8af9549541f2d62d)':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-typing': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-typing': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-minimap@45.1.0':
+ '@ckeditor/ckeditor5-minimap@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-package-tools@3.0.1(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.15.29)(bufferutil@4.0.9)(esbuild@0.25.5)(utf-8-validate@6.0.5)':
+ '@ckeditor/ckeditor5-package-tools@4.0.0(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.15.29)(bufferutil@4.0.9)(esbuild@0.25.5)(utf-8-validate@6.0.5)':
dependencies:
'@ckeditor/ckeditor5-dev-translations': 45.0.10(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.5)(typescript@5.0.4)(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.5))
'@ckeditor/ckeditor5-dev-utils': 45.0.10(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.5)(typescript@5.0.4)(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.5))
@@ -14410,172 +14410,172 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@ckeditor/ckeditor5-page-break@45.1.0':
+ '@ckeditor/ckeditor5-page-break@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- '@ckeditor/ckeditor5-widget': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ '@ckeditor/ckeditor5-widget': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-paragraph@45.1.0':
+ '@ckeditor/ckeditor5-paragraph@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
- '@ckeditor/ckeditor5-paste-from-office@45.1.0':
+ '@ckeditor/ckeditor5-paste-from-office@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-clipboard': 45.1.0
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-clipboard': 45.2.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-remove-format@45.1.0':
+ '@ckeditor/ckeditor5-remove-format@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-restricted-editing@45.1.0':
+ '@ckeditor/ckeditor5-restricted-editing@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-select-all@45.1.0':
+ '@ckeditor/ckeditor5-select-all@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
- '@ckeditor/ckeditor5-show-blocks@45.1.0':
+ '@ckeditor/ckeditor5-show-blocks@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-source-editing@45.1.0':
+ '@ckeditor/ckeditor5-source-editing@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-theme-lark': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-theme-lark': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-special-characters@45.1.0':
+ '@ckeditor/ckeditor5-special-characters@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-typing': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-typing': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- '@ckeditor/ckeditor5-style@45.1.0':
+ '@ckeditor/ckeditor5-style@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-html-support': 45.1.0
- '@ckeditor/ckeditor5-list': 45.1.0
- '@ckeditor/ckeditor5-table': 45.1.0
- '@ckeditor/ckeditor5-typing': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-html-support': 45.2.0
+ '@ckeditor/ckeditor5-list': 45.2.0
+ '@ckeditor/ckeditor5-table': 45.2.0
+ '@ckeditor/ckeditor5-typing': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-table@45.1.0':
+ '@ckeditor/ckeditor5-table@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-clipboard': 45.1.0
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- '@ckeditor/ckeditor5-widget': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-clipboard': 45.2.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ '@ckeditor/ckeditor5-widget': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-theme-lark@45.1.0':
+ '@ckeditor/ckeditor5-theme-lark@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-ui': 45.1.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
- '@ckeditor/ckeditor5-typing@45.1.0':
+ '@ckeditor/ckeditor5-typing@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-ui@45.1.0':
+ '@ckeditor/ckeditor5-ui@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-editor-multi-root': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-editor-multi-root': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
'@types/color-convert': 2.0.4
color-convert: 2.0.1
color-parse: 1.4.2
es-toolkit: 1.32.0
vanilla-colorful: 0.7.2
- '@ckeditor/ckeditor5-undo@45.1.0':
+ '@ckeditor/ckeditor5-undo@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
- '@ckeditor/ckeditor5-upload@45.1.0':
+ '@ckeditor/ckeditor5-upload@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
- '@ckeditor/ckeditor5-utils@45.1.0':
+ '@ckeditor/ckeditor5-utils@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-ui': 45.1.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-watchdog@45.1.0':
+ '@ckeditor/ckeditor5-watchdog@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-editor-multi-root': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-editor-multi-root': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-widget@45.1.0':
+ '@ckeditor/ckeditor5-widget@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-enter': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-typing': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-enter': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-typing': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
es-toolkit: 1.32.0
- '@ckeditor/ckeditor5-word-count@45.1.0':
+ '@ckeditor/ckeditor5-word-count@45.2.0':
dependencies:
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- ckeditor5: 45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ ckeditor5: 45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.32.0
'@codemirror/autocomplete@6.18.6':
@@ -15101,9 +15101,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@electron/remote@2.1.2(electron@36.3.2)':
+ '@electron/remote@2.1.2(electron@36.4.0)':
dependencies:
- electron: 36.3.2
+ electron: 36.4.0
'@electron/universal@2.0.2':
dependencies:
@@ -15265,13 +15265,13 @@ snapshots:
'@eslint/core': 0.14.0
levn: 0.4.1
- '@excalidraw/excalidraw@0.18.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@excalidraw/excalidraw@0.18.0(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@braintree/sanitize-url': 6.0.2
'@excalidraw/laser-pointer': 1.3.1
'@excalidraw/mermaid-to-excalidraw': 1.1.2
'@excalidraw/random-username': 1.1.0
- '@radix-ui/react-popover': 1.1.6(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-popover': 1.1.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@radix-ui/react-tabs': 1.0.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
browser-fs-access: 0.29.1
canvas-roundrect-polyfill: 0.0.1
@@ -15344,161 +15344,161 @@ snapshots:
'@floating-ui/utils@0.2.9': {}
- '@fsegurai/codemirror-theme-abcdef@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-abcdef@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-abyss@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-abyss@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-android-studio@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-android-studio@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-andromeda@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-andromeda@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-basic-dark@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-basic-dark@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-basic-light@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-basic-light@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-forest@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-forest@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-github-dark@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-github-dark@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-github-light@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-github-light@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-gruvbox-dark@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-gruvbox-dark@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-gruvbox-light@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-gruvbox-light@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-material-dark@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-material-dark@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-material-light@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-material-light@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-monokai@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-monokai@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-nord@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-nord@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-palenight@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-palenight@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-solarized-dark@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-solarized-dark@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-solarized-light@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-solarized-light@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-tokyo-night-day@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-tokyo-night-day@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-tokyo-night-storm@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-tokyo-night-storm@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-volcano@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-volcano@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-vscode-dark@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-vscode-dark@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
'@codemirror/view': 6.37.1
'@lezer/highlight': 1.2.1
- '@fsegurai/codemirror-theme-vscode-light@6.1.4(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
+ '@fsegurai/codemirror-theme-vscode-light@6.2.0(@codemirror/language@6.11.0)(@codemirror/state@6.5.2)(@codemirror/view@6.37.1)(@lezer/highlight@1.2.1)':
dependencies:
'@codemirror/language': 6.11.0
'@codemirror/state': 6.5.2
@@ -16662,14 +16662,14 @@ snapshots:
'@radix-ui/primitive@1.1.1': {}
- '@radix-ui/react-arrow@1.1.2(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-arrow@1.1.2(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
'@types/react': 19.1.6
- '@types/react-dom': 19.1.5(@types/react@19.1.6)
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
'@radix-ui/react-collection@1.0.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
@@ -16708,18 +16708,18 @@ snapshots:
'@babel/runtime': 7.27.1
react: 19.1.0
- '@radix-ui/react-dismissable-layer@1.1.5(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-dismissable-layer@1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.6)(react@19.1.0)
'@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.1.6)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
'@types/react': 19.1.6
- '@types/react-dom': 19.1.5(@types/react@19.1.6)
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
'@radix-ui/react-focus-guards@1.1.1(@types/react@19.1.6)(react@19.1.0)':
dependencies:
@@ -16727,16 +16727,16 @@ snapshots:
optionalDependencies:
'@types/react': 19.1.6
- '@radix-ui/react-focus-scope@1.1.2(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-focus-scope@1.1.2(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.6)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
'@types/react': 19.1.6
- '@types/react-dom': 19.1.5(@types/react@19.1.6)
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
'@radix-ui/react-id@1.0.0(react@19.1.0)':
dependencies:
@@ -16751,19 +16751,19 @@ snapshots:
optionalDependencies:
'@types/react': 19.1.6
- '@radix-ui/react-popover@1.1.6(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-popover@1.1.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.6)(react@19.1.0)
'@radix-ui/react-context': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@radix-ui/react-focus-guards': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@radix-ui/react-id': 1.1.0(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@radix-ui/react-slot': 1.1.2(@types/react@19.1.6)(react@19.1.0)
'@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.6)(react@19.1.0)
aria-hidden: 1.2.4
@@ -16772,15 +16772,15 @@ snapshots:
react-remove-scroll: 2.6.3(@types/react@19.1.6)(react@19.1.0)
optionalDependencies:
'@types/react': 19.1.6
- '@types/react-dom': 19.1.5(@types/react@19.1.6)
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-popper@1.2.2(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-popper@1.2.2(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@floating-ui/react-dom': 2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-arrow': 1.1.2(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-arrow': 1.1.2(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.6)(react@19.1.0)
'@radix-ui/react-context': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.6)(react@19.1.0)
'@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.6)(react@19.1.0)
'@radix-ui/react-use-rect': 1.1.0(@types/react@19.1.6)(react@19.1.0)
@@ -16790,17 +16790,17 @@ snapshots:
react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
'@types/react': 19.1.6
- '@types/react-dom': 19.1.5(@types/react@19.1.6)
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-portal@1.1.4(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-portal@1.1.4(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.6)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
'@types/react': 19.1.6
- '@types/react-dom': 19.1.5(@types/react@19.1.6)
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
'@radix-ui/react-presence@1.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
@@ -16810,7 +16810,7 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@radix-ui/react-presence@1.1.2(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-presence@1.1.2(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.6)(react@19.1.0)
'@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.6)(react@19.1.0)
@@ -16818,7 +16818,7 @@ snapshots:
react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
'@types/react': 19.1.6
- '@types/react-dom': 19.1.5(@types/react@19.1.6)
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
'@radix-ui/react-primitive@1.0.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
@@ -16827,14 +16827,14 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@radix-ui/react-primitive@2.0.2(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-primitive@2.0.2(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/react-slot': 1.1.2(@types/react@19.1.6)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
'@types/react': 19.1.6
- '@types/react-dom': 19.1.5(@types/react@19.1.6)
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
'@radix-ui/react-roving-focus@1.0.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
@@ -17696,7 +17696,7 @@ snapshots:
'@types/range-parser@1.2.7': {}
- '@types/react-dom@19.1.5(@types/react@19.1.6)':
+ '@types/react-dom@19.1.6(@types/react@19.1.6)':
dependencies:
'@types/react': 19.1.6
@@ -19159,69 +19159,69 @@ snapshots:
cjs-module-lexer@1.4.3: {}
- ckeditor5@45.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41):
+ ckeditor5@45.2.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41):
dependencies:
- '@ckeditor/ckeditor5-adapter-ckfinder': 45.1.0
- '@ckeditor/ckeditor5-alignment': 45.1.0
- '@ckeditor/ckeditor5-autoformat': 45.1.0
- '@ckeditor/ckeditor5-autosave': 45.1.0
- '@ckeditor/ckeditor5-basic-styles': 45.1.0
- '@ckeditor/ckeditor5-block-quote': 45.1.0
- '@ckeditor/ckeditor5-bookmark': 45.1.0
- '@ckeditor/ckeditor5-ckbox': 45.1.0
- '@ckeditor/ckeditor5-ckfinder': 45.1.0
- '@ckeditor/ckeditor5-clipboard': 45.1.0
- '@ckeditor/ckeditor5-cloud-services': 45.1.0
- '@ckeditor/ckeditor5-code-block': 45.1.0(patch_hash=2361d8caad7d6b5bddacc3a3b4aa37dbfba260b1c1b22a450413a79c1bb1ce95)
- '@ckeditor/ckeditor5-core': 45.1.0
- '@ckeditor/ckeditor5-easy-image': 45.1.0
- '@ckeditor/ckeditor5-editor-balloon': 45.1.0
- '@ckeditor/ckeditor5-editor-classic': 45.1.0
- '@ckeditor/ckeditor5-editor-decoupled': 45.1.0
- '@ckeditor/ckeditor5-editor-inline': 45.1.0
- '@ckeditor/ckeditor5-editor-multi-root': 45.1.0
- '@ckeditor/ckeditor5-emoji': 45.1.0
- '@ckeditor/ckeditor5-engine': 45.1.0
- '@ckeditor/ckeditor5-enter': 45.1.0
- '@ckeditor/ckeditor5-essentials': 45.1.0
- '@ckeditor/ckeditor5-find-and-replace': 45.1.0
- '@ckeditor/ckeditor5-font': 45.1.0
- '@ckeditor/ckeditor5-fullscreen': 45.1.0
- '@ckeditor/ckeditor5-heading': 45.1.0
- '@ckeditor/ckeditor5-highlight': 45.1.0
- '@ckeditor/ckeditor5-horizontal-line': 45.1.0
- '@ckeditor/ckeditor5-html-embed': 45.1.0
- '@ckeditor/ckeditor5-html-support': 45.1.0
- '@ckeditor/ckeditor5-icons': 45.1.0
- '@ckeditor/ckeditor5-image': 45.1.0
- '@ckeditor/ckeditor5-indent': 45.1.0
- '@ckeditor/ckeditor5-language': 45.1.0
- '@ckeditor/ckeditor5-link': 45.1.0
- '@ckeditor/ckeditor5-list': 45.1.0
- '@ckeditor/ckeditor5-markdown-gfm': 45.1.0
- '@ckeditor/ckeditor5-media-embed': 45.1.0
- '@ckeditor/ckeditor5-mention': 45.1.0(patch_hash=5981fb59ba35829e4dff1d39cf771000f8a8fdfa7a34b51d8af9549541f2d62d)
- '@ckeditor/ckeditor5-minimap': 45.1.0
- '@ckeditor/ckeditor5-page-break': 45.1.0
- '@ckeditor/ckeditor5-paragraph': 45.1.0
- '@ckeditor/ckeditor5-paste-from-office': 45.1.0
- '@ckeditor/ckeditor5-remove-format': 45.1.0
- '@ckeditor/ckeditor5-restricted-editing': 45.1.0
- '@ckeditor/ckeditor5-select-all': 45.1.0
- '@ckeditor/ckeditor5-show-blocks': 45.1.0
- '@ckeditor/ckeditor5-source-editing': 45.1.0
- '@ckeditor/ckeditor5-special-characters': 45.1.0
- '@ckeditor/ckeditor5-style': 45.1.0
- '@ckeditor/ckeditor5-table': 45.1.0
- '@ckeditor/ckeditor5-theme-lark': 45.1.0
- '@ckeditor/ckeditor5-typing': 45.1.0
- '@ckeditor/ckeditor5-ui': 45.1.0
- '@ckeditor/ckeditor5-undo': 45.1.0
- '@ckeditor/ckeditor5-upload': 45.1.0
- '@ckeditor/ckeditor5-utils': 45.1.0
- '@ckeditor/ckeditor5-watchdog': 45.1.0
- '@ckeditor/ckeditor5-widget': 45.1.0
- '@ckeditor/ckeditor5-word-count': 45.1.0
+ '@ckeditor/ckeditor5-adapter-ckfinder': 45.2.0
+ '@ckeditor/ckeditor5-alignment': 45.2.0
+ '@ckeditor/ckeditor5-autoformat': 45.2.0
+ '@ckeditor/ckeditor5-autosave': 45.2.0
+ '@ckeditor/ckeditor5-basic-styles': 45.2.0
+ '@ckeditor/ckeditor5-block-quote': 45.2.0
+ '@ckeditor/ckeditor5-bookmark': 45.2.0
+ '@ckeditor/ckeditor5-ckbox': 45.2.0
+ '@ckeditor/ckeditor5-ckfinder': 45.2.0
+ '@ckeditor/ckeditor5-clipboard': 45.2.0
+ '@ckeditor/ckeditor5-cloud-services': 45.2.0
+ '@ckeditor/ckeditor5-code-block': 45.2.0(patch_hash=2361d8caad7d6b5bddacc3a3b4aa37dbfba260b1c1b22a450413a79c1bb1ce95)
+ '@ckeditor/ckeditor5-core': 45.2.0
+ '@ckeditor/ckeditor5-easy-image': 45.2.0
+ '@ckeditor/ckeditor5-editor-balloon': 45.2.0
+ '@ckeditor/ckeditor5-editor-classic': 45.2.0
+ '@ckeditor/ckeditor5-editor-decoupled': 45.2.0
+ '@ckeditor/ckeditor5-editor-inline': 45.2.0
+ '@ckeditor/ckeditor5-editor-multi-root': 45.2.0
+ '@ckeditor/ckeditor5-emoji': 45.2.0
+ '@ckeditor/ckeditor5-engine': 45.2.0
+ '@ckeditor/ckeditor5-enter': 45.2.0
+ '@ckeditor/ckeditor5-essentials': 45.2.0
+ '@ckeditor/ckeditor5-find-and-replace': 45.2.0
+ '@ckeditor/ckeditor5-font': 45.2.0
+ '@ckeditor/ckeditor5-fullscreen': 45.2.0
+ '@ckeditor/ckeditor5-heading': 45.2.0
+ '@ckeditor/ckeditor5-highlight': 45.2.0
+ '@ckeditor/ckeditor5-horizontal-line': 45.2.0
+ '@ckeditor/ckeditor5-html-embed': 45.2.0
+ '@ckeditor/ckeditor5-html-support': 45.2.0
+ '@ckeditor/ckeditor5-icons': 45.2.0
+ '@ckeditor/ckeditor5-image': 45.2.0
+ '@ckeditor/ckeditor5-indent': 45.2.0
+ '@ckeditor/ckeditor5-language': 45.2.0
+ '@ckeditor/ckeditor5-link': 45.2.0
+ '@ckeditor/ckeditor5-list': 45.2.0
+ '@ckeditor/ckeditor5-markdown-gfm': 45.2.0
+ '@ckeditor/ckeditor5-media-embed': 45.2.0
+ '@ckeditor/ckeditor5-mention': 45.2.0(patch_hash=5981fb59ba35829e4dff1d39cf771000f8a8fdfa7a34b51d8af9549541f2d62d)
+ '@ckeditor/ckeditor5-minimap': 45.2.0
+ '@ckeditor/ckeditor5-page-break': 45.2.0
+ '@ckeditor/ckeditor5-paragraph': 45.2.0
+ '@ckeditor/ckeditor5-paste-from-office': 45.2.0
+ '@ckeditor/ckeditor5-remove-format': 45.2.0
+ '@ckeditor/ckeditor5-restricted-editing': 45.2.0
+ '@ckeditor/ckeditor5-select-all': 45.2.0
+ '@ckeditor/ckeditor5-show-blocks': 45.2.0
+ '@ckeditor/ckeditor5-source-editing': 45.2.0
+ '@ckeditor/ckeditor5-special-characters': 45.2.0
+ '@ckeditor/ckeditor5-style': 45.2.0
+ '@ckeditor/ckeditor5-table': 45.2.0
+ '@ckeditor/ckeditor5-theme-lark': 45.2.0
+ '@ckeditor/ckeditor5-typing': 45.2.0
+ '@ckeditor/ckeditor5-ui': 45.2.0
+ '@ckeditor/ckeditor5-undo': 45.2.0
+ '@ckeditor/ckeditor5-upload': 45.2.0
+ '@ckeditor/ckeditor5-utils': 45.2.0
+ '@ckeditor/ckeditor5-watchdog': 45.2.0
+ '@ckeditor/ckeditor5-widget': 45.2.0
+ '@ckeditor/ckeditor5-word-count': 45.2.0
clean-stack@2.2.0: {}
@@ -20444,10 +20444,10 @@ snapshots:
- supports-color
optional: true
- electron@36.3.2:
+ electron@36.4.0:
dependencies:
'@electron/get': 2.0.3
- '@types/node': 22.15.21
+ '@types/node': 22.15.29
extract-zip: 2.0.1
transitivePeerDependencies:
- supports-color
diff --git a/renovate.json b/renovate.json
index 116938ee1..bf0119855 100644
--- a/renovate.json
+++ b/renovate.json
@@ -5,5 +5,11 @@
"labels": ["dependencies", "renovate"],
"prHourlyLimit": 0,
"prConcurrentLimit": 0,
- "branchConcurrentLimit": 0
+ "branchConcurrentLimit": 0,
+ "packageRules": [
+ {
+ "matchPackageNames": "@fsegurai/codemirror-theme-**",
+ "groupName": "codemirror themes"
+ }
+ ]
}