@ckeditor/ckeditor5-list-multi-level 41.3.1 → 41.4.0-alpha.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 (102) hide show
  1. package/README.md +32 -0
  2. package/build/list-multi-level.js +1 -1
  3. package/dist/index-content.css +19 -0
  4. package/dist/index-editor.css +32 -0
  5. package/dist/index.css +106 -0
  6. package/dist/index.js +23 -0
  7. package/dist/translations/ar.d.ts +8 -0
  8. package/dist/translations/ar.js +23 -0
  9. package/dist/translations/bg.d.ts +8 -0
  10. package/dist/translations/bg.js +23 -0
  11. package/dist/translations/bn.d.ts +8 -0
  12. package/dist/translations/bn.js +23 -0
  13. package/dist/translations/ca.d.ts +8 -0
  14. package/dist/translations/ca.js +23 -0
  15. package/dist/translations/cs.d.ts +8 -0
  16. package/dist/translations/cs.js +23 -0
  17. package/dist/translations/da.d.ts +8 -0
  18. package/dist/translations/da.js +23 -0
  19. package/dist/translations/de.d.ts +8 -0
  20. package/dist/translations/de.js +23 -0
  21. package/dist/translations/el.d.ts +8 -0
  22. package/dist/translations/el.js +23 -0
  23. package/dist/translations/en.d.ts +8 -0
  24. package/dist/translations/en.js +23 -0
  25. package/dist/translations/es-co.d.ts +8 -0
  26. package/dist/translations/es-co.js +23 -0
  27. package/dist/translations/es.d.ts +8 -0
  28. package/dist/translations/es.js +23 -0
  29. package/dist/translations/et.d.ts +8 -0
  30. package/dist/translations/et.js +23 -0
  31. package/dist/translations/fi.d.ts +8 -0
  32. package/dist/translations/fi.js +23 -0
  33. package/dist/translations/fr.d.ts +8 -0
  34. package/dist/translations/fr.js +23 -0
  35. package/dist/translations/he.d.ts +8 -0
  36. package/dist/translations/he.js +23 -0
  37. package/dist/translations/hi.d.ts +8 -0
  38. package/dist/translations/hi.js +23 -0
  39. package/dist/translations/hr.d.ts +8 -0
  40. package/dist/translations/hr.js +23 -0
  41. package/dist/translations/hu.d.ts +8 -0
  42. package/dist/translations/hu.js +23 -0
  43. package/dist/translations/id.d.ts +8 -0
  44. package/dist/translations/id.js +23 -0
  45. package/dist/translations/it.d.ts +8 -0
  46. package/dist/translations/it.js +23 -0
  47. package/dist/translations/ja.d.ts +8 -0
  48. package/dist/translations/ja.js +23 -0
  49. package/dist/translations/ko.d.ts +8 -0
  50. package/dist/translations/ko.js +23 -0
  51. package/dist/translations/lt.d.ts +8 -0
  52. package/dist/translations/lt.js +23 -0
  53. package/dist/translations/lv.d.ts +8 -0
  54. package/dist/translations/lv.js +23 -0
  55. package/dist/translations/ms.d.ts +8 -0
  56. package/dist/translations/ms.js +23 -0
  57. package/dist/translations/nl.d.ts +8 -0
  58. package/dist/translations/nl.js +23 -0
  59. package/dist/translations/no.d.ts +8 -0
  60. package/dist/translations/no.js +23 -0
  61. package/dist/translations/pl.d.ts +8 -0
  62. package/dist/translations/pl.js +23 -0
  63. package/dist/translations/pt-br.d.ts +8 -0
  64. package/dist/translations/pt-br.js +23 -0
  65. package/dist/translations/pt.d.ts +8 -0
  66. package/dist/translations/pt.js +23 -0
  67. package/dist/translations/ro.d.ts +8 -0
  68. package/dist/translations/ro.js +23 -0
  69. package/dist/translations/ru.d.ts +8 -0
  70. package/dist/translations/ru.js +23 -0
  71. package/dist/translations/sk.d.ts +8 -0
  72. package/dist/translations/sk.js +23 -0
  73. package/dist/translations/sr.d.ts +8 -0
  74. package/dist/translations/sr.js +23 -0
  75. package/dist/translations/sv.d.ts +8 -0
  76. package/dist/translations/sv.js +23 -0
  77. package/dist/translations/th.d.ts +8 -0
  78. package/dist/translations/th.js +23 -0
  79. package/dist/translations/tr.d.ts +8 -0
  80. package/dist/translations/tr.js +23 -0
  81. package/dist/translations/uk.d.ts +8 -0
  82. package/dist/translations/uk.js +23 -0
  83. package/dist/translations/vi.d.ts +8 -0
  84. package/dist/translations/vi.js +23 -0
  85. package/dist/translations/zh-cn.d.ts +8 -0
  86. package/dist/translations/zh-cn.js +23 -0
  87. package/dist/translations/zh.d.ts +8 -0
  88. package/dist/translations/zh.js +23 -0
  89. package/dist/types/augmentation.d.ts +18 -0
  90. package/dist/types/index.d.ts +15 -0
  91. package/dist/types/multilevellist.d.ts +31 -0
  92. package/dist/types/multilevellistcommand.d.ts +53 -0
  93. package/dist/types/multilevellistediting.d.ts +31 -0
  94. package/dist/types/multilevellistui.d.ts +32 -0
  95. package/dist/types/ui/multilevellistview.d.ts +9 -0
  96. package/package.json +4 -3
  97. package/src/index.js +1 -1
  98. package/src/multilevellist.js +1 -1
  99. package/src/multilevellistcommand.js +1 -1
  100. package/src/multilevellistediting.js +1 -1
  101. package/src/multilevellistui.js +1 -1
  102. package/src/ui/multilevellistview.js +1 -1
@@ -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 default{'pt':{'dictionary':{'Multi-level\x20List':'Lista\x20multinível','Multi-level\x20list\x20styles\x20toolbar':'Barra\x20de\x20ferramentas\x20de\x20estilos\x20de\x20lista\x20multinível'},'getPluralForm':_0x2f78a1=>0x0==_0x2f78a1||0x1==_0x2f78a1?0x0:0x0!=_0x2f78a1&&_0x2f78a1%0xf4240==0x0?0x1:0x2}};
@@ -0,0 +1,8 @@
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
+ import type { Translations } from 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -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 default{'ro':{'dictionary':{'Multi-level\x20List':'Listă\x20multi-nivel','Multi-level\x20list\x20styles\x20toolbar':'Bara\x20de\x20instrumente\x20pentru\x20stiluri\x20de\x20liste\x20multi-nivel'},'getPluralForm':_0x162fde=>0x1==_0x162fde?0x0:_0x162fde%0x64>0x13||_0x162fde%0x64==0x0&&0x0!=_0x162fde?0x2:0x1}};
@@ -0,0 +1,8 @@
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
+ import type { Translations } from 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -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 default{'ru':{'dictionary':{'Multi-level\x20List':'Многоуровневый\x20список','Multi-level\x20list\x20styles\x20toolbar':'Панель\x20стилей\x20многоуровневого\x20списка'},'getPluralForm':_0x33e861=>_0x33e861%0xa==0x1&&_0x33e861%0x64!=0xb?0x0:_0x33e861%0xa>=0x2&&_0x33e861%0xa<=0x4&&(_0x33e861%0x64<0xc||_0x33e861%0x64>0xe)?0x1:_0x33e861%0xa==0x0||_0x33e861%0xa>=0x5&&_0x33e861%0xa<=0x9||_0x33e861%0x64>=0xb&&_0x33e861%0x64<=0xe?0x2:0x3}};
@@ -0,0 +1,8 @@
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
+ import type { Translations } from 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -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 default{'sk':{'dictionary':{'Multi-level\x20List':'Viacúrovňový\x20zoznam','Multi-level\x20list\x20styles\x20toolbar':'Viacúrovňový\x20panel\x20s\x20nástrojmi\x20štýlov\x20zoznamu'},'getPluralForm':_0x252da1=>_0x252da1%0x1==0x0&&0x1==_0x252da1?0x0:_0x252da1%0x1==0x0&&_0x252da1>=0x2&&_0x252da1<=0x4?0x1:_0x252da1%0x1!=0x0?0x2:0x3}};
@@ -0,0 +1,8 @@
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
+ import type { Translations } from 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -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 default{'sr':{'dictionary':{'Multi-level\x20List':'Lista\x20na\x20više\x20nivoa','Multi-level\x20list\x20styles\x20toolbar':'Traka\x20sa\x20alatkama\x20stilova\x20za\x20liste\x20na\x20više\x20nivoa'},'getPluralForm':_0x65ff6a=>_0x65ff6a%0xa==0x1&&_0x65ff6a%0x64!=0xb?0x0:_0x65ff6a%0xa>=0x2&&_0x65ff6a%0xa<=0x4&&(_0x65ff6a%0x64<0xa||_0x65ff6a%0x64>=0x14)?0x1:0x2}};
@@ -0,0 +1,8 @@
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
+ import type { Translations } from 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -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 default{'sv':{'dictionary':{'Multi-level\x20List':'Flernivålista','Multi-level\x20list\x20styles\x20toolbar':'Verktygsfält\x20för\x20flernivåliststilar'},'getPluralForm':_0x3bb7c5=>0x1!=_0x3bb7c5}};
@@ -0,0 +1,8 @@
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
+ import type { Translations } from 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -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 default{'th':{'dictionary':{'Multi-level\x20List':'รายการหลายระดับ','Multi-level\x20list\x20styles\x20toolbar':'แถบเครื่องมือสไตล์รายการหลายระดับ'},'getPluralForm':_0x45b1b7=>0x0}};
@@ -0,0 +1,8 @@
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
+ import type { Translations } from 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -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 default{'tr':{'dictionary':{'Multi-level\x20List':'Çok\x20Seviyeli\x20Liste','Multi-level\x20list\x20styles\x20toolbar':'Çok\x20seviyeli\x20liste\x20stilleri\x20araç\x20çubuğu'},'getPluralForm':_0x54221d=>_0x54221d>0x1}};
@@ -0,0 +1,8 @@
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
+ import type { Translations } from 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -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 default{'uk':{'dictionary':{'Multi-level\x20List':'Багаторівневий\x20список','Multi-level\x20list\x20styles\x20toolbar':'Панель\x20інструментів\x20стилів\x20багаторівневого\x20списку'},'getPluralForm':_0x31a191=>_0x31a191%0x1==0x0&&_0x31a191%0xa==0x1&&_0x31a191%0x64!=0xb?0x0:_0x31a191%0x1==0x0&&_0x31a191%0xa>=0x2&&_0x31a191%0xa<=0x4&&(_0x31a191%0x64<0xc||_0x31a191%0x64>0xe)?0x1:_0x31a191%0x1==0x0&&(_0x31a191%0xa==0x0||_0x31a191%0xa>=0x5&&_0x31a191%0xa<=0x9||_0x31a191%0x64>=0xb&&_0x31a191%0x64<=0xe)?0x2:0x3}};
@@ -0,0 +1,8 @@
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
+ import type { Translations } from 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -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 default{'vi':{'dictionary':{'Multi-level\x20List':'Danh\x20sách\x20Đa\x20cấp\x20độ','Multi-level\x20list\x20styles\x20toolbar':'Thanh\x20công\x20cụ\x20kiểu\x20danh\x20sách\x20đa\x20cấp\x20độ'},'getPluralForm':_0x124513=>0x0}};
@@ -0,0 +1,8 @@
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
+ import type { Translations } from 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -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 default{'zh-cn':{'dictionary':{'Multi-level\x20List':'多级列表','Multi-level\x20list\x20styles\x20toolbar':'多级列表样式工具栏'},'getPluralForm':_0xa5a521=>0x0}};
@@ -0,0 +1,8 @@
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
+ import type { Translations } from 'ckeditor5';
7
+ declare const translations: Translations;
8
+ export default translations;
@@ -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 default{'zh':{'dictionary':{'Multi-level\x20List':'多層次清單','Multi-level\x20list\x20styles\x20toolbar':'多層次清單樣式工具列'},'getPluralForm':_0xd14e9=>0x0}};
@@ -0,0 +1,18 @@
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
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
7
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
8
+ */
9
+ import type { MultiLevelList, MultiLevelListEditing, MultiLevelListUI } from './index.js';
10
+ declare module '@ckeditor/ckeditor5-core' {
11
+ interface EditorConfig {
12
+ }
13
+ interface PluginsMap {
14
+ [MultiLevelList.pluginName]: MultiLevelList;
15
+ [MultiLevelListEditing.pluginName]: MultiLevelListEditing;
16
+ [MultiLevelListUI.pluginName]: MultiLevelListUI;
17
+ }
18
+ }
@@ -0,0 +1,15 @@
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
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
7
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
8
+ */
9
+ /**
10
+ * @module list-multi-level
11
+ */
12
+ export { default as MultiLevelList, type MultiLevelListConfig } from './multilevellist.js';
13
+ export { default as MultiLevelListEditing } from './multilevellistediting.js';
14
+ export { default as MultiLevelListUI } from './multilevellistui.js';
15
+ import './augmentation.js';
@@ -0,0 +1,31 @@
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
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
7
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
8
+ */
9
+ /**
10
+ * @module list-multi-level/multilevellist
11
+ * @publicApi
12
+ */
13
+ import { Plugin } from 'ckeditor5/src/core.js';
14
+ import MultiLevelListEditing from './multilevellistediting.js';
15
+ import MultiLevelListUI from './multilevellistui.js';
16
+ import '../theme/multilevellist.css';
17
+ /**
18
+ * The Multi-level List feature.
19
+ *
20
+ * For a detailed overview, check the {@glink features/lists/multi-level-lists Multi-level list} feature guide.
21
+ */
22
+ export default class MultiLevelList extends Plugin {
23
+ /**
24
+ * @inheritDoc
25
+ */
26
+ static get pluginName(): "MultiLevelList";
27
+ /**
28
+ * @inheritDoc
29
+ */
30
+ static get requires(): readonly [typeof MultiLevelListEditing, typeof MultiLevelListUI];
31
+ }
@@ -0,0 +1,53 @@
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
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
7
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
8
+ */
9
+ /**
10
+ * @module list-multi-level/multilevellistcommand
11
+ * @publicApi
12
+ */
13
+ import { Command, type Editor } from 'ckeditor5/src/core.js';
14
+ import type { MultiLevelListDefinition } from './multilevellist.js';
15
+ /**
16
+ * The multi-level list command. It changes `listMarkerStyle` attribute of the selected list items, letting the user
17
+ * choose styles for the list item markers. It also changes `listType` attribute to `customNumbered` or `customBulleted`.
18
+ */
19
+ export default class MultiLevelListCommand extends Command {
20
+ /**
21
+ * If the first selected block is a list item, its `listMarkerStyle` value is set in this property.
22
+ *
23
+ * @observable
24
+ * @readonly
25
+ */
26
+ value: string | null;
27
+ /**
28
+ * The default type of the list marker style.
29
+ */
30
+ readonly defaultListMarkerStyle: string;
31
+ /**
32
+ * Creates an instance of the command.
33
+ *
34
+ * @param editor The editor instance.
35
+ * @param defaultListMarkerStyle The list marker style that will be used by default if the value was not specified
36
+ * during the command execution.
37
+ * @param listDefinitions The list of multi-level list definitions.
38
+ */
39
+ constructor(editor: Editor, defaultListMarkerStyle: string, listDefinitions: Array<MultiLevelListDefinition>);
40
+ /**
41
+ * @inheritDoc
42
+ */
43
+ refresh(): void;
44
+ /**
45
+ * Executes the command.
46
+ *
47
+ * @fires execute
48
+ * @param options.listMarkerStyle The multi-level list marker style. If not specified, the default style will be applied.
49
+ */
50
+ execute(options?: {
51
+ listMarkerStyle?: string;
52
+ }): void;
53
+ }
@@ -0,0 +1,31 @@
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
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
7
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
8
+ */
9
+ /**
10
+ * @module list-multi-level/multilevellistediting
11
+ */
12
+ import { Plugin, type Editor } from 'ckeditor5/src/core.js';
13
+ export default class MultiLevelListEditing extends Plugin {
14
+ /**
15
+ * @inheritDoc
16
+ */
17
+ static get pluginName(): "MultiLevelListEditing";
18
+ /**
19
+ * @inheritDoc
20
+ */
21
+ static get requires(): readonly ["ListEditing"];
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ constructor(editor: Editor);
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ init(): void;
30
+ afterInit(): void;
31
+ }
@@ -0,0 +1,32 @@
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
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
7
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
8
+ */
9
+ /**
10
+ * @module list-multi-level/multilevellistui
11
+ */
12
+ import { Plugin, type Editor } from 'ckeditor5/src/core.js';
13
+ /**
14
+ * The multi-level list UI plugin. It introduces the `multiLevelList` toolbar button that allows users
15
+ * to apply user-defined list markers. The default style is `legal` numbering.
16
+ */
17
+ export default class MultiLevelListUI extends Plugin {
18
+ licenseKey: string;
19
+ /**
20
+ * @inheritDoc
21
+ */
22
+ static get pluginName(): "MultiLevelListUI";
23
+ /**
24
+ * @inheritDoc
25
+ */
26
+ constructor(editor: Editor);
27
+ init(): void;
28
+ /**
29
+ * @inheritDoc
30
+ */
31
+ destroy(): void;
32
+ }
@@ -0,0 +1,9 @@
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
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
7
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
8
+ */
9
+ import '../../theme/multilevellistview.css';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-list-multi-level",
3
- "version": "41.3.1",
3
+ "version": "41.4.0-alpha.0",
4
4
  "description": "Multi-level list feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -23,14 +23,15 @@
23
23
  "type": "module",
24
24
  "main": "src/index.js",
25
25
  "dependencies": {
26
- "ckeditor5": "41.3.1",
27
- "@ckeditor/ckeditor5-ui": "41.3.1"
26
+ "ckeditor5": "41.4.0-alpha.0",
27
+ "@ckeditor/ckeditor5-ui": "41.4.0-alpha.0"
28
28
  },
29
29
  "license": "SEE LICENSE IN LICENSE.md",
30
30
  "author": "CKSource (http://cksource.com/)",
31
31
  "homepage": "https://ckeditor.com/ckeditor-5",
32
32
  "bugs": "https://support.ckeditor.com/hc/en-us/requests/new",
33
33
  "files": [
34
+ "dist",
34
35
  "lang",
35
36
  "src/**/*.js",
36
37
  "src/**/*.d.ts",