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

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.0",
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.0",
27
+ "@ckeditor/ckeditor5-ui": "41.3.0"
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 _0x398f(_0x12acc1,_0x634335){var _0x22d621=_0x22d6();return _0x398f=function(_0x398f92,_0x3dd304){_0x398f92=_0x398f92-0x7c;var _0x212056=_0x22d621[_0x398f92];return _0x212056;},_0x398f(_0x12acc1,_0x634335);}function _0x22d6(){var _0x170471=['1696NdBnPJ','25PzCpAo','465831ekVCPf','11bfFaRc','9780912xHyGVR','135312JZrQNM','7ifFdIJ','852068EyGGTS','4755MBhRzJ','19620830yHVcLw','4958944ODXYuL'];_0x22d6=function(){return _0x170471;};return _0x22d6();}(function(_0x4ca9af,_0x3be66f){var _0xc3e61a=_0x398f,_0x71d67f=_0x4ca9af();while(!![]){try{var _0x12e7c9=-parseInt(_0xc3e61a(0x7c))/0x1+parseInt(_0xc3e61a(0x85))/0x2*(-parseInt(_0xc3e61a(0x82))/0x3)+-parseInt(_0xc3e61a(0x81))/0x4*(-parseInt(_0xc3e61a(0x86))/0x5)+parseInt(_0xc3e61a(0x7f))/0x6*(parseInt(_0xc3e61a(0x80))/0x7)+parseInt(_0xc3e61a(0x84))/0x8+-parseInt(_0xc3e61a(0x7e))/0x9+-parseInt(_0xc3e61a(0x83))/0xa*(-parseInt(_0xc3e61a(0x7d))/0xb);if(_0x12e7c9===_0x3be66f)break;else _0x71d67f['push'](_0x71d67f['shift']());}catch(_0x325092){_0x71d67f['push'](_0x71d67f['shift']());}}}(_0x22d6,0xbcb2d));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 _0x301c3b=_0x3750;(function(_0x140391,_0x34d557){var _0x26e48f=_0x3750,_0x5c9696=_0x140391();while(!![]){try{var _0x5c37fd=parseInt(_0x26e48f(0x1c9))/0x1*(parseInt(_0x26e48f(0x1cd))/0x2)+parseInt(_0x26e48f(0x1d0))/0x3+parseInt(_0x26e48f(0x1c8))/0x4+parseInt(_0x26e48f(0x1d3))/0x5+-parseInt(_0x26e48f(0x1cb))/0x6*(parseInt(_0x26e48f(0x1d4))/0x7)+-parseInt(_0x26e48f(0x1ce))/0x8+parseInt(_0x26e48f(0x1ca))/0x9*(-parseInt(_0x26e48f(0x1cc))/0xa);if(_0x5c37fd===_0x34d557)break;else _0x5c9696['push'](_0x5c9696['shift']());}catch(_0x963bae){_0x5c9696['push'](_0x5c9696['shift']());}}}(_0x1c99,0xb6f02));import{Plugin as _0x703201}from'ckeditor5/src/core.js';import _0x1f3906 from'./multilevellistediting.js';import _0x14cb77 from'./multilevellistui.js';import'../theme/multilevellist.css';function _0x3750(_0x55cd08,_0x12127d){var _0x1c9924=_0x1c99();return _0x3750=function(_0x375022,_0x4b1db1){_0x375022=_0x375022-0x1c8;var _0x61ce22=_0x1c9924[_0x375022];return _0x61ce22;},_0x3750(_0x55cd08,_0x12127d);}function _0x1c99(){var _0x1b2749=['7190488eyzdEh','requires','1637931ukFNzE','MultiLevelList','pluginName','7105145HOsIjJ','384671vYaeam','4992780lwBcms','1432191cSUOss','17101863aSgUgw','120CBILVA','10VGISJj','2fWZvJb'];_0x1c99=function(){return _0x1b2749;};return _0x1c99();}export default class r extends _0x703201{static get[_0x301c3b(0x1d2)](){var _0x4b8478=_0x301c3b;return _0x4b8478(0x1d1);}static get[_0x301c3b(0x1cf)](){return[_0x1f3906,_0x14cb77];}}
@@ -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
+ function _0x1bed(){const _0x4e5197=['getAttribute','listMarkerStyle','11ldDfeB','29196inmoix','selection','value','5mVtVHV','isListItemBlock','model','_listDefinitions','plugins','1940127JvmvRD','customBulletedList','customNumberedList','_checkEnabled','execute','52710324zPWIQN','8WFARva','commands','refresh','document','196796hdpadf','getSelectedBlocks','_listUtils','_getListTypeFromListMarkerStyle','8qAsmFY','get','editor','listType','18HVlgLy','12831731qcJwTh','ListUtils','3784542JEIMUY','defaultListMarkerStyle','List','_getValue','find','isEnabled','change','3151490EmOctg'];_0x1bed=function(){return _0x4e5197;};return _0x1bed();}const _0x77e96c=_0x5d55;(function(_0x13dff1,_0x2aa2a5){const _0x195b24=_0x5d55,_0x3ac77c=_0x13dff1();while(!![]){try{const _0x1e28c1=-parseInt(_0x195b24(0xa2))/0x1*(parseInt(_0x195b24(0xb5))/0x2)+-parseInt(_0x195b24(0xa3))/0x3*(parseInt(_0x195b24(0xb9))/0x4)+parseInt(_0x195b24(0xa6))/0x5*(-parseInt(_0x195b24(0xc0))/0x6)+parseInt(_0x195b24(0xab))/0x7*(-parseInt(_0x195b24(0xb1))/0x8)+-parseInt(_0x195b24(0xbd))/0x9*(parseInt(_0x195b24(0x9f))/0xa)+-parseInt(_0x195b24(0xbe))/0xb+parseInt(_0x195b24(0xb0))/0xc;if(_0x1e28c1===_0x2aa2a5)break;else _0x3ac77c['push'](_0x3ac77c['shift']());}catch(_0x2c3224){_0x3ac77c['push'](_0x3ac77c['shift']());}}}(_0x1bed,0x8f0dc));import{Command as _0x4f6a36}from'ckeditor5/src/core.js';import{first as _0xf44220}from'ckeditor5/src/utils.js';function _0x5d55(_0x28aa33,_0x1b1283){const _0x1bedcd=_0x1bed();return _0x5d55=function(_0x5d55b8,_0x432682){_0x5d55b8=_0x5d55b8-0x9f;let _0x706428=_0x1bedcd[_0x5d55b8];return _0x706428;},_0x5d55(_0x28aa33,_0x1b1283);}export default class c extends _0x4f6a36{constructor(_0x576c2a,_0x1609d5,_0x37564a){const _0x2ac807=_0x5d55;super(_0x576c2a),this[_0x2ac807(0xc1)]=_0x1609d5,this[_0x2ac807(0xa9)]=_0x37564a,this[_0x2ac807(0xb7)]=this[_0x2ac807(0xbb)][_0x2ac807(0xaa)][_0x2ac807(0xba)](_0x2ac807(0xbf));}[_0x77e96c(0xb3)](){const _0x9cccec=_0x77e96c;this[_0x9cccec(0xa5)]=this[_0x9cccec(0xc3)](),this[_0x9cccec(0xc5)]=this[_0x9cccec(0xae)]();}[_0x77e96c(0xaf)](_0x392dbe={}){const _0x1a49d2=_0x77e96c,_0x21ce69=this[_0x1a49d2(0xbb)][_0x1a49d2(0xa8)],_0x3b8414=_0x392dbe[_0x1a49d2(0xa1)]||this[_0x1a49d2(0xc1)];_0x21ce69[_0x1a49d2(0xc6)](()=>{const _0x45ff74=_0x1a49d2,_0x3bf87a=this[_0x45ff74(0xb8)](_0x3b8414);if(!_0x3bf87a)return;const _0x3c74ef=_0x3bf87a+_0x45ff74(0xc2);this[_0x45ff74(0xbb)][_0x45ff74(0xaf)](_0x3c74ef,{'additionalAttributes':{'listMarkerStyle':_0x3b8414}});});}[_0x77e96c(0xc3)](){const _0x2f0216=_0x77e96c,_0x3c0e2e=_0xf44220(this[_0x2f0216(0xbb)][_0x2f0216(0xa8)][_0x2f0216(0xb4)][_0x2f0216(0xa4)][_0x2f0216(0xb6)]());return this[_0x2f0216(0xb7)][_0x2f0216(0xa7)](_0x3c0e2e)?_0x3c0e2e[_0x2f0216(0xa0)](_0x2f0216(0xa1)):null;}[_0x77e96c(0xae)](){const _0x162aa5=_0x77e96c,_0xcc4361=this[_0x162aa5(0xbb)],_0x48071c=_0xcc4361[_0x162aa5(0xb2)][_0x162aa5(0xba)](_0x162aa5(0xad)),_0x1989fc=_0xcc4361[_0x162aa5(0xb2)][_0x162aa5(0xba)](_0x162aa5(0xac));return _0x48071c[_0x162aa5(0xc5)]||_0x1989fc[_0x162aa5(0xc5)];}[_0x77e96c(0xb8)](_0x475b10){const _0x2c1569=_0x77e96c,_0x41915d=this[_0x2c1569(0xa9)][_0x2c1569(0xc4)](_0x397250=>_0x397250[_0x2c1569(0xa1)]==_0x475b10);return _0x41915d?_0x41915d[_0x2c1569(0xbc)]: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
+ }