@spectrum-web-components/tooltip 0.31.1-overlay.29 → 0.31.1-react.21
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/custom-elements.json +374 -0
- package/package.json +4 -4
- package/src/Tooltip.d.ts +32 -10
- package/src/Tooltip.dev.js +162 -102
- package/src/Tooltip.dev.js.map +3 -3
- package/src/Tooltip.js +5 -25
- package/src/Tooltip.js.map +3 -3
- package/src/spectrum-config.js +17 -120
- package/src/spectrum-tooltip.css.dev.js +19 -19
- package/src/spectrum-tooltip.css.dev.js.map +1 -1
- package/src/spectrum-tooltip.css.js +19 -19
- package/src/spectrum-tooltip.css.js.map +1 -1
- package/src/tooltip.css.dev.js +20 -23
- package/src/tooltip.css.dev.js.map +2 -2
- package/src/tooltip.css.js +20 -23
- package/src/tooltip.css.js.map +2 -2
- package/stories/tooltip.stories.js +15 -12
- package/stories/tooltip.stories.js.map +2 -2
- package/test/tooltip.test.js +57 -21
- package/test/tooltip.test.js.map +2 -2
package/test/tooltip.test.js
CHANGED
|
@@ -9,7 +9,6 @@ import {
|
|
|
9
9
|
} from "@open-wc/testing";
|
|
10
10
|
import "@spectrum-web-components/button/sp-button.js";
|
|
11
11
|
import { testForLitDevWarnings } from "../../../test/testing-helpers.js";
|
|
12
|
-
import { sendMouse } from "../../../test/plugins/browser.js";
|
|
13
12
|
describe("Tooltip", () => {
|
|
14
13
|
testForLitDevWarnings(
|
|
15
14
|
async () => await fixture(
|
|
@@ -28,14 +27,6 @@ describe("Tooltip", () => {
|
|
|
28
27
|
await expect(el).to.be.accessible();
|
|
29
28
|
});
|
|
30
29
|
it("self manages", async () => {
|
|
31
|
-
await sendMouse({
|
|
32
|
-
steps: [
|
|
33
|
-
{
|
|
34
|
-
type: "move",
|
|
35
|
-
position: [1, 1]
|
|
36
|
-
}
|
|
37
|
-
]
|
|
38
|
-
});
|
|
39
30
|
const button = await fixture(
|
|
40
31
|
html`
|
|
41
32
|
<sp-button>
|
|
@@ -50,36 +41,65 @@ describe("Tooltip", () => {
|
|
|
50
41
|
const opened = oneEvent(button, "sp-opened");
|
|
51
42
|
button.focus();
|
|
52
43
|
await opened;
|
|
44
|
+
await elementUpdated(el);
|
|
53
45
|
expect(el.open).to.be.true;
|
|
54
46
|
await expect(button).to.be.accessible();
|
|
55
47
|
const closed = oneEvent(button, "sp-closed");
|
|
56
48
|
button.blur();
|
|
57
49
|
await closed;
|
|
50
|
+
await elementUpdated(el);
|
|
58
51
|
expect(el.open).to.be.false;
|
|
59
52
|
});
|
|
60
|
-
it("
|
|
53
|
+
it('allows pointer to enter the "tooltip" without closing the "tooltip"', async () => {
|
|
61
54
|
const button = await fixture(
|
|
62
55
|
html`
|
|
63
56
|
<sp-button>
|
|
64
57
|
This is a button.
|
|
65
|
-
<sp-tooltip self-managed
|
|
58
|
+
<sp-tooltip self-managed placement="bottom">
|
|
59
|
+
Help text.
|
|
60
|
+
</sp-tooltip>
|
|
66
61
|
</sp-button>
|
|
67
62
|
`
|
|
68
63
|
);
|
|
69
64
|
const el = button.querySelector("sp-tooltip");
|
|
70
65
|
await elementUpdated(el);
|
|
71
|
-
expect(
|
|
72
|
-
|
|
73
|
-
button.
|
|
66
|
+
await expect(button).to.be.accessible();
|
|
67
|
+
let opened = oneEvent(button, "sp-opened");
|
|
68
|
+
button.dispatchEvent(new PointerEvent("pointerenter"));
|
|
69
|
+
button.dispatchEvent(
|
|
70
|
+
new PointerEvent("pointerleave", {
|
|
71
|
+
relatedTarget: el
|
|
72
|
+
})
|
|
73
|
+
);
|
|
74
|
+
el.dispatchEvent(
|
|
75
|
+
new PointerEvent("pointerleave", {
|
|
76
|
+
relatedTarget: button
|
|
77
|
+
})
|
|
78
|
+
);
|
|
74
79
|
await opened;
|
|
75
80
|
await elementUpdated(el);
|
|
76
81
|
expect(el.open).to.be.true;
|
|
77
|
-
|
|
78
|
-
button
|
|
82
|
+
await expect(button).to.be.accessible();
|
|
83
|
+
let closed = oneEvent(button, "sp-closed");
|
|
84
|
+
button.dispatchEvent(new PointerEvent("pointerleave"));
|
|
79
85
|
await closed;
|
|
86
|
+
await elementUpdated(el);
|
|
80
87
|
expect(el.open).to.be.false;
|
|
88
|
+
opened = oneEvent(button, "sp-opened");
|
|
89
|
+
button.dispatchEvent(new PointerEvent("pointerenter"));
|
|
90
|
+
button.dispatchEvent(
|
|
91
|
+
new PointerEvent("pointerleave", {
|
|
92
|
+
relatedTarget: el
|
|
93
|
+
})
|
|
94
|
+
);
|
|
95
|
+
await opened;
|
|
96
|
+
await elementUpdated(el);
|
|
97
|
+
closed = oneEvent(button, "sp-closed");
|
|
98
|
+
el.dispatchEvent(new PointerEvent("pointerleave"));
|
|
99
|
+
await closed;
|
|
100
|
+
await elementUpdated(el);
|
|
81
101
|
});
|
|
82
|
-
it("cleans up when self
|
|
102
|
+
it("cleans up when self manages", async () => {
|
|
83
103
|
const button = await fixture(
|
|
84
104
|
html`
|
|
85
105
|
<sp-button>
|
|
@@ -90,15 +110,18 @@ describe("Tooltip", () => {
|
|
|
90
110
|
);
|
|
91
111
|
const el = button.querySelector("sp-tooltip");
|
|
92
112
|
await elementUpdated(el);
|
|
93
|
-
expect(el.open).to.be.false;
|
|
94
113
|
const opened = oneEvent(button, "sp-opened");
|
|
95
114
|
button.focus();
|
|
96
115
|
await opened;
|
|
116
|
+
await elementUpdated(el);
|
|
97
117
|
expect(el.open).to.be.true;
|
|
118
|
+
let activeOverlay = document.querySelector("active-overlay");
|
|
119
|
+
expect(activeOverlay).to.not.be.null;
|
|
98
120
|
const closed = oneEvent(button, "sp-closed");
|
|
99
121
|
button.remove();
|
|
100
122
|
await closed;
|
|
101
|
-
|
|
123
|
+
activeOverlay = document.querySelector("active-overlay");
|
|
124
|
+
expect(activeOverlay).to.be.null;
|
|
102
125
|
});
|
|
103
126
|
it("accepts variants", async () => {
|
|
104
127
|
const el = await fixture(
|
|
@@ -140,14 +163,27 @@ describe("Tooltip", () => {
|
|
|
140
163
|
expect(el.variant).to.equal("info");
|
|
141
164
|
expect(el.getAttribute("variant")).to.equal("info");
|
|
142
165
|
});
|
|
143
|
-
it("
|
|
166
|
+
it("answers tip query", async () => {
|
|
144
167
|
const el = await fixture(
|
|
145
168
|
html`
|
|
146
169
|
<sp-tooltip placement="top">Help text.</sp-tooltip>
|
|
147
170
|
`
|
|
148
171
|
);
|
|
149
172
|
await elementUpdated(el);
|
|
150
|
-
|
|
173
|
+
const overlayDetailQuery = {};
|
|
174
|
+
const queryOverlayDetailEvent = new CustomEvent("sp-overlay-query", {
|
|
175
|
+
bubbles: true,
|
|
176
|
+
composed: true,
|
|
177
|
+
detail: overlayDetailQuery,
|
|
178
|
+
cancelable: true
|
|
179
|
+
});
|
|
180
|
+
el.dispatchEvent(queryOverlayDetailEvent);
|
|
181
|
+
expect(overlayDetailQuery.overlayContentTipElement).to.exist;
|
|
182
|
+
if (overlayDetailQuery.overlayContentTipElement) {
|
|
183
|
+
expect(overlayDetailQuery.overlayContentTipElement.id).to.equal(
|
|
184
|
+
"tip"
|
|
185
|
+
);
|
|
186
|
+
}
|
|
151
187
|
});
|
|
152
188
|
});
|
|
153
189
|
//# sourceMappingURL=tooltip.test.js.map
|
package/test/tooltip.test.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["tooltip.test.ts"],
|
|
4
|
-
"sourcesContent": ["/*\nCopyright 2020 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 '@spectrum-web-components/tooltip/sp-tooltip.js';\nimport { Tooltip } from '@spectrum-web-components/tooltip';\nimport {\n elementUpdated,\n expect,\n fixture,\n html,\n oneEvent,\n} from '@open-wc/testing';\nimport { Button } from '@spectrum-web-components/button';\nimport '@spectrum-web-components/button/sp-button.js';\nimport { testForLitDevWarnings } from '../../../test/testing-helpers.js';\
|
|
5
|
-
"mappings": ";AAYA,OAAO;
|
|
4
|
+
"sourcesContent": ["/*\nCopyright 2020 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 '@spectrum-web-components/tooltip/sp-tooltip.js';\nimport { Tooltip } from '@spectrum-web-components/tooltip';\nimport { OverlayDisplayQueryDetail } from '@spectrum-web-components/overlay';\nimport {\n elementUpdated,\n expect,\n fixture,\n html,\n oneEvent,\n} from '@open-wc/testing';\nimport { Button } from '@spectrum-web-components/button';\nimport '@spectrum-web-components/button/sp-button.js';\nimport { testForLitDevWarnings } from '../../../test/testing-helpers.js';\n\ndescribe('Tooltip', () => {\n testForLitDevWarnings(\n async () =>\n await fixture<Tooltip>(\n html`\n <sp-tooltip>Help text.</sp-tooltip>\n `\n )\n );\n it('loads', async () => {\n const el = await fixture<Tooltip>(\n html`\n <sp-tooltip>Help text.</sp-tooltip>\n `\n );\n\n await elementUpdated(el);\n\n await expect(el).to.be.accessible();\n });\n it('self manages', async () => {\n const button = await fixture<Button>(\n html`\n <sp-button>\n This is a button.\n <sp-tooltip self-managed>Help text.</sp-tooltip>\n </sp-button>\n `\n );\n\n const el = button.querySelector('sp-tooltip') as Tooltip;\n\n await elementUpdated(el);\n await expect(button).to.be.accessible();\n\n const opened = oneEvent(button, 'sp-opened');\n button.focus();\n await opened;\n await elementUpdated(el);\n\n expect(el.open).to.be.true;\n await expect(button).to.be.accessible();\n\n const closed = oneEvent(button, 'sp-closed');\n button.blur();\n await closed;\n await elementUpdated(el);\n\n expect(el.open).to.be.false;\n });\n it('allows pointer to enter the \"tooltip\" without closing the \"tooltip\"', async () => {\n const button = await fixture<Button>(\n html`\n <sp-button>\n This is a button.\n <sp-tooltip self-managed placement=\"bottom\">\n Help text.\n </sp-tooltip>\n </sp-button>\n `\n );\n\n const el = button.querySelector('sp-tooltip') as Tooltip;\n\n await elementUpdated(el);\n await expect(button).to.be.accessible();\n let opened = oneEvent(button, 'sp-opened');\n button.dispatchEvent(new PointerEvent('pointerenter'));\n button.dispatchEvent(\n new PointerEvent('pointerleave', {\n relatedTarget: el,\n })\n );\n el.dispatchEvent(\n new PointerEvent('pointerleave', {\n relatedTarget: button,\n })\n );\n await opened;\n await elementUpdated(el);\n\n expect(el.open).to.be.true;\n await expect(button).to.be.accessible();\n\n let closed = oneEvent(button, 'sp-closed');\n button.dispatchEvent(new PointerEvent('pointerleave'));\n await closed;\n await elementUpdated(el);\n\n expect(el.open).to.be.false;\n\n opened = oneEvent(button, 'sp-opened');\n button.dispatchEvent(new PointerEvent('pointerenter'));\n button.dispatchEvent(\n new PointerEvent('pointerleave', {\n relatedTarget: el,\n })\n );\n await opened;\n await elementUpdated(el);\n\n closed = oneEvent(button, 'sp-closed');\n el.dispatchEvent(new PointerEvent('pointerleave'));\n await closed;\n await elementUpdated(el);\n });\n it('cleans up when self manages', async () => {\n const button = await fixture<Button>(\n html`\n <sp-button>\n This is a button.\n <sp-tooltip self-managed>Help text.</sp-tooltip>\n </sp-button>\n `\n );\n\n const el = button.querySelector('sp-tooltip') as Tooltip;\n\n await elementUpdated(el);\n\n const opened = oneEvent(button, 'sp-opened');\n button.focus();\n await opened;\n await elementUpdated(el);\n\n expect(el.open).to.be.true;\n let activeOverlay = document.querySelector('active-overlay');\n expect(activeOverlay).to.not.be.null;\n\n const closed = oneEvent(button, 'sp-closed');\n button.remove();\n await closed;\n\n activeOverlay = document.querySelector('active-overlay');\n expect(activeOverlay).to.be.null;\n });\n it('accepts variants', async () => {\n const el = await fixture<Tooltip>(\n html`\n <sp-tooltip variant=\"negative\">Help text.</sp-tooltip>\n `\n );\n\n await elementUpdated(el);\n\n expect(el.variant).to.equal('negative');\n expect(el.getAttribute('variant')).to.equal('negative');\n\n el.variant = 'info';\n\n await elementUpdated(el);\n\n expect(el.variant).to.equal('info');\n expect(el.getAttribute('variant')).to.equal('info');\n\n el.setAttribute('variant', 'positive');\n\n await elementUpdated(el);\n\n expect(el.variant).to.equal('positive');\n expect(el.getAttribute('variant')).to.equal('positive');\n\n el.removeAttribute('variant');\n\n await elementUpdated(el);\n\n expect(el.variant).to.equal('');\n expect(el.hasAttribute('variant')).to.be.false;\n });\n it('validates variants', async () => {\n const el = await fixture<Tooltip>(\n html`\n <sp-tooltip variant=\"other\">Help text.</sp-tooltip>\n `\n );\n\n await elementUpdated(el);\n\n expect(el.variant).to.equal('');\n expect(el.hasAttribute('variant')).to.be.false;\n\n el.variant = 'info';\n\n await elementUpdated(el);\n\n expect(el.variant).to.equal('info');\n expect(el.getAttribute('variant')).to.equal('info');\n\n el.variant = 'info';\n\n await elementUpdated(el);\n\n expect(el.variant).to.equal('info');\n expect(el.getAttribute('variant')).to.equal('info');\n });\n\n it('answers tip query', async () => {\n const el = await fixture<Tooltip>(\n html`\n <sp-tooltip placement=\"top\">Help text.</sp-tooltip>\n `\n );\n\n await elementUpdated(el);\n\n const overlayDetailQuery: OverlayDisplayQueryDetail = {};\n const queryOverlayDetailEvent =\n new CustomEvent<OverlayDisplayQueryDetail>('sp-overlay-query', {\n bubbles: true,\n composed: true,\n detail: overlayDetailQuery,\n cancelable: true,\n });\n el.dispatchEvent(queryOverlayDetailEvent);\n\n expect(overlayDetailQuery.overlayContentTipElement).to.exist;\n if (overlayDetailQuery.overlayContentTipElement) {\n expect(overlayDetailQuery.overlayContentTipElement.id).to.equal(\n 'tip'\n );\n }\n });\n});\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|