Color picker improvements

This commit is contained in:
barsdeveloper
2022-10-16 13:56:38 +02:00
parent 0b19d89416
commit 192f2a4c11
23 changed files with 500 additions and 231 deletions

View File

@@ -28,9 +28,12 @@ export default class IDraggableElement extends IElement {
static dragEventName = Configuration.dragEventName
static dragGeneralEventName = Configuration.dragGeneralEventName
constructor(...args) {
// @ts-expect-error
super(...args)
/**
* @param {T} entity
* @param {U} template
*/
constructor(entity, template) {
super(entity, template)
this.locationX = 0
this.locationY = 0
}