@spectrum-web-components/toast 0.10.5 → 0.10.6
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/sp-toast.d.ts +6 -0
- package/sp-toast.js +14 -0
- package/sp-toast.js.map +1 -0
- package/src/Toast.d.ts +44 -0
- package/src/Toast.js +209 -0
- package/src/Toast.js.map +1 -0
- package/src/index.d.ts +1 -0
- package/src/index.js +13 -0
- package/src/index.js.map +1 -0
- package/src/spectrum-toast.css.d.ts +2 -0
- package/src/spectrum-toast.css.js +101 -0
- package/src/spectrum-toast.css.js.map +1 -0
- package/src/toast.css.d.ts +2 -0
- package/src/toast.css.js +101 -0
- package/src/toast.css.js.map +1 -0
- package/stories/toast.stories.js +64 -0
- package/stories/toast.stories.js.map +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spectrum-web-components/toast",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.6",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"lit-html"
|
|
45
45
|
],
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@spectrum-web-components/base": "^0.5.
|
|
48
|
-
"@spectrum-web-components/button": "^0.17.
|
|
49
|
-
"@spectrum-web-components/icon": "^0.11.
|
|
50
|
-
"@spectrum-web-components/icons-workflow": "^0.8.
|
|
47
|
+
"@spectrum-web-components/base": "^0.5.4",
|
|
48
|
+
"@spectrum-web-components/button": "^0.17.1",
|
|
49
|
+
"@spectrum-web-components/icon": "^0.11.5",
|
|
50
|
+
"@spectrum-web-components/icons-workflow": "^0.8.5",
|
|
51
51
|
"tslib": "^2.0.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"sideEffects": [
|
|
59
59
|
"./sp-*.js"
|
|
60
60
|
],
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "caf12727e7f91dcf961e1fadacc727eea9ece27b"
|
|
62
62
|
}
|
package/sp-toast.d.ts
ADDED
package/sp-toast.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
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 { Toast } from './src/Toast.js';
|
|
13
|
+
customElements.define('sp-toast', Toast);
|
|
14
|
+
//# sourceMappingURL=sp-toast.js.map
|
package/sp-toast.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sp-toast.js","sourceRoot":"","sources":["sp-toast.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AACF,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAEvC,cAAc,CAAC,MAAM,CAAC,UAAU,EAAE,KAAK,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 { Toast } from './src/Toast.js';\n\ncustomElements.define('sp-toast', Toast);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-toast': Toast;\n }\n}\n"]}
|
package/src/Toast.d.ts
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { CSSResultArray, PropertyValues, SpectrumElement, TemplateResult } from '@spectrum-web-components/base';
|
|
2
|
+
import '@spectrum-web-components/button/sp-close-button.js';
|
|
3
|
+
import '@spectrum-web-components/icons-workflow/icons/sp-icon-alert.js';
|
|
4
|
+
import '@spectrum-web-components/icons-workflow/icons/sp-icon-info.js';
|
|
5
|
+
import '@spectrum-web-components/icons-workflow/icons/sp-icon-checkmark-circle.js';
|
|
6
|
+
export declare const toastVariants: ToastVariants[];
|
|
7
|
+
export declare type ToastVariants = 'negative' | 'positive' | 'info' | 'error' | 'warning' | '';
|
|
8
|
+
/**
|
|
9
|
+
* @element sp-toast
|
|
10
|
+
*
|
|
11
|
+
* @slot - The toast content
|
|
12
|
+
* @slot action - button element surfacing an action in the Toast
|
|
13
|
+
*
|
|
14
|
+
* @fires close - Announces that the Toast has been closed by the user or by its timeout.
|
|
15
|
+
*/
|
|
16
|
+
export declare class Toast extends SpectrumElement {
|
|
17
|
+
static get styles(): CSSResultArray;
|
|
18
|
+
open: boolean;
|
|
19
|
+
set timeout(timeout: number | null);
|
|
20
|
+
get timeout(): number | null;
|
|
21
|
+
_timeout: number | null;
|
|
22
|
+
/**
|
|
23
|
+
* The variant applies specific styling when set to `negative`, `positive`, `info`, `error`, or `warning`.
|
|
24
|
+
* `variant` attribute is removed when not matching one of the above.
|
|
25
|
+
*
|
|
26
|
+
* @param {String} variant
|
|
27
|
+
*/
|
|
28
|
+
set variant(variant: ToastVariants);
|
|
29
|
+
get variant(): ToastVariants;
|
|
30
|
+
private _variant;
|
|
31
|
+
private renderIcon;
|
|
32
|
+
private countdownStart;
|
|
33
|
+
private nextCount;
|
|
34
|
+
private doCountdown;
|
|
35
|
+
private countdown;
|
|
36
|
+
private holdCountdown;
|
|
37
|
+
private resumeCountdown;
|
|
38
|
+
private startCountdown;
|
|
39
|
+
private stopCountdown;
|
|
40
|
+
private shouldClose;
|
|
41
|
+
close(): void;
|
|
42
|
+
protected render(): TemplateResult;
|
|
43
|
+
protected updated(changes: PropertyValues): void;
|
|
44
|
+
}
|
package/src/Toast.js
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
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 } from '@spectrum-web-components/base/src/decorators.js';
|
|
15
|
+
import '@spectrum-web-components/button/sp-close-button.js';
|
|
16
|
+
import '@spectrum-web-components/icons-workflow/icons/sp-icon-alert.js';
|
|
17
|
+
import '@spectrum-web-components/icons-workflow/icons/sp-icon-info.js';
|
|
18
|
+
import '@spectrum-web-components/icons-workflow/icons/sp-icon-checkmark-circle.js';
|
|
19
|
+
import toastStyles from './toast.css.js';
|
|
20
|
+
export const toastVariants = [
|
|
21
|
+
'negative',
|
|
22
|
+
'positive',
|
|
23
|
+
'info',
|
|
24
|
+
'error',
|
|
25
|
+
'warning',
|
|
26
|
+
];
|
|
27
|
+
/**
|
|
28
|
+
* @element sp-toast
|
|
29
|
+
*
|
|
30
|
+
* @slot - The toast content
|
|
31
|
+
* @slot action - button element surfacing an action in the Toast
|
|
32
|
+
*
|
|
33
|
+
* @fires close - Announces that the Toast has been closed by the user or by its timeout.
|
|
34
|
+
*/
|
|
35
|
+
export class Toast extends SpectrumElement {
|
|
36
|
+
constructor() {
|
|
37
|
+
super(...arguments);
|
|
38
|
+
this.open = false;
|
|
39
|
+
this._timeout = null;
|
|
40
|
+
this._variant = '';
|
|
41
|
+
this.countdownStart = 0;
|
|
42
|
+
this.nextCount = -1;
|
|
43
|
+
this.doCountdown = (time) => {
|
|
44
|
+
if (!this.countdownStart) {
|
|
45
|
+
this.countdownStart = performance.now();
|
|
46
|
+
}
|
|
47
|
+
if (time - this.countdownStart > this._timeout) {
|
|
48
|
+
this.shouldClose();
|
|
49
|
+
this.countdownStart = 0;
|
|
50
|
+
}
|
|
51
|
+
else {
|
|
52
|
+
this.countdown();
|
|
53
|
+
}
|
|
54
|
+
};
|
|
55
|
+
this.countdown = () => {
|
|
56
|
+
cancelAnimationFrame(this.nextCount);
|
|
57
|
+
this.nextCount = requestAnimationFrame(this.doCountdown);
|
|
58
|
+
};
|
|
59
|
+
this.holdCountdown = () => {
|
|
60
|
+
this.stopCountdown();
|
|
61
|
+
this.addEventListener('focusout', this.resumeCountdown);
|
|
62
|
+
};
|
|
63
|
+
this.resumeCountdown = () => {
|
|
64
|
+
this.removeEventListener('focusout', this.holdCountdown);
|
|
65
|
+
this.countdown();
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
static get styles() {
|
|
69
|
+
return [toastStyles];
|
|
70
|
+
}
|
|
71
|
+
set timeout(timeout) {
|
|
72
|
+
const hasTimeout = typeof timeout !== null && timeout > 0;
|
|
73
|
+
const newTimeout = hasTimeout
|
|
74
|
+
? Math.max(6000, timeout)
|
|
75
|
+
: null;
|
|
76
|
+
const oldValue = this.timeout;
|
|
77
|
+
if (newTimeout && this.countdownStart) {
|
|
78
|
+
this.countdownStart = performance.now();
|
|
79
|
+
}
|
|
80
|
+
this._timeout = newTimeout;
|
|
81
|
+
this.requestUpdate('timeout', oldValue);
|
|
82
|
+
}
|
|
83
|
+
get timeout() {
|
|
84
|
+
return this._timeout;
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* The variant applies specific styling when set to `negative`, `positive`, `info`, `error`, or `warning`.
|
|
88
|
+
* `variant` attribute is removed when not matching one of the above.
|
|
89
|
+
*
|
|
90
|
+
* @param {String} variant
|
|
91
|
+
*/
|
|
92
|
+
set variant(variant) {
|
|
93
|
+
if (variant === this.variant) {
|
|
94
|
+
return;
|
|
95
|
+
}
|
|
96
|
+
const oldValue = this.variant;
|
|
97
|
+
if (toastVariants.includes(variant)) {
|
|
98
|
+
this.setAttribute('variant', variant);
|
|
99
|
+
this._variant = variant;
|
|
100
|
+
}
|
|
101
|
+
else {
|
|
102
|
+
this.removeAttribute('variant');
|
|
103
|
+
this._variant = '';
|
|
104
|
+
}
|
|
105
|
+
this.requestUpdate('variant', oldValue);
|
|
106
|
+
}
|
|
107
|
+
get variant() {
|
|
108
|
+
return this._variant;
|
|
109
|
+
}
|
|
110
|
+
renderIcon(variant) {
|
|
111
|
+
switch (variant) {
|
|
112
|
+
case 'info':
|
|
113
|
+
return html `
|
|
114
|
+
<sp-icon-info
|
|
115
|
+
label="Information"
|
|
116
|
+
class="type"
|
|
117
|
+
></sp-icon-info>
|
|
118
|
+
`;
|
|
119
|
+
case 'negative':
|
|
120
|
+
case 'error': // deprecated
|
|
121
|
+
case 'warning': // deprecated
|
|
122
|
+
return html `
|
|
123
|
+
<sp-icon-alert label="Error" class="type"></sp-icon-alert>
|
|
124
|
+
`;
|
|
125
|
+
case 'positive':
|
|
126
|
+
case 'success': // deprecated
|
|
127
|
+
return html `
|
|
128
|
+
<sp-icon-checkmark-circle
|
|
129
|
+
label="Success"
|
|
130
|
+
class="type"
|
|
131
|
+
></sp-icon-checkmark-circle>
|
|
132
|
+
`;
|
|
133
|
+
default:
|
|
134
|
+
return html ``;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
startCountdown() {
|
|
138
|
+
this.countdown();
|
|
139
|
+
this.addEventListener('focusin', this.holdCountdown);
|
|
140
|
+
}
|
|
141
|
+
stopCountdown() {
|
|
142
|
+
cancelAnimationFrame(this.nextCount);
|
|
143
|
+
this.countdownStart = 0;
|
|
144
|
+
}
|
|
145
|
+
shouldClose() {
|
|
146
|
+
const applyDefault = this.dispatchEvent(new CustomEvent('close', {
|
|
147
|
+
composed: true,
|
|
148
|
+
bubbles: true,
|
|
149
|
+
cancelable: true,
|
|
150
|
+
}));
|
|
151
|
+
if (applyDefault) {
|
|
152
|
+
this.close();
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
close() {
|
|
156
|
+
this.open = false;
|
|
157
|
+
}
|
|
158
|
+
render() {
|
|
159
|
+
return html `
|
|
160
|
+
${this.renderIcon(this.variant)}
|
|
161
|
+
<div class="body" role="alert">
|
|
162
|
+
<div class="content">
|
|
163
|
+
<slot></slot>
|
|
164
|
+
</div>
|
|
165
|
+
<slot name="action"></slot>
|
|
166
|
+
</div>
|
|
167
|
+
<div class="buttons">
|
|
168
|
+
<sp-close-button
|
|
169
|
+
@click=${this.shouldClose}
|
|
170
|
+
label="Close"
|
|
171
|
+
variant="white"
|
|
172
|
+
></sp-close-button>
|
|
173
|
+
</div>
|
|
174
|
+
`;
|
|
175
|
+
}
|
|
176
|
+
updated(changes) {
|
|
177
|
+
super.updated(changes);
|
|
178
|
+
if (changes.has('open')) {
|
|
179
|
+
if (this.open) {
|
|
180
|
+
if (this.timeout) {
|
|
181
|
+
this.startCountdown();
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
else {
|
|
185
|
+
if (this.timeout) {
|
|
186
|
+
this.stopCountdown();
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
if (changes.has('timeout')) {
|
|
191
|
+
if (this.timeout !== null && this.open) {
|
|
192
|
+
this.startCountdown();
|
|
193
|
+
}
|
|
194
|
+
else {
|
|
195
|
+
this.stopCountdown();
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
__decorate([
|
|
201
|
+
property({ type: Boolean, reflect: true })
|
|
202
|
+
], Toast.prototype, "open", void 0);
|
|
203
|
+
__decorate([
|
|
204
|
+
property({ type: Number })
|
|
205
|
+
], Toast.prototype, "timeout", null);
|
|
206
|
+
__decorate([
|
|
207
|
+
property({ type: String })
|
|
208
|
+
], Toast.prototype, "variant", null);
|
|
209
|
+
//# sourceMappingURL=Toast.js.map
|
package/src/Toast.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Toast.js","sourceRoot":"","sources":["Toast.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 { property } from '@spectrum-web-components/base/src/decorators.js';\nimport '@spectrum-web-components/button/sp-close-button.js';\nimport '@spectrum-web-components/icons-workflow/icons/sp-icon-alert.js';\nimport '@spectrum-web-components/icons-workflow/icons/sp-icon-info.js';\nimport '@spectrum-web-components/icons-workflow/icons/sp-icon-checkmark-circle.js';\n\nimport toastStyles from './toast.css.js';\n\nexport const toastVariants: ToastVariants[] = [\n 'negative',\n 'positive',\n 'info',\n 'error',\n 'warning',\n];\n\nexport type ToastVariants =\n | 'negative'\n | 'positive'\n | 'info'\n | 'error'\n | 'warning'\n | '';\n\n/**\n * @element sp-toast\n *\n * @slot - The toast content\n * @slot action - button element surfacing an action in the Toast\n *\n * @fires close - Announces that the Toast has been closed by the user or by its timeout.\n */\n\nexport class Toast extends SpectrumElement {\n public static get styles(): CSSResultArray {\n return [toastStyles];\n }\n\n @property({ type: Boolean, reflect: true })\n public open = false;\n\n @property({ type: Number })\n public set timeout(timeout: number | null) {\n const hasTimeout = typeof timeout !== null && (timeout as number) > 0;\n const newTimeout = hasTimeout\n ? Math.max(6000, timeout as number)\n : null;\n const oldValue = this.timeout;\n if (newTimeout && this.countdownStart) {\n this.countdownStart = performance.now();\n }\n this._timeout = newTimeout;\n this.requestUpdate('timeout', oldValue);\n }\n\n public get timeout(): number | null {\n return this._timeout;\n }\n\n public _timeout: number | null = null;\n\n /**\n * The variant applies specific styling when set to `negative`, `positive`, `info`, `error`, or `warning`.\n * `variant` attribute is removed when not matching one of the above.\n *\n * @param {String} variant\n */\n @property({ type: String })\n public set variant(variant: ToastVariants) {\n if (variant === this.variant) {\n return;\n }\n const oldValue = this.variant;\n if (toastVariants.includes(variant)) {\n this.setAttribute('variant', variant);\n this._variant = variant;\n } else {\n this.removeAttribute('variant');\n this._variant = '';\n }\n this.requestUpdate('variant', oldValue);\n }\n\n public get variant(): ToastVariants {\n return this._variant;\n }\n\n private _variant: ToastVariants = '';\n\n private renderIcon(variant: string): TemplateResult {\n switch (variant) {\n case 'info':\n return html`\n <sp-icon-info\n label=\"Information\"\n class=\"type\"\n ></sp-icon-info>\n `;\n case 'negative':\n case 'error': // deprecated\n case 'warning': // deprecated\n return html`\n <sp-icon-alert label=\"Error\" class=\"type\"></sp-icon-alert>\n `;\n case 'positive':\n case 'success': // deprecated\n return html`\n <sp-icon-checkmark-circle\n label=\"Success\"\n class=\"type\"\n ></sp-icon-checkmark-circle>\n `;\n default:\n return html``;\n }\n }\n\n private countdownStart = 0;\n private nextCount = -1;\n\n private doCountdown = (time: number): void => {\n if (!this.countdownStart) {\n this.countdownStart = performance.now();\n }\n if (time - this.countdownStart > (this._timeout as number)) {\n this.shouldClose();\n this.countdownStart = 0;\n } else {\n this.countdown();\n }\n };\n\n private countdown = (): void => {\n cancelAnimationFrame(this.nextCount);\n this.nextCount = requestAnimationFrame(this.doCountdown);\n };\n\n private holdCountdown = (): void => {\n this.stopCountdown();\n this.addEventListener('focusout', this.resumeCountdown);\n };\n\n private resumeCountdown = (): void => {\n this.removeEventListener('focusout', this.holdCountdown);\n this.countdown();\n };\n\n private startCountdown(): void {\n this.countdown();\n this.addEventListener('focusin', this.holdCountdown);\n }\n\n private stopCountdown(): void {\n cancelAnimationFrame(this.nextCount);\n this.countdownStart = 0;\n }\n\n private shouldClose(): void {\n const applyDefault = this.dispatchEvent(\n new CustomEvent('close', {\n composed: true,\n bubbles: true,\n cancelable: true,\n })\n );\n if (applyDefault) {\n this.close();\n }\n }\n\n public close(): void {\n this.open = false;\n }\n\n protected render(): TemplateResult {\n return html`\n ${this.renderIcon(this.variant)}\n <div class=\"body\" role=\"alert\">\n <div class=\"content\">\n <slot></slot>\n </div>\n <slot name=\"action\"></slot>\n </div>\n <div class=\"buttons\">\n <sp-close-button\n @click=${this.shouldClose}\n label=\"Close\"\n variant=\"white\"\n ></sp-close-button>\n </div>\n `;\n }\n\n protected updated(changes: PropertyValues): void {\n super.updated(changes);\n if (changes.has('open')) {\n if (this.open) {\n if (this.timeout) {\n this.startCountdown();\n }\n } else {\n if (this.timeout) {\n this.stopCountdown();\n }\n }\n }\n if (changes.has('timeout')) {\n if (this.timeout !== null && this.open) {\n this.startCountdown();\n } else {\n this.stopCountdown();\n }\n }\n }\n}\n"]}
|
package/src/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Toast.js';
|
package/src/index.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
export * from './Toast.js';
|
|
13
|
+
//# sourceMappingURL=index.js.map
|
package/src/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AACF,cAAc,YAAY,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*/\nexport * from './Toast.js';\n"]}
|
|
@@ -0,0 +1,101 @@
|
|
|
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 { css } from '@spectrum-web-components/base';
|
|
13
|
+
const styles = css `
|
|
14
|
+
:host{--spectrum-toast-icon-padding-y:var(
|
|
15
|
+
--spectrum-global-dimension-size-85
|
|
16
|
+
);--spectrum-toast-neutral-content-padding-top:var(
|
|
17
|
+
--spectrum-global-dimension-size-65
|
|
18
|
+
);--spectrum-toast-content-padding-bottom:var(
|
|
19
|
+
--spectrum-global-dimension-size-65
|
|
20
|
+
);--spectrum-toast-button-margin-right:var(
|
|
21
|
+
--spectrum-global-dimension-size-130
|
|
22
|
+
)}:host([dir=ltr]){padding-right:var(
|
|
23
|
+
--spectrum-toast-neutral-padding-right,var(--spectrum-global-dimension-size-100)
|
|
24
|
+
)}:host([dir=rtl]){padding-left:var(
|
|
25
|
+
--spectrum-toast-neutral-padding-right,var(--spectrum-global-dimension-size-100)
|
|
26
|
+
)}:host([dir=ltr]){padding-left:var(
|
|
27
|
+
--spectrum-toast-neutral-padding-left,var(--spectrum-global-dimension-size-200)
|
|
28
|
+
)}:host([dir=rtl]){padding-right:var(
|
|
29
|
+
--spectrum-toast-neutral-padding-left,var(--spectrum-global-dimension-size-200)
|
|
30
|
+
)}:host{-webkit-font-smoothing:antialiased;align-items:stretch;border-radius:var(
|
|
31
|
+
--spectrum-toast-neutral-border-radius,var(--spectrum-alias-border-radius-regular)
|
|
32
|
+
);box-sizing:border-box;display:inline-flex;flex-direction:row;font-size:var(
|
|
33
|
+
--spectrum-toast-neutral-text-size,var(--spectrum-global-dimension-font-size-100)
|
|
34
|
+
);font-weight:var(
|
|
35
|
+
--spectrum-toast-neutral-text-font-weight,var(--spectrum-alias-body-text-font-weight)
|
|
36
|
+
);padding-bottom:var(
|
|
37
|
+
--spectrum-toast-neutral-padding-y,var(--spectrum-global-dimension-size-100)
|
|
38
|
+
);padding-top:var(
|
|
39
|
+
--spectrum-toast-neutral-padding-y,var(--spectrum-global-dimension-size-100)
|
|
40
|
+
)}:host([dir=ltr]) .type{margin-right:var(
|
|
41
|
+
--spectrum-toast-neutral-icon-padding-right,var(--spectrum-global-dimension-size-150)
|
|
42
|
+
)}:host([dir=rtl]) .type{margin-left:var(
|
|
43
|
+
--spectrum-toast-neutral-icon-padding-right,var(--spectrum-global-dimension-size-150)
|
|
44
|
+
)}:host([dir=ltr]) .type{margin-left:0}:host([dir=rtl]) .type{margin-right:0}.type{flex-grow:0;flex-shrink:0;margin-bottom:var(--spectrum-toast-icon-padding-y);margin-top:var(--spectrum-toast-icon-padding-y)}:host([dir=ltr]) .content{padding-right:var(
|
|
45
|
+
--spectrum-toast-neutral-content-padding-right,var(--spectrum-global-dimension-size-200)
|
|
46
|
+
)}:host([dir=rtl]) .content{padding-left:var(
|
|
47
|
+
--spectrum-toast-neutral-content-padding-right,var(--spectrum-global-dimension-size-200)
|
|
48
|
+
)}:host([dir=ltr]) .content{padding-left:0}:host([dir=rtl]) .content{padding-right:0}:host([dir=ltr]) .content{text-align:left}:host([dir=rtl]) .content{text-align:right}.content{box-sizing:border-box;display:inline-block;flex:1 1 auto;font-size:var(
|
|
49
|
+
--spectrum-toast-info-text-size,var(--spectrum-global-dimension-font-size-100)
|
|
50
|
+
);font-weight:var(
|
|
51
|
+
--spectrum-toast-info-text-font-weight,var(--spectrum-alias-body-text-font-weight)
|
|
52
|
+
);line-height:var(
|
|
53
|
+
--spectrum-toast-info-text-line-height,var(--spectrum-alias-component-text-line-height)
|
|
54
|
+
);padding-bottom:var(--spectrum-toast-content-padding-bottom);padding-top:var(
|
|
55
|
+
--spectrum-toast-neutral-content-padding-top,var(--spectrum-global-dimension-size-65)
|
|
56
|
+
)}.buttons{align-items:flex-start;display:flex;flex:0 0 auto}:host([dir=ltr]) .buttons .spectrum-ClearButton+.spectrum-ClearButton,:host([dir=ltr]) .buttons .spectrum-ClearButton+::slotted([slot=action]),:host([dir=ltr]) .buttons slot[name=action]+.spectrum-ClearButton,:host([dir=ltr]) .buttons slot[name=action]+::slotted([slot=action]){margin-left:var(
|
|
57
|
+
--spectrum-toast-neutral-button-gap-x,var(--spectrum-global-dimension-size-100)
|
|
58
|
+
)}:host([dir=rtl]) .buttons .spectrum-ClearButton+.spectrum-ClearButton,:host([dir=rtl]) .buttons .spectrum-ClearButton+::slotted([slot=action]),:host([dir=rtl]) .buttons slot[name=action]+.spectrum-ClearButton,:host([dir=rtl]) .buttons slot[name=action]+::slotted([slot=action]){margin-right:var(
|
|
59
|
+
--spectrum-toast-neutral-button-gap-x,var(--spectrum-global-dimension-size-100)
|
|
60
|
+
)}.body{align-self:center;flex:1 1 auto}:host([dir=ltr]) .body ::slotted([slot=action]){float:right}:host([dir=rtl]) .body ::slotted([slot=action]){float:left}:host([dir=ltr]) .body ::slotted([slot=action]){margin-right:var(
|
|
61
|
+
--spectrum-toast-button-margin-right
|
|
62
|
+
)}:host([dir=rtl]) .body ::slotted([slot=action]){margin-left:var(
|
|
63
|
+
--spectrum-toast-button-margin-right
|
|
64
|
+
)}:host([dir=ltr]) .body+.buttons{padding-left:var(
|
|
65
|
+
--spectrum-toast-neutral-padding-right,var(--spectrum-global-dimension-size-100)
|
|
66
|
+
)}:host([dir=rtl]) .body+.buttons{padding-right:var(
|
|
67
|
+
--spectrum-toast-neutral-padding-right,var(--spectrum-global-dimension-size-100)
|
|
68
|
+
)}:host([dir=ltr]) .body+.buttons{border-left-width:1px}:host([dir=rtl]) .body+.buttons{border-right-width:1px}:host([dir=ltr]) .body+.buttons{border-left-style:solid}:host([dir=rtl]) .body+.buttons{border-right-style:solid}:host{background-color:var(
|
|
69
|
+
--spectrum-toast-neutral-background-color,var(--spectrum-semantic-neutral-background-color-default)
|
|
70
|
+
);color:var(
|
|
71
|
+
--spectrum-toast-neutral-background-color,var(--spectrum-semantic-neutral-background-color-default)
|
|
72
|
+
)}.content{color:var(
|
|
73
|
+
--spectrum-toast-neutral-text-color,var(--spectrum-global-color-static-white)
|
|
74
|
+
)}.type{color:#fff}:host([dir=ltr]) .buttons{border-left-color:hsla(0,0%,100%,.2)}:host([dir=rtl]) .buttons{border-right-color:hsla(0,0%,100%,.2)}:host([variant=error]),:host([variant=negative]){background-color:var(
|
|
75
|
+
--spectrum-toast-negative-background-color,var(--spectrum-semantic-negative-background-color)
|
|
76
|
+
);color:var(
|
|
77
|
+
--spectrum-toast-negative-background-color,var(--spectrum-semantic-negative-background-color)
|
|
78
|
+
)}:host([variant=error]) .closeButton.focus-visible:not(:active),:host([variant=negative]) .closeButton.focus-visible:not(:active){color:var(
|
|
79
|
+
--spectrum-toast-negative-background-color,var(--spectrum-semantic-negative-background-color)
|
|
80
|
+
)}:host([variant=error]) .closeButton:focus-visible:not(:active),:host([variant=negative]) .closeButton:focus-visible:not(:active){color:var(
|
|
81
|
+
--spectrum-toast-negative-background-color,var(--spectrum-semantic-negative-background-color)
|
|
82
|
+
)}:host([variant=info]){background-color:var(
|
|
83
|
+
--spectrum-toast-info-background-color,var(--spectrum-semantic-informative-background-color)
|
|
84
|
+
);color:var(
|
|
85
|
+
--spectrum-toast-info-background-color,var(--spectrum-semantic-informative-background-color)
|
|
86
|
+
)}:host([variant=info]) .closeButton.focus-visible:not(:active){color:var(
|
|
87
|
+
--spectrum-toast-info-background-color,var(--spectrum-semantic-informative-background-color)
|
|
88
|
+
)}:host([variant=info]) .closeButton:focus-visible:not(:active){color:var(
|
|
89
|
+
--spectrum-toast-info-background-color,var(--spectrum-semantic-informative-background-color)
|
|
90
|
+
)}:host([variant=positive]),:host([variant=success]){background-color:var(
|
|
91
|
+
--spectrum-toast-positive-background-color,var(--spectrum-semantic-positive-background-color)
|
|
92
|
+
);color:var(
|
|
93
|
+
--spectrum-toast-positive-background-color,var(--spectrum-semantic-positive-background-color)
|
|
94
|
+
)}:host([variant=positive]) .closeButton.focus-visible:not(:active),:host([variant=success]) .closeButton.focus-visible:not(:active){color:var(
|
|
95
|
+
--spectrum-toast-positive-background-color,var(--spectrum-semantic-positive-background-color)
|
|
96
|
+
)}:host([variant=positive]) .closeButton:focus-visible:not(:active),:host([variant=success]) .closeButton:focus-visible:not(:active){color:var(
|
|
97
|
+
--spectrum-toast-positive-background-color,var(--spectrum-semantic-positive-background-color)
|
|
98
|
+
)}
|
|
99
|
+
`;
|
|
100
|
+
export default styles;
|
|
101
|
+
//# sourceMappingURL=spectrum-toast.css.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"spectrum-toast.css.js","sourceRoot":"","sources":["spectrum-toast.css.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AACF,OAAO,EAAE,GAAG,EAAE,MAAM,+BAA+B,CAAC;AACpD,MAAM,MAAM,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsFjB,CAAC;AACF,eAAe,MAAM,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 { css } from '@spectrum-web-components/base';\nconst styles = css`\n:host{--spectrum-toast-icon-padding-y:var(\n--spectrum-global-dimension-size-85\n);--spectrum-toast-neutral-content-padding-top:var(\n--spectrum-global-dimension-size-65\n);--spectrum-toast-content-padding-bottom:var(\n--spectrum-global-dimension-size-65\n);--spectrum-toast-button-margin-right:var(\n--spectrum-global-dimension-size-130\n)}:host([dir=ltr]){padding-right:var(\n--spectrum-toast-neutral-padding-right,var(--spectrum-global-dimension-size-100)\n)}:host([dir=rtl]){padding-left:var(\n--spectrum-toast-neutral-padding-right,var(--spectrum-global-dimension-size-100)\n)}:host([dir=ltr]){padding-left:var(\n--spectrum-toast-neutral-padding-left,var(--spectrum-global-dimension-size-200)\n)}:host([dir=rtl]){padding-right:var(\n--spectrum-toast-neutral-padding-left,var(--spectrum-global-dimension-size-200)\n)}:host{-webkit-font-smoothing:antialiased;align-items:stretch;border-radius:var(\n--spectrum-toast-neutral-border-radius,var(--spectrum-alias-border-radius-regular)\n);box-sizing:border-box;display:inline-flex;flex-direction:row;font-size:var(\n--spectrum-toast-neutral-text-size,var(--spectrum-global-dimension-font-size-100)\n);font-weight:var(\n--spectrum-toast-neutral-text-font-weight,var(--spectrum-alias-body-text-font-weight)\n);padding-bottom:var(\n--spectrum-toast-neutral-padding-y,var(--spectrum-global-dimension-size-100)\n);padding-top:var(\n--spectrum-toast-neutral-padding-y,var(--spectrum-global-dimension-size-100)\n)}:host([dir=ltr]) .type{margin-right:var(\n--spectrum-toast-neutral-icon-padding-right,var(--spectrum-global-dimension-size-150)\n)}:host([dir=rtl]) .type{margin-left:var(\n--spectrum-toast-neutral-icon-padding-right,var(--spectrum-global-dimension-size-150)\n)}:host([dir=ltr]) .type{margin-left:0}:host([dir=rtl]) .type{margin-right:0}.type{flex-grow:0;flex-shrink:0;margin-bottom:var(--spectrum-toast-icon-padding-y);margin-top:var(--spectrum-toast-icon-padding-y)}:host([dir=ltr]) .content{padding-right:var(\n--spectrum-toast-neutral-content-padding-right,var(--spectrum-global-dimension-size-200)\n)}:host([dir=rtl]) .content{padding-left:var(\n--spectrum-toast-neutral-content-padding-right,var(--spectrum-global-dimension-size-200)\n)}:host([dir=ltr]) .content{padding-left:0}:host([dir=rtl]) .content{padding-right:0}:host([dir=ltr]) .content{text-align:left}:host([dir=rtl]) .content{text-align:right}.content{box-sizing:border-box;display:inline-block;flex:1 1 auto;font-size:var(\n--spectrum-toast-info-text-size,var(--spectrum-global-dimension-font-size-100)\n);font-weight:var(\n--spectrum-toast-info-text-font-weight,var(--spectrum-alias-body-text-font-weight)\n);line-height:var(\n--spectrum-toast-info-text-line-height,var(--spectrum-alias-component-text-line-height)\n);padding-bottom:var(--spectrum-toast-content-padding-bottom);padding-top:var(\n--spectrum-toast-neutral-content-padding-top,var(--spectrum-global-dimension-size-65)\n)}.buttons{align-items:flex-start;display:flex;flex:0 0 auto}:host([dir=ltr]) .buttons .spectrum-ClearButton+.spectrum-ClearButton,:host([dir=ltr]) .buttons .spectrum-ClearButton+::slotted([slot=action]),:host([dir=ltr]) .buttons slot[name=action]+.spectrum-ClearButton,:host([dir=ltr]) .buttons slot[name=action]+::slotted([slot=action]){margin-left:var(\n--spectrum-toast-neutral-button-gap-x,var(--spectrum-global-dimension-size-100)\n)}:host([dir=rtl]) .buttons .spectrum-ClearButton+.spectrum-ClearButton,:host([dir=rtl]) .buttons .spectrum-ClearButton+::slotted([slot=action]),:host([dir=rtl]) .buttons slot[name=action]+.spectrum-ClearButton,:host([dir=rtl]) .buttons slot[name=action]+::slotted([slot=action]){margin-right:var(\n--spectrum-toast-neutral-button-gap-x,var(--spectrum-global-dimension-size-100)\n)}.body{align-self:center;flex:1 1 auto}:host([dir=ltr]) .body ::slotted([slot=action]){float:right}:host([dir=rtl]) .body ::slotted([slot=action]){float:left}:host([dir=ltr]) .body ::slotted([slot=action]){margin-right:var(\n--spectrum-toast-button-margin-right\n)}:host([dir=rtl]) .body ::slotted([slot=action]){margin-left:var(\n--spectrum-toast-button-margin-right\n)}:host([dir=ltr]) .body+.buttons{padding-left:var(\n--spectrum-toast-neutral-padding-right,var(--spectrum-global-dimension-size-100)\n)}:host([dir=rtl]) .body+.buttons{padding-right:var(\n--spectrum-toast-neutral-padding-right,var(--spectrum-global-dimension-size-100)\n)}:host([dir=ltr]) .body+.buttons{border-left-width:1px}:host([dir=rtl]) .body+.buttons{border-right-width:1px}:host([dir=ltr]) .body+.buttons{border-left-style:solid}:host([dir=rtl]) .body+.buttons{border-right-style:solid}:host{background-color:var(\n--spectrum-toast-neutral-background-color,var(--spectrum-semantic-neutral-background-color-default)\n);color:var(\n--spectrum-toast-neutral-background-color,var(--spectrum-semantic-neutral-background-color-default)\n)}.content{color:var(\n--spectrum-toast-neutral-text-color,var(--spectrum-global-color-static-white)\n)}.type{color:#fff}:host([dir=ltr]) .buttons{border-left-color:hsla(0,0%,100%,.2)}:host([dir=rtl]) .buttons{border-right-color:hsla(0,0%,100%,.2)}:host([variant=error]),:host([variant=negative]){background-color:var(\n--spectrum-toast-negative-background-color,var(--spectrum-semantic-negative-background-color)\n);color:var(\n--spectrum-toast-negative-background-color,var(--spectrum-semantic-negative-background-color)\n)}:host([variant=error]) .closeButton.focus-visible:not(:active),:host([variant=negative]) .closeButton.focus-visible:not(:active){color:var(\n--spectrum-toast-negative-background-color,var(--spectrum-semantic-negative-background-color)\n)}:host([variant=error]) .closeButton:focus-visible:not(:active),:host([variant=negative]) .closeButton:focus-visible:not(:active){color:var(\n--spectrum-toast-negative-background-color,var(--spectrum-semantic-negative-background-color)\n)}:host([variant=info]){background-color:var(\n--spectrum-toast-info-background-color,var(--spectrum-semantic-informative-background-color)\n);color:var(\n--spectrum-toast-info-background-color,var(--spectrum-semantic-informative-background-color)\n)}:host([variant=info]) .closeButton.focus-visible:not(:active){color:var(\n--spectrum-toast-info-background-color,var(--spectrum-semantic-informative-background-color)\n)}:host([variant=info]) .closeButton:focus-visible:not(:active){color:var(\n--spectrum-toast-info-background-color,var(--spectrum-semantic-informative-background-color)\n)}:host([variant=positive]),:host([variant=success]){background-color:var(\n--spectrum-toast-positive-background-color,var(--spectrum-semantic-positive-background-color)\n);color:var(\n--spectrum-toast-positive-background-color,var(--spectrum-semantic-positive-background-color)\n)}:host([variant=positive]) .closeButton.focus-visible:not(:active),:host([variant=success]) .closeButton.focus-visible:not(:active){color:var(\n--spectrum-toast-positive-background-color,var(--spectrum-semantic-positive-background-color)\n)}:host([variant=positive]) .closeButton:focus-visible:not(:active),:host([variant=success]) .closeButton:focus-visible:not(:active){color:var(\n--spectrum-toast-positive-background-color,var(--spectrum-semantic-positive-background-color)\n)}\n`;\nexport default styles;"]}
|
package/src/toast.css.js
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
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 { css } from '@spectrum-web-components/base';
|
|
13
|
+
const styles = css `
|
|
14
|
+
:host{--spectrum-toast-icon-padding-y:var(
|
|
15
|
+
--spectrum-global-dimension-size-85
|
|
16
|
+
);--spectrum-toast-neutral-content-padding-top:var(
|
|
17
|
+
--spectrum-global-dimension-size-65
|
|
18
|
+
);--spectrum-toast-content-padding-bottom:var(
|
|
19
|
+
--spectrum-global-dimension-size-65
|
|
20
|
+
);--spectrum-toast-button-margin-right:var(
|
|
21
|
+
--spectrum-global-dimension-size-130
|
|
22
|
+
)}:host([dir=ltr]){padding-right:var(
|
|
23
|
+
--spectrum-toast-neutral-padding-right,var(--spectrum-global-dimension-size-100)
|
|
24
|
+
)}:host([dir=rtl]){padding-left:var(
|
|
25
|
+
--spectrum-toast-neutral-padding-right,var(--spectrum-global-dimension-size-100)
|
|
26
|
+
)}:host([dir=ltr]){padding-left:var(
|
|
27
|
+
--spectrum-toast-neutral-padding-left,var(--spectrum-global-dimension-size-200)
|
|
28
|
+
)}:host([dir=rtl]){padding-right:var(
|
|
29
|
+
--spectrum-toast-neutral-padding-left,var(--spectrum-global-dimension-size-200)
|
|
30
|
+
)}:host{-webkit-font-smoothing:antialiased;align-items:stretch;border-radius:var(
|
|
31
|
+
--spectrum-toast-neutral-border-radius,var(--spectrum-alias-border-radius-regular)
|
|
32
|
+
);box-sizing:border-box;display:inline-flex;flex-direction:row;font-size:var(
|
|
33
|
+
--spectrum-toast-neutral-text-size,var(--spectrum-global-dimension-font-size-100)
|
|
34
|
+
);font-weight:var(
|
|
35
|
+
--spectrum-toast-neutral-text-font-weight,var(--spectrum-alias-body-text-font-weight)
|
|
36
|
+
);padding-bottom:var(
|
|
37
|
+
--spectrum-toast-neutral-padding-y,var(--spectrum-global-dimension-size-100)
|
|
38
|
+
);padding-top:var(
|
|
39
|
+
--spectrum-toast-neutral-padding-y,var(--spectrum-global-dimension-size-100)
|
|
40
|
+
)}:host([dir=ltr]) .type{margin-right:var(
|
|
41
|
+
--spectrum-toast-neutral-icon-padding-right,var(--spectrum-global-dimension-size-150)
|
|
42
|
+
)}:host([dir=rtl]) .type{margin-left:var(
|
|
43
|
+
--spectrum-toast-neutral-icon-padding-right,var(--spectrum-global-dimension-size-150)
|
|
44
|
+
)}:host([dir=ltr]) .type{margin-left:0}:host([dir=rtl]) .type{margin-right:0}.type{flex-grow:0;flex-shrink:0;margin-bottom:var(--spectrum-toast-icon-padding-y);margin-top:var(--spectrum-toast-icon-padding-y)}:host([dir=ltr]) .content{padding-right:var(
|
|
45
|
+
--spectrum-toast-neutral-content-padding-right,var(--spectrum-global-dimension-size-200)
|
|
46
|
+
)}:host([dir=rtl]) .content{padding-left:var(
|
|
47
|
+
--spectrum-toast-neutral-content-padding-right,var(--spectrum-global-dimension-size-200)
|
|
48
|
+
)}:host([dir=ltr]) .content{padding-left:0}:host([dir=rtl]) .content{padding-right:0}:host([dir=ltr]) .content{text-align:left}:host([dir=rtl]) .content{text-align:right}.content{box-sizing:border-box;display:inline-block;flex:1 1 auto;font-size:var(
|
|
49
|
+
--spectrum-toast-info-text-size,var(--spectrum-global-dimension-font-size-100)
|
|
50
|
+
);font-weight:var(
|
|
51
|
+
--spectrum-toast-info-text-font-weight,var(--spectrum-alias-body-text-font-weight)
|
|
52
|
+
);line-height:var(
|
|
53
|
+
--spectrum-toast-info-text-line-height,var(--spectrum-alias-component-text-line-height)
|
|
54
|
+
);padding-bottom:var(--spectrum-toast-content-padding-bottom);padding-top:var(
|
|
55
|
+
--spectrum-toast-neutral-content-padding-top,var(--spectrum-global-dimension-size-65)
|
|
56
|
+
)}.buttons{align-items:flex-start;display:flex;flex:0 0 auto}:host([dir=ltr]) .buttons .spectrum-ClearButton+.spectrum-ClearButton,:host([dir=ltr]) .buttons .spectrum-ClearButton+::slotted([slot=action]),:host([dir=ltr]) .buttons slot[name=action]+.spectrum-ClearButton,:host([dir=ltr]) .buttons slot[name=action]+::slotted([slot=action]){margin-left:var(
|
|
57
|
+
--spectrum-toast-neutral-button-gap-x,var(--spectrum-global-dimension-size-100)
|
|
58
|
+
)}:host([dir=rtl]) .buttons .spectrum-ClearButton+.spectrum-ClearButton,:host([dir=rtl]) .buttons .spectrum-ClearButton+::slotted([slot=action]),:host([dir=rtl]) .buttons slot[name=action]+.spectrum-ClearButton,:host([dir=rtl]) .buttons slot[name=action]+::slotted([slot=action]){margin-right:var(
|
|
59
|
+
--spectrum-toast-neutral-button-gap-x,var(--spectrum-global-dimension-size-100)
|
|
60
|
+
)}.body{align-self:center;flex:1 1 auto}:host([dir=ltr]) .body ::slotted([slot=action]){float:right}:host([dir=rtl]) .body ::slotted([slot=action]){float:left}:host([dir=ltr]) .body ::slotted([slot=action]){margin-right:var(
|
|
61
|
+
--spectrum-toast-button-margin-right
|
|
62
|
+
)}:host([dir=rtl]) .body ::slotted([slot=action]){margin-left:var(
|
|
63
|
+
--spectrum-toast-button-margin-right
|
|
64
|
+
)}:host([dir=ltr]) .body+.buttons{padding-left:var(
|
|
65
|
+
--spectrum-toast-neutral-padding-right,var(--spectrum-global-dimension-size-100)
|
|
66
|
+
)}:host([dir=rtl]) .body+.buttons{padding-right:var(
|
|
67
|
+
--spectrum-toast-neutral-padding-right,var(--spectrum-global-dimension-size-100)
|
|
68
|
+
)}:host([dir=ltr]) .body+.buttons{border-left-width:1px}:host([dir=rtl]) .body+.buttons{border-right-width:1px}:host([dir=ltr]) .body+.buttons{border-left-style:solid}:host([dir=rtl]) .body+.buttons{border-right-style:solid}:host{background-color:var(
|
|
69
|
+
--spectrum-toast-neutral-background-color,var(--spectrum-semantic-neutral-background-color-default)
|
|
70
|
+
);color:var(
|
|
71
|
+
--spectrum-toast-neutral-background-color,var(--spectrum-semantic-neutral-background-color-default)
|
|
72
|
+
)}.content{color:var(
|
|
73
|
+
--spectrum-toast-neutral-text-color,var(--spectrum-global-color-static-white)
|
|
74
|
+
)}.type{color:#fff}:host([dir=ltr]) .buttons{border-left-color:hsla(0,0%,100%,.2)}:host([dir=rtl]) .buttons{border-right-color:hsla(0,0%,100%,.2)}:host([variant=error]),:host([variant=negative]){background-color:var(
|
|
75
|
+
--spectrum-toast-negative-background-color,var(--spectrum-semantic-negative-background-color)
|
|
76
|
+
);color:var(
|
|
77
|
+
--spectrum-toast-negative-background-color,var(--spectrum-semantic-negative-background-color)
|
|
78
|
+
)}:host([variant=error]) .closeButton.focus-visible:not(:active),:host([variant=negative]) .closeButton.focus-visible:not(:active){color:var(
|
|
79
|
+
--spectrum-toast-negative-background-color,var(--spectrum-semantic-negative-background-color)
|
|
80
|
+
)}:host([variant=error]) .closeButton:focus-visible:not(:active),:host([variant=negative]) .closeButton:focus-visible:not(:active){color:var(
|
|
81
|
+
--spectrum-toast-negative-background-color,var(--spectrum-semantic-negative-background-color)
|
|
82
|
+
)}:host([variant=info]){background-color:var(
|
|
83
|
+
--spectrum-toast-info-background-color,var(--spectrum-semantic-informative-background-color)
|
|
84
|
+
);color:var(
|
|
85
|
+
--spectrum-toast-info-background-color,var(--spectrum-semantic-informative-background-color)
|
|
86
|
+
)}:host([variant=info]) .closeButton.focus-visible:not(:active){color:var(
|
|
87
|
+
--spectrum-toast-info-background-color,var(--spectrum-semantic-informative-background-color)
|
|
88
|
+
)}:host([variant=info]) .closeButton:focus-visible:not(:active){color:var(
|
|
89
|
+
--spectrum-toast-info-background-color,var(--spectrum-semantic-informative-background-color)
|
|
90
|
+
)}:host([variant=positive]),:host([variant=success]){background-color:var(
|
|
91
|
+
--spectrum-toast-positive-background-color,var(--spectrum-semantic-positive-background-color)
|
|
92
|
+
);color:var(
|
|
93
|
+
--spectrum-toast-positive-background-color,var(--spectrum-semantic-positive-background-color)
|
|
94
|
+
)}:host([variant=positive]) .closeButton.focus-visible:not(:active),:host([variant=success]) .closeButton.focus-visible:not(:active){color:var(
|
|
95
|
+
--spectrum-toast-positive-background-color,var(--spectrum-semantic-positive-background-color)
|
|
96
|
+
)}:host([variant=positive]) .closeButton:focus-visible:not(:active),:host([variant=success]) .closeButton:focus-visible:not(:active){color:var(
|
|
97
|
+
--spectrum-toast-positive-background-color,var(--spectrum-semantic-positive-background-color)
|
|
98
|
+
)}.content{line-height:1.5}:host(:not([open])){display:none}
|
|
99
|
+
`;
|
|
100
|
+
export default styles;
|
|
101
|
+
//# sourceMappingURL=toast.css.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toast.css.js","sourceRoot":"","sources":["toast.css.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AACF,OAAO,EAAE,GAAG,EAAE,MAAM,+BAA+B,CAAC;AACpD,MAAM,MAAM,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsFjB,CAAC;AACF,eAAe,MAAM,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 { css } from '@spectrum-web-components/base';\nconst styles = css`\n:host{--spectrum-toast-icon-padding-y:var(\n--spectrum-global-dimension-size-85\n);--spectrum-toast-neutral-content-padding-top:var(\n--spectrum-global-dimension-size-65\n);--spectrum-toast-content-padding-bottom:var(\n--spectrum-global-dimension-size-65\n);--spectrum-toast-button-margin-right:var(\n--spectrum-global-dimension-size-130\n)}:host([dir=ltr]){padding-right:var(\n--spectrum-toast-neutral-padding-right,var(--spectrum-global-dimension-size-100)\n)}:host([dir=rtl]){padding-left:var(\n--spectrum-toast-neutral-padding-right,var(--spectrum-global-dimension-size-100)\n)}:host([dir=ltr]){padding-left:var(\n--spectrum-toast-neutral-padding-left,var(--spectrum-global-dimension-size-200)\n)}:host([dir=rtl]){padding-right:var(\n--spectrum-toast-neutral-padding-left,var(--spectrum-global-dimension-size-200)\n)}:host{-webkit-font-smoothing:antialiased;align-items:stretch;border-radius:var(\n--spectrum-toast-neutral-border-radius,var(--spectrum-alias-border-radius-regular)\n);box-sizing:border-box;display:inline-flex;flex-direction:row;font-size:var(\n--spectrum-toast-neutral-text-size,var(--spectrum-global-dimension-font-size-100)\n);font-weight:var(\n--spectrum-toast-neutral-text-font-weight,var(--spectrum-alias-body-text-font-weight)\n);padding-bottom:var(\n--spectrum-toast-neutral-padding-y,var(--spectrum-global-dimension-size-100)\n);padding-top:var(\n--spectrum-toast-neutral-padding-y,var(--spectrum-global-dimension-size-100)\n)}:host([dir=ltr]) .type{margin-right:var(\n--spectrum-toast-neutral-icon-padding-right,var(--spectrum-global-dimension-size-150)\n)}:host([dir=rtl]) .type{margin-left:var(\n--spectrum-toast-neutral-icon-padding-right,var(--spectrum-global-dimension-size-150)\n)}:host([dir=ltr]) .type{margin-left:0}:host([dir=rtl]) .type{margin-right:0}.type{flex-grow:0;flex-shrink:0;margin-bottom:var(--spectrum-toast-icon-padding-y);margin-top:var(--spectrum-toast-icon-padding-y)}:host([dir=ltr]) .content{padding-right:var(\n--spectrum-toast-neutral-content-padding-right,var(--spectrum-global-dimension-size-200)\n)}:host([dir=rtl]) .content{padding-left:var(\n--spectrum-toast-neutral-content-padding-right,var(--spectrum-global-dimension-size-200)\n)}:host([dir=ltr]) .content{padding-left:0}:host([dir=rtl]) .content{padding-right:0}:host([dir=ltr]) .content{text-align:left}:host([dir=rtl]) .content{text-align:right}.content{box-sizing:border-box;display:inline-block;flex:1 1 auto;font-size:var(\n--spectrum-toast-info-text-size,var(--spectrum-global-dimension-font-size-100)\n);font-weight:var(\n--spectrum-toast-info-text-font-weight,var(--spectrum-alias-body-text-font-weight)\n);line-height:var(\n--spectrum-toast-info-text-line-height,var(--spectrum-alias-component-text-line-height)\n);padding-bottom:var(--spectrum-toast-content-padding-bottom);padding-top:var(\n--spectrum-toast-neutral-content-padding-top,var(--spectrum-global-dimension-size-65)\n)}.buttons{align-items:flex-start;display:flex;flex:0 0 auto}:host([dir=ltr]) .buttons .spectrum-ClearButton+.spectrum-ClearButton,:host([dir=ltr]) .buttons .spectrum-ClearButton+::slotted([slot=action]),:host([dir=ltr]) .buttons slot[name=action]+.spectrum-ClearButton,:host([dir=ltr]) .buttons slot[name=action]+::slotted([slot=action]){margin-left:var(\n--spectrum-toast-neutral-button-gap-x,var(--spectrum-global-dimension-size-100)\n)}:host([dir=rtl]) .buttons .spectrum-ClearButton+.spectrum-ClearButton,:host([dir=rtl]) .buttons .spectrum-ClearButton+::slotted([slot=action]),:host([dir=rtl]) .buttons slot[name=action]+.spectrum-ClearButton,:host([dir=rtl]) .buttons slot[name=action]+::slotted([slot=action]){margin-right:var(\n--spectrum-toast-neutral-button-gap-x,var(--spectrum-global-dimension-size-100)\n)}.body{align-self:center;flex:1 1 auto}:host([dir=ltr]) .body ::slotted([slot=action]){float:right}:host([dir=rtl]) .body ::slotted([slot=action]){float:left}:host([dir=ltr]) .body ::slotted([slot=action]){margin-right:var(\n--spectrum-toast-button-margin-right\n)}:host([dir=rtl]) .body ::slotted([slot=action]){margin-left:var(\n--spectrum-toast-button-margin-right\n)}:host([dir=ltr]) .body+.buttons{padding-left:var(\n--spectrum-toast-neutral-padding-right,var(--spectrum-global-dimension-size-100)\n)}:host([dir=rtl]) .body+.buttons{padding-right:var(\n--spectrum-toast-neutral-padding-right,var(--spectrum-global-dimension-size-100)\n)}:host([dir=ltr]) .body+.buttons{border-left-width:1px}:host([dir=rtl]) .body+.buttons{border-right-width:1px}:host([dir=ltr]) .body+.buttons{border-left-style:solid}:host([dir=rtl]) .body+.buttons{border-right-style:solid}:host{background-color:var(\n--spectrum-toast-neutral-background-color,var(--spectrum-semantic-neutral-background-color-default)\n);color:var(\n--spectrum-toast-neutral-background-color,var(--spectrum-semantic-neutral-background-color-default)\n)}.content{color:var(\n--spectrum-toast-neutral-text-color,var(--spectrum-global-color-static-white)\n)}.type{color:#fff}:host([dir=ltr]) .buttons{border-left-color:hsla(0,0%,100%,.2)}:host([dir=rtl]) .buttons{border-right-color:hsla(0,0%,100%,.2)}:host([variant=error]),:host([variant=negative]){background-color:var(\n--spectrum-toast-negative-background-color,var(--spectrum-semantic-negative-background-color)\n);color:var(\n--spectrum-toast-negative-background-color,var(--spectrum-semantic-negative-background-color)\n)}:host([variant=error]) .closeButton.focus-visible:not(:active),:host([variant=negative]) .closeButton.focus-visible:not(:active){color:var(\n--spectrum-toast-negative-background-color,var(--spectrum-semantic-negative-background-color)\n)}:host([variant=error]) .closeButton:focus-visible:not(:active),:host([variant=negative]) .closeButton:focus-visible:not(:active){color:var(\n--spectrum-toast-negative-background-color,var(--spectrum-semantic-negative-background-color)\n)}:host([variant=info]){background-color:var(\n--spectrum-toast-info-background-color,var(--spectrum-semantic-informative-background-color)\n);color:var(\n--spectrum-toast-info-background-color,var(--spectrum-semantic-informative-background-color)\n)}:host([variant=info]) .closeButton.focus-visible:not(:active){color:var(\n--spectrum-toast-info-background-color,var(--spectrum-semantic-informative-background-color)\n)}:host([variant=info]) .closeButton:focus-visible:not(:active){color:var(\n--spectrum-toast-info-background-color,var(--spectrum-semantic-informative-background-color)\n)}:host([variant=positive]),:host([variant=success]){background-color:var(\n--spectrum-toast-positive-background-color,var(--spectrum-semantic-positive-background-color)\n);color:var(\n--spectrum-toast-positive-background-color,var(--spectrum-semantic-positive-background-color)\n)}:host([variant=positive]) .closeButton.focus-visible:not(:active),:host([variant=success]) .closeButton.focus-visible:not(:active){color:var(\n--spectrum-toast-positive-background-color,var(--spectrum-semantic-positive-background-color)\n)}:host([variant=positive]) .closeButton:focus-visible:not(:active),:host([variant=success]) .closeButton:focus-visible:not(:active){color:var(\n--spectrum-toast-positive-background-color,var(--spectrum-semantic-positive-background-color)\n)}.content{line-height:1.5}:host(:not([open])){display:none}\n`;\nexport default styles;"]}
|
|
@@ -0,0 +1,64 @@
|
|
|
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 { html } from '@spectrum-web-components/base';
|
|
13
|
+
import '../sp-toast.js';
|
|
14
|
+
import '@spectrum-web-components/button/sp-button.js';
|
|
15
|
+
const toast = ({ variant = '', open = true, content = '', }) => html `
|
|
16
|
+
<sp-toast
|
|
17
|
+
variant=${variant}
|
|
18
|
+
?open=${open}
|
|
19
|
+
>
|
|
20
|
+
${content}
|
|
21
|
+
<sp-button slot="action" variant="overBackground" quiet>Undo</sp-button>
|
|
22
|
+
</sp-toast>
|
|
23
|
+
`;
|
|
24
|
+
export default {
|
|
25
|
+
component: 'sp-toast',
|
|
26
|
+
title: 'Toast',
|
|
27
|
+
args: {
|
|
28
|
+
content: 'This is a toast message.',
|
|
29
|
+
open: true,
|
|
30
|
+
},
|
|
31
|
+
argTypes: {
|
|
32
|
+
content: {
|
|
33
|
+
name: 'content',
|
|
34
|
+
type: { name: 'string', required: false },
|
|
35
|
+
table: {
|
|
36
|
+
type: { summary: 'string' },
|
|
37
|
+
defaultValue: { summary: '' },
|
|
38
|
+
},
|
|
39
|
+
control: 'text',
|
|
40
|
+
},
|
|
41
|
+
open: {
|
|
42
|
+
name: 'open',
|
|
43
|
+
type: { name: 'boolean', required: false },
|
|
44
|
+
description: 'Whether the toast is open.',
|
|
45
|
+
table: {
|
|
46
|
+
type: { summary: 'boolean' },
|
|
47
|
+
defaultValue: { summary: false },
|
|
48
|
+
},
|
|
49
|
+
control: {
|
|
50
|
+
type: 'boolean',
|
|
51
|
+
},
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
};
|
|
55
|
+
export const Default = ({ variant, open, content, }) => {
|
|
56
|
+
return toast({ variant, open, content });
|
|
57
|
+
};
|
|
58
|
+
const variantDemo = ({ variant, open, content, }) => {
|
|
59
|
+
return toast({ variant, open, content });
|
|
60
|
+
};
|
|
61
|
+
export const Positive = (args) => variantDemo(Object.assign(Object.assign({}, args), { variant: 'positive' }));
|
|
62
|
+
export const Negative = (args) => variantDemo(Object.assign(Object.assign({}, args), { variant: 'negative' }));
|
|
63
|
+
export const Info = (args) => variantDemo(Object.assign(Object.assign({}, args), { variant: 'info' }));
|
|
64
|
+
//# sourceMappingURL=toast.stories.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toast.stories.js","sourceRoot":"","sources":["toast.stories.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AACF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AAErE,OAAO,gBAAgB,CAAC;AACxB,OAAO,8CAA8C,CAAC;AAEtD,MAAM,KAAK,GAAG,CAAC,EACX,OAAO,GAAG,EAAE,EACZ,IAAI,GAAG,IAAI,EACX,OAAO,GAAG,EAAE,GACf,EAAkB,EAAE,CAAC,IAAI,CAAA;;kBAER,OAMK;gBACP,IAAI;;UAEV,OAAO;;;CAGhB,CAAC;AAEF,eAAe;IACX,SAAS,EAAE,UAAU;IACrB,KAAK,EAAE,OAAO;IACd,IAAI,EAAE;QACF,OAAO,EAAE,0BAA0B;QACnC,IAAI,EAAE,IAAI;KACb;IACD,QAAQ,EAAE;QACN,OAAO,EAAE;YACL,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE;YACzC,KAAK,EAAE;gBACH,IAAI,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;gBAC3B,YAAY,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE;aAChC;YACD,OAAO,EAAE,MAAM;SAClB;QACD,IAAI,EAAE;YACF,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,KAAK,EAAE;YAC1C,WAAW,EAAE,4BAA4B;YACzC,KAAK,EAAE;gBACH,IAAI,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE;gBAC5B,YAAY,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;aACnC;YACD,OAAO,EAAE;gBACL,IAAI,EAAE,SAAS;aAClB;SACJ;KACJ;CACJ,CAAC;AASF,MAAM,CAAC,MAAM,OAAO,GAAG,CAAC,EACpB,OAAO,EACP,IAAI,EACJ,OAAO,GACE,EAAkB,EAAE;IAC7B,OAAO,KAAK,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC,CAAC;AAC7C,CAAC,CAAC;AAEF,MAAM,WAAW,GAAG,CAAC,EACjB,OAAO,EACP,IAAI,EACJ,OAAO,GACE,EAAkB,EAAE;IAC7B,OAAO,KAAK,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC,CAAC;AAC7C,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,IAAgB,EAAkB,EAAE,CACzD,WAAW,iCAAM,IAAI,KAAE,OAAO,EAAE,UAAU,IAAG,CAAC;AAElD,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,IAAgB,EAAkB,EAAE,CACzD,WAAW,iCAAM,IAAI,KAAE,OAAO,EAAE,UAAU,IAAG,CAAC;AAElD,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,IAAgB,EAAkB,EAAE,CACrD,WAAW,iCAAM,IAAI,KAAE,OAAO,EAAE,MAAM,IAAG,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 { html, TemplateResult } from '@spectrum-web-components/base';\n\nimport '../sp-toast.js';\nimport '@spectrum-web-components/button/sp-button.js';\n\nconst toast = ({\n variant = '',\n open = true,\n content = '',\n}): TemplateResult => html`\n <sp-toast\n variant=${variant as\n | ''\n | 'negative'\n | 'positive'\n | 'info'\n | 'error'\n | 'warning'}\n ?open=${open}\n >\n ${content}\n <sp-button slot=\"action\" variant=\"overBackground\" quiet>Undo</sp-button>\n </sp-toast>\n`;\n\nexport default {\n component: 'sp-toast',\n title: 'Toast',\n args: {\n content: 'This is a toast message.',\n open: true,\n },\n argTypes: {\n content: {\n name: 'content',\n type: { name: 'string', required: false },\n table: {\n type: { summary: 'string' },\n defaultValue: { summary: '' },\n },\n control: 'text',\n },\n open: {\n name: 'open',\n type: { name: 'boolean', required: false },\n description: 'Whether the toast is open.',\n table: {\n type: { summary: 'boolean' },\n defaultValue: { summary: false },\n },\n control: {\n type: 'boolean',\n },\n },\n },\n};\n\ninterface Properties {\n variant: '' | 'negative' | 'positive' | 'info' | 'error' | 'warning';\n open: boolean;\n content: string;\n onClose: (event: Event) => void;\n}\n\nexport const Default = ({\n variant,\n open,\n content,\n}: Properties): TemplateResult => {\n return toast({ variant, open, content });\n};\n\nconst variantDemo = ({\n variant,\n open,\n content,\n}: Properties): TemplateResult => {\n return toast({ variant, open, content });\n};\n\nexport const Positive = (args: Properties): TemplateResult =>\n variantDemo({ ...args, variant: 'positive' });\n\nexport const Negative = (args: Properties): TemplateResult =>\n variantDemo({ ...args, variant: 'negative' });\n\nexport const Info = (args: Properties): TemplateResult =>\n variantDemo({ ...args, variant: 'info' });\n"]}
|