@ckeditor/ckeditor5-ui 41.3.0-alpha.3 → 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.
- package/ckeditor5-metadata.json +1 -1
- package/lang/contexts.json +12 -2
- package/lang/translations/af.po +210 -0
- package/lang/translations/ar.po +44 -4
- package/lang/translations/ast.po +44 -4
- package/lang/translations/az.po +44 -4
- package/lang/translations/bg.po +44 -4
- package/lang/translations/bn.po +44 -4
- package/lang/translations/bs.po +210 -0
- package/lang/translations/ca.po +44 -4
- package/lang/translations/cs.po +44 -4
- package/lang/translations/da.po +44 -4
- package/lang/translations/de-ch.po +44 -4
- package/lang/translations/de.po +44 -4
- package/lang/translations/el.po +44 -4
- package/lang/translations/en-au.po +44 -4
- package/lang/translations/en-gb.po +44 -4
- package/lang/translations/en.po +44 -4
- package/lang/translations/eo.po +44 -4
- package/lang/translations/es-co.po +210 -0
- package/lang/translations/es.po +44 -4
- package/lang/translations/et.po +44 -4
- package/lang/translations/eu.po +44 -4
- package/lang/translations/fa.po +44 -4
- package/lang/translations/fi.po +44 -4
- package/lang/translations/fr.po +44 -4
- package/lang/translations/gl.po +44 -4
- package/lang/translations/he.po +44 -4
- package/lang/translations/hi.po +44 -4
- package/lang/translations/hr.po +44 -4
- package/lang/translations/hu.po +44 -4
- package/lang/translations/id.po +44 -4
- package/lang/translations/it.po +44 -4
- package/lang/translations/ja.po +44 -4
- package/lang/translations/jv.po +210 -0
- package/lang/translations/km.po +44 -4
- package/lang/translations/kn.po +44 -4
- package/lang/translations/ko.po +44 -4
- package/lang/translations/ku.po +44 -4
- package/lang/translations/lt.po +44 -4
- package/lang/translations/lv.po +44 -4
- package/lang/translations/ms.po +44 -4
- package/lang/translations/nb.po +44 -4
- package/lang/translations/ne.po +44 -4
- package/lang/translations/nl.po +44 -4
- package/lang/translations/no.po +44 -4
- package/lang/translations/pl.po +44 -4
- package/lang/translations/pt-br.po +44 -4
- package/lang/translations/pt.po +44 -4
- package/lang/translations/ro.po +44 -4
- package/lang/translations/ru.po +44 -4
- package/lang/translations/sk.po +44 -4
- package/lang/translations/sl.po +44 -4
- package/lang/translations/sq.po +44 -4
- package/lang/translations/sr-latn.po +44 -4
- package/lang/translations/sr.po +44 -4
- package/lang/translations/sv.po +44 -4
- package/lang/translations/th.po +44 -4
- package/lang/translations/tk.po +44 -4
- package/lang/translations/tr.po +44 -4
- package/lang/translations/tt.po +44 -4
- package/lang/translations/ug.po +44 -4
- package/lang/translations/uk.po +44 -4
- package/lang/translations/ur.po +44 -4
- package/lang/translations/uz.po +44 -4
- package/lang/translations/vi.po +44 -4
- package/lang/translations/zh-cn.po +44 -4
- package/lang/translations/zh.po +44 -4
- package/package.json +3 -4
- package/src/button/button.d.ts +6 -0
- package/src/button/buttonview.d.ts +4 -0
- package/src/button/buttonview.js +1 -0
- package/src/button/filedialogbuttonview.d.ts +80 -0
- package/src/button/filedialogbuttonview.js +103 -0
- package/src/dropdown/utils.js +1 -5
- package/src/editorui/accessibilityhelp/accessibilityhelp.d.ts +4 -0
- package/src/editorui/accessibilityhelp/accessibilityhelp.js +25 -9
- package/src/index.d.ts +12 -3
- package/src/index.js +10 -2
- package/src/menubar/menubarmenubuttonview.d.ts +35 -0
- package/src/menubar/menubarmenubuttonview.js +64 -0
- package/src/menubar/menubarmenulistitembuttonview.d.ts +21 -0
- package/src/menubar/menubarmenulistitembuttonview.js +30 -0
- package/src/menubar/menubarmenulistitemfiledialogbuttonview.d.ts +23 -0
- package/src/menubar/menubarmenulistitemfiledialogbuttonview.js +32 -0
- package/src/menubar/menubarmenulistitemview.d.ts +25 -0
- package/src/menubar/menubarmenulistitemview.js +34 -0
- package/src/menubar/menubarmenulistview.d.ts +24 -0
- package/src/menubar/menubarmenulistview.js +23 -0
- package/src/menubar/menubarmenupanelview.d.ts +53 -0
- package/src/menubar/menubarmenupanelview.js +60 -0
- package/src/menubar/menubarmenuview.d.ts +109 -0
- package/src/menubar/menubarmenuview.js +159 -0
- package/src/menubar/menubarview.d.ts +164 -0
- package/src/menubar/menubarview.js +254 -0
- package/src/menubar/utils.d.ts +432 -0
- package/src/menubar/utils.js +1320 -0
- package/src/toolbar/toolbarview.js +5 -3
- package/src/tooltipmanager.d.ts +11 -0
- package/src/tooltipmanager.js +37 -6
- package/theme/components/menubar/menubar.css +10 -0
- package/theme/components/menubar/menubarmenu.css +9 -0
- package/theme/components/menubar/menubarmenubutton.css +11 -0
- package/theme/components/menubar/menubarmenulistitem.css +10 -0
- package/theme/components/menubar/menubarmenulistitembutton.css +10 -0
- package/theme/components/menubar/menubarmenupanel.css +62 -0
- package/theme/components/tooltip/tooltip.css +0 -3
- package/theme/globals/_reset.css +13 -0
- package/theme/globals/globals.css +1 -0
- package/dist/content-index.css +0 -4
- package/dist/editor-index.css +0 -445
- package/dist/index.css +0 -844
- package/dist/index.css.map +0 -1
- package/dist/translations/ar.d.ts +0 -8
- package/dist/translations/ar.js +0 -5
- package/dist/translations/ast.d.ts +0 -8
- package/dist/translations/ast.js +0 -5
- package/dist/translations/az.d.ts +0 -8
- package/dist/translations/az.js +0 -5
- package/dist/translations/bg.d.ts +0 -8
- package/dist/translations/bg.js +0 -5
- package/dist/translations/bn.d.ts +0 -8
- package/dist/translations/bn.js +0 -5
- package/dist/translations/ca.d.ts +0 -8
- package/dist/translations/ca.js +0 -5
- package/dist/translations/cs.d.ts +0 -8
- package/dist/translations/cs.js +0 -5
- package/dist/translations/da.d.ts +0 -8
- package/dist/translations/da.js +0 -5
- package/dist/translations/de-ch.d.ts +0 -8
- package/dist/translations/de-ch.js +0 -5
- package/dist/translations/de.d.ts +0 -8
- package/dist/translations/de.js +0 -5
- package/dist/translations/el.d.ts +0 -8
- package/dist/translations/el.js +0 -5
- package/dist/translations/en-au.d.ts +0 -8
- package/dist/translations/en-au.js +0 -5
- package/dist/translations/en-gb.d.ts +0 -8
- package/dist/translations/en-gb.js +0 -5
- package/dist/translations/en.d.ts +0 -8
- package/dist/translations/en.js +0 -5
- package/dist/translations/eo.d.ts +0 -8
- package/dist/translations/eo.js +0 -5
- package/dist/translations/es.d.ts +0 -8
- package/dist/translations/es.js +0 -5
- package/dist/translations/et.d.ts +0 -8
- package/dist/translations/et.js +0 -5
- package/dist/translations/eu.d.ts +0 -8
- package/dist/translations/eu.js +0 -5
- package/dist/translations/fa.d.ts +0 -8
- package/dist/translations/fa.js +0 -5
- package/dist/translations/fi.d.ts +0 -8
- package/dist/translations/fi.js +0 -5
- package/dist/translations/fr.d.ts +0 -8
- package/dist/translations/fr.js +0 -5
- package/dist/translations/gl.d.ts +0 -8
- package/dist/translations/gl.js +0 -5
- package/dist/translations/he.d.ts +0 -8
- package/dist/translations/he.js +0 -5
- package/dist/translations/hi.d.ts +0 -8
- package/dist/translations/hi.js +0 -5
- package/dist/translations/hr.d.ts +0 -8
- package/dist/translations/hr.js +0 -5
- package/dist/translations/hu.d.ts +0 -8
- package/dist/translations/hu.js +0 -5
- package/dist/translations/id.d.ts +0 -8
- package/dist/translations/id.js +0 -5
- package/dist/translations/it.d.ts +0 -8
- package/dist/translations/it.js +0 -5
- package/dist/translations/ja.d.ts +0 -8
- package/dist/translations/ja.js +0 -5
- package/dist/translations/km.d.ts +0 -8
- package/dist/translations/km.js +0 -5
- package/dist/translations/kn.d.ts +0 -8
- package/dist/translations/kn.js +0 -5
- package/dist/translations/ko.d.ts +0 -8
- package/dist/translations/ko.js +0 -5
- package/dist/translations/ku.d.ts +0 -8
- package/dist/translations/ku.js +0 -5
- package/dist/translations/lt.d.ts +0 -8
- package/dist/translations/lt.js +0 -5
- package/dist/translations/lv.d.ts +0 -8
- package/dist/translations/lv.js +0 -5
- package/dist/translations/ms.d.ts +0 -8
- package/dist/translations/ms.js +0 -5
- package/dist/translations/nb.d.ts +0 -8
- package/dist/translations/nb.js +0 -5
- package/dist/translations/ne.d.ts +0 -8
- package/dist/translations/ne.js +0 -5
- package/dist/translations/nl.d.ts +0 -8
- package/dist/translations/nl.js +0 -5
- package/dist/translations/no.d.ts +0 -8
- package/dist/translations/no.js +0 -5
- package/dist/translations/pl.d.ts +0 -8
- package/dist/translations/pl.js +0 -5
- package/dist/translations/pt-br.d.ts +0 -8
- package/dist/translations/pt-br.js +0 -5
- package/dist/translations/pt.d.ts +0 -8
- package/dist/translations/pt.js +0 -5
- package/dist/translations/ro.d.ts +0 -8
- package/dist/translations/ro.js +0 -5
- package/dist/translations/ru.d.ts +0 -8
- package/dist/translations/ru.js +0 -5
- package/dist/translations/sk.d.ts +0 -8
- package/dist/translations/sk.js +0 -5
- package/dist/translations/sl.d.ts +0 -8
- package/dist/translations/sl.js +0 -5
- package/dist/translations/sq.d.ts +0 -8
- package/dist/translations/sq.js +0 -5
- package/dist/translations/sr-latn.d.ts +0 -8
- package/dist/translations/sr-latn.js +0 -5
- package/dist/translations/sr.d.ts +0 -8
- package/dist/translations/sr.js +0 -5
- package/dist/translations/sv.d.ts +0 -8
- package/dist/translations/sv.js +0 -5
- package/dist/translations/th.d.ts +0 -8
- package/dist/translations/th.js +0 -5
- package/dist/translations/tk.d.ts +0 -8
- package/dist/translations/tk.js +0 -5
- package/dist/translations/tr.d.ts +0 -8
- package/dist/translations/tr.js +0 -5
- package/dist/translations/tt.d.ts +0 -8
- package/dist/translations/tt.js +0 -5
- package/dist/translations/ug.d.ts +0 -8
- package/dist/translations/ug.js +0 -5
- package/dist/translations/uk.d.ts +0 -8
- package/dist/translations/uk.js +0 -5
- package/dist/translations/ur.d.ts +0 -8
- package/dist/translations/ur.js +0 -5
- package/dist/translations/uz.d.ts +0 -8
- package/dist/translations/uz.js +0 -5
- package/dist/translations/vi.d.ts +0 -8
- package/dist/translations/vi.js +0 -5
- package/dist/translations/zh-cn.d.ts +0 -8
- package/dist/translations/zh-cn.js +0 -5
- package/dist/translations/zh.d.ts +0 -8
- package/dist/translations/zh.js +0 -5
- package/dist/types/arialiveannouncer.d.ts +0 -102
- package/dist/types/augmentation.d.ts +0 -92
- package/dist/types/autocomplete/autocompleteview.d.ts +0 -85
- package/dist/types/bindings/addkeyboardhandlingforgrid.d.ts +0 -31
- package/dist/types/bindings/clickoutsidehandler.d.ts +0 -32
- package/dist/types/bindings/csstransitiondisablermixin.d.ts +0 -44
- package/dist/types/bindings/draggableviewmixin.d.ts +0 -50
- package/dist/types/bindings/injectcsstransitiondisabler.d.ts +0 -63
- package/dist/types/bindings/preventdefault.d.ts +0 -37
- package/dist/types/bindings/submithandler.d.ts +0 -61
- package/dist/types/button/button.d.ts +0 -179
- package/dist/types/button/buttonlabel.d.ts +0 -38
- package/dist/types/button/buttonlabelview.d.ts +0 -35
- package/dist/types/button/buttonview.d.ts +0 -185
- package/dist/types/button/switchbuttonview.d.ts +0 -49
- package/dist/types/collapsible/collapsibleview.d.ts +0 -74
- package/dist/types/colorgrid/colorgridview.d.ts +0 -136
- package/dist/types/colorgrid/colortileview.d.ts +0 -32
- package/dist/types/colorgrid/utils.d.ts +0 -51
- package/dist/types/colorpicker/colorpickerview.d.ts +0 -146
- package/dist/types/colorpicker/utils.d.ts +0 -52
- package/dist/types/colorselector/colorgridsfragmentview.d.ts +0 -199
- package/dist/types/colorselector/colorpickerfragmentview.d.ts +0 -133
- package/dist/types/colorselector/colorselectorview.d.ts +0 -246
- package/dist/types/colorselector/documentcolorcollection.d.ts +0 -74
- package/dist/types/componentfactory.d.ts +0 -85
- package/dist/types/dialog/dialog.d.ts +0 -277
- package/dist/types/dialog/dialogactionsview.d.ts +0 -73
- package/dist/types/dialog/dialogcontentview.d.ts +0 -31
- package/dist/types/dialog/dialogview.d.ts +0 -260
- package/dist/types/dropdown/button/dropdownbutton.d.ts +0 -29
- package/dist/types/dropdown/button/dropdownbuttonview.d.ts +0 -52
- package/dist/types/dropdown/button/splitbuttonview.d.ts +0 -166
- package/dist/types/dropdown/dropdownpanelfocusable.d.ts +0 -25
- package/dist/types/dropdown/dropdownpanelview.d.ts +0 -66
- package/dist/types/dropdown/dropdownview.d.ts +0 -319
- package/dist/types/dropdown/utils.d.ts +0 -239
- package/dist/types/editableui/editableuiview.d.ts +0 -76
- package/dist/types/editableui/inline/inlineeditableuiview.d.ts +0 -44
- package/dist/types/editorui/accessibilityhelp/accessibilityhelp.d.ts +0 -51
- package/dist/types/editorui/accessibilityhelp/accessibilityhelpcontentview.d.ts +0 -39
- package/dist/types/editorui/bodycollection.d.ts +0 -59
- package/dist/types/editorui/boxed/boxededitoruiview.d.ts +0 -44
- package/dist/types/editorui/editorui.d.ts +0 -292
- package/dist/types/editorui/editoruiview.d.ts +0 -43
- package/dist/types/editorui/poweredby.d.ts +0 -75
- package/dist/types/focuscycler.d.ts +0 -249
- package/dist/types/formheader/formheaderview.d.ts +0 -63
- package/dist/types/highlightedtext/highlightedtextview.d.ts +0 -42
- package/dist/types/icon/iconview.d.ts +0 -92
- package/dist/types/iframe/iframeview.d.ts +0 -54
- package/dist/types/index.d.ts +0 -78
- package/dist/types/input/inputbase.d.ts +0 -123
- package/dist/types/input/inputview.d.ts +0 -40
- package/dist/types/inputnumber/inputnumberview.d.ts +0 -53
- package/dist/types/inputtext/inputtextview.d.ts +0 -22
- package/dist/types/label/labelview.d.ts +0 -40
- package/dist/types/labeledfield/labeledfieldview.d.ts +0 -191
- package/dist/types/labeledfield/utils.d.ts +0 -127
- package/dist/types/labeledinput/labeledinputview.d.ts +0 -129
- package/dist/types/list/listitemgroupview.d.ts +0 -63
- package/dist/types/list/listitemview.d.ts +0 -40
- package/dist/types/list/listseparatorview.d.ts +0 -22
- package/dist/types/list/listview.d.ts +0 -128
- package/dist/types/model.d.ts +0 -26
- package/dist/types/notification/notification.d.ts +0 -215
- package/dist/types/panel/balloon/balloonpanelview.d.ts +0 -689
- package/dist/types/panel/balloon/contextualballoon.d.ts +0 -303
- package/dist/types/panel/sticky/stickypanelview.d.ts +0 -160
- package/dist/types/search/filteredview.d.ts +0 -35
- package/dist/types/search/searchinfoview.d.ts +0 -49
- package/dist/types/search/searchresultsview.d.ts +0 -58
- package/dist/types/search/text/searchtextqueryview.d.ts +0 -80
- package/dist/types/search/text/searchtextview.d.ts +0 -223
- package/dist/types/spinner/spinnerview.d.ts +0 -29
- package/dist/types/template.d.ts +0 -946
- package/dist/types/textarea/textareaview.d.ts +0 -108
- package/dist/types/toolbar/balloon/balloontoolbar.d.ts +0 -121
- package/dist/types/toolbar/block/blockbuttonview.d.ts +0 -39
- package/dist/types/toolbar/block/blocktoolbar.d.ts +0 -157
- package/dist/types/toolbar/normalizetoolbarconfig.d.ts +0 -44
- package/dist/types/toolbar/toolbarlinebreakview.d.ts +0 -22
- package/dist/types/toolbar/toolbarseparatorview.d.ts +0 -22
- package/dist/types/toolbar/toolbarview.d.ts +0 -271
- package/dist/types/tooltipmanager.d.ts +0 -188
- package/dist/types/view.d.ts +0 -426
- 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
|
-
}
|
package/dist/types/model.d.ts
DELETED
|
@@ -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
|
-
};
|