@operato/contact 8.0.0-alpha.0 → 8.0.0-alpha.29

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/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [8.0.0-alpha.29](https://github.com/hatiolab/operato/compare/v8.0.0-alpha.28...v8.0.0-alpha.29) (2024-10-10)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * apply pointer-event ([ecc73a1](https://github.com/hatiolab/operato/commit/ecc73a1d2df0d8ce7ba462965062a91461c504c3))
12
+
13
+
14
+
15
+ ## [8.0.0-alpha.27](https://github.com/hatiolab/operato/compare/v8.0.0-alpha.26...v8.0.0-alpha.27) (2024-10-06)
16
+
17
+
18
+ ### :bug: Bug Fix
19
+
20
+ * calendar css variables ([9ea1918](https://github.com/hatiolab/operato/commit/9ea191844c72de5f920a8da85ad50209ba77cc07))
21
+
22
+
23
+
24
+ ## [8.0.0-alpha.4](https://github.com/hatiolab/operato/compare/v8.0.0-alpha.3...v8.0.0-alpha.4) (2024-09-07)
25
+
26
+
27
+ ### :bug: Bug Fix
28
+
29
+ * dataset components & styles ([be44acd](https://github.com/hatiolab/operato/commit/be44acde8f25980e5b27afc481a2c149f8c23dbd))
30
+
31
+
32
+
6
33
  ## [8.0.0-alpha.0](https://github.com/hatiolab/operato/compare/v7.1.1...v8.0.0-alpha.0) (2024-09-01)
7
34
 
8
35
  **Note:** Version bump only for package @operato/contact
@@ -1,29 +1,394 @@
1
1
  import '@material/web/icon/icon.js';
2
2
  import { LitElement, PropertyValues } from 'lit';
3
3
  import { Profile } from './ox-pfp-view';
4
- export declare class OxPfpEdit extends LitElement {
4
+ import { GestureEventDrag, GestureEventPinch } from '@operato/utils/gesture-mixin.js';
5
+ declare const OxPfpEdit_base: (new (...args: any[]) => {
6
+ __pointers: Map<number, {
7
+ x: number;
8
+ y: number;
9
+ }>;
10
+ __lastTapTime: number;
11
+ __lastPinchDistance: number;
12
+ __dragStart: {
13
+ x: number;
14
+ y: number;
15
+ } | null;
16
+ connectedCallback(): void;
17
+ disconnectedCallback(): void;
18
+ handlePointerDown: (e: PointerEvent) => void;
19
+ handlePointerMove: (e: PointerEvent) => void;
20
+ handlePointerUp: (e: PointerEvent) => void;
21
+ handlePinch(): void;
22
+ handleDrag(point: {
23
+ x: number;
24
+ y: number;
25
+ }): void;
26
+ handleTap(point: {
27
+ x: number;
28
+ y: number;
29
+ }): void;
30
+ getDistance(p1: {
31
+ x: number;
32
+ y: number;
33
+ }, p2: {
34
+ x: number;
35
+ y: number;
36
+ }): number;
37
+ addGlobalListeners(): void;
38
+ removeGlobalListeners(): void;
39
+ accessKey: string;
40
+ readonly accessKeyLabel: string;
41
+ autocapitalize: string;
42
+ dir: string;
43
+ draggable: boolean;
44
+ hidden: boolean;
45
+ inert: boolean;
46
+ innerText: string;
47
+ lang: string;
48
+ readonly offsetHeight: number;
49
+ readonly offsetLeft: number;
50
+ readonly offsetParent: Element | null;
51
+ readonly offsetTop: number;
52
+ readonly offsetWidth: number;
53
+ outerText: string;
54
+ popover: string | null;
55
+ spellcheck: boolean;
56
+ title: string;
57
+ translate: boolean;
58
+ attachInternals(): ElementInternals;
59
+ click(): void;
60
+ hidePopover(): void;
61
+ showPopover(): void;
62
+ togglePopover(force?: boolean): boolean;
63
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
64
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
65
+ removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
66
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
67
+ readonly attributes: NamedNodeMap;
68
+ readonly classList: DOMTokenList;
69
+ className: string;
70
+ readonly clientHeight: number;
71
+ readonly clientLeft: number;
72
+ readonly clientTop: number;
73
+ readonly clientWidth: number;
74
+ id: string;
75
+ innerHTML: string;
76
+ readonly localName: string;
77
+ readonly namespaceURI: string | null;
78
+ onfullscreenchange: ((this: Element, ev: Event) => any) | null;
79
+ onfullscreenerror: ((this: Element, ev: Event) => any) | null;
80
+ outerHTML: string;
81
+ readonly ownerDocument: Document;
82
+ readonly part: DOMTokenList;
83
+ readonly prefix: string | null;
84
+ readonly scrollHeight: number;
85
+ scrollLeft: number;
86
+ scrollTop: number;
87
+ readonly scrollWidth: number;
88
+ readonly shadowRoot: ShadowRoot | null;
89
+ slot: string;
90
+ readonly tagName: string;
91
+ attachShadow(init: ShadowRootInit): ShadowRoot;
92
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
93
+ closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
94
+ closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
95
+ closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
96
+ closest<E extends Element = Element>(selectors: string): E | null;
97
+ computedStyleMap(): StylePropertyMapReadOnly;
98
+ getAttribute(qualifiedName: string): string | null;
99
+ getAttributeNS(namespace: string | null, localName: string): string | null;
100
+ getAttributeNames(): string[];
101
+ getAttributeNode(qualifiedName: string): Attr | null;
102
+ getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
103
+ getBoundingClientRect(): DOMRect;
104
+ getClientRects(): DOMRectList;
105
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
106
+ getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
107
+ getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
108
+ getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
109
+ getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
110
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
111
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
112
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
113
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
114
+ getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
115
+ getHTML(options?: GetHTMLOptions): string;
116
+ hasAttribute(qualifiedName: string): boolean;
117
+ hasAttributeNS(namespace: string | null, localName: string): boolean;
118
+ hasAttributes(): boolean;
119
+ hasPointerCapture(pointerId: number): boolean;
120
+ insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
121
+ insertAdjacentHTML(position: InsertPosition, string: string): void;
122
+ insertAdjacentText(where: InsertPosition, data: string): void;
123
+ matches(selectors: string): boolean;
124
+ releasePointerCapture(pointerId: number): void;
125
+ removeAttribute(qualifiedName: string): void;
126
+ removeAttributeNS(namespace: string | null, localName: string): void;
127
+ removeAttributeNode(attr: Attr): Attr;
128
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
129
+ requestPointerLock(options?: PointerLockOptions): Promise<void>;
130
+ scroll(options?: ScrollToOptions): void;
131
+ scroll(x: number, y: number): void;
132
+ scrollBy(options?: ScrollToOptions): void;
133
+ scrollBy(x: number, y: number): void;
134
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
135
+ scrollTo(options?: ScrollToOptions): void;
136
+ scrollTo(x: number, y: number): void;
137
+ setAttribute(qualifiedName: string, value: string): void;
138
+ setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
139
+ setAttributeNode(attr: Attr): Attr | null;
140
+ setAttributeNodeNS(attr: Attr): Attr | null;
141
+ setHTMLUnsafe(html: string): void;
142
+ setPointerCapture(pointerId: number): void;
143
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
144
+ webkitMatchesSelector(selectors: string): boolean;
145
+ readonly baseURI: string;
146
+ readonly childNodes: NodeListOf<ChildNode>;
147
+ readonly firstChild: ChildNode | null;
148
+ readonly isConnected: boolean;
149
+ readonly lastChild: ChildNode | null;
150
+ readonly nextSibling: ChildNode | null;
151
+ readonly nodeName: string;
152
+ readonly nodeType: number;
153
+ nodeValue: string | null;
154
+ readonly parentElement: HTMLElement | null;
155
+ readonly parentNode: ParentNode | null;
156
+ readonly previousSibling: ChildNode | null;
157
+ textContent: string | null;
158
+ appendChild<T extends Node>(node: T): T;
159
+ cloneNode(deep?: boolean): Node;
160
+ compareDocumentPosition(other: Node): number;
161
+ contains(other: Node | null): boolean;
162
+ getRootNode(options?: GetRootNodeOptions): Node;
163
+ hasChildNodes(): boolean;
164
+ insertBefore<T extends Node>(node: T, child: Node | null): T;
165
+ isDefaultNamespace(namespace: string | null): boolean;
166
+ isEqualNode(otherNode: Node | null): boolean;
167
+ isSameNode(otherNode: Node | null): boolean;
168
+ lookupNamespaceURI(prefix: string | null): string | null;
169
+ lookupPrefix(namespace: string | null): string | null;
170
+ normalize(): void;
171
+ removeChild<T extends Node>(child: T): T;
172
+ replaceChild<T extends Node>(node: Node, child: T): T;
173
+ readonly ELEMENT_NODE: 1;
174
+ readonly ATTRIBUTE_NODE: 2;
175
+ readonly TEXT_NODE: 3;
176
+ readonly CDATA_SECTION_NODE: 4;
177
+ readonly ENTITY_REFERENCE_NODE: 5;
178
+ readonly ENTITY_NODE: 6;
179
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
180
+ readonly COMMENT_NODE: 8;
181
+ readonly DOCUMENT_NODE: 9;
182
+ readonly DOCUMENT_TYPE_NODE: 10;
183
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
184
+ readonly NOTATION_NODE: 12;
185
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
186
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
187
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
188
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
189
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
190
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
191
+ dispatchEvent(event: Event): boolean;
192
+ ariaAtomic: string | null;
193
+ ariaAutoComplete: string | null;
194
+ ariaBrailleLabel: string | null;
195
+ ariaBrailleRoleDescription: string | null;
196
+ ariaBusy: string | null;
197
+ ariaChecked: string | null;
198
+ ariaColCount: string | null;
199
+ ariaColIndex: string | null;
200
+ ariaColSpan: string | null;
201
+ ariaCurrent: string | null;
202
+ ariaDescription: string | null;
203
+ ariaDisabled: string | null;
204
+ ariaExpanded: string | null;
205
+ ariaHasPopup: string | null;
206
+ ariaHidden: string | null;
207
+ ariaInvalid: string | null;
208
+ ariaKeyShortcuts: string | null;
209
+ ariaLabel: string | null;
210
+ ariaLevel: string | null;
211
+ ariaLive: string | null;
212
+ ariaModal: string | null;
213
+ ariaMultiLine: string | null;
214
+ ariaMultiSelectable: string | null;
215
+ ariaOrientation: string | null;
216
+ ariaPlaceholder: string | null;
217
+ ariaPosInSet: string | null;
218
+ ariaPressed: string | null;
219
+ ariaReadOnly: string | null;
220
+ ariaRequired: string | null;
221
+ ariaRoleDescription: string | null;
222
+ ariaRowCount: string | null;
223
+ ariaRowIndex: string | null;
224
+ ariaRowSpan: string | null;
225
+ ariaSelected: string | null;
226
+ ariaSetSize: string | null;
227
+ ariaSort: string | null;
228
+ ariaValueMax: string | null;
229
+ ariaValueMin: string | null;
230
+ ariaValueNow: string | null;
231
+ ariaValueText: string | null;
232
+ role: string | null;
233
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
234
+ getAnimations(options?: GetAnimationsOptions): Animation[];
235
+ after(...nodes: (Node | string)[]): void;
236
+ before(...nodes: (Node | string)[]): void;
237
+ remove(): void;
238
+ replaceWith(...nodes: (Node | string)[]): void;
239
+ readonly nextElementSibling: Element | null;
240
+ readonly previousElementSibling: Element | null;
241
+ readonly childElementCount: number;
242
+ readonly children: HTMLCollection;
243
+ readonly firstElementChild: Element | null;
244
+ readonly lastElementChild: Element | null;
245
+ append(...nodes: (Node | string)[]): void;
246
+ prepend(...nodes: (Node | string)[]): void;
247
+ querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
248
+ querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
249
+ querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
250
+ querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
251
+ querySelector<E extends Element = Element>(selectors: string): E | null;
252
+ querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
253
+ querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
254
+ querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
255
+ querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
256
+ querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
257
+ replaceChildren(...nodes: (Node | string)[]): void;
258
+ readonly assignedSlot: HTMLSlotElement | null;
259
+ readonly attributeStyleMap: StylePropertyMap;
260
+ readonly style: CSSStyleDeclaration;
261
+ contentEditable: string;
262
+ enterKeyHint: string;
263
+ inputMode: string;
264
+ readonly isContentEditable: boolean;
265
+ onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
266
+ onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
267
+ onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
268
+ onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
269
+ onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
270
+ onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
271
+ onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
272
+ onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
273
+ onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
274
+ oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
275
+ oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
276
+ oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
277
+ onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
278
+ onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
279
+ onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
280
+ oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
281
+ oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
282
+ oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
283
+ oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
284
+ oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
285
+ oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
286
+ ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
287
+ ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
288
+ ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
289
+ ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
290
+ ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
291
+ ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
292
+ ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
293
+ ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
294
+ ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
295
+ onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
296
+ onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
297
+ onerror: OnErrorEventHandler;
298
+ onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
299
+ onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
300
+ ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
301
+ oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
302
+ oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
303
+ onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
304
+ onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
305
+ onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
306
+ onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
307
+ onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
308
+ onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
309
+ onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
310
+ onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
311
+ onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
312
+ onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
313
+ onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
314
+ onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
315
+ onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
316
+ onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
317
+ onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
318
+ onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
319
+ onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
320
+ onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
321
+ onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
322
+ onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
323
+ onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
324
+ onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
325
+ onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
326
+ onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
327
+ onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
328
+ onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
329
+ onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
330
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
331
+ onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
332
+ onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
333
+ onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
334
+ onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
335
+ onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
336
+ onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
337
+ onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
338
+ onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
339
+ onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
340
+ onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
341
+ onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
342
+ onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
343
+ onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
344
+ onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
345
+ onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
346
+ ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
347
+ ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
348
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
349
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
350
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
351
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
352
+ ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
353
+ ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
354
+ ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
355
+ ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
356
+ onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
357
+ onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
358
+ onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
359
+ onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
360
+ onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
361
+ onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
362
+ onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
363
+ autofocus: boolean;
364
+ readonly dataset: DOMStringMap;
365
+ nonce?: string;
366
+ tabIndex: number;
367
+ blur(): void;
368
+ focus(options?: FocusOptions): void;
369
+ }) & typeof LitElement;
370
+ export declare class OxPfpEdit extends OxPfpEdit_base {
5
371
  static styles: import("lit").CSSResult;
6
372
  profile: Profile;
7
373
  name?: string;
8
374
  circle: HTMLDivElement;
9
- private dragStart?;
10
- private dragEndHandler;
11
- private dragMoveHandler;
12
- private dragStartHandler;
13
- private wheelEventHandler;
14
- private dropFileHandler;
15
375
  connectedCallback(): void;
16
376
  disconnectedCallback(): void;
17
377
  render(): import("lit-html").TemplateResult<1>;
18
378
  updated(changes: PropertyValues<this>): void;
19
379
  get value(): Profile;
20
380
  set value(value: Profile);
21
- onWheelEvent(e: Event): void;
22
- onDragStart(e: Event): false | undefined;
23
- onDragMove(e: Event): boolean;
24
- onDragEnd(e: Event): void;
25
- onDropFile(e: Event): void;
381
+ private doubleTapHandler;
382
+ private wheelHandler;
383
+ dragHandler: (e: GestureEventDrag) => void;
384
+ pinchHandler: (e: GestureEventPinch) => void;
385
+ /**
386
+ * 중심점을 기준으로 확대/축소
387
+ */
388
+ private zoomAt;
389
+ dropFileHandler: (e: Event) => void;
26
390
  onChangeFile(e: Event): void;
27
391
  fit(): void;
28
392
  clear(): void;
29
393
  }
394
+ export {};