@spectrum-web-components/underlay 0.40.4 → 0.41.0
Sign up to get free protection for your applications and to get access to all the features.
- package/custom-elements.json +48 -0
- package/package.json +4 -4
- package/src/Underlay.d.ts +7 -0
- package/src/Underlay.dev.js +17 -0
- package/src/Underlay.dev.js.map +2 -2
- package/src/Underlay.js +1 -1
- package/src/Underlay.js.map +2 -2
- package/src/spectrum-underlay.css.dev.js +8 -6
- package/src/spectrum-underlay.css.dev.js.map +2 -2
- package/src/spectrum-underlay.css.js +8 -6
- package/src/spectrum-underlay.css.js.map +2 -2
- package/src/underlay.css.dev.js +8 -6
- package/src/underlay.css.dev.js.map +2 -2
- package/src/underlay.css.js +8 -6
- package/src/underlay.css.js.map +2 -2
package/custom-elements.json
CHANGED
@@ -26,6 +26,15 @@
|
|
26
26
|
"description": "",
|
27
27
|
"name": "Underlay",
|
28
28
|
"members": [
|
29
|
+
{
|
30
|
+
"kind": "field",
|
31
|
+
"name": "canClick",
|
32
|
+
"type": {
|
33
|
+
"text": "boolean"
|
34
|
+
},
|
35
|
+
"privacy": "private",
|
36
|
+
"default": "false"
|
37
|
+
},
|
29
38
|
{
|
30
39
|
"kind": "field",
|
31
40
|
"name": "open",
|
@@ -36,6 +45,45 @@
|
|
36
45
|
"default": "false",
|
37
46
|
"attribute": "open",
|
38
47
|
"reflects": true
|
48
|
+
},
|
49
|
+
{
|
50
|
+
"kind": "method",
|
51
|
+
"name": "click",
|
52
|
+
"privacy": "public",
|
53
|
+
"return": {
|
54
|
+
"type": {
|
55
|
+
"text": "void"
|
56
|
+
}
|
57
|
+
}
|
58
|
+
},
|
59
|
+
{
|
60
|
+
"kind": "method",
|
61
|
+
"name": "handlePointerdown",
|
62
|
+
"privacy": "protected",
|
63
|
+
"return": {
|
64
|
+
"type": {
|
65
|
+
"text": "void"
|
66
|
+
}
|
67
|
+
}
|
68
|
+
},
|
69
|
+
{
|
70
|
+
"kind": "method",
|
71
|
+
"name": "handlePointerup",
|
72
|
+
"privacy": "protected",
|
73
|
+
"return": {
|
74
|
+
"type": {
|
75
|
+
"text": "void"
|
76
|
+
}
|
77
|
+
}
|
78
|
+
}
|
79
|
+
],
|
80
|
+
"events": [
|
81
|
+
{
|
82
|
+
"name": "close",
|
83
|
+
"type": {
|
84
|
+
"text": "Event"
|
85
|
+
},
|
86
|
+
"description": "When the underlay is \"clicked\" and the consuming pattern should chose whether to close based on that interaction"
|
39
87
|
}
|
40
88
|
],
|
41
89
|
"attributes": [
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@spectrum-web-components/underlay",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.41.0",
|
4
4
|
"publishConfig": {
|
5
5
|
"access": "public"
|
6
6
|
},
|
@@ -57,10 +57,10 @@
|
|
57
57
|
"lit-html"
|
58
58
|
],
|
59
59
|
"dependencies": {
|
60
|
-
"@spectrum-web-components/base": "^0.
|
60
|
+
"@spectrum-web-components/base": "^0.41.0"
|
61
61
|
},
|
62
62
|
"devDependencies": {
|
63
|
-
"@spectrum-css/underlay": "^3.
|
63
|
+
"@spectrum-css/underlay": "^3.2.0"
|
64
64
|
},
|
65
65
|
"types": "./src/index.d.ts",
|
66
66
|
"customElements": "custom-elements.json",
|
@@ -68,5 +68,5 @@
|
|
68
68
|
"./sp-*.js",
|
69
69
|
"./**/*.dev.js"
|
70
70
|
],
|
71
|
-
"gitHead": "
|
71
|
+
"gitHead": "0bf38fd427adc39804b228a4c61de623e5ebb82e"
|
72
72
|
}
|
package/src/Underlay.d.ts
CHANGED
@@ -1,9 +1,16 @@
|
|
1
1
|
import { CSSResultArray, SpectrumElement, TemplateResult } from '@spectrum-web-components/base';
|
2
2
|
/**
|
3
3
|
* @element sp-underlay
|
4
|
+
*
|
5
|
+
* @fires close - When the underlay is "clicked" and the consuming pattern should chose whether to close based on that interaction
|
4
6
|
*/
|
5
7
|
export declare class Underlay extends SpectrumElement {
|
6
8
|
static get styles(): CSSResultArray;
|
9
|
+
private canClick;
|
7
10
|
open: boolean;
|
11
|
+
click(): void;
|
12
|
+
protected handlePointerdown(): void;
|
13
|
+
protected handlePointerup(): void;
|
8
14
|
protected render(): TemplateResult;
|
15
|
+
protected firstUpdated(): void;
|
9
16
|
}
|
package/src/Underlay.dev.js
CHANGED
@@ -19,14 +19,31 @@ import styles from "./underlay.css.js";
|
|
19
19
|
export class Underlay extends SpectrumElement {
|
20
20
|
constructor() {
|
21
21
|
super(...arguments);
|
22
|
+
this.canClick = false;
|
22
23
|
this.open = false;
|
23
24
|
}
|
24
25
|
static get styles() {
|
25
26
|
return [styles];
|
26
27
|
}
|
28
|
+
click() {
|
29
|
+
this.dispatchEvent(new Event("close"));
|
30
|
+
}
|
31
|
+
handlePointerdown() {
|
32
|
+
this.canClick = true;
|
33
|
+
}
|
34
|
+
handlePointerup() {
|
35
|
+
if (this.canClick) {
|
36
|
+
this.click();
|
37
|
+
}
|
38
|
+
this.canClick = false;
|
39
|
+
}
|
27
40
|
render() {
|
28
41
|
return html``;
|
29
42
|
}
|
43
|
+
firstUpdated() {
|
44
|
+
this.addEventListener("pointerdown", this.handlePointerdown);
|
45
|
+
this.addEventListener("pointerup", this.handlePointerup);
|
46
|
+
}
|
30
47
|
}
|
31
48
|
__decorateClass([
|
32
49
|
property({ type: Boolean, reflect: true })
|
package/src/Underlay.dev.js.map
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"version": 3,
|
3
3
|
"sources": ["Underlay.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 SpectrumElement,\n TemplateResult,\n} from '@spectrum-web-components/base';\nimport { property } from '@spectrum-web-components/base/src/decorators.js';\n\nimport styles from './underlay.css.js';\n\n/**\n * @element sp-underlay\n */\nexport class Underlay extends SpectrumElement {\n public static override get styles(): CSSResultArray {\n return [styles];\n }\n\n @property({ type: Boolean, reflect: true })\n public open = false;\n\n protected override render(): TemplateResult {\n return html``;\n }\n}\n"],
|
5
|
-
"mappings": ";;;;;;;;;;;;AAYA;AAAA,EAEI;AAAA,EACA;AAAA,OAEG;AACP,SAAS,gBAAgB;AAEzB,OAAO,YAAY;
|
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 SpectrumElement,\n TemplateResult,\n} from '@spectrum-web-components/base';\nimport { property } from '@spectrum-web-components/base/src/decorators.js';\n\nimport styles from './underlay.css.js';\n\n/**\n * @element sp-underlay\n *\n * @fires close - When the underlay is \"clicked\" and the consuming pattern should chose whether to close based on that interaction\n */\nexport class Underlay extends SpectrumElement {\n public static override get styles(): CSSResultArray {\n return [styles];\n }\n\n private canClick = false;\n\n @property({ type: Boolean, reflect: true })\n public open = false;\n\n public override click(): void {\n this.dispatchEvent(new Event('close'));\n }\n\n protected handlePointerdown(): void {\n this.canClick = true;\n }\n\n protected handlePointerup(): void {\n if (this.canClick) {\n this.click();\n }\n this.canClick = false;\n }\n\n protected override render(): TemplateResult {\n return html``;\n }\n\n protected override firstUpdated(): void {\n this.addEventListener('pointerdown', this.handlePointerdown);\n this.addEventListener('pointerup', this.handlePointerup);\n }\n}\n"],
|
5
|
+
"mappings": ";;;;;;;;;;;;AAYA;AAAA,EAEI;AAAA,EACA;AAAA,OAEG;AACP,SAAS,gBAAgB;AAEzB,OAAO,YAAY;AAOZ,aAAM,iBAAiB,gBAAgB;AAAA,EAAvC;AAAA;AAKH,SAAQ,WAAW;AAGnB,SAAO,OAAO;AAAA;AAAA,EAPd,WAA2B,SAAyB;AAChD,WAAO,CAAC,MAAM;AAAA,EAClB;AAAA,EAOgB,QAAc;AAC1B,SAAK,cAAc,IAAI,MAAM,OAAO,CAAC;AAAA,EACzC;AAAA,EAEU,oBAA0B;AAChC,SAAK,WAAW;AAAA,EACpB;AAAA,EAEU,kBAAwB;AAC9B,QAAI,KAAK,UAAU;AACf,WAAK,MAAM;AAAA,IACf;AACA,SAAK,WAAW;AAAA,EACpB;AAAA,EAEmB,SAAyB;AACxC,WAAO;AAAA,EACX;AAAA,EAEmB,eAAqB;AACpC,SAAK,iBAAiB,eAAe,KAAK,iBAAiB;AAC3D,SAAK,iBAAiB,aAAa,KAAK,eAAe;AAAA,EAC3D;AACJ;AAzBW;AAAA,EADN,SAAS,EAAE,MAAM,SAAS,SAAS,KAAK,CAAC;AAAA,GAPjC,SAQF;",
|
6
6
|
"names": []
|
7
7
|
}
|
package/src/Underlay.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
"use strict";var
|
1
|
+
"use strict";var d=Object.defineProperty;var p=Object.getOwnPropertyDescriptor;var s=(i,t,o,r)=>{for(var e=r>1?void 0:r?p(t,o):t,n=i.length-1,l;n>=0;n--)(l=i[n])&&(e=(r?l(t,o,e):l(e))||e);return r&&e&&d(t,o,e),e};import{html as c,SpectrumElement as a}from"@spectrum-web-components/base";import{property as h}from"@spectrum-web-components/base/src/decorators.js";import u from"./underlay.css.js";export class Underlay extends a{constructor(){super(...arguments);this.canClick=!1;this.open=!1}static get styles(){return[u]}click(){this.dispatchEvent(new Event("close"))}handlePointerdown(){this.canClick=!0}handlePointerup(){this.canClick&&this.click(),this.canClick=!1}render(){return c``}firstUpdated(){this.addEventListener("pointerdown",this.handlePointerdown),this.addEventListener("pointerup",this.handlePointerup)}}s([h({type:Boolean,reflect:!0})],Underlay.prototype,"open",2);
|
2
2
|
//# sourceMappingURL=Underlay.js.map
|
package/src/Underlay.js.map
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"version": 3,
|
3
3
|
"sources": ["Underlay.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 SpectrumElement,\n TemplateResult,\n} from '@spectrum-web-components/base';\nimport { property } from '@spectrum-web-components/base/src/decorators.js';\n\nimport styles from './underlay.css.js';\n\n/**\n * @element sp-underlay\n */\nexport class Underlay extends SpectrumElement {\n public static override get styles(): CSSResultArray {\n return [styles];\n }\n\n @property({ type: Boolean, reflect: true })\n public open = false;\n\n protected override render(): TemplateResult {\n return html``;\n }\n}\n"],
|
5
|
-
"mappings": "qNAYA,OAEI,QAAAA,EACA,mBAAAC,MAEG,gCACP,OAAS,YAAAC,MAAgB,kDAEzB,OAAOC,MAAY,
|
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 SpectrumElement,\n TemplateResult,\n} from '@spectrum-web-components/base';\nimport { property } from '@spectrum-web-components/base/src/decorators.js';\n\nimport styles from './underlay.css.js';\n\n/**\n * @element sp-underlay\n *\n * @fires close - When the underlay is \"clicked\" and the consuming pattern should chose whether to close based on that interaction\n */\nexport class Underlay extends SpectrumElement {\n public static override get styles(): CSSResultArray {\n return [styles];\n }\n\n private canClick = false;\n\n @property({ type: Boolean, reflect: true })\n public open = false;\n\n public override click(): void {\n this.dispatchEvent(new Event('close'));\n }\n\n protected handlePointerdown(): void {\n this.canClick = true;\n }\n\n protected handlePointerup(): void {\n if (this.canClick) {\n this.click();\n }\n this.canClick = false;\n }\n\n protected override render(): TemplateResult {\n return html``;\n }\n\n protected override firstUpdated(): void {\n this.addEventListener('pointerdown', this.handlePointerdown);\n this.addEventListener('pointerup', this.handlePointerup);\n }\n}\n"],
|
5
|
+
"mappings": "qNAYA,OAEI,QAAAA,EACA,mBAAAC,MAEG,gCACP,OAAS,YAAAC,MAAgB,kDAEzB,OAAOC,MAAY,oBAOZ,aAAM,iBAAiBF,CAAgB,CAAvC,kCAKH,KAAQ,SAAW,GAGnB,KAAO,KAAO,GAPd,WAA2B,QAAyB,CAChD,MAAO,CAACE,CAAM,CAClB,CAOgB,OAAc,CAC1B,KAAK,cAAc,IAAI,MAAM,OAAO,CAAC,CACzC,CAEU,mBAA0B,CAChC,KAAK,SAAW,EACpB,CAEU,iBAAwB,CAC1B,KAAK,UACL,KAAK,MAAM,EAEf,KAAK,SAAW,EACpB,CAEmB,QAAyB,CACxC,OAAOH,GACX,CAEmB,cAAqB,CACpC,KAAK,iBAAiB,cAAe,KAAK,iBAAiB,EAC3D,KAAK,iBAAiB,YAAa,KAAK,eAAe,CAC3D,CACJ,CAzBWI,EAAA,CADNF,EAAS,CAAE,KAAM,QAAS,QAAS,EAAK,CAAC,GAPjC,SAQF",
|
6
6
|
"names": ["html", "SpectrumElement", "property", "styles", "__decorateClass"]
|
7
7
|
}
|
@@ -1,12 +1,14 @@
|
|
1
1
|
"use strict";
|
2
2
|
import { css } from "@spectrum-web-components/base";
|
3
3
|
const styles = css`
|
4
|
-
:host{
|
5
|
-
--spectrum-animation-duration-100
|
6
|
-
)
|
7
|
-
--spectrum-animation-duration-
|
8
|
-
)
|
9
|
-
--mod-overlay-animation-duration
|
4
|
+
:host{opacity:0;pointer-events:none;transition:transform var(
|
5
|
+
--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)
|
6
|
+
) ease-in-out,opacity var(
|
7
|
+
--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)
|
8
|
+
) ease-in-out,visibility 0s linear var(
|
9
|
+
--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)
|
10
|
+
);visibility:hidden}:host([open]){opacity:1;pointer-events:auto;transition-delay:var(
|
11
|
+
--mod-overlay-animation-duration-opened,var(--spectrum-animation-duration-0,0s)
|
10
12
|
);visibility:visible}:host{--spectrum-underlay-background-entry-animation-delay:var(
|
11
13
|
--spectrum-animation-duration-0
|
12
14
|
);--spectrum-underlay-background-exit-animation-ease:var(
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"version": 3,
|
3
3
|
"sources": ["spectrum-underlay.css.ts"],
|
4
|
-
"sourcesContent": ["/*\nCopyright 2024 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{
|
5
|
-
"mappings": ";AAWA,SAAS,WAAW;AACpB,MAAM,SAAS;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;
|
4
|
+
"sourcesContent": ["/*\nCopyright 2024 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{opacity:0;pointer-events:none;transition:transform var(\n--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)\n) ease-in-out,opacity var(\n--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)\n) ease-in-out,visibility 0s linear var(\n--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)\n);visibility:hidden}:host([open]){opacity:1;pointer-events:auto;transition-delay:var(\n--mod-overlay-animation-duration-opened,var(--spectrum-animation-duration-0,0s)\n);visibility:visible}:host{--spectrum-underlay-background-entry-animation-delay:var(\n--spectrum-animation-duration-0\n);--spectrum-underlay-background-exit-animation-ease:var(\n--spectrum-animation-ease-in\n);--spectrum-underlay-background-entry-animation-ease:var(\n--spectrum-animation-ease-out\n);--spectrum-underlay-background-entry-animation-duration:var(\n--spectrum-animation-duration-600\n);--spectrum-underlay-background-exit-animation-duration:var(\n--spectrum-animation-duration-300\n);--spectrum-underlay-background-exit-animation-delay:var(\n--spectrum-animation-duration-200\n);--spectrum-underlay-background-color:rgba(var(--spectrum-black-rgb),var(--spectrum-overlay-opacity))}:host{background-color:var(\n--mod-underlay-background-color,var(--spectrum-underlay-background-color)\n);inset-block:0;inset-inline:0;overflow:hidden;position:fixed;transition:opacity var(\n--mod-underlay-background-exit-animation-duration,var(--spectrum-underlay-background-exit-animation-duration)\n) var(\n--mod-underlay-background-exit-animation-ease,var(--spectrum-underlay-background-exit-animation-ease)\n) var(\n--mod-underlay-background-exit-animation-delay,var(--spectrum-underlay-background-exit-animation-delay)\n),visibility 0s linear calc(var(\n--mod-underlay-background-exit-animation-delay,\nvar(--spectrum-underlay-background-exit-animation-delay)\n) + var(\n--mod-underlay-background-exit-animation-duration,\nvar(\n--spectrum-underlay-background-exit-animation-duration\n)\n));z-index:1}:host([open]){transition:opacity var(\n--mod-underlay-background-entry-animation-duration,var(--spectrum-underlay-background-entry-animation-duration)\n) var(\n--mod-underlay-background-entry-animation-ease,var(--spectrum-underlay-background-entry-animation-ease)\n) var(\n--mod-underlay-background-entry-animation-delay,var(--spectrum-underlay-background-entry-animation-delay)\n)}\n`;\nexport default styles;"],
|
5
|
+
"mappings": ";AAWA,SAAS,WAAW;AACpB,MAAM,SAAS;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AA6Cf,eAAe;",
|
6
6
|
"names": []
|
7
7
|
}
|
@@ -1,10 +1,12 @@
|
|
1
1
|
"use strict";import{css as a}from"@spectrum-web-components/base";const n=a`
|
2
|
-
:host{
|
3
|
-
--spectrum-animation-duration-100
|
4
|
-
)
|
5
|
-
--spectrum-animation-duration-
|
6
|
-
)
|
7
|
-
--mod-overlay-animation-duration
|
2
|
+
:host{opacity:0;pointer-events:none;transition:transform var(
|
3
|
+
--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)
|
4
|
+
) ease-in-out,opacity var(
|
5
|
+
--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)
|
6
|
+
) ease-in-out,visibility 0s linear var(
|
7
|
+
--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)
|
8
|
+
);visibility:hidden}:host([open]){opacity:1;pointer-events:auto;transition-delay:var(
|
9
|
+
--mod-overlay-animation-duration-opened,var(--spectrum-animation-duration-0,0s)
|
8
10
|
);visibility:visible}:host{--spectrum-underlay-background-entry-animation-delay:var(
|
9
11
|
--spectrum-animation-duration-0
|
10
12
|
);--spectrum-underlay-background-exit-animation-ease:var(
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"version": 3,
|
3
3
|
"sources": ["spectrum-underlay.css.ts"],
|
4
|
-
"sourcesContent": ["/*\nCopyright 2024 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{
|
5
|
-
"mappings": "aAWA,OAAS,OAAAA,MAAW,gCACpB,MAAMC,EAASD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,
|
4
|
+
"sourcesContent": ["/*\nCopyright 2024 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{opacity:0;pointer-events:none;transition:transform var(\n--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)\n) ease-in-out,opacity var(\n--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)\n) ease-in-out,visibility 0s linear var(\n--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)\n);visibility:hidden}:host([open]){opacity:1;pointer-events:auto;transition-delay:var(\n--mod-overlay-animation-duration-opened,var(--spectrum-animation-duration-0,0s)\n);visibility:visible}:host{--spectrum-underlay-background-entry-animation-delay:var(\n--spectrum-animation-duration-0\n);--spectrum-underlay-background-exit-animation-ease:var(\n--spectrum-animation-ease-in\n);--spectrum-underlay-background-entry-animation-ease:var(\n--spectrum-animation-ease-out\n);--spectrum-underlay-background-entry-animation-duration:var(\n--spectrum-animation-duration-600\n);--spectrum-underlay-background-exit-animation-duration:var(\n--spectrum-animation-duration-300\n);--spectrum-underlay-background-exit-animation-delay:var(\n--spectrum-animation-duration-200\n);--spectrum-underlay-background-color:rgba(var(--spectrum-black-rgb),var(--spectrum-overlay-opacity))}:host{background-color:var(\n--mod-underlay-background-color,var(--spectrum-underlay-background-color)\n);inset-block:0;inset-inline:0;overflow:hidden;position:fixed;transition:opacity var(\n--mod-underlay-background-exit-animation-duration,var(--spectrum-underlay-background-exit-animation-duration)\n) var(\n--mod-underlay-background-exit-animation-ease,var(--spectrum-underlay-background-exit-animation-ease)\n) var(\n--mod-underlay-background-exit-animation-delay,var(--spectrum-underlay-background-exit-animation-delay)\n),visibility 0s linear calc(var(\n--mod-underlay-background-exit-animation-delay,\nvar(--spectrum-underlay-background-exit-animation-delay)\n) + var(\n--mod-underlay-background-exit-animation-duration,\nvar(\n--spectrum-underlay-background-exit-animation-duration\n)\n));z-index:1}:host([open]){transition:opacity var(\n--mod-underlay-background-entry-animation-duration,var(--spectrum-underlay-background-entry-animation-duration)\n) var(\n--mod-underlay-background-entry-animation-ease,var(--spectrum-underlay-background-entry-animation-ease)\n) var(\n--mod-underlay-background-entry-animation-delay,var(--spectrum-underlay-background-entry-animation-delay)\n)}\n`;\nexport default styles;"],
|
5
|
+
"mappings": "aAWA,OAAS,OAAAA,MAAW,gCACpB,MAAMC,EAASD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA6Cf,eAAeC",
|
6
6
|
"names": ["css", "styles"]
|
7
7
|
}
|
package/src/underlay.css.dev.js
CHANGED
@@ -1,12 +1,14 @@
|
|
1
1
|
"use strict";
|
2
2
|
import { css } from "@spectrum-web-components/base";
|
3
3
|
const styles = css`
|
4
|
-
:host{
|
5
|
-
--spectrum-animation-duration-100
|
6
|
-
)
|
7
|
-
--spectrum-animation-duration-
|
8
|
-
)
|
9
|
-
--mod-overlay-animation-duration
|
4
|
+
:host{opacity:0;pointer-events:none;transition:transform var(
|
5
|
+
--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)
|
6
|
+
) ease-in-out,opacity var(
|
7
|
+
--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)
|
8
|
+
) ease-in-out,visibility 0s linear var(
|
9
|
+
--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)
|
10
|
+
);visibility:hidden}:host([open]){opacity:1;pointer-events:auto;transition-delay:var(
|
11
|
+
--mod-overlay-animation-duration-opened,var(--spectrum-animation-duration-0,0s)
|
10
12
|
);visibility:visible}:host{--spectrum-underlay-background-entry-animation-delay:var(
|
11
13
|
--spectrum-animation-duration-0
|
12
14
|
);--spectrum-underlay-background-exit-animation-ease:var(
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"version": 3,
|
3
3
|
"sources": ["underlay.css.ts"],
|
4
|
-
"sourcesContent": ["/*\nCopyright 2024 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{
|
5
|
-
"mappings": ";AAWA,SAAS,WAAW;AACpB,MAAM,SAAS;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;
|
4
|
+
"sourcesContent": ["/*\nCopyright 2024 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{opacity:0;pointer-events:none;transition:transform var(\n--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)\n) ease-in-out,opacity var(\n--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)\n) ease-in-out,visibility 0s linear var(\n--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)\n);visibility:hidden}:host([open]){opacity:1;pointer-events:auto;transition-delay:var(\n--mod-overlay-animation-duration-opened,var(--spectrum-animation-duration-0,0s)\n);visibility:visible}:host{--spectrum-underlay-background-entry-animation-delay:var(\n--spectrum-animation-duration-0\n);--spectrum-underlay-background-exit-animation-ease:var(\n--spectrum-animation-ease-in\n);--spectrum-underlay-background-entry-animation-ease:var(\n--spectrum-animation-ease-out\n);--spectrum-underlay-background-entry-animation-duration:var(\n--spectrum-animation-duration-600\n);--spectrum-underlay-background-exit-animation-duration:var(\n--spectrum-animation-duration-300\n);--spectrum-underlay-background-exit-animation-delay:var(\n--spectrum-animation-duration-200\n);--spectrum-underlay-background-color:rgba(var(--spectrum-black-rgb),var(--spectrum-overlay-opacity))}:host{background-color:var(\n--mod-underlay-background-color,var(--spectrum-underlay-background-color)\n);inset-block:0;inset-inline:0;overflow:hidden;position:fixed;transition:opacity var(\n--mod-underlay-background-exit-animation-duration,var(--spectrum-underlay-background-exit-animation-duration)\n) var(\n--mod-underlay-background-exit-animation-ease,var(--spectrum-underlay-background-exit-animation-ease)\n) var(\n--mod-underlay-background-exit-animation-delay,var(--spectrum-underlay-background-exit-animation-delay)\n),visibility 0s linear calc(var(\n--mod-underlay-background-exit-animation-delay,\nvar(--spectrum-underlay-background-exit-animation-delay)\n) + var(\n--mod-underlay-background-exit-animation-duration,\nvar(\n--spectrum-underlay-background-exit-animation-duration\n)\n));z-index:1}:host([open]){transition:opacity var(\n--mod-underlay-background-entry-animation-duration,var(--spectrum-underlay-background-entry-animation-duration)\n) var(\n--mod-underlay-background-entry-animation-ease,var(--spectrum-underlay-background-entry-animation-ease)\n) var(\n--mod-underlay-background-entry-animation-delay,var(--spectrum-underlay-background-entry-animation-delay)\n)}\n`;\nexport default styles;"],
|
5
|
+
"mappings": ";AAWA,SAAS,WAAW;AACpB,MAAM,SAAS;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AA6Cf,eAAe;",
|
6
6
|
"names": []
|
7
7
|
}
|
package/src/underlay.css.js
CHANGED
@@ -1,10 +1,12 @@
|
|
1
1
|
"use strict";import{css as a}from"@spectrum-web-components/base";const n=a`
|
2
|
-
:host{
|
3
|
-
--spectrum-animation-duration-100
|
4
|
-
)
|
5
|
-
--spectrum-animation-duration-
|
6
|
-
)
|
7
|
-
--mod-overlay-animation-duration
|
2
|
+
:host{opacity:0;pointer-events:none;transition:transform var(
|
3
|
+
--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)
|
4
|
+
) ease-in-out,opacity var(
|
5
|
+
--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)
|
6
|
+
) ease-in-out,visibility 0s linear var(
|
7
|
+
--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)
|
8
|
+
);visibility:hidden}:host([open]){opacity:1;pointer-events:auto;transition-delay:var(
|
9
|
+
--mod-overlay-animation-duration-opened,var(--spectrum-animation-duration-0,0s)
|
8
10
|
);visibility:visible}:host{--spectrum-underlay-background-entry-animation-delay:var(
|
9
11
|
--spectrum-animation-duration-0
|
10
12
|
);--spectrum-underlay-background-exit-animation-ease:var(
|
package/src/underlay.css.js.map
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"version": 3,
|
3
3
|
"sources": ["underlay.css.ts"],
|
4
|
-
"sourcesContent": ["/*\nCopyright 2024 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{
|
5
|
-
"mappings": "aAWA,OAAS,OAAAA,MAAW,gCACpB,MAAMC,EAASD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,
|
4
|
+
"sourcesContent": ["/*\nCopyright 2024 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{opacity:0;pointer-events:none;transition:transform var(\n--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)\n) ease-in-out,opacity var(\n--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)\n) ease-in-out,visibility 0s linear var(\n--mod-overlay-animation-duration,var(--spectrum-animation-duration-100,.13s)\n);visibility:hidden}:host([open]){opacity:1;pointer-events:auto;transition-delay:var(\n--mod-overlay-animation-duration-opened,var(--spectrum-animation-duration-0,0s)\n);visibility:visible}:host{--spectrum-underlay-background-entry-animation-delay:var(\n--spectrum-animation-duration-0\n);--spectrum-underlay-background-exit-animation-ease:var(\n--spectrum-animation-ease-in\n);--spectrum-underlay-background-entry-animation-ease:var(\n--spectrum-animation-ease-out\n);--spectrum-underlay-background-entry-animation-duration:var(\n--spectrum-animation-duration-600\n);--spectrum-underlay-background-exit-animation-duration:var(\n--spectrum-animation-duration-300\n);--spectrum-underlay-background-exit-animation-delay:var(\n--spectrum-animation-duration-200\n);--spectrum-underlay-background-color:rgba(var(--spectrum-black-rgb),var(--spectrum-overlay-opacity))}:host{background-color:var(\n--mod-underlay-background-color,var(--spectrum-underlay-background-color)\n);inset-block:0;inset-inline:0;overflow:hidden;position:fixed;transition:opacity var(\n--mod-underlay-background-exit-animation-duration,var(--spectrum-underlay-background-exit-animation-duration)\n) var(\n--mod-underlay-background-exit-animation-ease,var(--spectrum-underlay-background-exit-animation-ease)\n) var(\n--mod-underlay-background-exit-animation-delay,var(--spectrum-underlay-background-exit-animation-delay)\n),visibility 0s linear calc(var(\n--mod-underlay-background-exit-animation-delay,\nvar(--spectrum-underlay-background-exit-animation-delay)\n) + var(\n--mod-underlay-background-exit-animation-duration,\nvar(\n--spectrum-underlay-background-exit-animation-duration\n)\n));z-index:1}:host([open]){transition:opacity var(\n--mod-underlay-background-entry-animation-duration,var(--spectrum-underlay-background-entry-animation-duration)\n) var(\n--mod-underlay-background-entry-animation-ease,var(--spectrum-underlay-background-entry-animation-ease)\n) var(\n--mod-underlay-background-entry-animation-delay,var(--spectrum-underlay-background-entry-animation-delay)\n)}\n`;\nexport default styles;"],
|
5
|
+
"mappings": "aAWA,OAAS,OAAAA,MAAW,gCACpB,MAAMC,EAASD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA6Cf,eAAeC",
|
6
6
|
"names": ["css", "styles"]
|
7
7
|
}
|