@spectrum-web-components/tooltip 0.42.4 → 0.43.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/package.json +6 -6
- package/test/tooltip.test.js +72 -63
- package/test/tooltip.test.js.map +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spectrum-web-components/tooltip",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.43.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -61,10 +61,10 @@
|
|
|
61
61
|
"lit-html"
|
|
62
62
|
],
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@spectrum-web-components/base": "^0.
|
|
65
|
-
"@spectrum-web-components/overlay": "^0.
|
|
66
|
-
"@spectrum-web-components/reactive-controllers": "^0.
|
|
67
|
-
"@spectrum-web-components/shared": "^0.
|
|
64
|
+
"@spectrum-web-components/base": "^0.43.0",
|
|
65
|
+
"@spectrum-web-components/overlay": "^0.43.0",
|
|
66
|
+
"@spectrum-web-components/reactive-controllers": "^0.43.0",
|
|
67
|
+
"@spectrum-web-components/shared": "^0.43.0"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@spectrum-css/tooltip": "^6.1.1"
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"./sp-*.js",
|
|
76
76
|
"./**/*.dev.js"
|
|
77
77
|
],
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "dd5179a5eae5fe69ac77c5e10faed912d0e780e3"
|
|
79
79
|
}
|
package/test/tooltip.test.js
CHANGED
|
@@ -14,18 +14,14 @@ import { testForLitDevWarnings } from "../../../test/testing-helpers.js";
|
|
|
14
14
|
import { sendMouse } from "../../../test/plugins/browser.js";
|
|
15
15
|
describe("Tooltip", () => {
|
|
16
16
|
testForLitDevWarnings(
|
|
17
|
-
async () => await fixture(
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
`
|
|
21
|
-
)
|
|
17
|
+
async () => await fixture(html`
|
|
18
|
+
<sp-tooltip>Help text.</sp-tooltip>
|
|
19
|
+
`)
|
|
22
20
|
);
|
|
23
21
|
it("loads", async () => {
|
|
24
|
-
const el = await fixture(
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
`
|
|
28
|
-
);
|
|
22
|
+
const el = await fixture(html`
|
|
23
|
+
<sp-tooltip>Help text.</sp-tooltip>
|
|
24
|
+
`);
|
|
29
25
|
await elementUpdated(el);
|
|
30
26
|
await expect(el).to.be.accessible();
|
|
31
27
|
});
|
|
@@ -38,16 +34,12 @@ describe("Tooltip", () => {
|
|
|
38
34
|
}
|
|
39
35
|
]
|
|
40
36
|
});
|
|
41
|
-
const button = await fixture(
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
</sp-tooltip>
|
|
48
|
-
</sp-button>
|
|
49
|
-
`
|
|
50
|
-
);
|
|
37
|
+
const button = await fixture(html`
|
|
38
|
+
<sp-button>
|
|
39
|
+
This is a button.
|
|
40
|
+
<sp-tooltip self-managed placement="top">Help text.</sp-tooltip>
|
|
41
|
+
</sp-button>
|
|
42
|
+
`);
|
|
51
43
|
const el = button.querySelector("sp-tooltip");
|
|
52
44
|
await elementUpdated(el);
|
|
53
45
|
await nextFrame();
|
|
@@ -65,15 +57,44 @@ describe("Tooltip", () => {
|
|
|
65
57
|
await closed;
|
|
66
58
|
expect(el.open).to.be.false;
|
|
67
59
|
});
|
|
60
|
+
it("self manages through a shadow boundary", async () => {
|
|
61
|
+
const test = await fixture(html`
|
|
62
|
+
<div></div>
|
|
63
|
+
`);
|
|
64
|
+
test.attachShadow({ mode: "open" });
|
|
65
|
+
if (!test.shadowRoot) return;
|
|
66
|
+
test.shadowRoot.innerHTML = `
|
|
67
|
+
<sp-button>
|
|
68
|
+
This is a button.
|
|
69
|
+
<sp-tooltip self-managed placement="top">
|
|
70
|
+
Help text.
|
|
71
|
+
</sp-tooltip>
|
|
72
|
+
</sp-button>
|
|
73
|
+
`;
|
|
74
|
+
const button = test.shadowRoot.querySelector("sp-button");
|
|
75
|
+
const el = test.shadowRoot.querySelector("sp-tooltip");
|
|
76
|
+
await elementUpdated(el);
|
|
77
|
+
await nextFrame();
|
|
78
|
+
await nextFrame();
|
|
79
|
+
await nextFrame();
|
|
80
|
+
await nextFrame();
|
|
81
|
+
const opened = oneEvent(button, "sp-opened");
|
|
82
|
+
button.focus();
|
|
83
|
+
await opened;
|
|
84
|
+
expect(el.open).to.be.true;
|
|
85
|
+
await expect(button).to.be.accessible();
|
|
86
|
+
const closed = oneEvent(button, "sp-closed");
|
|
87
|
+
button.blur();
|
|
88
|
+
await closed;
|
|
89
|
+
expect(el.open).to.be.false;
|
|
90
|
+
});
|
|
68
91
|
it("cleans up when self manages", async () => {
|
|
69
|
-
const button = await fixture(
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
`
|
|
76
|
-
);
|
|
92
|
+
const button = await fixture(html`
|
|
93
|
+
<sp-button>
|
|
94
|
+
This is a button.
|
|
95
|
+
<sp-tooltip self-managed>Help text.</sp-tooltip>
|
|
96
|
+
</sp-button>
|
|
97
|
+
`);
|
|
77
98
|
const el = button.querySelector("sp-tooltip");
|
|
78
99
|
await elementUpdated(el);
|
|
79
100
|
expect(el.open).to.be.false;
|
|
@@ -88,14 +109,12 @@ describe("Tooltip", () => {
|
|
|
88
109
|
expect(el.open).to.be.false;
|
|
89
110
|
});
|
|
90
111
|
it("cleans up when self managed and removed", async () => {
|
|
91
|
-
const button = await fixture(
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
`
|
|
98
|
-
);
|
|
112
|
+
const button = await fixture(html`
|
|
113
|
+
<sp-button>
|
|
114
|
+
This is a button.
|
|
115
|
+
<sp-tooltip self-managed>Help text.</sp-tooltip>
|
|
116
|
+
</sp-button>
|
|
117
|
+
`);
|
|
99
118
|
const el = button.querySelector("sp-tooltip");
|
|
100
119
|
await elementUpdated(el);
|
|
101
120
|
expect(el.open).to.be.false;
|
|
@@ -109,11 +128,9 @@ describe("Tooltip", () => {
|
|
|
109
128
|
expect(el.open).to.be.false;
|
|
110
129
|
});
|
|
111
130
|
it("accepts variants", async () => {
|
|
112
|
-
const el = await fixture(
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
`
|
|
116
|
-
);
|
|
131
|
+
const el = await fixture(html`
|
|
132
|
+
<sp-tooltip variant="negative">Help text.</sp-tooltip>
|
|
133
|
+
`);
|
|
117
134
|
await elementUpdated(el);
|
|
118
135
|
expect(el.variant).to.equal("negative");
|
|
119
136
|
expect(el.getAttribute("variant")).to.equal("negative");
|
|
@@ -131,11 +148,9 @@ describe("Tooltip", () => {
|
|
|
131
148
|
expect(el.hasAttribute("variant")).to.be.false;
|
|
132
149
|
});
|
|
133
150
|
it("validates variants", async () => {
|
|
134
|
-
const el = await fixture(
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
`
|
|
138
|
-
);
|
|
151
|
+
const el = await fixture(html`
|
|
152
|
+
<sp-tooltip variant="other">Help text.</sp-tooltip>
|
|
153
|
+
`);
|
|
139
154
|
await elementUpdated(el);
|
|
140
155
|
expect(el.variant).to.equal("");
|
|
141
156
|
expect(el.hasAttribute("variant")).to.be.false;
|
|
@@ -149,11 +164,9 @@ describe("Tooltip", () => {
|
|
|
149
164
|
expect(el.getAttribute("variant")).to.equal("info");
|
|
150
165
|
});
|
|
151
166
|
it("surfaces tip element", async () => {
|
|
152
|
-
const el = await fixture(
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
`
|
|
156
|
-
);
|
|
167
|
+
const el = await fixture(html`
|
|
168
|
+
<sp-tooltip placement="top">Help text.</sp-tooltip>
|
|
169
|
+
`);
|
|
157
170
|
await elementUpdated(el);
|
|
158
171
|
expect(typeof el.tipElement).to.not.equal("undefined");
|
|
159
172
|
});
|
|
@@ -170,11 +183,9 @@ describe("Tooltip", () => {
|
|
|
170
183
|
});
|
|
171
184
|
it("does not attach event listeners if no trigger was found", async function() {
|
|
172
185
|
var _a;
|
|
173
|
-
const el = await fixture(
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
`
|
|
177
|
-
);
|
|
186
|
+
const el = await fixture(html`
|
|
187
|
+
<sp-tooltip self-managed>Help text.</sp-tooltip>
|
|
188
|
+
`);
|
|
178
189
|
await elementUpdated(el);
|
|
179
190
|
let calls = documentEventsSpy.callCount;
|
|
180
191
|
while (calls) {
|
|
@@ -199,13 +210,11 @@ describe("Tooltip", () => {
|
|
|
199
210
|
consoleWarnStub.restore();
|
|
200
211
|
});
|
|
201
212
|
it("warns when incorrectly using `self-managed`", async () => {
|
|
202
|
-
const el = await fixture(
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
`
|
|
208
|
-
);
|
|
213
|
+
const el = await fixture(html`
|
|
214
|
+
<sp-tooltip variant="negative" self-managed>
|
|
215
|
+
Help text.
|
|
216
|
+
</sp-tooltip>
|
|
217
|
+
`);
|
|
209
218
|
await elementUpdated(el);
|
|
210
219
|
expect(consoleWarnStub.called).to.be.true;
|
|
211
220
|
const spyCall = consoleWarnStub.getCall(0);
|
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 nextFrame,\n oneEvent,\n} from '@open-wc/testing';\nimport { Button } from '@spectrum-web-components/button';\nimport '@spectrum-web-components/button/sp-button.js';\nimport { spy, stub } from 'sinon';\nimport { testForLitDevWarnings } from '../../../test/testing-helpers.js';\nimport { sendMouse } from '../../../test/plugins/browser.js';\n\ndescribe('Tooltip', () => {\n testForLitDevWarnings(\n async () =>\n await fixture<Tooltip>(
|
|
5
|
-
"mappings": ";AAYA,OAAO;AAEP;AAAA,EACI;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACG;AAEP,OAAO;AACP,SAAS,KAAK,YAAY;AAC1B,SAAS,6BAA6B;AACtC,SAAS,iBAAiB;AAE1B,SAAS,WAAW,MAAM;AACtB;AAAA,IACI,YACI,MAAM
|
|
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 nextFrame,\n oneEvent,\n} from '@open-wc/testing';\nimport { Button } from '@spectrum-web-components/button';\nimport '@spectrum-web-components/button/sp-button.js';\nimport { spy, stub } from 'sinon';\nimport { testForLitDevWarnings } from '../../../test/testing-helpers.js';\nimport { sendMouse } from '../../../test/plugins/browser.js';\n\ndescribe('Tooltip', () => {\n testForLitDevWarnings(\n async () =>\n await fixture<Tooltip>(html`\n <sp-tooltip>Help text.</sp-tooltip>\n `)\n );\n it('loads', async () => {\n const el = await fixture<Tooltip>(html`\n <sp-tooltip>Help text.</sp-tooltip>\n `);\n\n await elementUpdated(el);\n\n await expect(el).to.be.accessible();\n });\n it('self manages', async () => {\n await sendMouse({\n steps: [\n {\n type: 'move',\n position: [1, 1],\n },\n ],\n });\n const button = await fixture<Button>(html`\n <sp-button>\n This is a button.\n <sp-tooltip self-managed placement=\"top\">Help text.</sp-tooltip>\n </sp-button>\n `);\n\n const el = button.querySelector('sp-tooltip') as Tooltip;\n\n await elementUpdated(el);\n await nextFrame();\n await nextFrame();\n await nextFrame();\n await nextFrame();\n await expect(button).to.be.accessible();\n\n const opened = oneEvent(button, 'sp-opened');\n button.focus();\n await opened;\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\n expect(el.open).to.be.false;\n });\n it('self manages through a shadow boundary', async () => {\n const test = await fixture<HTMLDivElement>(html`\n <div></div>\n `);\n test.attachShadow({ mode: 'open' });\n if (!test.shadowRoot) return;\n test.shadowRoot.innerHTML = `\n <sp-button>\n This is a button.\n <sp-tooltip self-managed placement=\"top\">\n Help text.\n </sp-tooltip>\n </sp-button>\n `;\n\n const button = test.shadowRoot.querySelector('sp-button') as Button;\n const el = test.shadowRoot.querySelector('sp-tooltip') as Tooltip;\n\n await elementUpdated(el);\n await nextFrame();\n await nextFrame();\n await nextFrame();\n await nextFrame();\n\n const opened = oneEvent(button, 'sp-opened');\n button.focus();\n await opened;\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\n expect(el.open).to.be.false;\n });\n it('cleans up when self manages', async () => {\n const button = await fixture<Button>(html`\n <sp-button>\n This is a button.\n <sp-tooltip self-managed>Help text.</sp-tooltip>\n </sp-button>\n `);\n\n const el = button.querySelector('sp-tooltip') as Tooltip;\n\n await elementUpdated(el);\n\n expect(el.open).to.be.false;\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\n const closed = oneEvent(button, 'sp-closed');\n button.blur();\n await closed;\n\n expect(el.open).to.be.false;\n });\n it('cleans up when self managed and removed', async () => {\n const button = await fixture<Button>(html`\n <sp-button>\n This is a button.\n <sp-tooltip self-managed>Help text.</sp-tooltip>\n </sp-button>\n `);\n\n const el = button.querySelector('sp-tooltip') as Tooltip;\n\n await elementUpdated(el);\n\n expect(el.open).to.be.false;\n const opened = oneEvent(button, 'sp-opened');\n button.focus();\n await opened;\n\n expect(el.open).to.be.true;\n\n const closed = oneEvent(button, 'sp-closed');\n button.remove();\n await closed;\n\n expect(el.open).to.be.false;\n });\n it('accepts variants', async () => {\n const el = await fixture<Tooltip>(html`\n <sp-tooltip variant=\"negative\">Help text.</sp-tooltip>\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>(html`\n <sp-tooltip variant=\"other\">Help text.</sp-tooltip>\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('surfaces tip element', async () => {\n const el = await fixture<Tooltip>(html`\n <sp-tooltip placement=\"top\">Help text.</sp-tooltip>\n `);\n\n await elementUpdated(el);\n\n expect(typeof el.tipElement).to.not.equal('undefined');\n });\n describe('self-managed', () => {\n let documentEventsSpy!: ReturnType<typeof spy>;\n before(() => {\n documentEventsSpy = spy(document, 'addEventListener');\n });\n afterEach(() => {\n documentEventsSpy.resetHistory();\n });\n after(() => {\n documentEventsSpy.restore();\n });\n it('does not attach event listeners if no trigger was found', async function () {\n const el = await fixture<Tooltip>(html`\n <sp-tooltip self-managed>Help text.</sp-tooltip>\n `);\n\n await elementUpdated(el);\n let calls = documentEventsSpy.callCount;\n while (calls) {\n calls -= 1;\n const call = documentEventsSpy.getCall(calls);\n expect(call.args[0]).to.not.equal('pointerenter');\n }\n expect(el.overlayElement?.triggerElement).to.be.null;\n });\n });\n describe('dev mode', () => {\n let consoleWarnStub!: ReturnType<typeof stub>;\n before(() => {\n window.__swc.verbose = true;\n consoleWarnStub = stub(console, 'warn');\n });\n afterEach(() => {\n consoleWarnStub.resetHistory();\n });\n after(() => {\n window.__swc.verbose = false;\n consoleWarnStub.restore();\n });\n\n it('warns when incorrectly using `self-managed`', async () => {\n const el = await fixture<Tooltip>(html`\n <sp-tooltip variant=\"negative\" self-managed>\n Help text.\n </sp-tooltip>\n `);\n\n await elementUpdated(el);\n\n expect(consoleWarnStub.called).to.be.true;\n const spyCall = consoleWarnStub.getCall(0);\n expect(\n (spyCall.args.at(0) as string).includes('Self managed'),\n 'confirm self managed-centric message'\n ).to.be.true;\n expect(spyCall.args.at(-1), 'confirm `data` shape').to.deep.equal({\n data: {\n localName: 'sp-tooltip',\n type: 'api',\n level: 'high',\n },\n });\n });\n });\n});\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|