@mobilon-dev/chotto 0.3.21 → 0.3.23
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/{CreateChat-DoNHuQv0.js → CreateChat-CdkAwYO5.js} +1 -1
- package/dist/{CreateChat2-DpYCA_v_.js → CreateChat2-sDETTpTU.js} +1 -1
- package/dist/{CreateDialog-BOnzLE6I.js → CreateDialog-Bw8bOym2.js} +1 -1
- package/dist/{ModalVideoRecorder-BY3428rE.js → ModalVideoRecorder-BP9FfPE8.js} +1 -1
- package/dist/{SelectUser2-CanippyB.js → SelectUser2-BAKccRXs.js} +1 -1
- package/dist/chotto.css +1 -1
- package/dist/index-4foc416D.js +36385 -0
- package/dist/themes/dark.css +1 -1
- package/dist/themes/default.css +1 -1
- package/dist/themes/green.css +1 -1
- package/dist/themes/mobilon1.css +1 -1
- package/dist/types/apps/data/messages.d.ts +256 -1
- package/dist/types/components/2_feed_elements/AudioMessage/stories/AudioMessage.stories.d.ts +4 -0
- package/dist/types/components/2_feed_elements/CallMessage/stories/CallMessage.stories.d.ts +4 -0
- package/dist/types/components/2_feed_elements/DateMessage/stories/DateMessage.stories.d.ts +1 -0
- package/dist/types/components/2_feed_elements/FileMessage/stories/FileMessage.stories.d.ts +3 -0
- package/dist/types/components/2_feed_elements/ImageMessage/stories/ImageMessage.stories.d.ts +3 -0
- package/dist/types/components/2_feed_elements/MessageReactions/MessageReactions.vue.d.ts +61 -0
- package/dist/types/components/2_feed_elements/MessageReactions/composables/index.d.ts +4 -0
- package/dist/types/components/2_feed_elements/MessageReactions/composables/usePositioning.d.ts +16 -0
- package/dist/types/components/2_feed_elements/MessageReactions/composables/useReactions.d.ts +19 -0
- package/dist/types/components/2_feed_elements/MessageReactions/composables/useReactionsPanel.d.ts +23 -0
- package/dist/types/components/2_feed_elements/MessageReactions/composables/useReactionsState.d.ts +99 -0
- package/dist/types/components/2_feed_elements/MessageReactions/stories/MessageReactions.stories.d.ts +16 -0
- package/dist/types/components/2_feed_elements/MessageReactions/styles/types.d.ts +221 -0
- package/dist/types/components/2_feed_elements/MessageReactions/utils/quickReactions.d.ts +6 -0
- package/dist/types/components/2_feed_elements/ReplyStickerMessage/ReplyStickerMessage.vue.d.ts +16 -0
- package/dist/types/components/2_feed_elements/ReplyStickerMessage/stories/ReplyStickerMessage.stories.d.ts +10 -0
- package/dist/types/components/2_feed_elements/ReplyStickerMessage/styles/types.d.ts +107 -0
- package/dist/types/components/2_feed_elements/StickerMessage/StickerMessage.vue.d.ts +41 -0
- package/dist/types/components/2_feed_elements/StickerMessage/libs/tgs-player/lottie-player.esm.d.ts +478 -0
- package/dist/types/components/2_feed_elements/StickerMessage/libs/tgs-player/tgs-player.esm.d.ts +478 -0
- package/dist/types/components/2_feed_elements/StickerMessage/stories/StickerMessage.stories.d.ts +19 -0
- package/dist/types/components/2_feed_elements/StickerMessage/styles/types.d.ts +245 -0
- package/dist/types/components/2_feed_elements/TextMessage/stories/TextMessage.stories.d.ts +1 -0
- package/dist/types/components/2_feed_elements/TypingMessage/stories/TypingMessage.stories.d.ts +1 -0
- package/dist/types/components/2_feed_elements/VideoMessage/stories/VideoMessage.stories.d.ts +3 -0
- package/dist/types/components/2_feed_elements/types/messages.d.ts +72 -0
- package/dist/types/components/3_compounds/SideBar/SideBar.vue.d.ts +2 -0
- package/dist/types/components/index.d.ts +3 -0
- package/dist/types/functions/createReactionHandlers.d.ts +23 -0
- package/dist/types/functions/index.d.ts +1 -0
- package/dist/types/main.d.ts +1 -0
- package/dist/types/utils/suppress-lit-warning.d.ts +0 -0
- package/dist/vuessages.es.js +84 -80
- package/dist/vuessages.umd.js +598 -46
- package/package.json +1 -1
- package/dist/index-D4aZYJgw.js +0 -21904
package/dist/types/components/2_feed_elements/StickerMessage/libs/tgs-player/lottie-player.esm.d.ts
ADDED
|
@@ -0,0 +1,478 @@
|
|
|
1
|
+
export var LottiePlayer: {
|
|
2
|
+
new (...args: any[]): {
|
|
3
|
+
autoplay: boolean;
|
|
4
|
+
background: string;
|
|
5
|
+
controls: boolean;
|
|
6
|
+
currentState: any;
|
|
7
|
+
description: string;
|
|
8
|
+
direction: number;
|
|
9
|
+
disableCheck: boolean;
|
|
10
|
+
disableShadowDOM: boolean;
|
|
11
|
+
hover: boolean;
|
|
12
|
+
intermission: number;
|
|
13
|
+
loop: boolean;
|
|
14
|
+
mode: any;
|
|
15
|
+
preserveAspectRatio: string;
|
|
16
|
+
renderer: string;
|
|
17
|
+
speed: number;
|
|
18
|
+
_counter: number;
|
|
19
|
+
_onVisibilityChange: () => void;
|
|
20
|
+
load(t: any): Promise<any>;
|
|
21
|
+
getLottie(): any;
|
|
22
|
+
getVersions(): {
|
|
23
|
+
lottieWebVersion: string;
|
|
24
|
+
lottiePlayerVersion: string;
|
|
25
|
+
};
|
|
26
|
+
play(): void;
|
|
27
|
+
pause(): void;
|
|
28
|
+
stop(): void;
|
|
29
|
+
destroy(): void;
|
|
30
|
+
_lottie: any;
|
|
31
|
+
seek(t: any): void;
|
|
32
|
+
seeker: number | undefined;
|
|
33
|
+
snapshot(...args: any[]): string | undefined;
|
|
34
|
+
setSpeed(...args: any[]): void;
|
|
35
|
+
setDirection(t: any): void;
|
|
36
|
+
setLooping(t: any): void;
|
|
37
|
+
togglePlay(): void;
|
|
38
|
+
toggleLooping(): void;
|
|
39
|
+
resize(): void;
|
|
40
|
+
disconnectedCallback(): void;
|
|
41
|
+
render(): {
|
|
42
|
+
_$litType$: any;
|
|
43
|
+
strings: any;
|
|
44
|
+
values: any[];
|
|
45
|
+
};
|
|
46
|
+
createRenderRoot(): ShadowRoot | /*elided*/ any;
|
|
47
|
+
firstUpdated(): void;
|
|
48
|
+
_io: IntersectionObserver | undefined;
|
|
49
|
+
renderControls(): {
|
|
50
|
+
_$litType$: any;
|
|
51
|
+
strings: any;
|
|
52
|
+
values: any[];
|
|
53
|
+
};
|
|
54
|
+
_prevState: any;
|
|
55
|
+
_handleSeekChange(t: any): void;
|
|
56
|
+
_attachEventListeners(): void;
|
|
57
|
+
freeze(): void;
|
|
58
|
+
renderOptions: {
|
|
59
|
+
host: /*elided*/ any;
|
|
60
|
+
};
|
|
61
|
+
update(t: any): void;
|
|
62
|
+
_$Dt: any;
|
|
63
|
+
connectedCallback(): void;
|
|
64
|
+
_$Et: Map<any, any>;
|
|
65
|
+
isUpdatePending: boolean;
|
|
66
|
+
hasUpdated: boolean;
|
|
67
|
+
_$Ei: any;
|
|
68
|
+
o(): void;
|
|
69
|
+
_$Ep: Promise<any> | undefined;
|
|
70
|
+
enableUpdating(t: any): void;
|
|
71
|
+
_$AL: Map<any, any> | undefined;
|
|
72
|
+
addController(t: any): void;
|
|
73
|
+
_$Eg: any[] | undefined;
|
|
74
|
+
removeController(t: any): void;
|
|
75
|
+
_$Em(): void;
|
|
76
|
+
renderRoot: ShadowRoot | undefined;
|
|
77
|
+
attributeChangedCallback(t: any, e: any, r: any): void;
|
|
78
|
+
_$ES(t: any, e: any, ...args: any[]): void;
|
|
79
|
+
_$AK(t: any, e: any): void;
|
|
80
|
+
requestUpdate(t: any, e: any, r: any): void;
|
|
81
|
+
_$E_: Map<any, any> | undefined;
|
|
82
|
+
_$EC(): Promise<any>;
|
|
83
|
+
scheduleUpdate(): void;
|
|
84
|
+
performUpdate(): void;
|
|
85
|
+
willUpdate(t: any): void;
|
|
86
|
+
_$AE(t: any): void;
|
|
87
|
+
_$EU(): void;
|
|
88
|
+
get updateComplete(): Promise<any> | undefined;
|
|
89
|
+
getUpdateComplete(): Promise<any> | undefined;
|
|
90
|
+
shouldUpdate(t: any): boolean;
|
|
91
|
+
updated(t: any): void;
|
|
92
|
+
accessKey: string;
|
|
93
|
+
readonly accessKeyLabel: string;
|
|
94
|
+
autocapitalize: string;
|
|
95
|
+
autocorrect: boolean;
|
|
96
|
+
dir: string;
|
|
97
|
+
draggable: boolean;
|
|
98
|
+
hidden: boolean;
|
|
99
|
+
inert: boolean;
|
|
100
|
+
innerText: string;
|
|
101
|
+
lang: string;
|
|
102
|
+
readonly offsetHeight: number;
|
|
103
|
+
readonly offsetLeft: number;
|
|
104
|
+
readonly offsetParent: Element | null;
|
|
105
|
+
readonly offsetTop: number;
|
|
106
|
+
readonly offsetWidth: number;
|
|
107
|
+
outerText: string;
|
|
108
|
+
popover: string | null;
|
|
109
|
+
spellcheck: boolean;
|
|
110
|
+
title: string;
|
|
111
|
+
translate: boolean;
|
|
112
|
+
writingSuggestions: string;
|
|
113
|
+
attachInternals(): ElementInternals;
|
|
114
|
+
click(): void;
|
|
115
|
+
hidePopover(): void;
|
|
116
|
+
showPopover(): void;
|
|
117
|
+
togglePopover(options?: boolean): boolean;
|
|
118
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
119
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
120
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
121
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
122
|
+
readonly attributes: NamedNodeMap;
|
|
123
|
+
get classList(): DOMTokenList;
|
|
124
|
+
set classList(value: string);
|
|
125
|
+
className: string;
|
|
126
|
+
readonly clientHeight: number;
|
|
127
|
+
readonly clientLeft: number;
|
|
128
|
+
readonly clientTop: number;
|
|
129
|
+
readonly clientWidth: number;
|
|
130
|
+
readonly currentCSSZoom: number;
|
|
131
|
+
id: string;
|
|
132
|
+
innerHTML: string;
|
|
133
|
+
readonly localName: string;
|
|
134
|
+
readonly namespaceURI: string | null;
|
|
135
|
+
onfullscreenchange: ((this: Element, ev: Event) => any) | null;
|
|
136
|
+
onfullscreenerror: ((this: Element, ev: Event) => any) | null;
|
|
137
|
+
outerHTML: string;
|
|
138
|
+
readonly ownerDocument: Document;
|
|
139
|
+
get part(): DOMTokenList;
|
|
140
|
+
set part(value: string);
|
|
141
|
+
readonly prefix: string | null;
|
|
142
|
+
readonly scrollHeight: number;
|
|
143
|
+
scrollLeft: number;
|
|
144
|
+
scrollTop: number;
|
|
145
|
+
readonly scrollWidth: number;
|
|
146
|
+
readonly shadowRoot: ShadowRoot | null;
|
|
147
|
+
slot: string;
|
|
148
|
+
readonly tagName: string;
|
|
149
|
+
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
150
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
151
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
|
|
152
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
|
153
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
|
154
|
+
closest<E extends Element = Element>(selectors: string): E | null;
|
|
155
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
156
|
+
getAttribute(qualifiedName: string): string | null;
|
|
157
|
+
getAttributeNS(namespace: string | null, localName: string): string | null;
|
|
158
|
+
getAttributeNames(): string[];
|
|
159
|
+
getAttributeNode(qualifiedName: string): Attr | null;
|
|
160
|
+
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
|
161
|
+
getBoundingClientRect(): DOMRect;
|
|
162
|
+
getClientRects(): DOMRectList;
|
|
163
|
+
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
164
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
165
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
166
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
167
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
168
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
169
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
170
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
171
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
172
|
+
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
173
|
+
getHTML(options?: GetHTMLOptions): string;
|
|
174
|
+
hasAttribute(qualifiedName: string): boolean;
|
|
175
|
+
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
|
176
|
+
hasAttributes(): boolean;
|
|
177
|
+
hasPointerCapture(pointerId: number): boolean;
|
|
178
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
179
|
+
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
180
|
+
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
181
|
+
matches(selectors: string): boolean;
|
|
182
|
+
releasePointerCapture(pointerId: number): void;
|
|
183
|
+
removeAttribute(qualifiedName: string): void;
|
|
184
|
+
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
185
|
+
removeAttributeNode(attr: Attr): Attr;
|
|
186
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
187
|
+
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
|
188
|
+
scroll(options?: ScrollToOptions): void;
|
|
189
|
+
scroll(x: number, y: number): void;
|
|
190
|
+
scrollBy(options?: ScrollToOptions): void;
|
|
191
|
+
scrollBy(x: number, y: number): void;
|
|
192
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
193
|
+
scrollTo(options?: ScrollToOptions): void;
|
|
194
|
+
scrollTo(x: number, y: number): void;
|
|
195
|
+
setAttribute(qualifiedName: string, value: string): void;
|
|
196
|
+
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
197
|
+
setAttributeNode(attr: Attr): Attr | null;
|
|
198
|
+
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
199
|
+
setHTMLUnsafe(html: string): void;
|
|
200
|
+
setPointerCapture(pointerId: number): void;
|
|
201
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
202
|
+
webkitMatchesSelector(selectors: string): boolean;
|
|
203
|
+
get textContent(): string;
|
|
204
|
+
set textContent(value: string | null);
|
|
205
|
+
readonly baseURI: string;
|
|
206
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
|
207
|
+
readonly firstChild: ChildNode | null;
|
|
208
|
+
readonly isConnected: boolean;
|
|
209
|
+
readonly lastChild: ChildNode | null;
|
|
210
|
+
readonly nextSibling: ChildNode | null;
|
|
211
|
+
readonly nodeName: string;
|
|
212
|
+
readonly nodeType: number;
|
|
213
|
+
nodeValue: string | null;
|
|
214
|
+
readonly parentElement: HTMLElement | null;
|
|
215
|
+
readonly parentNode: ParentNode | null;
|
|
216
|
+
readonly previousSibling: ChildNode | null;
|
|
217
|
+
appendChild<T extends Node>(node: T): T;
|
|
218
|
+
cloneNode(subtree?: boolean): Node;
|
|
219
|
+
compareDocumentPosition(other: Node): number;
|
|
220
|
+
contains(other: Node | null): boolean;
|
|
221
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
|
222
|
+
hasChildNodes(): boolean;
|
|
223
|
+
insertBefore<T extends Node>(node: T, child: Node | null): T;
|
|
224
|
+
isDefaultNamespace(namespace: string | null): boolean;
|
|
225
|
+
isEqualNode(otherNode: Node | null): boolean;
|
|
226
|
+
isSameNode(otherNode: Node | null): boolean;
|
|
227
|
+
lookupNamespaceURI(prefix: string | null): string | null;
|
|
228
|
+
lookupPrefix(namespace: string | null): string | null;
|
|
229
|
+
normalize(): void;
|
|
230
|
+
removeChild<T extends Node>(child: T): T;
|
|
231
|
+
replaceChild<T extends Node>(node: Node, child: T): T;
|
|
232
|
+
readonly ELEMENT_NODE: 1;
|
|
233
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
234
|
+
readonly TEXT_NODE: 3;
|
|
235
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
236
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
237
|
+
readonly ENTITY_NODE: 6;
|
|
238
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
239
|
+
readonly COMMENT_NODE: 8;
|
|
240
|
+
readonly DOCUMENT_NODE: 9;
|
|
241
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
242
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
243
|
+
readonly NOTATION_NODE: 12;
|
|
244
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
245
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
246
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
247
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
248
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
249
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
250
|
+
dispatchEvent(event: Event): boolean;
|
|
251
|
+
ariaActiveDescendantElement: Element | null;
|
|
252
|
+
ariaAtomic: string | null;
|
|
253
|
+
ariaAutoComplete: string | null;
|
|
254
|
+
ariaBrailleLabel: string | null;
|
|
255
|
+
ariaBrailleRoleDescription: string | null;
|
|
256
|
+
ariaBusy: string | null;
|
|
257
|
+
ariaChecked: string | null;
|
|
258
|
+
ariaColCount: string | null;
|
|
259
|
+
ariaColIndex: string | null;
|
|
260
|
+
ariaColIndexText: string | null;
|
|
261
|
+
ariaColSpan: string | null;
|
|
262
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
263
|
+
ariaCurrent: string | null;
|
|
264
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
265
|
+
ariaDescription: string | null;
|
|
266
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
267
|
+
ariaDisabled: string | null;
|
|
268
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
269
|
+
ariaExpanded: string | null;
|
|
270
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
271
|
+
ariaHasPopup: string | null;
|
|
272
|
+
ariaHidden: string | null;
|
|
273
|
+
ariaInvalid: string | null;
|
|
274
|
+
ariaKeyShortcuts: string | null;
|
|
275
|
+
ariaLabel: string | null;
|
|
276
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
277
|
+
ariaLevel: string | null;
|
|
278
|
+
ariaLive: string | null;
|
|
279
|
+
ariaModal: string | null;
|
|
280
|
+
ariaMultiLine: string | null;
|
|
281
|
+
ariaMultiSelectable: string | null;
|
|
282
|
+
ariaOrientation: string | null;
|
|
283
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
284
|
+
ariaPlaceholder: string | null;
|
|
285
|
+
ariaPosInSet: string | null;
|
|
286
|
+
ariaPressed: string | null;
|
|
287
|
+
ariaReadOnly: string | null;
|
|
288
|
+
ariaRelevant: string | null;
|
|
289
|
+
ariaRequired: string | null;
|
|
290
|
+
ariaRoleDescription: string | null;
|
|
291
|
+
ariaRowCount: string | null;
|
|
292
|
+
ariaRowIndex: string | null;
|
|
293
|
+
ariaRowIndexText: string | null;
|
|
294
|
+
ariaRowSpan: string | null;
|
|
295
|
+
ariaSelected: string | null;
|
|
296
|
+
ariaSetSize: string | null;
|
|
297
|
+
ariaSort: string | null;
|
|
298
|
+
ariaValueMax: string | null;
|
|
299
|
+
ariaValueMin: string | null;
|
|
300
|
+
ariaValueNow: string | null;
|
|
301
|
+
ariaValueText: string | null;
|
|
302
|
+
role: string | null;
|
|
303
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
304
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
305
|
+
after(...nodes: (Node | string)[]): void;
|
|
306
|
+
before(...nodes: (Node | string)[]): void;
|
|
307
|
+
remove(): void;
|
|
308
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
|
309
|
+
readonly nextElementSibling: Element | null;
|
|
310
|
+
readonly previousElementSibling: Element | null;
|
|
311
|
+
readonly childElementCount: number;
|
|
312
|
+
readonly children: HTMLCollection;
|
|
313
|
+
readonly firstElementChild: Element | null;
|
|
314
|
+
readonly lastElementChild: Element | null;
|
|
315
|
+
append(...nodes: (Node | string)[]): void;
|
|
316
|
+
prepend(...nodes: (Node | string)[]): void;
|
|
317
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
318
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
319
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
320
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
321
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
322
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
323
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
324
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
325
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
326
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
327
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
|
328
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
|
329
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
330
|
+
get style(): CSSStyleDeclaration;
|
|
331
|
+
set style(cssText: string);
|
|
332
|
+
contentEditable: string;
|
|
333
|
+
enterKeyHint: string;
|
|
334
|
+
inputMode: string;
|
|
335
|
+
readonly isContentEditable: boolean;
|
|
336
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
337
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
338
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
339
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
340
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
341
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
342
|
+
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
343
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
344
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
345
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
346
|
+
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
347
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
348
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
349
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
350
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
351
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
352
|
+
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
353
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
354
|
+
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
355
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
356
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
357
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
358
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
359
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
360
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
361
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
362
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
363
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
364
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
365
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
366
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
367
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
368
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
369
|
+
onerror: OnErrorEventHandler;
|
|
370
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
371
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
372
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
373
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
374
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
375
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
376
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
377
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
378
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
379
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
380
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
381
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
382
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
383
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
384
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
385
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
386
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
387
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
388
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
389
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
390
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
391
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
392
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
393
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
394
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
395
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
396
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
397
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
398
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
399
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
400
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
401
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
402
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
403
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
404
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
405
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
406
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
407
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
408
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
409
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
410
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
411
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
412
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
413
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
414
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
415
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
416
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
417
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
418
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
419
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
420
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
421
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
422
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
423
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
424
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
425
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
426
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
427
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
428
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
429
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
430
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
431
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
432
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
433
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
434
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
435
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
436
|
+
autofocus: boolean;
|
|
437
|
+
readonly dataset: DOMStringMap;
|
|
438
|
+
nonce?: string;
|
|
439
|
+
tabIndex: number;
|
|
440
|
+
blur(): void;
|
|
441
|
+
focus(options?: FocusOptions): void;
|
|
442
|
+
};
|
|
443
|
+
get styles(): s$3;
|
|
444
|
+
finalized: boolean;
|
|
445
|
+
_$litElement$: boolean;
|
|
446
|
+
addInitializer(t: any): void;
|
|
447
|
+
l: any[] | undefined;
|
|
448
|
+
get observedAttributes(): any[];
|
|
449
|
+
createProperty(t: any, ...args: any[]): void;
|
|
450
|
+
getPropertyDescriptor(t: any, e: any, r: any): {
|
|
451
|
+
get(): any;
|
|
452
|
+
set(i: any): any;
|
|
453
|
+
configurable: boolean;
|
|
454
|
+
enumerable: boolean;
|
|
455
|
+
};
|
|
456
|
+
getPropertyOptions(t: any): any;
|
|
457
|
+
finalize(): boolean;
|
|
458
|
+
elementProperties: Map<any, any> | undefined;
|
|
459
|
+
_$Eu: Map<any, any> | undefined;
|
|
460
|
+
elementStyles: any[] | undefined;
|
|
461
|
+
finalizeStyles(t: any): any[];
|
|
462
|
+
_$Eh(t: any, e: any): string | undefined;
|
|
463
|
+
shadowRootOptions: {
|
|
464
|
+
mode: string;
|
|
465
|
+
};
|
|
466
|
+
};
|
|
467
|
+
export var PlayMode: any;
|
|
468
|
+
export var PlayerEvents: any;
|
|
469
|
+
export var PlayerState: any;
|
|
470
|
+
export function parseSrc(t: any): any;
|
|
471
|
+
declare class s$3 {
|
|
472
|
+
constructor(t: any, e: any);
|
|
473
|
+
_$cssResult$: boolean;
|
|
474
|
+
cssText: any;
|
|
475
|
+
get styleSheet(): any;
|
|
476
|
+
toString(): any;
|
|
477
|
+
}
|
|
478
|
+
export {};
|