@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.
- 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,185 +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/button/buttonview
|
|
11
|
-
*/
|
|
12
|
-
import View from '../view.js';
|
|
13
|
-
import IconView from '../icon/iconview.js';
|
|
14
|
-
import type ViewCollection from '../viewcollection.js';
|
|
15
|
-
import type { default as Button } from './button.js';
|
|
16
|
-
import type ButtonLabel from './buttonlabel.js';
|
|
17
|
-
import { type Locale } from '@ckeditor/ckeditor5-utils';
|
|
18
|
-
import '../../theme/components/button/button.css';
|
|
19
|
-
/**
|
|
20
|
-
* The button view class.
|
|
21
|
-
*
|
|
22
|
-
* ```ts
|
|
23
|
-
* const view = new ButtonView();
|
|
24
|
-
*
|
|
25
|
-
* view.set( {
|
|
26
|
-
* label: 'A button',
|
|
27
|
-
* keystroke: 'Ctrl+B',
|
|
28
|
-
* tooltip: true,
|
|
29
|
-
* withText: true
|
|
30
|
-
* } );
|
|
31
|
-
*
|
|
32
|
-
* view.render();
|
|
33
|
-
*
|
|
34
|
-
* document.body.append( view.element );
|
|
35
|
-
* ```
|
|
36
|
-
*/
|
|
37
|
-
export default class ButtonView extends View<HTMLButtonElement> implements Button {
|
|
38
|
-
/**
|
|
39
|
-
* Collection of the child views inside of the button {@link #element}.
|
|
40
|
-
*/
|
|
41
|
-
readonly children: ViewCollection;
|
|
42
|
-
/**
|
|
43
|
-
* Label of the button view. Its text is configurable using the {@link #label label attribute}.
|
|
44
|
-
*
|
|
45
|
-
* If not configured otherwise in the `constructor()`, by default the label is an instance
|
|
46
|
-
* of {@link module:ui/button/buttonlabelview~ButtonLabelView}.
|
|
47
|
-
*/
|
|
48
|
-
readonly labelView: ButtonLabel;
|
|
49
|
-
/**
|
|
50
|
-
* The icon view of the button. Will be added to {@link #children} when the
|
|
51
|
-
* {@link #icon icon attribute} is defined.
|
|
52
|
-
*/
|
|
53
|
-
readonly iconView: IconView;
|
|
54
|
-
/**
|
|
55
|
-
* A view displaying the keystroke of the button next to the {@link #labelView label}.
|
|
56
|
-
* Added to {@link #children} when the {@link #withKeystroke `withKeystroke` attribute}
|
|
57
|
-
* is defined.
|
|
58
|
-
*/
|
|
59
|
-
readonly keystrokeView: View;
|
|
60
|
-
/**
|
|
61
|
-
* @inheritDoc
|
|
62
|
-
*/
|
|
63
|
-
class: string | undefined;
|
|
64
|
-
/**
|
|
65
|
-
* @inheritDoc
|
|
66
|
-
*/
|
|
67
|
-
labelStyle: string | undefined;
|
|
68
|
-
/**
|
|
69
|
-
* @inheritDoc
|
|
70
|
-
*/
|
|
71
|
-
icon: string | undefined;
|
|
72
|
-
/**
|
|
73
|
-
* @inheritDoc
|
|
74
|
-
*/
|
|
75
|
-
isEnabled: boolean;
|
|
76
|
-
/**
|
|
77
|
-
* @inheritDoc
|
|
78
|
-
*/
|
|
79
|
-
isOn: boolean;
|
|
80
|
-
/**
|
|
81
|
-
* @inheritDoc
|
|
82
|
-
*/
|
|
83
|
-
isVisible: boolean;
|
|
84
|
-
/**
|
|
85
|
-
* @inheritDoc
|
|
86
|
-
*/
|
|
87
|
-
isToggleable: boolean;
|
|
88
|
-
/**
|
|
89
|
-
* @inheritDoc
|
|
90
|
-
*/
|
|
91
|
-
keystroke: string | undefined;
|
|
92
|
-
/**
|
|
93
|
-
* @inheritDoc
|
|
94
|
-
*/
|
|
95
|
-
label: string | undefined;
|
|
96
|
-
/**
|
|
97
|
-
* @inheritDoc
|
|
98
|
-
*/
|
|
99
|
-
tabindex: number;
|
|
100
|
-
/**
|
|
101
|
-
* @inheritDoc
|
|
102
|
-
*/
|
|
103
|
-
tooltip: Button['tooltip'];
|
|
104
|
-
/**
|
|
105
|
-
* @inheritDoc
|
|
106
|
-
*/
|
|
107
|
-
tooltipPosition: Button['tooltipPosition'];
|
|
108
|
-
/**
|
|
109
|
-
* @inheritDoc
|
|
110
|
-
*/
|
|
111
|
-
type: Button['type'];
|
|
112
|
-
/**
|
|
113
|
-
* @inheritDoc
|
|
114
|
-
*/
|
|
115
|
-
withText: boolean;
|
|
116
|
-
/**
|
|
117
|
-
* @inheritDoc
|
|
118
|
-
*/
|
|
119
|
-
withKeystroke: boolean;
|
|
120
|
-
/**
|
|
121
|
-
* @inheritDoc
|
|
122
|
-
*/
|
|
123
|
-
role: string | undefined;
|
|
124
|
-
/**
|
|
125
|
-
* @inheritDoc
|
|
126
|
-
*/
|
|
127
|
-
ariaLabel?: string | undefined;
|
|
128
|
-
/**
|
|
129
|
-
* @inheritDoc
|
|
130
|
-
*/
|
|
131
|
-
ariaLabelledBy: string | undefined;
|
|
132
|
-
/**
|
|
133
|
-
* Tooltip of the button bound to the template.
|
|
134
|
-
*
|
|
135
|
-
* @see #tooltip
|
|
136
|
-
* @see module:ui/button/buttonview~ButtonView#_getTooltipString
|
|
137
|
-
* @internal
|
|
138
|
-
* @observable
|
|
139
|
-
*/
|
|
140
|
-
_tooltipString: string;
|
|
141
|
-
/**
|
|
142
|
-
* Delayed focus function for focus handling in Safari.
|
|
143
|
-
*/
|
|
144
|
-
private _focusDelayed;
|
|
145
|
-
/**
|
|
146
|
-
* Creates an instance of the button view class.
|
|
147
|
-
*
|
|
148
|
-
* @param locale The {@link module:core/editor/editor~Editor#locale} instance.
|
|
149
|
-
* @param labelView The instance of the button's label. If not provided, an instance of
|
|
150
|
-
* {@link module:ui/button/buttonlabelview~ButtonLabelView} is used.
|
|
151
|
-
*/
|
|
152
|
-
constructor(locale?: Locale, labelView?: ButtonLabel);
|
|
153
|
-
/**
|
|
154
|
-
* @inheritDoc
|
|
155
|
-
*/
|
|
156
|
-
render(): void;
|
|
157
|
-
/**
|
|
158
|
-
* Focuses the {@link #element} of the button.
|
|
159
|
-
*/
|
|
160
|
-
focus(): void;
|
|
161
|
-
/**
|
|
162
|
-
* @inheritDoc
|
|
163
|
-
*/
|
|
164
|
-
destroy(): void;
|
|
165
|
-
/**
|
|
166
|
-
* Binds the label view instance it with button attributes.
|
|
167
|
-
*/
|
|
168
|
-
private _setupLabelView;
|
|
169
|
-
/**
|
|
170
|
-
* Creates a view that displays a keystroke next to a {@link #labelView label }
|
|
171
|
-
* and binds it with button attributes.
|
|
172
|
-
*/
|
|
173
|
-
private _createKeystrokeView;
|
|
174
|
-
/**
|
|
175
|
-
* Gets the text for the tooltip from the combination of
|
|
176
|
-
* {@link #tooltip}, {@link #label} and {@link #keystroke} attributes.
|
|
177
|
-
*
|
|
178
|
-
* @see #tooltip
|
|
179
|
-
* @see #_tooltipString
|
|
180
|
-
* @param tooltip Button tooltip.
|
|
181
|
-
* @param label Button label.
|
|
182
|
-
* @param keystroke Button keystroke.
|
|
183
|
-
*/
|
|
184
|
-
private _getTooltipString;
|
|
185
|
-
}
|
|
@@ -1,49 +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/button/switchbuttonview
|
|
11
|
-
*/
|
|
12
|
-
import View from '../view.js';
|
|
13
|
-
import ButtonView from './buttonview.js';
|
|
14
|
-
import type { Locale } from '@ckeditor/ckeditor5-utils';
|
|
15
|
-
import '../../theme/components/button/switchbutton.css';
|
|
16
|
-
/**
|
|
17
|
-
* The switch button view class.
|
|
18
|
-
*
|
|
19
|
-
* ```ts
|
|
20
|
-
* const view = new SwitchButtonView();
|
|
21
|
-
*
|
|
22
|
-
* view.set( {
|
|
23
|
-
* withText: true,
|
|
24
|
-
* label: 'Switch me!'
|
|
25
|
-
* } );
|
|
26
|
-
*
|
|
27
|
-
* view.render();
|
|
28
|
-
*
|
|
29
|
-
* document.body.append( view.element );
|
|
30
|
-
* ```
|
|
31
|
-
*/
|
|
32
|
-
export default class SwitchButtonView extends ButtonView {
|
|
33
|
-
/**
|
|
34
|
-
* The toggle switch of the button.
|
|
35
|
-
*/
|
|
36
|
-
readonly toggleSwitchView: View;
|
|
37
|
-
/**
|
|
38
|
-
* @inheritDoc
|
|
39
|
-
*/
|
|
40
|
-
constructor(locale?: Locale);
|
|
41
|
-
/**
|
|
42
|
-
* @inheritDoc
|
|
43
|
-
*/
|
|
44
|
-
render(): void;
|
|
45
|
-
/**
|
|
46
|
-
* Creates a toggle child view.
|
|
47
|
-
*/
|
|
48
|
-
private _createToggleView;
|
|
49
|
-
}
|
|
@@ -1,74 +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/collapsible/collapsibleview
|
|
11
|
-
*/
|
|
12
|
-
import type { Locale } from '@ckeditor/ckeditor5-utils';
|
|
13
|
-
import View from '../view.js';
|
|
14
|
-
import ButtonView from '../button/buttonview.js';
|
|
15
|
-
import type ViewCollection from '../viewcollection.js';
|
|
16
|
-
import type { FocusableView } from '../focuscycler.js';
|
|
17
|
-
import '../../theme/components/collapsible/collapsible.css';
|
|
18
|
-
/**
|
|
19
|
-
* A collapsible UI component. Consists of a labeled button and a container which can be collapsed
|
|
20
|
-
* by clicking the button. The collapsible container can be a host to other UI views.
|
|
21
|
-
*
|
|
22
|
-
* @internal
|
|
23
|
-
*/
|
|
24
|
-
export default class CollapsibleView extends View {
|
|
25
|
-
/**
|
|
26
|
-
* `true` when the container with {@link #children} is collapsed. `false` otherwise.
|
|
27
|
-
*
|
|
28
|
-
* @observable
|
|
29
|
-
*/
|
|
30
|
-
isCollapsed: boolean;
|
|
31
|
-
/**
|
|
32
|
-
* The text label of the {@link #buttonView}.
|
|
33
|
-
*
|
|
34
|
-
* @observable
|
|
35
|
-
* @default 'Show more'
|
|
36
|
-
*/
|
|
37
|
-
label: string;
|
|
38
|
-
/**
|
|
39
|
-
* The ID of the label inside the {@link #buttonView} that describes the collapsible
|
|
40
|
-
* container for assistive technologies. Set after the button was {@link #render rendered}.
|
|
41
|
-
*
|
|
42
|
-
* @internal
|
|
43
|
-
* @readonly
|
|
44
|
-
* @observable
|
|
45
|
-
*/
|
|
46
|
-
_collapsibleAriaLabelUid: string | undefined;
|
|
47
|
-
/**
|
|
48
|
-
* The main button that, when clicked, collapses or expands the container with {@link #children}.
|
|
49
|
-
*/
|
|
50
|
-
readonly buttonView: ButtonView;
|
|
51
|
-
/**
|
|
52
|
-
* A collection of the child views that can be collapsed by clicking the {@link #buttonView}.
|
|
53
|
-
*/
|
|
54
|
-
readonly children: ViewCollection<FocusableView>;
|
|
55
|
-
/**
|
|
56
|
-
* Creates an instance of the collapsible view.
|
|
57
|
-
*
|
|
58
|
-
* @param locale The {@link module:core/editor/editor~Editor#locale} instance.
|
|
59
|
-
* @param childViews An optional array of initial child views to be inserted into the collapsible.
|
|
60
|
-
*/
|
|
61
|
-
constructor(locale: Locale, childViews?: Array<FocusableView>);
|
|
62
|
-
/**
|
|
63
|
-
* @inheritDoc
|
|
64
|
-
*/
|
|
65
|
-
render(): void;
|
|
66
|
-
/**
|
|
67
|
-
* Focuses the first focusable.
|
|
68
|
-
*/
|
|
69
|
-
focus(): void;
|
|
70
|
-
/**
|
|
71
|
-
* Creates the main {@link #buttonView} of the collapsible.
|
|
72
|
-
*/
|
|
73
|
-
private _createButtonView;
|
|
74
|
-
}
|
|
@@ -1,136 +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/colorgrid/colorgridview
|
|
11
|
-
*/
|
|
12
|
-
import View from '../view.js';
|
|
13
|
-
import ColorTileView from './colortileview.js';
|
|
14
|
-
import type DropdownPanelFocusable from '../dropdown/dropdownpanelfocusable.js';
|
|
15
|
-
import type ViewCollection from '../viewcollection.js';
|
|
16
|
-
import { FocusTracker, KeystrokeHandler, type Locale } from '@ckeditor/ckeditor5-utils';
|
|
17
|
-
import '../../theme/components/colorgrid/colorgrid.css';
|
|
18
|
-
/**
|
|
19
|
-
* A grid of {@link module:ui/colorgrid/colortileview~ColorTileView color tiles}.
|
|
20
|
-
*/
|
|
21
|
-
export default class ColorGridView extends View implements DropdownPanelFocusable {
|
|
22
|
-
/**
|
|
23
|
-
* A number of columns for the tiles grid.
|
|
24
|
-
*/
|
|
25
|
-
readonly columns: number;
|
|
26
|
-
/**
|
|
27
|
-
* Collection of the child tile views.
|
|
28
|
-
*/
|
|
29
|
-
readonly items: ViewCollection<ColorTileView>;
|
|
30
|
-
/**
|
|
31
|
-
* Tracks information about DOM focus in the grid.
|
|
32
|
-
*/
|
|
33
|
-
readonly focusTracker: FocusTracker;
|
|
34
|
-
/**
|
|
35
|
-
* Instance of the {@link module:utils/keystrokehandler~KeystrokeHandler}.
|
|
36
|
-
*/
|
|
37
|
-
readonly keystrokes: KeystrokeHandler;
|
|
38
|
-
/**
|
|
39
|
-
* The color of the currently selected color tile in {@link #items}.
|
|
40
|
-
*
|
|
41
|
-
* @observable
|
|
42
|
-
*/
|
|
43
|
-
selectedColor: string | undefined | null;
|
|
44
|
-
/**
|
|
45
|
-
* Creates an instance of a color grid containing {@link module:ui/colorgrid/colortileview~ColorTileView tiles}.
|
|
46
|
-
*
|
|
47
|
-
* @fires execute
|
|
48
|
-
* @param locale The localization services instance.
|
|
49
|
-
* @param options Component configuration
|
|
50
|
-
* @param options.colorDefinitions Array with definitions
|
|
51
|
-
* required to create the {@link module:ui/colorgrid/colortileview~ColorTileView tiles}.
|
|
52
|
-
* @param options.columns A number of columns to display the tiles.
|
|
53
|
-
*/
|
|
54
|
-
constructor(locale?: Locale, options?: {
|
|
55
|
-
colorDefinitions?: Array<ColorDefinition>;
|
|
56
|
-
columns?: number;
|
|
57
|
-
});
|
|
58
|
-
/**
|
|
59
|
-
* Focuses the first focusable in {@link #items}.
|
|
60
|
-
*/
|
|
61
|
-
focus(): void;
|
|
62
|
-
/**
|
|
63
|
-
* Focuses the last focusable in {@link #items}.
|
|
64
|
-
*/
|
|
65
|
-
focusLast(): void;
|
|
66
|
-
/**
|
|
67
|
-
* @inheritDoc
|
|
68
|
-
*/
|
|
69
|
-
render(): void;
|
|
70
|
-
/**
|
|
71
|
-
* @inheritDoc
|
|
72
|
-
*/
|
|
73
|
-
destroy(): void;
|
|
74
|
-
}
|
|
75
|
-
/**
|
|
76
|
-
* A color definition used to create a {@link module:ui/colorgrid/colortileview~ColorTileView}.
|
|
77
|
-
*
|
|
78
|
-
* ```json
|
|
79
|
-
* {
|
|
80
|
-
* color: 'hsl(0, 0%, 75%)',
|
|
81
|
-
* label: 'Light Grey',
|
|
82
|
-
* options: {
|
|
83
|
-
* hasBorder: true
|
|
84
|
-
* }
|
|
85
|
-
* }
|
|
86
|
-
* ```
|
|
87
|
-
*/
|
|
88
|
-
export interface ColorDefinition {
|
|
89
|
-
/**
|
|
90
|
-
* String representing a color.
|
|
91
|
-
* It is used as value of background-color style in {@link module:ui/colorgrid/colortileview~ColorTileView}.
|
|
92
|
-
*/
|
|
93
|
-
color: string;
|
|
94
|
-
/**
|
|
95
|
-
* String used as label for {@link module:ui/colorgrid/colortileview~ColorTileView}.
|
|
96
|
-
*/
|
|
97
|
-
label: string;
|
|
98
|
-
/**
|
|
99
|
-
* Additional options passed to create a {@link module:ui/colorgrid/colortileview~ColorTileView}.
|
|
100
|
-
*/
|
|
101
|
-
options: {
|
|
102
|
-
/**
|
|
103
|
-
* A flag that indicates if special a CSS class should be added
|
|
104
|
-
* to {@link module:ui/colorgrid/colortileview~ColorTileView}, which renders a border around it.
|
|
105
|
-
*/
|
|
106
|
-
hasBorder: boolean;
|
|
107
|
-
};
|
|
108
|
-
}
|
|
109
|
-
/**
|
|
110
|
-
* Fired when the `ColorTileView` for the picked item is executed.
|
|
111
|
-
*
|
|
112
|
-
* @eventName ~ColorGridView#execute
|
|
113
|
-
* @param data Additional information about the event.
|
|
114
|
-
*/
|
|
115
|
-
export type ColorGridViewExecuteEvent = {
|
|
116
|
-
name: 'execute';
|
|
117
|
-
args: [data: ColorGridViewExecuteEventData];
|
|
118
|
-
};
|
|
119
|
-
/**
|
|
120
|
-
* The data of {@link ~ColorGridViewExecuteEvent execute event}.
|
|
121
|
-
*/
|
|
122
|
-
export interface ColorGridViewExecuteEventData {
|
|
123
|
-
/**
|
|
124
|
-
* The value of the selected color ({@link module:ui/colorgrid/colorgridview~ColorDefinition#color `color.color`}).
|
|
125
|
-
*/
|
|
126
|
-
value: string;
|
|
127
|
-
/**
|
|
128
|
-
* The `hasBorder` property of the selected color
|
|
129
|
-
* ({@link module:ui/colorgrid/colorgridview~ColorDefinition#options `color.options.hasBorder`}).
|
|
130
|
-
*/
|
|
131
|
-
hasBorder: boolean;
|
|
132
|
-
/**
|
|
133
|
-
* The label of the selected color ({@link module:ui/colorgrid/colorgridview~ColorDefinition#label `color.label`})
|
|
134
|
-
*/
|
|
135
|
-
label: string;
|
|
136
|
-
}
|
|
@@ -1,32 +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/colorgrid/colortileview
|
|
11
|
-
*/
|
|
12
|
-
import ButtonView from '../button/buttonview.js';
|
|
13
|
-
import type { Locale } from '@ckeditor/ckeditor5-utils';
|
|
14
|
-
/**
|
|
15
|
-
* This class represents a single color tile in the {@link module:ui/colorgrid/colorgridview~ColorGridView}.
|
|
16
|
-
*/
|
|
17
|
-
export default class ColorTileView extends ButtonView {
|
|
18
|
-
/**
|
|
19
|
-
* String representing a color shown as tile's background.
|
|
20
|
-
*/
|
|
21
|
-
color: string | undefined;
|
|
22
|
-
/**
|
|
23
|
-
* A flag that toggles a special CSS class responsible for displaying
|
|
24
|
-
* a border around the button.
|
|
25
|
-
*/
|
|
26
|
-
hasBorder: boolean;
|
|
27
|
-
constructor(locale?: Locale);
|
|
28
|
-
/**
|
|
29
|
-
* @inheritDoc
|
|
30
|
-
*/
|
|
31
|
-
render(): void;
|
|
32
|
-
}
|
|
@@ -1,51 +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/colorgrid/utils
|
|
11
|
-
*/
|
|
12
|
-
import type { Locale } from '@ckeditor/ckeditor5-utils';
|
|
13
|
-
export type ColorOption = string | {
|
|
14
|
-
color: string;
|
|
15
|
-
label?: string;
|
|
16
|
-
hasBorder?: boolean;
|
|
17
|
-
};
|
|
18
|
-
export interface NormalizedColorOption {
|
|
19
|
-
model: string;
|
|
20
|
-
label: string;
|
|
21
|
-
hasBorder: boolean;
|
|
22
|
-
view: {
|
|
23
|
-
name: string;
|
|
24
|
-
styles: {
|
|
25
|
-
color: string;
|
|
26
|
-
};
|
|
27
|
-
};
|
|
28
|
-
}
|
|
29
|
-
/**
|
|
30
|
-
* Returns color configuration options as defined in `editor.config.(fontColor|fontBackgroundColor).colors` or
|
|
31
|
-
* `editor.config.table.(tableProperties|tableCellProperties).(background|border).colors
|
|
32
|
-
* but processed to account for editor localization in the correct language.
|
|
33
|
-
*
|
|
34
|
-
* Note: The reason behind this method is that there is no way to use {@link module:utils/locale~Locale#t}
|
|
35
|
-
* when the user configuration is defined because the editor does not exist yet.
|
|
36
|
-
*
|
|
37
|
-
* @param locale The {@link module:core/editor/editor~Editor#locale} instance.
|
|
38
|
-
*/
|
|
39
|
-
export declare function getLocalizedColorOptions(locale: Locale, options: Array<NormalizedColorOption>): Array<NormalizedColorOption>;
|
|
40
|
-
/**
|
|
41
|
-
* Creates a unified color definition object from color configuration options.
|
|
42
|
-
* The object contains the information necessary to both render the UI and initialize the conversion.
|
|
43
|
-
*/
|
|
44
|
-
export declare function normalizeColorOptions(options: Array<ColorOption>): Array<NormalizedColorOption>;
|
|
45
|
-
/**
|
|
46
|
-
* Creates a normalized color definition from the user-defined configuration.
|
|
47
|
-
* The "normalization" means it will create full
|
|
48
|
-
* {@link module:ui/colorgrid/colorgridview~ColorDefinition `ColorDefinition-like`}
|
|
49
|
-
* object for string values, and add a `view` property, for each definition.
|
|
50
|
-
*/
|
|
51
|
-
export declare function normalizeSingleColorDefinition(color: ColorOption): NormalizedColorOption;
|
|
@@ -1,146 +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/colorpicker/colorpickerview
|
|
11
|
-
*/
|
|
12
|
-
import { type ColorPickerViewConfig } from './utils.js';
|
|
13
|
-
import { type Locale } from '@ckeditor/ckeditor5-utils';
|
|
14
|
-
import View from '../view.js';
|
|
15
|
-
import type ViewCollection from '../viewcollection.js';
|
|
16
|
-
import { HexBase } from 'vanilla-colorful/lib/entrypoints/hex';
|
|
17
|
-
import '../../theme/components/colorpicker/colorpicker.css';
|
|
18
|
-
declare global {
|
|
19
|
-
interface HTMLElementTagNameMap {
|
|
20
|
-
'hex-color-picker': HexBase;
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* A class which represents a color picker with an input field for defining custom colors.
|
|
25
|
-
*/
|
|
26
|
-
export default class ColorPickerView extends View {
|
|
27
|
-
/**
|
|
28
|
-
* Element with saturation and hue sliders.
|
|
29
|
-
*/
|
|
30
|
-
picker: HexBase;
|
|
31
|
-
/**
|
|
32
|
-
* Container for a `#` sign prefix and an input for displaying and defining custom colors
|
|
33
|
-
* in HEX format.
|
|
34
|
-
*/
|
|
35
|
-
hexInputRow: ColorPickerInputRowView;
|
|
36
|
-
/**
|
|
37
|
-
* Current color selected in the color picker. It can be set by the component itself
|
|
38
|
-
* (through the palette or input) or from the outside (e.g. to reflect the current selection color).
|
|
39
|
-
*/
|
|
40
|
-
color: string;
|
|
41
|
-
/**
|
|
42
|
-
* List of slider views of the color picker.
|
|
43
|
-
*/
|
|
44
|
-
slidersView: ViewCollection<SliderView>;
|
|
45
|
-
/**
|
|
46
|
-
* An internal representation of a color.
|
|
47
|
-
*
|
|
48
|
-
* Since the picker uses a hex format, that's how we store it.
|
|
49
|
-
*
|
|
50
|
-
* Since this is unified color format it won't fire a change event if color is changed
|
|
51
|
-
* from `#f00` to `#ff0000` (same value, different format).
|
|
52
|
-
*
|
|
53
|
-
* @observable
|
|
54
|
-
* @private
|
|
55
|
-
*/
|
|
56
|
-
_hexColor: string;
|
|
57
|
-
/**
|
|
58
|
-
* Debounced function updating the `color` property in the component
|
|
59
|
-
* and firing the `ColorPickerColorSelectedEvent`. Executed whenever color in component
|
|
60
|
-
* is changed by the user interaction (through the palette or input).
|
|
61
|
-
*
|
|
62
|
-
* @private
|
|
63
|
-
*/
|
|
64
|
-
private _debounceColorPickerEvent;
|
|
65
|
-
/**
|
|
66
|
-
* A reference to the configuration of the color picker specified in the constructor.
|
|
67
|
-
*
|
|
68
|
-
* @private
|
|
69
|
-
*/
|
|
70
|
-
private _config;
|
|
71
|
-
/**
|
|
72
|
-
* Creates a view of color picker.
|
|
73
|
-
*
|
|
74
|
-
* @param locale
|
|
75
|
-
* @param config
|
|
76
|
-
*/
|
|
77
|
-
constructor(locale: Locale | undefined, config?: ColorPickerViewConfig);
|
|
78
|
-
/**
|
|
79
|
-
* Renders color picker in the view.
|
|
80
|
-
*/
|
|
81
|
-
render(): void;
|
|
82
|
-
/**
|
|
83
|
-
* Focuses the first pointer in color picker.
|
|
84
|
-
*
|
|
85
|
-
*/
|
|
86
|
-
focus(): void;
|
|
87
|
-
/**
|
|
88
|
-
* Creates collection of sliders in color picker.
|
|
89
|
-
*
|
|
90
|
-
* @private
|
|
91
|
-
*/
|
|
92
|
-
private _createSlidersView;
|
|
93
|
-
/**
|
|
94
|
-
* Creates input row for defining custom colors in color picker.
|
|
95
|
-
*
|
|
96
|
-
* @private
|
|
97
|
-
*/
|
|
98
|
-
private _createInputRow;
|
|
99
|
-
/**
|
|
100
|
-
* Creates the input where user can type or paste the color in hex format.
|
|
101
|
-
*
|
|
102
|
-
* @private
|
|
103
|
-
*/
|
|
104
|
-
private _createColorInput;
|
|
105
|
-
}
|
|
106
|
-
declare class SliderView extends View {
|
|
107
|
-
/**
|
|
108
|
-
* @param element HTML element of slider in color picker.
|
|
109
|
-
*/
|
|
110
|
-
constructor(element: HTMLElement);
|
|
111
|
-
/**
|
|
112
|
-
* Focuses element.
|
|
113
|
-
*/
|
|
114
|
-
focus(): void;
|
|
115
|
-
}
|
|
116
|
-
declare class ColorPickerInputRowView extends View {
|
|
117
|
-
/**
|
|
118
|
-
* A collection of row items (buttons, dropdowns, etc.).
|
|
119
|
-
*/
|
|
120
|
-
readonly children: ViewCollection;
|
|
121
|
-
/**
|
|
122
|
-
* Creates an instance of the form row class.
|
|
123
|
-
*
|
|
124
|
-
* @param locale The locale instance.
|
|
125
|
-
*/
|
|
126
|
-
constructor(locale: Locale, children?: Array<View>);
|
|
127
|
-
}
|
|
128
|
-
/**
|
|
129
|
-
* An event fired whenever the color was selected through the color picker palette
|
|
130
|
-
* or the color picker input.
|
|
131
|
-
*
|
|
132
|
-
* This even fires only when the user changes the color. It does not fire when the color
|
|
133
|
-
* is changed programmatically, e.g. via
|
|
134
|
-
* {@link module:ui/colorpicker/colorpickerview~ColorPickerView#color}.
|
|
135
|
-
*
|
|
136
|
-
* @eventName ~ColorPickerView#colorSelected
|
|
137
|
-
*/
|
|
138
|
-
export type ColorPickerColorSelectedEvent = {
|
|
139
|
-
name: 'colorSelected';
|
|
140
|
-
args: [
|
|
141
|
-
{
|
|
142
|
-
color: string;
|
|
143
|
-
}
|
|
144
|
-
];
|
|
145
|
-
};
|
|
146
|
-
export {};
|