@spectrum-web-components/dialog 0.10.6 → 0.10.9-devmode.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.
Files changed (48) hide show
  1. package/custom-elements.json +10 -2
  2. package/package.json +36 -20
  3. package/sp-dialog-wrapper.dev.js +3 -0
  4. package/sp-dialog-wrapper.dev.js.map +7 -0
  5. package/sp-dialog-wrapper.js +3 -14
  6. package/sp-dialog-wrapper.js.map +7 -1
  7. package/sp-dialog.dev.js +3 -0
  8. package/sp-dialog.dev.js.map +7 -0
  9. package/sp-dialog.js +3 -14
  10. package/sp-dialog.js.map +7 -1
  11. package/src/Dialog.d.ts +3 -4
  12. package/src/Dialog.dev.js +208 -0
  13. package/src/Dialog.dev.js.map +7 -0
  14. package/src/Dialog.js +172 -191
  15. package/src/Dialog.js.map +7 -1
  16. package/src/DialogWrapper.d.ts +1 -1
  17. package/src/DialogWrapper.dev.js +262 -0
  18. package/src/DialogWrapper.dev.js.map +7 -0
  19. package/src/DialogWrapper.js +205 -239
  20. package/src/DialogWrapper.js.map +7 -1
  21. package/src/dialog.css.dev.js +99 -0
  22. package/src/dialog.css.dev.js.map +7 -0
  23. package/src/dialog.css.js +3 -14
  24. package/src/dialog.css.js.map +7 -1
  25. package/src/index.dev.js +3 -0
  26. package/src/index.dev.js.map +7 -0
  27. package/src/index.js +3 -14
  28. package/src/index.js.map +7 -1
  29. package/src/spectrum-dialog.css.dev.js +97 -0
  30. package/src/spectrum-dialog.css.dev.js.map +7 -0
  31. package/src/spectrum-dialog.css.js +3 -14
  32. package/src/spectrum-dialog.css.js.map +7 -1
  33. package/stories/dialog-wrapper.stories.js +76 -87
  34. package/stories/dialog-wrapper.stories.js.map +7 -1
  35. package/stories/dialog.stories.js +20 -31
  36. package/stories/dialog.stories.js.map +7 -1
  37. package/stories/images.js +3 -14
  38. package/stories/images.js.map +7 -1
  39. package/test/benchmark/basic-test.js +5 -16
  40. package/test/benchmark/basic-test.js.map +7 -1
  41. package/test/dialog-wrapper.test-vrt.js +4 -15
  42. package/test/dialog-wrapper.test-vrt.js.map +7 -1
  43. package/test/dialog-wrapper.test.js +158 -152
  44. package/test/dialog-wrapper.test.js.map +7 -1
  45. package/test/dialog.test-vrt.js +4 -15
  46. package/test/dialog.test-vrt.js.map +7 -1
  47. package/test/dialog.test.js +46 -54
  48. package/test/dialog.test.js.map +7 -1
package/src/Dialog.js CHANGED
@@ -1,227 +1,208 @@
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 { __decorate } from "tslib";
13
- import { html, SpectrumElement, } from '@spectrum-web-components/base';
14
- import { property, query, } from '@spectrum-web-components/base/src/decorators.js';
15
- import { ifDefined } from '@spectrum-web-components/base/src/directives.js';
16
- import { conditionAttributeWithId } from '@spectrum-web-components/base/src/condition-attribute-with-id.js';
17
- import '@spectrum-web-components/divider/sp-divider.js';
18
- import '@spectrum-web-components/action-button/sp-action-button.js';
19
- import '@spectrum-web-components/button-group/sp-button-group.js';
20
- import crossStyles from '@spectrum-web-components/icon/src/spectrum-icon-cross.css.js';
21
- import '@spectrum-web-components/icons-ui/icons/sp-icon-cross500.js';
22
- import '@spectrum-web-components/icons-workflow/icons/sp-icon-alert.js';
23
- import { FocusVisiblePolyfillMixin, ObserveSlotPresence, } from '@spectrum-web-components/shared';
24
- import styles from './dialog.css.js';
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";
25
31
  function gatherAppliedIdsFromSlottedChildren(slot, idBase) {
26
- const assignedElements = slot.assignedElements();
27
- const ids = [];
28
- assignedElements.forEach((el, i) => {
29
- if (el.id) {
30
- ids.push(el.id);
31
- }
32
- else {
33
- const id = idBase + `-${i}`;
34
- el.id = id;
35
- ids.push(id);
36
- }
37
- });
38
- return ids;
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;
39
44
  }
40
- /**
41
- * @element sp-dialog
42
- *
43
- * @slot hero - Accepts a hero image to display at the top of the dialog
44
- * @slot heading - Acts as the heading of the dialog. This should be an actual heading tag `<h1-6 />`
45
- * @slot - Content not addressed to a specific slot will be interpreted as the main content of the dialog
46
- * @slot footer - Content addressed to the `footer` will be placed below the main content and to the side of any `[slot='button']` content
47
- * @slot button - Button elements addressed to this slot may be placed below the content when not delivered in a fullscreen mode
48
- * @fires close - Announces that the dialog has been closed.
49
- */
50
- export class Dialog extends FocusVisiblePolyfillMixin(ObserveSlotPresence(SpectrumElement, [
51
- '[slot="hero"]',
52
- '[slot="footer"]',
53
- '[slot="button"]',
45
+ const _Dialog = class extends FocusVisiblePolyfillMixin(ObserveSlotPresence(SpectrumElement, [
46
+ '[slot="hero"]',
47
+ '[slot="footer"]',
48
+ '[slot="button"]'
54
49
  ])) {
55
- constructor() {
56
- super(...arguments);
57
- this.error = false;
58
- this.dismissable = false;
59
- this.noDivider = false;
60
- this.shouldManageTabOrderForScrolling = () => {
61
- const { offsetHeight, scrollHeight } = this.contentElement;
62
- if (offsetHeight < scrollHeight) {
63
- this.contentElement.tabIndex = 0;
64
- }
65
- else {
66
- this.contentElement.removeAttribute('tabindex');
67
- }
68
- };
69
- this.labelledbyId = `sp-dialog-label-${Dialog.instanceCount++}`;
70
- this.describedbyId = `sp-dialog-description-${Dialog.instanceCount++}`;
71
- }
72
- static get styles() {
73
- return [styles, crossStyles];
74
- }
75
- get hasFooter() {
76
- return this.getSlotContentPresence('[slot="footer"]');
77
- }
78
- get hasButtons() {
79
- return this.getSlotContentPresence('[slot="button"]');
80
- }
81
- get hasHero() {
82
- return this.getSlotContentPresence('[slot="hero"]');
83
- }
84
- close() {
85
- this.dispatchEvent(new Event('close', {
86
- bubbles: true,
87
- composed: true,
88
- cancelable: true,
89
- }));
90
- }
91
- render() {
92
- return html `
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`
93
87
  <div class="grid">
94
88
  <slot name="hero"></slot>
95
89
  <slot
96
90
  name="heading"
97
- class=${ifDefined(this.hasHero ? this.hasHero : undefined)}
91
+ class=${ifDefined(this.hasHero ? this.hasHero : void 0)}
98
92
  @slotchange=${this.onHeadingSlotchange}
99
93
  ></slot>
100
- ${this.error
101
- ? html `
94
+ ${this.error ? html`
102
95
  <sp-icon-alert class="type-icon"></sp-icon-alert>
103
- `
104
- : html ``}
105
- ${this.noDivider
106
- ? html ``
107
- : html `
96
+ ` : html``}
97
+ ${this.noDivider ? html`` : html`
108
98
  <sp-divider size="m" class="divider"></sp-divider>
109
99
  `}
110
100
  <div class="content">
111
101
  <slot @slotchange=${this.onContentSlotChange}></slot>
112
102
  </div>
113
- ${this.hasFooter
114
- ? html `
103
+ ${this.hasFooter ? html`
115
104
  <div class="footer">
116
105
  <slot name="footer"></slot>
117
106
  </div>
118
- `
119
- : html ``}
120
- ${this.hasButtons
121
- ? html `
107
+ ` : html``}
108
+ ${this.hasButtons ? html`
122
109
  <sp-button-group
123
- class="button-group ${this.hasFooter
124
- ? ''
125
- : 'button-group--noFooter'}"
110
+ class="button-group ${this.hasFooter ? "" : "button-group--noFooter"}"
126
111
  >
127
112
  <slot name="button"></slot>
128
113
  </sp-button-group>
129
- `
130
- : html ``}
131
- ${this.dismissable
132
- ? html `
133
- <sp-action-button
114
+ ` : html``}
115
+ ${this.dismissable ? html`
116
+ <sp-close-button
134
117
  class="close-button"
135
118
  label="Close"
136
119
  quiet
137
120
  size="m"
138
121
  @click=${this.close}
139
- >
140
- <sp-icon-cross500
141
- class="spectrum-UIIcon-Cross500"
142
- slot="icon"
143
- ></sp-icon-cross500>
144
- </sp-action-button>
145
- `
146
- : html ``}
122
+ ></sp-close-button>
123
+ ` : html``}
147
124
  </div>
148
125
  `;
126
+ }
127
+ shouldUpdate(changes) {
128
+ if (changes.has("mode") && !!this.mode) {
129
+ this.dismissable = false;
149
130
  }
150
- shouldUpdate(changes) {
151
- if (changes.has('mode') && !!this.mode) {
152
- this.dismissable = false;
153
- }
154
- if (changes.has('dismissable') && this.dismissable) {
155
- this.dismissable = !this.mode;
156
- }
157
- return super.shouldUpdate(changes);
158
- }
159
- firstUpdated(changes) {
160
- super.firstUpdated(changes);
161
- this.setAttribute('role', 'dialog');
131
+ if (changes.has("dismissable") && this.dismissable) {
132
+ this.dismissable = !this.mode;
162
133
  }
163
- onHeadingSlotchange({ target, }) {
164
- if (this.conditionLabelledby) {
165
- this.conditionLabelledby();
166
- delete this.conditionLabelledby;
167
- }
168
- const ids = gatherAppliedIdsFromSlottedChildren(target, this.labelledbyId);
169
- if (ids.length) {
170
- this.conditionLabelledby = conditionAttributeWithId(this, 'aria-labelledby', ids);
171
- }
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;
172
146
  }
173
- onContentSlotChange({ target, }) {
174
- if (this.conditionDescribedby) {
175
- this.conditionDescribedby();
176
- delete this.conditionDescribedby;
177
- }
178
- const ids = gatherAppliedIdsFromSlottedChildren(target, this.describedbyId);
179
- if (ids.length && ids.length < 4) {
180
- this.conditionDescribedby = conditionAttributeWithId(this, 'aria-describedby', ids);
181
- }
182
- else if (!ids.length) {
183
- const idProvided = !!this.id;
184
- if (!idProvided)
185
- this.id = this.describedbyId;
186
- const conditionDescribedby = conditionAttributeWithId(this, 'aria-describedby', this.id);
187
- this.conditionDescribedby = () => {
188
- conditionDescribedby();
189
- if (!idProvided) {
190
- this.removeAttribute('id');
191
- }
192
- };
193
- }
147
+ const ids = gatherAppliedIdsFromSlottedChildren(target, this.labelledbyId);
148
+ if (ids.length) {
149
+ this.conditionLabelledby = conditionAttributeWithId(this, "aria-labelledby", ids);
194
150
  }
195
- connectedCallback() {
196
- super.connectedCallback();
197
- this.tabIndex = 0;
198
- window.addEventListener('resize', this.shouldManageTabOrderForScrolling);
151
+ }
152
+ onContentSlotChange({
153
+ target
154
+ }) {
155
+ if (this.conditionDescribedby) {
156
+ this.conditionDescribedby();
157
+ delete this.conditionDescribedby;
199
158
  }
200
- disconnectedCallback() {
201
- window.removeEventListener('resize', this.shouldManageTabOrderForScrolling);
202
- super.disconnectedCallback();
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
+ };
203
173
  }
204
- }
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;
205
186
  Dialog.instanceCount = 0;
206
- __decorate([
207
- query('.close-button')
208
- ], Dialog.prototype, "closeButton", void 0);
209
- __decorate([
210
- query('.content')
211
- ], Dialog.prototype, "contentElement", void 0);
212
- __decorate([
213
- property({ type: Boolean, reflect: true })
214
- ], Dialog.prototype, "error", void 0);
215
- __decorate([
216
- property({ type: Boolean, reflect: true })
217
- ], Dialog.prototype, "dismissable", void 0);
218
- __decorate([
219
- property({ type: Boolean, reflect: true, attribute: 'no-divider' })
220
- ], Dialog.prototype, "noDivider", void 0);
221
- __decorate([
222
- property({ type: String, reflect: true })
223
- ], Dialog.prototype, "mode", void 0);
224
- __decorate([
225
- property({ type: String, reflect: true })
226
- ], Dialog.prototype, "size", void 0);
227
- //# sourceMappingURL=Dialog.js.map
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.js.map
package/src/Dialog.js.map CHANGED
@@ -1 +1,7 @@
1
- {"version":3,"file":"Dialog.js","sourceRoot":"","sources":["Dialog.ts"],"names":[],"mappings":"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","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/action-button/sp-action-button.js';\nimport '@spectrum-web-components/button-group/sp-button-group.js';\nimport crossStyles from '@spectrum-web-components/icon/src/spectrum-icon-cross.css.js';\nimport '@spectrum-web-components/icons-ui/icons/sp-icon-cross500.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 { ActionButton } from '@spectrum-web-components/action-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, crossStyles];\n }\n\n @query('.close-button')\n closeButton?: ActionButton;\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-action-button\n class=\"close-button\"\n label=\"Close\"\n quiet\n size=\"m\"\n @click=${this.close}\n >\n <sp-icon-cross500\n class=\"spectrum-UIIcon-Cross500\"\n slot=\"icon\"\n ></sp-icon-cross500>\n </sp-action-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"]}
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
+ }
@@ -41,7 +41,7 @@ export declare class DialogWrapper extends DialogWrapper_base {
41
41
  protected handleClose(event: Event): void;
42
42
  close(): void;
43
43
  private dispatchClosed;
44
- protected handleUnderlayTransitionend(): void;
44
+ protected handleUnderlayTransitionend(event: TransitionEvent): void;
45
45
  protected handleModalTransitionend(): void;
46
46
  protected update(changes: PropertyValues<this>): void;
47
47
  protected render(): TemplateResult;