@swc-react/tooltip 0.34.1-rc.0 → 0.35.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 +636 -41
- 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,39 +1,629 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
export declare const TooltipProxy: import("react").ComponentType<Partial<{
|
|
3
4
|
dir?: string | undefined;
|
|
5
|
+
color?: string | undefined;
|
|
6
|
+
lang?: string | undefined;
|
|
4
7
|
slot?: string | undefined;
|
|
5
8
|
style?: import("react").CSSProperties | undefined;
|
|
6
9
|
title?: string | undefined;
|
|
10
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
7
11
|
accessKey?: string | undefined;
|
|
12
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
13
|
+
rel?: string | undefined;
|
|
14
|
+
id?: string | undefined;
|
|
15
|
+
className?: string | undefined;
|
|
16
|
+
tabIndex?: number | undefined;
|
|
17
|
+
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
18
|
+
role?: import("react").AriaRole | undefined;
|
|
19
|
+
'aria-label'?: string | undefined;
|
|
20
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
21
|
+
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
22
|
+
'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
23
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
24
|
+
hidden?: boolean | undefined;
|
|
25
|
+
translate?: "yes" | "no" | undefined;
|
|
26
|
+
prefix?: string | undefined;
|
|
27
|
+
children?: import("react").ReactNode;
|
|
28
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
29
|
+
inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
30
|
+
nonce?: string | undefined;
|
|
31
|
+
'aria-describedby'?: string | undefined;
|
|
32
|
+
defaultChecked?: boolean | undefined;
|
|
33
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
34
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
35
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
36
|
+
autoFocus?: boolean | undefined;
|
|
37
|
+
contextMenu?: string | undefined;
|
|
38
|
+
placeholder?: string | undefined;
|
|
39
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
40
|
+
radioGroup?: string | undefined;
|
|
41
|
+
about?: string | undefined;
|
|
42
|
+
content?: string | undefined;
|
|
43
|
+
datatype?: string | undefined;
|
|
44
|
+
inlist?: any;
|
|
45
|
+
property?: string | undefined;
|
|
46
|
+
resource?: string | undefined;
|
|
47
|
+
rev?: string | undefined;
|
|
48
|
+
typeof?: string | undefined;
|
|
49
|
+
vocab?: string | undefined;
|
|
50
|
+
autoCapitalize?: string | undefined;
|
|
51
|
+
autoCorrect?: string | undefined;
|
|
52
|
+
autoSave?: string | undefined;
|
|
53
|
+
itemProp?: string | undefined;
|
|
54
|
+
itemScope?: boolean | undefined;
|
|
55
|
+
itemType?: string | undefined;
|
|
56
|
+
itemID?: string | undefined;
|
|
57
|
+
itemRef?: string | undefined;
|
|
58
|
+
results?: number | undefined;
|
|
59
|
+
security?: string | undefined;
|
|
60
|
+
unselectable?: "on" | "off" | undefined;
|
|
61
|
+
is?: string | undefined;
|
|
62
|
+
'aria-activedescendant'?: string | undefined;
|
|
63
|
+
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
64
|
+
'aria-autocomplete'?: "inline" | "none" | "list" | "both" | undefined;
|
|
65
|
+
'aria-braillelabel'?: string | undefined;
|
|
66
|
+
'aria-brailleroledescription'?: string | undefined;
|
|
67
|
+
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
68
|
+
'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
69
|
+
'aria-colcount'?: number | undefined;
|
|
70
|
+
'aria-colindex'?: number | undefined;
|
|
71
|
+
'aria-colindextext'?: string | undefined;
|
|
72
|
+
'aria-colspan'?: number | undefined;
|
|
73
|
+
'aria-controls'?: string | undefined;
|
|
74
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
75
|
+
'aria-description'?: string | undefined;
|
|
76
|
+
'aria-details'?: string | undefined;
|
|
77
|
+
'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
|
|
78
|
+
'aria-errormessage'?: string | undefined;
|
|
79
|
+
'aria-flowto'?: string | undefined;
|
|
80
|
+
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
81
|
+
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
82
|
+
'aria-keyshortcuts'?: string | undefined;
|
|
83
|
+
'aria-labelledby'?: string | undefined;
|
|
84
|
+
'aria-level'?: number | undefined;
|
|
85
|
+
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
|
86
|
+
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
87
|
+
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
88
|
+
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
|
89
|
+
'aria-owns'?: string | undefined;
|
|
90
|
+
'aria-placeholder'?: string | undefined;
|
|
91
|
+
'aria-posinset'?: number | undefined;
|
|
92
|
+
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
93
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
94
|
+
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
95
|
+
'aria-roledescription'?: string | undefined;
|
|
96
|
+
'aria-rowcount'?: number | undefined;
|
|
97
|
+
'aria-rowindex'?: number | undefined;
|
|
98
|
+
'aria-rowindextext'?: string | undefined;
|
|
99
|
+
'aria-rowspan'?: number | undefined;
|
|
100
|
+
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
101
|
+
'aria-setsize'?: number | undefined;
|
|
102
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
103
|
+
'aria-valuemax'?: number | undefined;
|
|
104
|
+
'aria-valuemin'?: number | undefined;
|
|
105
|
+
'aria-valuenow'?: number | undefined;
|
|
106
|
+
'aria-valuetext'?: string | undefined;
|
|
107
|
+
dangerouslySetInnerHTML?: {
|
|
108
|
+
__html: string | TrustedHTML;
|
|
109
|
+
} | undefined;
|
|
110
|
+
onCopy?: import("react").ClipboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
111
|
+
onCopyCapture?: import("react").ClipboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
112
|
+
onCut?: import("react").ClipboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
113
|
+
onCutCapture?: import("react").ClipboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
114
|
+
onPaste?: import("react").ClipboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
115
|
+
onPasteCapture?: import("react").ClipboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
116
|
+
onCompositionEnd?: import("react").CompositionEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
117
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
118
|
+
onCompositionStart?: import("react").CompositionEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
119
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
120
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
121
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
122
|
+
onFocus?: import("react").FocusEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
123
|
+
onFocusCapture?: import("react").FocusEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
124
|
+
onBlur?: import("react").FocusEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
125
|
+
onBlurCapture?: import("react").FocusEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
126
|
+
onChange?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
127
|
+
onChangeCapture?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
128
|
+
onBeforeInput?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
129
|
+
onBeforeInputCapture?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
130
|
+
onInput?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
131
|
+
onInputCapture?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
132
|
+
onReset?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
133
|
+
onResetCapture?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
134
|
+
onSubmit?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
135
|
+
onSubmitCapture?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
136
|
+
onInvalid?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
137
|
+
onInvalidCapture?: import("react").FormEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
138
|
+
onLoad?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
139
|
+
onLoadCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
140
|
+
onError?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
141
|
+
onErrorCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
142
|
+
onKeyDown?: import("react").KeyboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
143
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
144
|
+
onKeyPress?: import("react").KeyboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
145
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
146
|
+
onKeyUp?: import("react").KeyboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
147
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
148
|
+
onAbort?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
149
|
+
onAbortCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
150
|
+
onCanPlay?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
151
|
+
onCanPlayCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
152
|
+
onCanPlayThrough?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
153
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
154
|
+
onDurationChange?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
155
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
156
|
+
onEmptied?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
157
|
+
onEmptiedCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
158
|
+
onEncrypted?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
159
|
+
onEncryptedCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
160
|
+
onEnded?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
161
|
+
onEndedCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
162
|
+
onLoadedData?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
163
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
164
|
+
onLoadedMetadata?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
165
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
166
|
+
onLoadStart?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
167
|
+
onLoadStartCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
168
|
+
onPause?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
169
|
+
onPauseCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
170
|
+
onPlay?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
171
|
+
onPlayCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
172
|
+
onPlaying?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
173
|
+
onPlayingCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
174
|
+
onProgress?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
175
|
+
onProgressCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
176
|
+
onRateChange?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
177
|
+
onRateChangeCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
178
|
+
onResize?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
179
|
+
onResizeCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
180
|
+
onSeeked?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
181
|
+
onSeekedCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
182
|
+
onSeeking?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
183
|
+
onSeekingCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
184
|
+
onStalled?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
185
|
+
onStalledCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
186
|
+
onSuspend?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
187
|
+
onSuspendCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
188
|
+
onTimeUpdate?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
189
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
190
|
+
onVolumeChange?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
191
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
192
|
+
onWaiting?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
193
|
+
onWaitingCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
194
|
+
onAuxClick?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
195
|
+
onAuxClickCapture?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
196
|
+
onClick?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
197
|
+
onClickCapture?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
198
|
+
onContextMenu?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
199
|
+
onContextMenuCapture?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
200
|
+
onDoubleClick?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
201
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
202
|
+
onDrag?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
203
|
+
onDragCapture?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
204
|
+
onDragEnd?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
205
|
+
onDragEndCapture?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
206
|
+
onDragEnter?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
207
|
+
onDragEnterCapture?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
208
|
+
onDragExit?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
209
|
+
onDragExitCapture?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
210
|
+
onDragLeave?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
211
|
+
onDragLeaveCapture?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
212
|
+
onDragOver?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
213
|
+
onDragOverCapture?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
214
|
+
onDragStart?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
215
|
+
onDragStartCapture?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
216
|
+
onDrop?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
217
|
+
onDropCapture?: import("react").DragEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
218
|
+
onMouseDown?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
219
|
+
onMouseDownCapture?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
220
|
+
onMouseEnter?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
221
|
+
onMouseLeave?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
222
|
+
onMouseMove?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
223
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
224
|
+
onMouseOut?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
225
|
+
onMouseOutCapture?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
226
|
+
onMouseOver?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
227
|
+
onMouseOverCapture?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
228
|
+
onMouseUp?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
229
|
+
onMouseUpCapture?: import("react").MouseEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
230
|
+
onSelect?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
231
|
+
onSelectCapture?: import("react").ReactEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
232
|
+
onTouchCancel?: import("react").TouchEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
233
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
234
|
+
onTouchEnd?: import("react").TouchEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
235
|
+
onTouchEndCapture?: import("react").TouchEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
236
|
+
onTouchMove?: import("react").TouchEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
237
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
238
|
+
onTouchStart?: import("react").TouchEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
239
|
+
onTouchStartCapture?: import("react").TouchEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
240
|
+
onPointerDown?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
241
|
+
onPointerDownCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
242
|
+
onPointerMove?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
243
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
244
|
+
onPointerUp?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
245
|
+
onPointerUpCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
246
|
+
onPointerCancel?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
247
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
248
|
+
onPointerEnter?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
249
|
+
onPointerEnterCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
250
|
+
onPointerLeave?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
251
|
+
onPointerLeaveCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
252
|
+
onPointerOver?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
253
|
+
onPointerOverCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
254
|
+
onPointerOut?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
255
|
+
onPointerOutCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
256
|
+
onGotPointerCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
257
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
258
|
+
onLostPointerCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
259
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
260
|
+
onScroll?: import("react").UIEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
261
|
+
onScrollCapture?: import("react").UIEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
262
|
+
onWheel?: import("react").WheelEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
263
|
+
onWheelCapture?: import("react").WheelEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
264
|
+
onAnimationStart?: import("react").AnimationEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
265
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
266
|
+
onAnimationEnd?: import("react").AnimationEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
267
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
268
|
+
onAnimationIteration?: import("react").AnimationEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
269
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
270
|
+
onTransitionEnd?: import("react").TransitionEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
271
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<import("tooltip/src").TooltipProxy> | undefined;
|
|
272
|
+
} & {
|
|
273
|
+
readonly attributes: NamedNodeMap;
|
|
274
|
+
readonly localName: string;
|
|
275
|
+
readonly shadowRoot: ShadowRoot | null;
|
|
276
|
+
blur: () => void;
|
|
277
|
+
click: () => void;
|
|
278
|
+
focus: (options?: FocusOptions | undefined) => void;
|
|
279
|
+
scroll: {
|
|
280
|
+
(options?: ScrollToOptions | undefined): void;
|
|
281
|
+
(x: number, y: number): void;
|
|
282
|
+
};
|
|
283
|
+
animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
|
|
284
|
+
remove: () => void;
|
|
285
|
+
ariaHidden: string | null;
|
|
286
|
+
autofocus: boolean;
|
|
287
|
+
normalize: () => void;
|
|
288
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
|
289
|
+
disconnectedCallback: () => void;
|
|
290
|
+
readonly accessKeyLabel: string;
|
|
291
|
+
autocapitalize: string;
|
|
292
|
+
inert: boolean;
|
|
293
|
+
innerText: string;
|
|
294
|
+
readonly offsetHeight: number;
|
|
295
|
+
readonly offsetLeft: number;
|
|
296
|
+
readonly offsetParent: Element | null;
|
|
297
|
+
readonly offsetTop: number;
|
|
298
|
+
readonly offsetWidth: number;
|
|
299
|
+
outerText: string;
|
|
300
|
+
spellcheck: boolean;
|
|
301
|
+
attachInternals: () => ElementInternals;
|
|
302
|
+
addEventListener: {
|
|
303
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
304
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
305
|
+
};
|
|
306
|
+
removeEventListener: {
|
|
307
|
+
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
|
308
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
|
|
309
|
+
};
|
|
310
|
+
readonly classList: DOMTokenList;
|
|
311
|
+
readonly clientHeight: number;
|
|
312
|
+
readonly clientLeft: number;
|
|
313
|
+
readonly clientTop: number;
|
|
314
|
+
readonly clientWidth: number;
|
|
315
|
+
readonly namespaceURI: string | null;
|
|
316
|
+
onfullscreenchange: ((this: Element, ev: Event) => any) | null;
|
|
317
|
+
onfullscreenerror: ((this: Element, ev: Event) => any) | null;
|
|
318
|
+
outerHTML: string;
|
|
319
|
+
readonly ownerDocument: Document;
|
|
320
|
+
readonly part: DOMTokenList;
|
|
321
|
+
readonly scrollHeight: number;
|
|
322
|
+
scrollLeft: number;
|
|
323
|
+
scrollTop: number;
|
|
324
|
+
readonly scrollWidth: number;
|
|
325
|
+
readonly tagName: string;
|
|
326
|
+
attachShadow: (init: ShadowRootInit) => ShadowRoot;
|
|
327
|
+
closest: {
|
|
328
|
+
<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
|
|
329
|
+
<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
|
|
330
|
+
<E extends Element = Element>(selectors: string): E | null;
|
|
331
|
+
};
|
|
332
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
333
|
+
getAttributeNS: (namespace: string | null, localName: string) => string | null;
|
|
334
|
+
getAttributeNames: () => string[];
|
|
335
|
+
getAttributeNode: (qualifiedName: string) => Attr | null;
|
|
336
|
+
getAttributeNodeNS: (namespace: string | null, localName: string) => Attr | null;
|
|
337
|
+
getBoundingClientRect: () => DOMRect;
|
|
338
|
+
getClientRects: () => DOMRectList;
|
|
339
|
+
getElementsByClassName: (classNames: string) => HTMLCollectionOf<Element>;
|
|
340
|
+
getElementsByTagName: {
|
|
341
|
+
<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
|
342
|
+
<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
|
343
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
344
|
+
};
|
|
345
|
+
getElementsByTagNameNS: {
|
|
346
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
347
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
348
|
+
(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
349
|
+
};
|
|
350
|
+
hasAttribute: (qualifiedName: string) => boolean;
|
|
351
|
+
hasAttributeNS: (namespace: string | null, localName: string) => boolean;
|
|
352
|
+
hasAttributes: () => boolean;
|
|
353
|
+
hasPointerCapture: (pointerId: number) => boolean;
|
|
354
|
+
insertAdjacentElement: (where: InsertPosition, element: Element) => Element | null;
|
|
355
|
+
insertAdjacentHTML: (position: InsertPosition, text: string) => void;
|
|
356
|
+
insertAdjacentText: (where: InsertPosition, data: string) => void;
|
|
357
|
+
matches: (selectors: string) => boolean;
|
|
358
|
+
releasePointerCapture: (pointerId: number) => void;
|
|
359
|
+
removeAttribute: (qualifiedName: string) => void;
|
|
360
|
+
removeAttributeNS: (namespace: string | null, localName: string) => void;
|
|
361
|
+
removeAttributeNode: (attr: Attr) => Attr;
|
|
362
|
+
requestFullscreen: (options?: FullscreenOptions | undefined) => Promise<void>;
|
|
363
|
+
requestPointerLock: () => void;
|
|
364
|
+
scrollBy: {
|
|
365
|
+
(options?: ScrollToOptions | undefined): void;
|
|
366
|
+
(x: number, y: number): void;
|
|
367
|
+
};
|
|
368
|
+
scrollIntoView: (arg?: boolean | ScrollIntoViewOptions | undefined) => void;
|
|
369
|
+
scrollTo: {
|
|
370
|
+
(options?: ScrollToOptions | undefined): void;
|
|
371
|
+
(x: number, y: number): void;
|
|
372
|
+
};
|
|
373
|
+
setAttribute: (qualifiedName: string, value: string) => void;
|
|
374
|
+
setAttributeNS: (namespace: string | null, qualifiedName: string, value: string) => void;
|
|
375
|
+
setAttributeNode: (attr: Attr) => Attr | null;
|
|
376
|
+
setAttributeNodeNS: (attr: Attr) => Attr | null;
|
|
377
|
+
setPointerCapture: (pointerId: number) => void;
|
|
378
|
+
toggleAttribute: (qualifiedName: string, force?: boolean | undefined) => boolean;
|
|
379
|
+
webkitMatchesSelector: (selectors: string) => boolean;
|
|
380
|
+
readonly baseURI: string;
|
|
381
|
+
readonly firstChild: ChildNode | null;
|
|
382
|
+
readonly isConnected: boolean;
|
|
383
|
+
readonly lastChild: ChildNode | null;
|
|
384
|
+
readonly nextSibling: ChildNode | null;
|
|
385
|
+
readonly nodeName: string;
|
|
386
|
+
readonly nodeType: number;
|
|
387
|
+
nodeValue: string | null;
|
|
388
|
+
readonly parentElement: HTMLElement | null;
|
|
389
|
+
readonly parentNode: ParentNode | null;
|
|
390
|
+
readonly previousSibling: ChildNode | null;
|
|
391
|
+
textContent: string | null;
|
|
392
|
+
appendChild: <T extends Node>(node: T) => T;
|
|
393
|
+
cloneNode: (deep?: boolean | undefined) => Node;
|
|
394
|
+
compareDocumentPosition: (other: Node) => number;
|
|
395
|
+
contains: (other: Node | null) => boolean;
|
|
396
|
+
getRootNode: (options?: GetRootNodeOptions | undefined) => Node;
|
|
397
|
+
hasChildNodes: () => boolean;
|
|
398
|
+
insertBefore: <T_1 extends Node>(node: T_1, child: Node | null) => T_1;
|
|
399
|
+
isDefaultNamespace: (namespace: string | null) => boolean;
|
|
400
|
+
isEqualNode: (otherNode: Node | null) => boolean;
|
|
401
|
+
isSameNode: (otherNode: Node | null) => boolean;
|
|
402
|
+
lookupNamespaceURI: (prefix: string | null) => string | null;
|
|
403
|
+
lookupPrefix: (namespace: string | null) => string | null;
|
|
404
|
+
removeChild: <T_2 extends Node>(child: T_2) => T_2;
|
|
405
|
+
replaceChild: <T_3 extends Node>(node: Node, child: T_3) => T_3;
|
|
406
|
+
readonly ATTRIBUTE_NODE: number;
|
|
407
|
+
readonly CDATA_SECTION_NODE: number;
|
|
408
|
+
readonly COMMENT_NODE: number;
|
|
409
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
|
410
|
+
readonly DOCUMENT_NODE: number;
|
|
411
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
|
412
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
|
413
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
|
414
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
|
415
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
|
416
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
|
417
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
|
418
|
+
readonly ELEMENT_NODE: number;
|
|
419
|
+
readonly ENTITY_NODE: number;
|
|
420
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
|
421
|
+
readonly NOTATION_NODE: number;
|
|
422
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
423
|
+
readonly TEXT_NODE: number;
|
|
424
|
+
dispatchEvent: (event: Event) => boolean;
|
|
425
|
+
ariaAtomic: string | null;
|
|
426
|
+
ariaAutoComplete: string | null;
|
|
427
|
+
ariaBusy: string | null;
|
|
428
|
+
ariaChecked: string | null;
|
|
429
|
+
ariaColCount: string | null;
|
|
430
|
+
ariaColIndex: string | null;
|
|
431
|
+
ariaColSpan: string | null;
|
|
432
|
+
ariaCurrent: string | null;
|
|
433
|
+
ariaDisabled: string | null;
|
|
434
|
+
ariaExpanded: string | null;
|
|
435
|
+
ariaHasPopup: string | null;
|
|
436
|
+
ariaKeyShortcuts: string | null;
|
|
437
|
+
ariaLabel: string | null;
|
|
438
|
+
ariaLevel: string | null;
|
|
439
|
+
ariaLive: string | null;
|
|
440
|
+
ariaModal: string | null;
|
|
441
|
+
ariaMultiLine: string | null;
|
|
442
|
+
ariaMultiSelectable: string | null;
|
|
443
|
+
ariaOrientation: string | null;
|
|
444
|
+
ariaPlaceholder: string | null;
|
|
445
|
+
ariaPosInSet: string | null;
|
|
446
|
+
ariaPressed: string | null;
|
|
447
|
+
ariaReadOnly: string | null;
|
|
448
|
+
ariaRequired: string | null;
|
|
449
|
+
ariaRoleDescription: string | null;
|
|
450
|
+
ariaRowCount: string | null;
|
|
451
|
+
ariaRowIndex: string | null;
|
|
452
|
+
ariaRowSpan: string | null;
|
|
453
|
+
ariaSelected: string | null;
|
|
454
|
+
ariaSetSize: string | null;
|
|
455
|
+
ariaSort: string | null;
|
|
456
|
+
ariaValueMax: string | null;
|
|
457
|
+
ariaValueMin: string | null;
|
|
458
|
+
ariaValueNow: string | null;
|
|
459
|
+
ariaValueText: string | null;
|
|
460
|
+
getAnimations: (options?: GetAnimationsOptions | undefined) => Animation[];
|
|
461
|
+
after: (...nodes: (string | Node)[]) => void;
|
|
462
|
+
before: (...nodes: (string | Node)[]) => void;
|
|
463
|
+
replaceWith: (...nodes: (string | Node)[]) => void;
|
|
464
|
+
innerHTML: string;
|
|
465
|
+
readonly nextElementSibling: Element | null;
|
|
466
|
+
readonly previousElementSibling: Element | null;
|
|
467
|
+
readonly childElementCount: number;
|
|
468
|
+
readonly firstElementChild: Element | null;
|
|
469
|
+
readonly lastElementChild: Element | null;
|
|
470
|
+
append: (...nodes: (string | Node)[]) => void;
|
|
471
|
+
prepend: (...nodes: (string | Node)[]) => void;
|
|
472
|
+
querySelector: {
|
|
473
|
+
<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6] | null;
|
|
474
|
+
<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7] | null;
|
|
475
|
+
<E_1 extends Element = Element>(selectors: string): E_1 | null;
|
|
476
|
+
};
|
|
477
|
+
querySelectorAll: {
|
|
478
|
+
<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
|
479
|
+
<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
|
480
|
+
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
481
|
+
};
|
|
482
|
+
replaceChildren: (...nodes: (string | Node)[]) => void;
|
|
483
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
|
484
|
+
oncopy: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
485
|
+
oncut: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
486
|
+
onpaste: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
487
|
+
enterKeyHint: string;
|
|
488
|
+
readonly isContentEditable: boolean;
|
|
489
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
490
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
491
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
492
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
493
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
494
|
+
onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
495
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
496
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
497
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
498
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
499
|
+
onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
500
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
501
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
502
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
503
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
504
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
505
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
506
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
507
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
508
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
509
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
510
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
511
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
512
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
513
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
514
|
+
onerror: OnErrorEventHandler;
|
|
515
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
516
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
517
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
518
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
519
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
520
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
521
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
522
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
523
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
524
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
525
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
526
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
527
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
528
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
529
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
530
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
531
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
532
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
533
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
534
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
535
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
536
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
537
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
538
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
539
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
540
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
541
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
542
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
543
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
544
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
545
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
546
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
|
|
547
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
548
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
549
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
550
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
551
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
552
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
553
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
554
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
555
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
556
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
557
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
558
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
559
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
560
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
561
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
562
|
+
ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
563
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
564
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
565
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
566
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
567
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
568
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
569
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
570
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
571
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
572
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
573
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
574
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
575
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
576
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
577
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
578
|
+
readonly dataset: DOMStringMap;
|
|
579
|
+
} & {
|
|
580
|
+
disconnected: (e: Event) => void;
|
|
581
|
+
}> & import("react").RefAttributes<import("tooltip/src").TooltipProxy>>;
|
|
582
|
+
export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
583
|
+
dir?: string | undefined;
|
|
8
584
|
color?: string | undefined;
|
|
9
585
|
lang?: string | undefined;
|
|
10
|
-
|
|
586
|
+
slot?: string | undefined;
|
|
587
|
+
style?: import("react").CSSProperties | undefined;
|
|
588
|
+
title?: string | undefined;
|
|
589
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
590
|
+
accessKey?: string | undefined;
|
|
591
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
592
|
+
rel?: string | undefined;
|
|
11
593
|
id?: string | undefined;
|
|
594
|
+
className?: string | undefined;
|
|
12
595
|
tabIndex?: number | undefined;
|
|
13
596
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
14
|
-
|
|
597
|
+
role?: import("react").AriaRole | undefined;
|
|
598
|
+
'aria-label'?: string | undefined;
|
|
599
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
600
|
+
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
601
|
+
'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
15
602
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
16
603
|
hidden?: boolean | undefined;
|
|
17
604
|
translate?: "yes" | "no" | undefined;
|
|
18
605
|
prefix?: string | undefined;
|
|
19
606
|
children?: import("react").ReactNode;
|
|
20
607
|
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
21
|
-
inputMode?: "
|
|
608
|
+
inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
22
609
|
nonce?: string | undefined;
|
|
610
|
+
'aria-describedby'?: string | undefined;
|
|
23
611
|
defaultChecked?: boolean | undefined;
|
|
24
612
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
25
613
|
suppressContentEditableWarning?: boolean | undefined;
|
|
26
614
|
suppressHydrationWarning?: boolean | undefined;
|
|
615
|
+
autoFocus?: boolean | undefined;
|
|
27
616
|
contextMenu?: string | undefined;
|
|
28
617
|
placeholder?: string | undefined;
|
|
29
618
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
30
619
|
radioGroup?: string | undefined;
|
|
31
|
-
role?: import("react").AriaRole | undefined;
|
|
32
620
|
about?: string | undefined;
|
|
621
|
+
content?: string | undefined;
|
|
33
622
|
datatype?: string | undefined;
|
|
34
623
|
inlist?: any;
|
|
35
624
|
property?: string | undefined;
|
|
36
625
|
resource?: string | undefined;
|
|
626
|
+
rev?: string | undefined;
|
|
37
627
|
typeof?: string | undefined;
|
|
38
628
|
vocab?: string | undefined;
|
|
39
629
|
autoCapitalize?: string | undefined;
|
|
@@ -50,42 +640,41 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
50
640
|
is?: string | undefined;
|
|
51
641
|
'aria-activedescendant'?: string | undefined;
|
|
52
642
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
53
|
-
'aria-autocomplete'?: "
|
|
643
|
+
'aria-autocomplete'?: "inline" | "none" | "list" | "both" | undefined;
|
|
644
|
+
'aria-braillelabel'?: string | undefined;
|
|
645
|
+
'aria-brailleroledescription'?: string | undefined;
|
|
54
646
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
55
647
|
'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
56
648
|
'aria-colcount'?: number | undefined;
|
|
57
649
|
'aria-colindex'?: number | undefined;
|
|
650
|
+
'aria-colindextext'?: string | undefined;
|
|
58
651
|
'aria-colspan'?: number | undefined;
|
|
59
652
|
'aria-controls'?: string | undefined;
|
|
60
|
-
'aria-current'?: boolean | "time" | "
|
|
653
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
654
|
+
'aria-description'?: string | undefined;
|
|
61
655
|
'aria-details'?: string | undefined;
|
|
62
656
|
'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
|
|
63
657
|
'aria-errormessage'?: string | undefined;
|
|
64
|
-
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
65
658
|
'aria-flowto'?: string | undefined;
|
|
66
659
|
'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
660
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
70
661
|
'aria-keyshortcuts'?: string | undefined;
|
|
71
|
-
'aria-label'?: string | undefined;
|
|
72
662
|
'aria-labelledby'?: string | undefined;
|
|
73
663
|
'aria-level'?: number | undefined;
|
|
74
664
|
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
|
75
|
-
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
76
665
|
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
77
666
|
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
78
667
|
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
|
79
668
|
'aria-owns'?: string | undefined;
|
|
80
669
|
'aria-placeholder'?: string | undefined;
|
|
81
670
|
'aria-posinset'?: number | undefined;
|
|
82
|
-
'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
83
671
|
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
84
672
|
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
85
673
|
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
86
674
|
'aria-roledescription'?: string | undefined;
|
|
87
675
|
'aria-rowcount'?: number | undefined;
|
|
88
676
|
'aria-rowindex'?: number | undefined;
|
|
677
|
+
'aria-rowindextext'?: string | undefined;
|
|
89
678
|
'aria-rowspan'?: number | undefined;
|
|
90
679
|
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
91
680
|
'aria-setsize'?: number | undefined;
|
|
@@ -95,7 +684,7 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
95
684
|
'aria-valuenow'?: number | undefined;
|
|
96
685
|
'aria-valuetext'?: string | undefined;
|
|
97
686
|
dangerouslySetInnerHTML?: {
|
|
98
|
-
__html: string;
|
|
687
|
+
__html: string | TrustedHTML;
|
|
99
688
|
} | undefined;
|
|
100
689
|
onCopy?: import("react").ClipboardEventHandler<import("tooltip/src").Tooltip> | undefined;
|
|
101
690
|
onCopyCapture?: import("react").ClipboardEventHandler<import("tooltip/src").Tooltip> | undefined;
|
|
@@ -262,7 +851,8 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
262
851
|
} & {
|
|
263
852
|
readonly attributes: NamedNodeMap;
|
|
264
853
|
readonly localName: string;
|
|
265
|
-
|
|
854
|
+
shadowRoot: ShadowRoot;
|
|
855
|
+
open: boolean;
|
|
266
856
|
blur: () => void;
|
|
267
857
|
click: () => void;
|
|
268
858
|
focus: (options?: FocusOptions | undefined) => void;
|
|
@@ -270,28 +860,18 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
270
860
|
(options?: ScrollToOptions | undefined): void;
|
|
271
861
|
(x: number, y: number): void;
|
|
272
862
|
};
|
|
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;
|
|
863
|
+
animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
|
|
289
864
|
readonly renderOptions: import("lit-html").RenderOptions;
|
|
290
|
-
|
|
865
|
+
placement: import("overlay/src").Placement;
|
|
866
|
+
remove: () => void;
|
|
867
|
+
offset: number;
|
|
291
868
|
ariaHidden: string | null;
|
|
869
|
+
autofocus: boolean;
|
|
870
|
+
normalize: () => void;
|
|
292
871
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
293
|
-
|
|
872
|
+
variant: string;
|
|
294
873
|
disconnectedCallback: () => void;
|
|
874
|
+
connectedCallback: () => void;
|
|
295
875
|
readonly renderRoot: HTMLElement | ShadowRoot;
|
|
296
876
|
isUpdatePending: boolean;
|
|
297
877
|
hasUpdated: boolean;
|
|
@@ -312,6 +892,14 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
312
892
|
outerText: string;
|
|
313
893
|
spellcheck: boolean;
|
|
314
894
|
attachInternals: () => ElementInternals;
|
|
895
|
+
addEventListener: {
|
|
896
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
897
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
898
|
+
};
|
|
899
|
+
removeEventListener: {
|
|
900
|
+
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
|
901
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
|
|
902
|
+
};
|
|
315
903
|
readonly classList: DOMTokenList;
|
|
316
904
|
readonly clientHeight: number;
|
|
317
905
|
readonly clientLeft: number;
|
|
@@ -390,6 +978,7 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
390
978
|
readonly nodeName: string;
|
|
391
979
|
readonly nodeType: number;
|
|
392
980
|
nodeValue: string | null;
|
|
981
|
+
readonly parentElement: HTMLElement | null;
|
|
393
982
|
readonly parentNode: ParentNode | null;
|
|
394
983
|
readonly previousSibling: ChildNode | null;
|
|
395
984
|
textContent: string | null;
|
|
@@ -399,7 +988,7 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
399
988
|
contains: (other: Node | null) => boolean;
|
|
400
989
|
getRootNode: (options?: GetRootNodeOptions | undefined) => Node;
|
|
401
990
|
hasChildNodes: () => boolean;
|
|
402
|
-
insertBefore: <
|
|
991
|
+
insertBefore: <T extends Node>(node: T, child: Node | null) => T;
|
|
403
992
|
isDefaultNamespace: (namespace: string | null) => boolean;
|
|
404
993
|
isEqualNode: (otherNode: Node | null) => boolean;
|
|
405
994
|
isSameNode: (otherNode: Node | null) => boolean;
|
|
@@ -425,6 +1014,7 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
425
1014
|
readonly NOTATION_NODE: number;
|
|
426
1015
|
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
427
1016
|
readonly TEXT_NODE: number;
|
|
1017
|
+
dispatchEvent: (event: Event) => boolean;
|
|
428
1018
|
ariaAtomic: string | null;
|
|
429
1019
|
ariaAutoComplete: string | null;
|
|
430
1020
|
ariaBusy: string | null;
|
|
@@ -463,7 +1053,6 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
463
1053
|
getAnimations: (options?: GetAnimationsOptions | undefined) => Animation[];
|
|
464
1054
|
after: (...nodes: (string | Node)[]) => void;
|
|
465
1055
|
before: (...nodes: (string | Node)[]) => void;
|
|
466
|
-
remove: () => void;
|
|
467
1056
|
replaceWith: (...nodes: (string | Node)[]) => void;
|
|
468
1057
|
innerHTML: string;
|
|
469
1058
|
readonly nextElementSibling: Element | null;
|
|
@@ -484,6 +1073,7 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
484
1073
|
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
485
1074
|
};
|
|
486
1075
|
replaceChildren: (...nodes: (string | Node)[]) => void;
|
|
1076
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
|
487
1077
|
oncopy: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
488
1078
|
oncut: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
489
1079
|
onpaste: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
@@ -582,10 +1172,15 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
582
1172
|
isLTR: boolean;
|
|
583
1173
|
hasVisibleFocusInTree: () => boolean;
|
|
584
1174
|
selfManaged: boolean;
|
|
585
|
-
|
|
586
|
-
|
|
1175
|
+
onOverlayQuery: (event: CustomEvent<import("overlay/src").OverlayDisplayQueryDetail>) => void;
|
|
1176
|
+
overlayWillOpenCallback: ({ trigger, }: {
|
|
1177
|
+
trigger: HTMLElement;
|
|
1178
|
+
}) => void;
|
|
1179
|
+
overlayOpenCancelledCallback: ({ trigger, }: {
|
|
1180
|
+
trigger: HTMLElement;
|
|
1181
|
+
}) => void;
|
|
1182
|
+
overlayCloseCallback: ({ trigger }: {
|
|
1183
|
+
trigger: HTMLElement;
|
|
1184
|
+
}) => void;
|
|
587
1185
|
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>>;
|
|
1186
|
+
} & {}> & 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.35.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.35.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": "1ee5a6c92838cdf48321276d97f61c20f8476ac1"
|
|
44
44
|
}
|