@ckeditor/ckeditor5-widget
Advanced tools
Comparing version 38.2.0-alpha.1 to 39.0.0
{ | ||
"name": "@ckeditor/ckeditor5-widget", | ||
"version": "38.2.0-alpha.1", | ||
"version": "39.0.0", | ||
"description": "Widget API for CKEditor 5.", | ||
@@ -13,11 +13,10 @@ "keywords": [ | ||
"main": "src/index.js", | ||
"type": "module", | ||
"dependencies": { | ||
"@ckeditor/ckeditor5-core": "38.2.0-alpha.1", | ||
"@ckeditor/ckeditor5-engine": "38.2.0-alpha.1", | ||
"@ckeditor/ckeditor5-enter": "38.2.0-alpha.1", | ||
"@ckeditor/ckeditor5-ui": "38.2.0-alpha.1", | ||
"@ckeditor/ckeditor5-utils": "38.2.0-alpha.1", | ||
"@ckeditor/ckeditor5-typing": "38.2.0-alpha.1", | ||
"lodash-es": "^4.17.15" | ||
"@ckeditor/ckeditor5-core": "39.0.0", | ||
"@ckeditor/ckeditor5-engine": "39.0.0", | ||
"@ckeditor/ckeditor5-enter": "39.0.0", | ||
"@ckeditor/ckeditor5-ui": "39.0.0", | ||
"@ckeditor/ckeditor5-utils": "39.0.0", | ||
"@ckeditor/ckeditor5-typing": "39.0.0", | ||
"lodash-es": "4.17.21" | ||
}, | ||
@@ -24,0 +23,0 @@ "engines": { |
@@ -7,3 +7,2 @@ CKEditor 5 widget API | ||
[![Build Status](https://travis-ci.com/ckeditor/ckeditor5.svg?branch=master)](https://app.travis-ci.com/github/ckeditor/ckeditor5) | ||
![Dependency Status](https://img.shields.io/librariesio/release/npm/@ckeditor/ckeditor5-widget) | ||
@@ -10,0 +9,0 @@ This package implements the widget API for CKEditor 5. |
@@ -5,3 +5,3 @@ /** | ||
*/ | ||
import type { Widget, WidgetResize, WidgetToolbarRepository, WidgetTypeAround } from './index.js'; | ||
import type { Widget, WidgetResize, WidgetToolbarRepository, WidgetTypeAround } from './index'; | ||
declare module '@ckeditor/ckeditor5-core' { | ||
@@ -8,0 +8,0 @@ interface PluginsMap { |
@@ -8,7 +8,7 @@ /** | ||
*/ | ||
export { default as Widget } from './widget.js'; | ||
export { default as WidgetToolbarRepository } from './widgettoolbarrepository.js'; | ||
export { default as WidgetResize } from './widgetresize.js'; | ||
export { default as WidgetTypeAround } from './widgettypearound/widgettypearound.js'; | ||
export * from './utils.js'; | ||
import './augmentation.js'; | ||
export { default as Widget } from './widget'; | ||
export { default as WidgetToolbarRepository } from './widgettoolbarrepository'; | ||
export { default as WidgetResize } from './widgetresize'; | ||
export { default as WidgetTypeAround } from './widgettypearound/widgettypearound'; | ||
export * from './utils'; | ||
import './augmentation'; |
@@ -8,7 +8,7 @@ /** | ||
*/ | ||
export { default as Widget } from './widget.js'; | ||
export { default as WidgetToolbarRepository } from './widgettoolbarrepository.js'; | ||
export { default as WidgetResize } from './widgetresize.js'; | ||
export { default as WidgetTypeAround } from './widgettypearound/widgettypearound.js'; | ||
export * from './utils.js'; | ||
import './augmentation.js'; | ||
export { default as Widget } from './widget'; | ||
export { default as WidgetToolbarRepository } from './widgettoolbarrepository'; | ||
export { default as WidgetResize } from './widgetresize'; | ||
export { default as WidgetTypeAround } from './widgettypearound/widgettypearound'; | ||
export * from './utils'; | ||
import './augmentation'; |
@@ -11,4 +11,4 @@ /** | ||
import { IconView } from '@ckeditor/ckeditor5-ui'; | ||
import HighlightStack from './highlightstack.js'; | ||
import { getTypeAroundFakeCaretPosition } from './widgettypearound/utils.js'; | ||
import HighlightStack from './highlightstack'; | ||
import { getTypeAroundFakeCaretPosition } from './widgettypearound/utils'; | ||
import dragHandleIcon from '../theme/icons/drag-handle.svg'; | ||
@@ -15,0 +15,0 @@ /** |
@@ -11,3 +11,3 @@ /** | ||
import { Delete } from '@ckeditor/ckeditor5-typing'; | ||
import WidgetTypeAround from './widgettypearound/widgettypearound.js'; | ||
import WidgetTypeAround from './widgettypearound/widgettypearound'; | ||
import '../theme/widget.css'; | ||
@@ -14,0 +14,0 @@ /** |
@@ -12,5 +12,5 @@ /** | ||
import { env, getLocalizedArrowKeyCodeDirection } from '@ckeditor/ckeditor5-utils'; | ||
import WidgetTypeAround from './widgettypearound/widgettypearound.js'; | ||
import verticalNavigationHandler from './verticalnavigation.js'; | ||
import { getLabel, isWidget, WIDGET_SELECTED_CLASS_NAME } from './utils.js'; | ||
import WidgetTypeAround from './widgettypearound/widgettypearound'; | ||
import verticalNavigationHandler from './verticalnavigation'; | ||
import { getLabel, isWidget, WIDGET_SELECTED_CLASS_NAME } from './utils'; | ||
import '../theme/widget.css'; | ||
@@ -17,0 +17,0 @@ /** |
@@ -8,3 +8,3 @@ /** | ||
*/ | ||
import Resizer from './widgetresize/resizer.js'; | ||
import Resizer from './widgetresize/resizer'; | ||
import { Plugin, type Editor } from '@ckeditor/ckeditor5-core'; | ||
@@ -11,0 +11,0 @@ import { type Element, type ViewContainerElement } from '@ckeditor/ckeditor5-engine'; |
@@ -8,3 +8,3 @@ /** | ||
*/ | ||
import Resizer from './widgetresize/resizer.js'; | ||
import Resizer from './widgetresize/resizer'; | ||
import { Plugin } from '@ckeditor/ckeditor5-core'; | ||
@@ -11,0 +11,0 @@ import { MouseObserver } from '@ckeditor/ckeditor5-engine'; |
@@ -6,4 +6,4 @@ /** | ||
import { Rect, type DecoratedMethodEvent } from '@ckeditor/ckeditor5-utils'; | ||
import ResizeState from './resizerstate.js'; | ||
import type { ResizerOptions } from '../widgetresize.js'; | ||
import ResizeState from './resizerstate'; | ||
import type { ResizerOptions } from '../widgetresize'; | ||
declare const Resizer_base: { | ||
@@ -10,0 +10,0 @@ new (): import("@ckeditor/ckeditor5-utils").Observable; |
@@ -10,4 +10,4 @@ /** | ||
import { Rect, ObservableMixin, compareArrays } from '@ckeditor/ckeditor5-utils'; | ||
import ResizeState from './resizerstate.js'; | ||
import SizeView from './sizeview.js'; | ||
import ResizeState from './resizerstate'; | ||
import SizeView from './sizeview'; | ||
/** | ||
@@ -14,0 +14,0 @@ * Represents a resizer for a single resizable object. |
@@ -5,3 +5,3 @@ /** | ||
*/ | ||
import type { ResizerOptions } from '../widgetresize.js'; | ||
import type { ResizerOptions } from '../widgetresize'; | ||
declare const ResizeState_base: { | ||
@@ -8,0 +8,0 @@ new (): import("@ckeditor/ckeditor5-utils").Observable; |
@@ -9,4 +9,4 @@ /** | ||
import { View } from '@ckeditor/ckeditor5-ui'; | ||
import type { ResizerOptions } from '../widgetresize.js'; | ||
import type ResizeState from './resizerstate.js'; | ||
import type { ResizerOptions } from '../widgetresize'; | ||
import type ResizeState from './resizerstate'; | ||
/** | ||
@@ -13,0 +13,0 @@ * A view displaying the proposed new element size during the resizing. |
@@ -11,3 +11,3 @@ /** | ||
import { CKEditorError, logWarning } from '@ckeditor/ckeditor5-utils'; | ||
import { isWidget } from './utils.js'; | ||
import { isWidget } from './utils'; | ||
/** | ||
@@ -14,0 +14,0 @@ * Widget toolbar repository plugin. A central point for registering widget toolbars. This plugin handles the whole |
@@ -8,3 +8,3 @@ /** | ||
*/ | ||
import { isWidget } from '../utils.js'; | ||
import { isWidget } from '../utils'; | ||
/** | ||
@@ -11,0 +11,0 @@ * The name of the type around model selection attribute responsible for |
@@ -14,4 +14,4 @@ /** | ||
import { env, isForwardArrowKeyCode } from '@ckeditor/ckeditor5-utils'; | ||
import { isTypeAroundWidget, getClosestTypeAroundDomButton, getTypeAroundButtonPosition, getClosestWidgetViewElement, getTypeAroundFakeCaretPosition, TYPE_AROUND_SELECTION_ATTRIBUTE } from './utils.js'; | ||
import { isWidget } from '../utils.js'; | ||
import { isTypeAroundWidget, getClosestTypeAroundDomButton, getTypeAroundButtonPosition, getClosestWidgetViewElement, getTypeAroundFakeCaretPosition, TYPE_AROUND_SELECTION_ATTRIBUTE } from './utils'; | ||
import { isWidget } from '../utils'; | ||
import returnIcon from '../../theme/icons/return-arrow.svg'; | ||
@@ -18,0 +18,0 @@ import '../../theme/widgettypearound.css'; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
286147
87
0
17
No
+ Added@ckeditor/ckeditor5-core@39.0.0(transitive)
+ Added@ckeditor/ckeditor5-engine@39.0.0(transitive)
+ Added@ckeditor/ckeditor5-enter@39.0.0(transitive)
+ Added@ckeditor/ckeditor5-typing@39.0.0(transitive)
+ Added@ckeditor/ckeditor5-ui@39.0.0(transitive)
+ Added@ckeditor/ckeditor5-utils@39.0.0(transitive)
- Removed@ckeditor/ckeditor5-core@38.2.0-alpha.1(transitive)
- Removed@ckeditor/ckeditor5-engine@38.2.0-alpha.1(transitive)
- Removed@ckeditor/ckeditor5-enter@38.2.0-alpha.1(transitive)
- Removed@ckeditor/ckeditor5-typing@38.2.0-alpha.1(transitive)
- Removed@ckeditor/ckeditor5-ui@38.2.0-alpha.1(transitive)
- Removed@ckeditor/ckeditor5-utils@38.2.0-alpha.1(transitive)
Updatedlodash-es@4.17.21