@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,249 +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/focuscycler
11
- */
12
- import { type ArrayOrItem, type FocusTracker, type KeystrokeHandler } from '@ckeditor/ckeditor5-utils';
13
- import type View from './view.js';
14
- import type ViewCollection from './viewcollection.js';
15
- declare const FocusCycler_base: {
16
- new (): import("@ckeditor/ckeditor5-utils").Emitter;
17
- prototype: import("@ckeditor/ckeditor5-utils").Emitter;
18
- };
19
- /**
20
- * A utility class that helps cycling over {@link module:ui/focuscycler~FocusableView focusable views} in a
21
- * {@link module:ui/viewcollection~ViewCollection} when the focus is tracked by the
22
- * {@link module:utils/focustracker~FocusTracker} instance. It helps implementing keyboard
23
- * navigation in HTML forms, toolbars, lists and the like.
24
- *
25
- * To work properly it requires:
26
- * * a collection of focusable (HTML `tabindex` attribute) views that implement the `focus()` method,
27
- * * an associated focus tracker to determine which view is focused.
28
- *
29
- * A simple cycler setup can look like this:
30
- *
31
- * ```ts
32
- * const focusables = new ViewCollection<FocusableView>();
33
- * const focusTracker = new FocusTracker();
34
- *
35
- * // Add focusable views to the focus tracker.
36
- * focusTracker.add( ... );
37
- * ```
38
- *
39
- * Then, the cycler can be used manually:
40
- *
41
- * ```ts
42
- * const cycler = new FocusCycler( { focusables, focusTracker } );
43
- *
44
- * // Will focus the first focusable view in #focusables.
45
- * cycler.focusFirst();
46
- *
47
- * // Will log the next focusable item in #focusables.
48
- * console.log( cycler.next );
49
- * ```
50
- *
51
- * Alternatively, it can work side by side with the {@link module:utils/keystrokehandler~KeystrokeHandler}:
52
- *
53
- * ```ts
54
- * const keystrokeHandler = new KeystrokeHandler();
55
- *
56
- * // Activate the keystroke handler.
57
- * keystrokeHandler.listenTo( sourceOfEvents );
58
- *
59
- * const cycler = new FocusCycler( {
60
- * focusables, focusTracker, keystrokeHandler,
61
- * actions: {
62
- * // When arrowup of arrowleft is detected by the #keystrokeHandler,
63
- * // focusPrevious() will be called on the cycler.
64
- * focusPrevious: [ 'arrowup', 'arrowleft' ],
65
- * }
66
- * } );
67
- * ```
68
- *
69
- * Check out the {@glink framework/deep-dive/ui/focus-tracking "Deep dive into focus tracking"} guide to learn more.
70
- */
71
- export default class FocusCycler extends FocusCycler_base {
72
- /**
73
- * A {@link module:ui/focuscycler~FocusableView focusable views} collection that the cycler operates on.
74
- */
75
- readonly focusables: ViewCollection<FocusableView>;
76
- /**
77
- * A focus tracker instance that the cycler uses to determine the current focus
78
- * state in {@link #focusables}.
79
- */
80
- readonly focusTracker: FocusTracker;
81
- /**
82
- * An instance of the {@link module:utils/keystrokehandler~KeystrokeHandler}
83
- * which can respond to certain keystrokes and cycle the focus.
84
- */
85
- readonly keystrokeHandler?: KeystrokeHandler;
86
- /**
87
- * Actions that the cycler can take when a keystroke is pressed. Requires
88
- * `options.keystrokeHandler` to be passed and working. When an action is
89
- * performed, `preventDefault` and `stopPropagation` will be called on the event
90
- * the keystroke fired in the DOM.
91
- *
92
- * ```ts
93
- * actions: {
94
- * // Will call #focusPrevious() when arrowleft or arrowup is pressed.
95
- * focusPrevious: [ 'arrowleft', 'arrowup' ],
96
- *
97
- * // Will call #focusNext() when arrowdown is pressed.
98
- * focusNext: 'arrowdown'
99
- * }
100
- * ```
101
- */
102
- readonly actions?: FocusCyclerActions;
103
- /**
104
- * Creates an instance of the focus cycler utility.
105
- *
106
- * @param options Configuration options.
107
- */
108
- constructor(options: {
109
- focusables: ViewCollection<FocusableView>;
110
- focusTracker: FocusTracker;
111
- keystrokeHandler?: KeystrokeHandler;
112
- actions?: FocusCyclerActions;
113
- });
114
- /**
115
- * Returns the first focusable view in {@link #focusables}.
116
- * Returns `null` if there is none.
117
- *
118
- * **Note**: Hidden views (e.g. with `display: none`) are ignored.
119
- */
120
- get first(): FocusableView | null;
121
- /**
122
- * Returns the last focusable view in {@link #focusables}.
123
- * Returns `null` if there is none.
124
- *
125
- * **Note**: Hidden views (e.g. with `display: none`) are ignored.
126
- */
127
- get last(): FocusableView | null;
128
- /**
129
- * Returns the next focusable view in {@link #focusables} based on {@link #current}.
130
- * Returns `null` if there is none.
131
- *
132
- * **Note**: Hidden views (e.g. with `display: none`) are ignored.
133
- */
134
- get next(): FocusableView | null;
135
- /**
136
- * Returns the previous focusable view in {@link #focusables} based on {@link #current}.
137
- * Returns `null` if there is none.
138
- *
139
- * **Note**: Hidden views (e.g. with `display: none`) are ignored.
140
- */
141
- get previous(): FocusableView | null;
142
- /**
143
- * An index of the view in the {@link #focusables} which is focused according
144
- * to {@link #focusTracker}. Returns `null` when there is no such view.
145
- */
146
- get current(): number | null;
147
- /**
148
- * Focuses the {@link #first} item in {@link #focusables}.
149
- *
150
- * **Note**: Hidden views (e.g. with `display: none`) are ignored.
151
- */
152
- focusFirst(): void;
153
- /**
154
- * Focuses the {@link #last} item in {@link #focusables}.
155
- *
156
- * **Note**: Hidden views (e.g. with `display: none`) are ignored.
157
- */
158
- focusLast(): void;
159
- /**
160
- * Focuses the {@link #next} item in {@link #focusables}.
161
- *
162
- * **Note**: Hidden views (e.g. with `display: none`) are ignored.
163
- */
164
- focusNext(): void;
165
- /**
166
- * Focuses the {@link #previous} item in {@link #focusables}.
167
- *
168
- * **Note**: Hidden views (e.g. with `display: none`) are ignored.
169
- */
170
- focusPrevious(): void;
171
- /**
172
- * Focuses the given view if it exists.
173
- *
174
- * @param view The view to be focused
175
- * @param direction The direction of the focus if the view has focusable children.
176
- * @returns
177
- */
178
- private _focus;
179
- /**
180
- * Returns the next or previous focusable view in {@link #focusables} with respect
181
- * to {@link #current}.
182
- *
183
- * @param step Either `1` for checking forward from {@link #current} or `-1` for checking backwards.
184
- */
185
- private _getDomFocusableItem;
186
- }
187
- /**
188
- * A {@link module:ui/view~View} that can be focused (e.g. has `focus()` method).
189
- */
190
- export type FocusableView = View & {
191
- /**
192
- * Focuses the view.
193
- *
194
- * @param direction This optional parameter helps improve the UX by providing additional information about the direction the focus moved
195
- * (e.g. in a complex view or a form). It is useful for views that host multiple focusable children (e.g. lists, toolbars):
196
- * * `1` indicates that the focus moved forward and, in most cases, the first child of the focused view should get focused,
197
- * * `-1` indicates that the focus moved backwards, and the last focusable child should get focused
198
- *
199
- * See {@link module:ui/focuscycler~FocusCycler#event:forwardCycle} and {@link module:ui/focuscycler~FocusCycler#event:backwardCycle}
200
- * to learn more.
201
- */
202
- focus(direction?: 1 | -1): void;
203
- };
204
- /**
205
- * A {@link module:ui/view~View} that hosts one or more of focusable children being managed by a {@link module:ui/focuscycler~FocusCycler}
206
- * instance exposed under `focusCycler` property.
207
- */
208
- export type ViewWithFocusCycler = FocusableView & {
209
- focusCycler: FocusCycler;
210
- };
211
- export interface FocusCyclerActions {
212
- focusFirst?: ArrayOrItem<string>;
213
- focusLast?: ArrayOrItem<string>;
214
- focusNext?: ArrayOrItem<string>;
215
- focusPrevious?: ArrayOrItem<string>;
216
- }
217
- /**
218
- * Fired when the focus cycler is about to move the focus from the last focusable item
219
- * to the first one.
220
- *
221
- * @eventName ~FocusCycler#forwardCycle
222
- */
223
- export type FocusCyclerForwardCycleEvent = {
224
- name: 'forwardCycle';
225
- args: [];
226
- };
227
- /**
228
- * Fired when the focus cycler is about to move the focus from the first focusable item
229
- * to the last one.
230
- *
231
- * @eventName ~FocusCycler#backwardCycle
232
- */
233
- export type FocusCyclerBackwardCycleEvent = {
234
- name: 'backwardCycle';
235
- args: [];
236
- };
237
- /**
238
- * Checks whether a view is {@link ~FocusableView}.
239
- *
240
- * @param view A view to be checked.
241
- */
242
- export declare function isFocusable(view: View): view is FocusableView;
243
- /**
244
- * Checks whether a view is an instance of {@link ~ViewWithFocusCycler}.
245
- *
246
- * @param view A view to be checked.
247
- */
248
- export declare function isViewWithFocusCycler(view: View): view is ViewWithFocusCycler;
249
- export {};
@@ -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/formheader/formheaderview
11
- */
12
- import View from '../view.js';
13
- import type ViewCollection from '../viewcollection.js';
14
- import IconView from '../icon/iconview.js';
15
- import type { Locale } from '@ckeditor/ckeditor5-utils';
16
- import '../../theme/components/formheader/formheader.css';
17
- /**
18
- * The class component representing a form header view. It should be used in more advanced forms to
19
- * describe the main purpose of the form.
20
- *
21
- * By default the component contains a bolded label view that has to be set. The label is usually a short (at most 3-word) string.
22
- * The component can also be extended by any other elements, like: icons, dropdowns, etc.
23
- *
24
- * It is used i.a.
25
- * by {@link module:table/tablecellproperties/ui/tablecellpropertiesview~TableCellPropertiesView}
26
- * and {@link module:special-characters/ui/specialcharactersnavigationview~SpecialCharactersNavigationView}.
27
- *
28
- * The latter is an example, where the component has been extended by {@link module:ui/dropdown/dropdownview~DropdownView} view.
29
- */
30
- export default class FormHeaderView extends View {
31
- /**
32
- * A collection of header items.
33
- */
34
- readonly children: ViewCollection;
35
- /**
36
- * The label of the header.
37
- *
38
- * @observable
39
- */
40
- label: string;
41
- /**
42
- * An additional CSS class added to the {@link #element}.
43
- *
44
- * @observable
45
- */
46
- class: string | null;
47
- /**
48
- * The icon view instance. Defined only if icon was passed in the constructor's options.
49
- */
50
- readonly iconView?: IconView;
51
- /**
52
- * Creates an instance of the form header class.
53
- *
54
- * @param locale The locale instance.
55
- * @param options.label A label.
56
- * @param options.class An additional class.
57
- */
58
- constructor(locale: Locale | undefined, options?: {
59
- label?: string | null;
60
- class?: string | null;
61
- icon?: string | null;
62
- });
63
- }
@@ -1,42 +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/highlightedtext/highlightedtextview
11
- */
12
- import View from '../view.js';
13
- import '../../theme/components/highlightedtext/highlightedtext.css';
14
- /**
15
- * A class representing a view that displays a text which subset can be highlighted using the
16
- * {@link #highlightText} method.
17
- */
18
- export default class HighlightedTextView extends View {
19
- /**
20
- * The text that can be highlighted using the {@link #highlightText} method.
21
- *
22
- * **Note:** When this property changes, the previous highlighting is removed.
23
- *
24
- * @observable
25
- */
26
- text: string | undefined;
27
- /**
28
- * @inheritDoc
29
- */
30
- constructor();
31
- /**
32
- * Highlights view's {@link #text} according to the specified `RegExp`. If the passed RegExp is `null`, the
33
- * highlighting is removed
34
- *
35
- * @param regExp
36
- */
37
- highlightText(regExp: RegExp | null): void;
38
- /**
39
- * Updates element's `innerHTML` with the passed content.
40
- */
41
- private _updateInnerHTML;
42
- }
@@ -1,92 +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/icon/iconview
11
- */
12
- import View from '../view.js';
13
- import '../../theme/components/icon/icon.css';
14
- /**
15
- * The icon view class.
16
- */
17
- export default class IconView extends View {
18
- /**
19
- * The SVG source of the icon.
20
- *
21
- * The user must provide the entire XML string, not just the path. See the
22
- * {@glink framework/architecture/ui-library#setting-label-icon-and-tooltip UI library} guide for details.
23
- *
24
- * @observable
25
- */
26
- content: string | undefined;
27
- /**
28
- * This attribute specifies the boundaries to which the
29
- * icon content should stretch.
30
- *
31
- * @observable
32
- * @default '0 0 20 20'
33
- */
34
- viewBox: string;
35
- /**
36
- * The fill color of the child `path.ck-icon__fill`.
37
- *
38
- * @observable
39
- * @default ''
40
- */
41
- fillColor: string;
42
- /**
43
- * When set true (default), all parts of the icon inherit the fill color from the CSS `color` property of the
44
- * icon's DOM parent.
45
- *
46
- * This effectively makes the icon monochromatic and allows it to change its fill color dynamically, for instance,
47
- * when a {@link module:ui/button/buttonview~ButtonView} displays an icon and it switches between different states
48
- * (pushed, hovered, etc.) the icon will follow along.
49
- *
50
- * **Note**: For the monochromatic icon to render properly, it must be made up of shapes that can be filled
51
- * with color instead of, for instance, paths with strokes. Be sure to use the *outline stroke* tool
52
- * (the name could be different in your vector graphics editor) before exporting your icon. Also, remove any
53
- * excess `fill="..."` attributes that could break the color inheritance.
54
- *
55
- * **Note**: If you want to preserve the original look of your icon and disable dynamic color inheritance,
56
- * set this flag to `false`.
57
- *
58
- * @observable
59
- * @default true
60
- */
61
- isColorInherited: boolean;
62
- /**
63
- * Controls whether the icon is visible.
64
- *
65
- * @observable
66
- * @default true
67
- */
68
- isVisible: boolean;
69
- /**
70
- * A list of presentational attributes that can be set on the `<svg>` element and should be preserved
71
- * when the icon {@link module:ui/icon/iconview~IconView#content content} is loaded.
72
- *
73
- * See the [specification](https://www.w3.org/TR/SVG/styling.html#TermPresentationAttribute) to learn more.
74
- */
75
- private static presentationalAttributeNames;
76
- /**
77
- * @inheritDoc
78
- */
79
- constructor();
80
- /**
81
- * @inheritDoc
82
- */
83
- render(): void;
84
- /**
85
- * Updates the {@link #element} with the value of {@link #content}.
86
- */
87
- private _updateXMLContent;
88
- /**
89
- * Fills all child `path.ck-icon__fill` with the `#fillColor`.
90
- */
91
- private _colorFillPaths;
92
- }
@@ -1,54 +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/iframe/iframeview
11
- */
12
- import View from '../view.js';
13
- import type { Locale } from '@ckeditor/ckeditor5-utils';
14
- /**
15
- * The iframe view class.
16
- *
17
- * ```ts
18
- * const iframe = new IframeView();
19
- *
20
- * iframe.render();
21
- * document.body.appendChild( iframe.element );
22
- *
23
- * iframe.on( 'loaded', () => {
24
- * console.log( 'The iframe has loaded', iframe.element.contentWindow );
25
- * } );
26
- *
27
- * iframe.element.src = 'https://ckeditor.com';
28
- * ```
29
- */
30
- export default class IframeView extends View<HTMLIFrameElement> {
31
- /**
32
- * Creates a new instance of the iframe view.
33
- *
34
- * @param locale The locale instance.
35
- */
36
- constructor(locale?: Locale);
37
- /**
38
- * Renders the iframe's {@link #element} and returns a `Promise` for asynchronous
39
- * child `contentDocument` loading process.
40
- *
41
- * @returns A promise which resolves once the iframe `contentDocument` has
42
- * been {@link #event:loaded}.
43
- */
44
- render(): Promise<unknown>;
45
- }
46
- /**
47
- * Fired when the DOM iframe's `contentDocument` finished loading.
48
- *
49
- * @eventName ~IframeView#loaded
50
- */
51
- export type IframeViewLoadedEvent = {
52
- name: 'loaded';
53
- args: [];
54
- };
@@ -1,78 +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
11
- */
12
- export { default as View, type UIViewRenderEvent } from './view.js';
13
- export { default as clickOutsideHandler } from './bindings/clickoutsidehandler.js';
14
- export { default as injectCssTransitionDisabler } from './bindings/injectcsstransitiondisabler.js';
15
- export { default as CssTransitionDisablerMixin, type ViewWithCssTransitionDisabler } from './bindings/csstransitiondisablermixin.js';
16
- export { default as submitHandler } from './bindings/submithandler.js';
17
- export { default as addKeyboardHandlingForGrid } from './bindings/addkeyboardhandlingforgrid.js';
18
- export { default as AccessibilityHelp } from './editorui/accessibilityhelp/accessibilityhelp.js';
19
- export { default as BodyCollection } from './editorui/bodycollection.js';
20
- export { type ButtonExecuteEvent } from './button/button.js';
21
- export type { default as ButtonLabel } from './button/buttonlabel.js';
22
- export { default as ButtonView } from './button/buttonview.js';
23
- export { default as ButtonLabelView } from './button/buttonlabelview.js';
24
- export { default as SwitchButtonView } from './button/switchbuttonview.js';
25
- export { default as CollapsibleView } from './collapsible/collapsibleview.js';
26
- export * from './colorgrid/utils.js';
27
- export { default as ColorGridView, type ColorDefinition } from './colorgrid/colorgridview.js';
28
- export { default as ColorTileView } from './colorgrid/colortileview.js';
29
- export { default as ColorPickerView } from './colorpicker/colorpickerview.js';
30
- export type { ColorPickerConfig, ColorPickerViewConfig, ColorPickerOutputFormat } from './colorpicker/utils.js';
31
- export { default as ColorSelectorView, type ColorSelectorExecuteEvent, type ColorSelectorColorPickerCancelEvent, type ColorSelectorColorPickerShowEvent } from './colorselector/colorselectorview.js';
32
- export { default as ComponentFactory } from './componentfactory.js';
33
- export { default as Dialog } from './dialog/dialog.js';
34
- export { default as DialogView, DialogViewPosition, type DialogViewMoveToEvent } from './dialog/dialogview.js';
35
- export { default as DropdownView } from './dropdown/dropdownview.js';
36
- export { default as DropdownPanelView } from './dropdown/dropdownpanelview.js';
37
- export { default as DropdownButtonView } from './dropdown/button/dropdownbuttonview.js';
38
- export { default as SplitButtonView } from './dropdown/button/splitbuttonview.js';
39
- export * from './dropdown/utils.js';
40
- export { default as EditorUI, type EditorUIReadyEvent, type EditorUIUpdateEvent } from './editorui/editorui.js';
41
- export { default as EditorUIView } from './editorui/editoruiview.js';
42
- export { default as BoxedEditorUIView } from './editorui/boxed/boxededitoruiview.js';
43
- export { default as InlineEditableUIView } from './editableui/inline/inlineeditableuiview.js';
44
- export { default as FormHeaderView } from './formheader/formheaderview.js';
45
- export { default as FocusCycler, type FocusableView, type ViewWithFocusCycler, type FocusCyclerForwardCycleEvent, type FocusCyclerBackwardCycleEvent, isViewWithFocusCycler, isFocusable } from './focuscycler.js';
46
- export { default as IconView } from './icon/iconview.js';
47
- export { default as InputView } from './input/inputview.js';
48
- export { default as InputTextView } from './inputtext/inputtextview.js';
49
- export { default as InputNumberView } from './inputnumber/inputnumberview.js';
50
- export { default as TextareaView, type TextareaViewUpdateEvent } from './textarea/textareaview.js';
51
- export { default as IframeView } from './iframe/iframeview.js';
52
- export { default as LabelView } from './label/labelview.js';
53
- export { type LabeledFieldViewCreator, default as LabeledFieldView } from './labeledfield/labeledfieldview.js';
54
- export * from './labeledfield/utils.js';
55
- export { default as ListItemGroupView } from './list/listitemgroupview.js';
56
- export { default as ListItemView } from './list/listitemview.js';
57
- export { default as ListView } from './list/listview.js';
58
- export { default as Notification } from './notification/notification.js';
59
- export { default as ViewModel } from './model.js';
60
- export { default as BalloonPanelView } from './panel/balloon/balloonpanelview.js';
61
- export { default as ContextualBalloon } from './panel/balloon/contextualballoon.js';
62
- export { default as StickyPanelView } from './panel/sticky/stickypanelview.js';
63
- export { default as AutocompleteView, type AutocompleteViewConfig, type AutocompleteResultsView } from './autocomplete/autocompleteview.js';
64
- export { default as SearchTextView, type SearchTextViewSearchEvent, type SearchTextViewConfig } from './search/text/searchtextview.js';
65
- export { default as SearchInfoView } from './search/searchinfoview.js';
66
- export type { default as FilteredView, FilteredViewExecuteEvent } from './search/filteredview.js';
67
- export { default as HighlightedTextView } from './highlightedtext/highlightedtextview.js';
68
- export { default as TooltipManager } from './tooltipmanager.js';
69
- export { default as Template, type TemplateDefinition } from './template.js';
70
- export { default as SpinnerView } from './spinner/spinnerview.js';
71
- export { default as ToolbarView } from './toolbar/toolbarview.js';
72
- export { default as ToolbarLineBreakView } from './toolbar/toolbarlinebreakview.js';
73
- export { default as ToolbarSeparatorView } from './toolbar/toolbarseparatorview.js';
74
- export { default as normalizeToolbarConfig } from './toolbar/normalizetoolbarconfig.js';
75
- export { default as BalloonToolbar, type BalloonToolbarShowEvent } from './toolbar/balloon/balloontoolbar.js';
76
- export { default as BlockToolbar } from './toolbar/block/blocktoolbar.js';
77
- export { default as ViewCollection } from './viewcollection.js';
78
- import './augmentation.js';