@spectrum-web-components/dialog 0.10.7 → 0.10.9-devmode.7

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.
Files changed (45) hide show
  1. package/package.json +36 -17
  2. package/sp-dialog-wrapper.dev.js +3 -0
  3. package/sp-dialog-wrapper.dev.js.map +7 -0
  4. package/sp-dialog-wrapper.js +3 -14
  5. package/sp-dialog-wrapper.js.map +7 -1
  6. package/sp-dialog.dev.js +3 -0
  7. package/sp-dialog.dev.js.map +7 -0
  8. package/sp-dialog.js +3 -14
  9. package/sp-dialog.js.map +7 -1
  10. package/src/Dialog.dev.js +208 -0
  11. package/src/Dialog.dev.js.map +7 -0
  12. package/src/Dialog.js +170 -182
  13. package/src/Dialog.js.map +7 -1
  14. package/src/DialogWrapper.dev.js +262 -0
  15. package/src/DialogWrapper.dev.js.map +7 -0
  16. package/src/DialogWrapper.js +205 -239
  17. package/src/DialogWrapper.js.map +7 -1
  18. package/src/dialog.css.dev.js +99 -0
  19. package/src/dialog.css.dev.js.map +7 -0
  20. package/src/dialog.css.js +3 -14
  21. package/src/dialog.css.js.map +7 -1
  22. package/src/index.dev.js +3 -0
  23. package/src/index.dev.js.map +7 -0
  24. package/src/index.js +3 -14
  25. package/src/index.js.map +7 -1
  26. package/src/spectrum-dialog.css.dev.js +97 -0
  27. package/src/spectrum-dialog.css.dev.js.map +7 -0
  28. package/src/spectrum-dialog.css.js +3 -14
  29. package/src/spectrum-dialog.css.js.map +7 -1
  30. package/stories/dialog-wrapper.stories.js +76 -87
  31. package/stories/dialog-wrapper.stories.js.map +7 -1
  32. package/stories/dialog.stories.js +20 -31
  33. package/stories/dialog.stories.js.map +7 -1
  34. package/stories/images.js +3 -14
  35. package/stories/images.js.map +7 -1
  36. package/test/benchmark/basic-test.js +5 -16
  37. package/test/benchmark/basic-test.js.map +7 -1
  38. package/test/dialog-wrapper.test-vrt.js +4 -15
  39. package/test/dialog-wrapper.test-vrt.js.map +7 -1
  40. package/test/dialog-wrapper.test.js +158 -156
  41. package/test/dialog-wrapper.test.js.map +7 -1
  42. package/test/dialog.test-vrt.js +4 -15
  43. package/test/dialog.test-vrt.js.map +7 -1
  44. package/test/dialog.test.js +46 -54
  45. package/test/dialog.test.js.map +7 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/dialog",
3
- "version": "0.10.7",
3
+ "version": "0.10.9-devmode.7+8303f3a2a",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -20,13 +20,32 @@
20
20
  "module": "./src/index.js",
21
21
  "type": "module",
22
22
  "exports": {
23
- ".": "./src/index.js",
24
- "./src/*": "./src/*",
23
+ ".": {
24
+ "development": "./src/index.dev.js",
25
+ "default": "./src/index.js"
26
+ },
25
27
  "./package.json": "./package.json",
26
- "./sp-dialog": "./sp-dialog.js",
27
- "./sp-dialog.js": "./sp-dialog.js",
28
- "./sp-dialog-wrapper": "./sp-dialog-wrapper.js",
29
- "./sp-dialog-wrapper.js": "./sp-dialog-wrapper.js"
28
+ "./src/Dialog.js": {
29
+ "development": "./src/Dialog.dev.js",
30
+ "default": "./src/Dialog.js"
31
+ },
32
+ "./src/DialogWrapper.js": {
33
+ "development": "./src/DialogWrapper.dev.js",
34
+ "default": "./src/DialogWrapper.js"
35
+ },
36
+ "./src/dialog.css.js": "./src/dialog.css.js",
37
+ "./src/index.js": {
38
+ "development": "./src/index.dev.js",
39
+ "default": "./src/index.js"
40
+ },
41
+ "./sp-dialog.js": {
42
+ "development": "./sp-dialog.dev.js",
43
+ "default": "./sp-dialog.js"
44
+ },
45
+ "./sp-dialog-wrapper.js": {
46
+ "development": "./sp-dialog-wrapper.dev.js",
47
+ "default": "./sp-dialog-wrapper.js"
48
+ }
30
49
  },
31
50
  "scripts": {
32
51
  "test": "echo \"Error: run tests from mono-repo root.\" && exit 1"
@@ -46,23 +65,23 @@
46
65
  "lit-html"
47
66
  ],
48
67
  "dependencies": {
49
- "@spectrum-web-components/base": "^0.5.8",
50
- "@spectrum-web-components/button": "^0.17.7",
51
- "@spectrum-web-components/button-group": "^0.8.10",
52
- "@spectrum-web-components/divider": "^0.4.10",
53
- "@spectrum-web-components/icons-workflow": "^0.8.10",
54
- "@spectrum-web-components/modal": "^0.6.8",
55
- "@spectrum-web-components/shared": "^0.14.3",
56
- "@spectrum-web-components/underlay": "^0.8.9",
68
+ "@spectrum-web-components/base": "^0.5.9-devmode.31+8303f3a2a",
69
+ "@spectrum-web-components/button": "^0.18.1-devmode.7+8303f3a2a",
70
+ "@spectrum-web-components/button-group": "^0.8.12-devmode.7+8303f3a2a",
71
+ "@spectrum-web-components/divider": "^0.4.12-devmode.7+8303f3a2a",
72
+ "@spectrum-web-components/icons-workflow": "^0.8.12-devmode.7+8303f3a2a",
73
+ "@spectrum-web-components/modal": "^0.6.10-devmode.7+8303f3a2a",
74
+ "@spectrum-web-components/shared": "^0.14.5-devmode.7+8303f3a2a",
75
+ "@spectrum-web-components/underlay": "^0.8.11-devmode.7+8303f3a2a",
57
76
  "tslib": "^2.0.0"
58
77
  },
59
78
  "devDependencies": {
60
- "@spectrum-css/dialog": "^6.0.11"
79
+ "@spectrum-css/dialog": "^6.0.15"
61
80
  },
62
81
  "types": "./src/index.d.ts",
63
82
  "customElements": "custom-elements.json",
64
83
  "sideEffects": [
65
84
  "./sp-*.js"
66
85
  ],
67
- "gitHead": "e5cd4a0db2201b8126eb9133ac3c24172d086359"
86
+ "gitHead": "8303f3a2a90b0aedc15158797662ccfa8f4a2031"
68
87
  }
@@ -0,0 +1,3 @@
1
+ import { DialogWrapper } from "./src/DialogWrapper.dev.js";
2
+ customElements.define("sp-dialog-wrapper", DialogWrapper);
3
+ //# sourceMappingURL=sp-dialog-wrapper.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["sp-dialog-wrapper.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*/\nimport { DialogWrapper } from './src/DialogWrapper.dev.js'\n\ncustomElements.define('sp-dialog-wrapper', DialogWrapper);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-dialog-wrapper': DialogWrapper;\n }\n}\n"],
5
+ "mappings": "AAWA;AAEA,eAAe,OAAO,qBAAqB,aAAa;",
6
+ "names": []
7
+ }
@@ -1,14 +1,3 @@
1
- /*
2
- Copyright 2020 Adobe. All rights reserved.
3
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License. You may obtain a copy
5
- of the License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under
8
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- OF ANY KIND, either express or implied. See the License for the specific language
10
- governing permissions and limitations under the License.
11
- */
12
- import { DialogWrapper } from './src/DialogWrapper.js';
13
- customElements.define('sp-dialog-wrapper', DialogWrapper);
14
- //# sourceMappingURL=sp-dialog-wrapper.js.map
1
+ import { DialogWrapper } from "./src/DialogWrapper.js";
2
+ customElements.define("sp-dialog-wrapper", DialogWrapper);
3
+ //# sourceMappingURL=sp-dialog-wrapper.js.map
@@ -1 +1,7 @@
1
- {"version":3,"file":"sp-dialog-wrapper.js","sourceRoot":"","sources":["sp-dialog-wrapper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AACF,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAEvD,cAAc,CAAC,MAAM,CAAC,mBAAmB,EAAE,aAAa,CAAC,CAAC","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*/\nimport { DialogWrapper } from './src/DialogWrapper.js';\n\ncustomElements.define('sp-dialog-wrapper', DialogWrapper);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-dialog-wrapper': DialogWrapper;\n }\n}\n"]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["sp-dialog-wrapper.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*/\nimport { DialogWrapper } from './src/DialogWrapper.js';\n\ncustomElements.define('sp-dialog-wrapper', DialogWrapper);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-dialog-wrapper': DialogWrapper;\n }\n}\n"],
5
+ "mappings": "AAWA;AAEA,eAAe,OAAO,qBAAqB,aAAa;",
6
+ "names": []
7
+ }
@@ -0,0 +1,3 @@
1
+ import { Dialog } from "./src/Dialog.dev.js";
2
+ customElements.define("sp-dialog", Dialog);
3
+ //# sourceMappingURL=sp-dialog.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["sp-dialog.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*/\nimport { Dialog } from './src/Dialog.dev.js'\n\ncustomElements.define('sp-dialog', Dialog);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-dialog': Dialog;\n }\n}\n"],
5
+ "mappings": "AAWA;AAEA,eAAe,OAAO,aAAa,MAAM;",
6
+ "names": []
7
+ }
package/sp-dialog.js CHANGED
@@ -1,14 +1,3 @@
1
- /*
2
- Copyright 2020 Adobe. All rights reserved.
3
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License. You may obtain a copy
5
- of the License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under
8
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- OF ANY KIND, either express or implied. See the License for the specific language
10
- governing permissions and limitations under the License.
11
- */
12
- import { Dialog } from './src/Dialog.js';
13
- customElements.define('sp-dialog', Dialog);
14
- //# sourceMappingURL=sp-dialog.js.map
1
+ import { Dialog } from "./src/Dialog.js";
2
+ customElements.define("sp-dialog", Dialog);
3
+ //# sourceMappingURL=sp-dialog.js.map
package/sp-dialog.js.map CHANGED
@@ -1 +1,7 @@
1
- {"version":3,"file":"sp-dialog.js","sourceRoot":"","sources":["sp-dialog.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AACF,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAEzC,cAAc,CAAC,MAAM,CAAC,WAAW,EAAE,MAAM,CAAC,CAAC","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*/\nimport { Dialog } from './src/Dialog.js';\n\ncustomElements.define('sp-dialog', Dialog);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-dialog': Dialog;\n }\n}\n"]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["sp-dialog.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*/\nimport { Dialog } from './src/Dialog.js';\n\ncustomElements.define('sp-dialog', Dialog);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-dialog': Dialog;\n }\n}\n"],
5
+ "mappings": "AAWA;AAEA,eAAe,OAAO,aAAa,MAAM;",
6
+ "names": []
7
+ }
@@ -0,0 +1,208 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __decorateClass = (decorators, target, key, kind) => {
4
+ var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
5
+ for (var i = decorators.length - 1, decorator; i >= 0; i--)
6
+ if (decorator = decorators[i])
7
+ result = (kind ? decorator(target, key, result) : decorator(result)) || result;
8
+ if (kind && result)
9
+ __defProp(target, key, result);
10
+ return result;
11
+ };
12
+ import {
13
+ html,
14
+ SpectrumElement
15
+ } from "@spectrum-web-components/base";
16
+ import {
17
+ property,
18
+ query
19
+ } from "@spectrum-web-components/base/src/decorators.js";
20
+ import { ifDefined } from "@spectrum-web-components/base/src/directives.js";
21
+ import { conditionAttributeWithId } from "@spectrum-web-components/base/src/condition-attribute-with-id.js";
22
+ import "@spectrum-web-components/divider/sp-divider.js";
23
+ import "@spectrum-web-components/button/sp-close-button.js";
24
+ import "@spectrum-web-components/button-group/sp-button-group.js";
25
+ import "@spectrum-web-components/icons-workflow/icons/sp-icon-alert.js";
26
+ import {
27
+ FocusVisiblePolyfillMixin,
28
+ ObserveSlotPresence
29
+ } from "@spectrum-web-components/shared";
30
+ import styles from "./dialog.css.js";
31
+ function gatherAppliedIdsFromSlottedChildren(slot, idBase) {
32
+ const assignedElements = slot.assignedElements();
33
+ const ids = [];
34
+ assignedElements.forEach((el, i) => {
35
+ if (el.id) {
36
+ ids.push(el.id);
37
+ } else {
38
+ const id = idBase + `-${i}`;
39
+ el.id = id;
40
+ ids.push(id);
41
+ }
42
+ });
43
+ return ids;
44
+ }
45
+ const _Dialog = class extends FocusVisiblePolyfillMixin(ObserveSlotPresence(SpectrumElement, [
46
+ '[slot="hero"]',
47
+ '[slot="footer"]',
48
+ '[slot="button"]'
49
+ ])) {
50
+ constructor() {
51
+ super(...arguments);
52
+ this.error = false;
53
+ this.dismissable = false;
54
+ this.noDivider = false;
55
+ this.shouldManageTabOrderForScrolling = () => {
56
+ const { offsetHeight, scrollHeight } = this.contentElement;
57
+ if (offsetHeight < scrollHeight) {
58
+ this.contentElement.tabIndex = 0;
59
+ } else {
60
+ this.contentElement.removeAttribute("tabindex");
61
+ }
62
+ };
63
+ this.labelledbyId = `sp-dialog-label-${_Dialog.instanceCount++}`;
64
+ this.describedbyId = `sp-dialog-description-${_Dialog.instanceCount++}`;
65
+ }
66
+ static get styles() {
67
+ return [styles];
68
+ }
69
+ get hasFooter() {
70
+ return this.getSlotContentPresence('[slot="footer"]');
71
+ }
72
+ get hasButtons() {
73
+ return this.getSlotContentPresence('[slot="button"]');
74
+ }
75
+ get hasHero() {
76
+ return this.getSlotContentPresence('[slot="hero"]');
77
+ }
78
+ close() {
79
+ this.dispatchEvent(new Event("close", {
80
+ bubbles: true,
81
+ composed: true,
82
+ cancelable: true
83
+ }));
84
+ }
85
+ render() {
86
+ return html`
87
+ <div class="grid">
88
+ <slot name="hero"></slot>
89
+ <slot
90
+ name="heading"
91
+ class=${ifDefined(this.hasHero ? this.hasHero : void 0)}
92
+ @slotchange=${this.onHeadingSlotchange}
93
+ ></slot>
94
+ ${this.error ? html`
95
+ <sp-icon-alert class="type-icon"></sp-icon-alert>
96
+ ` : html``}
97
+ ${this.noDivider ? html`` : html`
98
+ <sp-divider size="m" class="divider"></sp-divider>
99
+ `}
100
+ <div class="content">
101
+ <slot @slotchange=${this.onContentSlotChange}></slot>
102
+ </div>
103
+ ${this.hasFooter ? html`
104
+ <div class="footer">
105
+ <slot name="footer"></slot>
106
+ </div>
107
+ ` : html``}
108
+ ${this.hasButtons ? html`
109
+ <sp-button-group
110
+ class="button-group ${this.hasFooter ? "" : "button-group--noFooter"}"
111
+ >
112
+ <slot name="button"></slot>
113
+ </sp-button-group>
114
+ ` : html``}
115
+ ${this.dismissable ? html`
116
+ <sp-close-button
117
+ class="close-button"
118
+ label="Close"
119
+ quiet
120
+ size="m"
121
+ @click=${this.close}
122
+ ></sp-close-button>
123
+ ` : html``}
124
+ </div>
125
+ `;
126
+ }
127
+ shouldUpdate(changes) {
128
+ if (changes.has("mode") && !!this.mode) {
129
+ this.dismissable = false;
130
+ }
131
+ if (changes.has("dismissable") && this.dismissable) {
132
+ this.dismissable = !this.mode;
133
+ }
134
+ return super.shouldUpdate(changes);
135
+ }
136
+ firstUpdated(changes) {
137
+ super.firstUpdated(changes);
138
+ this.setAttribute("role", "dialog");
139
+ }
140
+ onHeadingSlotchange({
141
+ target
142
+ }) {
143
+ if (this.conditionLabelledby) {
144
+ this.conditionLabelledby();
145
+ delete this.conditionLabelledby;
146
+ }
147
+ const ids = gatherAppliedIdsFromSlottedChildren(target, this.labelledbyId);
148
+ if (ids.length) {
149
+ this.conditionLabelledby = conditionAttributeWithId(this, "aria-labelledby", ids);
150
+ }
151
+ }
152
+ onContentSlotChange({
153
+ target
154
+ }) {
155
+ if (this.conditionDescribedby) {
156
+ this.conditionDescribedby();
157
+ delete this.conditionDescribedby;
158
+ }
159
+ const ids = gatherAppliedIdsFromSlottedChildren(target, this.describedbyId);
160
+ if (ids.length && ids.length < 4) {
161
+ this.conditionDescribedby = conditionAttributeWithId(this, "aria-describedby", ids);
162
+ } else if (!ids.length) {
163
+ const idProvided = !!this.id;
164
+ if (!idProvided)
165
+ this.id = this.describedbyId;
166
+ const conditionDescribedby = conditionAttributeWithId(this, "aria-describedby", this.id);
167
+ this.conditionDescribedby = () => {
168
+ conditionDescribedby();
169
+ if (!idProvided) {
170
+ this.removeAttribute("id");
171
+ }
172
+ };
173
+ }
174
+ }
175
+ connectedCallback() {
176
+ super.connectedCallback();
177
+ this.tabIndex = 0;
178
+ window.addEventListener("resize", this.shouldManageTabOrderForScrolling);
179
+ }
180
+ disconnectedCallback() {
181
+ window.removeEventListener("resize", this.shouldManageTabOrderForScrolling);
182
+ super.disconnectedCallback();
183
+ }
184
+ };
185
+ export let Dialog = _Dialog;
186
+ Dialog.instanceCount = 0;
187
+ __decorateClass([
188
+ query(".close-button")
189
+ ], Dialog.prototype, "closeButton", 2);
190
+ __decorateClass([
191
+ query(".content")
192
+ ], Dialog.prototype, "contentElement", 2);
193
+ __decorateClass([
194
+ property({ type: Boolean, reflect: true })
195
+ ], Dialog.prototype, "error", 2);
196
+ __decorateClass([
197
+ property({ type: Boolean, reflect: true })
198
+ ], Dialog.prototype, "dismissable", 2);
199
+ __decorateClass([
200
+ property({ type: Boolean, reflect: true, attribute: "no-divider" })
201
+ ], Dialog.prototype, "noDivider", 2);
202
+ __decorateClass([
203
+ property({ type: String, reflect: true })
204
+ ], Dialog.prototype, "mode", 2);
205
+ __decorateClass([
206
+ property({ type: String, reflect: true })
207
+ ], Dialog.prototype, "size", 2);
208
+ //# sourceMappingURL=Dialog.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["Dialog.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 {\n CSSResultArray,\n html,\n PropertyValues,\n SpectrumElement,\n TemplateResult,\n} from '@spectrum-web-components/base';\nimport {\n property,\n query,\n} from '@spectrum-web-components/base/src/decorators.js';\nimport { ifDefined } from '@spectrum-web-components/base/src/directives.js';\nimport { conditionAttributeWithId } from '@spectrum-web-components/base/src/condition-attribute-with-id.js';\n\nimport '@spectrum-web-components/divider/sp-divider.js';\nimport '@spectrum-web-components/button/sp-close-button.js';\nimport '@spectrum-web-components/button-group/sp-button-group.js';\nimport '@spectrum-web-components/icons-workflow/icons/sp-icon-alert.js';\nimport {\n FocusVisiblePolyfillMixin,\n ObserveSlotPresence,\n} from '@spectrum-web-components/shared';\n\nimport styles from './dialog.css.js';\nimport type { CloseButton } from '@spectrum-web-components/button';\n\nfunction gatherAppliedIdsFromSlottedChildren(\n slot: HTMLSlotElement,\n idBase: string\n): string[] {\n const assignedElements = slot.assignedElements();\n const ids: string[] = [];\n assignedElements.forEach((el, i) => {\n if (el.id) {\n ids.push(el.id);\n } else {\n const id = idBase + `-${i}`;\n el.id = id;\n ids.push(id);\n }\n });\n return ids;\n}\n\n/**\n * @element sp-dialog\n *\n * @slot hero - Accepts a hero image to display at the top of the dialog\n * @slot heading - Acts as the heading of the dialog. This should be an actual heading tag `<h1-6 />`\n * @slot - Content not addressed to a specific slot will be interpreted as the main content of the dialog\n * @slot footer - Content addressed to the `footer` will be placed below the main content and to the side of any `[slot='button']` content\n * @slot button - Button elements addressed to this slot may be placed below the content when not delivered in a fullscreen mode\n * @fires close - Announces that the dialog has been closed.\n */\nexport class Dialog extends FocusVisiblePolyfillMixin(\n ObserveSlotPresence(SpectrumElement, [\n '[slot=\"hero\"]',\n '[slot=\"footer\"]',\n '[slot=\"button\"]',\n ])\n) {\n public static override get styles(): CSSResultArray {\n return [styles];\n }\n\n @query('.close-button')\n closeButton?: CloseButton;\n\n @query('.content')\n private contentElement!: HTMLDivElement;\n\n @property({ type: Boolean, reflect: true })\n public error = false;\n\n @property({ type: Boolean, reflect: true })\n public dismissable = false;\n\n protected get hasFooter(): boolean {\n return this.getSlotContentPresence('[slot=\"footer\"]');\n }\n\n protected get hasButtons(): boolean {\n return this.getSlotContentPresence('[slot=\"button\"]');\n }\n\n protected get hasHero(): boolean {\n return this.getSlotContentPresence('[slot=\"hero\"]');\n }\n\n @property({ type: Boolean, reflect: true, attribute: 'no-divider' })\n public noDivider = false;\n\n @property({ type: String, reflect: true })\n public mode?: 'fullscreen' | 'fullscreenTakeover';\n\n @property({ type: String, reflect: true })\n public size?: 's' | 'm' | 'l';\n\n public close(): void {\n this.dispatchEvent(\n new Event('close', {\n bubbles: true,\n composed: true,\n cancelable: true,\n })\n );\n }\n\n protected override render(): TemplateResult {\n return html`\n <div class=\"grid\">\n <slot name=\"hero\"></slot>\n <slot\n name=\"heading\"\n class=${ifDefined(this.hasHero ? this.hasHero : undefined)}\n @slotchange=${this.onHeadingSlotchange}\n ></slot>\n ${this.error\n ? html`\n <sp-icon-alert class=\"type-icon\"></sp-icon-alert>\n `\n : html``}\n ${this.noDivider\n ? html``\n : html`\n <sp-divider size=\"m\" class=\"divider\"></sp-divider>\n `}\n <div class=\"content\">\n <slot @slotchange=${this.onContentSlotChange}></slot>\n </div>\n ${this.hasFooter\n ? html`\n <div class=\"footer\">\n <slot name=\"footer\"></slot>\n </div>\n `\n : html``}\n ${this.hasButtons\n ? html`\n <sp-button-group\n class=\"button-group ${this.hasFooter\n ? ''\n : 'button-group--noFooter'}\"\n >\n <slot name=\"button\"></slot>\n </sp-button-group>\n `\n : html``}\n ${this.dismissable\n ? html`\n <sp-close-button\n class=\"close-button\"\n label=\"Close\"\n quiet\n size=\"m\"\n @click=${this.close}\n ></sp-close-button>\n `\n : html``}\n </div>\n `;\n }\n\n public shouldManageTabOrderForScrolling = (): void => {\n const { offsetHeight, scrollHeight } = this.contentElement;\n if (offsetHeight < scrollHeight) {\n this.contentElement.tabIndex = 0;\n } else {\n this.contentElement.removeAttribute('tabindex');\n }\n };\n\n protected override shouldUpdate(changes: PropertyValues): boolean {\n if (changes.has('mode') && !!this.mode) {\n this.dismissable = false;\n }\n if (changes.has('dismissable') && this.dismissable) {\n this.dismissable = !this.mode;\n }\n return super.shouldUpdate(changes);\n }\n\n protected override firstUpdated(changes: PropertyValues): void {\n super.firstUpdated(changes);\n this.setAttribute('role', 'dialog');\n }\n\n static instanceCount = 0;\n private labelledbyId = `sp-dialog-label-${Dialog.instanceCount++}`;\n private conditionLabelledby?: () => void;\n private conditionDescribedby?: () => void;\n\n private onHeadingSlotchange({\n target,\n }: Event & { target: HTMLSlotElement }): void {\n if (this.conditionLabelledby) {\n this.conditionLabelledby();\n delete this.conditionLabelledby;\n }\n const ids = gatherAppliedIdsFromSlottedChildren(\n target,\n this.labelledbyId\n );\n if (ids.length) {\n this.conditionLabelledby = conditionAttributeWithId(\n this,\n 'aria-labelledby',\n ids\n );\n }\n }\n\n private describedbyId = `sp-dialog-description-${Dialog.instanceCount++}`;\n\n protected onContentSlotChange({\n target,\n }: Event & { target: HTMLSlotElement }): void {\n if (this.conditionDescribedby) {\n this.conditionDescribedby();\n delete this.conditionDescribedby;\n }\n const ids = gatherAppliedIdsFromSlottedChildren(\n target,\n this.describedbyId\n );\n if (ids.length && ids.length < 4) {\n this.conditionDescribedby = conditionAttributeWithId(\n this,\n 'aria-describedby',\n ids\n );\n } else if (!ids.length) {\n const idProvided = !!this.id;\n if (!idProvided) this.id = this.describedbyId;\n const conditionDescribedby = conditionAttributeWithId(\n this,\n 'aria-describedby',\n this.id\n );\n this.conditionDescribedby = () => {\n conditionDescribedby();\n if (!idProvided) {\n this.removeAttribute('id');\n }\n };\n }\n }\n\n public override connectedCallback(): void {\n super.connectedCallback();\n this.tabIndex = 0;\n window.addEventListener(\n 'resize',\n this.shouldManageTabOrderForScrolling\n );\n }\n\n public override disconnectedCallback(): void {\n window.removeEventListener(\n 'resize',\n this.shouldManageTabOrderForScrolling\n );\n super.disconnectedCallback();\n }\n}\n"],
5
+ "mappings": "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",
6
+ "names": []
7
+ }