@ckeditor/ckeditor5-list-multi-level 0.0.1 → 41.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (106) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/LICENSE.md +4 -4
  3. package/build/list-multi-level.js +5 -0
  4. package/build/translations/ar.js +1 -0
  5. package/build/translations/bg.js +1 -0
  6. package/build/translations/bn.js +1 -0
  7. package/build/translations/ca.js +1 -0
  8. package/build/translations/cs.js +1 -0
  9. package/build/translations/da.js +1 -0
  10. package/build/translations/de.js +1 -0
  11. package/build/translations/el.js +1 -0
  12. package/build/translations/es-co.js +1 -0
  13. package/build/translations/es.js +1 -0
  14. package/build/translations/et.js +1 -0
  15. package/build/translations/fi.js +1 -0
  16. package/build/translations/fr.js +1 -0
  17. package/build/translations/he.js +1 -0
  18. package/build/translations/hi.js +1 -0
  19. package/build/translations/hr.js +1 -0
  20. package/build/translations/hu.js +1 -0
  21. package/build/translations/id.js +1 -0
  22. package/build/translations/it.js +1 -0
  23. package/build/translations/ja.js +1 -0
  24. package/build/translations/ko.js +1 -0
  25. package/build/translations/lt.js +1 -0
  26. package/build/translations/lv.js +1 -0
  27. package/build/translations/ms.js +1 -0
  28. package/build/translations/nl.js +1 -0
  29. package/build/translations/no.js +1 -0
  30. package/build/translations/pl.js +1 -0
  31. package/build/translations/pt-br.js +1 -0
  32. package/build/translations/pt.js +1 -0
  33. package/build/translations/ro.js +1 -0
  34. package/build/translations/ru.js +1 -0
  35. package/build/translations/sk.js +1 -0
  36. package/build/translations/sr.js +1 -0
  37. package/build/translations/sv.js +1 -0
  38. package/build/translations/th.js +1 -0
  39. package/build/translations/tr.js +1 -0
  40. package/build/translations/uk.js +1 -0
  41. package/build/translations/vi.js +1 -0
  42. package/build/translations/zh-cn.js +1 -0
  43. package/build/translations/zh.js +1 -0
  44. package/ckeditor5-metadata.json +42 -0
  45. package/lang/contexts.json +4 -0
  46. package/lang/translations/ar.po +26 -0
  47. package/lang/translations/bg.po +26 -0
  48. package/lang/translations/bn.po +26 -0
  49. package/lang/translations/ca.po +26 -0
  50. package/lang/translations/cs.po +26 -0
  51. package/lang/translations/da.po +26 -0
  52. package/lang/translations/de.po +26 -0
  53. package/lang/translations/el.po +26 -0
  54. package/lang/translations/en.po +26 -0
  55. package/lang/translations/es-co.po +26 -0
  56. package/lang/translations/es.po +26 -0
  57. package/lang/translations/et.po +26 -0
  58. package/lang/translations/fi.po +26 -0
  59. package/lang/translations/fr.po +26 -0
  60. package/lang/translations/he.po +26 -0
  61. package/lang/translations/hi.po +26 -0
  62. package/lang/translations/hr.po +26 -0
  63. package/lang/translations/hu.po +26 -0
  64. package/lang/translations/id.po +26 -0
  65. package/lang/translations/it.po +26 -0
  66. package/lang/translations/ja.po +26 -0
  67. package/lang/translations/ko.po +26 -0
  68. package/lang/translations/lt.po +26 -0
  69. package/lang/translations/lv.po +26 -0
  70. package/lang/translations/ms.po +26 -0
  71. package/lang/translations/nl.po +26 -0
  72. package/lang/translations/no.po +26 -0
  73. package/lang/translations/pl.po +26 -0
  74. package/lang/translations/pt-br.po +26 -0
  75. package/lang/translations/pt.po +26 -0
  76. package/lang/translations/ro.po +26 -0
  77. package/lang/translations/ru.po +26 -0
  78. package/lang/translations/sk.po +26 -0
  79. package/lang/translations/sr.po +26 -0
  80. package/lang/translations/sv.po +26 -0
  81. package/lang/translations/th.po +26 -0
  82. package/lang/translations/tr.po +26 -0
  83. package/lang/translations/uk.po +26 -0
  84. package/lang/translations/vi.po +26 -0
  85. package/lang/translations/zh-cn.po +26 -0
  86. package/lang/translations/zh.po +26 -0
  87. package/package.json +34 -4
  88. package/src/augmentation.d.ts +14 -0
  89. package/src/augmentation.js +23 -0
  90. package/src/index.d.ts +11 -0
  91. package/src/index.js +23 -0
  92. package/src/multilevellist.d.ts +27 -0
  93. package/src/multilevellist.js +23 -0
  94. package/src/multilevellistcommand.d.ts +49 -0
  95. package/src/multilevellistcommand.js +23 -0
  96. package/src/multilevellistediting.d.ts +27 -0
  97. package/src/multilevellistediting.js +23 -0
  98. package/src/multilevellistui.d.ts +28 -0
  99. package/src/multilevellistui.js +23 -0
  100. package/src/ui/multilevellistview.d.ts +5 -0
  101. package/src/ui/multilevellistview.js +23 -0
  102. package/theme/icons/legal-style-list.svg +1 -0
  103. package/theme/icons/multi-level-list.svg +1 -0
  104. package/theme/multilevellist.css +35 -0
  105. package/theme/multilevellistview.css +54 -0
  106. package/README.md +0 -4
@@ -0,0 +1,26 @@
1
+ # Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # !!! IMPORTANT !!!
4
+ #
5
+ # Before you edit this file, please keep in mind that contributing to the project
6
+ # translations is possible ONLY via the Transifex online service.
7
+ #
8
+ # To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
9
+ #
10
+ # To learn more, check out the official contributor's guide:
11
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
12
+ #
13
+ msgid ""
14
+ msgstr ""
15
+ "Language-Team: Romanian (https://app.transifex.com/ckeditor/teams/11143/ro/)\n"
16
+ "Language: ro\n"
17
+ "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+
20
+ msgctxt "Toolbar button tooltip for the Multi-level List feature."
21
+ msgid "Multi-level List"
22
+ msgstr "Listă multi-nivel"
23
+
24
+ msgctxt "The ARIA label of the toolbar displaying buttons allowing users to change the multi-level list style."
25
+ msgid "Multi-level list styles toolbar"
26
+ msgstr "Bara de instrumente pentru stiluri de liste multi-nivel"
@@ -0,0 +1,26 @@
1
+ # Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # !!! IMPORTANT !!!
4
+ #
5
+ # Before you edit this file, please keep in mind that contributing to the project
6
+ # translations is possible ONLY via the Transifex online service.
7
+ #
8
+ # To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
9
+ #
10
+ # To learn more, check out the official contributor's guide:
11
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
12
+ #
13
+ msgid ""
14
+ msgstr ""
15
+ "Language-Team: Russian (https://app.transifex.com/ckeditor/teams/11143/ru/)\n"
16
+ "Language: ru\n"
17
+ "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+
20
+ msgctxt "Toolbar button tooltip for the Multi-level List feature."
21
+ msgid "Multi-level List"
22
+ msgstr "Многоуровневый список"
23
+
24
+ msgctxt "The ARIA label of the toolbar displaying buttons allowing users to change the multi-level list style."
25
+ msgid "Multi-level list styles toolbar"
26
+ msgstr "Панель стилей многоуровневого списка"
@@ -0,0 +1,26 @@
1
+ # Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # !!! IMPORTANT !!!
4
+ #
5
+ # Before you edit this file, please keep in mind that contributing to the project
6
+ # translations is possible ONLY via the Transifex online service.
7
+ #
8
+ # To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
9
+ #
10
+ # To learn more, check out the official contributor's guide:
11
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
12
+ #
13
+ msgid ""
14
+ msgstr ""
15
+ "Language-Team: Slovak (https://app.transifex.com/ckeditor/teams/11143/sk/)\n"
16
+ "Language: sk\n"
17
+ "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+
20
+ msgctxt "Toolbar button tooltip for the Multi-level List feature."
21
+ msgid "Multi-level List"
22
+ msgstr "Viacúrovňový zoznam"
23
+
24
+ msgctxt "The ARIA label of the toolbar displaying buttons allowing users to change the multi-level list style."
25
+ msgid "Multi-level list styles toolbar"
26
+ msgstr "Viacúrovňový panel s nástrojmi štýlov zoznamu"
@@ -0,0 +1,26 @@
1
+ # Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # !!! IMPORTANT !!!
4
+ #
5
+ # Before you edit this file, please keep in mind that contributing to the project
6
+ # translations is possible ONLY via the Transifex online service.
7
+ #
8
+ # To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
9
+ #
10
+ # To learn more, check out the official contributor's guide:
11
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
12
+ #
13
+ msgid ""
14
+ msgstr ""
15
+ "Language-Team: Serbian (https://app.transifex.com/ckeditor/teams/11143/sr/)\n"
16
+ "Language: sr\n"
17
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+
20
+ msgctxt "Toolbar button tooltip for the Multi-level List feature."
21
+ msgid "Multi-level List"
22
+ msgstr "Lista na više nivoa"
23
+
24
+ msgctxt "The ARIA label of the toolbar displaying buttons allowing users to change the multi-level list style."
25
+ msgid "Multi-level list styles toolbar"
26
+ msgstr "Traka sa alatkama stilova za liste na više nivoa"
@@ -0,0 +1,26 @@
1
+ # Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # !!! IMPORTANT !!!
4
+ #
5
+ # Before you edit this file, please keep in mind that contributing to the project
6
+ # translations is possible ONLY via the Transifex online service.
7
+ #
8
+ # To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
9
+ #
10
+ # To learn more, check out the official contributor's guide:
11
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
12
+ #
13
+ msgid ""
14
+ msgstr ""
15
+ "Language-Team: Swedish (https://app.transifex.com/ckeditor/teams/11143/sv/)\n"
16
+ "Language: sv\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+
20
+ msgctxt "Toolbar button tooltip for the Multi-level List feature."
21
+ msgid "Multi-level List"
22
+ msgstr "Flernivålista"
23
+
24
+ msgctxt "The ARIA label of the toolbar displaying buttons allowing users to change the multi-level list style."
25
+ msgid "Multi-level list styles toolbar"
26
+ msgstr "Verktygsfält för flernivåliststilar"
@@ -0,0 +1,26 @@
1
+ # Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # !!! IMPORTANT !!!
4
+ #
5
+ # Before you edit this file, please keep in mind that contributing to the project
6
+ # translations is possible ONLY via the Transifex online service.
7
+ #
8
+ # To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
9
+ #
10
+ # To learn more, check out the official contributor's guide:
11
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
12
+ #
13
+ msgid ""
14
+ msgstr ""
15
+ "Language-Team: Thai (https://app.transifex.com/ckeditor/teams/11143/th/)\n"
16
+ "Language: th\n"
17
+ "Plural-Forms: nplurals=1; plural=0;\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+
20
+ msgctxt "Toolbar button tooltip for the Multi-level List feature."
21
+ msgid "Multi-level List"
22
+ msgstr "รายการหลายระดับ"
23
+
24
+ msgctxt "The ARIA label of the toolbar displaying buttons allowing users to change the multi-level list style."
25
+ msgid "Multi-level list styles toolbar"
26
+ msgstr "แถบเครื่องมือสไตล์รายการหลายระดับ"
@@ -0,0 +1,26 @@
1
+ # Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # !!! IMPORTANT !!!
4
+ #
5
+ # Before you edit this file, please keep in mind that contributing to the project
6
+ # translations is possible ONLY via the Transifex online service.
7
+ #
8
+ # To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
9
+ #
10
+ # To learn more, check out the official contributor's guide:
11
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
12
+ #
13
+ msgid ""
14
+ msgstr ""
15
+ "Language-Team: Turkish (https://app.transifex.com/ckeditor/teams/11143/tr/)\n"
16
+ "Language: tr\n"
17
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+
20
+ msgctxt "Toolbar button tooltip for the Multi-level List feature."
21
+ msgid "Multi-level List"
22
+ msgstr "Çok Seviyeli Liste"
23
+
24
+ msgctxt "The ARIA label of the toolbar displaying buttons allowing users to change the multi-level list style."
25
+ msgid "Multi-level list styles toolbar"
26
+ msgstr "Çok seviyeli liste stilleri araç çubuğu"
@@ -0,0 +1,26 @@
1
+ # Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # !!! IMPORTANT !!!
4
+ #
5
+ # Before you edit this file, please keep in mind that contributing to the project
6
+ # translations is possible ONLY via the Transifex online service.
7
+ #
8
+ # To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
9
+ #
10
+ # To learn more, check out the official contributor's guide:
11
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
12
+ #
13
+ msgid ""
14
+ msgstr ""
15
+ "Language-Team: Ukrainian (https://app.transifex.com/ckeditor/teams/11143/uk/)\n"
16
+ "Language: uk\n"
17
+ "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+
20
+ msgctxt "Toolbar button tooltip for the Multi-level List feature."
21
+ msgid "Multi-level List"
22
+ msgstr "Багаторівневий список"
23
+
24
+ msgctxt "The ARIA label of the toolbar displaying buttons allowing users to change the multi-level list style."
25
+ msgid "Multi-level list styles toolbar"
26
+ msgstr "Панель інструментів стилів багаторівневого списку"
@@ -0,0 +1,26 @@
1
+ # Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # !!! IMPORTANT !!!
4
+ #
5
+ # Before you edit this file, please keep in mind that contributing to the project
6
+ # translations is possible ONLY via the Transifex online service.
7
+ #
8
+ # To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
9
+ #
10
+ # To learn more, check out the official contributor's guide:
11
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
12
+ #
13
+ msgid ""
14
+ msgstr ""
15
+ "Language-Team: Vietnamese (https://app.transifex.com/ckeditor/teams/11143/vi/)\n"
16
+ "Language: vi\n"
17
+ "Plural-Forms: nplurals=1; plural=0;\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+
20
+ msgctxt "Toolbar button tooltip for the Multi-level List feature."
21
+ msgid "Multi-level List"
22
+ msgstr "Danh sách Đa cấp độ"
23
+
24
+ msgctxt "The ARIA label of the toolbar displaying buttons allowing users to change the multi-level list style."
25
+ msgid "Multi-level list styles toolbar"
26
+ msgstr "Thanh công cụ kiểu danh sách đa cấp độ"
@@ -0,0 +1,26 @@
1
+ # Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # !!! IMPORTANT !!!
4
+ #
5
+ # Before you edit this file, please keep in mind that contributing to the project
6
+ # translations is possible ONLY via the Transifex online service.
7
+ #
8
+ # To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
9
+ #
10
+ # To learn more, check out the official contributor's guide:
11
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
12
+ #
13
+ msgid ""
14
+ msgstr ""
15
+ "Language-Team: Chinese (China) (https://app.transifex.com/ckeditor/teams/11143/zh_CN/)\n"
16
+ "Language: zh_CN\n"
17
+ "Plural-Forms: nplurals=1; plural=0;\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+
20
+ msgctxt "Toolbar button tooltip for the Multi-level List feature."
21
+ msgid "Multi-level List"
22
+ msgstr "多级列表"
23
+
24
+ msgctxt "The ARIA label of the toolbar displaying buttons allowing users to change the multi-level list style."
25
+ msgid "Multi-level list styles toolbar"
26
+ msgstr "多级列表样式工具栏"
@@ -0,0 +1,26 @@
1
+ # Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ #
3
+ # !!! IMPORTANT !!!
4
+ #
5
+ # Before you edit this file, please keep in mind that contributing to the project
6
+ # translations is possible ONLY via the Transifex online service.
7
+ #
8
+ # To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
9
+ #
10
+ # To learn more, check out the official contributor's guide:
11
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
12
+ #
13
+ msgid ""
14
+ msgstr ""
15
+ "Language-Team: Chinese (Taiwan) (https://app.transifex.com/ckeditor/teams/11143/zh_TW/)\n"
16
+ "Language: zh_TW\n"
17
+ "Plural-Forms: nplurals=1; plural=0;\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+
20
+ msgctxt "Toolbar button tooltip for the Multi-level List feature."
21
+ msgid "Multi-level List"
22
+ msgstr "多層次清單"
23
+
24
+ msgctxt "The ARIA label of the toolbar displaying buttons allowing users to change the multi-level list style."
25
+ msgid "Multi-level list styles toolbar"
26
+ msgstr "多層次清單樣式工具列"
package/package.json CHANGED
@@ -1,14 +1,44 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-list-multi-level",
3
- "version": "0.0.1",
3
+ "version": "41.3.1",
4
+ "description": "Multi-level list feature for CKEditor 5.",
4
5
  "keywords": [
5
6
  "ckeditor",
6
7
  "ckeditor5",
7
8
  "ckeditor 5",
8
- "ckeditor5-lib"
9
+ "ckeditor5-feature",
10
+ "ckeditor5-plugin",
11
+ "WYSIWYG",
12
+ "text",
13
+ "rich-text",
14
+ "richtext",
15
+ "ckeditor",
16
+ "editor",
17
+ "editing",
18
+ "html",
19
+ "contentEditable",
20
+ "multi-level list",
21
+ "legal-style numbering"
9
22
  ],
23
+ "type": "module",
24
+ "main": "src/index.js",
25
+ "dependencies": {
26
+ "ckeditor5": "41.3.1",
27
+ "@ckeditor/ckeditor5-ui": "41.3.1"
28
+ },
29
+ "license": "SEE LICENSE IN LICENSE.md",
10
30
  "author": "CKSource (http://cksource.com/)",
11
- "license": "GPL-2.0-or-later",
12
31
  "homepage": "https://ckeditor.com/ckeditor-5",
13
- "bugs": "https://github.com/ckeditor/ckeditor5/issues"
32
+ "bugs": "https://support.ckeditor.com/hc/en-us/requests/new",
33
+ "files": [
34
+ "lang",
35
+ "src/**/*.js",
36
+ "src/**/*.d.ts",
37
+ "theme",
38
+ "build",
39
+ "ckeditor5-metadata.json",
40
+ "CHANGELOG.md"
41
+ ],
42
+ "types": "src/index.d.ts",
43
+ "obfuscated": true
14
44
  }
@@ -0,0 +1,14 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ import type { MultiLevelList, MultiLevelListEditing, MultiLevelListUI } from './index.js';
6
+ declare module '@ckeditor/ckeditor5-core' {
7
+ interface EditorConfig {
8
+ }
9
+ interface PluginsMap {
10
+ [MultiLevelList.pluginName]: MultiLevelList;
11
+ [MultiLevelListEditing.pluginName]: MultiLevelListEditing;
12
+ [MultiLevelListUI.pluginName]: MultiLevelListUI;
13
+ }
14
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export{};
package/src/index.d.ts ADDED
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module list-multi-level
7
+ */
8
+ export { default as MultiLevelList, type MultiLevelListConfig } from './multilevellist.js';
9
+ export { default as MultiLevelListEditing } from './multilevellistediting.js';
10
+ export { default as MultiLevelListUI } from './multilevellistui.js';
11
+ import './augmentation.js';
package/src/index.js ADDED
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ function _0x2a37(){var _0x4e13df=['4037LkDqPL','5Jbsncp','56870wiZQBv','130689qyifVp','4247154ByOxuu','2BwCude','1757uXPBCv','15896WjxCPv','239348xiySrm','2147049CWTzIK','4053324tExujE'];_0x2a37=function(){return _0x4e13df;};return _0x2a37();}(function(_0x4381ad,_0x20e62b){var _0x1288ed=_0x4275,_0x37ebb8=_0x4381ad();while(!![]){try{var _0x3bc927=parseInt(_0x1288ed(0x11a))/0x1+-parseInt(_0x1288ed(0x11c))/0x2*(-parseInt(_0x1288ed(0x120))/0x3)+parseInt(_0x1288ed(0x11f))/0x4+parseInt(_0x1288ed(0x123))/0x5*(parseInt(_0x1288ed(0x121))/0x6)+parseInt(_0x1288ed(0x11d))/0x7*(parseInt(_0x1288ed(0x11e))/0x8)+parseInt(_0x1288ed(0x11b))/0x9+-parseInt(_0x1288ed(0x124))/0xa*(parseInt(_0x1288ed(0x122))/0xb);if(_0x3bc927===_0x20e62b)break;else _0x37ebb8['push'](_0x37ebb8['shift']());}catch(_0x4ed04d){_0x37ebb8['push'](_0x37ebb8['shift']());}}}(_0x2a37,0x7197d));function _0x4275(_0x1fb72a,_0x1eaef9){var _0x2a3757=_0x2a37();return _0x4275=function(_0x427521,_0x569079){_0x427521=_0x427521-0x11a;var _0x364c81=_0x2a3757[_0x427521];return _0x364c81;},_0x4275(_0x1fb72a,_0x1eaef9);}export{default as MultiLevelList}from'./multilevellist.js';export{default as MultiLevelListEditing}from'./multilevellistediting.js';export{default as MultiLevelListUI}from'./multilevellistui.js';import'./augmentation.js';
@@ -0,0 +1,27 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module list-multi-level/multilevellist
7
+ * @publicApi
8
+ */
9
+ import { Plugin } from 'ckeditor5/src/core.js';
10
+ import MultiLevelListEditing from './multilevellistediting.js';
11
+ import MultiLevelListUI from './multilevellistui.js';
12
+ import '../theme/multilevellist.css';
13
+ /**
14
+ * The Multi-level List feature.
15
+ *
16
+ * For a detailed overview, check the {@glink features/lists/multi-level-lists Multi-level list} feature guide.
17
+ */
18
+ export default class MultiLevelList extends Plugin {
19
+ /**
20
+ * @inheritDoc
21
+ */
22
+ static get pluginName(): "MultiLevelList";
23
+ /**
24
+ * @inheritDoc
25
+ */
26
+ static get requires(): readonly [typeof MultiLevelListEditing, typeof MultiLevelListUI];
27
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ var _0xb41af3=_0x1398;function _0x1398(_0x44e1cf,_0x1a2b53){var _0x413c4e=_0x413c();return _0x1398=function(_0x139833,_0x5aced2){_0x139833=_0x139833-0x153;var _0x1c5979=_0x413c4e[_0x139833];return _0x1c5979;},_0x1398(_0x44e1cf,_0x1a2b53);}(function(_0x18bffb,_0x16a189){var _0xc3a08=_0x1398,_0x4110ab=_0x18bffb();while(!![]){try{var _0x348da7=parseInt(_0xc3a08(0x15f))/0x1*(parseInt(_0xc3a08(0x157))/0x2)+-parseInt(_0xc3a08(0x159))/0x3*(-parseInt(_0xc3a08(0x15d))/0x4)+parseInt(_0xc3a08(0x154))/0x5*(parseInt(_0xc3a08(0x15c))/0x6)+-parseInt(_0xc3a08(0x153))/0x7*(-parseInt(_0xc3a08(0x15e))/0x8)+-parseInt(_0xc3a08(0x158))/0x9+-parseInt(_0xc3a08(0x15b))/0xa+parseInt(_0xc3a08(0x15a))/0xb*(-parseInt(_0xc3a08(0x160))/0xc);if(_0x348da7===_0x16a189)break;else _0x4110ab['push'](_0x4110ab['shift']());}catch(_0x34563c){_0x4110ab['push'](_0x4110ab['shift']());}}}(_0x413c,0x53323));import{Plugin as _0x353729}from'ckeditor5/src/core.js';import _0x3773e5 from'./multilevellistediting.js';function _0x413c(){var _0x5ce171=['7056vIcjNp','114765itPIMg','pluginName','requires','7374GqYTJX','1519929tsGtXD','3DqQOOW','11XSHlgc','611110RgqaVW','18OScgoS','2589360QmafmV','2368SXeOly','127tPKKVs','10944636MXgZDS','MultiLevelList'];_0x413c=function(){return _0x5ce171;};return _0x413c();}import _0x1198e9 from'./multilevellistui.js';import'../theme/multilevellist.css';export default class r extends _0x353729{static get[_0xb41af3(0x155)](){var _0x4f2073=_0xb41af3;return _0x4f2073(0x161);}static get[_0xb41af3(0x156)](){return[_0x3773e5,_0x1198e9];}}
@@ -0,0 +1,49 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module list-multi-level/multilevellistcommand
7
+ * @publicApi
8
+ */
9
+ import { Command, type Editor } from 'ckeditor5/src/core.js';
10
+ import type { MultiLevelListDefinition } from './multilevellist.js';
11
+ /**
12
+ * The multi-level list command. It changes `listMarkerStyle` attribute of the selected list items, letting the user
13
+ * choose styles for the list item markers. It also changes `listType` attribute to `customNumbered` or `customBulleted`.
14
+ */
15
+ export default class MultiLevelListCommand extends Command {
16
+ /**
17
+ * If the first selected block is a list item, its `listMarkerStyle` value is set in this property.
18
+ *
19
+ * @observable
20
+ * @readonly
21
+ */
22
+ value: string | null;
23
+ /**
24
+ * The default type of the list marker style.
25
+ */
26
+ readonly defaultListMarkerStyle: string;
27
+ /**
28
+ * Creates an instance of the command.
29
+ *
30
+ * @param editor The editor instance.
31
+ * @param defaultListMarkerStyle The list marker style that will be used by default if the value was not specified
32
+ * during the command execution.
33
+ * @param listDefinitions The list of multi-level list definitions.
34
+ */
35
+ constructor(editor: Editor, defaultListMarkerStyle: string, listDefinitions: Array<MultiLevelListDefinition>);
36
+ /**
37
+ * @inheritDoc
38
+ */
39
+ refresh(): void;
40
+ /**
41
+ * Executes the command.
42
+ *
43
+ * @fires execute
44
+ * @param options.listMarkerStyle The multi-level list marker style. If not specified, the default style will be applied.
45
+ */
46
+ execute(options?: {
47
+ listMarkerStyle?: string;
48
+ }): void;
49
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ const _0x267bf1=_0x26ef;function _0x1eb4(){const _0x6a5136=['get','_listUtils','2008ejELEa','plugins','change','listType','_getListTypeFromListMarkerStyle','isListItemBlock','defaultListMarkerStyle','_getValue','getSelectedBlocks','isEnabled','1961686IShZfe','commands','value','selection','listMarkerStyle','1347135fEZBFw','List','editor','refresh','1004840ogBQWL','document','model','2888913JHNZuj','find','customBulletedList','getAttribute','5818482vEsiWr','18466wAzxFT','4047824USkZOC','execute','_listDefinitions','customNumberedList','ListUtils','_checkEnabled'];_0x1eb4=function(){return _0x6a5136;};return _0x1eb4();}(function(_0x4305e1,_0xce33e6){const _0x2d7600=_0x26ef,_0x32ad90=_0x4305e1();while(!![]){try{const _0x40349a=parseInt(_0x2d7600(0x1c4))/0x1+parseInt(_0x2d7600(0x1bb))/0x2+-parseInt(_0x2d7600(0x1c7))/0x3+-parseInt(_0x2d7600(0x1cd))/0x4+parseInt(_0x2d7600(0x1c0))/0x5+parseInt(_0x2d7600(0x1cb))/0x6+parseInt(_0x2d7600(0x1cc))/0x7*(-parseInt(_0x2d7600(0x1d5))/0x8);if(_0x40349a===_0xce33e6)break;else _0x32ad90['push'](_0x32ad90['shift']());}catch(_0x4f2626){_0x32ad90['push'](_0x32ad90['shift']());}}}(_0x1eb4,0x8f810));import{Command as _0x22cf6d}from'ckeditor5/src/core.js';import{first as _0xd7e48a}from'ckeditor5/src/utils.js';function _0x26ef(_0x366f55,_0x1762f0){const _0x1eb4a7=_0x1eb4();return _0x26ef=function(_0x26ef5d,_0x56a63b){_0x26ef5d=_0x26ef5d-0x1ba;let _0x2c3b90=_0x1eb4a7[_0x26ef5d];return _0x2c3b90;},_0x26ef(_0x366f55,_0x1762f0);}export default class c extends _0x22cf6d{constructor(_0x511c3c,_0x3a6eb0,_0x96c2){const _0xaf069a=_0x26ef;super(_0x511c3c),this[_0xaf069a(0x1db)]=_0x3a6eb0,this[_0xaf069a(0x1cf)]=_0x96c2,this[_0xaf069a(0x1d4)]=this[_0xaf069a(0x1c2)][_0xaf069a(0x1d6)][_0xaf069a(0x1d3)](_0xaf069a(0x1d1));}[_0x267bf1(0x1c3)](){const _0x1f41b6=_0x267bf1;this[_0x1f41b6(0x1bd)]=this[_0x1f41b6(0x1dc)](),this[_0x1f41b6(0x1ba)]=this[_0x1f41b6(0x1d2)]();}[_0x267bf1(0x1ce)](_0x5200f7={}){const _0x354abf=_0x267bf1,_0x2064ba=this[_0x354abf(0x1c2)][_0x354abf(0x1c6)],_0x5969c2=_0x5200f7[_0x354abf(0x1bf)]||this[_0x354abf(0x1db)];_0x2064ba[_0x354abf(0x1d7)](()=>{const _0x52f76b=_0x354abf,_0x1d183f=this[_0x52f76b(0x1d9)](_0x5969c2);if(!_0x1d183f)return;const _0x1352d8=_0x1d183f+_0x52f76b(0x1c1);this[_0x52f76b(0x1c2)][_0x52f76b(0x1ce)](_0x1352d8,{'additionalAttributes':{'listMarkerStyle':_0x5969c2}});});}[_0x267bf1(0x1dc)](){const _0xbb8da3=_0x267bf1,_0xb364c9=_0xd7e48a(this[_0xbb8da3(0x1c2)][_0xbb8da3(0x1c6)][_0xbb8da3(0x1c5)][_0xbb8da3(0x1be)][_0xbb8da3(0x1dd)]());return this[_0xbb8da3(0x1d4)][_0xbb8da3(0x1da)](_0xb364c9)?_0xb364c9[_0xbb8da3(0x1ca)](_0xbb8da3(0x1bf)):null;}[_0x267bf1(0x1d2)](){const _0x329a59=_0x267bf1,_0x1b859f=this[_0x329a59(0x1c2)],_0x2284fc=_0x1b859f[_0x329a59(0x1bc)][_0x329a59(0x1d3)](_0x329a59(0x1d0)),_0x266acd=_0x1b859f[_0x329a59(0x1bc)][_0x329a59(0x1d3)](_0x329a59(0x1c9));return _0x2284fc[_0x329a59(0x1ba)]||_0x266acd[_0x329a59(0x1ba)];}[_0x267bf1(0x1d9)](_0x10362b){const _0x172638=_0x267bf1,_0x5488a0=this[_0x172638(0x1cf)][_0x172638(0x1c8)](_0x46f871=>_0x46f871[_0x172638(0x1bf)]==_0x10362b);return _0x5488a0?_0x5488a0[_0x172638(0x1d8)]:null;}}
@@ -0,0 +1,27 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module list-multi-level/multilevellistediting
7
+ */
8
+ import { Plugin, type Editor } from 'ckeditor5/src/core.js';
9
+ export default class MultiLevelListEditing extends Plugin {
10
+ /**
11
+ * @inheritDoc
12
+ */
13
+ static get pluginName(): "MultiLevelListEditing";
14
+ /**
15
+ * @inheritDoc
16
+ */
17
+ static get requires(): readonly ["ListEditing"];
18
+ /**
19
+ * @inheritDoc
20
+ */
21
+ constructor(editor: Editor);
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ init(): void;
26
+ afterInit(): void;
27
+ }