@ckeditor/ckeditor5-ui 48.3.1-alpha.1 → 48.4.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/arialiveannouncer.d.ts +0 -1
- package/dist/autocomplete/autocompleteview.d.ts +0 -1
- package/dist/button/buttonview.d.ts +0 -1
- package/dist/button/listitembuttonview.d.ts +0 -1
- package/dist/button/switchbuttonview.d.ts +0 -1
- package/dist/collapsible/collapsibleview.d.ts +0 -1
- package/dist/colorgrid/colorgridview.d.ts +0 -1
- package/dist/colorpicker/colorpickerview.d.ts +0 -1
- package/dist/colorselector/colorselectorview.d.ts +0 -1
- package/dist/dialog/dialogactionsview.d.ts +0 -1
- package/dist/dialog/dialogview.d.ts +0 -1
- package/dist/dropdown/button/splitbuttonview.d.ts +0 -1
- package/dist/dropdown/dropdownview.d.ts +0 -1
- package/dist/dropdown/menu/dropdownmenubuttonview.d.ts +0 -1
- package/dist/dropdown/menu/dropdownmenulistitembuttonview.d.ts +0 -1
- package/dist/dropdown/menu/dropdownmenulistitemview.d.ts +0 -1
- package/dist/dropdown/menu/dropdownmenunestedmenupanelview.d.ts +0 -1
- package/dist/dropdown/menu/dropdownmenunestedmenuview.d.ts +0 -1
- package/dist/dropdown/utils.d.ts +0 -2
- package/dist/editorui/accessibilityhelp/accessibilityhelp.d.ts +0 -1
- package/dist/editorui/editoruiview.d.ts +0 -1
- package/dist/formheader/formheaderview.d.ts +0 -1
- package/dist/formrow/formrowview.d.ts +0 -1
- package/dist/highlightedtext/highlightedtextview.d.ts +0 -1
- package/dist/icon/iconview.d.ts +0 -1
- package/dist/index-content.css +3 -0
- package/dist/index-content.css.map +1 -0
- package/dist/index-editor.css +1845 -1840
- package/dist/index-editor.css.map +1 -0
- package/dist/index.css +3 -2
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +8 -6
- package/dist/index.js.map +1 -1
- package/dist/input/inputview.d.ts +0 -1
- package/dist/label/labelview.d.ts +0 -1
- package/dist/labeledfield/labeledfieldview.d.ts +0 -1
- package/dist/labeledinput/labeledinputview.d.ts +0 -1
- package/dist/list/listview.d.ts +0 -1
- package/dist/menubar/menubarmenubuttonview.d.ts +0 -1
- package/dist/menubar/menubarmenulistitembuttonview.d.ts +0 -1
- package/dist/menubar/menubarmenulistitemfiledialogbuttonview.d.ts +0 -1
- package/dist/menubar/menubarmenulistitemview.d.ts +0 -1
- package/dist/menubar/menubarmenupanelview.d.ts +0 -1
- package/dist/menubar/menubarmenuview.d.ts +0 -1
- package/dist/menubar/menubarview.d.ts +0 -1
- package/dist/panel/balloon/balloonpanelview.d.ts +0 -1
- package/dist/panel/balloon/contextualballoon.d.ts +0 -2
- package/dist/panel/sticky/stickypanelview.d.ts +0 -1
- package/dist/search/text/searchtextview.d.ts +0 -1
- package/dist/spinner/spinnerview.d.ts +0 -1
- package/dist/textarea/textareaview.d.ts +0 -2
- package/dist/toolbar/block/blockbuttonview.d.ts +0 -1
- package/dist/toolbar/toolbarview.d.ts +0 -1
- package/dist/tooltipmanager.d.ts +0 -1
- package/dist/view.d.ts +0 -1
- package/package.json +7 -6
|
@@ -6,7 +6,6 @@ import type { Editor } from "@ckeditor/ckeditor5-core";
|
|
|
6
6
|
import type { Locale } from "@ckeditor/ckeditor5-utils";
|
|
7
7
|
import { type ViewCollection } from "./viewcollection.js";
|
|
8
8
|
import { View } from "./view.js";
|
|
9
|
-
import "../theme/components/arialiveannouncer/arialiveannouncer.css";
|
|
10
9
|
/**
|
|
11
10
|
* The politeness level of an `aria-live` announcement.
|
|
12
11
|
*
|
|
@@ -9,7 +9,6 @@ import { type PositioningFunction, type Locale } from "@ckeditor/ckeditor5-utils
|
|
|
9
9
|
import { SearchTextView, type SearchTextViewConfig } from "../search/text/searchtextview.js";
|
|
10
10
|
import { type SearchResultsView } from "../search/searchresultsview.js";
|
|
11
11
|
import { type InputBase } from "../input/inputbase.js";
|
|
12
|
-
import "../../theme/components/autocomplete/autocomplete.css";
|
|
13
12
|
/**
|
|
14
13
|
* The autocomplete component's view class. It extends the {@link module:ui/search/text/searchtextview~SearchTextView} class
|
|
15
14
|
* with a floating {@link #resultsView} that shows up when the user starts typing and hides when they blur
|
|
@@ -11,7 +11,6 @@ import { type ViewCollection } from "../viewcollection.js";
|
|
|
11
11
|
import type { Button } from "./button.js";
|
|
12
12
|
import { type ButtonLabel } from "./buttonlabel.js";
|
|
13
13
|
import { type Locale } from "@ckeditor/ckeditor5-utils";
|
|
14
|
-
import "../../theme/components/button/button.css";
|
|
15
14
|
/**
|
|
16
15
|
* The button view class.
|
|
17
16
|
*
|
|
@@ -10,7 +10,6 @@ import { type ButtonLabel } from "./buttonlabel.js";
|
|
|
10
10
|
import { type ViewCollection } from "../viewcollection.js";
|
|
11
11
|
import { ButtonView } from "./buttonview.js";
|
|
12
12
|
import { View } from "../view.js";
|
|
13
|
-
import "../../theme/components/button/listitembutton.css";
|
|
14
13
|
/**
|
|
15
14
|
* Button that is used as dropdown list item entry.
|
|
16
15
|
*/
|
|
@@ -7,7 +7,6 @@ import { ButtonView } from "../button/buttonview.js";
|
|
|
7
7
|
import { type ViewCollection } from "../viewcollection.js";
|
|
8
8
|
import type { FocusableView } from "../focuscycler.js";
|
|
9
9
|
import type { Locale } from "@ckeditor/ckeditor5-utils";
|
|
10
|
-
import "../../theme/components/collapsible/collapsible.css";
|
|
11
10
|
/**
|
|
12
11
|
* A collapsible UI component. Consists of a labeled button and a container which can be collapsed
|
|
13
12
|
* by clicking the button. The collapsible container can be a host to other UI views.
|
|
@@ -10,7 +10,6 @@ import { ColorTileView } from "./colortileview.js";
|
|
|
10
10
|
import { type DropdownPanelFocusable } from "../dropdown/dropdownpanelfocusable.js";
|
|
11
11
|
import { type ViewCollection } from "../viewcollection.js";
|
|
12
12
|
import { FocusTracker, KeystrokeHandler, type Locale } from "@ckeditor/ckeditor5-utils";
|
|
13
|
-
import "../../theme/components/colorgrid/colorgrid.css";
|
|
14
13
|
/**
|
|
15
14
|
* A grid of {@link module:ui/colorgrid/colortileview~ColorTileView color tiles}.
|
|
16
15
|
*/
|
|
@@ -13,7 +13,6 @@ import { type InputTextView } from "../inputtext/inputtextview.js";
|
|
|
13
13
|
import { type ViewCollection } from "../viewcollection.js";
|
|
14
14
|
import { LabeledFieldView } from "../labeledfield/labeledfieldview.js";
|
|
15
15
|
import { HexBase } from "vanilla-colorful/lib/entrypoints/hex";
|
|
16
|
-
import "../../theme/components/colorpicker/colorpicker.css";
|
|
17
16
|
declare global {
|
|
18
17
|
interface HTMLElementTagNameMap {
|
|
19
18
|
"hex-color-picker": HexBase;
|
|
@@ -14,7 +14,6 @@ import type { ColorDefinition } from "../colorgrid/colorgridview.js";
|
|
|
14
14
|
import type { Model } from "@ckeditor/ckeditor5-engine";
|
|
15
15
|
import { ColorGridsFragmentView } from "./colorgridsfragmentview.js";
|
|
16
16
|
import { ColorPickerFragmentView } from "./colorpickerfragmentview.js";
|
|
17
|
-
import "../../theme/components/colorselector/colorselector.css";
|
|
18
17
|
/**
|
|
19
18
|
* The configurable color selector view class. It allows users to select colors from a predefined set of colors as well as from
|
|
20
19
|
* a color picker.
|
|
@@ -11,7 +11,6 @@ import { ButtonView } from "../button/buttonview.js";
|
|
|
11
11
|
import { View } from "../view.js";
|
|
12
12
|
import { ViewCollection } from "../viewcollection.js";
|
|
13
13
|
import { FocusCycler, type FocusableView } from "../focuscycler.js";
|
|
14
|
-
import "../../theme/components/dialog/dialogactions.css";
|
|
15
14
|
/**
|
|
16
15
|
* A dialog actions view class. It contains button views which are used to execute dialog actions.
|
|
17
16
|
*/
|
|
@@ -14,7 +14,6 @@ import { type DraggableView, type DraggableViewMixinConstructor } from "../bindi
|
|
|
14
14
|
import { DialogActionsView, type DialogActionButtonDefinition } from "./dialogactionsview.js";
|
|
15
15
|
import { DialogContentView } from "./dialogcontentview.js";
|
|
16
16
|
import { type EditorUI } from "../editorui/editorui.js";
|
|
17
|
-
import "../../theme/components/dialog/dialog.css";
|
|
18
17
|
import type { DialogPositionCallback } from "./dialog.js";
|
|
19
18
|
/**
|
|
20
19
|
* Available dialog view positions:
|
|
@@ -9,7 +9,6 @@ import { type ViewCollection } from "../../viewcollection.js";
|
|
|
9
9
|
import { type Button } from "../../button/button.js";
|
|
10
10
|
import { type DropdownButton } from "./dropdownbutton.js";
|
|
11
11
|
import type { FocusableView } from "../../focuscycler.js";
|
|
12
|
-
import "../../../theme/components/dropdown/splitbutton.css";
|
|
13
12
|
/**
|
|
14
13
|
* The split button view class.
|
|
15
14
|
*
|
|
@@ -13,7 +13,6 @@ import { type ListView } from "../list/listview.js";
|
|
|
13
13
|
import { type ToolbarView } from "../toolbar/toolbarview.js";
|
|
14
14
|
import { type DropdownMenuRootListView } from "./menu/dropdownmenurootlistview.js";
|
|
15
15
|
import { KeystrokeHandler, FocusTracker, type Locale, type PositioningFunction } from "@ckeditor/ckeditor5-utils";
|
|
16
|
-
import "../../theme/components/dropdown/dropdown.css";
|
|
17
16
|
/**
|
|
18
17
|
* The dropdown view class. It manages the dropdown button and dropdown panel.
|
|
19
18
|
*
|
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
import { IconView } from "../../icon/iconview.js";
|
|
6
6
|
import { ListItemButtonView } from "../../button/listitembuttonview.js";
|
|
7
7
|
import type { Locale } from "@ckeditor/ckeditor5-utils";
|
|
8
|
-
import "../../../theme/components/dropdown/menu/dropdownmenubutton.css";
|
|
9
8
|
/**
|
|
10
9
|
* Represents a view for a dropdown menu button.
|
|
11
10
|
*/
|
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import type { Locale } from "@ckeditor/ckeditor5-utils";
|
|
9
9
|
import { ButtonView } from "../../button/buttonview.js";
|
|
10
|
-
import "../../../theme/components/dropdown/menu/dropdownmenulistitembutton.css";
|
|
11
10
|
/**
|
|
12
11
|
* Represents a view for a button in a dropdown menu list item.
|
|
13
12
|
*/
|
|
@@ -9,7 +9,6 @@ import type { Locale } from "@ckeditor/ckeditor5-utils";
|
|
|
9
9
|
import { type DropdownMenuNestedMenuView } from "./dropdownmenunestedmenuview.js";
|
|
10
10
|
import { ListItemView } from "../../list/listitemview.js";
|
|
11
11
|
import { DropdownMenuListItemButtonView } from "./dropdownmenulistitembuttonview.js";
|
|
12
|
-
import "../../../theme/components/dropdown/menu/dropdownmenulistitem.css";
|
|
13
12
|
/**
|
|
14
13
|
* Represents a view for a single item in a dropdown menu list.
|
|
15
14
|
*/
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
import type { Locale } from "@ckeditor/ckeditor5-utils";
|
|
9
9
|
import type { FocusableView } from "../../focuscycler.js";
|
|
10
10
|
import { BalloonPanelView } from "../../panel/balloon/balloonpanelview.js";
|
|
11
|
-
import "../../../theme/components/dropdown/menu/dropdownmenupanel.css";
|
|
12
11
|
/**
|
|
13
12
|
* Represents the view for the dropdown menu panel.
|
|
14
13
|
*/
|
|
@@ -12,7 +12,6 @@ import { DropdownMenuButtonView } from "./dropdownmenubuttonview.js";
|
|
|
12
12
|
import { DropdownMenuListView } from "./dropdownmenulistview.js";
|
|
13
13
|
import { View } from "../../view.js";
|
|
14
14
|
import { DropdownMenuNestedMenuPanelView, type DropdownMenuNestedMenuPanelPosition } from "./dropdownmenunestedmenupanelview.js";
|
|
15
|
-
import "../../../theme/components/dropdown/menu/dropdownmenu.css";
|
|
16
15
|
/**
|
|
17
16
|
* Represents a nested menu view.
|
|
18
17
|
*/
|
package/dist/dropdown/utils.d.ts
CHANGED
|
@@ -11,8 +11,6 @@ import type { FocusableView } from "../focuscycler.js";
|
|
|
11
11
|
import type { FalsyValue } from "../template.js";
|
|
12
12
|
import { type BodyCollection } from "../editorui/bodycollection.js";
|
|
13
13
|
import { type Collection, type Locale } from "@ckeditor/ckeditor5-utils";
|
|
14
|
-
import "../../theme/components/dropdown/toolbardropdown.css";
|
|
15
|
-
import "../../theme/components/dropdown/listdropdown.css";
|
|
16
14
|
import type { DropdownMenuDefinition } from "./menu/utils.js";
|
|
17
15
|
import type { ButtonLabelView } from "../button/buttonlabelview.js";
|
|
18
16
|
/**
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
|
|
9
9
|
import { Dialog } from "../../dialog/dialog.js";
|
|
10
10
|
import { AccessibilityHelpContentView } from "./accessibilityhelpcontentview.js";
|
|
11
|
-
import "../../../theme/components/editorui/accessibilityhelp.css";
|
|
12
11
|
/**
|
|
13
12
|
* A plugin that brings the accessibility help dialog to the editor available under the <kbd>Alt</kbd>+<kbd>0</kbd>
|
|
14
13
|
* keystroke and via the "Accessibility help" toolbar button. The dialog displays a list of keystrokes that can be used
|
|
@@ -9,7 +9,6 @@ import { View } from "../view.js";
|
|
|
9
9
|
import { BodyCollection } from "./bodycollection.js";
|
|
10
10
|
import { type EditableUIView } from "../editableui/editableuiview.js";
|
|
11
11
|
import type { Locale, LocaleTranslate } from "@ckeditor/ckeditor5-utils";
|
|
12
|
-
import "../../theme/components/editorui/editorui.css";
|
|
13
12
|
import { type MenuBarView } from "../menubar/menubarview.js";
|
|
14
13
|
import { type ToolbarView } from "../toolbar/toolbarview.js";
|
|
15
14
|
/**
|
|
@@ -9,7 +9,6 @@ import { View } from "../view.js";
|
|
|
9
9
|
import { type ViewCollection } from "../viewcollection.js";
|
|
10
10
|
import { IconView } from "../icon/iconview.js";
|
|
11
11
|
import type { Locale } from "@ckeditor/ckeditor5-utils";
|
|
12
|
-
import "../../theme/components/formheader/formheader.css";
|
|
13
12
|
/**
|
|
14
13
|
* The class component representing a form header view. It should be used in more advanced forms to
|
|
15
14
|
* describe the main purpose of the form.
|
|
@@ -9,7 +9,6 @@ import { View } from "../view.js";
|
|
|
9
9
|
import { type ViewCollection } from "../viewcollection.js";
|
|
10
10
|
import { type LabelView } from "../label/labelview.js";
|
|
11
11
|
import { type ArrayOrItem, type Locale } from "@ckeditor/ckeditor5-utils";
|
|
12
|
-
import "../../theme/components/formrow/formrow.css";
|
|
13
12
|
/**
|
|
14
13
|
* The class representing a single row in a form,
|
|
15
14
|
*/
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
* @module ui/highlightedtext/highlightedtextview
|
|
7
7
|
*/
|
|
8
8
|
import { View } from "../view.js";
|
|
9
|
-
import "../../theme/components/highlightedtext/highlightedtext.css";
|
|
10
9
|
/**
|
|
11
10
|
* A class representing a view that displays a text which subset can be highlighted using the
|
|
12
11
|
* {@link #highlightText} method.
|
package/dist/icon/iconview.d.ts
CHANGED
package/dist/index-content.css
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["index-content.css"],"names":[],"mappings":";;;;;;AAEA,CAAC,CAAC,CAAC,CAAC,gBAAgB,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC","file":"index-content.css.map","sourcesContent":["\n\n/*# sourceMappingURL=index-content.css.map */"]}
|