@ckeditor/ckeditor5-ui 41.3.0-alpha.4 → 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 (324) hide show
  1. package/ckeditor5-metadata.json +1 -1
  2. package/lang/contexts.json +12 -2
  3. package/lang/translations/af.po +210 -0
  4. package/lang/translations/ar.po +44 -4
  5. package/lang/translations/ast.po +44 -4
  6. package/lang/translations/az.po +44 -4
  7. package/lang/translations/bg.po +44 -4
  8. package/lang/translations/bn.po +44 -4
  9. package/lang/translations/bs.po +210 -0
  10. package/lang/translations/ca.po +44 -4
  11. package/lang/translations/cs.po +44 -4
  12. package/lang/translations/da.po +44 -4
  13. package/lang/translations/de-ch.po +44 -4
  14. package/lang/translations/de.po +44 -4
  15. package/lang/translations/el.po +44 -4
  16. package/lang/translations/en-au.po +44 -4
  17. package/lang/translations/en-gb.po +44 -4
  18. package/lang/translations/en.po +44 -4
  19. package/lang/translations/eo.po +44 -4
  20. package/lang/translations/es-co.po +210 -0
  21. package/lang/translations/es.po +44 -4
  22. package/lang/translations/et.po +44 -4
  23. package/lang/translations/eu.po +44 -4
  24. package/lang/translations/fa.po +44 -4
  25. package/lang/translations/fi.po +44 -4
  26. package/lang/translations/fr.po +44 -4
  27. package/lang/translations/gl.po +44 -4
  28. package/lang/translations/he.po +44 -4
  29. package/lang/translations/hi.po +44 -4
  30. package/lang/translations/hr.po +44 -4
  31. package/lang/translations/hu.po +44 -4
  32. package/lang/translations/id.po +44 -4
  33. package/lang/translations/it.po +44 -4
  34. package/lang/translations/ja.po +44 -4
  35. package/lang/translations/jv.po +210 -0
  36. package/lang/translations/km.po +44 -4
  37. package/lang/translations/kn.po +44 -4
  38. package/lang/translations/ko.po +44 -4
  39. package/lang/translations/ku.po +44 -4
  40. package/lang/translations/lt.po +44 -4
  41. package/lang/translations/lv.po +44 -4
  42. package/lang/translations/ms.po +44 -4
  43. package/lang/translations/nb.po +44 -4
  44. package/lang/translations/ne.po +44 -4
  45. package/lang/translations/nl.po +44 -4
  46. package/lang/translations/no.po +44 -4
  47. package/lang/translations/pl.po +44 -4
  48. package/lang/translations/pt-br.po +44 -4
  49. package/lang/translations/pt.po +44 -4
  50. package/lang/translations/ro.po +44 -4
  51. package/lang/translations/ru.po +44 -4
  52. package/lang/translations/sk.po +44 -4
  53. package/lang/translations/sl.po +44 -4
  54. package/lang/translations/sq.po +44 -4
  55. package/lang/translations/sr-latn.po +44 -4
  56. package/lang/translations/sr.po +44 -4
  57. package/lang/translations/sv.po +44 -4
  58. package/lang/translations/th.po +44 -4
  59. package/lang/translations/tk.po +44 -4
  60. package/lang/translations/tr.po +44 -4
  61. package/lang/translations/tt.po +44 -4
  62. package/lang/translations/ug.po +44 -4
  63. package/lang/translations/uk.po +44 -4
  64. package/lang/translations/ur.po +44 -4
  65. package/lang/translations/uz.po +44 -4
  66. package/lang/translations/vi.po +44 -4
  67. package/lang/translations/zh-cn.po +44 -4
  68. package/lang/translations/zh.po +44 -4
  69. package/package.json +3 -4
  70. package/src/button/button.d.ts +6 -0
  71. package/src/button/buttonview.d.ts +4 -0
  72. package/src/button/buttonview.js +1 -0
  73. package/src/button/filedialogbuttonview.d.ts +80 -0
  74. package/src/button/filedialogbuttonview.js +103 -0
  75. package/src/dropdown/utils.js +1 -5
  76. package/src/editorui/accessibilityhelp/accessibilityhelp.d.ts +4 -0
  77. package/src/editorui/accessibilityhelp/accessibilityhelp.js +25 -9
  78. package/src/index.d.ts +12 -3
  79. package/src/index.js +10 -2
  80. package/src/menubar/menubarmenubuttonview.d.ts +35 -0
  81. package/src/menubar/menubarmenubuttonview.js +64 -0
  82. package/src/menubar/menubarmenulistitembuttonview.d.ts +21 -0
  83. package/src/menubar/menubarmenulistitembuttonview.js +30 -0
  84. package/src/menubar/menubarmenulistitemfiledialogbuttonview.d.ts +23 -0
  85. package/src/menubar/menubarmenulistitemfiledialogbuttonview.js +32 -0
  86. package/src/menubar/menubarmenulistitemview.d.ts +25 -0
  87. package/src/menubar/menubarmenulistitemview.js +34 -0
  88. package/src/menubar/menubarmenulistview.d.ts +24 -0
  89. package/src/menubar/menubarmenulistview.js +23 -0
  90. package/src/menubar/menubarmenupanelview.d.ts +53 -0
  91. package/src/menubar/menubarmenupanelview.js +60 -0
  92. package/src/menubar/menubarmenuview.d.ts +109 -0
  93. package/src/menubar/menubarmenuview.js +159 -0
  94. package/src/menubar/menubarview.d.ts +164 -0
  95. package/src/menubar/menubarview.js +254 -0
  96. package/src/menubar/utils.d.ts +432 -0
  97. package/src/menubar/utils.js +1320 -0
  98. package/src/toolbar/toolbarview.js +5 -3
  99. package/src/tooltipmanager.d.ts +11 -0
  100. package/src/tooltipmanager.js +37 -6
  101. package/theme/components/menubar/menubar.css +10 -0
  102. package/theme/components/menubar/menubarmenu.css +9 -0
  103. package/theme/components/menubar/menubarmenubutton.css +11 -0
  104. package/theme/components/menubar/menubarmenulistitem.css +10 -0
  105. package/theme/components/menubar/menubarmenulistitembutton.css +10 -0
  106. package/theme/components/menubar/menubarmenupanel.css +62 -0
  107. package/theme/components/tooltip/tooltip.css +0 -3
  108. package/theme/globals/_reset.css +13 -0
  109. package/theme/globals/globals.css +1 -0
  110. package/dist/content-index.css +0 -4
  111. package/dist/editor-index.css +0 -445
  112. package/dist/index.css +0 -844
  113. package/dist/index.css.map +0 -1
  114. package/dist/translations/ar.d.ts +0 -8
  115. package/dist/translations/ar.js +0 -5
  116. package/dist/translations/ast.d.ts +0 -8
  117. package/dist/translations/ast.js +0 -5
  118. package/dist/translations/az.d.ts +0 -8
  119. package/dist/translations/az.js +0 -5
  120. package/dist/translations/bg.d.ts +0 -8
  121. package/dist/translations/bg.js +0 -5
  122. package/dist/translations/bn.d.ts +0 -8
  123. package/dist/translations/bn.js +0 -5
  124. package/dist/translations/ca.d.ts +0 -8
  125. package/dist/translations/ca.js +0 -5
  126. package/dist/translations/cs.d.ts +0 -8
  127. package/dist/translations/cs.js +0 -5
  128. package/dist/translations/da.d.ts +0 -8
  129. package/dist/translations/da.js +0 -5
  130. package/dist/translations/de-ch.d.ts +0 -8
  131. package/dist/translations/de-ch.js +0 -5
  132. package/dist/translations/de.d.ts +0 -8
  133. package/dist/translations/de.js +0 -5
  134. package/dist/translations/el.d.ts +0 -8
  135. package/dist/translations/el.js +0 -5
  136. package/dist/translations/en-au.d.ts +0 -8
  137. package/dist/translations/en-au.js +0 -5
  138. package/dist/translations/en-gb.d.ts +0 -8
  139. package/dist/translations/en-gb.js +0 -5
  140. package/dist/translations/en.d.ts +0 -8
  141. package/dist/translations/en.js +0 -5
  142. package/dist/translations/eo.d.ts +0 -8
  143. package/dist/translations/eo.js +0 -5
  144. package/dist/translations/es.d.ts +0 -8
  145. package/dist/translations/es.js +0 -5
  146. package/dist/translations/et.d.ts +0 -8
  147. package/dist/translations/et.js +0 -5
  148. package/dist/translations/eu.d.ts +0 -8
  149. package/dist/translations/eu.js +0 -5
  150. package/dist/translations/fa.d.ts +0 -8
  151. package/dist/translations/fa.js +0 -5
  152. package/dist/translations/fi.d.ts +0 -8
  153. package/dist/translations/fi.js +0 -5
  154. package/dist/translations/fr.d.ts +0 -8
  155. package/dist/translations/fr.js +0 -5
  156. package/dist/translations/gl.d.ts +0 -8
  157. package/dist/translations/gl.js +0 -5
  158. package/dist/translations/he.d.ts +0 -8
  159. package/dist/translations/he.js +0 -5
  160. package/dist/translations/hi.d.ts +0 -8
  161. package/dist/translations/hi.js +0 -5
  162. package/dist/translations/hr.d.ts +0 -8
  163. package/dist/translations/hr.js +0 -5
  164. package/dist/translations/hu.d.ts +0 -8
  165. package/dist/translations/hu.js +0 -5
  166. package/dist/translations/id.d.ts +0 -8
  167. package/dist/translations/id.js +0 -5
  168. package/dist/translations/it.d.ts +0 -8
  169. package/dist/translations/it.js +0 -5
  170. package/dist/translations/ja.d.ts +0 -8
  171. package/dist/translations/ja.js +0 -5
  172. package/dist/translations/km.d.ts +0 -8
  173. package/dist/translations/km.js +0 -5
  174. package/dist/translations/kn.d.ts +0 -8
  175. package/dist/translations/kn.js +0 -5
  176. package/dist/translations/ko.d.ts +0 -8
  177. package/dist/translations/ko.js +0 -5
  178. package/dist/translations/ku.d.ts +0 -8
  179. package/dist/translations/ku.js +0 -5
  180. package/dist/translations/lt.d.ts +0 -8
  181. package/dist/translations/lt.js +0 -5
  182. package/dist/translations/lv.d.ts +0 -8
  183. package/dist/translations/lv.js +0 -5
  184. package/dist/translations/ms.d.ts +0 -8
  185. package/dist/translations/ms.js +0 -5
  186. package/dist/translations/nb.d.ts +0 -8
  187. package/dist/translations/nb.js +0 -5
  188. package/dist/translations/ne.d.ts +0 -8
  189. package/dist/translations/ne.js +0 -5
  190. package/dist/translations/nl.d.ts +0 -8
  191. package/dist/translations/nl.js +0 -5
  192. package/dist/translations/no.d.ts +0 -8
  193. package/dist/translations/no.js +0 -5
  194. package/dist/translations/pl.d.ts +0 -8
  195. package/dist/translations/pl.js +0 -5
  196. package/dist/translations/pt-br.d.ts +0 -8
  197. package/dist/translations/pt-br.js +0 -5
  198. package/dist/translations/pt.d.ts +0 -8
  199. package/dist/translations/pt.js +0 -5
  200. package/dist/translations/ro.d.ts +0 -8
  201. package/dist/translations/ro.js +0 -5
  202. package/dist/translations/ru.d.ts +0 -8
  203. package/dist/translations/ru.js +0 -5
  204. package/dist/translations/sk.d.ts +0 -8
  205. package/dist/translations/sk.js +0 -5
  206. package/dist/translations/sl.d.ts +0 -8
  207. package/dist/translations/sl.js +0 -5
  208. package/dist/translations/sq.d.ts +0 -8
  209. package/dist/translations/sq.js +0 -5
  210. package/dist/translations/sr-latn.d.ts +0 -8
  211. package/dist/translations/sr-latn.js +0 -5
  212. package/dist/translations/sr.d.ts +0 -8
  213. package/dist/translations/sr.js +0 -5
  214. package/dist/translations/sv.d.ts +0 -8
  215. package/dist/translations/sv.js +0 -5
  216. package/dist/translations/th.d.ts +0 -8
  217. package/dist/translations/th.js +0 -5
  218. package/dist/translations/tk.d.ts +0 -8
  219. package/dist/translations/tk.js +0 -5
  220. package/dist/translations/tr.d.ts +0 -8
  221. package/dist/translations/tr.js +0 -5
  222. package/dist/translations/tt.d.ts +0 -8
  223. package/dist/translations/tt.js +0 -5
  224. package/dist/translations/ug.d.ts +0 -8
  225. package/dist/translations/ug.js +0 -5
  226. package/dist/translations/uk.d.ts +0 -8
  227. package/dist/translations/uk.js +0 -5
  228. package/dist/translations/ur.d.ts +0 -8
  229. package/dist/translations/ur.js +0 -5
  230. package/dist/translations/uz.d.ts +0 -8
  231. package/dist/translations/uz.js +0 -5
  232. package/dist/translations/vi.d.ts +0 -8
  233. package/dist/translations/vi.js +0 -5
  234. package/dist/translations/zh-cn.d.ts +0 -8
  235. package/dist/translations/zh-cn.js +0 -5
  236. package/dist/translations/zh.d.ts +0 -8
  237. package/dist/translations/zh.js +0 -5
  238. package/dist/types/arialiveannouncer.d.ts +0 -102
  239. package/dist/types/augmentation.d.ts +0 -92
  240. package/dist/types/autocomplete/autocompleteview.d.ts +0 -85
  241. package/dist/types/bindings/addkeyboardhandlingforgrid.d.ts +0 -31
  242. package/dist/types/bindings/clickoutsidehandler.d.ts +0 -32
  243. package/dist/types/bindings/csstransitiondisablermixin.d.ts +0 -44
  244. package/dist/types/bindings/draggableviewmixin.d.ts +0 -50
  245. package/dist/types/bindings/injectcsstransitiondisabler.d.ts +0 -63
  246. package/dist/types/bindings/preventdefault.d.ts +0 -37
  247. package/dist/types/bindings/submithandler.d.ts +0 -61
  248. package/dist/types/button/button.d.ts +0 -179
  249. package/dist/types/button/buttonlabel.d.ts +0 -38
  250. package/dist/types/button/buttonlabelview.d.ts +0 -35
  251. package/dist/types/button/buttonview.d.ts +0 -185
  252. package/dist/types/button/switchbuttonview.d.ts +0 -49
  253. package/dist/types/collapsible/collapsibleview.d.ts +0 -74
  254. package/dist/types/colorgrid/colorgridview.d.ts +0 -136
  255. package/dist/types/colorgrid/colortileview.d.ts +0 -32
  256. package/dist/types/colorgrid/utils.d.ts +0 -51
  257. package/dist/types/colorpicker/colorpickerview.d.ts +0 -146
  258. package/dist/types/colorpicker/utils.d.ts +0 -52
  259. package/dist/types/colorselector/colorgridsfragmentview.d.ts +0 -199
  260. package/dist/types/colorselector/colorpickerfragmentview.d.ts +0 -133
  261. package/dist/types/colorselector/colorselectorview.d.ts +0 -246
  262. package/dist/types/colorselector/documentcolorcollection.d.ts +0 -74
  263. package/dist/types/componentfactory.d.ts +0 -85
  264. package/dist/types/dialog/dialog.d.ts +0 -277
  265. package/dist/types/dialog/dialogactionsview.d.ts +0 -73
  266. package/dist/types/dialog/dialogcontentview.d.ts +0 -31
  267. package/dist/types/dialog/dialogview.d.ts +0 -260
  268. package/dist/types/dropdown/button/dropdownbutton.d.ts +0 -29
  269. package/dist/types/dropdown/button/dropdownbuttonview.d.ts +0 -52
  270. package/dist/types/dropdown/button/splitbuttonview.d.ts +0 -166
  271. package/dist/types/dropdown/dropdownpanelfocusable.d.ts +0 -25
  272. package/dist/types/dropdown/dropdownpanelview.d.ts +0 -66
  273. package/dist/types/dropdown/dropdownview.d.ts +0 -319
  274. package/dist/types/dropdown/utils.d.ts +0 -239
  275. package/dist/types/editableui/editableuiview.d.ts +0 -76
  276. package/dist/types/editableui/inline/inlineeditableuiview.d.ts +0 -44
  277. package/dist/types/editorui/accessibilityhelp/accessibilityhelp.d.ts +0 -51
  278. package/dist/types/editorui/accessibilityhelp/accessibilityhelpcontentview.d.ts +0 -39
  279. package/dist/types/editorui/bodycollection.d.ts +0 -59
  280. package/dist/types/editorui/boxed/boxededitoruiview.d.ts +0 -44
  281. package/dist/types/editorui/editorui.d.ts +0 -292
  282. package/dist/types/editorui/editoruiview.d.ts +0 -43
  283. package/dist/types/editorui/poweredby.d.ts +0 -75
  284. package/dist/types/focuscycler.d.ts +0 -249
  285. package/dist/types/formheader/formheaderview.d.ts +0 -63
  286. package/dist/types/highlightedtext/highlightedtextview.d.ts +0 -42
  287. package/dist/types/icon/iconview.d.ts +0 -92
  288. package/dist/types/iframe/iframeview.d.ts +0 -54
  289. package/dist/types/index.d.ts +0 -78
  290. package/dist/types/input/inputbase.d.ts +0 -123
  291. package/dist/types/input/inputview.d.ts +0 -40
  292. package/dist/types/inputnumber/inputnumberview.d.ts +0 -53
  293. package/dist/types/inputtext/inputtextview.d.ts +0 -22
  294. package/dist/types/label/labelview.d.ts +0 -40
  295. package/dist/types/labeledfield/labeledfieldview.d.ts +0 -191
  296. package/dist/types/labeledfield/utils.d.ts +0 -127
  297. package/dist/types/labeledinput/labeledinputview.d.ts +0 -129
  298. package/dist/types/list/listitemgroupview.d.ts +0 -63
  299. package/dist/types/list/listitemview.d.ts +0 -40
  300. package/dist/types/list/listseparatorview.d.ts +0 -22
  301. package/dist/types/list/listview.d.ts +0 -128
  302. package/dist/types/model.d.ts +0 -26
  303. package/dist/types/notification/notification.d.ts +0 -215
  304. package/dist/types/panel/balloon/balloonpanelview.d.ts +0 -689
  305. package/dist/types/panel/balloon/contextualballoon.d.ts +0 -303
  306. package/dist/types/panel/sticky/stickypanelview.d.ts +0 -160
  307. package/dist/types/search/filteredview.d.ts +0 -35
  308. package/dist/types/search/searchinfoview.d.ts +0 -49
  309. package/dist/types/search/searchresultsview.d.ts +0 -58
  310. package/dist/types/search/text/searchtextqueryview.d.ts +0 -80
  311. package/dist/types/search/text/searchtextview.d.ts +0 -223
  312. package/dist/types/spinner/spinnerview.d.ts +0 -29
  313. package/dist/types/template.d.ts +0 -946
  314. package/dist/types/textarea/textareaview.d.ts +0 -108
  315. package/dist/types/toolbar/balloon/balloontoolbar.d.ts +0 -121
  316. package/dist/types/toolbar/block/blockbuttonview.d.ts +0 -39
  317. package/dist/types/toolbar/block/blocktoolbar.d.ts +0 -157
  318. package/dist/types/toolbar/normalizetoolbarconfig.d.ts +0 -44
  319. package/dist/types/toolbar/toolbarlinebreakview.d.ts +0 -22
  320. package/dist/types/toolbar/toolbarseparatorview.d.ts +0 -22
  321. package/dist/types/toolbar/toolbarview.d.ts +0 -271
  322. package/dist/types/tooltipmanager.d.ts +0 -188
  323. package/dist/types/view.d.ts +0 -426
  324. package/dist/types/viewcollection.d.ts +0 -143
@@ -1,129 +0,0 @@
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 ui/labeledinput/labeledinputview
11
- */
12
- import View from '../view.js';
13
- import LabelView from '../label/labelview.js';
14
- import type { default as InputView } from '../input/inputview.js';
15
- import { type Locale } from '@ckeditor/ckeditor5-utils';
16
- import '../../theme/components/labeledinput/labeledinput.css';
17
- /**
18
- * The labeled input view class.
19
- */
20
- export default class LabeledInputView extends View {
21
- /**
22
- * The label view.
23
- */
24
- readonly labelView: LabelView;
25
- /**
26
- * The input view.
27
- */
28
- readonly inputView: InputView;
29
- /**
30
- * The status view for the {@link #inputView}. It displays {@link #errorText} and
31
- * {@link #infoText}.
32
- */
33
- readonly statusView: View;
34
- /**
35
- * The text of the label.
36
- *
37
- * @observable
38
- */
39
- label: string | undefined;
40
- /**
41
- * The value of the input.
42
- *
43
- * @observable
44
- */
45
- value: string | undefined;
46
- /**
47
- * Controls whether the component is in read-only mode.
48
- *
49
- * @observable
50
- */
51
- isReadOnly: boolean;
52
- /**
53
- * The validation error text. When set, it will be displayed
54
- * next to the {@link #inputView} as a typical validation error message.
55
- * Set it to `null` to hide the message.
56
- *
57
- * **Note:** Setting this property to anything but `null` will automatically
58
- * make the {@link module:ui/inputtext/inputtextview~InputTextView#hasError `hasError`}
59
- * of the {@link #inputView} `true`.
60
- *
61
- * **Note:** Typing in the {@link #inputView} which fires the
62
- * {@link module:ui/inputtext/inputtextview~InputTextView#event:input `input` event}
63
- * resets this property back to `null`, indicating that the input field can be re–validated.
64
- *
65
- * @observable
66
- */
67
- errorText: string | null;
68
- /**
69
- * The additional information text displayed next to the {@link #inputView} which can
70
- * be used to inform the user about the purpose of the input, provide help or hints.
71
- *
72
- * Set it to `null` to hide the message.
73
- *
74
- * **Note:** This text will be displayed in the same place as {@link #errorText} but the
75
- * latter always takes precedence: if the {@link #errorText} is set, it replaces
76
- * {@link #errorText} for as long as the value of the input is invalid.
77
- *
78
- * @observable
79
- */
80
- infoText: string | null;
81
- /**
82
- * The combined status text made of {@link #errorText} and {@link #infoText}.
83
- * Note that when present, {@link #errorText} always takes precedence in the
84
- * status.
85
- *
86
- * @see #errorText
87
- * @see #infoText
88
- * @see #statusView
89
- * @private
90
- * @observable
91
- */
92
- _statusText: string | null;
93
- /**
94
- * Creates an instance of the labeled input view class.
95
- *
96
- * @param locale The locale instance.
97
- * @param InputView Constructor of the input view.
98
- */
99
- constructor(locale: Locale | undefined, InputView: new (locale: Locale | undefined, statusUid: string) => InputView);
100
- /**
101
- * Creates label view class instance and bind with view.
102
- *
103
- * @param id Unique id to set as labelView#for attribute.
104
- */
105
- private _createLabelView;
106
- /**
107
- * Creates input view class instance and bind with view.
108
- *
109
- * @param InputView Input view constructor.
110
- * @param inputUid Unique id to set as inputView#id attribute.
111
- * @param statusUid Unique id of the status for the input's `aria-describedby` attribute.
112
- */
113
- private _createInputView;
114
- /**
115
- * Creates the status view instance. It displays {@link #errorText} and {@link #infoText}
116
- * next to the {@link #inputView}. See {@link #_statusText}.
117
- *
118
- * @param statusUid Unique id of the status, shared with the input's `aria-describedby` attribute.
119
- */
120
- private _createStatusView;
121
- /**
122
- * Moves the focus to the input and selects the value.
123
- */
124
- select(): void;
125
- /**
126
- * Focuses the input.
127
- */
128
- focus(): void;
129
- }
@@ -1,63 +0,0 @@
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 ui/list/listitemgroupview
11
- */
12
- import View from '../view.js';
13
- import type ViewCollection from '../viewcollection.js';
14
- import ListView from './listview.js';
15
- import LabelView from '../label/labelview.js';
16
- import { type Locale } from '@ckeditor/ckeditor5-utils';
17
- /**
18
- * The list item group view class.
19
- */
20
- export default class ListItemGroupView extends View {
21
- /**
22
- * The visible label of the group.
23
- *
24
- * @observable
25
- * @default ''
26
- */
27
- label: string;
28
- /**
29
- * Label of the group view. Its text is configurable using the {@link #label label attribute}.
30
- *
31
- * If a custom label view is not passed in `ListItemGroupView` constructor, the label is an instance
32
- * of {@link module:ui/label/labelview~LabelView}.
33
- */
34
- readonly labelView: LabelView;
35
- /**
36
- * Collection of the child list items inside this group.
37
- */
38
- readonly items: ListView['items'];
39
- /**
40
- * Collection of the child elements of the group.
41
- */
42
- readonly children: ViewCollection;
43
- /**
44
- * Controls whether the item view is visible. Visible by default, list items are hidden
45
- * using a CSS class.
46
- *
47
- * @observable
48
- * @default true
49
- */
50
- isVisible: boolean;
51
- /**
52
- * Creates an instance of the list item group view class.
53
- *
54
- * @param locale The {@link module:core/editor/editor~Editor#locale} instance.
55
- * @param labelView The instance of the group's label. If not provided, an instance of
56
- * {@link module:ui/label/labelview~LabelView} is used.
57
- */
58
- constructor(locale?: Locale, labelView?: LabelView);
59
- /**
60
- * Focuses the list item (which is not a separator).
61
- */
62
- focus(): void;
63
- }
@@ -1,40 +0,0 @@
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 ui/list/listitemview
11
- */
12
- import View from '../view.js';
13
- import type { FocusableView } from '../focuscycler.js';
14
- import type ViewCollection from '../viewcollection.js';
15
- import type { Locale } from '@ckeditor/ckeditor5-utils';
16
- /**
17
- * The list item view class.
18
- */
19
- export default class ListItemView extends View {
20
- /**
21
- * Collection of the child views inside of the list item {@link #element}.
22
- */
23
- readonly children: ViewCollection<FocusableView>;
24
- /**
25
- * Controls whether the item view is visible. Visible by default, list items are hidden
26
- * using a CSS class.
27
- *
28
- * @observable
29
- * @default true
30
- */
31
- isVisible: boolean;
32
- /**
33
- * @inheritDoc
34
- */
35
- constructor(locale?: Locale);
36
- /**
37
- * Focuses the list item.
38
- */
39
- focus(): void;
40
- }
@@ -1,22 +0,0 @@
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 ui/list/listseparatorview
11
- */
12
- import View from '../view.js';
13
- import type { Locale } from '@ckeditor/ckeditor5-utils';
14
- /**
15
- * The list separator view class.
16
- */
17
- export default class ListSeparatorView extends View {
18
- /**
19
- * @inheritDoc
20
- */
21
- constructor(locale?: Locale);
22
- }
@@ -1,128 +0,0 @@
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 ui/list/listview
11
- */
12
- import View from '../view.js';
13
- import { type FocusableView } from '../focuscycler.js';
14
- import ListItemView from './listitemview.js';
15
- import ListItemGroupView from './listitemgroupview.js';
16
- import type ListSeparatorView from './listseparatorview.js';
17
- import type DropdownPanelFocusable from '../dropdown/dropdownpanelfocusable.js';
18
- import ViewCollection from '../viewcollection.js';
19
- import { FocusTracker, KeystrokeHandler, type Locale } from '@ckeditor/ckeditor5-utils';
20
- import '../../theme/components/list/list.css';
21
- /**
22
- * The list view class.
23
- */
24
- export default class ListView extends View<HTMLUListElement> implements DropdownPanelFocusable {
25
- /**
26
- * The collection of focusable views in the list. It is used to determine accessible navigation
27
- * between the {@link module:ui/list/listitemview~ListItemView list items} and
28
- * {@link module:ui/list/listitemgroupview~ListItemGroupView list groups}.
29
- */
30
- readonly focusables: ViewCollection<FocusableView>;
31
- /**
32
- * Collection of the child list views.
33
- */
34
- readonly items: ViewCollection<ListItemView | ListItemGroupView | ListSeparatorView>;
35
- /**
36
- * Tracks information about DOM focus in the list.
37
- */
38
- readonly focusTracker: FocusTracker;
39
- /**
40
- * Instance of the {@link module:utils/keystrokehandler~KeystrokeHandler}.
41
- */
42
- readonly keystrokes: KeystrokeHandler;
43
- /**
44
- * Label used by assistive technologies to describe this list element.
45
- *
46
- * @observable
47
- */
48
- ariaLabel: string | undefined;
49
- /**
50
- * (Optional) The ARIA property reflected by the `aria-ariaLabelledBy` DOM attribute used by assistive technologies.
51
- *
52
- * @observable
53
- */
54
- ariaLabelledBy?: string | undefined;
55
- /**
56
- * The property reflected by the `role` DOM attribute to be used by assistive technologies.
57
- *
58
- * @observable
59
- */
60
- role: string | undefined;
61
- /**
62
- * Helps cycling over focusable {@link #items} in the list.
63
- */
64
- private readonly _focusCycler;
65
- /**
66
- * A cached map of {@link module:ui/list/listitemgroupview~ListItemGroupView} to `change` event listeners for their `items`.
67
- * Used for accessibility and keyboard navigation purposes.
68
- */
69
- private readonly _listItemGroupToChangeListeners;
70
- /**
71
- * @inheritDoc
72
- */
73
- constructor(locale?: Locale);
74
- /**
75
- * @inheritDoc
76
- */
77
- render(): void;
78
- /**
79
- * @inheritDoc
80
- */
81
- destroy(): void;
82
- /**
83
- * Focuses the first focusable in {@link #items}.
84
- */
85
- focus(): void;
86
- /**
87
- * Focuses the first focusable in {@link #items}.
88
- */
89
- focusFirst(): void;
90
- /**
91
- * Focuses the last focusable in {@link #items}.
92
- */
93
- focusLast(): void;
94
- /**
95
- * Registers a list item view in the focus tracker.
96
- *
97
- * @param item The list item view to be registered.
98
- * @param index Index of the list item view in the {@link #items} collection. If not specified, the item will be added at the end.
99
- */
100
- private _registerFocusableListItem;
101
- /**
102
- * Removes a list item view from the focus tracker.
103
- *
104
- * @param item The list item view to be removed.
105
- */
106
- private _deregisterFocusableListItem;
107
- /**
108
- * Gets a callback that will be called when the `items` collection of a {@link module:ui/list/listitemgroupview~ListItemGroupView}
109
- * change.
110
- *
111
- * @param groupView The group view for which the callback will be created.
112
- * @returns The callback function to be used for the items `change` event listener in a group.
113
- */
114
- private _getOnGroupItemsChangeCallback;
115
- /**
116
- * Registers a list item group view (and its children) in the focus tracker.
117
- *
118
- * @param groupView A group view to be registered.
119
- * @param groupIndex Index of the group view in the {@link #items} collection. If not specified, the group will be added at the end.
120
- */
121
- private _registerFocusableItemsGroup;
122
- /**
123
- * Removes a list item group view (and its children) from the focus tracker.
124
- *
125
- * @param groupView The group view to be removed.
126
- */
127
- private _deregisterFocusableItemsGroup;
128
- }
@@ -1,26 +0,0 @@
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
- declare const Model_base: {
10
- new (): import("@ckeditor/ckeditor5-utils").Observable;
11
- prototype: import("@ckeditor/ckeditor5-utils").Observable;
12
- };
13
- /**
14
- * The base MVC model class.
15
- */
16
- export default class Model extends Model_base {
17
- [x: string]: unknown;
18
- /**
19
- * Creates a new Model instance.
20
- *
21
- * @param attributes The model state attributes to be defined during the instance creation.
22
- * @param properties The (out of state) properties to be appended to the instance during creation.
23
- */
24
- constructor(attributes?: Record<string, unknown>, properties?: Record<string, unknown>);
25
- }
26
- export {};
@@ -1,215 +0,0 @@
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 ui/notification/notification
11
- */
12
- import { ContextPlugin } from '@ckeditor/ckeditor5-core';
13
- /**
14
- * The Notification plugin.
15
- *
16
- * This plugin sends a few types of notifications: `success`, `info` and `warning`. The notifications need to be
17
- * handled and displayed by a plugin responsible for showing the UI of the notifications. Using this plugin for dispatching
18
- * notifications makes it possible to switch the notifications UI.
19
- *
20
- * Note that every unhandled and not stopped `warning` notification will be displayed as a system alert.
21
- * See {@link module:ui/notification/notification~Notification#showWarning}.
22
- */
23
- export default class Notification extends ContextPlugin {
24
- /**
25
- * @inheritDoc
26
- */
27
- static get pluginName(): "Notification";
28
- /**
29
- * @inheritDoc
30
- */
31
- init(): void;
32
- /**
33
- * Shows a success notification.
34
- *
35
- * By default, it fires the {@link #event:show:success `show:success` event} with the given `data`. The event namespace can be extended
36
- * using the `data.namespace` option. For example:
37
- *
38
- * ```ts
39
- * showSuccess( 'Image is uploaded.', {
40
- * namespace: 'upload:image'
41
- * } );
42
- * ```
43
- *
44
- * will fire the `show:success:upload:image` event.
45
- *
46
- * You can provide the title of the notification:
47
- *
48
- * ```ts
49
- * showSuccess( 'Image is uploaded.', {
50
- * title: 'Image upload success'
51
- * } );
52
- * ```
53
- *
54
- * @param message The content of the notification.
55
- * @param data Additional data.
56
- * @param data.namespace Additional event namespace.
57
- * @param data.title The title of the notification.
58
- */
59
- showSuccess(message: string, data?: {
60
- namespace?: string;
61
- title?: string;
62
- }): void;
63
- /**
64
- * Shows an information notification.
65
- *
66
- * By default, it fires the {@link #event:show:info `show:info` event} with the given `data`. The event namespace can be extended
67
- * using the `data.namespace` option. For example:
68
- *
69
- * ```ts
70
- * showInfo( 'Editor is offline.', {
71
- * namespace: 'editor:status'
72
- * } );
73
- * ```
74
- *
75
- * will fire the `show:info:editor:status` event.
76
- *
77
- * You can provide the title of the notification:
78
- *
79
- * ```ts
80
- * showInfo( 'Editor is offline.', {
81
- * title: 'Network information'
82
- * } );
83
- * ```
84
- *
85
- * @param message The content of the notification.
86
- * @param data Additional data.
87
- * @param data.namespace Additional event namespace.
88
- * @param data.title The title of the notification.
89
- */
90
- showInfo(message: string, data?: {
91
- namespace?: string;
92
- title?: string;
93
- }): void;
94
- /**
95
- * Shows a warning notification.
96
- *
97
- * By default, it fires the {@link #event:show:warning `show:warning` event}
98
- * with the given `data`. The event namespace can be extended using the `data.namespace` option. For example:
99
- *
100
- * ```ts
101
- * showWarning( 'Image upload error.', {
102
- * namespace: 'upload:image'
103
- * } );
104
- * ```
105
- *
106
- * will fire the `show:warning:upload:image` event.
107
- *
108
- * You can provide the title of the notification:
109
- *
110
- * ```ts
111
- * showWarning( 'Image upload error.', {
112
- * title: 'Upload failed'
113
- * } );
114
- * ```
115
- *
116
- * Note that each unhandled and not stopped `warning` notification will be displayed as a system alert.
117
- * The plugin responsible for displaying warnings should `stop()` the event to prevent displaying it as an alert:
118
- *
119
- * ```ts
120
- * notifications.on( 'show:warning', ( evt, data ) => {
121
- * // Do something with the data.
122
- *
123
- * // Stop this event to prevent displaying it as an alert.
124
- * evt.stop();
125
- * } );
126
- * ```
127
- *
128
- * You can attach many listeners to the same event and `stop()` this event in a listener with a low priority:
129
- *
130
- * ```ts
131
- * notifications.on( 'show:warning', ( evt, data ) => {
132
- * // Show the warning in the UI, but do not stop it.
133
- * } );
134
- *
135
- * notifications.on( 'show:warning', ( evt, data ) => {
136
- * // Log the warning to some error tracker.
137
- *
138
- * // Stop this event to prevent displaying it as an alert.
139
- * evt.stop();
140
- * }, { priority: 'low' } );
141
- * ```
142
- *
143
- * @param message The content of the notification.
144
- * @param data Additional data.
145
- * @param data.namespace Additional event namespace.
146
- * @param data.title The title of the notification.
147
- */
148
- showWarning(message: string, data?: {
149
- namespace?: string;
150
- title?: string;
151
- }): void;
152
- /**
153
- * Fires the `show` event with the specified type, namespace and message.
154
- *
155
- * @param data The message data.
156
- * @param data.message The content of the notification.
157
- * @param data.type The type of the message.
158
- * @param data.namespace Additional event namespace.
159
- * @param data.title The title of the notification.
160
- */
161
- private _showNotification;
162
- }
163
- export type NotificationEventType = 'success' | 'info' | 'warning';
164
- /**
165
- * Fired when one of the `showSuccess()`, `showInfo()`, `showWarning()` methods is called.
166
- *
167
- * @eventName ~Notification#show
168
- * @param data The notification data.
169
- */
170
- export type NotificationShowEvent = {
171
- name: 'show';
172
- args: [data: NotificationShowEventData];
173
- };
174
- /**
175
- * Fired when the `showSuccess()` method is called.
176
- *
177
- * @eventName ~Notification#show:success
178
- * @param data The notification data.
179
- */
180
- export type NotificationShowSuccessEvent = NotificationShowTypeEvent<'success'>;
181
- /**
182
- * Fired when the `showInfo()` method is called.
183
- *
184
- * @eventName ~Notification#show:info
185
- * @param data The notification data.
186
- */
187
- export type NotificationShowInfoEvent = NotificationShowTypeEvent<'info'>;
188
- /**
189
- * Fired when the `showWarning()` method is called.
190
- *
191
- * When this event is not handled or stopped by `event.stop()`, the `data.message` of this event will
192
- * be automatically displayed as a system alert.
193
- *
194
- * @eventName ~Notification#show:warning
195
- * @param data The notification data.
196
- */
197
- export type NotificationShowWarningEvent = NotificationShowTypeEvent<'warning'>;
198
- export type NotificationShowTypeEvent<NotificationType extends NotificationEventType> = {
199
- name: `show:${NotificationType}` | `show:${NotificationType}:${string}`;
200
- args: [data: NotificationShowEventData<NotificationType>];
201
- };
202
- export type NotificationShowEventData<NotificationType extends NotificationEventType = NotificationEventType> = {
203
- /**
204
- * The content of the notification.
205
- */
206
- message: string;
207
- /**
208
- * The title of the notification.
209
- */
210
- title: string;
211
- /**
212
- * The type of the notification.
213
- */
214
- type: NotificationType;
215
- };