diff --git a/djangocms_text/editors.py b/djangocms_text/editors.py index f856fd0d..041ac386 100644 --- a/djangocms_text/editors.py +++ b/djangocms_text/editors.py @@ -149,6 +149,17 @@ def default(self, obj): "Link": { "title": _("Link"), "form": [ + # { + # "type": "link", + # "url": '#', + # "label": '' + # '', + # }, { "name": "href_select", "type": "hidden", @@ -162,19 +173,24 @@ def default(self, obj): "class": "js-linkfield", "required": False, }, - # {"type": 'hr'}, - # { - # "name": 'target', - # "label": 'Target', - # "type": 'select', - # "options": [ - # {"value": '', "label": '-----'}, - # {"value": '_blank', "label": 'New window'}, - # {"value": '_self', "label": 'Same window'}, - # {"value": '_parent', "label": 'Parent window'}, - # ], - # "required": False - # } + { + "type": "section", + "label": _("Link options"), + "content": [ + { + "name": "target", + "label": _("Target"), + "type": "select", + "options": [ + {"value": "", "label": "-----"}, + {"value": "_blank", "label": _("New window")}, + {"value": "_self", "label": _("Same window")}, + {"value": "_parent", "label": _("Parent window")}, + ], + "required": False, + } + ], + }, ], "icon": '\n' + ' \n' diff --git a/djangocms_text/locale/ar/LC_MESSAGES/django.po b/djangocms_text/locale/ar/LC_MESSAGES/django.po index 0ad0dbe4..0eedd7c0 100644 --- a/djangocms_text/locale/ar/LC_MESSAGES/django.po +++ b/djangocms_text/locale/ar/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Arabic (https://www.transifex.com/divio/teams/58664/ar/)\n" @@ -30,187 +30,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "المحتوى" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/bn/LC_MESSAGES/django.po b/djangocms_text/locale/bn/LC_MESSAGES/django.po index 2cc036fc..2b7f8692 100644 --- a/djangocms_text/locale/bn/LC_MESSAGES/django.po +++ b/djangocms_text/locale/bn/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Bengali (https://www.transifex.com/divio/teams/58664/bn/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "বিষয়বস্তু" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/ca/LC_MESSAGES/django.po b/djangocms_text/locale/ca/LC_MESSAGES/django.po index f88b40c1..180c6b15 100644 --- a/djangocms_text/locale/ca/LC_MESSAGES/django.po +++ b/djangocms_text/locale/ca/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Catalan (https://www.transifex.com/divio/teams/58664/ca/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "cos" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/cs/LC_MESSAGES/django.po b/djangocms_text/locale/cs/LC_MESSAGES/django.po index 06fc807a..574afcb6 100644 --- a/djangocms_text/locale/cs/LC_MESSAGES/django.po +++ b/djangocms_text/locale/cs/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Czech (https://www.transifex.com/divio/teams/58664/cs/)\n" @@ -30,187 +30,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "tělo" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/da/LC_MESSAGES/django.po b/djangocms_text/locale/da/LC_MESSAGES/django.po index 85183155..1d1fdeae 100644 --- a/djangocms_text/locale/da/LC_MESSAGES/django.po +++ b/djangocms_text/locale/da/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Danish (https://www.transifex.com/divio/teams/58664/da/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "body" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/de/LC_MESSAGES/django.po b/djangocms_text/locale/de/LC_MESSAGES/django.po index 0bd0b279..5cf5afce 100644 --- a/djangocms_text/locale/de/LC_MESSAGES/django.po +++ b/djangocms_text/locale/de/LC_MESSAGES/django.po @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Fabian Braun , 2024 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2024-02-15 10:49+0000\n" "Last-Translator: Fabian Braun , 2024\n" "Language-Team: German (https://app.transifex.com/divio/teams/58664/de/)\n" -"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: cms_plugins.py:370 @@ -29,189 +29,199 @@ msgstr "Sie haben keine Rechte um ein Plugin hinzuzufügen." msgid "Unable to process your request. Invalid token." msgstr "Die Anfrage kann nicht bearbeitet werden. Inkorrektes Token." -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "Inline-Editing-Modus für Text-Plugins umschalten" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "Widerrufen" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "Wiederbolen" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "Fett" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "Kursiv" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "Unterstrichen" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "Durchgestrichen" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "Tiefgestellt" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "Hochgestellt" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "Formatierung entfernen" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "Linksbündig" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "Zentriert" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "Rechtsbündig" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "Blocksatz" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "Horizontale Linie" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "Numerierung" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "Aufzählung" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "Einrückung erhöhen" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "Einrückung reduzieren" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "Blockzitat" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "Link" -#: editors.py:158 -msgid "Type URL or search for a destination" -msgstr "URL oder Suchbegriff eintippen" - -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "URL oder Suche" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "Link-Optionen" + +#: editors.py:182 +msgid "Target" +msgstr "Ziel" + +#: editors.py:186 +msgid "New window" +msgstr "Neues Fenster" + +#: editors.py:187 +msgid "Same window" +msgstr "Selbes Fenster" + +#: editors.py:188 +msgid "Parent window" +msgstr "Übergeordnetes Fenster" + +#: editors.py:201 msgid "Unlink" msgstr "Link lösen" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "Tabelle" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "Code" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "Klein" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "Tastatureingabe" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "Codeblock" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "Überschrift 1" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "Überschrift 2" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "Überschrift 3" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "Überschrift 4" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "Überschrift 5" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "Überschrift 6" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "Absatz" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "Anker" -#: editors.py:263 -#, fuzzy -#| msgid "Blockquote" -msgid "Block format" -msgstr "Blockzitat" - -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "Stile" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "Schriftart" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "Schriftgröße" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "CMS-Bausteine" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "Baustein bearbeiten" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "Baustein hinzufügen" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "Body" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "JSON" @@ -222,3 +232,9 @@ msgstr "Text" #: settings.py:40 msgid "Generic" msgstr "Generisch" + +#~ msgid "Image" +#~ msgstr "Bild" + +#~ msgid "Format" +#~ msgstr "Format" diff --git a/djangocms_text/locale/el/LC_MESSAGES/django.po b/djangocms_text/locale/el/LC_MESSAGES/django.po index 6cfb6257..1ed910fb 100644 --- a/djangocms_text/locale/el/LC_MESSAGES/django.po +++ b/djangocms_text/locale/el/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Greek (https://www.transifex.com/divio/teams/58664/el/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "σώμα" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/en/LC_MESSAGES/django.po b/djangocms_text/locale/en/LC_MESSAGES/django.po index 32407147..ed78e825 100644 --- a/djangocms_text/locale/en/LC_MESSAGES/django.po +++ b/djangocms_text/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 20:34+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,191 +25,211 @@ msgstr "You do not have permission to add a plugin." msgid "Unable to process your request. Invalid token." msgstr "Unable to process your request. Invalid token." -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "Toggle inline editing mode for text plugins" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "Undo" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "Redo" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "Bold" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "Italic" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "Underline" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "Strike" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "Subscript" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "Superscript" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "Remove formatting" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "Align left" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "Align center" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "Align right" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "Justify" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "Horizontal rule" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "Numbered list" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "Bullet list" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "Outdent" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "Indent" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "Blockquote" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "Link" -#: editors.py:158 +#: editors.py:170 #, fuzzy #| msgid "Type URL or search for a page" msgid "Type URL or search for a destination" msgstr "Type URL or search for a page" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "URL or search" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "Link options" + +#: editors.py:182 +msgid "Target" +msgstr "Target" + +#: editors.py:186 +msgid "New window" +msgstr "New window" + +#: editors.py:187 +msgid "Same window" +msgstr "Same window" + +#: editors.py:188 +msgid "Parent window" +msgstr "Parent window" + +#: editors.py:201 msgid "Unlink" msgstr "Unlink" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "Table" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "Code" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "Small" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "Keyboard input" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "Code block" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "Heading 1" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "Heading 2" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "Heading 3" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "Heading 4" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "Heading 5" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "Heading 6" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "Paragraph" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "Anchor" -#: editors.py:263 +#: editors.py:280 #, fuzzy #| msgid "Blockquote" msgid "Block format" msgstr "Blockquote" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "Styles" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "Font" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "Font size" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "CMS Plugins" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "Edit CMS Plugin" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "Add CMS Plugin" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "body" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "JSON" diff --git a/djangocms_text/locale/es/LC_MESSAGES/django.po b/djangocms_text/locale/es/LC_MESSAGES/django.po index 23a93c6c..728d36a7 100644 --- a/djangocms_text/locale/es/LC_MESSAGES/django.po +++ b/djangocms_text/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2024-02-15 10:49+0000\n" "Last-Translator: Fabian Braun , 2024\n" "Language-Team: Spanish (https://app.transifex.com/divio/teams/58664/es/)\n" @@ -30,187 +30,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "No se puede procesar esta petición. Token inválido" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "CMS Plugins" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "Editar CMS Plugin" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "Agregar CMS Plugin" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "cuerpo" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/et/LC_MESSAGES/django.po b/djangocms_text/locale/et/LC_MESSAGES/django.po index 34e659a2..5907d3b0 100644 --- a/djangocms_text/locale/et/LC_MESSAGES/django.po +++ b/djangocms_text/locale/et/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Estonian (https://www.transifex.com/divio/teams/58664/et/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/eu/LC_MESSAGES/django.po b/djangocms_text/locale/eu/LC_MESSAGES/django.po index d972f412..261db1c9 100644 --- a/djangocms_text/locale/eu/LC_MESSAGES/django.po +++ b/djangocms_text/locale/eu/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Basque (https://www.transifex.com/divio/teams/58664/eu/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "gorputza" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/fa/LC_MESSAGES/django.po b/djangocms_text/locale/fa/LC_MESSAGES/django.po index fdab0d18..144fc226 100644 --- a/djangocms_text/locale/fa/LC_MESSAGES/django.po +++ b/djangocms_text/locale/fa/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Persian (https://www.transifex.com/divio/teams/58664/fa/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "بدنه" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/fi/LC_MESSAGES/django.po b/djangocms_text/locale/fi/LC_MESSAGES/django.po index cdcd0d8f..8a76300b 100644 --- a/djangocms_text/locale/fi/LC_MESSAGES/django.po +++ b/djangocms_text/locale/fi/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Finnish (https://www.transifex.com/divio/teams/58664/fi/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "vartalo" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/fr/LC_MESSAGES/django.po b/djangocms_text/locale/fr/LC_MESSAGES/django.po index bdefee9d..0ac7ca18 100644 --- a/djangocms_text/locale/fr/LC_MESSAGES/django.po +++ b/djangocms_text/locale/fr/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2024-02-15 10:49+0000\n" "Last-Translator: Fabian Braun , 2024\n" "Language-Team: French (https://app.transifex.com/divio/teams/58664/fr/)\n" @@ -30,187 +30,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "Impossible de traiter votre demande. Jeton invalide." -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "CMS Plugins" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "Modifier le plugin CMS" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "Ajouter un plugin CMS" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "corps" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/gl/LC_MESSAGES/django.po b/djangocms_text/locale/gl/LC_MESSAGES/django.po index 69749380..0661af8a 100644 --- a/djangocms_text/locale/gl/LC_MESSAGES/django.po +++ b/djangocms_text/locale/gl/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Galician (https://www.transifex.com/divio/teams/58664/gl/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "corpo" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/he/LC_MESSAGES/django.po b/djangocms_text/locale/he/LC_MESSAGES/django.po index 9f463c43..7f82fdef 100644 --- a/djangocms_text/locale/he/LC_MESSAGES/django.po +++ b/djangocms_text/locale/he/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Hebrew (https://www.transifex.com/divio/teams/58664/he/)\n" @@ -30,187 +30,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "תוכן" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/hi/LC_MESSAGES/django.po b/djangocms_text/locale/hi/LC_MESSAGES/django.po index 96d5da29..fb8ababe 100644 --- a/djangocms_text/locale/hi/LC_MESSAGES/django.po +++ b/djangocms_text/locale/hi/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Hindi (https://www.transifex.com/divio/teams/58664/hi/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "शरीर" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/hr/LC_MESSAGES/django.po b/djangocms_text/locale/hr/LC_MESSAGES/django.po index 90696e99..a0741d3f 100644 --- a/djangocms_text/locale/hr/LC_MESSAGES/django.po +++ b/djangocms_text/locale/hr/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Croatian (https://www.transifex.com/divio/teams/58664/hr/)\n" @@ -30,187 +30,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "tijelo" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/hu/LC_MESSAGES/django.po b/djangocms_text/locale/hu/LC_MESSAGES/django.po index c8bf3476..d39e0de1 100644 --- a/djangocms_text/locale/hu/LC_MESSAGES/django.po +++ b/djangocms_text/locale/hu/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Hungarian (https://www.transifex.com/divio/teams/58664/hu/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "törzs" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/is/LC_MESSAGES/django.po b/djangocms_text/locale/is/LC_MESSAGES/django.po index b275b0f0..175c04dc 100644 --- a/djangocms_text/locale/is/LC_MESSAGES/django.po +++ b/djangocms_text/locale/is/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Icelandic (https://www.transifex.com/divio/teams/58664/is/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "meginmál" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/it/LC_MESSAGES/django.po b/djangocms_text/locale/it/LC_MESSAGES/django.po index 6bc78ed5..b29fd9e6 100644 --- a/djangocms_text/locale/it/LC_MESSAGES/django.po +++ b/djangocms_text/locale/it/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Italian (https://www.transifex.com/divio/teams/58664/it/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "corpo" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/ja/LC_MESSAGES/django.po b/djangocms_text/locale/ja/LC_MESSAGES/django.po index 114b388c..80e8ba50 100644 --- a/djangocms_text/locale/ja/LC_MESSAGES/django.po +++ b/djangocms_text/locale/ja/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Japanese (https://www.transifex.com/divio/teams/58664/ja/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "本文" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/lt/LC_MESSAGES/django.po b/djangocms_text/locale/lt/LC_MESSAGES/django.po index fa51a1d1..37eecfd2 100644 --- a/djangocms_text/locale/lt/LC_MESSAGES/django.po +++ b/djangocms_text/locale/lt/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2024-02-15 10:49+0000\n" "Last-Translator: Fabian Braun , 2024\n" "Language-Team: Lithuanian (https://app.transifex.com/divio/teams/58664/lt/)\n" @@ -31,187 +31,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "Negalima apdoroti jūsų užklausos. Netinkama žymė." -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "TVS įskiepiai" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "Redaguotis TVS įskiepį" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "Pridėti TVS įskiepį" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "turinys" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/nl/LC_MESSAGES/django.po b/djangocms_text/locale/nl/LC_MESSAGES/django.po index 6b4f8427..27977dc5 100644 --- a/djangocms_text/locale/nl/LC_MESSAGES/django.po +++ b/djangocms_text/locale/nl/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2024-02-15 10:49+0000\n" "Last-Translator: Fabian Braun , 2024\n" "Language-Team: Dutch (https://app.transifex.com/divio/teams/58664/nl/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "Kan verzoek niet verwerken; ongeldige toegangssleutel." -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "CMS-plug-ins" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "CMS-plug-in bewerken" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "CMS-plug-in toevoegen" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "inhoud" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/no/LC_MESSAGES/django.po b/djangocms_text/locale/no/LC_MESSAGES/django.po index 5ee6949d..6a923041 100644 --- a/djangocms_text/locale/no/LC_MESSAGES/django.po +++ b/djangocms_text/locale/no/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Norwegian (https://www.transifex.com/divio/teams/58664/no/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "innhold" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/pl/LC_MESSAGES/django.po b/djangocms_text/locale/pl/LC_MESSAGES/django.po index e0ad0402..f784ce9e 100644 --- a/djangocms_text/locale/pl/LC_MESSAGES/django.po +++ b/djangocms_text/locale/pl/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Polish (https://www.transifex.com/divio/teams/58664/pl/)\n" @@ -31,187 +31,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "treść" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/pt/LC_MESSAGES/django.po b/djangocms_text/locale/pt/LC_MESSAGES/django.po index bea93272..f6053bd2 100644 --- a/djangocms_text/locale/pt/LC_MESSAGES/django.po +++ b/djangocms_text/locale/pt/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Portuguese (https://www.transifex.com/divio/teams/58664/pt/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "corpo" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/ro/LC_MESSAGES/django.po b/djangocms_text/locale/ro/LC_MESSAGES/django.po index 554111a0..81e3fa34 100644 --- a/djangocms_text/locale/ro/LC_MESSAGES/django.po +++ b/djangocms_text/locale/ro/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Romanian (https://www.transifex.com/divio/teams/58664/ro/)\n" @@ -30,187 +30,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "corp" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/ru/LC_MESSAGES/django.po b/djangocms_text/locale/ru/LC_MESSAGES/django.po index 5b83c307..366448a3 100644 --- a/djangocms_text/locale/ru/LC_MESSAGES/django.po +++ b/djangocms_text/locale/ru/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Russian (https://www.transifex.com/divio/teams/58664/ru/)\n" @@ -31,187 +31,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "тело" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/sv/LC_MESSAGES/django.po b/djangocms_text/locale/sv/LC_MESSAGES/django.po index ea10b83b..390f0b79 100644 --- a/djangocms_text/locale/sv/LC_MESSAGES/django.po +++ b/djangocms_text/locale/sv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Swedish (https://www.transifex.com/divio/teams/58664/sv/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "innehåll" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/tr/LC_MESSAGES/django.po b/djangocms_text/locale/tr/LC_MESSAGES/django.po index 59cd1d70..f453c337 100644 --- a/djangocms_text/locale/tr/LC_MESSAGES/django.po +++ b/djangocms_text/locale/tr/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Turkish (https://www.transifex.com/divio/teams/58664/tr/)\n" @@ -29,187 +29,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "gövde" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/uk/LC_MESSAGES/django.po b/djangocms_text/locale/uk/LC_MESSAGES/django.po index f33ac989..df61418c 100644 --- a/djangocms_text/locale/uk/LC_MESSAGES/django.po +++ b/djangocms_text/locale/uk/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2019-01-23 16:28+0000\n" "Last-Translator: Angelo Dini , 2019\n" "Language-Team: Ukrainian (https://www.transifex.com/divio/teams/58664/uk/)\n" @@ -32,187 +32,207 @@ msgstr "" msgid "Unable to process your request. Invalid token." msgstr "" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "" -#: editors.py:158 +#: editors.py:170 msgid "Type URL or search for a destination" msgstr "" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "" -#: editors.py:263 +#: editors.py:280 msgid "Block format" msgstr "" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "тіло" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "" diff --git a/djangocms_text/locale/zh_CN/LC_MESSAGES/django.po b/djangocms_text/locale/zh_CN/LC_MESSAGES/django.po index b4b81f07..70c4aeb3 100644 --- a/djangocms_text/locale/zh_CN/LC_MESSAGES/django.po +++ b/djangocms_text/locale/zh_CN/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 21:26+0100\n" +"POT-Creation-Date: 2024-12-22 01:08+0100\n" "PO-Revision-Date: 2024-02-15 10:49+0000\n" "Last-Translator: Scott Jiang, 2024\n" "Language-Team: Chinese (China) (https://app.transifex.com/divio/teams/58664/" @@ -30,191 +30,211 @@ msgstr "你没有加入插件的权限" msgid "Unable to process your request. Invalid token." msgstr "无法处理您的请求,无效电凭" -#: cms_toolbars.py:58 +#: cms_toolbars.py:60 msgid "Toggle inline editing mode for text plugins" msgstr "切换到锲入式文本插件的编辑模式" -#: editors.py:31 +#: editors.py:32 msgid "Undo" msgstr "撤消更改" -#: editors.py:35 +#: editors.py:36 msgid "Redo" msgstr "复原更改" -#: editors.py:39 +#: editors.py:40 msgid "Bold" msgstr "粗体" -#: editors.py:45 +#: editors.py:46 msgid "Italic" msgstr "斜体" -#: editors.py:51 +#: editors.py:52 msgid "Underline" msgstr "底线" -#: editors.py:57 +#: editors.py:58 msgid "Strike" msgstr "字中横线" -#: editors.py:61 +#: editors.py:62 msgid "Subscript" msgstr "下标" -#: editors.py:67 +#: editors.py:68 msgid "Superscript" msgstr "上标" -#: editors.py:73 +#: editors.py:74 msgid "Remove formatting" msgstr "移除表现形式" -#: editors.py:86 +#: editors.py:87 msgid "Align left" msgstr "对齐左边" -#: editors.py:92 +#: editors.py:93 msgid "Align center" msgstr "置中" -#: editors.py:98 +#: editors.py:99 msgid "Align right" msgstr "对齐右边" -#: editors.py:104 +#: editors.py:105 msgid "Justify" msgstr "对齐两边" -#: editors.py:110 +#: editors.py:111 msgid "Horizontal rule" msgstr "水平格线" -#: editors.py:116 +#: editors.py:117 msgid "Numbered list" msgstr "编号排序" -#: editors.py:123 +#: editors.py:124 msgid "Bullet list" msgstr "引导符排序" -#: editors.py:129 +#: editors.py:130 msgid "Outdent" msgstr "首行突出" -#: editors.py:136 +#: editors.py:137 msgid "Indent" msgstr "首行缩进" -#: editors.py:143 +#: editors.py:144 msgid "Blockquote" msgstr "引用区" -#: editors.py:149 +#: editors.py:150 msgid "Link" msgstr "链接" -#: editors.py:158 +#: editors.py:170 #, fuzzy #| msgid "Type URL or search for a page" msgid "Type URL or search for a destination" msgstr "输入URL 或者搜寻某一页" -#: editors.py:159 +#: editors.py:171 msgid "URL or search" msgstr "输入URL 或者搜寻" -#: editors.py:184 +#: editors.py:178 +msgid "Link options" +msgstr "" + +#: editors.py:182 +msgid "Target" +msgstr "" + +#: editors.py:186 +msgid "New window" +msgstr "" + +#: editors.py:187 +msgid "Same window" +msgstr "" + +#: editors.py:188 +msgid "Parent window" +msgstr "" + +#: editors.py:201 msgid "Unlink" msgstr "取消链接" -#: editors.py:192 +#: editors.py:209 msgid "Table" msgstr "表格" -#: editors.py:196 +#: editors.py:213 msgid "Code" msgstr "代码" -#: editors.py:202 +#: editors.py:219 msgid "Small" msgstr "小的" -#: editors.py:205 +#: editors.py:222 msgid "Keyboard input" msgstr "键盘输入" -#: editors.py:211 +#: editors.py:228 msgid "Code block" msgstr "代码引用区" -#: editors.py:218 +#: editors.py:235 msgid "Heading 1" msgstr "标题 1 格式" -#: editors.py:224 +#: editors.py:241 msgid "Heading 2" msgstr "标题 2 格式" -#: editors.py:230 +#: editors.py:247 msgid "Heading 3" msgstr "标题 3 格式" -#: editors.py:236 +#: editors.py:253 msgid "Heading 4" msgstr "标题 4 格式" -#: editors.py:242 +#: editors.py:259 msgid "Heading 5" msgstr "标题 5 格式" -#: editors.py:248 +#: editors.py:265 msgid "Heading 6" msgstr "标题 6 格式" -#: editors.py:254 +#: editors.py:271 msgid "Paragraph" msgstr "段落" -#: editors.py:260 +#: editors.py:277 msgid "Anchor" msgstr "基点" -#: editors.py:263 +#: editors.py:280 #, fuzzy #| msgid "Blockquote" msgid "Block format" msgstr "引用区" -#: editors.py:267 +#: editors.py:284 msgid "Styles" msgstr "样式" -#: editors.py:271 +#: editors.py:288 msgid "Font" msgstr "字体" -#: editors.py:274 +#: editors.py:291 msgid "Font size" msgstr "字体大小" -#: editors.py:277 editors.py:278 widgets.py:183 widgets.py:186 +#: editors.py:294 editors.py:295 widgets.py:240 widgets.py:243 msgid "CMS Plugins" msgstr "CMS 的插件组" -#: editors.py:279 widgets.py:185 +#: editors.py:296 widgets.py:242 msgid "Edit CMS Plugin" msgstr "编辑 CMS 插件" -#: editors.py:280 widgets.py:184 +#: editors.py:297 widgets.py:241 msgid "Add CMS Plugin" msgstr "添加 CMS 插件" -#: models.py:51 +#: models.py:50 msgid "body" msgstr "整体" -#: models.py:52 +#: models.py:51 msgid "json" msgstr "JSON" diff --git a/djangocms_text/static/djangocms_text/css/cms.text.css b/djangocms_text/static/djangocms_text/css/cms.text.css index 7d59d97f..d46dd774 100644 --- a/djangocms_text/static/djangocms_text/css/cms.text.css +++ b/djangocms_text/static/djangocms_text/css/cms.text.css @@ -93,7 +93,7 @@ dialog.cms-form-dialog { margin: unset; left: auto; transform: translate(-50%, -50%); - min-width: 200px; + min-width: 240px; padding: 10px 15px; background-color: var(--dca-white); border: 1px solid var(--dca-gray-light); @@ -144,7 +144,7 @@ form.cms-form { background-size: auto 1em !important; appearance: none; } - label { + label, summary { font-size: 0.7rem; padding-bottom: 4px; } diff --git a/djangocms_text/static/djangocms_text_ckeditor/js/cms.ckeditor.js b/djangocms_text/static/djangocms_text_ckeditor/js/cms.ckeditor.js deleted file mode 100644 index f542855b..00000000 --- a/djangocms_text/static/djangocms_text_ckeditor/js/cms.ckeditor.js +++ /dev/null @@ -1,511 +0,0 @@ -(function ($, CMS) { - 'use strict'; - window.CKEDITOR_BASEPATH = $('[data-ckeditor-basepath]').attr('data-ckeditor-basepath'); - - // CMS.$ will be passed for $ - /** - * CMS.CKEditor - * - * @description: Adds cms specific plugins to CKEditor - */ - CMS.CKEditor = { - - options: { - // ckeditor default settings, will be overwritten by CKEDITOR_SETTINGS - language: 'en', - skin: 'moono-lisa', - toolbar_CMS: [ - ['Undo', 'Redo'], - ['cmsplugins', 'cmswidget', '-', 'ShowBlocks'], - ['Format', 'Styles'], - ['TextColor', 'BGColor', '-', 'PasteText', 'PasteFromWord'], - ['Scayt'], - ['Maximize', ''], - '/', - ['Bold', 'Italic', 'Underline', 'Strike', '-', 'Subscript', 'Superscript', '-', 'RemoveFormat'], - ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'], - ['HorizontalRule'], - ['NumberedList', 'BulletedList'], - ['Outdent', 'Indent', '-', 'Blockquote', '-', 'Link', 'Unlink', '-', 'Table'], - ['Source'] - ], - toolbar_HTMLField: [ - ['Undo', 'Redo'], - ['ShowBlocks'], - ['Format', 'Styles'], - ['TextColor', 'BGColor', '-', 'PasteText', 'PasteFromWord'], - ['Scayt'], - ['Maximize', ''], - '/', - ['Bold', 'Italic', 'Underline', 'Strike', '-', 'Subscript', 'Superscript', '-', 'RemoveFormat'], - ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'], - ['HorizontalRule'], - ['Link', 'Unlink'], - ['NumberedList', 'BulletedList'], - ['Outdent', 'Indent', '-', 'Blockquote', '-', 'Link', 'Unlink', '-', 'Table'], - ['Source'] - ], - - allowedContent: true, - toolbarCanCollapse: false, - removePlugins: 'resize', - extraPlugins: '' - }, - - // Meaningful default, overwritten by the backend - static_url: '/static/djangocms-text-ckeditor', - - CSS: [], - editors: {}, - - - init: function (element, mode, options, settings, callback) { - var container = $(element); - - container.data('ckeditor-initialized', true); - container.attr('contenteditable', true); - // add additional settings to options - this.options.toolbar = settings.toolbar; - this.options = $.extend(false, { - settings: settings - }, this.options, options); - - // add extra plugins that we absolutely must have - this.options.extraPlugins = this.options.extraPlugins += - ',cmsplugins,cmswidget,cmsdialog,cmsresize,widget'; - - document.createElement('cms-plugin'); - CKEDITOR.dtd['cms-plugin'] = CKEDITOR.dtd.div; - CKEDITOR.dtd.$inline['cms-plugin'] = 1; - // has to be here, otherwise extra

tags appear - CKEDITOR.dtd.$nonEditable['cms-plugin'] = 1; - CKEDITOR.dtd.$transparent['cms-plugin'] = 1; - CKEDITOR.dtd.body['cms-plugin'] = 1; - - // add additional plugins (autoloads plugins.js) - CKEDITOR.skin.addIcon('cmsplugins', settings.static_url + - '/ckeditor_plugins/cmsplugins/icons/cmsplugins.svg'); - - var editor; - if (mode === 'admin') { - // render ckeditor - editor = CKEDITOR.replace(container[0], this.options); - } else { - editor = CKEDITOR.inline(container[0], this.options); - } - - CMS.CKEditor.editors[editor.id] = { - editor: editor, - options: options, - settings: settings, - container: container, - changed: false, - child_changed: false - }; - editor.on('instanceReady', callback); - }, - - initInlineEditors: function () { - if (CMS._plugins === undefined) { - // no plugins -> no inline editors - return; - } - - CMS.CKEditor.observer = CMS.CKEditor.observer || new IntersectionObserver(function (entries, opts) { - entries.forEach(function (entry) { - if (entry.isIntersecting) { - var target = $(entry.target); - var plugin_id = target.data('cms_plugin_id'); - var url = target.data('cms_edit_url'); - - CMS.CKEditor.startInlineEditor(plugin_id, url); - } - }); - }, { - root: null, - threshold: 0.05 - }); - - CMS._plugins.forEach(function (plugin) { - if (plugin[1].plugin_type === 'TextPlugin') { - var url = plugin[1].urls.edit_plugin; - var id = plugin[1].plugin_id; - var elements = $('.cms-plugin.cms-plugin-' + id); - var wrapper; - - if (elements.length > 0) { - if (elements.length === 1 && elements.prop('tagName') === 'DIV') { // already wrapped? - wrapper = elements.addClass('cms-ckeditor-inline-wrapper'); - } else { // no, wrap now! - wrapper = elements - .wrapAll('

') - .parent(); - elements - .removeClass('cms-plugin') - .removeClass('cms-plugin-' + id); - wrapper.addClass('cms-plugin').addClass('cms-plugin-' + id); - } - wrapper.data('cms_edit_url', url); - wrapper.data('cms_plugin_id', id); - wrapper.on('dblclick.cms-ckeditor', function (event) { - // Double-click is needed by CKEditor - event.stopPropagation(); - }); - wrapper.on('pointerover.cms-ckeditor', function (event) { - // use time out to let other event handlers (CMS' !) run first. - setTimeout(function () { - // do not show tooltip on inline editing text fields. - CMS.API.Tooltip.displayToggle(false, event.target, '', id); - }, 0); - }); - CMS.CKEditor.observer.observe(wrapper[0]); - } - } - }); - $(window).on('beforeunload.cms-ckeditor', function () { - for (var editor_id in CMS.CKEditor.editors) { - if (CMS.CKEditor.editors.hasOwnProperty(editor_id) && - CMS.CKEditor.editors[editor_id].changed) { - return 'Do you really want to leave this page?'; - } - } - }); - }, - - startInlineEditor: function (plugin_id, url) { - var options; - var settings = JSON.parse(document.getElementById('ck-cfg-' + plugin_id).textContent); - var wrapper = $('.cms-plugin.cms-plugin-' + plugin_id); - - if (wrapper.data('ckeditor-initialized')) { - return; - } - - settings.plugin_id = plugin_id; - settings.url = url; - options = settings.options; - delete settings.options; - - CMS.CKEditor.init( - wrapper[0], - 'inline', - options, - settings, - function (callback) { - callback.editor.element.removeAttribute('title'); - callback.editor.on('change', function () { - CMS.CKEditor.editors[callback.editor.id].changed = true; - }); - wrapper.on('blur.cms-ckeditor', function () { - setTimeout(function () { - // avoid save when clicking on editor dialogs or toolbar - if (!document.activeElement.classList.contains('cke_panel_frame') && - !document.activeElement.classList.contains('cke_dialog_ui_button')) { - CMS.CKEditor.save_data(callback.editor.id); - } - }, 0); - }); - wrapper.on('click.cms-ckeditor', function () { - // Highlight plugin in structure board - // Needs to be done manually, since the tooltip is suppressed and django CMS - // only automatically highlights the plugin if the tooltip is visible - CMS.CKEditor._highlight_Textplugin(plugin_id); - }); - // store css that ckeditor loaded before save - CMS.CKEditor.storeCSSlinks(); - } - ); - }, - - save_data: function (editor_id, action) { - var instance = CMS.CKEditor.editors[editor_id]; - - if (instance && instance.changed) { - CMS.CKEditor.storeCSSlinks(); // store css that ckeditor loaded before save - var data = instance.editor.getData(); - - CMS.API.Toolbar.showLoader(); - $.post(CMS.API.Helpers.updateUrlWithPath(instance.settings.url), { // send changes - csrfmiddlewaretoken: CMS.config.csrf, - body: data, - _save: 'Save' - }, function (response) { - instance.changed = false; - CMS.API.Toolbar.hideLoader(); - if (action !== undefined) { - action(instance, response); - } - if (instance.child_changed) { - var scripts = $(response).find('script:not([src])').addClass('cms-ckeditor-result'); - - CMS.CKEditor._destroyAll(); - scripts.each(function (item, element) { - $('body').append(element); - }); - } else { - CMS.CKEditor.loadToolbar(); - } - }).fail(function (error) { - instance.changed = true; - CMS.API.Messages.open({ - message: error.message, - error: true - }); - }); - } - }, - - loadToolbar: function () { - if (CMS.settings && CMS.settings.version && this._toolbar_bug_version(CMS.settings.version)) { - // Before django CMS 3.10 a bug prevents the toolbar to be loaded correctly - // Refresh whole page instead - CMS.API.Helpers.reloadBrowser(); - } else { - CMS.API.StructureBoard._loadToolbar() - .done(function (newToolbar) { - CMS.API.Toolbar._refreshMarkup($(newToolbar).find('.cms-toolbar')); - }) - .fail(CMS.API.Helpers.reloadBrowser); - } - }, - - _toolbar_bug_version: function (version) { - var parts = version.split('.'); - - return parts[0] === '3' && parts[1].length < 2; - }, - - storeCSSlinks: function () { - $("link[rel='stylesheet'][type='text/css'][href*='ckeditor']").each( - function (index, element) { - if (!CMS.CKEditor.CSS.includes(element.href)) { - CMS.CKEditor.CSS.push(element.href); - } - } - ); - }, - - - // setup is called after ckeditor has been initialized - setupAdmin: function (editor) { - // auto maximize modal if alone in a modal - var that = this; - var win = window.parent || window; - // 70px is hardcoded to make it more performant. 20px + 20px - paddings, 30px label height - var TOOLBAR_HEIGHT_WITH_PADDINGS = 70; - - if (this._isAloneInModal(CMS.CKEditor.editors[editor.id].container)) { - editor.resize('100%', win.CMS.$('.cms-modal-frame').height() - TOOLBAR_HEIGHT_WITH_PADDINGS); - editor.execCommand('maximize'); - - $(window).on('resize.ckeditor', function () { - that._repositionDialog(CKEDITOR.dialog.getCurrent(), win); - }).trigger('resize.ckeditor'); - - win.CMS.API.Helpers.addEventListener('modal-maximized modal-restored', function () { - try { - if (!$('.cke_maximized').length) { - editor.resize( - '100%', - win.CMS.$('.cms-modal-frame').height() - TOOLBAR_HEIGHT_WITH_PADDINGS - ); - setTimeout(function () { - that._repositionDialog(CKEDITOR.dialog.getCurrent(), win); - }, 0); - } - } catch (e) { - // sometimes throws errors if modal with text plugin is closed too fast - } - }); - } - - // add css tweaks to the editor - this.styles(); - this._resizing(); - }, - - styles: function () { - // add styling to source and fullscreen view - $('.cke_button__maximize, .cke_button__source').parent() - .css('margin-right', 0).parent() - .css('float', 'right'); - }, - - _resizing: function () { - $(document).on('pointerdown', '.cms-ckeditor-resizer', function (e) { - e.preventDefault(); - var event = new CMS.$.Event('mousedown'); - - $.extend(event, { - screenX: e.originalEvent.screenX, - screenY: e.originalEvent.screenY - }); - $(this).trigger(event); - }); - }, - - _isAloneInModal: function (container) { - var body = container.closest('body'); - - // return true if the ckeditor is alone in a modal popup - return body.is('.app-djangocms_text_ckeditor.model-text'); - }, - - /** - * @method _repositionDialog - * @private - * @param {CKEDITOR.dialog} dialog instance - */ - _repositionDialog: function (dialog) { - var OFFSET = 80; - - if (!dialog) { - return; - } - var size = dialog.getSize(); - var position = dialog.getPosition(); - var win = CKEDITOR.document.getWindow(); - var viewSize = win.getViewPaneSize(); - var winWidth = viewSize.width; - var winHeight = viewSize.height; - - if (position.x < 0) { - dialog.move(0, position.y); - position.x = 0; - } - - if (position.y < 0) { - dialog.move(position.x, 0); - position.y = 0; - } - - if (position.y + size.height > winHeight) { - dialog.resize(size.width, winHeight - position.y - OFFSET); - } - - if (position.x + size.width > winWidth) { - dialog.resize(winWidth - position.x, size.height); - } - }, - - initAdminEditors: function () { - window._cmsCKEditors = window._cmsCKEditors || []; - var dynamics = []; - var settings; - var options; - - window._cmsCKEditors.forEach(function (editorConfig) { - var elementId = 'ck-cfg-' + (editorConfig[1] ? editorConfig[1] : editorConfig[0]); - - settings = JSON.parse(document.getElementById(elementId).textContent); - options = settings.options; - delete settings.options; - - if (editorConfig[0].match(/__prefix__/)) { - dynamics.push(editorConfig); - } else { - CMS.CKEditor.init( - document.getElementById(editorConfig[0]), - 'admin', - options, - settings, - function (callback) { - return CMS.CKEditor.setupAdmin(callback.editor); - } - ); - } - }); - - $('.add-row a').on('click', function () { - $('.CMS_CKEditor').each(function (i, el) { - var container = $(el); - - if (container.data('ckeditor-initialized')) { - return; - } - - var containerId = container.attr('id'); - - // in case there are multiple different inlines we need to check - // newly added one against all of them - dynamics.forEach(function (config) { - var selector = config[0].id; - var regex = new RegExp(selector.replace('__prefix__', '\\d+')); - - if (containerId.match(regex)) { - CMS.CKEditor.init( - document.getElementById(containerId), - options, - settings - ); - } - }); - }); - }); - }, - - _highlight_Textplugin: function (pluginId) { - var HIGHLIGHT_TIMEOUT = 10; - - var draggable = $('.cms-draggable-' + pluginId); - var doc = $(document); - var currentExpandmode = doc.data('expandmode'); - - - // expand necessary parents - doc.data('expandmode', false); - draggable - .parents('.cms-draggable') - .find('> .cms-dragitem-collapsable:not(".cms-dragitem-expanded") > .cms-dragitem-text') - .each(function (i, el) { - $(el).triggerHandler(CMS.Plugin.click); - }); - if (draggable.length > 0) { // Expanded elements available - setTimeout(function () { - doc.data('expandmode', currentExpandmode); - }); - setTimeout(function () { - CMS.Plugin._highlightPluginStructure(draggable.find('.cms-dragitem:first'), - {successTimeout: 200, delay: 2000, seeThrough: true}); - }, HIGHLIGHT_TIMEOUT); - } - }, - - _initAll: function () { - CMS.CKEditor.touchdevice = 'ontouchstart' in window || navigator.msMaxTouchPoints; // on touch device? - if (!CMS.CKEditor.touchdevice) { // no inline editing on touch devices to not interfere with scrolling - CMS.CKEditor.initInlineEditors(); - $('div.cms a.cms-btn.cms-edit-toggle').show(); - } else { - $('div.cms a.cms-btn.cms-edit-toggle').hide(); - } - CMS.CKEditor.initAdminEditors(); - }, - - _destroyAll: function () { - for (var id in CMS.CKEditor.editors) { - if (CMS.CKEditor.editors.hasOwnProperty(id)) { - CMS.CKEditor.editors[id].editor.destroy(); - $(CMS.CKEditor.editors[id].container).off('.cms-ckeditor'); - delete CMS.CKEditor.editors[id]; - } - } - $(window).off('.cms-ckeditor'); - }, - - _resetInlineEditors: function () { - CMS.CKEditor.CSS.forEach(function (stylefile) { - if ($("link[href='" + stylefile + "']").length === 0) { - $('head').append($("")); - } - }); - CMS.CKEditor._destroyAll(); - CMS.CKEditor._initAll(); - } - }; - - setTimeout(function init() { - CMS.CKEditor._initAll(); - }, 0); - $(window).on('cms-content-refresh', CMS.CKEditor._resetInlineEditors); -})(window.CMS.$, window.CMS); diff --git a/djangocms_text/static/djangocms_text_ckeditor/js/post.js b/djangocms_text/static/djangocms_text_ckeditor/js/post.js deleted file mode 100644 index 55ba5f92..00000000 --- a/djangocms_text/static/djangocms_text_ckeditor/js/post.js +++ /dev/null @@ -1,2 +0,0 @@ -}); -})(CMS.$); diff --git a/djangocms_text/static/djangocms_text_ckeditor/js/pre.js b/djangocms_text/static/djangocms_text_ckeditor/js/pre.js deleted file mode 100644 index 7297588e..00000000 --- a/djangocms_text/static/djangocms_text_ckeditor/js/pre.js +++ /dev/null @@ -1,2 +0,0 @@ -(function ($) { - $(function () { diff --git a/package-lock.json b/package-lock.json index 75b58358..3648341e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,63 +9,32 @@ "version": "1.0.0", "license": "MIT", "dependencies": { - "@ckeditor/ckeditor5-adapter-ckfinder": "^43.1.1", - "@ckeditor/ckeditor5-alignment": "^43.1.1", - "@ckeditor/ckeditor5-autoformat": "^43.1.1", - "@ckeditor/ckeditor5-autosave": "^43.1.1", - "@ckeditor/ckeditor5-basic-styles": "^43.1.1", - "@ckeditor/ckeditor5-block-quote": "^43.1.1", - "@ckeditor/ckeditor5-ckfinder": "^43.1.1", - "@ckeditor/ckeditor5-cloud-services": "^43.1.1", - "@ckeditor/ckeditor5-code-block": "^43.1.1", - "@ckeditor/ckeditor5-dev-utils": "^45.0.8", - "@ckeditor/ckeditor5-easy-image": "^43.1.1", - "@ckeditor/ckeditor5-editor-balloon": "^43.1.1", - "@ckeditor/ckeditor5-editor-classic": "^43.1.1", - "@ckeditor/ckeditor5-editor-inline": "^43.1.1", - "@ckeditor/ckeditor5-essentials": "^43.1.1", - "@ckeditor/ckeditor5-font": "^43.1.1", - "@ckeditor/ckeditor5-heading": "^43.1.1", - "@ckeditor/ckeditor5-highlight": "^43.1.1", - "@ckeditor/ckeditor5-horizontal-line": "^43.1.1", - "@ckeditor/ckeditor5-image": "^43.1.1", - "@ckeditor/ckeditor5-indent": "^43.1.1", - "@ckeditor/ckeditor5-link": "^43.1.1", - "@ckeditor/ckeditor5-list": "^43.1.1", - "@ckeditor/ckeditor5-media-embed": "^43.1.1", - "@ckeditor/ckeditor5-paragraph": "^43.1.1", - "@ckeditor/ckeditor5-paste-from-office": "^43.1.1", - "@ckeditor/ckeditor5-source-editing": "^43.1.1", - "@ckeditor/ckeditor5-table": "^43.1.1", - "@ckeditor/ckeditor5-theme-lark": "^43.1.1", - "@ckeditor/ckeditor5-typing": "^43.1.1", - "@ckeditor/ckeditor5-upload": "^43.1.1", - "@tiptap/core": "^2.9.1", - "@tiptap/extension-blockquote": "^2.9.1", - "@tiptap/extension-bubble-menu": "^2.9.1", - "@tiptap/extension-character-count": "^2.9.1", - "@tiptap/extension-floating-menu": "^2.9.1", - "@tiptap/extension-image": "^2.9.1", - "@tiptap/extension-link": "^2.9.1", - "@tiptap/extension-placeholder": "^2.9.1", - "@tiptap/extension-subscript": "^2.9.1", - "@tiptap/extension-superscript": "^2.9.1", - "@tiptap/extension-table": "^2.9.1", - "@tiptap/extension-table-cell": "^2.9.1", - "@tiptap/extension-table-header": "^2.9.1", - "@tiptap/extension-table-row": "^2.9.1", - "@tiptap/extension-text-align": "^2.9.1", - "@tiptap/extension-underline": "^2.9.1", - "@tiptap/pm": "^2.9.1", - "@tiptap/starter-kit": "^2.9.1", + "@tiptap/core": "^2.10.4", + "@tiptap/extension-blockquote": "^2.10.4", + "@tiptap/extension-bubble-menu": "^2.10.4", + "@tiptap/extension-character-count": "^2.10.4", + "@tiptap/extension-floating-menu": "^2.10.4", + "@tiptap/extension-image": "^2.10.4", + "@tiptap/extension-link": "^2.10.4", + "@tiptap/extension-placeholder": "^2.10.4", + "@tiptap/extension-subscript": "^2.10.4", + "@tiptap/extension-superscript": "^2.10.4", + "@tiptap/extension-table": "^2.10.4", + "@tiptap/extension-table-cell": "^2.10.4", + "@tiptap/extension-table-header": "^2.10.4", + "@tiptap/extension-table-row": "^2.10.4", + "@tiptap/extension-text-align": "^2.10.4", + "@tiptap/extension-underline": "^2.10.4", + "@tiptap/pm": "^2.10.4", + "@tiptap/starter-kit": "^2.10.4", "html-loader": "^5.1.0", "quill": "^2.0.3" }, "devDependencies": { - "@babel/core": "^7.24.0", - "@babel/preset-env": "^7.24.0", + "@babel/core": "^7.26.0", + "@babel/preset-env": "^7.26.0", "@testing-library/dom": "^9.3.4", - "@testing-library/jest-dom": "^6.4.2", + "@testing-library/jest-dom": "^6.6.3", "babel-jest": "^29.7.0", "css-loader": "^7.1.2", "css-minimizer-webpack-plugin": "^7.0.0", @@ -74,16 +43,16 @@ "jest-environment-jsdom": "^29.7.0", "mini-css-extract-plugin": "^2.9.2", "npm-upgrade": "^3.1.0", - "postcss": "^8.4.47", + "postcss": "^8.4.49", "postcss-import": "^16.1.0", "postcss-loader": "^8.1.1", "postcss-nested": "^6.2.0", - "sass": "^1.80.6", - "sass-loader": "^16.0.3", - "slim-select": "^2.9.2", + "sass": "^1.83.0", + "sass-loader": "^16.0.4", + "slim-select": "^2.10.0", "source-map-loader": "^5.0.0", "style-loader": "^4.0.0", - "webpack": "^5.96.1", + "webpack": "^5.97.1", "webpack-cli": "^5.1.4" } }, @@ -112,6 +81,7 @@ "version": "7.26.2", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", @@ -123,9 +93,9 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.2.tgz", - "integrity": "sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz", + "integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==", "dev": true, "license": "MIT", "engines": { @@ -164,13 +134,14 @@ } }, "node_modules/@babel/generator": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.2.tgz", - "integrity": "sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz", + "integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==", + "dev": true, "license": "MIT", "dependencies": { - "@babel/parser": "^7.26.2", - "@babel/types": "^7.26.0", + "@babel/parser": "^7.26.3", + "@babel/types": "^7.26.3", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" @@ -192,20 +163,6 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.25.9.tgz", - "integrity": "sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-compilation-targets": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz", @@ -246,14 +203,14 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.9.tgz", - "integrity": "sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz", + "integrity": "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", - "regexpu-core": "^6.1.1", + "regexpu-core": "^6.2.0", "semver": "^6.3.1" }, "engines": { @@ -385,20 +342,6 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-simple-access": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.25.9.tgz", - "integrity": "sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", @@ -417,6 +360,7 @@ "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", + "dev": true, "license": "MIT", "engines": { "node": ">=6.9.0" @@ -426,6 +370,7 @@ "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "dev": true, "license": "MIT", "engines": { "node": ">=6.9.0" @@ -471,12 +416,13 @@ } }, "node_modules/@babel/parser": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz", - "integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz", + "integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==", + "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.26.0" + "@babel/types": "^7.26.3" }, "bin": { "parser": "bin/babel-parser.js" @@ -1093,13 +1039,12 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.25.9.tgz", - "integrity": "sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz", + "integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { @@ -1242,15 +1187,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.25.9.tgz", - "integrity": "sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz", + "integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-simple-access": "^7.25.9" + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1809,6 +1753,7 @@ "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", + "dev": true, "license": "MIT", "dependencies": { "@babel/code-frame": "^7.25.9", @@ -1820,16 +1765,17 @@ } }, "node_modules/@babel/traverse": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.9.tgz", - "integrity": "sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==", + "version": "7.26.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz", + "integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==", + "dev": true, "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.25.9", - "@babel/generator": "^7.25.9", - "@babel/parser": "^7.25.9", + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.3", + "@babel/parser": "^7.26.3", "@babel/template": "^7.25.9", - "@babel/types": "^7.25.9", + "@babel/types": "^7.26.3", "debug": "^4.3.1", "globals": "^11.1.0" }, @@ -1838,9 +1784,10 @@ } }, "node_modules/@babel/types": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz", - "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz", + "integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-string-parser": "^7.25.9", @@ -1857,1414 +1804,231 @@ "dev": true, "license": "MIT" }, - "node_modules/@ckeditor/ckeditor5-adapter-ckfinder": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-adapter-ckfinder/-/ckeditor5-adapter-ckfinder-43.3.1.tgz", - "integrity": "sha512-fOnEq31euR9B/awWZCOc8KfgLwwG4ACtqBhSv7Hu6VOgHa5TKWyWAdhr9ILSiUp7NMfYJoTQStbxcXZIWPqQXQ==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-upload": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-alignment": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-43.3.1.tgz", - "integrity": "sha512-E+04zNdNBFDNgQajrWl8iFQqA1sB29y/XDFFRK+bzhcUaWdMadr88yodjHHdcax8/zI+GzBElCvWGEGchyrL+Q==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-autoformat": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autoformat/-/ckeditor5-autoformat-43.3.1.tgz", - "integrity": "sha512-hSQxIXIObrMfxijMPmz8odOtz/wD5SwuGZWVoF5km3EtRQxZwAcQr1Vjy+VHHPo6PZ+o3YoLP+IHCaULtNobYg==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-typing": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-autosave": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-43.3.1.tgz", - "integrity": "sha512-28667m7ea0wBZMb3uIzgipanB4DrDvKn4o+mRUDExlRT8M14vn1u/ILX8ZJy28Rihbg2wPcVh6rP3zoQjcucHw==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1", - "lodash-es": "4.17.21" - } - }, - "node_modules/@ckeditor/ckeditor5-basic-styles": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-basic-styles/-/ckeditor5-basic-styles-43.3.1.tgz", - "integrity": "sha512-1RBnPmgsIoxPL7wZhId2KsfPujITbEAfzHhi0c6m4kuWlkmcVXYldWvUvCvAUguAznx4LOxhKlp6RdFSPTFTbg==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-typing": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-block-quote": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-block-quote/-/ckeditor5-block-quote-43.3.1.tgz", - "integrity": "sha512-cgY4GKwMlIVLnhszPoc1ortp+T/s3TLowrwRFtWYxTKSsHWBGFlZUL6oMASPunpXvvJqHcgnKlCMxVSh2VMCkQ==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-enter": "43.3.1", - "@ckeditor/ckeditor5-typing": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-ckbox": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ckbox/-/ckeditor5-ckbox-43.3.1.tgz", - "integrity": "sha512-KObL9w/QBWJi0lG2zfm+x124Kzd7aVt+UaJHJEwsAPwhZvqM0LCUeR6wwb0oCN6ph5qrCjXoj09z7z8Txk5IwA==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-upload": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "blurhash": "2.0.5", - "ckeditor5": "43.3.1", - "lodash-es": "4.17.21" - } - }, - "node_modules/@ckeditor/ckeditor5-ckfinder": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ckfinder/-/ckeditor5-ckfinder-43.3.1.tgz", - "integrity": "sha512-Yji6c1/0H5fExDcT+NNyQQePx2cd8Ul1Xuko1UVmsLN2Vhi7VIDJjEkCFndJozd8VQqI62Obe1GTyjmapBV5+A==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-clipboard": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-43.3.1.tgz", - "integrity": "sha512-Ke6fVEy1fF3AWHMtKvF1pAoDYBVOG4q+gDHD8+dcV6KPK1uA/CR0mw6TZsslQQquT4jC79y05IWu2bq1Mxv01w==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "@ckeditor/ckeditor5-widget": "43.3.1", - "lodash-es": "4.17.21" - } - }, - "node_modules/@ckeditor/ckeditor5-cloud-services": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-cloud-services/-/ckeditor5-cloud-services-43.3.1.tgz", - "integrity": "sha512-JppySF+uWedDXPTVZBsTfZCe3qedDAdWSgw0Ww/qi4/sPFcgf/MaQ0LBHbl2Ii7JlJjng82F1F2kv9Ny/Rkauw==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-code-block": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-43.3.1.tgz", - "integrity": "sha512-UGhGCPNfFXLua0TmszLSWX6BlkemaPULN1EZ+FBPsUZb757qWWWVWI9GKLmAc4jSPqOv+azU+JAZJzX9bE1oYA==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-clipboard": "43.3.1", - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-enter": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-core": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-43.3.1.tgz", - "integrity": "sha512-6pil2OF4auF3PKrg1Oa86CqC91ZYc+NuHih0ebM0JW/I06d+0smnJg5dw4yN7mKbghbJS8mNrusxA5cf6Hkh6w==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "@ckeditor/ckeditor5-watchdog": "43.3.1", - "lodash-es": "4.17.21" - } - }, - "node_modules/@ckeditor/ckeditor5-dev-translations": { - "version": "45.0.8", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-dev-translations/-/ckeditor5-dev-translations-45.0.8.tgz", - "integrity": "sha512-+tgAiyjn4u2B5SWeLoZr/POxsmkSBfr+iv6ZCkYluVF1irdOLHncCFAoEFB2sAh9LD3e5zjD+xkW8Cq0m6PqJg==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@babel/parser": "^7.18.9", - "@babel/traverse": "^7.18.9", - "@ckeditor/ckeditor5-dev-utils": "^45.0.8", - "chalk": "^5.0.0", - "fs-extra": "^11.0.0", - "glob": "^10.0.0", - "plural-forms": "^0.5.5", - "pofile": "^1.0.9", - "rimraf": "^5.0.0", - "upath": "^2.0.1", - "webpack-sources": "^3.0.0" - }, - "engines": { - "node": ">=18.0.0", - "npm": ">=5.7.1" - } - }, - "node_modules/@ckeditor/ckeditor5-dev-utils": { - "version": "45.0.8", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-dev-utils/-/ckeditor5-dev-utils-45.0.8.tgz", - "integrity": "sha512-forw2L6sMitVf5KRxQfGoS+jEv+Nd7NWz0THzZ38YzWH0QdH6Ifumiu0OhGKZm8fzjm+S+pAZs/G+9cTUZcfdg==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-dev-translations": "^45.0.8", - "chalk": "^5.0.0", - "cli-cursor": "^5.0.0", - "cli-spinners": "^3.0.0", - "css-loader": "^7.0.0", - "cssnano": "^7.0.0", - "esbuild-loader": "^4.0.0", - "fs-extra": "^11.0.0", - "is-interactive": "^2.0.0", - "mini-css-extract-plugin": "^2.4.2", - "mocha": "^10.0.0", - "postcss": "^8.4.12", - "postcss-import": "^16.0.0", - "postcss-loader": "^8.0.0", - "postcss-mixins": "^11.0.0", - "postcss-nesting": "^13.0.0", - "raw-loader": "^4.0.1", - "shelljs": "^0.8.1", - "style-loader": "^4.0.0", - "terser-webpack-plugin": "^5.0.0", - "through2": "^4.0.0" - }, - "engines": { - "node": ">=18.0.0", - "npm": ">=5.7.1" - } - }, - "node_modules/@ckeditor/ckeditor5-easy-image": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-easy-image/-/ckeditor5-easy-image-43.3.1.tgz", - "integrity": "sha512-Cd5NojL0Vfa1SQj6uzbP3oSHvQY5ys2hXF/2jNsYKLePTCybSvGkg5REv1JifM6kSNRH1VXdad7a2LkqvXnCnA==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-upload": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-editor-balloon": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-43.3.1.tgz", - "integrity": "sha512-klS1FZG29nJE/XbfRXrXtwYU/9uCFdi7xGbYfaJnmyNt54h46aiquKacosbiffA87Tr5sT3Oqm3dBbNlsU158w==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1", - "lodash-es": "4.17.21" - } - }, - "node_modules/@ckeditor/ckeditor5-editor-classic": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-classic/-/ckeditor5-editor-classic-43.3.1.tgz", - "integrity": "sha512-wjBeXUQBuvz6CmGlb5XncJ9cHE7tozU6eoorycfSTQCzqr5uE57LWTlKclU42w7MgS2ya5V2kLnncr0ZqrZ2Vw==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1", - "lodash-es": "4.17.21" - } - }, - "node_modules/@ckeditor/ckeditor5-editor-decoupled": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-43.3.1.tgz", - "integrity": "sha512-aw2iZ+WCcCu9sUAnsHhsXZWLeVPyiLhZfpZDuEWjPlvsrCfT0RfSuwMcfx7l9PREA09VR8+6MTstm61EG8dmWQ==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1", - "lodash-es": "4.17.21" - } - }, - "node_modules/@ckeditor/ckeditor5-editor-inline": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-43.3.1.tgz", - "integrity": "sha512-3iZiWl2aM1bCnS52NeBoAqCVowABhWrBlns27JEGKZ+LNPZroMie7uKuMX3YQGYE2awFnsyP6XofoJtu6CcKCA==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1", - "lodash-es": "4.17.21" - } - }, - "node_modules/@ckeditor/ckeditor5-editor-multi-root": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-43.3.1.tgz", - "integrity": "sha512-HDgfTuotrHW91AZ+x+lumwo1tngRRZ87dnHT8kjSRFWAeXPSd2Kw986++Oj9K080+idZaYLF+IutAOqvCT32sw==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1", - "lodash-es": "4.17.21" - } - }, - "node_modules/@ckeditor/ckeditor5-engine": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-43.3.1.tgz", - "integrity": "sha512-Fkv3ibQLDPVHFH0z4/+gA5wrkPVWOen+Cjv/NecNBeAszZUo+F2j9RwvQ1zHwtGb0RWj3+BWOPgo8jhSe7tFgA==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-utils": "43.3.1", - "lodash-es": "4.17.21" - } - }, - "node_modules/@ckeditor/ckeditor5-enter": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-43.3.1.tgz", - "integrity": "sha512-xaHnU2RbfYi8ilfN260pB3YDvJ9lE4SfiFQusyRdWkeBo5gDAGBbQY+qCC/hmxkr/yftNZfK+d7Ow93xXtqEwg==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-essentials": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-essentials/-/ckeditor5-essentials-43.3.1.tgz", - "integrity": "sha512-bZtzXhmBz8XF9J4eUxOjURmw0HJPKIqo18a6vNxg07W8z3ouHMb9ke//4z4FF9N/1dbtA7a2+jIACO6WvXrX4A==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-clipboard": "43.3.1", - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-enter": "43.3.1", - "@ckeditor/ckeditor5-select-all": "43.3.1", - "@ckeditor/ckeditor5-typing": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-undo": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-find-and-replace": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-43.3.1.tgz", - "integrity": "sha512-U9dyK8yQgxGTUphRbqdUJbvfi5v7zzijCo3Kj51NxyWwOFh7SGReQxHDGn44DmSRold6lg4F1sbXeFdwu1o+WA==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1", - "lodash-es": "4.17.21" - } - }, - "node_modules/@ckeditor/ckeditor5-font": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-43.3.1.tgz", - "integrity": "sha512-NOeBtScqMuBLVWFPuW0snleh7rMFkNb006yzDIG6JApnF3Vxi0JLQXub/lPHPgw5srqJ3z159DWT++exoyz/mQ==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-heading": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-heading/-/ckeditor5-heading-43.3.1.tgz", - "integrity": "sha512-cc8H027Y2OwvYDGMTbBSzE+oZaiLMZtlUnkgiolMw/OQ59ysONYi+KqyMzBMTuaXrkP3CLM57ZbsVGASQ3IQmQ==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-paragraph": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-highlight": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-43.3.1.tgz", - "integrity": "sha512-XVJq1YP4IAaWQBAyY1xlKOfzkpnclUH8zTUPaW3TZUGK5t6W/vFT+KAzYfUp7PdBb+PP8/O47FwKTvIQBkbqFw==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-horizontal-line": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-43.3.1.tgz", - "integrity": "sha512-zkKe0S9gBXwveBUzUuCBPWyrzHQor/zcMCCX9YQk1StUxtRRsURNvWOoFeoG+Vf5jMGSA2gpnBgIo70WrX4A3A==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-widget": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-html-embed": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-43.3.1.tgz", - "integrity": "sha512-VqIhhPwMgAzmPqjvQUQYaFmCFglkg203W+LSVCwrvgVZ9mVtKbkhwCHBJnLhG7qatar7Gg93bObfAFdAjsaR2A==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "@ckeditor/ckeditor5-widget": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-html-support": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-43.3.1.tgz", - "integrity": "sha512-cnQ+kCPYH5GiSe5S+13Fr0vuS7DzT4Onx11fvOkssUujtAJ1e/C7hNf5Ehd+SOAgr5IzevutA/+OeR2KHGjIag==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-enter": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "@ckeditor/ckeditor5-widget": "43.3.1", - "ckeditor5": "43.3.1", - "lodash-es": "4.17.21" - } - }, - "node_modules/@ckeditor/ckeditor5-image": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-image/-/ckeditor5-image-43.3.1.tgz", - "integrity": "sha512-QgHxZtWpclzQ5SUrh1oMsGFCvjykxge5IKe96iKUyAVrhyQp60RhW8DdAElHnPUg3wwILMYE7cKMphknCxcVkQ==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-clipboard": "43.3.1", - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-typing": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-undo": "43.3.1", - "@ckeditor/ckeditor5-upload": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "@ckeditor/ckeditor5-widget": "43.3.1", - "ckeditor5": "43.3.1", - "lodash-es": "4.17.21" - } - }, - "node_modules/@ckeditor/ckeditor5-indent": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-indent/-/ckeditor5-indent-43.3.1.tgz", - "integrity": "sha512-CPU50tumKH7rJ6f9QEB/LHSyzKul9xP/43F1IesvOBWnOkAxQ2QI51oORT5WdKn4B0Z56ojAm48Q/ZUtsef+3w==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-language": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-43.3.1.tgz", - "integrity": "sha512-M7npJRhLoZksnvjZ0fS+6hbAN4RebgZCE2bT9b3Z8Df2Alfy0GJEwJL5aQsYpr+78QFeytTpqzjxXLNLjOyEqA==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-link": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-link/-/ckeditor5-link-43.3.1.tgz", - "integrity": "sha512-duTA7harmvZPZ2LbJ8tHnOrhx5lGk6AGavbDzK2xuicMncivm+amrkl/b771uA3Rr6gclHY77ZPcOuVaK+dp/g==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-clipboard": "43.3.1", - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-typing": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "@ckeditor/ckeditor5-widget": "43.3.1", - "ckeditor5": "43.3.1", - "lodash-es": "4.17.21" - } - }, - "node_modules/@ckeditor/ckeditor5-list": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-list/-/ckeditor5-list-43.3.1.tgz", - "integrity": "sha512-PuR6uJ/SKvaXIgqTO3MUnX+00/xB/TalStiVqZqqG0xlYg47/eb6hul+4fmTPV7ahlJaon6Y3nO49TsPbbhApQ==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-clipboard": "43.3.1", - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-enter": "43.3.1", - "@ckeditor/ckeditor5-typing": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-markdown-gfm": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-43.3.1.tgz", - "integrity": "sha512-aVP2FqQP7okSAorQoItcYRbOd0J2O1ubGjtvGGzl3uC5TuKAtlWYWcBfiVTHKxCCtxywPRiEgBxwoGuB5mlwhA==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-clipboard": "43.3.1", - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "ckeditor5": "43.3.1", - "marked": "4.0.12", - "turndown": "7.2.0", - "turndown-plugin-gfm": "1.0.2" - } - }, - "node_modules/@ckeditor/ckeditor5-media-embed": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-media-embed/-/ckeditor5-media-embed-43.3.1.tgz", - "integrity": "sha512-3xMIaH/NTNEKv+lu1cRIIPGgDJgYI1DB+5NMXNVL3UGQkXdqW7PtgFDsOnhQwTAbyKpy+fHDngLb3eZuRdDkKw==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-clipboard": "43.3.1", - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-typing": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-undo": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "@ckeditor/ckeditor5-widget": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-mention": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-43.3.1.tgz", - "integrity": "sha512-yrOdynVNOS72RjTjhFHzv3Ofbm0eTBKFhuibxdKFfHtTR0QIqSVB5jU+aW1+Jq5LG73E+9eYtip5paSjkqJMWQ==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-typing": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1", - "lodash-es": "4.17.21" - } - }, - "node_modules/@ckeditor/ckeditor5-minimap": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-43.3.1.tgz", - "integrity": "sha512-2b0b4mZtRIHAvN/MFAVeqiGt58TZI7ixLcgJo0MHNesYlIk6v13opDWhQ9oefNe8OwJMkD3fAHMlAcg+fUqA9g==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-page-break": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-43.3.1.tgz", - "integrity": "sha512-6AI2GGJveEm/2GESUY01wSPM7AeqHqVuX4Hon20uCAXHYCQkDubOHJ0yV3oFXl7iHeO6Ue2DdlSLayIUXCLoEQ==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-widget": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-paragraph": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paragraph/-/ckeditor5-paragraph-43.3.1.tgz", - "integrity": "sha512-16ry56X+uXuZEzGZwLS8zpX2DtWN/CHHu5pSz0r2VDZ1zUGLsq/MXutotZfzMMjgdED3x4mJRQE+WgiyRrlKDg==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-paste-from-office": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paste-from-office/-/ckeditor5-paste-from-office-43.3.1.tgz", - "integrity": "sha512-LLf1KB11jeYLDpQPq0d2QVPxQxp9kEibPAF4rGD4stPpRx9d+DbwmE59Y5wVASKvYJo+yNpR9CGWsE4ZgjwTWw==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-clipboard": "43.3.1", - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-remove-format": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-43.3.1.tgz", - "integrity": "sha512-m7zvvYzHN/HExT0NoILXauVFI/AKQyuzPqqCI/VO1Ft5mLswXGuK6vmO1U10SmGz85etYZjEipKuouf2Anyqxg==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-restricted-editing": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-43.3.1.tgz", - "integrity": "sha512-L6sA6UrUPy4Q3AzF8yQGsgEadO1IcZv53Ijevk9KuD7dwLF4f9x4ukUFLlGRpoYHPAW/+RpADp2PPegjKHo9QQ==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-select-all": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-select-all/-/ckeditor5-select-all-43.3.1.tgz", - "integrity": "sha512-oYQ8uF6hmlX7OefpJ0FflvKddAkEffg3fKMT2FAINwqxhX+O7h9RQZ79AiOkTab7HUTIkbhM5AlhFJIXiX0Z7Q==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-show-blocks": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-43.3.1.tgz", - "integrity": "sha512-o+IhZnjMmoF2qd4l1GqQqroeIEA29QAIOYfvrdMKZGrzVGmjbvwyNkbJRyZlAYhZqX8tLDPaPGn0tl+onhWtzw==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "ckeditor5": "43.3.1" - } - }, - "node_modules/@ckeditor/ckeditor5-source-editing": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-43.3.1.tgz", - "integrity": "sha512-Pq7WthQAiKa3A3q82bHqNRjQ/xlOpSX9kZHLm+CDH8XACxZbBF6Unz4JPR9zJRuQxkoFs314DM/PG6pPZQgXXA==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-theme-lark": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1" + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" } }, - "node_modules/@ckeditor/ckeditor5-special-characters": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-43.3.1.tgz", - "integrity": "sha512-3iwrtISndl5hc+/LuSXht69xqkEv95zg8Qxv+ovREA3pvtgt5u9O0t7ELcmUeTTEs/hJkF2FDplIYQj5zIvO+g==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-typing": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1" - } + "node_modules/@gar/promisify": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", + "dev": true, + "license": "MIT" }, - "node_modules/@ckeditor/ckeditor5-style": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-43.3.1.tgz", - "integrity": "sha512-2+ATPa5y4ZUkak5xFTTDeUPhuCAYB4OPNt/QjMvrQjpEwXoWDJ4f8GqR9oFFsqEGMm65GrUp/xIQW8WRH43Kng==", - "license": "GPL-2.0-or-later", + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "license": "ISC", "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-typing": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1", - "lodash-es": "4.17.21" + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/@ckeditor/ckeditor5-table": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-table/-/ckeditor5-table-43.3.1.tgz", - "integrity": "sha512-Qr3GkKELnG1EY7Bu9dGQBkGTqhVnygeHKDCTEG9m218shYsI5L6jFftGUzWmJzMpm3hNFkyYv+1YWaIoqfRzIQ==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-clipboard": "43.3.1", - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "@ckeditor/ckeditor5-widget": "43.3.1", - "ckeditor5": "43.3.1", - "lodash-es": "4.17.21" - } - }, - "node_modules/@ckeditor/ckeditor5-theme-lark": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-43.3.1.tgz", - "integrity": "sha512-kAgeGx66jT31FFYwAoc43oX5ehQtiYE57OJWlPTXrDXxyq0Y+LYFW2/bp4UVYdZK+OKv9dp1Do3VQfxJoGzFjg==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-ui": "43.3.1" + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" } }, - "node_modules/@ckeditor/ckeditor5-typing": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-43.3.1.tgz", - "integrity": "sha512-sK45GlrOHqWOphVnzDKe3kofVJGhSRk34UQJnyXgMN+35QJqypnJeBYBnnHWL8+nK0S4zk9oQO3PuiRH6gg/WQ==", - "license": "GPL-2.0-or-later", + "node_modules/@jest/console": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "dev": true, + "license": "MIT", "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "lodash-es": "4.17.21" + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@ckeditor/ckeditor5-ui": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-43.3.1.tgz", - "integrity": "sha512-dbR4FK6mCkI89h4Joyf1PZt0Xsq0N+sZg05Z6BpYz6GS9U35C7J9bHxN469dvaIc8bJws4eYJ5x+St3LcvlduQ==", - "license": "GPL-2.0-or-later", + "node_modules/@jest/console/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "color-convert": "2.0.1", - "color-parse": "1.4.2", - "lodash-es": "4.17.21", - "vanilla-colorful": "0.7.2" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@ckeditor/ckeditor5-undo": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-undo/-/ckeditor5-undo-43.3.1.tgz", - "integrity": "sha512-UxrWPlHzL/DKuxp4R5mlQvy995Ozehh5hQxY5yvL285Dzv6PY5pk627Wv/qS8AyfLMyVNiFO9bDWBIcT9igQRA==", - "license": "GPL-2.0-or-later", + "node_modules/@jest/console/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@ckeditor/ckeditor5-upload": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-upload/-/ckeditor5-upload-43.3.1.tgz", - "integrity": "sha512-uOEhCgqgiK4V/CnbnuwHU/NUOG4ioQE5KUUtVmRG2xjQKg5C1uIT2dig+wnKw8vOdwVTMD2hVt7/OC/whQuheQ==", - "license": "GPL-2.0-or-later", + "node_modules/@jest/core": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", + "dev": true, + "license": "MIT", "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1" + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/@ckeditor/ckeditor5-utils": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-43.3.1.tgz", - "integrity": "sha512-4CyM3AP+DcfuPuw+zceI3UTh3HcusnvFVeRPPw6j3Qe29/jadZYsdvkdo9KsDaiwgx0ctooKCuY9SfAcd/CZNQ==", - "license": "GPL-2.0-or-later", + "node_modules/@jest/core/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", "dependencies": { - "@ckeditor/ckeditor5-ui": "43.3.1", - "lodash-es": "4.17.21" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@ckeditor/ckeditor5-watchdog": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-43.3.1.tgz", - "integrity": "sha512-d9gh0QIrrImIe2SFLo/IBLdpgC9REVkvUTv//qLbUaM2ffBboMnpJYPAB/hgl8ev4lkDvCrivlGjc/80COfGTQ==", - "license": "GPL-2.0-or-later", + "node_modules/@jest/core/node_modules/chalk/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", "dependencies": { - "lodash-es": "4.17.21" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@ckeditor/ckeditor5-widget": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-widget/-/ckeditor5-widget-43.3.1.tgz", - "integrity": "sha512-0naXUVC6BFLnuj3lu5aTfRxmqV6py9+zqGHdJJZ0x8uSg9qcfUCLEQvA59bqzNteRya/lZeZhYKj8IcGnbB1oA==", - "license": "GPL-2.0-or-later", + "node_modules/@jest/core/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "license": "MIT", "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-enter": "43.3.1", - "@ckeditor/ckeditor5-typing": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "lodash-es": "4.17.21" + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@ckeditor/ckeditor5-word-count": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-43.3.1.tgz", - "integrity": "sha512-W0Ic7y4/ePVqW22pHuXv5HRAbaDJFO13rUqyTZqU2H2ExZdMbJN6eT/UVhnO1XvKs/+jdKGO3LGWXt9QmmtkhA==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "ckeditor5": "43.3.1", - "lodash-es": "4.17.21" - } + "node_modules/@jest/core/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true, + "license": "MIT" }, - "node_modules/@discoveryjs/json-ext": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", - "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "node_modules/@jest/core/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, "engines": { - "node": ">=10.0.0" + "node": ">=8" } }, - "node_modules/@esbuild/aix-ppc64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", - "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", - "cpu": [ - "ppc64" - ], + "node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "dev": true, "license": "MIT", - "optional": true, - "os": [ - "aix" - ], + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", - "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", - "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", - "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", - "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", - "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", - "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", - "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", - "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", - "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", - "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", - "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", - "cpu": [ - "loong64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", - "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", - "cpu": [ - "mips64el" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", - "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", - "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", - "cpu": [ - "riscv64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", - "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", - "cpu": [ - "s390x" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", - "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", - "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", - "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", - "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", - "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", - "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", - "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@gar/promisify": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", - "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", - "dev": true, - "license": "MIT" - }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "license": "ISC", - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/console": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", - "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^29.7.0", - "jest-util": "^29.7.0", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/console/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/console/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/core": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", - "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/console": "^29.7.0", - "@jest/reporters": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.7.0", - "jest-config": "^29.7.0", - "jest-haste-map": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.7.0", - "jest-resolve-dependencies": "^29.7.0", - "jest-runner": "^29.7.0", - "jest-runtime": "^29.7.0", - "jest-snapshot": "^29.7.0", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "jest-watcher": "^29.7.0", - "micromatch": "^4.0.4", - "pretty-format": "^29.7.0", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/@jest/core/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/chalk/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/core/node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/core/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/environment": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", - "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/fake-timers": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-mock": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect": { @@ -3666,9 +2430,9 @@ } }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", "license": "MIT", "dependencies": { "@jridgewell/set-array": "^1.2.1", @@ -3723,12 +2487,6 @@ "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@mixmark-io/domino": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@mixmark-io/domino/-/domino-2.2.0.tgz", - "integrity": "sha512-Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw==", - "license": "BSD-2-Clause" - }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -4284,16 +3042,6 @@ "url": "https://opencollective.com/parcel" } }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=14" - } - }, "node_modules/@popperjs/core": { "version": "2.11.8", "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", @@ -4475,9 +3223,9 @@ "license": "MIT" }, "node_modules/@tiptap/core": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/core/-/core-2.10.2.tgz", - "integrity": "sha512-jYLXbYHTi1stLla/74J8NJizDtcJ/uokhG+1gN4DMWHDujaZOrRZhW98o9gN5BYAp4zv//TVX8H+afLZwKGCKQ==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/core/-/core-2.10.4.tgz", + "integrity": "sha512-fExFRTRgb6MSpg2VvR5qO2dPTQAZWuUoU4UsBCurIVcPWcyVv4FG1YzgMyoLDKy44rebFtwUGJbfU9NzX7Q/bA==", "license": "MIT", "funding": { "type": "github", @@ -4488,9 +3236,9 @@ } }, "node_modules/@tiptap/extension-blockquote": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-blockquote/-/extension-blockquote-2.10.2.tgz", - "integrity": "sha512-whmep+v0VvBI9Kg5TJ4sKIj7Z+MOjBKAndP0qn1bMoqPNNVRxt92iIud72wfXwfBNcrYiGNlssvsAnPwXfbG9w==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-blockquote/-/extension-blockquote-2.10.4.tgz", + "integrity": "sha512-4JSwAM3B92YWvGzu/Vd5rovPrCGwLSaSLD5rxcLyfxLSrTDQd3n7lp78pzVgGhunVECzaGF5A0ByWWpEyS0a3w==", "license": "MIT", "funding": { "type": "github", @@ -4501,9 +3249,9 @@ } }, "node_modules/@tiptap/extension-bold": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-bold/-/extension-bold-2.10.2.tgz", - "integrity": "sha512-1KNTXA8HDkhXblkfeRYDdqAu/Xz2fygyaSrvabrfzg5QVYyVYPNJwjrtfTQNyzWOejBVGE3mOyqnjlLUzPmyYA==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-bold/-/extension-bold-2.10.4.tgz", + "integrity": "sha512-SdO4oFQKaERCGfwOc1CLYQRtThENam2KWfWmvpsymknokt5qYzU57ft0SE1HQV9vVYEzZ9HrWIgv2xrgu0g9kg==", "license": "MIT", "funding": { "type": "github", @@ -4514,9 +3262,9 @@ } }, "node_modules/@tiptap/extension-bubble-menu": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-bubble-menu/-/extension-bubble-menu-2.10.2.tgz", - "integrity": "sha512-KAh2bvYcixJ3RFv2P05kPNLAJ4uW6BDj1AfEMn0YguBWWTgZg8Kot1AzBRgTjBBFCInQS6b49db1ff4M07DGsg==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-bubble-menu/-/extension-bubble-menu-2.10.4.tgz", + "integrity": "sha512-GVtZwJaQyLBptMsmDtYl5GEobd1Uu7C9sc9Z+PdXwMuxmFfg+j07bCKCj5JJj/tjgXCSLVxWdTlDHxNrgzQHjw==", "license": "MIT", "dependencies": { "tippy.js": "^6.3.7" @@ -4531,9 +3279,9 @@ } }, "node_modules/@tiptap/extension-bullet-list": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-bullet-list/-/extension-bullet-list-2.10.2.tgz", - "integrity": "sha512-jXtTQXZ3j2cyG2dNyVnGauIbsX8CmDY56MJfDg1p+1UZ3zW2GVbKHfvyuulsjobxEd0DNLxduGqbkDY7x3I+HA==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-bullet-list/-/extension-bullet-list-2.10.4.tgz", + "integrity": "sha512-JVwDPgOBYRU2ivaadOh4IaQYXQEiSw6sB36KT/bwqJF2GnEvLiMwptdRMn9Uuh6xYR3imjIZtV6uZAoneZdd6g==", "license": "MIT", "funding": { "type": "github", @@ -4544,9 +3292,9 @@ } }, "node_modules/@tiptap/extension-character-count": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-character-count/-/extension-character-count-2.10.2.tgz", - "integrity": "sha512-7/7Jmiio5D7Q9uc8sSJuFJeLbh9cHff1ExaUjcIEOG9U65OF8ZUShJ6g2e46mn+sA8ilMyjBkc/NockyKEt9SA==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-character-count/-/extension-character-count-2.10.4.tgz", + "integrity": "sha512-NoVLQI/zTEdA0EZe5+oinQ+F/WQMblZRdEWgfsUtQoLRloSAF+pFeQwDenpejdOuWqixT4vdzpboBocj4uQLsw==", "license": "MIT", "funding": { "type": "github", @@ -4558,9 +3306,9 @@ } }, "node_modules/@tiptap/extension-code": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-code/-/extension-code-2.10.2.tgz", - "integrity": "sha512-VV14oeOsJ3VqUEjuUl+lzSW/IBLhurmcj9IiN2sq/Voin04dwvtchqP5fNXgmM3+rFM88zNOsbX0e4uSG4R10w==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-code/-/extension-code-2.10.4.tgz", + "integrity": "sha512-Vj/N0nbSQiV1o7X7pRySK9Fu72Dd266gm27TSlsts6IwJu5MklFvz7ezJUWoLjt2wmCV8/U/USmk/39ic9qjvg==", "license": "MIT", "funding": { "type": "github", @@ -4571,9 +3319,9 @@ } }, "node_modules/@tiptap/extension-code-block": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-code-block/-/extension-code-block-2.10.2.tgz", - "integrity": "sha512-Y/wkK9Ni4ALGqiGezov62p6cpPcJauBfn2wF1lgJVr6XJ4na5KTCUEbiyBZNbo3aD52vZKgWt8LpLvJ2/5STSw==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-code-block/-/extension-code-block-2.10.4.tgz", + "integrity": "sha512-qS4jnbJqghNMT2+B+GQ807ATgqkL9OQ//NlL+ZwVSe+DPDduNA9B6IB9SrWENDfOnzekpi7kcEcm+RenELARRQ==", "license": "MIT", "funding": { "type": "github", @@ -4585,9 +3333,9 @@ } }, "node_modules/@tiptap/extension-document": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-document/-/extension-document-2.10.2.tgz", - "integrity": "sha512-Xodp6rMg6vtKZkyX3I6gVd6OZ9PNz9udhDLdCG6JscVJQPO8viV++39UOH416FCvRT46BdHWNCRu/xjUG1C0rA==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-document/-/extension-document-2.10.4.tgz", + "integrity": "sha512-1Pqrl6Rr9bVEHJ3zO2dM7UUA0Qn/r70JQ9YLlestjW1sbMaMuY3Ifvu2uSyUE7SAGV3gvxwNVQCrv8f0VlVEaA==", "license": "MIT", "funding": { "type": "github", @@ -4598,9 +3346,9 @@ } }, "node_modules/@tiptap/extension-dropcursor": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-dropcursor/-/extension-dropcursor-2.10.2.tgz", - "integrity": "sha512-pzkD6Y9r3x4Mb6KqpuPraGNNfxIkQD6dJNtZ9PpU9jVtJDjsGIGdyzCbVJq984UAPBamXiF/5DLwlON7buLd6A==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-dropcursor/-/extension-dropcursor-2.10.4.tgz", + "integrity": "sha512-0XEM/yNLaMc/sZlYOau7XpHyYiHT9LwXUe7kmze/L8eowIa/iLvmRbcnUd3rtlZ7x7wooE6UO9c7OtlREg4ZBw==", "license": "MIT", "funding": { "type": "github", @@ -4612,9 +3360,9 @@ } }, "node_modules/@tiptap/extension-floating-menu": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-floating-menu/-/extension-floating-menu-2.10.2.tgz", - "integrity": "sha512-s/KfW5YQY13BwhSQRlgomYmHuBT0k6FBxn8mgJLHcA9sTqgy/BriOhmNkMrredNzd4UOd5JVpcT6b+eckG4nkQ==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-floating-menu/-/extension-floating-menu-2.10.4.tgz", + "integrity": "sha512-K2MDiu6CwQ7+Jr6g1Lh3Tuxm1L6SefSHMpQO0UW3aRGwgEV5pjlrztnBFX4K9b7MNuQ4dJGCUK9u8Cv7Xss0qg==", "license": "MIT", "dependencies": { "tippy.js": "^6.3.7" @@ -4629,9 +3377,9 @@ } }, "node_modules/@tiptap/extension-gapcursor": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-gapcursor/-/extension-gapcursor-2.10.2.tgz", - "integrity": "sha512-Uj2hIYC5zRPGI9xBYFwtld8JrZ8YZXEqO7sN5VcOwt12cnSmvzga86jUKpj3WOMP/8KamLWW8m8UKHd7Qg1kMA==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-gapcursor/-/extension-gapcursor-2.10.4.tgz", + "integrity": "sha512-KbJfoaqTZePpkWAN+klpK5j0UVtELxN7H5B0J556/UCB/rnq+OsdEFHPks2Ss9TidqWzRUqcxUE50UZ7b8h7Ug==", "license": "MIT", "funding": { "type": "github", @@ -4643,9 +3391,9 @@ } }, "node_modules/@tiptap/extension-hard-break": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-hard-break/-/extension-hard-break-2.10.2.tgz", - "integrity": "sha512-jEVKEe8I+Ai/qYjVf6Idg2Gpp1Cxn4O4twJ0MnlEdzoaEHgt/OTU5NO0PBZMpoe/4BkOvkETZmqRbrcGsapeYQ==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-hard-break/-/extension-hard-break-2.10.4.tgz", + "integrity": "sha512-nW9wubW1A/CO2Ssn9wNMP08tR9Oarg9VUGzJ5qNuz38DDNyntE1SyDS+XStkeMq5nKqJ3YKhukyAJH/PiRq4Mg==", "license": "MIT", "funding": { "type": "github", @@ -4656,9 +3404,9 @@ } }, "node_modules/@tiptap/extension-heading": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-heading/-/extension-heading-2.10.2.tgz", - "integrity": "sha512-OfvE+epZSyB0TbV5/4GdvRPMT1kd0fbgLUEaldWMZOLw/4eOGWZ8yXAtrWkoRMLZfOclgnDfwXvXJLnWXrDdDw==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-heading/-/extension-heading-2.10.4.tgz", + "integrity": "sha512-7D0h0MIvE97Gx3Qwuo2xnPDK07WfCnyh4tpOPBOus4e1g6sgxVkwDwhbkYWiwvIrf4BUVJflnke/DEDCVp6/Eg==", "license": "MIT", "funding": { "type": "github", @@ -4669,9 +3417,9 @@ } }, "node_modules/@tiptap/extension-history": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-history/-/extension-history-2.10.2.tgz", - "integrity": "sha512-Hr5cvYgOAP7vaRD5vbMjirTATFe/zYqnzePhq1c9TQESOi2o0zKxWpZIcHbFFIXCjHLSnpXOZ4yFwHP4k12rgg==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-history/-/extension-history-2.10.4.tgz", + "integrity": "sha512-fg6BNxbpMMtgKaiNI/GLcCzkxIQMwSYBhO9LA0CxLvmsWGU+My4r9W3DK6HwNoRJ9+6OleDPSLo1P73fbSTtEA==", "license": "MIT", "funding": { "type": "github", @@ -4683,9 +3431,9 @@ } }, "node_modules/@tiptap/extension-horizontal-rule": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-horizontal-rule/-/extension-horizontal-rule-2.10.2.tgz", - "integrity": "sha512-DqaCUxjXnoVN/yylEjoGIlvKkT1KF8mwFJncJn8oSAukYEaSAK056ETvmyZk+/bzc3aRpfv0Kfn/zmLfHZ3wnA==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-horizontal-rule/-/extension-horizontal-rule-2.10.4.tgz", + "integrity": "sha512-s9ycm/BOGoW3L0Epnj541vdngHbFbMM488HoODd1CmVSw1C+wBWFgsukgqKjlyE3VGfZXuSb1ur9zinW0RiLJQ==", "license": "MIT", "funding": { "type": "github", @@ -4697,9 +3445,9 @@ } }, "node_modules/@tiptap/extension-image": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-image/-/extension-image-2.10.2.tgz", - "integrity": "sha512-xaJOVeR/fWozJMVKjYhskecsbayUUm1tIbjE+SyG7IW3Jp+081/W9z2nyfXG6YNnuVjYq+uLejR2Bt0cnEZvmA==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-image/-/extension-image-2.10.4.tgz", + "integrity": "sha512-fPdAqP4M1zwz5jyrQNIEL4OvvGeJso45svaaBLV342yRLOpbVIgAp/RsuWSGDQTUWoGhdkHdIrbH2bUGNEbMBg==", "license": "MIT", "funding": { "type": "github", @@ -4710,9 +3458,9 @@ } }, "node_modules/@tiptap/extension-italic": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-italic/-/extension-italic-2.10.2.tgz", - "integrity": "sha512-6p1YkJEWHuMROzNrK+GFJamujBswpydfR3ZMpIjQTLr4hRhSGrde/B5WODRDS+3JiK1xcN16ZQVPFsRJaHMjfQ==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-italic/-/extension-italic-2.10.4.tgz", + "integrity": "sha512-8MIQ+wsbyxNCZDCFTVTOXrS2AvFyOhtlBNgVU2+6r6xnJV4AcfEA3qclysqrjOlL117ped/nzDeoB0AeX0CI+Q==", "license": "MIT", "funding": { "type": "github", @@ -4723,9 +3471,9 @@ } }, "node_modules/@tiptap/extension-link": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-link/-/extension-link-2.10.2.tgz", - "integrity": "sha512-bgsWdinDPGEiMD0NgphpKaxm4l9+PbPwdLDGDFyEX069VAyuSN4y63Sn32clpwlLcibVu3JxVFClJ+o6wKtmdg==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-link/-/extension-link-2.10.4.tgz", + "integrity": "sha512-9lbtMUPc9IYCRMKV/B4k/no9J5OQQl/jJn9W2ce3NjJZSrOjuZs0CjJZgCESIaj6911s7nEJUvxKKmsbD3UC3Q==", "license": "MIT", "dependencies": { "linkifyjs": "^4.1.0" @@ -4740,9 +3488,9 @@ } }, "node_modules/@tiptap/extension-list-item": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-list-item/-/extension-list-item-2.10.2.tgz", - "integrity": "sha512-NE800m/QCk58MUcfeeCqmDjgOuiwHddaZvCCQIpErZdI2Y0io9RsSYU3HHEFPIfbKsv/ykVTYbwSweTPs1Tmxw==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-list-item/-/extension-list-item-2.10.4.tgz", + "integrity": "sha512-8K3WUD5fPyw2poQKnJGGm7zlfeIbpld92+SRF4M9wkp95EzvgexTlodvxlrL3i8zKXcQQVyExWA8kCcGPFb9bA==", "license": "MIT", "funding": { "type": "github", @@ -4753,9 +3501,9 @@ } }, "node_modules/@tiptap/extension-ordered-list": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-ordered-list/-/extension-ordered-list-2.10.2.tgz", - "integrity": "sha512-1WYknf7/feouoBN7jW9Z6fvN9gzS1WRaOrDVkLZQ2ZLgT+Bs8H8/r1pv23q8Un6lg0mApwqnUxNhLOOrVyDkGQ==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-ordered-list/-/extension-ordered-list-2.10.4.tgz", + "integrity": "sha512-NaeEu+qFG2O0emc8WlwOM7DKNKOaqHWuNkuKrrmQzslgL+UQSEGlGMo6NEJ5sLLckPBDpIa0MuRm30407JE+cg==", "license": "MIT", "funding": { "type": "github", @@ -4766,9 +3514,9 @@ } }, "node_modules/@tiptap/extension-paragraph": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-paragraph/-/extension-paragraph-2.10.2.tgz", - "integrity": "sha512-EZG9W5rsU4uP585cIOrhbAPOUsgqrFbDrj1tZjTbvv0EWK03Un3FGYoGilkcUIxD9uB/XVHP+v2596Ifyi/dvQ==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-paragraph/-/extension-paragraph-2.10.4.tgz", + "integrity": "sha512-SRNVhT8OXqjpZtcyuOtofbtOpXXFrQrjqqCc/yXebda//2SfUTOvB16Lss77vQOWi6xr7TF1mZuowJgSTkcczw==", "license": "MIT", "funding": { "type": "github", @@ -4779,9 +3527,9 @@ } }, "node_modules/@tiptap/extension-placeholder": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-placeholder/-/extension-placeholder-2.10.2.tgz", - "integrity": "sha512-QWzih69SetWYiylQzHsK29dMR8z1ParfcEw05hy3yyWqXE1DiKEot6rOGV1xenMVEA/SNGYYhQia15Bvco95TA==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-placeholder/-/extension-placeholder-2.10.4.tgz", + "integrity": "sha512-leWG4xP7cvddR6alGZS7yojOh9941bxehgAeQDLlEisaJcNa2Od5Vbap2zipjc5sXMxZakQVChL27oH1wWhHkQ==", "license": "MIT", "funding": { "type": "github", @@ -4793,9 +3541,9 @@ } }, "node_modules/@tiptap/extension-strike": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-strike/-/extension-strike-2.10.2.tgz", - "integrity": "sha512-TjrBbO6UbXCt55hV9wRE7h5R/jLTB+z2yn2blz1TfR7wKkX3tJOnb+ptvIHEVFGJOjkZP6Xaj+aAkGVg5dKZYA==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-strike/-/extension-strike-2.10.4.tgz", + "integrity": "sha512-OibipsomFpOJWTPVX/z4Z53HgwDA93lE/loHGa+ONJfML1dO6Zd6UTwzaVO1/g8WOwRgwkYu/6JnhxLKRlP8Lg==", "license": "MIT", "funding": { "type": "github", @@ -4806,9 +3554,9 @@ } }, "node_modules/@tiptap/extension-subscript": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-subscript/-/extension-subscript-2.10.2.tgz", - "integrity": "sha512-V6fxOl7+WWckXJfE9vx4c9Ab7PIc+lCH59WSwyp20Qe+tbEw6Qw1oP+qvwI82v3+XAhkexIlfhlMkwIoqKSTtA==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-subscript/-/extension-subscript-2.10.4.tgz", + "integrity": "sha512-r/4oMBnMEeXqSP4GttKrd4N5FQgzuLtWdxuVBVUIV7C7TUg5l+YXsoFqhmODSWt/I6hSLTg0ArrQcox6TOV5cA==", "license": "MIT", "funding": { "type": "github", @@ -4819,9 +3567,9 @@ } }, "node_modules/@tiptap/extension-superscript": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-superscript/-/extension-superscript-2.10.2.tgz", - "integrity": "sha512-Cw4T99cgOMEqjjFrse2q8EBE9z8kDuCyGdkVYozrVtF+PRs1oyicp+JFKxm43fV5hMHtj/r4a8soIF93ll1JnA==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-superscript/-/extension-superscript-2.10.4.tgz", + "integrity": "sha512-QLmzpjawefaKzL0LAy/jMSNau18/YVe43w2pQ9JaZgBYsLmhmDIi4U1YFTBrryVhjv8lQubKd38f9Q7rie6ywg==", "license": "MIT", "funding": { "type": "github", @@ -4832,9 +3580,9 @@ } }, "node_modules/@tiptap/extension-table": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-table/-/extension-table-2.10.2.tgz", - "integrity": "sha512-T7hzHEB090KsAy0VS4wogcjwauKHlYorQKrBxxZHzE6n6w6Zi0Cz00qJnAb6oYgKrMCTredcxnWUH8PmWlehYg==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-table/-/extension-table-2.10.4.tgz", + "integrity": "sha512-ak1RT8n0WQFNnVsZ9e6QFLWlRQP0IjT+Yp/PTsx5fSmqkiiwQKGs1ILCJWlBB3H0hV7N69aaOtK3h/35lmqoEg==", "license": "MIT", "funding": { "type": "github", @@ -4846,9 +3594,9 @@ } }, "node_modules/@tiptap/extension-table-cell": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-table-cell/-/extension-table-cell-2.10.2.tgz", - "integrity": "sha512-FmppE53gmg/PTdtxAMsGP13SZc03dVKsH94l/Jj60gU5xPnjR6424+SETdotjAQdFCBRTYoci2BCP+22e/FTzw==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-table-cell/-/extension-table-cell-2.10.4.tgz", + "integrity": "sha512-vYwRYt3xPaAU4hxoz3OMGPQzcAxaxEVri6VSRMWg4BN3x4DwWevBTAk59Ho9nkJpaRuXO6c5pIxcwWCZM0Aw0w==", "license": "MIT", "funding": { "type": "github", @@ -4859,9 +3607,9 @@ } }, "node_modules/@tiptap/extension-table-header": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-table-header/-/extension-table-header-2.10.2.tgz", - "integrity": "sha512-1kmWgKrrHSC38sB+IWwYnBmRFot8u3PntneHIpQoo11wcVkEWUNZ9lmhEKMawnKan5h2yDVlUsPMR9QB/iarsQ==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-table-header/-/extension-table-header-2.10.4.tgz", + "integrity": "sha512-NVi/KMBh9IAzpukjptCsH+gibZB3VxgCc+wuFk41QqI5ABnTPKWflnQ0wRo7IC6wC/tUi4YBahh20dL/wBJn3w==", "license": "MIT", "funding": { "type": "github", @@ -4872,9 +3620,9 @@ } }, "node_modules/@tiptap/extension-table-row": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-table-row/-/extension-table-row-2.10.2.tgz", - "integrity": "sha512-htS8ld4HD0zl7g0C/V9szdAX8Cjz9+ckr8qGrJy6yJS9ByS2x0VnV5fT73WUCx0zlNOrr1hcedlvDUTEPvzSuQ==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-table-row/-/extension-table-row-2.10.4.tgz", + "integrity": "sha512-kpQQSZQNYHhencIk+lzs+zWtgg6nUXHIVQKZUg5dVT0VP2JNO7wPM6d8HgnscvxOkJNRVF/Q5dYe0Cb4tROIKg==", "license": "MIT", "funding": { "type": "github", @@ -4885,9 +3633,9 @@ } }, "node_modules/@tiptap/extension-text": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-text/-/extension-text-2.10.2.tgz", - "integrity": "sha512-7WaJCmHAnf24gZc+Bl64vZgjAFt0CSEc5Jr+f3GII6XeCkZpTCJX85po2MFUhBRZMJheyctyL+UfsRauo/iP0Q==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-text/-/extension-text-2.10.4.tgz", + "integrity": "sha512-wPdVxCHrIS9S+8n08lgyyqRZPj9FBbyLlFt74/lV5yBC3LOorq1VKdjrTskmaj4jud7ImXoKDyBddAYTHdJ1xw==", "license": "MIT", "funding": { "type": "github", @@ -4898,9 +3646,9 @@ } }, "node_modules/@tiptap/extension-text-align": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-text-align/-/extension-text-align-2.10.2.tgz", - "integrity": "sha512-eDvks4fUZuOuAhWD8/HJ070g2OQlEnBpak2+huvzPhGdYP81vhx5OWk/rfF6WzLzxLwnDND2zvk3YL+RBqERZQ==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-text-align/-/extension-text-align-2.10.4.tgz", + "integrity": "sha512-rt2Hz3N081QAgkKKSMpyDZTKorBmXKpeHkYIw+ArVuvBYhi8x5wVyZgZ2SIMW9A5G4rx1M0czn7xNi+/P3NopQ==", "license": "MIT", "funding": { "type": "github", @@ -4911,9 +3659,9 @@ } }, "node_modules/@tiptap/extension-text-style": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-text-style/-/extension-text-style-2.10.2.tgz", - "integrity": "sha512-dWx5Ean7Rb6rdqO6C/i0qIIABKHFsABZj0mTDr0/ZXsw3V2O4d1cP13evvcc7HMLNAXziRTtWCVU6M06vwM/Pw==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-text-style/-/extension-text-style-2.10.4.tgz", + "integrity": "sha512-ibq7avkcwHyUSG53Hf+P31rrwsKVbbiqbWZM4kXC7M2X3iUwFrtvaa+SWzyWQfE1jl2cCrD1+rfSkj/alcOKGg==", "license": "MIT", "funding": { "type": "github", @@ -4924,9 +3672,9 @@ } }, "node_modules/@tiptap/extension-underline": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/extension-underline/-/extension-underline-2.10.2.tgz", - "integrity": "sha512-jDWGqqUYkrLgqRQDyqh+LpbkiqPfaWOoo5bydYL0u80GPEavovxZPoCJ/HDlOfdwm+FIPy55OP/29tELJRptmg==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/extension-underline/-/extension-underline-2.10.4.tgz", + "integrity": "sha512-KhlCndQFMe/Gsz+3qkVn9z1utDy8y1igvdePijMjA5B8PTu0hPs2Q1d6szfLTBdtoFNkCokknxzXhSY0OFJEyQ==", "license": "MIT", "funding": { "type": "github", @@ -4937,9 +3685,9 @@ } }, "node_modules/@tiptap/pm": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/pm/-/pm-2.10.2.tgz", - "integrity": "sha512-jEgC79uvuEl51XxulutUJPSlhkoY0xQc9R/G4MQltAi+JxJ+KE/pOxgqziWNxBpgUzQqloupjod0kLhLUL4Cig==", + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/pm/-/pm-2.10.4.tgz", + "integrity": "sha512-pZ4NEkRtYoDLe0spARvXZ1N3hNv/5u6vfPdPtEbmNpoOSjSNqDC1kVM+qJY0iaCYpxbxcv7cxn3kBumcFLQpJQ==", "license": "MIT", "dependencies": { "prosemirror-changeset": "^2.2.1", @@ -4959,7 +3707,7 @@ "prosemirror-tables": "^1.6.1", "prosemirror-trailing-node": "^3.0.0", "prosemirror-transform": "^1.10.2", - "prosemirror-view": "^1.36.0" + "prosemirror-view": "^1.37.0" }, "funding": { "type": "github", @@ -4967,32 +3715,32 @@ } }, "node_modules/@tiptap/starter-kit": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@tiptap/starter-kit/-/starter-kit-2.10.2.tgz", - "integrity": "sha512-YbS9P3zvLhfEWnCPMcvCwK/+3XjMgZX73D1qMu9jVRHtQGI2DMk9u42KWAMLQAMBUESMcIeGxJ9G5IWJO0PsyA==", - "license": "MIT", - "dependencies": { - "@tiptap/core": "^2.10.2", - "@tiptap/extension-blockquote": "^2.10.2", - "@tiptap/extension-bold": "^2.10.2", - "@tiptap/extension-bullet-list": "^2.10.2", - "@tiptap/extension-code": "^2.10.2", - "@tiptap/extension-code-block": "^2.10.2", - "@tiptap/extension-document": "^2.10.2", - "@tiptap/extension-dropcursor": "^2.10.2", - "@tiptap/extension-gapcursor": "^2.10.2", - "@tiptap/extension-hard-break": "^2.10.2", - "@tiptap/extension-heading": "^2.10.2", - "@tiptap/extension-history": "^2.10.2", - "@tiptap/extension-horizontal-rule": "^2.10.2", - "@tiptap/extension-italic": "^2.10.2", - "@tiptap/extension-list-item": "^2.10.2", - "@tiptap/extension-ordered-list": "^2.10.2", - "@tiptap/extension-paragraph": "^2.10.2", - "@tiptap/extension-strike": "^2.10.2", - "@tiptap/extension-text": "^2.10.2", - "@tiptap/extension-text-style": "^2.10.2", - "@tiptap/pm": "^2.10.2" + "version": "2.10.4", + "resolved": "https://registry.npmjs.org/@tiptap/starter-kit/-/starter-kit-2.10.4.tgz", + "integrity": "sha512-tu/WCs9Mkr5Nt8c3/uC4VvAbQlVX0OY7ygcqdzHGUeG9zP3twdW7o5xM3kyDKR2++sbVzqu5Ll5qNU+1JZvPGQ==", + "license": "MIT", + "dependencies": { + "@tiptap/core": "^2.10.4", + "@tiptap/extension-blockquote": "^2.10.4", + "@tiptap/extension-bold": "^2.10.4", + "@tiptap/extension-bullet-list": "^2.10.4", + "@tiptap/extension-code": "^2.10.4", + "@tiptap/extension-code-block": "^2.10.4", + "@tiptap/extension-document": "^2.10.4", + "@tiptap/extension-dropcursor": "^2.10.4", + "@tiptap/extension-gapcursor": "^2.10.4", + "@tiptap/extension-hard-break": "^2.10.4", + "@tiptap/extension-heading": "^2.10.4", + "@tiptap/extension-history": "^2.10.4", + "@tiptap/extension-horizontal-rule": "^2.10.4", + "@tiptap/extension-italic": "^2.10.4", + "@tiptap/extension-list-item": "^2.10.4", + "@tiptap/extension-ordered-list": "^2.10.4", + "@tiptap/extension-paragraph": "^2.10.4", + "@tiptap/extension-strike": "^2.10.4", + "@tiptap/extension-text": "^2.10.4", + "@tiptap/extension-text-style": "^2.10.4", + "@tiptap/pm": "^2.10.4" }, "funding": { "type": "github", @@ -5013,6 +3761,7 @@ "version": "0.2.0", "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true, "license": "ISC", "engines": { "node": ">=10.13.0" @@ -5211,9 +3960,9 @@ "license": "MIT" }, "node_modules/@types/node": { - "version": "22.10.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.0.tgz", - "integrity": "sha512-XC70cRZVElFHfIUB40FgZOBbgJYFKKMa5nb9lxcwYstFG/Mi+/Y0bGS+rs6Dmhmkpq4pnNiLiuZAbc02YCOnmA==", + "version": "22.10.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz", + "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==", "license": "MIT", "dependencies": { "undici-types": "~6.20.0" @@ -5665,15 +4414,6 @@ "node": ">=8" } }, - "node_modules/ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", @@ -5694,6 +4434,7 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -5716,6 +4457,7 @@ "version": "3.1.3", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, "license": "ISC", "dependencies": { "normalize-path": "^3.0.0", @@ -6029,6 +4771,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, "license": "MIT" }, "node_modules/bcrypt-pbkdf": { @@ -6041,27 +4784,6 @@ "tweetnacl": "^0.14.3" } }, - "node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "license": "MIT", - "engines": { - "node": "*" - } - }, - "node_modules/binary-extensions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", - "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/bluebird": { "version": "3.7.2", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", @@ -6069,16 +4791,11 @@ "dev": true, "license": "MIT" }, - "node_modules/blurhash": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/blurhash/-/blurhash-2.0.5.tgz", - "integrity": "sha512-cRygWd7kGBQO3VEhPiTgq4Wc43ctsM+o46urrmPOiuAe+07fzlSB9OJVdpgDL0jPqXUVQ9ht7aq7kxOeJHRK+w==", - "license": "MIT" - }, "node_modules/boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true, "license": "ISC" }, "node_modules/boxen": { @@ -6216,19 +4933,11 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, "node_modules/braces": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, "license": "MIT", "dependencies": { "fill-range": "^7.1.1" @@ -6237,16 +4946,10 @@ "node": ">=8" } }, - "node_modules/browser-stdout": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", - "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", - "license": "ISC" - }, "node_modules/browserslist": { - "version": "4.24.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", - "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", + "version": "4.24.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.3.tgz", + "integrity": "sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==", "funding": [ { "type": "opencollective", @@ -6263,9 +4966,9 @@ ], "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001669", - "electron-to-chromium": "^1.5.41", - "node-releases": "^2.0.18", + "caniuse-lite": "^1.0.30001688", + "electron-to-chromium": "^1.5.73", + "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.1" }, "bin": { @@ -6470,17 +5173,47 @@ } }, "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", "dev": true, "license": "MIT", "dependencies": { + "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" + "set-function-length": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz", + "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz", + "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "get-intrinsic": "^1.2.6" }, "engines": { "node": ">= 0.4" @@ -6493,6 +5226,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -6518,19 +5252,11 @@ "node": ">=6" } }, - "node_modules/camelcase-css": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, "node_modules/caniuse-api": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.0.0", @@ -6540,9 +5266,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001684", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001684.tgz", - "integrity": "sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==", + "version": "1.0.30001690", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001690.tgz", + "integrity": "sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==", "funding": [ { "type": "opencollective", @@ -6566,18 +5292,6 @@ "dev": true, "license": "Apache-2.0" }, - "node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "license": "MIT", - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, "node_modules/char-regex": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", @@ -6595,30 +5309,6 @@ "dev": true, "license": "MIT" }, - "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", - "license": "MIT", - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, "node_modules/chownr": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", @@ -6668,71 +5358,6 @@ "dev": true, "license": "MIT" }, - "node_modules/ckeditor5": { - "version": "43.3.1", - "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-43.3.1.tgz", - "integrity": "sha512-ZZ6nIdlr9rCCp21o9d5/mVUeVPwpQKEVxkeq1MU/Jax1w8U6rnMiQWxB954Ky/HNjhZ1v1ll2+VRzb7XA+1emA==", - "license": "GPL-2.0-or-later", - "dependencies": { - "@ckeditor/ckeditor5-adapter-ckfinder": "43.3.1", - "@ckeditor/ckeditor5-alignment": "43.3.1", - "@ckeditor/ckeditor5-autoformat": "43.3.1", - "@ckeditor/ckeditor5-autosave": "43.3.1", - "@ckeditor/ckeditor5-basic-styles": "43.3.1", - "@ckeditor/ckeditor5-block-quote": "43.3.1", - "@ckeditor/ckeditor5-ckbox": "43.3.1", - "@ckeditor/ckeditor5-ckfinder": "43.3.1", - "@ckeditor/ckeditor5-clipboard": "43.3.1", - "@ckeditor/ckeditor5-cloud-services": "43.3.1", - "@ckeditor/ckeditor5-code-block": "43.3.1", - "@ckeditor/ckeditor5-core": "43.3.1", - "@ckeditor/ckeditor5-easy-image": "43.3.1", - "@ckeditor/ckeditor5-editor-balloon": "43.3.1", - "@ckeditor/ckeditor5-editor-classic": "43.3.1", - "@ckeditor/ckeditor5-editor-decoupled": "43.3.1", - "@ckeditor/ckeditor5-editor-inline": "43.3.1", - "@ckeditor/ckeditor5-editor-multi-root": "43.3.1", - "@ckeditor/ckeditor5-engine": "43.3.1", - "@ckeditor/ckeditor5-enter": "43.3.1", - "@ckeditor/ckeditor5-essentials": "43.3.1", - "@ckeditor/ckeditor5-find-and-replace": "43.3.1", - "@ckeditor/ckeditor5-font": "43.3.1", - "@ckeditor/ckeditor5-heading": "43.3.1", - "@ckeditor/ckeditor5-highlight": "43.3.1", - "@ckeditor/ckeditor5-horizontal-line": "43.3.1", - "@ckeditor/ckeditor5-html-embed": "43.3.1", - "@ckeditor/ckeditor5-html-support": "43.3.1", - "@ckeditor/ckeditor5-image": "43.3.1", - "@ckeditor/ckeditor5-indent": "43.3.1", - "@ckeditor/ckeditor5-language": "43.3.1", - "@ckeditor/ckeditor5-link": "43.3.1", - "@ckeditor/ckeditor5-list": "43.3.1", - "@ckeditor/ckeditor5-markdown-gfm": "43.3.1", - "@ckeditor/ckeditor5-media-embed": "43.3.1", - "@ckeditor/ckeditor5-mention": "43.3.1", - "@ckeditor/ckeditor5-minimap": "43.3.1", - "@ckeditor/ckeditor5-page-break": "43.3.1", - "@ckeditor/ckeditor5-paragraph": "43.3.1", - "@ckeditor/ckeditor5-paste-from-office": "43.3.1", - "@ckeditor/ckeditor5-remove-format": "43.3.1", - "@ckeditor/ckeditor5-restricted-editing": "43.3.1", - "@ckeditor/ckeditor5-select-all": "43.3.1", - "@ckeditor/ckeditor5-show-blocks": "43.3.1", - "@ckeditor/ckeditor5-source-editing": "43.3.1", - "@ckeditor/ckeditor5-special-characters": "43.3.1", - "@ckeditor/ckeditor5-style": "43.3.1", - "@ckeditor/ckeditor5-table": "43.3.1", - "@ckeditor/ckeditor5-theme-lark": "43.3.1", - "@ckeditor/ckeditor5-typing": "43.3.1", - "@ckeditor/ckeditor5-ui": "43.3.1", - "@ckeditor/ckeditor5-undo": "43.3.1", - "@ckeditor/ckeditor5-upload": "43.3.1", - "@ckeditor/ckeditor5-utils": "43.3.1", - "@ckeditor/ckeditor5-watchdog": "43.3.1", - "@ckeditor/ckeditor5-widget": "43.3.1", - "@ckeditor/ckeditor5-word-count": "43.3.1" - } - }, "node_modules/clean-css": { "version": "5.3.3", "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", @@ -6768,33 +5393,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cli-cursor": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz", - "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==", - "license": "MIT", - "dependencies": { - "restore-cursor": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-spinners": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-3.2.0.tgz", - "integrity": "sha512-pXftdQloMZzjCr3pCTIRniDcys6dDzgpgVhAHHk6TKBDbRuP1MkuetTF5KSv4YUutbOPa7+7ZrAJ2kVtbMqyXA==", - "license": "MIT", - "engines": { - "node": ">=18.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/cli-table": { "version": "0.3.5", "resolved": "https://registry.npmjs.org/cli-table/-/cli-table-0.3.5.tgz", @@ -6961,6 +5559,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, "license": "MIT", "dependencies": { "color-name": "~1.1.4" @@ -6973,21 +5572,14 @@ "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, "license": "MIT" }, - "node_modules/color-parse": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-1.4.2.tgz", - "integrity": "sha512-RI7s49/8yqDj3fECFZjUI1Yi0z/Gq1py43oNJivAIIDSyJiOZLfYCRQEgn8HEVAj++PcRe8AnL2XF0fRJ3BTnA==", - "license": "MIT", - "dependencies": { - "color-name": "^1.0.0" - } - }, "node_modules/colord": { "version": "2.9.3", "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "dev": true, "license": "MIT" }, "node_modules/colorette": { @@ -7033,6 +5625,7 @@ "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, "license": "MIT" }, "node_modules/configstore": { @@ -7128,6 +5721,7 @@ "version": "9.0.0", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", + "dev": true, "license": "MIT", "dependencies": { "env-paths": "^2.2.1", @@ -7154,12 +5748,14 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, "license": "Python-2.0" }, "node_modules/cosmiconfig/node_modules/js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, "license": "MIT", "dependencies": { "argparse": "^2.0.1" @@ -7233,6 +5829,7 @@ "version": "7.0.6", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, "license": "MIT", "dependencies": { "path-key": "^3.1.0", @@ -7257,6 +5854,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz", "integrity": "sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==", + "dev": true, "license": "ISC", "engines": { "node": "^14 || ^16 || >=18" @@ -7269,6 +5867,7 @@ "version": "7.1.2", "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-7.1.2.tgz", "integrity": "sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==", + "dev": true, "license": "MIT", "dependencies": { "icss-utils": "^5.1.0", @@ -7304,6 +5903,7 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -7378,6 +5978,7 @@ "version": "2.3.1", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "dev": true, "license": "MIT", "dependencies": { "mdn-data": "2.0.30", @@ -7391,6 +5992,7 @@ "version": "6.1.0", "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">= 6" @@ -7410,6 +6012,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, "license": "MIT", "bin": { "cssesc": "bin/cssesc" @@ -7422,6 +6025,7 @@ "version": "7.0.6", "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-7.0.6.tgz", "integrity": "sha512-54woqx8SCbp8HwvNZYn68ZFAepuouZW4lTwiMVnBErM3VkO7/Sd4oTOt3Zz3bPx3kxQ36aISppyXj2Md4lg8bw==", + "dev": true, "license": "MIT", "dependencies": { "cssnano-preset-default": "^7.0.6", @@ -7442,6 +6046,7 @@ "version": "7.0.6", "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-7.0.6.tgz", "integrity": "sha512-ZzrgYupYxEvdGGuqL+JKOY70s7+saoNlHSCK/OGn1vB2pQK8KSET8jvenzItcY+kA7NoWvfbb/YhlzuzNKjOhQ==", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.23.3", @@ -7486,6 +6091,7 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-5.0.0.tgz", "integrity": "sha512-Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ==", + "dev": true, "license": "MIT", "engines": { "node": "^18.12.0 || ^20.9.0 || >=22.0" @@ -7498,6 +6104,7 @@ "version": "5.0.5", "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "dev": true, "license": "MIT", "dependencies": { "css-tree": "~2.2.0" @@ -7511,6 +6118,7 @@ "version": "2.2.1", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "dev": true, "license": "MIT", "dependencies": { "mdn-data": "2.0.28", @@ -7525,6 +6133,7 @@ "version": "2.0.28", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "dev": true, "license": "CC0-1.0" }, "node_modules/cssom": { @@ -7583,9 +6192,10 @@ } }, "node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "dev": true, "license": "MIT", "dependencies": { "ms": "^2.1.3" @@ -7599,18 +6209,6 @@ } } }, - "node_modules/decamelize": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", - "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/decimal.js": { "version": "10.4.3", "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", @@ -7898,15 +6496,6 @@ "node": ">=8" } }, - "node_modules/diff": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", - "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.3.1" - } - }, "node_modules/diff-sequences": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", @@ -7976,6 +6565,7 @@ "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, "funding": [ { "type": "github", @@ -8052,6 +6642,21 @@ "node": ">=8" } }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/duplexer3": { "version": "0.1.5", "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", @@ -8059,12 +6664,6 @@ "dev": true, "license": "BSD-3-Clause" }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "license": "MIT" - }, "node_modules/ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", @@ -8084,9 +6683,9 @@ "license": "MIT" }, "node_modules/electron-to-chromium": { - "version": "1.5.65", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.65.tgz", - "integrity": "sha512-PWVzBjghx7/wop6n22vS2MLU8tKGd4Q91aCEGhG/TYmW6PP5OcSXcdnxTe1NNt0T66N8D6jxh4kC8UsdzOGaIw==", + "version": "1.5.75", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.75.tgz", + "integrity": "sha512-Lf3++DumRE/QmweGjU+ZcKqQ+3bKkU/qjaKYhIJKEOhgIO9Xs6IiAQFkfFoj+RhgDk4LUeNsLo6plExHqSyu6Q==", "license": "ISC" }, "node_modules/emittery": { @@ -8102,21 +6701,6 @@ "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "license": "MIT" - }, - "node_modules/emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, "node_modules/encoding": { "version": "0.1.13", "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", @@ -8181,6 +6765,7 @@ "version": "2.2.1", "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -8210,20 +6795,18 @@ "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, "license": "MIT", "dependencies": { "is-arrayish": "^0.2.1" } }, "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", "dev": true, "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.2.4" - }, "engines": { "node": ">= 0.4" } @@ -8265,70 +6848,17 @@ "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", "license": "MIT" }, - "node_modules/esbuild": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", - "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", - "hasInstallScript": true, - "license": "MIT", - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.21.5", - "@esbuild/android-arm": "0.21.5", - "@esbuild/android-arm64": "0.21.5", - "@esbuild/android-x64": "0.21.5", - "@esbuild/darwin-arm64": "0.21.5", - "@esbuild/darwin-x64": "0.21.5", - "@esbuild/freebsd-arm64": "0.21.5", - "@esbuild/freebsd-x64": "0.21.5", - "@esbuild/linux-arm": "0.21.5", - "@esbuild/linux-arm64": "0.21.5", - "@esbuild/linux-ia32": "0.21.5", - "@esbuild/linux-loong64": "0.21.5", - "@esbuild/linux-mips64el": "0.21.5", - "@esbuild/linux-ppc64": "0.21.5", - "@esbuild/linux-riscv64": "0.21.5", - "@esbuild/linux-s390x": "0.21.5", - "@esbuild/linux-x64": "0.21.5", - "@esbuild/netbsd-x64": "0.21.5", - "@esbuild/openbsd-x64": "0.21.5", - "@esbuild/sunos-x64": "0.21.5", - "@esbuild/win32-arm64": "0.21.5", - "@esbuild/win32-ia32": "0.21.5", - "@esbuild/win32-x64": "0.21.5" - } - }, - "node_modules/esbuild-loader": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/esbuild-loader/-/esbuild-loader-4.2.2.tgz", - "integrity": "sha512-Mdq/A1L8p37hkibp8jGFwuQTDSWhDmlueAefsrCPRwNWThEOlQmIglV7Gd6GE2mO5bt7ksfxKOMwkuY7jjVTXg==", + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "dev": true, "license": "MIT", "dependencies": { - "esbuild": "^0.21.0", - "get-tsconfig": "^4.7.0", - "loader-utils": "^2.0.4", - "webpack-sources": "^1.4.3" + "es-errors": "^1.3.0" }, - "funding": { - "url": "https://github.com/privatenumber/esbuild-loader?sponsor=1" - }, - "peerDependencies": { - "webpack": "^4.40.0 || ^5.0.0" - } - }, - "node_modules/esbuild-loader/node_modules/webpack-sources": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", - "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", - "license": "MIT", - "dependencies": { - "source-list-map": "^2.0.0", - "source-map": "~0.6.1" + "engines": { + "node": ">= 0.4" } }, "node_modules/escalade": { @@ -8664,6 +7194,7 @@ "version": "7.1.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, "license": "MIT", "dependencies": { "to-regex-range": "^5.0.1" @@ -8690,6 +7221,7 @@ "version": "5.0.2", "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, "license": "BSD-3-Clause", "bin": { "flat": "cli.js" @@ -8705,22 +7237,6 @@ "is-callable": "^1.1.3" } }, - "node_modules/foreground-child": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", - "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", - "license": "ISC", - "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", @@ -8756,20 +7272,6 @@ "node": ">=10" } }, - "node_modules/fs-extra": { - "version": "11.2.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", - "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=14.14" - } - }, "node_modules/fs-minipass": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", @@ -8807,12 +7309,14 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true, "license": "ISC" }, "node_modules/fsevents": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, "hasInstallScript": true, "license": "MIT", "optional": true, @@ -8827,6 +7331,7 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" @@ -8932,23 +7437,29 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, "license": "ISC", "engines": { "node": "6.* || 8.* || >= 10.*" } }, "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.6.tgz", + "integrity": "sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==", "dev": true, "license": "MIT", "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "dunder-proto": "^1.0.0", + "es-define-property": "^1.0.1", "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -8993,18 +7504,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/get-tsconfig": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.8.1.tgz", - "integrity": "sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==", - "license": "MIT", - "dependencies": { - "resolve-pkg-maps": "^1.0.0" - }, - "funding": { - "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" - } - }, "node_modules/getpass": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", @@ -9015,30 +7514,11 @@ "assert-plus": "^1.0.0" } }, - "node_modules/glob": { - "version": "10.4.5", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", - "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", - "license": "ISC", - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, "license": "ISC", "dependencies": { "is-glob": "^4.0.1" @@ -9083,6 +7563,7 @@ "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -9110,13 +7591,13 @@ } }, "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", "dev": true, "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.3" + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -9180,11 +7661,14 @@ } }, "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", "dev": true, "license": "MIT", + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -9211,23 +7695,10 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", "dev": true, "license": "MIT", "engines": { @@ -9274,6 +7745,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, "license": "MIT", "dependencies": { "function-bind": "^1.1.2" @@ -9286,6 +7758,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, "license": "MIT", "bin": { "he": "bin/he" @@ -9583,6 +8056,7 @@ "version": "5.1.0", "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, "license": "ISC", "engines": { "node": "^10 || ^12 || >= 14" @@ -9646,6 +8120,7 @@ "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, "license": "MIT", "dependencies": { "parent-module": "^1.0.0", @@ -9662,6 +8137,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -9729,6 +8205,7 @@ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dev": true, "license": "ISC", "dependencies": { "once": "^1.3.0", @@ -9739,6 +8216,7 @@ "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true, "license": "ISC" }, "node_modules/ini": { @@ -9876,15 +8354,15 @@ } }, "node_modules/internal-slot": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", - "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", "dev": true, "license": "MIT", "dependencies": { "es-errors": "^1.3.0", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" + "hasown": "^2.0.2", + "side-channel": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -9894,6 +8372,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.10" @@ -9921,14 +8400,14 @@ "license": "BSD-3-Clause" }, "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz", + "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -9938,14 +8417,15 @@ } }, "node_modules/is-array-buffer": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", - "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1" + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" }, "engines": { "node": ">= 0.4" @@ -9958,42 +8438,34 @@ "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true, "license": "MIT" }, "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", "dev": true, "license": "MIT", "dependencies": { - "has-bigints": "^1.0.1" + "has-bigints": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "license": "MIT", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.1.tgz", + "integrity": "sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -10036,9 +8508,10 @@ "license": "MIT" }, "node_modules/is-core-module": { - "version": "2.15.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", - "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.0.tgz", + "integrity": "sha512-urTSINYfAYgcbLb0yDQ6egFm6h3Mo1DcF9EkyXSRjjzdHbsulg01qhwWuXdOoUBuTkbQ80KDboXa0vFJ+BDH+g==", + "dev": true, "license": "MIT", "dependencies": { "hasown": "^2.0.2" @@ -10051,13 +8524,14 @@ } }, "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", "dev": true, "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -10086,6 +8560,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -10095,6 +8570,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -10114,6 +8590,7 @@ "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, "license": "MIT", "dependencies": { "is-extglob": "^2.1.1" @@ -10139,18 +8616,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-interactive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz", - "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/is-lambda": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", @@ -10188,19 +8653,21 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, "license": "MIT", "engines": { "node": ">=0.12.0" } }, "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", "dev": true, "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -10239,15 +8706,6 @@ "node": ">=8" } }, - "node_modules/is-plain-obj": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", - "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/is-plain-object": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", @@ -10269,14 +8727,16 @@ "license": "MIT" }, "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" }, "engines": { "node": ">= 0.4" @@ -10299,13 +8759,13 @@ } }, "node_modules/is-shared-array-buffer": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", - "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.7" + "call-bound": "^1.0.3" }, "engines": { "node": ">= 0.4" @@ -10328,13 +8788,14 @@ } }, "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", "dev": true, "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -10344,13 +8805,15 @@ } }, "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", "dev": true, "license": "MIT", "dependencies": { - "has-symbols": "^1.0.2" + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -10366,18 +8829,6 @@ "dev": true, "license": "MIT" }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/is-weakmap": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", @@ -10392,14 +8843,14 @@ } }, "node_modules/is-weakset": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", - "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4" + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" }, "engines": { "node": ">= 0.4" @@ -10439,6 +8890,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, "license": "ISC" }, "node_modules/isobject": { @@ -10529,21 +8981,6 @@ "node": ">=8" } }, - "node_modules/jackspeak": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", - "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", - "license": "BlueOak-1.0.0", - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" - } - }, "node_modules/jest": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", @@ -11921,9 +10358,10 @@ } }, "node_modules/jiti": { - "version": "1.21.6", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", - "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", + "version": "1.21.7", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz", + "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", + "dev": true, "license": "MIT", "bin": { "jiti": "bin/jiti.js" @@ -11940,6 +10378,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, "license": "MIT" }, "node_modules/js-yaml": { @@ -12010,9 +10449,10 @@ } }, "node_modules/jsesc": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", - "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, "license": "MIT", "bin": { "jsesc": "bin/jsesc" @@ -12068,6 +10508,7 @@ "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, "license": "MIT", "bin": { "json5": "lib/cli.js" @@ -12076,18 +10517,6 @@ "node": ">=6" } }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, "node_modules/jsonlines": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/jsonlines/-/jsonlines-0.1.1.tgz", @@ -12254,9 +10683,10 @@ } }, "node_modules/lilconfig": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", - "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "dev": true, "license": "MIT", "engines": { "node": ">=14" @@ -12269,6 +10699,7 @@ "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true, "license": "MIT" }, "node_modules/linkify-it": { @@ -12281,9 +10712,9 @@ } }, "node_modules/linkifyjs": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/linkifyjs/-/linkifyjs-4.1.4.tgz", - "integrity": "sha512-0/NxkHNpiJ0k9VrYCkAn9OtU1eu8xEr1tCCpDtSsVRm/SF0xAak2Gzv3QimSfgUgqLBCDlfhMbu73XvaEHUTPQ==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/linkifyjs/-/linkifyjs-4.2.0.tgz", + "integrity": "sha512-pCj3PrQyATaoTYKHrgWRF3SJwsm61udVh+vuls/Rl6SptiDhgE7ziUIudAedRY9QEfynmM7/RmLEfPUyw1HPCw==", "license": "MIT" }, "node_modules/loader-runner": { @@ -12295,20 +10726,6 @@ "node": ">=6.11.5" } }, - "node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "license": "MIT", - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "engines": { - "node": ">=8.9.0" - } - }, "node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", @@ -12358,60 +10775,15 @@ "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true, "license": "MIT" }, - "node_modules/lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", - "license": "MIT" - }, - "node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "license": "MIT", - "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-symbols/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true, + "license": "MIT" }, "node_modules/lower-case": { "version": "2.0.2", @@ -12612,22 +10984,21 @@ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "license": "Python-2.0" }, - "node_modules/marked": { - "version": "4.0.12", - "resolved": "https://registry.npmjs.org/marked/-/marked-4.0.12.tgz", - "integrity": "sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ==", + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, "license": "MIT", - "bin": { - "marked": "bin/marked.js" - }, "engines": { - "node": ">= 12" + "node": ">= 0.4" } }, "node_modules/mdn-data": { "version": "2.0.30", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "dev": true, "license": "CC0-1.0" }, "node_modules/mdurl": { @@ -12714,18 +11085,6 @@ "node": ">=8" } }, - "node_modules/mimic-function": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz", - "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/mimic-response": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", @@ -12750,6 +11109,7 @@ "version": "2.9.2", "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.2.tgz", "integrity": "sha512-GJuACcS//jtq4kCtd5ii/M0SZf7OZRH+BxdqXZHaJfb8TJiVl+NgQRPwiYt2EuqeSkNydn/7vP+bcE27C5mb9w==", + "dev": true, "license": "MIT", "dependencies": { "schema-utils": "^4.0.0", @@ -12766,21 +11126,6 @@ "webpack": "^5.0.0" } }, - "node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/minimist": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", @@ -12791,15 +11136,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", - "license": "ISC", - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, "node_modules/minipass-collect": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", @@ -12953,335 +11289,96 @@ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-pipeline/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "license": "ISC" - }, - "node_modules/minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", - "dev": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-sized/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-sized/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "license": "ISC" - }, - "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, - "license": "MIT", - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minizlib/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minizlib/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "license": "ISC" - }, - "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "license": "MIT", - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/mocha": { - "version": "10.8.2", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.8.2.tgz", - "integrity": "sha512-VZlYo/WE8t1tstuRmqgeyBgCbJc/lEdopaa+axcKzTBJ+UIdlAB9XnmvTCAH4pwR4ElNInaedhEBmZD8iCSVEg==", - "license": "MIT", - "dependencies": { - "ansi-colors": "^4.1.3", - "browser-stdout": "^1.3.1", - "chokidar": "^3.5.3", - "debug": "^4.3.5", - "diff": "^5.2.0", - "escape-string-regexp": "^4.0.0", - "find-up": "^5.0.0", - "glob": "^8.1.0", - "he": "^1.2.0", - "js-yaml": "^4.1.0", - "log-symbols": "^4.1.0", - "minimatch": "^5.1.6", - "ms": "^2.1.3", - "serialize-javascript": "^6.0.2", - "strip-json-comments": "^3.1.1", - "supports-color": "^8.1.1", - "workerpool": "^6.5.1", - "yargs": "^16.2.0", - "yargs-parser": "^20.2.9", - "yargs-unparser": "^2.0.0" - }, - "bin": { - "_mocha": "bin/_mocha", - "mocha": "bin/mocha.js" - }, - "engines": { - "node": ">= 14.0.0" - } - }, - "node_modules/mocha/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/mocha/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "license": "Python-2.0" - }, - "node_modules/mocha/node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "node_modules/mocha/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "license": "MIT" - }, - "node_modules/mocha/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "license": "MIT", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/mocha/node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", - "deprecated": "Glob versions prior to v9 are no longer supported", - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/mocha/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/mocha/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "license": "MIT", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/mocha/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/mocha/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "license": "MIT", + "license": "ISC", "dependencies": { - "p-limit": "^3.0.2" + "yallist": "^4.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/mocha/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "license": "MIT", + "node_modules/minipass-pipeline/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "dev": true, + "license": "ISC", "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "minipass": "^3.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/mocha/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "license": "MIT", + "node_modules/minipass-sized/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "license": "ISC", "dependencies": { - "ansi-regex": "^5.0.1" + "yallist": "^4.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/mocha/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "node_modules/minipass-sized/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "minipass": "^3.0.0", + "yallist": "^4.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "node": ">= 8" } }, - "node_modules/mocha/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "license": "MIT", + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "license": "ISC", "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "yallist": "^4.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "node": ">=8" } }, - "node_modules/mocha/node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, "license": "MIT", - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" + "bin": { + "mkdirp": "bin/cmd.js" }, "engines": { "node": ">=10" @@ -13291,6 +11388,7 @@ "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, "license": "MIT" }, "node_modules/mute-stream": { @@ -13304,6 +11402,7 @@ "version": "3.3.8", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "dev": true, "funding": [ { "type": "github", @@ -13458,9 +11557,9 @@ "license": "MIT" }, "node_modules/node-releases": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", - "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "license": "MIT" }, "node_modules/nopt": { @@ -13483,6 +11582,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -14191,6 +12291,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0" @@ -14210,9 +12311,9 @@ } }, "node_modules/nwsapi": { - "version": "2.2.13", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.13.tgz", - "integrity": "sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==", + "version": "2.2.16", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.16.tgz", + "integrity": "sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==", "dev": true, "license": "MIT" }, @@ -14277,15 +12378,17 @@ } }, "node_modules/object.assign": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.5", + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", "define-properties": "^1.2.1", - "has-symbols": "^1.0.3", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", "object-keys": "^1.1.1" }, "engines": { @@ -14299,6 +12402,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, "license": "ISC", "dependencies": { "wrappy": "1" @@ -14387,6 +12491,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" @@ -14469,12 +12574,6 @@ "node": ">=8" } }, - "node_modules/package-json-from-dist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", - "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", - "license": "BlueOak-1.0.0" - }, "node_modules/package-json/node_modules/@sindresorhus/is": { "version": "0.14.0", "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", @@ -14793,6 +12892,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, "license": "MIT", "dependencies": { "callsites": "^3.0.0" @@ -14818,6 +12918,7 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, "license": "MIT", "dependencies": { "@babel/code-frame": "^7.0.0", @@ -14858,6 +12959,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -14867,6 +12969,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -14876,6 +12979,7 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -14885,30 +12989,9 @@ "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, "license": "MIT" }, - "node_modules/path-scurry": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", - "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", - "license": "BlueOak-1.0.0", - "dependencies": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", - "license": "ISC" - }, "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", @@ -14936,6 +13019,7 @@ "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, "license": "MIT", "engines": { "node": ">=8.6" @@ -14948,6 +13032,7 @@ "version": "2.3.0", "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -14976,18 +13061,6 @@ "node": ">=8" } }, - "node_modules/plural-forms": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/plural-forms/-/plural-forms-0.5.5.tgz", - "integrity": "sha512-rJw4xp22izsfJOVqta5Hyvep2lR3xPkFUtj7dyQtpf/FbxUiX7PQCajTn2EHDRylizH5N/Uqqodfdu22I0ju+g==", - "license": "MIT" - }, - "node_modules/pofile": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/pofile/-/pofile-1.1.4.tgz", - "integrity": "sha512-r6Q21sKsY1AjTVVjOuU02VYKVNQGJNQHjTIvs4dEbeuuYfxgYk/DGD2mqqq4RDaVkwdSq0VEtmQUOPe/wH8X3g==", - "license": "MIT" - }, "node_modules/possible-typed-array-names": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", @@ -15002,6 +13075,7 @@ "version": "8.4.49", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", + "dev": true, "funding": [ { "type": "opencollective", @@ -15030,6 +13104,7 @@ "version": "10.0.2", "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-10.0.2.tgz", "integrity": "sha512-DT/Wwm6fCKgpYVI7ZEWuPJ4az8hiEHtCUeYjZXqU7Ou4QqYh1Df2yCQ7Ca6N7xqKPFkxN3fhf+u9KSoOCJNAjg==", + "dev": true, "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.1.2", @@ -15046,6 +13121,7 @@ "version": "7.0.2", "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-7.0.2.tgz", "integrity": "sha512-YntRXNngcvEvDbEjTdRWGU606eZvB5prmHG4BF0yLmVpamXbpsRJzevyy6MZVyuecgzI2AWAlvFi8DAeCqwpvA==", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.23.3", @@ -15064,6 +13140,7 @@ "version": "7.0.4", "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-7.0.4.tgz", "integrity": "sha512-e2LSXPqEHVW6aoGbjV9RsSSNDO3A0rZLCBxN24zvxF25WknMPpX8Dm9UxxThyEbaytzggRuZxaGXqaOhxQ514Q==", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.23.3", @@ -15080,6 +13157,7 @@ "version": "7.0.3", "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-7.0.3.tgz", "integrity": "sha512-q6fjd4WU4afNhWOA2WltHgCbkRhZPgQe7cXF74fuVB/ge4QbM9HEaOIzGSiMvM+g/cOsNAUGdf2JDzqA2F8iLA==", + "dev": true, "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.1.2" @@ -15095,6 +13173,7 @@ "version": "7.0.1", "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-7.0.1.tgz", "integrity": "sha512-oZA+v8Jkpu1ct/xbbrntHRsfLGuzoP+cpt0nJe5ED2FQF8n8bJtn7Bo28jSmBYwqgqnqkuSXJfSUEE7if4nClQ==", + "dev": true, "license": "MIT", "engines": { "node": "^18.12.0 || ^20.9.0 || >=22.0" @@ -15107,6 +13186,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-7.0.0.tgz", "integrity": "sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA==", + "dev": true, "license": "MIT", "engines": { "node": "^18.12.0 || ^20.9.0 || >=22.0" @@ -15119,6 +13199,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-7.0.0.tgz", "integrity": "sha512-GmNAzx88u3k2+sBTZrJSDauR0ccpE24omTQCVmaTTZFz1du6AasspjaUPMJ2ud4RslZpoFKyf+6MSPETLojc6w==", + "dev": true, "license": "MIT", "engines": { "node": "^18.12.0 || ^20.9.0 || >=22.0" @@ -15131,6 +13212,7 @@ "version": "16.1.0", "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-16.1.0.tgz", "integrity": "sha512-7hsAZ4xGXl4MW+OKEWCnF6T5jqBw80/EE9aXg1r2yyn1RsVEU8EtKXbijEODa+rg7iih4bKf7vlvTGYR4CnPNg==", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.0.0", @@ -15144,29 +13226,11 @@ "postcss": "^8.0.0" } }, - "node_modules/postcss-js": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", - "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", - "license": "MIT", - "dependencies": { - "camelcase-css": "^2.0.1" - }, - "engines": { - "node": "^12 || ^14 || >= 16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.4.21" - } - }, "node_modules/postcss-loader": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-8.1.1.tgz", "integrity": "sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==", + "dev": true, "license": "MIT", "dependencies": { "cosmiconfig": "^9.0.0", @@ -15198,6 +13262,7 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -15210,6 +13275,7 @@ "version": "7.0.4", "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-7.0.4.tgz", "integrity": "sha512-zer1KoZA54Q8RVHKOY5vMke0cCdNxMP3KBfDerjH/BYHh4nCIh+1Yy0t1pAEQF18ac/4z3OFclO+ZVH8azjR4A==", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0", @@ -15226,6 +13292,7 @@ "version": "7.0.4", "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-7.0.4.tgz", "integrity": "sha512-ZsaamiMVu7uBYsIdGtKJ64PkcQt6Pcpep/uO90EpLS3dxJi6OXamIobTYcImyXGoW0Wpugh7DSD3XzxZS9JCPg==", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.23.3", @@ -15244,6 +13311,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-7.0.0.tgz", "integrity": "sha512-2ckkZtgT0zG8SMc5aoNwtm5234eUx1GGFJKf2b1bSp8UflqaeFzR50lid4PfqVI9NtGqJ2J4Y7fwvnP/u1cQog==", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -15259,6 +13327,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-7.0.0.tgz", "integrity": "sha512-pdUIIdj/C93ryCHew0UgBnL2DtUS3hfFa5XtERrs4x+hmpMYGhbzo6l/Ir5de41O0GaKVpK1ZbDNXSY6GkXvtg==", + "dev": true, "license": "MIT", "dependencies": { "colord": "^2.9.3", @@ -15276,6 +13345,7 @@ "version": "7.0.2", "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-7.0.2.tgz", "integrity": "sha512-nyqVLu4MFl9df32zTsdcLqCFfE/z2+f8GE1KHPxWOAmegSo6lpV2GNy5XQvrzwbLmiU7d+fYay4cwto1oNdAaQ==", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.23.3", @@ -15293,6 +13363,7 @@ "version": "7.0.4", "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-7.0.4.tgz", "integrity": "sha512-JG55VADcNb4xFCf75hXkzc1rNeURhlo7ugf6JjiiKRfMsKlDzN9CXHZDyiG6x/zGchpjQS+UAgb1d4nqXqOpmA==", + "dev": true, "license": "MIT", "dependencies": { "cssesc": "^3.0.0", @@ -15305,38 +13376,11 @@ "postcss": "^8.4.31" } }, - "node_modules/postcss-mixins": { - "version": "11.0.3", - "resolved": "https://registry.npmjs.org/postcss-mixins/-/postcss-mixins-11.0.3.tgz", - "integrity": "sha512-HZa6DHlN7uCkp7GTFNvhpyK/Gi9+vrVG7FPl2oQdj+sXUuYo4ri9OsWBseTnvnLfWxRWOq8/VwcHcixtZPrRRg==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "postcss-js": "^4.0.1", - "postcss-simple-vars": "^7.0.1", - "sugarss": "^4.0.1", - "tinyglobby": "^0.2.7" - }, - "engines": { - "node": "^18.0 || ^ 20.0 || >= 22.0" - }, - "peerDependencies": { - "postcss": "^8.2.14" - } - }, "node_modules/postcss-modules-extract-imports": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", + "dev": true, "license": "ISC", "engines": { "node": "^10 || ^12 || >= 14" @@ -15346,9 +13390,10 @@ } }, "node_modules/postcss-modules-local-by-default": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.1.0.tgz", - "integrity": "sha512-rm0bdSv4jC3BDma3s9H19ZddW0aHX6EoqwDYU2IfZhRN+53QrufTRo2IdkAbRqLx4R2IYbZnbjKKxg4VN5oU9Q==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz", + "integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==", + "dev": true, "license": "MIT", "dependencies": { "icss-utils": "^5.0.0", @@ -15366,6 +13411,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "dev": true, "license": "MIT", "dependencies": { "cssesc": "^3.0.0", @@ -15379,6 +13425,7 @@ "version": "3.2.1", "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz", "integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==", + "dev": true, "license": "ISC", "dependencies": { "postcss-selector-parser": "^7.0.0" @@ -15394,6 +13441,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "dev": true, "license": "MIT", "dependencies": { "cssesc": "^3.0.0", @@ -15407,6 +13455,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, "license": "ISC", "dependencies": { "icss-utils": "^5.0.0" @@ -15440,98 +13489,15 @@ "engines": { "node": ">=12.0" }, - "peerDependencies": { - "postcss": "^8.2.14" - } - }, - "node_modules/postcss-nesting": { - "version": "13.0.1", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-13.0.1.tgz", - "integrity": "sha512-VbqqHkOBOt4Uu3G8Dm8n6lU5+9cJFxiuty9+4rcoyRPO9zZS1JIs6td49VIoix3qYqELHlJIn46Oih9SAKo+yQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "dependencies": { - "@csstools/selector-resolve-nested": "^3.0.0", - "@csstools/selector-specificity": "^5.0.0", - "postcss-selector-parser": "^7.0.0" - }, - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-nesting/node_modules/@csstools/selector-resolve-nested": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-3.0.0.tgz", - "integrity": "sha512-ZoK24Yku6VJU1gS79a5PFmC8yn3wIapiKmPgun0hZgEI5AOqgH2kiPRsPz1qkGv4HL+wuDLH83yQyk6inMYrJQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "postcss-selector-parser": "^7.0.0" - } - }, - "node_modules/postcss-nesting/node_modules/@csstools/selector-specificity": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz", - "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "postcss-selector-parser": "^7.0.0" - } - }, - "node_modules/postcss-nesting/node_modules/postcss-selector-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", - "license": "MIT", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" + "peerDependencies": { + "postcss": "^8.2.14" } }, "node_modules/postcss-normalize-charset": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-7.0.0.tgz", "integrity": "sha512-ABisNUXMeZeDNzCQxPxBCkXexvBrUHV+p7/BXOY+ulxkcjUZO0cp8ekGBwvIh2LbCwnWbyMPNJVtBSdyhM2zYQ==", + "dev": true, "license": "MIT", "engines": { "node": "^18.12.0 || ^20.9.0 || >=22.0" @@ -15544,6 +13510,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-7.0.0.tgz", "integrity": "sha512-lnFZzNPeDf5uGMPYgGOw7v0BfB45+irSRz9gHQStdkkhiM0gTfvWkWB5BMxpn0OqgOQuZG/mRlZyJxp0EImr2Q==", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -15559,6 +13526,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-7.0.0.tgz", "integrity": "sha512-I0yt8wX529UKIGs2y/9Ybs2CelSvItfmvg/DBIjTnoUSrPxSV7Z0yZ8ShSVtKNaV/wAY+m7bgtyVQLhB00A1NQ==", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -15574,6 +13542,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-7.0.0.tgz", "integrity": "sha512-o3uSGYH+2q30ieM3ppu9GTjSXIzOrRdCUn8UOMGNw7Af61bmurHTWI87hRybrP6xDHvOe5WlAj3XzN6vEO8jLw==", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -15589,6 +13558,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-7.0.0.tgz", "integrity": "sha512-w/qzL212DFVOpMy3UGyxrND+Kb0fvCiBBujiaONIihq7VvtC7bswjWgKQU/w4VcRyDD8gpfqUiBQ4DUOwEJ6Qg==", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -15604,6 +13574,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-7.0.0.tgz", "integrity": "sha512-tNgw3YV0LYoRwg43N3lTe3AEWZ66W7Dh7lVEpJbHoKOuHc1sLrzMLMFjP8SNULHaykzsonUEDbKedv8C+7ej6g==", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -15619,6 +13590,7 @@ "version": "7.0.2", "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-7.0.2.tgz", "integrity": "sha512-ztisabK5C/+ZWBdYC+Y9JCkp3M9qBv/XFvDtSw0d/XwfT3UaKeW/YTm/MD/QrPNxuecia46vkfEhewjwcYFjkg==", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.23.3", @@ -15635,6 +13607,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-7.0.0.tgz", "integrity": "sha512-+d7+PpE+jyPX1hDQZYG+NaFD+Nd2ris6r8fPTBAjE8z/U41n/bib3vze8x7rKs5H1uEw5ppe9IojewouHk0klQ==", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -15650,6 +13623,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-7.0.0.tgz", "integrity": "sha512-37/toN4wwZErqohedXYqWgvcHUGlT8O/m2jVkAfAe9Bd4MzRqlBmXrJRePH0e9Wgnz2X7KymTgTOaaFizQe3AQ==", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -15665,6 +13639,7 @@ "version": "7.0.1", "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-7.0.1.tgz", "integrity": "sha512-irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw==", + "dev": true, "license": "MIT", "dependencies": { "cssnano-utils": "^5.0.0", @@ -15681,6 +13656,7 @@ "version": "7.0.2", "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-7.0.2.tgz", "integrity": "sha512-pOnu9zqQww7dEKf62Nuju6JgsW2V0KRNBHxeKohU+JkHd/GAH5uvoObqFLqkeB2n20mr6yrlWDvo5UBU5GnkfA==", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.23.3", @@ -15697,6 +13673,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-7.0.0.tgz", "integrity": "sha512-pnt1HKKZ07/idH8cpATX/ujMbtOGhUfE+m8gbqwJE05aTaNw8gbo34a2e3if0xc0dlu75sUOiqvwCGY3fzOHew==", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -15712,6 +13689,7 @@ "version": "6.1.2", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "dev": true, "license": "MIT", "dependencies": { "cssesc": "^3.0.0", @@ -15721,26 +13699,11 @@ "node": ">=4" } }, - "node_modules/postcss-simple-vars": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/postcss-simple-vars/-/postcss-simple-vars-7.0.1.tgz", - "integrity": "sha512-5GLLXaS8qmzHMOjVxqkk1TZPf1jMqesiI7qLhnlyERalG0sMbHIbJqrcnrpmZdKCLglHnRHoEBB61RtGTsj++A==", - "license": "MIT", - "engines": { - "node": ">=14.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.2.1" - } - }, "node_modules/postcss-svgo": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-7.0.1.tgz", "integrity": "sha512-0WBUlSL4lhD9rA5k1e5D8EN5wCEyZD6HJk0jIvRxl+FDVOMlJ7DePHYWGGVc5QRqrJ3/06FTXM0bxjmJpmTPSA==", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0", @@ -15757,6 +13720,7 @@ "version": "7.0.3", "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-7.0.3.tgz", "integrity": "sha512-J+58u5Ic5T1QjP/LDV9g3Cx4CNOgB5vz+kM6+OxHHhFACdcDeKhBXjQmB7fnIZM12YSTvsL0Opwco83DmacW2g==", + "dev": true, "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.1.2" @@ -15772,6 +13736,7 @@ "version": "4.2.0", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true, "license": "MIT" }, "node_modules/prepend-http": { @@ -15970,9 +13935,9 @@ } }, "node_modules/prosemirror-model": { - "version": "1.23.0", - "resolved": "https://registry.npmjs.org/prosemirror-model/-/prosemirror-model-1.23.0.tgz", - "integrity": "sha512-Q/fgsgl/dlOAW9ILu4OOhYWQbc7TQd4BwKH/RwmUjyVf8682Be4zj3rOYdLnYEcGzyg8LL9Q5IWYKD8tdToreQ==", + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/prosemirror-model/-/prosemirror-model-1.24.1.tgz", + "integrity": "sha512-YM053N+vTThzlWJ/AtPtF1j0ebO36nvbmDy4U7qA2XQB8JVaQp1FmB9Jhrps8s+z+uxhhVTny4m20ptUvhk0Mg==", "license": "MIT", "dependencies": { "orderedmap": "^2.0.0" @@ -15988,9 +13953,9 @@ } }, "node_modules/prosemirror-schema-list": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/prosemirror-schema-list/-/prosemirror-schema-list-1.4.1.tgz", - "integrity": "sha512-jbDyaP/6AFfDfu70VzySsD75Om2t3sXTOdl5+31Wlxlg62td1haUpty/ybajSfJ1pkGadlOfwQq9kgW5IMo1Rg==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/prosemirror-schema-list/-/prosemirror-schema-list-1.5.0.tgz", + "integrity": "sha512-gg1tAfH1sqpECdhIHOA/aLg2VH3ROKBWQ4m8Qp9mBKrOxQRW61zc+gMCI8nh22gnBzd1t2u1/NPLmO3nAa3ssg==", "license": "MIT", "dependencies": { "prosemirror-model": "^1.0.0", @@ -16047,9 +14012,9 @@ } }, "node_modules/prosemirror-view": { - "version": "1.37.0", - "resolved": "https://registry.npmjs.org/prosemirror-view/-/prosemirror-view-1.37.0.tgz", - "integrity": "sha512-z2nkKI1sJzyi7T47Ji/ewBPuIma1RNvQCCYVdV+MqWBV7o4Sa1n94UJCJJ1aQRF/xRkFfyqLGlGFWitIcCOtbg==", + "version": "1.37.1", + "resolved": "https://registry.npmjs.org/prosemirror-view/-/prosemirror-view-1.37.1.tgz", + "integrity": "sha512-MEAnjOdXU1InxEmhjgmEzQAikaS6lF3hD64MveTPpjOGNTl87iRLA1HupC/DEV6YuK7m4Q9DHFNTjwIVtqz5NA==", "license": "MIT", "dependencies": { "prosemirror-model": "^1.20.0", @@ -16058,13 +14023,16 @@ } }, "node_modules/psl": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.13.0.tgz", - "integrity": "sha512-BFwmFXiJoFqlUpZ5Qssolv15DMyc84gTBds1BjsV1BfXEo1UyyD7GsmN67n7J77uRhoSNW1AXtXKPLcBFQn9Aw==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz", + "integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==", "dev": true, "license": "MIT", "dependencies": { "punycode": "^2.3.1" + }, + "funding": { + "url": "https://github.com/sponsors/lupomontero" } }, "node_modules/pump": { @@ -16215,44 +14183,6 @@ "safe-buffer": "^5.1.0" } }, - "node_modules/raw-loader": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/raw-loader/-/raw-loader-4.0.2.tgz", - "integrity": "sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==", - "license": "MIT", - "dependencies": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" - } - }, - "node_modules/raw-loader/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, "node_modules/rc": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", @@ -16323,6 +14253,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, "license": "MIT", "dependencies": { "pify": "^2.3.0" @@ -16365,22 +14296,11 @@ "dev": true, "license": "MIT" }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "license": "MIT", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, "node_modules/rechoir": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "dev": true, "dependencies": { "resolve": "^1.1.6" }, @@ -16522,6 +14442,19 @@ "regjsparser": "bin/parser" } }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/relateurl": { "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", @@ -16634,6 +14567,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -16656,18 +14590,22 @@ "license": "MIT" }, "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", + "dev": true, "license": "MIT", "dependencies": { - "is-core-module": "^2.13.0", + "is-core-module": "^2.16.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -16702,19 +14640,10 @@ "node": ">=8" } }, - "node_modules/resolve-pkg-maps": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", - "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", - "license": "MIT", - "funding": { - "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" - } - }, "node_modules/resolve.exports": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", - "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz", + "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==", "dev": true, "license": "MIT", "engines": { @@ -16734,37 +14663,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/restore-cursor": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz", - "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==", - "license": "MIT", - "dependencies": { - "onetime": "^7.0.0", - "signal-exit": "^4.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/restore-cursor/node_modules/onetime": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz", - "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==", - "license": "MIT", - "dependencies": { - "mimic-function": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/retry": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", @@ -16786,21 +14684,6 @@ "node": ">=0.10.0" } }, - "node_modules/rimraf": { - "version": "5.0.10", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz", - "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==", - "license": "ISC", - "dependencies": { - "glob": "^10.3.7" - }, - "bin": { - "rimraf": "dist/esm/bin.mjs" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/rope-sequence": { "version": "1.3.4", "resolved": "https://registry.npmjs.org/rope-sequence/-/rope-sequence-1.3.4.tgz", @@ -16867,6 +14750,24 @@ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "license": "MIT" }, + "node_modules/safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", @@ -16875,9 +14776,9 @@ "license": "MIT" }, "node_modules/sass": { - "version": "1.81.0", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.81.0.tgz", - "integrity": "sha512-Q4fOxRfhmv3sqCLoGfvrC9pRV8btc0UtqL9mN6Yrv6Qi9ScL55CVH1vlPP863ISLEEMNLLuu9P+enCeGHlnzhA==", + "version": "1.83.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.83.0.tgz", + "integrity": "sha512-qsSxlayzoOjdvXMVLkzF84DJFc2HZEL/rFyGIKbbilYtAvlCxyuzUeff9LawTn4btVnLKg75Z8MMr1lxU1lfGw==", "dev": true, "license": "MIT", "dependencies": { @@ -16896,9 +14797,9 @@ } }, "node_modules/sass-loader": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-16.0.3.tgz", - "integrity": "sha512-gosNorT1RCkuCMyihv6FBRR7BMV06oKRAs+l4UMp1mlcVg9rWN6KMmUj3igjQwmYys4mDP3etEYJgiHRbgHCHA==", + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-16.0.4.tgz", + "integrity": "sha512-LavLbgbBGUt3wCiYzhuLLu65+fWXaXLmq7YxivLhEqmiupCFZ5sKUAipK3do6V80YSU0jvSxNhEdT13IXNr3rg==", "dev": true, "license": "MIT", "dependencies": { @@ -16937,9 +14838,9 @@ } }, "node_modules/sass/node_modules/chokidar": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.1.tgz", - "integrity": "sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", "dev": true, "license": "MIT", "dependencies": { @@ -16980,9 +14881,9 @@ } }, "node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz", + "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==", "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", @@ -16991,7 +14892,7 @@ "ajv-keywords": "^5.1.0" }, "engines": { - "node": ">= 12.13.0" + "node": ">= 10.13.0" }, "funding": { "type": "opencollective", @@ -17129,6 +15030,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" @@ -17141,6 +15043,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -17150,6 +15053,7 @@ "version": "0.8.5", "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "glob": "^7.0.0", @@ -17167,6 +15071,7 @@ "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", @@ -17178,6 +15083,7 @@ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", @@ -17198,6 +15104,7 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" @@ -17207,16 +15114,17 @@ } }, "node_modules/side-channel": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -17225,16 +15133,60 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "license": "ISC", + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, "engines": { - "node": ">=14" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/sisteransi": { @@ -17302,12 +15254,6 @@ "node": ">= 6" } }, - "node_modules/source-list-map": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", - "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", - "license": "MIT" - }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -17321,6 +15267,7 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -17478,124 +15425,48 @@ } }, "node_modules/stop-iteration-iterator": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", - "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "internal-slot": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/string-length": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/string-length/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", + "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", "dev": true, "license": "MIT", "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "es-errors": "^1.3.0", + "internal-slot": "^1.1.0" }, "engines": { - "node": ">=8" + "node": ">= 0.4" } }, - "node_modules/string-width-cjs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "license": "MIT" - }, - "node_modules/string-width-cjs/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, "license": "MIT", "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" + "safe-buffer": "~5.1.0" } }, - "node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, "license": "MIT", "dependencies": { - "ansi-regex": "^6.0.1" + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "node": ">=10" } }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", + "node_modules/string-length/node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" @@ -17604,18 +15475,6 @@ "node": ">=8" } }, - "node_modules/strip-ansi/node_modules/ansi-regex": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", - "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, "node_modules/strip-bom": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", @@ -17653,6 +15512,7 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -17665,6 +15525,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-4.0.0.tgz", "integrity": "sha512-1V4WqhhZZgjVAVJyt7TdDPZoPBPNHbekX4fWnCJL1yQukhCeZhJySUL+gL9y6sNdN95uEOS83Y55SqHcP7MzLA==", + "dev": true, "license": "MIT", "engines": { "node": ">= 18.12.0" @@ -17681,6 +15542,7 @@ "version": "7.0.4", "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-7.0.4.tgz", "integrity": "sha512-i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww==", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.23.3", @@ -17693,26 +15555,11 @@ "postcss": "^8.4.31" } }, - "node_modules/sugarss": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/sugarss/-/sugarss-4.0.1.tgz", - "integrity": "sha512-WCjS5NfuVJjkQzK10s8WOBY+hhDxxNt/N6ZaGwxFZ+wN3/lKKFSaaKUNecULcTTvE4urLcKaZFQD8vO0mOZujw==", - "license": "MIT", - "engines": { - "node": ">=12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.3.3" - } - }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, "license": "MIT", "dependencies": { "has-flag": "^4.0.0" @@ -17725,6 +15572,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -17737,6 +15585,7 @@ "version": "3.3.2", "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz", "integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==", + "dev": true, "license": "MIT", "dependencies": { "@trysound/sax": "0.2.0", @@ -17762,6 +15611,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, "license": "MIT", "engines": { "node": ">= 10" @@ -17771,6 +15621,7 @@ "version": "5.1.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", @@ -17787,6 +15638,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dev": true, "license": "MIT", "dependencies": { "domelementtype": "^2.3.0", @@ -17801,6 +15653,7 @@ "version": "5.0.3", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "domelementtype": "^2.3.0" @@ -17816,6 +15669,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "^2.0.0", @@ -17878,9 +15732,9 @@ "license": "ISC" }, "node_modules/terser": { - "version": "5.36.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.36.0.tgz", - "integrity": "sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==", + "version": "5.37.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.37.0.tgz", + "integrity": "sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==", "license": "BSD-2-Clause", "dependencies": { "@jridgewell/source-map": "^0.3.3", @@ -17896,16 +15750,16 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.10", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", - "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "version": "5.3.11", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.11.tgz", + "integrity": "sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==", "license": "MIT", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.20", + "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.26.0" + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" }, "engines": { "node": ">= 10.13.0" @@ -17943,24 +15797,6 @@ "node": ">= 10.13.0" } }, - "node_modules/terser-webpack-plugin/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, "node_modules/terser-webpack-plugin/node_modules/supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", @@ -18060,68 +15896,6 @@ "dev": true, "license": "MIT" }, - "node_modules/through2": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", - "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", - "license": "MIT", - "dependencies": { - "readable-stream": "3" - } - }, - "node_modules/through2/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/tinyglobby": { - "version": "0.2.10", - "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.10.tgz", - "integrity": "sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==", - "license": "MIT", - "dependencies": { - "fdir": "^6.4.2", - "picomatch": "^4.0.2" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/tinyglobby/node_modules/fdir": { - "version": "6.4.2", - "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.2.tgz", - "integrity": "sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==", - "license": "MIT", - "peerDependencies": { - "picomatch": "^3 || ^4" - }, - "peerDependenciesMeta": { - "picomatch": { - "optional": true - } - } - }, - "node_modules/tinyglobby/node_modules/picomatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", - "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, "node_modules/tippy.js": { "version": "6.3.7", "resolved": "https://registry.npmjs.org/tippy.js/-/tippy.js-6.3.7.tgz", @@ -18165,6 +15939,7 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, "license": "MIT", "dependencies": { "is-number": "^7.0.0" @@ -18231,21 +16006,6 @@ "node": "*" } }, - "node_modules/turndown": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/turndown/-/turndown-7.2.0.tgz", - "integrity": "sha512-eCZGBN4nNNqM9Owkv9HAtWRYfLA4h909E/WGAWWBpmB275ehNhZyk87/Tpvjbp0jjNl9XwCsbe6bm6CqFsgD+A==", - "license": "MIT", - "dependencies": { - "@mixmark-io/domino": "^2.2.0" - } - }, - "node_modules/turndown-plugin-gfm": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.2.tgz", - "integrity": "sha512-vwz9tfvF7XN/jE0dGoBei3FXWuvll78ohzCZQuOb+ZjWrs3a0XhQVomJEb2Qh4VHTPNRO4GPZh0V7VRbiWwkRg==", - "license": "MIT" - }, "node_modules/tweetnacl": { "version": "0.14.5", "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", @@ -18375,25 +16135,6 @@ "node": ">=8" } }, - "node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/upath": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz", - "integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==", - "license": "MIT", - "engines": { - "node": ">=4", - "yarn": "*" - } - }, "node_modules/update-browserslist-db": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", @@ -18536,6 +16277,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true, "license": "MIT" }, "node_modules/utila": { @@ -18581,12 +16323,6 @@ "builtins": "^1.0.3" } }, - "node_modules/vanilla-colorful": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/vanilla-colorful/-/vanilla-colorful-0.7.2.tgz", - "integrity": "sha512-z2YZusTFC6KnLERx1cgoIRX2CjPRP0W75N+3CC6gbvdX5Ch47rZkEMGO2Xnf+IEmi3RiFLxS18gayMA27iU7Kg==", - "license": "MIT" - }, "node_modules/verror": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", @@ -18662,16 +16398,16 @@ } }, "node_modules/webpack": { - "version": "5.96.1", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.96.1.tgz", - "integrity": "sha512-l2LlBSvVZGhL4ZrPwyr8+37AunkcYj5qh8o6u2/2rzoPc8gxFJkLj1WxNgooi9pnoc06jh0BjuXnamM4qlujZA==", + "version": "5.97.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.97.1.tgz", + "integrity": "sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==", "license": "MIT", "dependencies": { "@types/eslint-scope": "^3.7.7", "@types/estree": "^1.0.6", - "@webassemblyjs/ast": "^1.12.1", - "@webassemblyjs/wasm-edit": "^1.12.1", - "@webassemblyjs/wasm-parser": "^1.12.1", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", "acorn": "^8.14.0", "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", @@ -18872,6 +16608,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, "license": "ISC", "dependencies": { "isexe": "^2.0.0" @@ -18884,17 +16621,20 @@ } }, "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", "dev": true, "license": "MIT", "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.1", + "is-number-object": "^1.1.1", + "is-string": "^1.1.1", + "is-symbol": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -18920,16 +16660,17 @@ } }, "node_modules/which-typed-array": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", - "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "version": "1.1.18", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.18.tgz", + "integrity": "sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==", "dev": true, "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", "for-each": "^0.3.3", - "gopd": "^1.0.1", + "gopd": "^1.2.0", "has-tostringtag": "^1.0.2" }, "engines": { @@ -19039,110 +16780,11 @@ "dev": true, "license": "MIT" }, - "node_modules/workerpool": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.5.1.tgz", - "integrity": "sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==", - "license": "Apache-2.0" - }, - "node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "license": "MIT" - }, - "node_modules/wrap-ansi-cjs/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true, "license": "ISC" }, "node_modules/write-file-atomic": { @@ -19219,6 +16861,7 @@ "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, "license": "ISC", "engines": { "node": ">=10" @@ -19254,38 +16897,12 @@ "version": "20.2.9", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, "license": "ISC", "engines": { "node": ">=10" } }, - "node_modules/yargs-unparser": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", - "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", - "license": "MIT", - "dependencies": { - "camelcase": "^6.0.0", - "decamelize": "^4.0.0", - "flat": "^5.0.2", - "is-plain-obj": "^2.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/yargs-unparser/node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/yargs/node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", @@ -19335,6 +16952,7 @@ "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, "license": "MIT", "engines": { "node": ">=10" diff --git a/package.json b/package.json index 1229ecba..d1e98813 100644 --- a/package.json +++ b/package.json @@ -18,12 +18,12 @@ "bugs": { "url": "https://github.com/django-cms/djangocms-text/issues" }, - "homepage": "https://github.com/django-cms/djangocms-text-rte", + "homepage": "https://github.com/django-cms/djangocms-text", "devDependencies": { - "@babel/core": "^7.24.0", - "@babel/preset-env": "^7.24.0", + "@babel/core": "^7.26.0", + "@babel/preset-env": "^7.26.0", "@testing-library/dom": "^9.3.4", - "@testing-library/jest-dom": "^6.4.2", + "@testing-library/jest-dom": "^6.6.3", "babel-jest": "^29.7.0", "css-loader": "^7.1.2", "css-minimizer-webpack-plugin": "^7.0.0", @@ -32,68 +32,37 @@ "jest-environment-jsdom": "^29.7.0", "mini-css-extract-plugin": "^2.9.2", "npm-upgrade": "^3.1.0", - "postcss": "^8.4.47", + "postcss": "^8.4.49", "postcss-import": "^16.1.0", "postcss-loader": "^8.1.1", "postcss-nested": "^6.2.0", - "sass": "^1.80.6", - "sass-loader": "^16.0.3", - "slim-select": "^2.9.2", + "sass": "^1.83.0", + "sass-loader": "^16.0.4", + "slim-select": "^2.10.0", "source-map-loader": "^5.0.0", "style-loader": "^4.0.0", - "webpack": "^5.96.1", + "webpack": "^5.97.1", "webpack-cli": "^5.1.4" }, "dependencies": { - "@ckeditor/ckeditor5-adapter-ckfinder": "^43.1.1", - "@ckeditor/ckeditor5-alignment": "^43.1.1", - "@ckeditor/ckeditor5-autoformat": "^43.1.1", - "@ckeditor/ckeditor5-autosave": "^43.1.1", - "@ckeditor/ckeditor5-basic-styles": "^43.1.1", - "@ckeditor/ckeditor5-block-quote": "^43.1.1", - "@ckeditor/ckeditor5-ckfinder": "^43.1.1", - "@ckeditor/ckeditor5-cloud-services": "^43.1.1", - "@ckeditor/ckeditor5-code-block": "^43.1.1", - "@ckeditor/ckeditor5-dev-utils": "^45.0.8", - "@ckeditor/ckeditor5-easy-image": "^43.1.1", - "@ckeditor/ckeditor5-editor-balloon": "^43.1.1", - "@ckeditor/ckeditor5-editor-classic": "^43.1.1", - "@ckeditor/ckeditor5-editor-inline": "^43.1.1", - "@ckeditor/ckeditor5-essentials": "^43.1.1", - "@ckeditor/ckeditor5-font": "^43.1.1", - "@ckeditor/ckeditor5-heading": "^43.1.1", - "@ckeditor/ckeditor5-highlight": "^43.1.1", - "@ckeditor/ckeditor5-horizontal-line": "^43.1.1", - "@ckeditor/ckeditor5-image": "^43.1.1", - "@ckeditor/ckeditor5-indent": "^43.1.1", - "@ckeditor/ckeditor5-link": "^43.1.1", - "@ckeditor/ckeditor5-list": "^43.1.1", - "@ckeditor/ckeditor5-media-embed": "^43.1.1", - "@ckeditor/ckeditor5-paragraph": "^43.1.1", - "@ckeditor/ckeditor5-paste-from-office": "^43.1.1", - "@ckeditor/ckeditor5-source-editing": "^43.1.1", - "@ckeditor/ckeditor5-table": "^43.1.1", - "@ckeditor/ckeditor5-theme-lark": "^43.1.1", - "@ckeditor/ckeditor5-typing": "^43.1.1", - "@ckeditor/ckeditor5-upload": "^43.1.1", - "@tiptap/core": "^2.9.1", - "@tiptap/extension-blockquote": "^2.9.1", - "@tiptap/extension-bubble-menu": "^2.9.1", - "@tiptap/extension-character-count": "^2.9.1", - "@tiptap/extension-floating-menu": "^2.9.1", - "@tiptap/extension-image": "^2.9.1", - "@tiptap/extension-link": "^2.9.1", - "@tiptap/extension-placeholder": "^2.9.1", - "@tiptap/extension-subscript": "^2.9.1", - "@tiptap/extension-superscript": "^2.9.1", - "@tiptap/extension-table": "^2.9.1", - "@tiptap/extension-table-cell": "^2.9.1", - "@tiptap/extension-table-header": "^2.9.1", - "@tiptap/extension-table-row": "^2.9.1", - "@tiptap/extension-text-align": "^2.9.1", - "@tiptap/extension-underline": "^2.9.1", - "@tiptap/pm": "^2.9.1", - "@tiptap/starter-kit": "^2.9.1", + "@tiptap/core": "^2.10.4", + "@tiptap/extension-blockquote": "^2.10.4", + "@tiptap/extension-bubble-menu": "^2.10.4", + "@tiptap/extension-character-count": "^2.10.4", + "@tiptap/extension-floating-menu": "^2.10.4", + "@tiptap/extension-image": "^2.10.4", + "@tiptap/extension-link": "^2.10.4", + "@tiptap/extension-placeholder": "^2.10.4", + "@tiptap/extension-subscript": "^2.10.4", + "@tiptap/extension-superscript": "^2.10.4", + "@tiptap/extension-table": "^2.10.4", + "@tiptap/extension-table-cell": "^2.10.4", + "@tiptap/extension-table-header": "^2.10.4", + "@tiptap/extension-table-row": "^2.10.4", + "@tiptap/extension-text-align": "^2.10.4", + "@tiptap/extension-underline": "^2.10.4", + "@tiptap/pm": "^2.10.4", + "@tiptap/starter-kit": "^2.10.4", "html-loader": "^5.1.0", "quill": "^2.0.3" } diff --git a/private/css/cms.balloon-toolbar.css b/private/css/cms.balloon-toolbar.css index fb7a3e2a..e58c5ebc 100644 --- a/private/css/cms.balloon-toolbar.css +++ b/private/css/cms.balloon-toolbar.css @@ -7,7 +7,7 @@ border-radius: 3px; box-shadow: none; /* box-shadow: 0 1.5px 1.5px rgba(var(--dca-shadow),.4); */ - inset-inline-end: calc(100% + 1rem); + inset-inline-end: calc(100% + 0.75rem); width: calc(1.6*var(--size)); height: calc(1.6*var(--size)); line-height: calc(1.3*var(--size)); @@ -20,6 +20,11 @@ &.show [role="menubar"] { visibility: visible; } + &.disabled { + cursor: not-allowed; + pointer-events: none; + color: var(--dca-gray-light); + } [role="menubar"] { padding: 3px; position: absolute; @@ -31,16 +36,12 @@ } } -@keyframes delayedHide { - to { +.cms-editor-inline-wrapper:not(:has(.cms-toolbar.show)) .cms-balloon { visibility: hidden; - } -} - -.cms-editor-inline-wrapper:not(:has(.ProseMirror-focused)) .cms-balloon { - animation: 0s linear 0.2s forwards delayedHide; } dialog.cms-form-dialog.cms-balloon-menu { padding: 2px 0.4rem; + border-radius: 0; + box-shadow: 0 1.5px 1.5px rgba(var(--dca-shadow),.4); } diff --git a/private/css/cms.linkfield.css b/private/css/cms.linkfield.css index 262b9527..d545d828 100644 --- a/private/css/cms.linkfield.css +++ b/private/css/cms.linkfield.css @@ -3,7 +3,7 @@ font-size: 0.8rem; position: relative; input[type="text"] { - padding-inline-end: 2em; + padding-inline-end: 2em !important; background: var(--dca-white) url('data:image/svg+xml;utf8,') no-repeat right center; &[dir=rtl] { background-position: left center; @@ -14,13 +14,13 @@ .cms-linkfield-selected { font-weight: bold; } - .cms-linkfield-dropdown:not(:empty), .cms-linkfield-dropdown:active { - /* Hide dropdown when empty */ - visibility: visible; - } .cms-linkfield-dropdown { z-index: 1; - visibility: hidden; + visibility: visible; + &:empty { + /* Hide dropdown when empty */ + visibility: hidden; + } position: absolute; max-block-size: 400px; overflow: auto; diff --git a/private/css/cms.tiptap.css b/private/css/cms.tiptap.css index 768d2fa3..87e93e2a 100644 --- a/private/css/cms.tiptap.css +++ b/private/css/cms.tiptap.css @@ -38,18 +38,46 @@ overflow-y: auto; } position: relative; - a { - pointer-events: none; - } - & cms-plugin { - pointer-events: auto; - a { - pointer-events: none; /* for text-enabled link plugins */ + .tiptap { + &.resize-cursor { + cursor: col-resize; + } + a[href] { + cursor: pointer; } - &.ProseMirror-selectednode > * { - outline: 2px solid #fad507; - outline-offset: 2px; + .fake-selection { + background-color: Highlight; + color: HighlightText; } + table { + th, td { + position: relative; + } + .selectedCell { + color: HighlightText; + background: Highlight; + } + .column-resize-handle { + top: 0; + bottom: 0; + right: -1px; + width: 2px; + position: absolute; + background: Highlight; + box-shadow: 0 0 2px Highlight; + } + } + & cms-plugin { + pointer-events: auto; + a { + pointer-events: none; /* for text-enabled link plugins */ + } + &.ProseMirror-selectednode > * { + outline: 2px solid #fad507; + outline-offset: 2px; + } + } + } [role="menubar"] { bottom: calc(100% - 1px); @@ -70,10 +98,11 @@ display: flex; flex-flow: row wrap; border: solid 1px var(--dca-gray-light, var(--hairline-color)); - box-shadow: 0 1.5px 1.5px rgba(var(--dca-shadow),.4); + box-shadow: 0 1.5px 1.5px rgba(var(--dca-shadow), .4); color: var(--dca-black, var(--body-fg)); background: var(--dca-white, var(--body-bg)); opacity: 1; + div.grouper { padding: 0; margin: 0; @@ -100,6 +129,36 @@ inset-inline-start: 0; } } + div.tt-create-table { + display: block; + position: relative; + width: calc(12px * 10); + height: calc(12px * 10 + 1rem); + button { + position: absolute; + top: 0; + inset-inline-start: 0; + padding: 4px !important; /* needed for djangocms-admin-style */ + margin: 0px 2px !important; + border: 1px solid var(--dca-gray-lighter, var(--hairline-color)) !important; + margin-inline-start: var(--mx) !important; + margin-top: var(--my) !important; + &:hover { + background-color: Highlight; + } + &:hover::after { + position: absolute; + top: calc(124px - var(--my)); + inset-inline-start: calc(-1 * var(--mx)); + text-align: center; + height: 2rem; + width: calc(12px * 10); + content: attr(title); + font-size: 0.7rem; + color: var(--dca-gray); + } + } + } button, [role="button"] { width: auto !important; /* for djangocms-admin-style */ position: relative; @@ -149,6 +208,15 @@ height: 1.2rem; } } + /* Allow to disable the full menubar */ + [role="menubar"].disabled { + button, [role="button"] { + cursor: not-allowed; + pointer-events: none; + color: var(--dca-gray-light); + } + } + .dropdown-content { color: var(--dca-black, var(--body-fg)); border-radius: 0; diff --git a/private/js/cms.ckeditor4.js b/private/js/cms.ckeditor4.js index f3853dc3..68b52620 100644 --- a/private/js/cms.ckeditor4.js +++ b/private/js/cms.ckeditor4.js @@ -3,6 +3,11 @@ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ +/* eslint-env es6 */ +/* jshint esversion: 6 */ +/* global document, window, console */ + + import './ckeditor4_plugins/cmsdialog/plugin'; import './ckeditor4_plugins/cmsplugins/plugin'; import './ckeditor4_plugins/cmsresize/plugin'; diff --git a/private/js/cms.dialog.js b/private/js/cms.dialog.js index ebd43576..384e9721 100644 --- a/private/js/cms.dialog.js +++ b/private/js/cms.dialog.js @@ -2,6 +2,7 @@ /* jshint esversion: 6 */ /* global document, window, console */ + class CmsDialog { /** * Constructor for creating an instance of the class showing a django CMS modal in a @@ -21,6 +22,7 @@ class CmsDialog { this.el = el; this.saveSuccess = saveSuccess; this.cancel = cancel; + this.close = this._close.bind(this); } /** @@ -176,8 +178,8 @@ class CmsDialog { * @memberof ClassName * @returns {void} */ - close() { - this.dialog.removeEventListener("close", this.close.bind(this)); + _close() { + this.dialog.removeEventListener("close", this.close); this.dialog.remove(); } @@ -251,6 +253,7 @@ class CmsForm { this.el = el; this.saveSuccess = saveSuccess; this.cancel = cancel; + this.close = this._close.bind(this); } formDialog(form, options) { @@ -277,7 +280,7 @@ class CmsForm { const el_pos = this.el.getBoundingClientRect(); if (options.x > window.innerWidth / 2) { this.dialog.classList.add("right"); - this.dialog.style.right = ( el_pos.x + el_pos.width - options.x - 24) + 'px'; + this.dialog.style.right = (el_pos.x + el_pos.width - options.x - 24 - 10) + 'px'; } else { this.dialog.style.left = (options.x - el_pos.x - 24) + 'px'; } @@ -291,11 +294,10 @@ class CmsForm { event.stopPropagation(); this.close(); }); - document.addEventListener("click", this.close.bind(this)); + document.addEventListener("click", this.close); if (this.dialog.querySelector('.cancel')) { - this.dialog - .querySelector(".cancel") - .addEventListener('click', (event) => this.close() ); + this.dialog.querySelector(".cancel") + .addEventListener('click', () => this.close() ); } this.dialog.addEventListener('keydown', (event) => { if (event.key === 'Escape') { @@ -329,14 +331,14 @@ class CmsForm { } } - close(event) { + _close(event) { if (!event || !this.dialog.contains(event.target)) { - + // Do only close if the click is outside the dialog + document.removeEventListener("click", this.close); + this.dialog.removeEventListener("close", this.close); if (this.cancel) { this.cancel(event); } - document.removeEventListener("click", this.close.bind(this)); - this.dialog.removeEventListener("close", this.close.bind(this)); this.dialog.remove(); } } @@ -383,6 +385,13 @@ function formToHtml(formArray) { case 'hr': form += '
'; break; + case 'link': + form += `${element.label}`; + break; + case 'section': + const content = formToHtml(element.content); + form += `
${element.label}${content}
`; + break; } }); return form + ''; diff --git a/private/js/cms.linkfield.js b/private/js/cms.linkfield.js index 2bf7a4ce..8ea65fc1 100644 --- a/private/js/cms.linkfield.js +++ b/private/js/cms.linkfield.js @@ -5,6 +5,8 @@ class LinkField { constructor(element, options) { + const hasFocus = element.contains(document.activeElement); + this.options = options; this.urlElement = element; this.form = element.closest("form"); @@ -12,13 +14,13 @@ class LinkField { if (this.selectElement) { this.urlElement.setAttribute('type', 'hidden'); // Two input types? this.selectElement.setAttribute('type', 'hidden'); // Make hidden and add common input - this.createInput(); + this.createInput(hasFocus); this.registerEvents(); } this.populateField(); } - createInput() { + createInput(hasFocus = false) { this.inputElement = document.createElement('input'); this.inputElement.setAttribute('type', 'text'); this.inputElement.setAttribute('autocomplete', 'off'); @@ -40,7 +42,9 @@ class LinkField { } this.wrapper.appendChild(this.inputElement); this.wrapper.appendChild(this.dropdown); - + if (hasFocus) { + this.inputElement.focus(); + } } populateField() { @@ -161,10 +165,10 @@ class LinkField { } openDropdown(event) { - if (this.dropdown.style.visibility === 'visible') { + if (this.dropdown.style.visibility !== 'hidden') { return; } - this.dropdown.style.visibility = 'visible'; + this.dropdown.style.visibility = ''; document.addEventListener('click', this.closeDropdown.bind(this)); } diff --git a/private/js/cms.tiptap.js b/private/js/cms.tiptap.js index 76d54059..b0623847 100644 --- a/private/js/cms.tiptap.js +++ b/private/js/cms.tiptap.js @@ -10,24 +10,25 @@ import CmsDynLink from './tiptap_plugins/cms.dynlink'; import Placeholder from '@tiptap/extension-placeholder'; import Subscript from '@tiptap/extension-subscript'; import Superscript from '@tiptap/extension-superscript'; -import Table from '@tiptap/extension-table' -import TableCell from '@tiptap/extension-table-cell' -import TableHeader from '@tiptap/extension-table-header' -import TableRow from '@tiptap/extension-table-row' -import { TextAlign, TextAlignOptions } from '@tiptap/extension-text-align'; -import { CmsPluginNode, CmsBlockPluginNode } from './tiptap_plugins/cms.plugin'; +import Table from '@tiptap/extension-table'; +import TableCell from '@tiptap/extension-table-cell'; +import TableHeader from '@tiptap/extension-table-header'; +import TableRow from '@tiptap/extension-table-row'; +import {TextAlign, TextAlignOptions} from '@tiptap/extension-text-align'; +import {CmsPluginNode, CmsBlockPluginNode} from './tiptap_plugins/cms.plugin'; import TiptapToolbar from "./tiptap_plugins/cms.tiptap.toolbar"; import {StarterKit} from "@tiptap/starter-kit"; -import { InlineColors, Small, Var, Kbd, Samp } from "./tiptap_plugins/cms.styles"; +import {InlineColors, Small, Var, Kbd, Samp} from "./tiptap_plugins/cms.styles"; import CmsBalloonToolbar from "./tiptap_plugins/cms.balloon-toolbar"; import FormExtension from "./tiptap_plugins/cms.formextension"; -import { formToHtml, populateForm } from './cms.dialog'; -import LinkField from "./cms.linkfield"; +import {formToHtml, populateForm} from './cms.dialog'; +import LinkField from './cms.linkfield'; + +import '../css/cms.tiptap.css'; +import '../css/cms.linkfield.css'; -import "../css/cms.tiptap.css"; -import "../css/cms.linkfield.css"; class CMSTipTapPlugin { @@ -51,9 +52,7 @@ class CMSTipTapPlugin { TableRow, TableHeader, TableCell, - CmsDynLink.extend({ - inclusive: false, - }), + CmsDynLink, Small, Var, Kbd, Samp, CmsPluginNode, CmsBlockPluginNode, @@ -64,12 +63,12 @@ class CMSTipTapPlugin { ], toolbar_HTMLField: [ ['Paragraph', '-', 'Heading1', 'Heading2', 'Heading3', 'Heading4', 'Heading5'], '|', - ['Bold', 'Italic', 'Underline', 'Strike', '-', 'Subscript', 'Superscript', '-', 'RemoveFormat'] + ['Bold', 'Italic', 'Underline', 'Strike', '-', 'Subscript', 'Superscript', '-', 'RemoveFormat'], ['Undo', 'Redo'], ], toolbar_CMS: [ ['Paragraph', '-', 'Heading1', 'Heading2', 'Heading3', 'Heading4', 'Heading5'], '|', - ['Bold', 'Italic', 'Underline', 'Strike', '-', 'Subscript', 'Superscript', '-', 'RemoveFormat'] + ['Bold', 'Italic', 'Underline', 'Strike', '-', 'Subscript', 'Superscript', '-', 'RemoveFormat'], ['Undo', 'Redo'], ], }; @@ -139,10 +138,11 @@ class CMSTipTapPlugin { } }); this._editors[el.id] = editor; - const el_rect = el.getBoundingClientRect(); + editor.cmsPlugin = this; - if (el.tagName === 'TEXTAREA' || el_rect.x < 32) { - // Not inline + const el_rect = el.getBoundingClientRect(); + if (el.tagName === 'TEXTAREA' || el_rect.x < 28) { + // Not inline or too close to the left edge to see the block toolbar this._createTopToolbar(editorElement, editor, options); if (el.rows && !el.closest('body.app-djangocms_text.change-form')) { editorElement.querySelector('.tiptap').style.height = el.rows * 1.5 + 'em'; @@ -227,7 +227,7 @@ class CMSTipTapPlugin { } _createBlockToolbar(el, editor, options) { - const toolbar = this._populateToolbar(editor,options.toolbar || this.options.toolbar_HTMLField, 'block'); + const toolbar = this._populateToolbar(editor, options.toolbar || this.options.toolbar_HTMLField, 'block'); const ballonToolbar = new CmsBalloonToolbar(editor, toolbar, (event) => this._handleToolbarClick(event, editor), (el) => this._updateToolbar(editor, el)); @@ -315,7 +315,7 @@ class CMSTipTapPlugin { event.stopPropagation(); event.preventDefault(); const button = event.target.closest('button, .dropdown'); - if (button && !button.disabled) { + if (button && !button.disabled && !editor.options.el.querySelector('dialog.cms-form-dialog')) { const action = button.dataset.action; if (button.classList.contains('dropdown')) { // Open dropdown @@ -353,14 +353,14 @@ class CMSTipTapPlugin { } - // Blur editor event + // Blur editor event _blurEditor(editor, event) { // Let the editor process clicks on the toolbar first // This hopefully prevents race conditions setTimeout(() => { // Allow toolbar and other editor widgets to process the click first // They need to refocus the editor to avoid a save - if (!editor.options.element.contains(document.activeElement)) { + if(!editor.options.el.contains(document.activeElement)) { // hide the toolbar editor.options.element.querySelectorAll('[role="menubar"], [role="button"]') .forEach((el) => el.classList.remove('show')); @@ -398,13 +398,20 @@ class CMSTipTapPlugin { html += group + this.separator_markup; } } else if (item.constructor === Object) { - const dropdown = this._populateToolbar(editor, item.items, filter); - // Are there any items in the dropdown? - if (dropdown.replaceAll(this.separator_markup, '').replaceAll(this.space_markup, '').length > 0) { - const title = item.title && item.icon ? `title='${item.title}' ` : ''; - const icon = item.icon || item.title; - html += `${icon}`; + let dropdown; + + if (typeof item.items === 'string') { + dropdown = item.items; + } else { + dropdown = this._populateToolbar(editor, item.items, filter); + // Are there any items in the dropdown? + if (dropdown.replaceAll(this.separator_markup, '').replaceAll(this.space_markup, '').length === 0) { + continue; + } } + const title = item.title && item.icon ? `title='${item.title}' ` : ''; + const icon = item.icon || item.title; + html += `${icon}`; } else { switch (item) { case '|': @@ -530,6 +537,7 @@ class CMSTipTapPlugin { if (action) { if (TiptapToolbar[action]) { const toolbarItem = this._getRepresentation(action); + button.disabled = !toolbarItem.enabled(editor, button); try { button.disabled = !toolbarItem.enabled(editor, button); try { diff --git a/private/js/tiptap_plugins/cms.balloon-toolbar.js b/private/js/tiptap_plugins/cms.balloon-toolbar.js index 4af295d7..401ae21f 100644 --- a/private/js/tiptap_plugins/cms.balloon-toolbar.js +++ b/private/js/tiptap_plugins/cms.balloon-toolbar.js @@ -52,8 +52,7 @@ export default class CmsBalloonToolbar { this.form = null; } else { // Add the form dialog only if it is not already open - this.form = new CmsForm(this.editor.options.element, () => { - }); + this.form = new CmsForm(this.editor.options.element, () => {}); const rect = this.toolbar.getBoundingClientRect(); const options = { x: (rect.left + rect.right) / 2, diff --git a/private/js/tiptap_plugins/cms.dynlink.js b/private/js/tiptap_plugins/cms.dynlink.js index 8fa517f7..f946352c 100644 --- a/private/js/tiptap_plugins/cms.dynlink.js +++ b/private/js/tiptap_plugins/cms.dynlink.js @@ -1,9 +1,11 @@ -/* eslint-env es6 */ -/* jshint esversion: 6 */ +/* eslint-env es11 */ +/* jshint esversion: 11 */ /* global document, window, console */ +'use strict'; import Link from '@tiptap/extension-link'; + const CmsDynLink = Link.extend({ addAttributes() { 'use strict'; @@ -18,7 +20,35 @@ const CmsDynLink = Link.extend({ default: null }, }; - } + }, + + onCreate({editor}) { + editor.parent?.(); // Call the parent implementation, if it exists + this.handleEvent = ((event) => { + 'use strict'; + const target = event.target.closest('a[href]'); + if (target) { + event.preventDefault(); + setTimeout(() => { + if (this.editor.isActive('link')) { + this.editor.commands.extendMarkRange('link'); + this.editor.commands.openCmsForm('Link'); + } + }, 0); + } + }).bind(this); // hacky: move the eventHandler to the Mark object (this) to be able to remove it later + editor.view.dom.addEventListener('click', this); + }, + + onDestroy() { + this.editor.parent?.(); // Call the parent implementation, if it exists + this.editor.view.dom.removeEventListener('click', this); + }, +}).configure({ + openOnClick: false, + HTMLAttributes: { + rel: 'noopener noreferrer', + }, }); diff --git a/private/js/tiptap_plugins/cms.formextension.js b/private/js/tiptap_plugins/cms.formextension.js index a4a683f4..73621b83 100644 --- a/private/js/tiptap_plugins/cms.formextension.js +++ b/private/js/tiptap_plugins/cms.formextension.js @@ -1,12 +1,73 @@ -/* eslint-env es6 */ -/* jshint esversion: 6 */ +/* eslint-env es11 */ +/* jshint esversion: 11 */ /* global document, window, console */ +'use strict'; import {CmsForm, formToHtml, populateForm} from "../cms.dialog"; import {Extension} from "@tiptap/core"; import TiptapToolbar from "./cms.tiptap.toolbar"; import LinkField from "../cms.linkfield"; +import {Decoration, DecorationSet} from '@tiptap/pm/view'; +import {Plugin} from '@tiptap/pm/state'; + + +// ProseMirror plugin to handle temporary decorations +const _fakeSelectionPlugin = new Plugin({ + state: { + init(_, {doc}) { + return DecorationSet.empty; + }, + apply(tr, decorationSet) { + // Remove decoration on any transaction unless explicitly preserved + if (tr.getMeta("fake-selection") === "add") { + const {from, to} = tr.selection; + const decoration = Decoration.inline(from, to, {class: "fake-selection"}); + return decorationSet.add(tr.doc, [decoration]); + } else if (tr.getMeta("fake-selection") === "remove") { + const decorations = decorationSet.find().filter( + (decoration) => decoration.spec?.class === "fake-selection" + ); + return DecorationSet.create(tr.doc, decorations); + } + return decorationSet.map(tr.mapping, tr.doc); + }, + }, + props: { + decorations(state) { + return this.getState(state); + }, + }, +}); + + +const fakeSelectionPlugin = Extension.create({ + addProseMirrorPlugins() { + return [_fakeSelectionPlugin]; + }, +}); + + +function addFakeSelection(view) { + const {state, dispatch} = view; + const tr = state.tr; + // Add meta to trigger the plugin + tr.setMeta("fake-selection", "add"); + dispatch(tr); + view.dom.parentNode.querySelector('.cms-toolbar')?.classList.add('disabled'); + view.dom.parentNode.querySelector('.cms-balloon')?.classList.add('disabled'); +} + +function clearFakeSelection(view) { + const {state, dispatch} = view; + const tr = state.tr; + // Add meta to trigger the plugin + tr.setMeta("fake-selection", "remove"); + dispatch(tr); + view.dom.parentNode.querySelector('.cms-toolbar')?.classList.remove('disabled'); + view.dom.parentNode.querySelector('.cms-balloon')?.classList.remove('disabled'); +} + const FormExtension = Extension.create({ @@ -15,7 +76,11 @@ const FormExtension = Extension.create({ 'use strict'; return { openCmsForm: (action, target) => ({editor, commands}) => { + if (editor.options.el.querySelector(`dialog.${action}-form`)) { + return false; + } let options; + addFakeSelection(editor.view); if (target) { const rect = target.getBoundingClientRect(); options = { @@ -40,8 +105,11 @@ const FormExtension = Extension.create({ } const dialog = new CmsForm( editor.options.element, - data => TiptapToolbar[action].formAction(editor, data) - // () => editor.commands.focus() + data => { + TiptapToolbar[action].formAction(editor, data); + editor.commands.closeCmsForm(); + }, + () => editor.commands.closeCmsForm() ); const formRepresentation = window.cms_editor_plugin._getRepresentation(action); const formElement = dialog.formDialog(formToHtml(formRepresentation.form), options); @@ -50,6 +118,7 @@ const FormExtension = Extension.create({ // Populate the form with the current attributes (if existent) populateForm(formElement, TiptapToolbar[action].attributes(editor), formRepresentation.form); } + dialog.dialog.classList.add(action + '-form'); dialog.open(); formElement.querySelectorAll('form.cms-form .js-linkfield') .forEach((el) => { @@ -57,9 +126,17 @@ const FormExtension = Extension.create({ url: editor.options.settings.url_endpoint || '', }); }, this); + }, + + closeCmsForm: () => ({editor}) => { + clearFakeSelection(editor.view); + editor.commands.focus(); } }; - } + }, + addProseMirrorPlugins() { + return [_fakeSelectionPlugin]; + }, }); export default FormExtension; diff --git a/private/js/tiptap_plugins/cms.styles.js b/private/js/tiptap_plugins/cms.styles.js index 1e20dd6f..44677fda 100644 --- a/private/js/tiptap_plugins/cms.styles.js +++ b/private/js/tiptap_plugins/cms.styles.js @@ -1,10 +1,12 @@ -/* eslint-env es6 */ -/* jshint esversion: 6 */ +/* eslint-env es11 */ +/* jshint esversion: 11 */ /* global document, window, console */ import {Mark, mergeAttributes,} from '@tiptap/core'; +'use strict'; + const _markElement = { addOptions() { @@ -23,6 +25,7 @@ const _markElement = { return [this.name.toLowerCase(), mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]; }, addCommands() { + 'use strict'; let commands = {}; commands[`set${this.name}`] = () => ({ commands }) => { diff --git a/private/js/tiptap_plugins/cms.tiptap.toolbar.js b/private/js/tiptap_plugins/cms.tiptap.toolbar.js index 67e0b6d1..13984736 100644 --- a/private/js/tiptap_plugins/cms.tiptap.toolbar.js +++ b/private/js/tiptap_plugins/cms.tiptap.toolbar.js @@ -2,7 +2,20 @@ /* jshint esversion: 6 */ /* global document, window, console */ -"use strict"; +'use strict'; + + +function generateButtonArray(rows, cols) { + let buttons = '
'; + for (let j= 0; j < rows; j++) { + for (let i = 0; i < cols; i++) { + buttons += ``; + } + } + buttons += '
' + buttons += '
'; + return buttons; +} const TiptapToolbar = { @@ -117,7 +130,13 @@ const TiptapToolbar = { type: 'block', }, Link: { - action: (editor) => editor.commands.openCmsForm('Link'), + action: (editor) => { + if (editor.isActive('link')) { + // If the user is currently editing a link, update the whole link + editor.commands.extendMarkRange('link'); + } + editor.commands.openCmsForm('Link'); + }, formAction: (editor, data) => { if (data) { const link = { @@ -125,15 +144,10 @@ const TiptapToolbar = { 'data-cms-href': data.get('href_select') || null, 'target': data.get('target') || null, }; - if (editor.isActive('link')) { - // If the user is currently editing a link, update the whole link - editor.chain().focus().extendMarkRange('link').setLink(link).run(); - } else { - editor.chain().focus().setLink(link).run(); - } + editor.commands.setLink(link); } }, - enabled: (editor) => editor.can().setLink(), + enabled: (editor) => editor.can().setLink({href: '#'}), active: (editor) => editor.isActive('link'), attributes: (editor) => { let attrs = editor.getAttributes('link'); @@ -149,9 +163,14 @@ const TiptapToolbar = { type: 'mark', }, TipTapTable: { - action: (editor) => editor.chain().focus().insertTable({ rows: 3, cols: 3 }).run(), - enabled: (editor) => editor.can().insertTable(), - type: 'block', + action: (editor, button) => { + const rows = parseInt(button.dataset.rows); + const cols = parseInt(button.dataset.cols); + editor.chain().focus().insertTable({ rows: rows, cols: cols }).run(); + }, + enabled: (editor) => editor.can().insertTable({ rows: 3, cols: 3 }), + type: 'mark', + items: generateButtonArray(10,10), }, Code: { action: (editor) => editor.chain().focus().toggleCode().run(),