@swc-react/tooltip 0.33.3-overlay.61 → 0.34.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/index.d.ts +5 -3
- package/index.dev.js +11 -4
- package/index.dev.js.map +2 -2
- package/index.js +1 -1
- package/index.js.map +3 -3
- package/next.d.ts +616 -40
- package/next.dev.js +1 -0
- package/next.dev.js.map +3 -3
- package/next.js +1 -1
- package/next.js.map +3 -3
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import type { EventName } from '@lit-labs/react';
|
|
2
|
+
import { TooltipProxy as SpTooltipProxy } from '@spectrum-web-components/tooltip';
|
|
2
3
|
import { Tooltip as SpTooltip } from '@spectrum-web-components/tooltip';
|
|
3
4
|
import '@spectrum-web-components/tooltip/sp-tooltip.js';
|
|
4
|
-
export declare const
|
|
5
|
-
|
|
6
|
-
transitionend: EventName<TransitionEvent>;
|
|
5
|
+
export declare const TooltipProxy: import("@lit-labs/react").ReactWebComponent<SpTooltipProxy, {
|
|
6
|
+
disconnected: EventName<Event>;
|
|
7
7
|
}>;
|
|
8
|
+
export declare const Tooltip: import("@lit-labs/react").ReactWebComponent<SpTooltip, {}>;
|
|
9
|
+
export declare type TooltipProxyType = EventTarget & SpTooltipProxy;
|
|
8
10
|
export declare type TooltipType = EventTarget & SpTooltip;
|
package/index.dev.js
CHANGED
|
@@ -1,16 +1,23 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
import * as React from "react";
|
|
3
3
|
import { createComponent } from "@lit-labs/react";
|
|
4
|
+
import { TooltipProxy as SpTooltipProxy } from "@spectrum-web-components/tooltip";
|
|
4
5
|
import { Tooltip as SpTooltip } from "@spectrum-web-components/tooltip";
|
|
5
6
|
import "@spectrum-web-components/tooltip/sp-tooltip.js";
|
|
7
|
+
export const TooltipProxy = createComponent({
|
|
8
|
+
displayName: "TooltipProxy",
|
|
9
|
+
elementClass: SpTooltipProxy,
|
|
10
|
+
react: React,
|
|
11
|
+
tagName: "tooltip-proxy",
|
|
12
|
+
events: {
|
|
13
|
+
disconnected: "disconnected"
|
|
14
|
+
}
|
|
15
|
+
});
|
|
6
16
|
export const Tooltip = createComponent({
|
|
7
17
|
displayName: "Tooltip",
|
|
8
18
|
elementClass: SpTooltip,
|
|
9
19
|
react: React,
|
|
10
20
|
tagName: "sp-tooltip",
|
|
11
|
-
events: {
|
|
12
|
-
transitionrun: "transitionrun",
|
|
13
|
-
transitionend: "transitionend"
|
|
14
|
-
}
|
|
21
|
+
events: {}
|
|
15
22
|
});
|
|
16
23
|
//# sourceMappingURL=index.dev.js.map
|
package/index.dev.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["index.ts"],
|
|
4
|
-
"sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport * as React from 'react';\nimport { createComponent } from '@lit-labs/react';\nimport type { EventName } from '@lit-labs/react';\nimport { Tooltip as SpTooltip } from '@spectrum-web-components/tooltip';\n\nimport '@spectrum-web-components/tooltip/sp-tooltip.js';\n\nexport const
|
|
5
|
-
"mappings": ";AAYA,YAAY,WAAW;AACvB,SAAS,uBAAuB;AAEhC,SAAS,WAAW,iBAAiB;AAErC,OAAO;AAEA,aAAM,
|
|
4
|
+
"sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport * as React from 'react';\nimport { createComponent } from '@lit-labs/react';\nimport type { EventName } from '@lit-labs/react';\nimport { TooltipProxy as SpTooltipProxy } from '@spectrum-web-components/tooltip';\nimport { Tooltip as SpTooltip } from '@spectrum-web-components/tooltip';\n\nimport '@spectrum-web-components/tooltip/sp-tooltip.js';\n\nexport const TooltipProxy = createComponent({\n displayName: 'TooltipProxy',\n elementClass: SpTooltipProxy,\n react: React,\n tagName: 'tooltip-proxy',\n events: {\n disconnected: 'disconnected' as EventName<Event>,\n },\n});\nexport const Tooltip = createComponent({\n displayName: 'Tooltip',\n elementClass: SpTooltip,\n react: React,\n tagName: 'sp-tooltip',\n events: {},\n});\n\nexport type TooltipProxyType = EventTarget & SpTooltipProxy;\nexport type TooltipType = EventTarget & SpTooltip;\n"],
|
|
5
|
+
"mappings": ";AAYA,YAAY,WAAW;AACvB,SAAS,uBAAuB;AAEhC,SAAS,gBAAgB,sBAAsB;AAC/C,SAAS,WAAW,iBAAiB;AAErC,OAAO;AAEA,aAAM,eAAe,gBAAgB;AAAA,EACxC,aAAa;AAAA,EACb,cAAc;AAAA,EACd,OAAO;AAAA,EACP,SAAS;AAAA,EACT,QAAQ;AAAA,IACJ,cAAc;AAAA,EAClB;AACJ,CAAC;AACM,aAAM,UAAU,gBAAgB;AAAA,EACnC,aAAa;AAAA,EACb,cAAc;AAAA,EACd,OAAO;AAAA,EACP,SAAS;AAAA,EACT,QAAQ,CAAC;AACb,CAAC;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";import*as
|
|
1
|
+
"use strict";import*as o from"react";import{createComponent as t}from"@lit-labs/react";import{TooltipProxy as e}from"@spectrum-web-components/tooltip";import{Tooltip as p}from"@spectrum-web-components/tooltip";import"@spectrum-web-components/tooltip/sp-tooltip.js";export const TooltipProxy=t({displayName:"TooltipProxy",elementClass:e,react:o,tagName:"tooltip-proxy",events:{disconnected:"disconnected"}}),Tooltip=t({displayName:"Tooltip",elementClass:p,react:o,tagName:"sp-tooltip",events:{}});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["index.ts"],
|
|
4
|
-
"sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport * as React from 'react';\nimport { createComponent } from '@lit-labs/react';\nimport type { EventName } from '@lit-labs/react';\nimport { Tooltip as SpTooltip } from '@spectrum-web-components/tooltip';\n\nimport '@spectrum-web-components/tooltip/sp-tooltip.js';\n\nexport const
|
|
5
|
-
"mappings": "aAYA,UAAYA,MAAW,QACvB,OAAS,mBAAAC,MAAuB,kBAEhC,OAAS,WAAWC,MAAiB,mCAErC,MAAO,iDAEA,aAAM,
|
|
6
|
-
"names": ["React", "createComponent", "SpTooltip"]
|
|
4
|
+
"sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport * as React from 'react';\nimport { createComponent } from '@lit-labs/react';\nimport type { EventName } from '@lit-labs/react';\nimport { TooltipProxy as SpTooltipProxy } from '@spectrum-web-components/tooltip';\nimport { Tooltip as SpTooltip } from '@spectrum-web-components/tooltip';\n\nimport '@spectrum-web-components/tooltip/sp-tooltip.js';\n\nexport const TooltipProxy = createComponent({\n displayName: 'TooltipProxy',\n elementClass: SpTooltipProxy,\n react: React,\n tagName: 'tooltip-proxy',\n events: {\n disconnected: 'disconnected' as EventName<Event>,\n },\n});\nexport const Tooltip = createComponent({\n displayName: 'Tooltip',\n elementClass: SpTooltip,\n react: React,\n tagName: 'sp-tooltip',\n events: {},\n});\n\nexport type TooltipProxyType = EventTarget & SpTooltipProxy;\nexport type TooltipType = EventTarget & SpTooltip;\n"],
|
|
5
|
+
"mappings": "aAYA,UAAYA,MAAW,QACvB,OAAS,mBAAAC,MAAuB,kBAEhC,OAAS,gBAAgBC,MAAsB,mCAC/C,OAAS,WAAWC,MAAiB,mCAErC,MAAO,iDAEA,aAAM,aAAeF,EAAgB,CACxC,YAAa,eACb,aAAcC,EACd,MAAOF,EACP,QAAS,gBACT,OAAQ,CACJ,aAAc,cAClB,CACJ,CAAC,EACY,QAAUC,EAAgB,CACnC,YAAa,UACb,aAAcE,EACd,MAAOH,EACP,QAAS,aACT,OAAQ,CAAC,CACb,CAAC",
|
|
6
|
+
"names": ["React", "createComponent", "SpTooltipProxy", "SpTooltip"]
|
|
7
7
|
}
|
package/next.d.ts
CHANGED
|
@@ -1,25 +1,602 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const TooltipProxy: import("react").ComponentType<Partial<{
|
|
3
3
|
dir?: string | undefined;
|
|
4
|
+
color?: string | undefined;
|
|
5
|
+
lang?: string | undefined;
|
|
4
6
|
slot?: string | undefined;
|
|
5
7
|
style?: import("react").CSSProperties | undefined;
|
|
6
8
|
title?: string | undefined;
|
|
9
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
7
10
|
accessKey?: string | undefined;
|
|
11
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
12
|
+
id?: string | undefined;
|
|
13
|
+
className?: string | undefined;
|
|
14
|
+
tabIndex?: number | undefined;
|
|
15
|
+
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
16
|
+
role?: import("react").AriaRole | undefined;
|
|
17
|
+
'aria-label'?: string | undefined;
|
|
18
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
19
|
+
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
20
|
+
'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
21
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
22
|
+
hidden?: boolean | undefined;
|
|
23
|
+
translate?: "yes" | "no" | undefined;
|
|
24
|
+
prefix?: string | undefined;
|
|
25
|
+
children?: import("react").ReactNode;
|
|
26
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
27
|
+
inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
28
|
+
nonce?: string | undefined;
|
|
29
|
+
'aria-describedby'?: string | undefined;
|
|
30
|
+
defaultChecked?: boolean | undefined;
|
|
31
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
32
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
33
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
34
|
+
contextMenu?: string | undefined;
|
|
35
|
+
placeholder?: string | undefined;
|
|
36
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
37
|
+
radioGroup?: string | undefined;
|
|
38
|
+
about?: string | undefined;
|
|
39
|
+
datatype?: string | undefined;
|
|
40
|
+
inlist?: any;
|
|
41
|
+
property?: string | undefined;
|
|
42
|
+
resource?: string | undefined;
|
|
43
|
+
typeof?: string | undefined;
|
|
44
|
+
vocab?: string | undefined;
|
|
45
|
+
autoCapitalize?: string | undefined;
|
|
46
|
+
autoCorrect?: string | undefined;
|
|
47
|
+
autoSave?: string | undefined;
|
|
48
|
+
itemProp?: string | undefined;
|
|
49
|
+
itemScope?: boolean | undefined;
|
|
50
|
+
itemType?: string | undefined;
|
|
51
|
+
itemID?: string | undefined;
|
|
52
|
+
itemRef?: string | undefined;
|
|
53
|
+
results?: number | undefined;
|
|
54
|
+
security?: string | undefined;
|
|
55
|
+
unselectable?: "on" | "off" | undefined;
|
|
56
|
+
is?: string | undefined;
|
|
57
|
+
'aria-activedescendant'?: string | undefined;
|
|
58
|
+
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
59
|
+
'aria-autocomplete'?: "inline" | "none" | "list" | "both" | undefined;
|
|
60
|
+
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
61
|
+
'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
62
|
+
'aria-colcount'?: number | undefined;
|
|
63
|
+
'aria-colindex'?: number | undefined;
|
|
64
|
+
'aria-colspan'?: number | undefined;
|
|
65
|
+
'aria-controls'?: string | undefined;
|
|
66
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
67
|
+
'aria-details'?: string | undefined;
|
|
68
|
+
'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
|
|
69
|
+
'aria-errormessage'?: string | undefined;
|
|
70
|
+
'aria-flowto'?: string | undefined;
|
|
71
|
+
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
72
|
+
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
73
|
+
'aria-keyshortcuts'?: string | undefined;
|
|
74
|
+
'aria-labelledby'?: string | undefined;
|
|
75
|
+
'aria-level'?: number | undefined;
|
|
76
|
+
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
|
77
|
+
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
78
|
+
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
79
|
+
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
|
80
|
+
'aria-owns'?: string | undefined;
|
|
81
|
+
'aria-placeholder'?: string | undefined;
|
|
82
|
+
'aria-posinset'?: number | undefined;
|
|
83
|
+
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
84
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
85
|
+
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
86
|
+
'aria-roledescription'?: string | undefined;
|
|
87
|
+
'aria-rowcount'?: number | undefined;
|
|
88
|
+
'aria-rowindex'?: number | undefined;
|
|
89
|
+
'aria-rowspan'?: number | undefined;
|
|
90
|
+
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
91
|
+
'aria-setsize'?: number | undefined;
|
|
92
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
93
|
+
'aria-valuemax'?: number | undefined;
|
|
94
|
+
'aria-valuemin'?: number | undefined;
|
|
95
|
+
'aria-valuenow'?: number | undefined;
|
|
96
|
+
'aria-valuetext'?: string | undefined;
|
|
97
|
+
dangerouslySetInnerHTML?: {
|
|
98
|
+
__html: string;
|
|
99
|
+
} | undefined;
|
|
100
|
+
onCopy?: import("react").ClipboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
101
|
+
onCopyCapture?: import("react").ClipboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
102
|
+
onCut?: import("react").ClipboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
103
|
+
onCutCapture?: import("react").ClipboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
104
|
+
onPaste?: import("react").ClipboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
105
|
+
onPasteCapture?: import("react").ClipboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
106
|
+
onCompositionEnd?: import("react").CompositionEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
107
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
108
|
+
onCompositionStart?: import("react").CompositionEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
109
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
110
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
111
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
112
|
+
onFocus?: import("react").FocusEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
113
|
+
onFocusCapture?: import("react").FocusEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
114
|
+
onBlur?: import("react").FocusEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
115
|
+
onBlurCapture?: import("react").FocusEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
116
|
+
onChange?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
117
|
+
onChangeCapture?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
118
|
+
onBeforeInput?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
119
|
+
onBeforeInputCapture?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
120
|
+
onInput?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
121
|
+
onInputCapture?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
122
|
+
onReset?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
123
|
+
onResetCapture?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
124
|
+
onSubmit?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
125
|
+
onSubmitCapture?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
126
|
+
onInvalid?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
127
|
+
onInvalidCapture?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
128
|
+
onLoad?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
129
|
+
onLoadCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
130
|
+
onError?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
131
|
+
onErrorCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
132
|
+
onKeyDown?: import("react").KeyboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
133
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
134
|
+
onKeyPress?: import("react").KeyboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
135
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
136
|
+
onKeyUp?: import("react").KeyboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
137
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
138
|
+
onAbort?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
139
|
+
onAbortCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
140
|
+
onCanPlay?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
141
|
+
onCanPlayCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
142
|
+
onCanPlayThrough?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
143
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
144
|
+
onDurationChange?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
145
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
146
|
+
onEmptied?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
147
|
+
onEmptiedCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
148
|
+
onEncrypted?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
149
|
+
onEncryptedCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
150
|
+
onEnded?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
151
|
+
onEndedCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
152
|
+
onLoadedData?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
153
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
154
|
+
onLoadedMetadata?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
155
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
156
|
+
onLoadStart?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
157
|
+
onLoadStartCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
158
|
+
onPause?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
159
|
+
onPauseCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
160
|
+
onPlay?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
161
|
+
onPlayCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
162
|
+
onPlaying?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
163
|
+
onPlayingCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
164
|
+
onProgress?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
165
|
+
onProgressCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
166
|
+
onRateChange?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
167
|
+
onRateChangeCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
168
|
+
onResize?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
169
|
+
onResizeCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
170
|
+
onSeeked?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
171
|
+
onSeekedCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
172
|
+
onSeeking?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
173
|
+
onSeekingCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
174
|
+
onStalled?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
175
|
+
onStalledCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
176
|
+
onSuspend?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
177
|
+
onSuspendCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
178
|
+
onTimeUpdate?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
179
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
180
|
+
onVolumeChange?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
181
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
182
|
+
onWaiting?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
183
|
+
onWaitingCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
184
|
+
onAuxClick?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
185
|
+
onAuxClickCapture?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
186
|
+
onClick?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
187
|
+
onClickCapture?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
188
|
+
onContextMenu?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
189
|
+
onContextMenuCapture?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
190
|
+
onDoubleClick?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
191
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
192
|
+
onDrag?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
193
|
+
onDragCapture?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
194
|
+
onDragEnd?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
195
|
+
onDragEndCapture?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
196
|
+
onDragEnter?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
197
|
+
onDragEnterCapture?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
198
|
+
onDragExit?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
199
|
+
onDragExitCapture?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
200
|
+
onDragLeave?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
201
|
+
onDragLeaveCapture?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
202
|
+
onDragOver?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
203
|
+
onDragOverCapture?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
204
|
+
onDragStart?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
205
|
+
onDragStartCapture?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
206
|
+
onDrop?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
207
|
+
onDropCapture?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
208
|
+
onMouseDown?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
209
|
+
onMouseDownCapture?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
210
|
+
onMouseEnter?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
211
|
+
onMouseLeave?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
212
|
+
onMouseMove?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
213
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
214
|
+
onMouseOut?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
215
|
+
onMouseOutCapture?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
216
|
+
onMouseOver?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
217
|
+
onMouseOverCapture?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
218
|
+
onMouseUp?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
219
|
+
onMouseUpCapture?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
220
|
+
onSelect?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
221
|
+
onSelectCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
222
|
+
onTouchCancel?: import("react").TouchEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
223
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
224
|
+
onTouchEnd?: import("react").TouchEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
225
|
+
onTouchEndCapture?: import("react").TouchEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
226
|
+
onTouchMove?: import("react").TouchEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
227
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
228
|
+
onTouchStart?: import("react").TouchEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
229
|
+
onTouchStartCapture?: import("react").TouchEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
230
|
+
onPointerDown?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
231
|
+
onPointerDownCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
232
|
+
onPointerMove?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
233
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
234
|
+
onPointerUp?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
235
|
+
onPointerUpCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
236
|
+
onPointerCancel?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
237
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
238
|
+
onPointerEnter?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
239
|
+
onPointerEnterCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
240
|
+
onPointerLeave?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
241
|
+
onPointerLeaveCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
242
|
+
onPointerOver?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
243
|
+
onPointerOverCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
244
|
+
onPointerOut?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
245
|
+
onPointerOutCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
246
|
+
onGotPointerCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
247
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
248
|
+
onLostPointerCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
249
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
250
|
+
onScroll?: import("react").UIEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
251
|
+
onScrollCapture?: import("react").UIEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
252
|
+
onWheel?: import("react").WheelEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
253
|
+
onWheelCapture?: import("react").WheelEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
254
|
+
onAnimationStart?: import("react").AnimationEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
255
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
256
|
+
onAnimationEnd?: import("react").AnimationEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
257
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
258
|
+
onAnimationIteration?: import("react").AnimationEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
259
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
260
|
+
onTransitionEnd?: import("react").TransitionEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
261
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
262
|
+
} & {
|
|
263
|
+
readonly attributes: NamedNodeMap;
|
|
264
|
+
readonly localName: string;
|
|
265
|
+
readonly shadowRoot: ShadowRoot | null;
|
|
266
|
+
blur: () => void;
|
|
267
|
+
click: () => void;
|
|
268
|
+
focus: (options?: FocusOptions | undefined) => void;
|
|
269
|
+
scroll: {
|
|
270
|
+
(options?: ScrollToOptions | undefined): void;
|
|
271
|
+
(x: number, y: number): void;
|
|
272
|
+
};
|
|
273
|
+
animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
|
|
274
|
+
remove: () => void;
|
|
275
|
+
ariaHidden: string | null;
|
|
276
|
+
autofocus: boolean;
|
|
277
|
+
normalize: () => void;
|
|
278
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
|
279
|
+
disconnectedCallback: () => void;
|
|
280
|
+
readonly accessKeyLabel: string;
|
|
281
|
+
autocapitalize: string;
|
|
282
|
+
inert: boolean;
|
|
283
|
+
innerText: string;
|
|
284
|
+
readonly offsetHeight: number;
|
|
285
|
+
readonly offsetLeft: number;
|
|
286
|
+
readonly offsetParent: Element | null;
|
|
287
|
+
readonly offsetTop: number;
|
|
288
|
+
readonly offsetWidth: number;
|
|
289
|
+
outerText: string;
|
|
290
|
+
spellcheck: boolean;
|
|
291
|
+
attachInternals: () => ElementInternals;
|
|
292
|
+
addEventListener: {
|
|
293
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
294
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
295
|
+
};
|
|
296
|
+
removeEventListener: {
|
|
297
|
+
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
|
298
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
|
|
299
|
+
};
|
|
300
|
+
readonly classList: DOMTokenList;
|
|
301
|
+
readonly clientHeight: number;
|
|
302
|
+
readonly clientLeft: number;
|
|
303
|
+
readonly clientTop: number;
|
|
304
|
+
readonly clientWidth: number;
|
|
305
|
+
readonly namespaceURI: string | null;
|
|
306
|
+
onfullscreenchange: ((this: Element, ev: Event) => any) | null;
|
|
307
|
+
onfullscreenerror: ((this: Element, ev: Event) => any) | null;
|
|
308
|
+
outerHTML: string;
|
|
309
|
+
readonly ownerDocument: Document;
|
|
310
|
+
readonly part: DOMTokenList;
|
|
311
|
+
readonly scrollHeight: number;
|
|
312
|
+
scrollLeft: number;
|
|
313
|
+
scrollTop: number;
|
|
314
|
+
readonly scrollWidth: number;
|
|
315
|
+
readonly tagName: string;
|
|
316
|
+
attachShadow: (init: ShadowRootInit) => ShadowRoot;
|
|
317
|
+
closest: {
|
|
318
|
+
<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
|
|
319
|
+
<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
|
|
320
|
+
<E extends Element = Element>(selectors: string): E | null;
|
|
321
|
+
};
|
|
322
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
323
|
+
getAttributeNS: (namespace: string | null, localName: string) => string | null;
|
|
324
|
+
getAttributeNames: () => string[];
|
|
325
|
+
getAttributeNode: (qualifiedName: string) => Attr | null;
|
|
326
|
+
getAttributeNodeNS: (namespace: string | null, localName: string) => Attr | null;
|
|
327
|
+
getBoundingClientRect: () => DOMRect;
|
|
328
|
+
getClientRects: () => DOMRectList;
|
|
329
|
+
getElementsByClassName: (classNames: string) => HTMLCollectionOf<Element>;
|
|
330
|
+
getElementsByTagName: {
|
|
331
|
+
<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
|
332
|
+
<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
|
333
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
334
|
+
};
|
|
335
|
+
getElementsByTagNameNS: {
|
|
336
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
337
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
338
|
+
(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
339
|
+
};
|
|
340
|
+
hasAttribute: (qualifiedName: string) => boolean;
|
|
341
|
+
hasAttributeNS: (namespace: string | null, localName: string) => boolean;
|
|
342
|
+
hasAttributes: () => boolean;
|
|
343
|
+
hasPointerCapture: (pointerId: number) => boolean;
|
|
344
|
+
insertAdjacentElement: (where: InsertPosition, element: Element) => Element | null;
|
|
345
|
+
insertAdjacentHTML: (position: InsertPosition, text: string) => void;
|
|
346
|
+
insertAdjacentText: (where: InsertPosition, data: string) => void;
|
|
347
|
+
matches: (selectors: string) => boolean;
|
|
348
|
+
releasePointerCapture: (pointerId: number) => void;
|
|
349
|
+
removeAttribute: (qualifiedName: string) => void;
|
|
350
|
+
removeAttributeNS: (namespace: string | null, localName: string) => void;
|
|
351
|
+
removeAttributeNode: (attr: Attr) => Attr;
|
|
352
|
+
requestFullscreen: (options?: FullscreenOptions | undefined) => Promise<void>;
|
|
353
|
+
requestPointerLock: () => void;
|
|
354
|
+
scrollBy: {
|
|
355
|
+
(options?: ScrollToOptions | undefined): void;
|
|
356
|
+
(x: number, y: number): void;
|
|
357
|
+
};
|
|
358
|
+
scrollIntoView: (arg?: boolean | ScrollIntoViewOptions | undefined) => void;
|
|
359
|
+
scrollTo: {
|
|
360
|
+
(options?: ScrollToOptions | undefined): void;
|
|
361
|
+
(x: number, y: number): void;
|
|
362
|
+
};
|
|
363
|
+
setAttribute: (qualifiedName: string, value: string) => void;
|
|
364
|
+
setAttributeNS: (namespace: string | null, qualifiedName: string, value: string) => void;
|
|
365
|
+
setAttributeNode: (attr: Attr) => Attr | null;
|
|
366
|
+
setAttributeNodeNS: (attr: Attr) => Attr | null;
|
|
367
|
+
setPointerCapture: (pointerId: number) => void;
|
|
368
|
+
toggleAttribute: (qualifiedName: string, force?: boolean | undefined) => boolean;
|
|
369
|
+
webkitMatchesSelector: (selectors: string) => boolean;
|
|
370
|
+
readonly baseURI: string;
|
|
371
|
+
readonly firstChild: ChildNode | null;
|
|
372
|
+
readonly isConnected: boolean;
|
|
373
|
+
readonly lastChild: ChildNode | null;
|
|
374
|
+
readonly nextSibling: ChildNode | null;
|
|
375
|
+
readonly nodeName: string;
|
|
376
|
+
readonly nodeType: number;
|
|
377
|
+
nodeValue: string | null;
|
|
378
|
+
readonly parentElement: HTMLElement | null;
|
|
379
|
+
readonly parentNode: ParentNode | null;
|
|
380
|
+
readonly previousSibling: ChildNode | null;
|
|
381
|
+
textContent: string | null;
|
|
382
|
+
appendChild: <T extends Node>(node: T) => T;
|
|
383
|
+
cloneNode: (deep?: boolean | undefined) => Node;
|
|
384
|
+
compareDocumentPosition: (other: Node) => number;
|
|
385
|
+
contains: (other: Node | null) => boolean;
|
|
386
|
+
getRootNode: (options?: GetRootNodeOptions | undefined) => Node;
|
|
387
|
+
hasChildNodes: () => boolean;
|
|
388
|
+
insertBefore: <T_1 extends Node>(node: T_1, child: Node | null) => T_1;
|
|
389
|
+
isDefaultNamespace: (namespace: string | null) => boolean;
|
|
390
|
+
isEqualNode: (otherNode: Node | null) => boolean;
|
|
391
|
+
isSameNode: (otherNode: Node | null) => boolean;
|
|
392
|
+
lookupNamespaceURI: (prefix: string | null) => string | null;
|
|
393
|
+
lookupPrefix: (namespace: string | null) => string | null;
|
|
394
|
+
removeChild: <T_2 extends Node>(child: T_2) => T_2;
|
|
395
|
+
replaceChild: <T_3 extends Node>(node: Node, child: T_3) => T_3;
|
|
396
|
+
readonly ATTRIBUTE_NODE: number;
|
|
397
|
+
readonly CDATA_SECTION_NODE: number;
|
|
398
|
+
readonly COMMENT_NODE: number;
|
|
399
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
|
400
|
+
readonly DOCUMENT_NODE: number;
|
|
401
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
|
402
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
|
403
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
|
404
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
|
405
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
|
406
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
|
407
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
|
408
|
+
readonly ELEMENT_NODE: number;
|
|
409
|
+
readonly ENTITY_NODE: number;
|
|
410
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
|
411
|
+
readonly NOTATION_NODE: number;
|
|
412
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
413
|
+
readonly TEXT_NODE: number;
|
|
414
|
+
dispatchEvent: (event: Event) => boolean;
|
|
415
|
+
ariaAtomic: string | null;
|
|
416
|
+
ariaAutoComplete: string | null;
|
|
417
|
+
ariaBusy: string | null;
|
|
418
|
+
ariaChecked: string | null;
|
|
419
|
+
ariaColCount: string | null;
|
|
420
|
+
ariaColIndex: string | null;
|
|
421
|
+
ariaColSpan: string | null;
|
|
422
|
+
ariaCurrent: string | null;
|
|
423
|
+
ariaDisabled: string | null;
|
|
424
|
+
ariaExpanded: string | null;
|
|
425
|
+
ariaHasPopup: string | null;
|
|
426
|
+
ariaKeyShortcuts: string | null;
|
|
427
|
+
ariaLabel: string | null;
|
|
428
|
+
ariaLevel: string | null;
|
|
429
|
+
ariaLive: string | null;
|
|
430
|
+
ariaModal: string | null;
|
|
431
|
+
ariaMultiLine: string | null;
|
|
432
|
+
ariaMultiSelectable: string | null;
|
|
433
|
+
ariaOrientation: string | null;
|
|
434
|
+
ariaPlaceholder: string | null;
|
|
435
|
+
ariaPosInSet: string | null;
|
|
436
|
+
ariaPressed: string | null;
|
|
437
|
+
ariaReadOnly: string | null;
|
|
438
|
+
ariaRequired: string | null;
|
|
439
|
+
ariaRoleDescription: string | null;
|
|
440
|
+
ariaRowCount: string | null;
|
|
441
|
+
ariaRowIndex: string | null;
|
|
442
|
+
ariaRowSpan: string | null;
|
|
443
|
+
ariaSelected: string | null;
|
|
444
|
+
ariaSetSize: string | null;
|
|
445
|
+
ariaSort: string | null;
|
|
446
|
+
ariaValueMax: string | null;
|
|
447
|
+
ariaValueMin: string | null;
|
|
448
|
+
ariaValueNow: string | null;
|
|
449
|
+
ariaValueText: string | null;
|
|
450
|
+
getAnimations: (options?: GetAnimationsOptions | undefined) => Animation[];
|
|
451
|
+
after: (...nodes: (string | Node)[]) => void;
|
|
452
|
+
before: (...nodes: (string | Node)[]) => void;
|
|
453
|
+
replaceWith: (...nodes: (string | Node)[]) => void;
|
|
454
|
+
innerHTML: string;
|
|
455
|
+
readonly nextElementSibling: Element | null;
|
|
456
|
+
readonly previousElementSibling: Element | null;
|
|
457
|
+
readonly childElementCount: number;
|
|
458
|
+
readonly firstElementChild: Element | null;
|
|
459
|
+
readonly lastElementChild: Element | null;
|
|
460
|
+
append: (...nodes: (string | Node)[]) => void;
|
|
461
|
+
prepend: (...nodes: (string | Node)[]) => void;
|
|
462
|
+
querySelector: {
|
|
463
|
+
<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6] | null;
|
|
464
|
+
<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7] | null;
|
|
465
|
+
<E_1 extends Element = Element>(selectors: string): E_1 | null;
|
|
466
|
+
};
|
|
467
|
+
querySelectorAll: {
|
|
468
|
+
<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
|
469
|
+
<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
|
470
|
+
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
471
|
+
};
|
|
472
|
+
replaceChildren: (...nodes: (string | Node)[]) => void;
|
|
473
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
|
474
|
+
oncopy: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
475
|
+
oncut: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
476
|
+
onpaste: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
477
|
+
enterKeyHint: string;
|
|
478
|
+
readonly isContentEditable: boolean;
|
|
479
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
480
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
481
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
482
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
483
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
484
|
+
onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
485
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
486
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
487
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
488
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
489
|
+
onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
490
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
491
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
492
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
493
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
494
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
495
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
496
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
497
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
498
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
499
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
500
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
501
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
502
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
503
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
504
|
+
onerror: OnErrorEventHandler;
|
|
505
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
506
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
507
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
508
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
509
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
510
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
511
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
512
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
513
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
514
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
515
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
516
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
517
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
518
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
519
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
520
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
521
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
522
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
523
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
524
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
525
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
526
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
527
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
528
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
529
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
530
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
531
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
532
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
533
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
534
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
535
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
536
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
|
|
537
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
538
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
539
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
540
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
541
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
542
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
543
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
544
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
545
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
546
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
547
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
548
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
549
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
550
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
551
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
552
|
+
ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
553
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
554
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
555
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
556
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
557
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
558
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
559
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
560
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
561
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
562
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
563
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
564
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
565
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
566
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
567
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
568
|
+
readonly dataset: DOMStringMap;
|
|
569
|
+
} & {
|
|
570
|
+
disconnected: (e: Event) => void;
|
|
571
|
+
}> & import("react").RefAttributes<import("tooltip/src").TooltipProxy>>;
|
|
572
|
+
export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
573
|
+
dir?: string | undefined;
|
|
8
574
|
color?: string | undefined;
|
|
9
575
|
lang?: string | undefined;
|
|
10
|
-
|
|
576
|
+
slot?: string | undefined;
|
|
577
|
+
style?: import("react").CSSProperties | undefined;
|
|
578
|
+
title?: string | undefined;
|
|
579
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
580
|
+
accessKey?: string | undefined;
|
|
581
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
11
582
|
id?: string | undefined;
|
|
583
|
+
className?: string | undefined;
|
|
12
584
|
tabIndex?: number | undefined;
|
|
13
585
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
14
|
-
|
|
586
|
+
role?: import("react").AriaRole | undefined;
|
|
587
|
+
'aria-label'?: string | undefined;
|
|
588
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
589
|
+
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
590
|
+
'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
15
591
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
16
592
|
hidden?: boolean | undefined;
|
|
17
593
|
translate?: "yes" | "no" | undefined;
|
|
18
594
|
prefix?: string | undefined;
|
|
19
595
|
children?: import("react").ReactNode;
|
|
20
596
|
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
21
|
-
inputMode?: "
|
|
597
|
+
inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
22
598
|
nonce?: string | undefined;
|
|
599
|
+
'aria-describedby'?: string | undefined;
|
|
23
600
|
defaultChecked?: boolean | undefined;
|
|
24
601
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
25
602
|
suppressContentEditableWarning?: boolean | undefined;
|
|
@@ -28,7 +605,6 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
28
605
|
placeholder?: string | undefined;
|
|
29
606
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
30
607
|
radioGroup?: string | undefined;
|
|
31
|
-
role?: import("react").AriaRole | undefined;
|
|
32
608
|
about?: string | undefined;
|
|
33
609
|
datatype?: string | undefined;
|
|
34
610
|
inlist?: any;
|
|
@@ -50,36 +626,30 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
50
626
|
is?: string | undefined;
|
|
51
627
|
'aria-activedescendant'?: string | undefined;
|
|
52
628
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
53
|
-
'aria-autocomplete'?: "
|
|
629
|
+
'aria-autocomplete'?: "inline" | "none" | "list" | "both" | undefined;
|
|
54
630
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
55
631
|
'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
56
632
|
'aria-colcount'?: number | undefined;
|
|
57
633
|
'aria-colindex'?: number | undefined;
|
|
58
634
|
'aria-colspan'?: number | undefined;
|
|
59
635
|
'aria-controls'?: string | undefined;
|
|
60
|
-
'aria-current'?: boolean | "time" | "
|
|
636
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
61
637
|
'aria-details'?: string | undefined;
|
|
62
638
|
'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
|
|
63
639
|
'aria-errormessage'?: string | undefined;
|
|
64
|
-
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
65
640
|
'aria-flowto'?: string | undefined;
|
|
66
641
|
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
67
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
68
|
-
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
69
642
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
70
643
|
'aria-keyshortcuts'?: string | undefined;
|
|
71
|
-
'aria-label'?: string | undefined;
|
|
72
644
|
'aria-labelledby'?: string | undefined;
|
|
73
645
|
'aria-level'?: number | undefined;
|
|
74
646
|
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
|
75
|
-
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
76
647
|
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
77
648
|
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
78
649
|
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
|
79
650
|
'aria-owns'?: string | undefined;
|
|
80
651
|
'aria-placeholder'?: string | undefined;
|
|
81
652
|
'aria-posinset'?: number | undefined;
|
|
82
|
-
'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
83
653
|
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
84
654
|
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
85
655
|
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
@@ -262,7 +832,8 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
262
832
|
} & {
|
|
263
833
|
readonly attributes: NamedNodeMap;
|
|
264
834
|
readonly localName: string;
|
|
265
|
-
|
|
835
|
+
shadowRoot: ShadowRoot;
|
|
836
|
+
open: boolean;
|
|
266
837
|
blur: () => void;
|
|
267
838
|
click: () => void;
|
|
268
839
|
focus: (options?: FocusOptions | undefined) => void;
|
|
@@ -270,28 +841,18 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
270
841
|
(options?: ScrollToOptions | undefined): void;
|
|
271
842
|
(x: number, y: number): void;
|
|
272
843
|
};
|
|
273
|
-
|
|
274
|
-
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
275
|
-
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
276
|
-
};
|
|
277
|
-
dispatchEvent: (event: Event) => boolean;
|
|
278
|
-
removeEventListener: {
|
|
279
|
-
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
|
280
|
-
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
|
|
281
|
-
};
|
|
282
|
-
open: boolean;
|
|
283
|
-
readonly assignedSlot: HTMLSlotElement | null;
|
|
284
|
-
placement?: import("@floating-ui/core").Placement | undefined;
|
|
285
|
-
shadowRoot: ShadowRoot;
|
|
286
|
-
offset: number;
|
|
287
|
-
normalize: () => void;
|
|
288
|
-
readonly parentElement: HTMLElement | null;
|
|
844
|
+
animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
|
|
289
845
|
readonly renderOptions: import("lit-html").RenderOptions;
|
|
290
|
-
|
|
846
|
+
placement: import("overlay/src").Placement;
|
|
847
|
+
remove: () => void;
|
|
848
|
+
offset: number;
|
|
291
849
|
ariaHidden: string | null;
|
|
850
|
+
autofocus: boolean;
|
|
851
|
+
normalize: () => void;
|
|
292
852
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
293
|
-
|
|
853
|
+
variant: string;
|
|
294
854
|
disconnectedCallback: () => void;
|
|
855
|
+
connectedCallback: () => void;
|
|
295
856
|
readonly renderRoot: HTMLElement | ShadowRoot;
|
|
296
857
|
isUpdatePending: boolean;
|
|
297
858
|
hasUpdated: boolean;
|
|
@@ -312,6 +873,14 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
312
873
|
outerText: string;
|
|
313
874
|
spellcheck: boolean;
|
|
314
875
|
attachInternals: () => ElementInternals;
|
|
876
|
+
addEventListener: {
|
|
877
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
878
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
879
|
+
};
|
|
880
|
+
removeEventListener: {
|
|
881
|
+
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
|
882
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
|
|
883
|
+
};
|
|
315
884
|
readonly classList: DOMTokenList;
|
|
316
885
|
readonly clientHeight: number;
|
|
317
886
|
readonly clientLeft: number;
|
|
@@ -390,6 +959,7 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
390
959
|
readonly nodeName: string;
|
|
391
960
|
readonly nodeType: number;
|
|
392
961
|
nodeValue: string | null;
|
|
962
|
+
readonly parentElement: HTMLElement | null;
|
|
393
963
|
readonly parentNode: ParentNode | null;
|
|
394
964
|
readonly previousSibling: ChildNode | null;
|
|
395
965
|
textContent: string | null;
|
|
@@ -399,7 +969,7 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
399
969
|
contains: (other: Node | null) => boolean;
|
|
400
970
|
getRootNode: (options?: GetRootNodeOptions | undefined) => Node;
|
|
401
971
|
hasChildNodes: () => boolean;
|
|
402
|
-
insertBefore: <
|
|
972
|
+
insertBefore: <T extends Node>(node: T, child: Node | null) => T;
|
|
403
973
|
isDefaultNamespace: (namespace: string | null) => boolean;
|
|
404
974
|
isEqualNode: (otherNode: Node | null) => boolean;
|
|
405
975
|
isSameNode: (otherNode: Node | null) => boolean;
|
|
@@ -425,6 +995,7 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
425
995
|
readonly NOTATION_NODE: number;
|
|
426
996
|
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
427
997
|
readonly TEXT_NODE: number;
|
|
998
|
+
dispatchEvent: (event: Event) => boolean;
|
|
428
999
|
ariaAtomic: string | null;
|
|
429
1000
|
ariaAutoComplete: string | null;
|
|
430
1001
|
ariaBusy: string | null;
|
|
@@ -463,7 +1034,6 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
463
1034
|
getAnimations: (options?: GetAnimationsOptions | undefined) => Animation[];
|
|
464
1035
|
after: (...nodes: (string | Node)[]) => void;
|
|
465
1036
|
before: (...nodes: (string | Node)[]) => void;
|
|
466
|
-
remove: () => void;
|
|
467
1037
|
replaceWith: (...nodes: (string | Node)[]) => void;
|
|
468
1038
|
innerHTML: string;
|
|
469
1039
|
readonly nextElementSibling: Element | null;
|
|
@@ -484,6 +1054,7 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
484
1054
|
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
485
1055
|
};
|
|
486
1056
|
replaceChildren: (...nodes: (string | Node)[]) => void;
|
|
1057
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
|
487
1058
|
oncopy: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
488
1059
|
oncut: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
489
1060
|
onpaste: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
@@ -582,10 +1153,15 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
582
1153
|
isLTR: boolean;
|
|
583
1154
|
hasVisibleFocusInTree: () => boolean;
|
|
584
1155
|
selfManaged: boolean;
|
|
585
|
-
|
|
586
|
-
|
|
1156
|
+
onOverlayQuery: (event: CustomEvent<import("overlay/src").OverlayDisplayQueryDetail>) => void;
|
|
1157
|
+
overlayWillOpenCallback: ({ trigger, }: {
|
|
1158
|
+
trigger: HTMLElement;
|
|
1159
|
+
}) => void;
|
|
1160
|
+
overlayOpenCancelledCallback: ({ trigger, }: {
|
|
1161
|
+
trigger: HTMLElement;
|
|
1162
|
+
}) => void;
|
|
1163
|
+
overlayCloseCallback: ({ trigger }: {
|
|
1164
|
+
trigger: HTMLElement;
|
|
1165
|
+
}) => void;
|
|
587
1166
|
render: () => import("lit-html").TemplateResult<2 | 1>;
|
|
588
|
-
} & {
|
|
589
|
-
transitionrun: (e: TransitionEvent) => void;
|
|
590
|
-
transitionend: (e: TransitionEvent) => void;
|
|
591
|
-
}> & import("react").RefAttributes<import("tooltip/src").Tooltip>>;
|
|
1167
|
+
} & {}> & import("react").RefAttributes<import("tooltip/src").Tooltip>>;
|
package/next.dev.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
import dynamic from "next/dynamic";
|
|
3
|
+
export const TooltipProxy = dynamic(() => import(".").then(({ TooltipProxy: TooltipProxy2 }) => TooltipProxy2), { ssr: false });
|
|
3
4
|
export const Tooltip = dynamic(() => import(".").then(({ Tooltip: Tooltip2 }) => Tooltip2), { ssr: false });
|
|
4
5
|
//# sourceMappingURL=next.dev.js.map
|
package/next.dev.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["next.ts"],
|
|
4
|
-
"sourcesContent": ["/*\nCopyright 2023 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { ComponentProps } from 'react';\nimport dynamic from 'next/dynamic';\n\nimport { Tooltip as SpTooltip } from '.';\n\nexport const Tooltip = dynamic<\n JSX.LibraryManagedAttributes<\n typeof SpTooltip,\n ComponentProps<typeof SpTooltip>\n >\n>(() => import('.').then(({ Tooltip }) => Tooltip), { ssr: false });\n"],
|
|
5
|
-
"mappings": ";AAaA,OAAO,aAAa;
|
|
6
|
-
"names": ["Tooltip"]
|
|
4
|
+
"sourcesContent": ["/*\nCopyright 2023 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { ComponentProps } from 'react';\nimport dynamic from 'next/dynamic';\n\nimport { TooltipProxy as SpTooltipProxy } from '.';\nimport { Tooltip as SpTooltip } from '.';\n\nexport const TooltipProxy = dynamic<\n JSX.LibraryManagedAttributes<\n typeof SpTooltipProxy,\n ComponentProps<typeof SpTooltipProxy>\n >\n>(() => import('.').then(({ TooltipProxy }) => TooltipProxy), { ssr: false });\nexport const Tooltip = dynamic<\n JSX.LibraryManagedAttributes<\n typeof SpTooltip,\n ComponentProps<typeof SpTooltip>\n >\n>(() => import('.').then(({ Tooltip }) => Tooltip), { ssr: false });\n"],
|
|
5
|
+
"mappings": ";AAaA,OAAO,aAAa;AAKb,aAAM,eAAe,QAK1B,MAAM,OAAO,GAAG,EAAE,KAAK,CAAC,EAAE,cAAAA,cAAa,MAAMA,aAAY,GAAG,EAAE,KAAK,MAAM,CAAC;AACrE,aAAM,UAAU,QAKrB,MAAM,OAAO,GAAG,EAAE,KAAK,CAAC,EAAE,SAAAC,SAAQ,MAAMA,QAAO,GAAG,EAAE,KAAK,MAAM,CAAC;",
|
|
6
|
+
"names": ["TooltipProxy", "Tooltip"]
|
|
7
7
|
}
|
package/next.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";import
|
|
1
|
+
"use strict";import t from"next/dynamic";export const TooltipProxy=t(()=>import(".").then(({TooltipProxy:o})=>o),{ssr:!1}),Tooltip=t(()=>import(".").then(({Tooltip:o})=>o),{ssr:!1});
|
|
2
2
|
//# sourceMappingURL=next.js.map
|
package/next.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["next.ts"],
|
|
4
|
-
"sourcesContent": ["/*\nCopyright 2023 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { ComponentProps } from 'react';\nimport dynamic from 'next/dynamic';\n\nimport { Tooltip as SpTooltip } from '.';\n\nexport const Tooltip = dynamic<\n JSX.LibraryManagedAttributes<\n typeof SpTooltip,\n ComponentProps<typeof SpTooltip>\n >\n>(() => import('.').then(({ Tooltip }) => Tooltip), { ssr: false });\n"],
|
|
5
|
-
"mappings": "aAaA,OAAOA,MAAa,
|
|
6
|
-
"names": ["dynamic", "Tooltip"]
|
|
4
|
+
"sourcesContent": ["/*\nCopyright 2023 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { ComponentProps } from 'react';\nimport dynamic from 'next/dynamic';\n\nimport { TooltipProxy as SpTooltipProxy } from '.';\nimport { Tooltip as SpTooltip } from '.';\n\nexport const TooltipProxy = dynamic<\n JSX.LibraryManagedAttributes<\n typeof SpTooltipProxy,\n ComponentProps<typeof SpTooltipProxy>\n >\n>(() => import('.').then(({ TooltipProxy }) => TooltipProxy), { ssr: false });\nexport const Tooltip = dynamic<\n JSX.LibraryManagedAttributes<\n typeof SpTooltip,\n ComponentProps<typeof SpTooltip>\n >\n>(() => import('.').then(({ Tooltip }) => Tooltip), { ssr: false });\n"],
|
|
5
|
+
"mappings": "aAaA,OAAOA,MAAa,eAKb,aAAM,aAAeA,EAK1B,IAAM,OAAO,GAAG,EAAE,KAAK,CAAC,CAAE,aAAAC,CAAa,IAAMA,CAAY,EAAG,CAAE,IAAK,EAAM,CAAC,EAC/D,QAAUD,EAKrB,IAAM,OAAO,GAAG,EAAE,KAAK,CAAC,CAAE,QAAAE,CAAQ,IAAMA,CAAO,EAAG,CAAE,IAAK,EAAM,CAAC",
|
|
6
|
+
"names": ["dynamic", "TooltipProxy", "Tooltip"]
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-react/tooltip",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.34.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@lit-labs/react": "^1.1.1",
|
|
33
|
-
"@spectrum-web-components/tooltip": "^0.
|
|
33
|
+
"@spectrum-web-components/tooltip": "^0.34.0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"next": "~13.4"
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"optional": true
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "f9b3294d67cdd52b2c36897cdc1c20ceaeb019cf"
|
|
44
44
|
}
|