@swc-react/tooltip 0.31.1-react.3 → 0.32.1-overlay.33
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 +4 -5
- package/index.dev.js +5 -11
- package/index.dev.js.map +2 -2
- package/index.js +1 -1
- package/index.js.map +3 -3
- package/next.d.ts +38 -44
- package/package.json +4 -4
package/index.d.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import type { EventName } from '@lit-labs/react';
|
|
2
|
-
import { TooltipProxy as SpTooltipProxy } from '@spectrum-web-components/tooltip';
|
|
3
2
|
import { Tooltip as SpTooltip } from '@spectrum-web-components/tooltip';
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
import '@spectrum-web-components/tooltip/sp-tooltip.js';
|
|
4
|
+
export declare const Tooltip: import("@lit-labs/react").ReactWebComponent<SpTooltip, {
|
|
5
|
+
transitionrun: EventName<TransitionEvent>;
|
|
6
|
+
transitionend: EventName<TransitionEvent>;
|
|
6
7
|
}>;
|
|
7
|
-
export declare const Tooltip: import("@lit-labs/react").ReactWebComponent<SpTooltip, {}>;
|
|
8
|
-
export declare type TooltipProxyType = EventTarget & SpTooltipProxy;
|
|
9
8
|
export declare type TooltipType = EventTarget & SpTooltip;
|
package/index.dev.js
CHANGED
|
@@ -1,22 +1,16 @@
|
|
|
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";
|
|
5
4
|
import { Tooltip as SpTooltip } from "@spectrum-web-components/tooltip";
|
|
6
|
-
|
|
7
|
-
displayName: "TooltipProxy",
|
|
8
|
-
elementClass: SpTooltipProxy,
|
|
9
|
-
react: React,
|
|
10
|
-
tagName: "undefined",
|
|
11
|
-
events: {
|
|
12
|
-
disconnected: "disconnected"
|
|
13
|
-
}
|
|
14
|
-
});
|
|
5
|
+
import "@spectrum-web-components/tooltip/sp-tooltip.js";
|
|
15
6
|
export const Tooltip = createComponent({
|
|
16
7
|
displayName: "Tooltip",
|
|
17
8
|
elementClass: SpTooltip,
|
|
18
9
|
react: React,
|
|
19
10
|
tagName: "sp-tooltip",
|
|
20
|
-
events: {
|
|
11
|
+
events: {
|
|
12
|
+
transitionrun: "transitionrun",
|
|
13
|
+
transitionend: "transitionend"
|
|
14
|
+
}
|
|
21
15
|
});
|
|
22
16
|
//# 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 {
|
|
5
|
-
"mappings": ";AAYA,YAAY,WAAW;AACvB,SAAS,uBAAuB;AAEhC,SAAS,
|
|
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 Tooltip = createComponent({\n displayName: 'Tooltip',\n elementClass: SpTooltip,\n react: React,\n tagName: 'sp-tooltip',\n events: {\n transitionrun: 'transitionrun' as EventName<TransitionEvent>,\n transitionend: 'transitionend' as EventName<TransitionEvent>,\n },\n});\n\nexport type TooltipType = EventTarget & SpTooltip;\n"],
|
|
5
|
+
"mappings": ";AAYA,YAAY,WAAW;AACvB,SAAS,uBAAuB;AAEhC,SAAS,WAAW,iBAAiB;AAErC,OAAO;AAEA,aAAM,UAAU,gBAAgB;AAAA,EACnC,aAAa;AAAA,EACb,cAAc;AAAA,EACd,OAAO;AAAA,EACP,SAAS;AAAA,EACT,QAAQ;AAAA,IACJ,eAAe;AAAA,IACf,eAAe;AAAA,EACnB;AACJ,CAAC;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";import*as
|
|
1
|
+
"use strict";import*as t from"react";import{createComponent as o}from"@lit-labs/react";import{Tooltip as e}from"@spectrum-web-components/tooltip";import"@spectrum-web-components/tooltip/sp-tooltip.js";export const Tooltip=o({displayName:"Tooltip",elementClass:e,react:t,tagName:"sp-tooltip",events:{transitionrun:"transitionrun",transitionend:"transitionend"}});
|
|
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 {
|
|
5
|
-
"mappings": "aAYA,UAAYA,MAAW,QACvB,OAAS,mBAAAC,MAAuB,kBAEhC,OAAS,
|
|
6
|
-
"names": ["React", "createComponent", "
|
|
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 Tooltip = createComponent({\n displayName: 'Tooltip',\n elementClass: SpTooltip,\n react: React,\n tagName: 'sp-tooltip',\n events: {\n transitionrun: 'transitionrun' as EventName<TransitionEvent>,\n transitionend: 'transitionend' as EventName<TransitionEvent>,\n },\n});\n\nexport type TooltipType = EventTarget & SpTooltip;\n"],
|
|
5
|
+
"mappings": "aAYA,UAAYA,MAAW,QACvB,OAAS,mBAAAC,MAAuB,kBAEhC,OAAS,WAAWC,MAAiB,mCAErC,MAAO,iDAEA,aAAM,QAAUD,EAAgB,CACnC,YAAa,UACb,aAAcC,EACd,MAAOF,EACP,QAAS,aACT,OAAQ,CACJ,cAAe,gBACf,cAAe,eACnB,CACJ,CAAC",
|
|
6
|
+
"names": ["React", "createComponent", "SpTooltip"]
|
|
7
7
|
}
|
package/next.d.ts
CHANGED
|
@@ -1,30 +1,25 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
3
3
|
dir?: string | undefined;
|
|
4
|
-
color?: string | undefined;
|
|
5
|
-
lang?: string | undefined;
|
|
6
4
|
slot?: string | undefined;
|
|
7
5
|
style?: import("react").CSSProperties | undefined;
|
|
8
6
|
title?: string | undefined;
|
|
9
|
-
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
10
7
|
accessKey?: string | undefined;
|
|
11
|
-
|
|
8
|
+
color?: string | undefined;
|
|
9
|
+
lang?: string | undefined;
|
|
10
|
+
'aria-describedby'?: string | undefined;
|
|
12
11
|
id?: string | undefined;
|
|
13
|
-
className?: string | undefined;
|
|
14
12
|
tabIndex?: number | undefined;
|
|
15
13
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
16
|
-
|
|
17
|
-
'aria-label'?: string | undefined;
|
|
18
|
-
'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
14
|
+
className?: string | undefined;
|
|
19
15
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
20
16
|
hidden?: boolean | undefined;
|
|
21
17
|
translate?: "yes" | "no" | undefined;
|
|
22
18
|
prefix?: string | undefined;
|
|
23
19
|
children?: import("react").ReactNode;
|
|
24
20
|
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
25
|
-
inputMode?: "
|
|
21
|
+
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
26
22
|
nonce?: string | undefined;
|
|
27
|
-
'aria-describedby'?: string | undefined;
|
|
28
23
|
defaultChecked?: boolean | undefined;
|
|
29
24
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
30
25
|
suppressContentEditableWarning?: boolean | undefined;
|
|
@@ -33,6 +28,7 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
33
28
|
placeholder?: string | undefined;
|
|
34
29
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
35
30
|
radioGroup?: string | undefined;
|
|
31
|
+
role?: import("react").AriaRole | undefined;
|
|
36
32
|
about?: string | undefined;
|
|
37
33
|
datatype?: string | undefined;
|
|
38
34
|
inlist?: any;
|
|
@@ -54,14 +50,14 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
54
50
|
is?: string | undefined;
|
|
55
51
|
'aria-activedescendant'?: string | undefined;
|
|
56
52
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
57
|
-
'aria-autocomplete'?: "
|
|
53
|
+
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined;
|
|
58
54
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
59
55
|
'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
60
56
|
'aria-colcount'?: number | undefined;
|
|
61
57
|
'aria-colindex'?: number | undefined;
|
|
62
58
|
'aria-colspan'?: number | undefined;
|
|
63
59
|
'aria-controls'?: string | undefined;
|
|
64
|
-
'aria-current'?: boolean | "time" | "
|
|
60
|
+
'aria-current'?: boolean | "time" | "page" | "true" | "false" | "step" | "location" | "date" | undefined;
|
|
65
61
|
'aria-details'?: string | undefined;
|
|
66
62
|
'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
|
|
67
63
|
'aria-errormessage'?: string | undefined;
|
|
@@ -69,17 +65,21 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
69
65
|
'aria-flowto'?: string | undefined;
|
|
70
66
|
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
71
67
|
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
68
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
72
69
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
73
70
|
'aria-keyshortcuts'?: string | undefined;
|
|
71
|
+
'aria-label'?: string | undefined;
|
|
74
72
|
'aria-labelledby'?: string | undefined;
|
|
75
73
|
'aria-level'?: number | undefined;
|
|
76
74
|
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
|
75
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
77
76
|
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
78
77
|
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
79
78
|
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
|
80
79
|
'aria-owns'?: string | undefined;
|
|
81
80
|
'aria-placeholder'?: string | undefined;
|
|
82
81
|
'aria-posinset'?: number | undefined;
|
|
82
|
+
'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
83
83
|
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
84
84
|
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
85
85
|
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
@@ -262,8 +262,7 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
262
262
|
} & {
|
|
263
263
|
readonly attributes: NamedNodeMap;
|
|
264
264
|
readonly localName: string;
|
|
265
|
-
|
|
266
|
-
open: boolean;
|
|
265
|
+
animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
|
|
267
266
|
blur: () => void;
|
|
268
267
|
click: () => void;
|
|
269
268
|
focus: (options?: FocusOptions | undefined) => void;
|
|
@@ -271,18 +270,28 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
271
270
|
(options?: ScrollToOptions | undefined): void;
|
|
272
271
|
(x: number, y: number): void;
|
|
273
272
|
};
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
273
|
+
addEventListener: {
|
|
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;
|
|
278
286
|
offset: number;
|
|
279
|
-
ariaHidden: string | null;
|
|
280
|
-
autofocus: boolean;
|
|
281
287
|
normalize: () => void;
|
|
288
|
+
readonly parentElement: HTMLElement | null;
|
|
289
|
+
readonly renderOptions: import("lit-html").RenderOptions;
|
|
290
|
+
autofocus: boolean;
|
|
291
|
+
ariaHidden: string | null;
|
|
282
292
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
283
|
-
variant: string;
|
|
284
|
-
disconnectedCallback: () => void;
|
|
285
293
|
connectedCallback: () => void;
|
|
294
|
+
disconnectedCallback: () => void;
|
|
286
295
|
readonly renderRoot: HTMLElement | ShadowRoot;
|
|
287
296
|
isUpdatePending: boolean;
|
|
288
297
|
hasUpdated: boolean;
|
|
@@ -303,14 +312,6 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
303
312
|
outerText: string;
|
|
304
313
|
spellcheck: boolean;
|
|
305
314
|
attachInternals: () => ElementInternals;
|
|
306
|
-
addEventListener: {
|
|
307
|
-
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
308
|
-
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
309
|
-
};
|
|
310
|
-
removeEventListener: {
|
|
311
|
-
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
|
312
|
-
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
|
|
313
|
-
};
|
|
314
315
|
readonly classList: DOMTokenList;
|
|
315
316
|
readonly clientHeight: number;
|
|
316
317
|
readonly clientLeft: number;
|
|
@@ -389,7 +390,6 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
389
390
|
readonly nodeName: string;
|
|
390
391
|
readonly nodeType: number;
|
|
391
392
|
nodeValue: string | null;
|
|
392
|
-
readonly parentElement: HTMLElement | null;
|
|
393
393
|
readonly parentNode: ParentNode | null;
|
|
394
394
|
readonly previousSibling: ChildNode | null;
|
|
395
395
|
textContent: string | null;
|
|
@@ -425,7 +425,6 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
425
425
|
readonly NOTATION_NODE: number;
|
|
426
426
|
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
427
427
|
readonly TEXT_NODE: number;
|
|
428
|
-
dispatchEvent: (event: Event) => boolean;
|
|
429
428
|
ariaAtomic: string | null;
|
|
430
429
|
ariaAutoComplete: string | null;
|
|
431
430
|
ariaBusy: string | null;
|
|
@@ -464,6 +463,7 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
464
463
|
getAnimations: (options?: GetAnimationsOptions | undefined) => Animation[];
|
|
465
464
|
after: (...nodes: (string | Node)[]) => void;
|
|
466
465
|
before: (...nodes: (string | Node)[]) => void;
|
|
466
|
+
remove: () => void;
|
|
467
467
|
replaceWith: (...nodes: (string | Node)[]) => void;
|
|
468
468
|
innerHTML: string;
|
|
469
469
|
readonly nextElementSibling: Element | null;
|
|
@@ -484,7 +484,6 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
484
484
|
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
485
485
|
};
|
|
486
486
|
replaceChildren: (...nodes: (string | Node)[]) => void;
|
|
487
|
-
readonly assignedSlot: HTMLSlotElement | null;
|
|
488
487
|
oncopy: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
489
488
|
oncut: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
490
489
|
onpaste: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
@@ -583,15 +582,10 @@ export declare const Tooltip: import("react").ComponentType<Partial<{
|
|
|
583
582
|
isLTR: boolean;
|
|
584
583
|
hasVisibleFocusInTree: () => boolean;
|
|
585
584
|
selfManaged: boolean;
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
trigger: HTMLElement;
|
|
589
|
-
}) => void;
|
|
590
|
-
overlayOpenCancelledCallback: ({ trigger, }: {
|
|
591
|
-
trigger: HTMLElement;
|
|
592
|
-
}) => void;
|
|
593
|
-
overlayCloseCallback: ({ trigger }: {
|
|
594
|
-
trigger: HTMLElement;
|
|
595
|
-
}) => void;
|
|
585
|
+
tipElement: HTMLSpanElement;
|
|
586
|
+
variant: string;
|
|
596
587
|
render: () => import("lit-html").TemplateResult<2 | 1>;
|
|
597
|
-
} & {
|
|
588
|
+
} & {
|
|
589
|
+
transitionrun: (e: TransitionEvent) => void;
|
|
590
|
+
transitionend: (e: TransitionEvent) => void;
|
|
591
|
+
}> & import("react").RefAttributes<import("tooltip/src").Tooltip>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-react/tooltip",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.32.1-overlay.33+8b9227d00",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -30,15 +30,15 @@
|
|
|
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.32.1-overlay.33+8b9227d00"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"next": "
|
|
36
|
+
"next": "~13.4"
|
|
37
37
|
},
|
|
38
38
|
"peerDependenciesMeta": {
|
|
39
39
|
"next": {
|
|
40
40
|
"optional": true
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "8b9227d00900eacee1c6d194064f10062f27ab3e"
|
|
44
44
|
}
|