@spectrum-web-components/link 0.13.0-devmode.0 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -4
- package/sp-link.js +1 -2
- package/sp-link.js.map +1 -1
- package/src/Link.js +1 -40
- package/src/Link.js.map +1 -1
- package/src/index.js +1 -1
- package/src/index.js.map +1 -1
- package/src/link.css.js +2 -4
- package/src/link.css.js.map +1 -1
- package/src/spectrum-link.css.js +2 -4
- package/src/spectrum-link.css.js.map +1 -1
- package/stories/link-sizes.stories.js +4 -13
- package/stories/link-sizes.stories.js.map +1 -1
- package/stories/link.stories.js +9 -39
- package/stories/link.stories.js.map +1 -1
- package/test/benchmark/test-basic.js +1 -4
- package/test/benchmark/test-basic.js.map +1 -1
- package/test/link-sizes.test-vrt.js +1 -3
- package/test/link-sizes.test-vrt.js.map +1 -1
- package/test/link.test-vrt.js +1 -3
- package/test/link.test-vrt.js.map +1 -1
- package/test/link.test.js +6 -50
- package/test/link.test.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spectrum-web-components/link",
|
|
3
|
-
"version": "0.13.0
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"lit-html"
|
|
58
58
|
],
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@spectrum-web-components/base": "^0.
|
|
61
|
-
"@spectrum-web-components/shared": "^0.15.0
|
|
60
|
+
"@spectrum-web-components/base": "^0.7.0",
|
|
61
|
+
"@spectrum-web-components/shared": "^0.15.0",
|
|
62
62
|
"tslib": "^2.0.0"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"./sp-*.js",
|
|
71
71
|
"./**/*.dev.js"
|
|
72
72
|
],
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "05c81318844160db3f8156144106e643507fef97"
|
|
74
74
|
}
|
package/sp-link.js
CHANGED
package/sp-link.js.map
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["sp-link.ts"],
|
|
4
4
|
"sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { Link } from './src/Link.js';\n\ncustomElements.define('sp-link', Link);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-link': Link;\n }\n}\n"],
|
|
5
|
-
"mappings": "AAWA
|
|
5
|
+
"mappings": "AAWA,qCAEA,eAAe,OAAO,UAAW,CAAI",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/src/Link.js
CHANGED
|
@@ -1,41 +1,2 @@
|
|
|
1
|
-
var
|
|
2
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
-
var __decorateClass = (decorators, target, key, kind) => {
|
|
4
|
-
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
|
|
5
|
-
for (var i = decorators.length - 1, decorator; i >= 0; i--)
|
|
6
|
-
if (decorator = decorators[i])
|
|
7
|
-
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
|
|
8
|
-
if (kind && result)
|
|
9
|
-
__defProp(target, key, result);
|
|
10
|
-
return result;
|
|
11
|
-
};
|
|
12
|
-
import {
|
|
13
|
-
SizedMixin
|
|
14
|
-
} from "@spectrum-web-components/base";
|
|
15
|
-
import {
|
|
16
|
-
property,
|
|
17
|
-
query
|
|
18
|
-
} from "@spectrum-web-components/base/src/decorators.js";
|
|
19
|
-
import { LikeAnchor } from "@spectrum-web-components/shared/src/like-anchor.js";
|
|
20
|
-
import { Focusable } from "@spectrum-web-components/shared/src/focusable.js";
|
|
21
|
-
import linkStyles from "./link.css.js";
|
|
22
|
-
export class Link extends SizedMixin(LikeAnchor(Focusable), {
|
|
23
|
-
noDefaultSize: true
|
|
24
|
-
}) {
|
|
25
|
-
static get styles() {
|
|
26
|
-
return [linkStyles];
|
|
27
|
-
}
|
|
28
|
-
get focusElement() {
|
|
29
|
-
return this.anchorElement;
|
|
30
|
-
}
|
|
31
|
-
render() {
|
|
32
|
-
return this.renderAnchor({ id: "anchor" });
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
__decorateClass([
|
|
36
|
-
query("#anchor")
|
|
37
|
-
], Link.prototype, "anchorElement", 2);
|
|
38
|
-
__decorateClass([
|
|
39
|
-
property({ type: String, reflect: true })
|
|
40
|
-
], Link.prototype, "variant", 2);
|
|
1
|
+
var m=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var c=(o,r,n,t)=>{for(var e=t>1?void 0:t?u(r,n):r,i=o.length-1,l;i>=0;i--)(l=o[i])&&(e=(t?l(r,n,e):l(e))||e);return t&&e&&m(r,n,e),e};import{SizedMixin as s}from"@spectrum-web-components/base";import{property as a,query as p}from"@spectrum-web-components/base/src/decorators.js";import{LikeAnchor as d}from"@spectrum-web-components/shared/src/like-anchor.js";import{Focusable as f}from"@spectrum-web-components/shared/src/focusable.js";import h from"./link.css.js";export class Link extends s(d(f),{noDefaultSize:!0}){static get styles(){return[h]}get focusElement(){return this.anchorElement}render(){return this.renderAnchor({id:"anchor"})}}c([p("#anchor")],Link.prototype,"anchorElement",2),c([a({type:String,reflect:!0})],Link.prototype,"variant",2);
|
|
41
2
|
//# sourceMappingURL=Link.js.map
|
package/src/Link.js.map
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["Link.ts"],
|
|
4
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 SizedMixin,\n TemplateResult,\n} from '@spectrum-web-components/base';\nimport {\n property,\n query,\n} from '@spectrum-web-components/base/src/decorators.js';\nimport { LikeAnchor } from '@spectrum-web-components/shared/src/like-anchor.js';\nimport { Focusable } from '@spectrum-web-components/shared/src/focusable.js';\n\nimport linkStyles from './link.css.js';\n\n/**\n * @element sp-link\n *\n * @attr quiet - uses quiet styles or not\n * @attr over-background - uses over background styles or not\n */\nexport class Link extends SizedMixin(LikeAnchor(Focusable), {\n noDefaultSize: true,\n}) {\n public static override get styles(): CSSResultArray {\n return [linkStyles];\n }\n\n @query('#anchor')\n anchorElement!: HTMLAnchorElement;\n\n @property({ type: String, reflect: true })\n public variant: 'secondary' | undefined;\n\n public override get focusElement(): HTMLElement {\n return this.anchorElement;\n }\n\n protected override render(): TemplateResult {\n return this.renderAnchor({ id: 'anchor' });\n }\n}\n"],
|
|
5
|
-
"mappings": "
|
|
5
|
+
"mappings": "wMAYA,2DAKA,sFAIA,gFACA,6EAEA,6BAQO,aAAM,YAAa,GAAW,EAAW,CAAS,EAAG,CACxD,cAAe,EACnB,CAAC,CAAE,WAC4B,SAAyB,CAChD,MAAO,CAAC,CAAU,CACtB,IAQoB,eAA4B,CAC5C,MAAO,MAAK,aAChB,CAEmB,QAAyB,CACxC,MAAO,MAAK,aAAa,CAAE,GAAI,QAAS,CAAC,CAC7C,CACJ,CAZI,GADA,AAAC,EAAM,SAAS,GAChB,AARG,KAQH,6BAGO,GADP,AAAC,EAAS,CAAE,KAAM,OAAQ,QAAS,EAAK,CAAC,GAClC,AAXJ,KAWI",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/src/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export*from"./Link.js";
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/src/index.js.map
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["index.ts"],
|
|
4
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*/\nexport * from './Link.js';\n"],
|
|
5
|
-
"mappings": "AAWA
|
|
5
|
+
"mappings": "AAWA",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/src/link.css.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
const styles = css`
|
|
1
|
+
import{css as r}from"@spectrum-web-components/base";const o=r`
|
|
3
2
|
:host([size=s]){--spectrum-link-primary-text-size:var(
|
|
4
3
|
--spectrum-link-s-primary-text-size,var(--spectrum-global-dimension-font-size-75)
|
|
5
4
|
)}:host([size=m]){--spectrum-link-primary-text-size:var(
|
|
@@ -27,6 +26,5 @@ const styles = css`
|
|
|
27
26
|
)}:host([over-background]) a:focus{color:var(
|
|
28
27
|
--spectrum-link-m-primary-overbackground-text-color-key-focus,var(--spectrum-alias-text-color-overbackground)
|
|
29
28
|
)}@media (forced-colors:active){:host([variant=secondary]) a{color:linktext}:host([variant=secondary]) a:hover{color:linktext}:host([variant=secondary]) a:active{color:linktext}:host([variant=secondary]) a:focus{color:linktext}}:host{display:inline}:host(:focus){outline:none}:host([href]) a.focus-visible{text-decoration:underline;-webkit-text-decoration-style:double;text-decoration-style:double}:host([href]) a:focus-visible{text-decoration:underline;-webkit-text-decoration-style:double;text-decoration-style:double}
|
|
30
|
-
`;
|
|
31
|
-
export default styles;
|
|
29
|
+
`;export default o;
|
|
32
30
|
//# sourceMappingURL=link.css.js.map
|
package/src/link.css.js.map
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["link.css.ts"],
|
|
4
4
|
"sourcesContent": ["/*\nCopyright 2022 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([size=s]){--spectrum-link-primary-text-size:var(\n--spectrum-link-s-primary-text-size,var(--spectrum-global-dimension-font-size-75)\n)}:host([size=m]){--spectrum-link-primary-text-size:var(\n--spectrum-link-m-primary-text-size,var(--spectrum-global-dimension-font-size-100)\n)}:host([size=l]){--spectrum-link-primary-text-size:var(\n--spectrum-link-l-primary-text-size,var(--spectrum-global-dimension-font-size-200)\n)}:host([size=xl]){--spectrum-link-primary-text-size:var(\n--spectrum-link-xl-primary-text-size,var(--spectrum-global-dimension-font-size-300)\n)}a{-webkit-text-decoration-skip:objects;background-color:transparent;cursor:pointer;font-size:var(--spectrum-link-primary-text-size);outline:none;transition:color var(--spectrum-global-animation-duration-100,.13s) ease-in-out}a,a.focus-visible,a.focus-visible{text-decoration:underline}a.focus-visible{-webkit-text-decoration-style:double;text-decoration-style:double}a:focus-visible{text-decoration:underline;-webkit-text-decoration-style:double;text-decoration-style:double}:host([quiet]) a{text-decoration:none}:host([quiet]) a:hover{text-decoration:underline}a{color:var(\n--spectrum-link-m-primary-text-color,var(--spectrum-alias-link-primary-text-color-default)\n)}a:hover{color:var(\n--spectrum-link-m-primary-text-color-hover,var(--spectrum-alias-link-primary-text-color-hover)\n)}a:active{color:var(\n--spectrum-link-m-primary-text-color-down,var(--spectrum-alias-link-primary-text-color-down)\n)}a.focus-visible{color:var(\n--spectrum-link-m-primary-text-color-key-focus,var(--spectrum-alias-link-primary-text-color-key-focus)\n)}a:focus-visible{color:var(\n--spectrum-link-m-primary-text-color-key-focus,var(--spectrum-alias-link-primary-text-color-key-focus)\n)}:host([variant=secondary]) a{color:inherit}:host([variant=secondary]) a:hover{color:inherit}:host([variant=secondary]) a:active{color:inherit}:host([variant=secondary]) a:focus{color:inherit}:host([over-background]) a{color:var(\n--spectrum-link-m-primary-overbackground-text-color,var(--spectrum-alias-text-color-overbackground)\n)}:host([over-background]) a:hover{color:var(\n--spectrum-link-m-primary-overbackground-text-color-hover,var(--spectrum-alias-text-color-overbackground)\n)}:host([over-background]) a:active{color:var(\n--spectrum-link-m-primary-overbackground-text-color-down,var(--spectrum-alias-text-color-overbackground)\n)}:host([over-background]) a:focus{color:var(\n--spectrum-link-m-primary-overbackground-text-color-key-focus,var(--spectrum-alias-text-color-overbackground)\n)}@media (forced-colors:active){:host([variant=secondary]) a{color:linktext}:host([variant=secondary]) a:hover{color:linktext}:host([variant=secondary]) a:active{color:linktext}:host([variant=secondary]) a:focus{color:linktext}}:host{display:inline}:host(:focus){outline:none}:host([href]) a.focus-visible{text-decoration:underline;-webkit-text-decoration-style:double;text-decoration-style:double}:host([href]) a:focus-visible{text-decoration:underline;-webkit-text-decoration-style:double;text-decoration-style:double}\n`;\nexport default styles;"],
|
|
5
|
-
"mappings": "AAWA
|
|
5
|
+
"mappings": "AAWA,oDACA,KAAM,GAAS;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,EA6Bf,cAAe",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/src/spectrum-link.css.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
const styles = css`
|
|
1
|
+
import{css as r}from"@spectrum-web-components/base";const o=r`
|
|
3
2
|
:host([size=s]){--spectrum-link-primary-text-size:var(
|
|
4
3
|
--spectrum-link-s-primary-text-size,var(--spectrum-global-dimension-font-size-75)
|
|
5
4
|
)}:host([size=m]){--spectrum-link-primary-text-size:var(
|
|
@@ -27,6 +26,5 @@ const styles = css`
|
|
|
27
26
|
)}:host([over-background]) a:focus{color:var(
|
|
28
27
|
--spectrum-link-m-primary-overbackground-text-color-key-focus,var(--spectrum-alias-text-color-overbackground)
|
|
29
28
|
)}@media (forced-colors:active){:host([variant=secondary]) a{color:linktext}:host([variant=secondary]) a:hover{color:linktext}:host([variant=secondary]) a:active{color:linktext}:host([variant=secondary]) a:focus{color:linktext}}
|
|
30
|
-
`;
|
|
31
|
-
export default styles;
|
|
29
|
+
`;export default o;
|
|
32
30
|
//# sourceMappingURL=spectrum-link.css.js.map
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["spectrum-link.css.ts"],
|
|
4
4
|
"sourcesContent": ["/*\nCopyright 2022 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([size=s]){--spectrum-link-primary-text-size:var(\n--spectrum-link-s-primary-text-size,var(--spectrum-global-dimension-font-size-75)\n)}:host([size=m]){--spectrum-link-primary-text-size:var(\n--spectrum-link-m-primary-text-size,var(--spectrum-global-dimension-font-size-100)\n)}:host([size=l]){--spectrum-link-primary-text-size:var(\n--spectrum-link-l-primary-text-size,var(--spectrum-global-dimension-font-size-200)\n)}:host([size=xl]){--spectrum-link-primary-text-size:var(\n--spectrum-link-xl-primary-text-size,var(--spectrum-global-dimension-font-size-300)\n)}a{-webkit-text-decoration-skip:objects;background-color:transparent;cursor:pointer;font-size:var(--spectrum-link-primary-text-size);outline:none;transition:color var(--spectrum-global-animation-duration-100,.13s) ease-in-out}a,a.focus-visible,a.focus-visible{text-decoration:underline}a.focus-visible{-webkit-text-decoration-style:double;text-decoration-style:double}a:focus-visible{text-decoration:underline;-webkit-text-decoration-style:double;text-decoration-style:double}:host([quiet]) a{text-decoration:none}:host([quiet]) a:hover{text-decoration:underline}a{color:var(\n--spectrum-link-m-primary-text-color,var(--spectrum-alias-link-primary-text-color-default)\n)}a:hover{color:var(\n--spectrum-link-m-primary-text-color-hover,var(--spectrum-alias-link-primary-text-color-hover)\n)}a:active{color:var(\n--spectrum-link-m-primary-text-color-down,var(--spectrum-alias-link-primary-text-color-down)\n)}a.focus-visible{color:var(\n--spectrum-link-m-primary-text-color-key-focus,var(--spectrum-alias-link-primary-text-color-key-focus)\n)}a:focus-visible{color:var(\n--spectrum-link-m-primary-text-color-key-focus,var(--spectrum-alias-link-primary-text-color-key-focus)\n)}:host([variant=secondary]) a{color:inherit}:host([variant=secondary]) a:hover{color:inherit}:host([variant=secondary]) a:active{color:inherit}:host([variant=secondary]) a:focus{color:inherit}:host([over-background]) a{color:var(\n--spectrum-link-m-primary-overbackground-text-color,var(--spectrum-alias-text-color-overbackground)\n)}:host([over-background]) a:hover{color:var(\n--spectrum-link-m-primary-overbackground-text-color-hover,var(--spectrum-alias-text-color-overbackground)\n)}:host([over-background]) a:active{color:var(\n--spectrum-link-m-primary-overbackground-text-color-down,var(--spectrum-alias-text-color-overbackground)\n)}:host([over-background]) a:focus{color:var(\n--spectrum-link-m-primary-overbackground-text-color-key-focus,var(--spectrum-alias-text-color-overbackground)\n)}@media (forced-colors:active){:host([variant=secondary]) a{color:linktext}:host([variant=secondary]) a:hover{color:linktext}:host([variant=secondary]) a:active{color:linktext}:host([variant=secondary]) a:focus{color:linktext}}\n`;\nexport default styles;"],
|
|
5
|
-
"mappings": "AAWA
|
|
5
|
+
"mappings": "AAWA,oDACA,KAAM,GAAS;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,EA6Bf,cAAe",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,19 +1,10 @@
|
|
|
1
|
-
import
|
|
2
|
-
import "@spectrum-web-components/link/sp-link.js";
|
|
3
|
-
export default {
|
|
4
|
-
component: "sp-link",
|
|
5
|
-
title: "Link/Sizes"
|
|
6
|
-
};
|
|
7
|
-
export const s = () => html`
|
|
1
|
+
import{html as e}from"@spectrum-web-components/base";import"@spectrum-web-components/link/sp-link.js";export default{component:"sp-link",title:"Link/Sizes"};export const s=()=>e`
|
|
8
2
|
<sp-link size="s" href="#">small link</sp-link>
|
|
9
|
-
|
|
10
|
-
export const m = () => html`
|
|
3
|
+
`,m=()=>e`
|
|
11
4
|
<sp-link size="m" href="#">medium link</sp-link>
|
|
12
|
-
|
|
13
|
-
export const L = () => html`
|
|
5
|
+
`,L=()=>e`
|
|
14
6
|
<sp-link size="l" href="#">large link</sp-link>
|
|
15
|
-
|
|
16
|
-
export const XL = () => html`
|
|
7
|
+
`,XL=()=>e`
|
|
17
8
|
<sp-link size="xl" href="#">extra large link</sp-link>
|
|
18
9
|
`;
|
|
19
10
|
//# sourceMappingURL=link-sizes.stories.js.map
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["link-sizes.stories.ts"],
|
|
4
4
|
"sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { html, TemplateResult } from '@spectrum-web-components/base';\n\nimport '@spectrum-web-components/link/sp-link.js';\n\nexport default {\n component: 'sp-link',\n title: 'Link/Sizes',\n};\n\nexport const s = (): TemplateResult => html`\n <sp-link size=\"s\" href=\"#\">small link</sp-link>\n`;\n\nexport const m = (): TemplateResult => html`\n <sp-link size=\"m\" href=\"#\">medium link</sp-link>\n`;\n\nexport const L = (): TemplateResult => html`\n <sp-link size=\"l\" href=\"#\">large link</sp-link>\n`;\n\nexport const XL = (): TemplateResult => html`\n <sp-link size=\"xl\" href=\"#\">extra large link</sp-link>\n`;\n"],
|
|
5
|
-
"mappings": "AAWA
|
|
5
|
+
"mappings": "AAWA,qDAEA,iDAEA,cAAe,CACX,UAAW,UACX,MAAO,YACX,EAEO,YAAM,GAAI,IAAsB;AAAA;AAAA,EAI1B,EAAI,IAAsB;AAAA;AAAA,EAI1B,EAAI,IAAsB;AAAA;AAAA,EAI1B,GAAK,IAAsB;AAAA;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/stories/link.stories.js
CHANGED
|
@@ -1,31 +1,12 @@
|
|
|
1
|
-
import
|
|
2
|
-
import "@spectrum-web-components/link/sp-link.js";
|
|
3
|
-
export default {
|
|
4
|
-
component: "sp-link",
|
|
5
|
-
title: "Link"
|
|
6
|
-
};
|
|
7
|
-
export const Default = () => {
|
|
8
|
-
return html`
|
|
1
|
+
import{html as e}from"@spectrum-web-components/base";import"@spectrum-web-components/link/sp-link.js";export default{component:"sp-link",title:"Link"};export const Default=()=>e`
|
|
9
2
|
This is a <sp-link href="#">link</sp-link> in a sentence.
|
|
10
|
-
|
|
11
|
-
};
|
|
12
|
-
export const Quiet = () => {
|
|
13
|
-
return html`
|
|
3
|
+
`,Quiet=()=>e`
|
|
14
4
|
This is a <sp-link quiet href="#">quiet link</sp-link> in a sentence.
|
|
15
|
-
|
|
16
|
-
};
|
|
17
|
-
export const secondary = () => {
|
|
18
|
-
return html`
|
|
5
|
+
`,secondary=()=>e`
|
|
19
6
|
This is a <sp-link variant="secondary" href="#">link</sp-link> in a sentence.
|
|
20
|
-
|
|
21
|
-
};
|
|
22
|
-
export const secondaryQuiet = () => {
|
|
23
|
-
return html`
|
|
7
|
+
`,secondaryQuiet=()=>e`
|
|
24
8
|
This is a <sp-link variant="secondary" quiet href="#">quiet link</sp-link> in a sentence.
|
|
25
|
-
|
|
26
|
-
};
|
|
27
|
-
export const overBackground = () => {
|
|
28
|
-
return html`
|
|
9
|
+
`,overBackground=()=>e`
|
|
29
10
|
<div
|
|
30
11
|
style="background-color: rgb(15, 121, 125); padding: 15px 20px; display: inline-block;"
|
|
31
12
|
>
|
|
@@ -35,10 +16,7 @@ export const overBackground = () => {
|
|
|
35
16
|
has a background.
|
|
36
17
|
</p>
|
|
37
18
|
</div>
|
|
38
|
-
|
|
39
|
-
};
|
|
40
|
-
export const overBackgroundQuiet = () => {
|
|
41
|
-
return html`
|
|
19
|
+
`,overBackgroundQuiet=()=>e`
|
|
42
20
|
<div
|
|
43
21
|
style="background-color: rgb(15, 121, 125); padding: 15px 20px; display: inline-block;"
|
|
44
22
|
>
|
|
@@ -48,19 +26,11 @@ export const overBackgroundQuiet = () => {
|
|
|
48
26
|
has a background.
|
|
49
27
|
</p>
|
|
50
28
|
</div>
|
|
51
|
-
|
|
52
|
-
};
|
|
53
|
-
export const Download = () => {
|
|
54
|
-
const blob = new Blob(["some text for the file"], {
|
|
55
|
-
type: "text/plain;charset=utf-8"
|
|
56
|
-
});
|
|
57
|
-
return html`
|
|
29
|
+
`,Download=()=>{const t=new Blob(["some text for the file"],{type:"text/plain;charset=utf-8"});return e`
|
|
58
30
|
This is a
|
|
59
|
-
<sp-link download="somefile.txt" href="${URL.createObjectURL(
|
|
31
|
+
<sp-link download="somefile.txt" href="${URL.createObjectURL(t)}">
|
|
60
32
|
downloadable file
|
|
61
33
|
</sp-link>
|
|
62
34
|
for you to click on.
|
|
63
|
-
|
|
64
|
-
};
|
|
65
|
-
overBackground.storyName = "Over Background";
|
|
35
|
+
`};overBackground.storyName="Over Background";
|
|
66
36
|
//# sourceMappingURL=link.stories.js.map
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["link.stories.ts"],
|
|
4
4
|
"sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { html, TemplateResult } from '@spectrum-web-components/base';\n\nimport '@spectrum-web-components/link/sp-link.js';\n\nexport default {\n component: 'sp-link',\n title: 'Link',\n};\n\nexport const Default = (): TemplateResult => {\n // prettier-ignore\n return html`\n This is a <sp-link href=\"#\">link</sp-link> in a sentence.\n `;\n};\n\nexport const Quiet = (): TemplateResult => {\n // prettier-ignore\n return html`\n This is a <sp-link quiet href=\"#\">quiet link</sp-link> in a sentence.\n `;\n};\n\nexport const secondary = (): TemplateResult => {\n // prettier-ignore\n return html`\n This is a <sp-link variant=\"secondary\" href=\"#\">link</sp-link> in a sentence.\n `;\n};\n\nexport const secondaryQuiet = (): TemplateResult => {\n // prettier-ignore\n return html`\n This is a <sp-link variant=\"secondary\" quiet href=\"#\">quiet link</sp-link> in a sentence.\n `;\n};\n\nexport const overBackground = (): TemplateResult => {\n return html`\n <div\n style=\"background-color: rgb(15, 121, 125); padding: 15px 20px; display: inline-block;\"\n >\n <p style=\"color: rgb(240, 240, 240);\">\n This\n <sp-link over-background href=\"#\">link</sp-link>\n has a background.\n </p>\n </div>\n `;\n};\n\nexport const overBackgroundQuiet = (): TemplateResult => {\n return html`\n <div\n style=\"background-color: rgb(15, 121, 125); padding: 15px 20px; display: inline-block;\"\n >\n <p style=\"color: rgb(240, 240, 240);\">\n This\n <sp-link over-background quiet href=\"#\">link</sp-link>\n has a background.\n </p>\n </div>\n `;\n};\n\nexport const Download = (): TemplateResult => {\n const blob = new Blob(['some text for the file'], {\n type: 'text/plain;charset=utf-8',\n });\n return html`\n This is a\n <sp-link download=\"somefile.txt\" href=\"${URL.createObjectURL(blob)}\">\n downloadable file\n </sp-link>\n for you to click on.\n `;\n};\n\noverBackground.storyName = 'Over Background';\n"],
|
|
5
|
-
"mappings": "AAWA
|
|
5
|
+
"mappings": "AAWA,qDAEA,iDAEA,cAAe,CACX,UAAW,UACX,MAAO,MACX,EAEO,YAAM,SAAU,IAEZ;AAAA;AAAA,MAKE,MAAQ,IAEV;AAAA;AAAA,MAKE,UAAY,IAEd;AAAA;AAAA,MAKE,eAAiB,IAEnB;AAAA;AAAA,MAKE,eAAiB,IACnB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,MAaE,oBAAsB,IACxB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,MAaE,SAAW,IAAsB,CAC1C,KAAM,GAAO,GAAI,MAAK,CAAC,wBAAwB,EAAG,CAC9C,KAAM,0BACV,CAAC,EACD,MAAO;AAAA;AAAA,iDAEsC,IAAI,gBAAgB,CAAI;AAAA;AAAA;AAAA;AAAA,KAKzE,EAEA,eAAe,UAAY",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { html } from "lit";
|
|
3
|
-
import { measureFixtureCreation } from "../../../../test/benchmark/helpers.js";
|
|
4
|
-
measureFixtureCreation(html`
|
|
1
|
+
import"@spectrum-web-components/link/sp-link.js";import{html as t}from"lit";import{measureFixtureCreation as r}from"../../../../test/benchmark/helpers.js";r(t`
|
|
5
2
|
<sp-link href="test_url" download="somefile.txt">Default Link</sp-link>
|
|
6
3
|
`);
|
|
7
4
|
//# sourceMappingURL=test-basic.js.map
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["test-basic.ts"],
|
|
4
4
|
"sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport '@spectrum-web-components/link/sp-link.js';\nimport { html } from 'lit';\nimport { measureFixtureCreation } from '../../../../test/benchmark/helpers.js';\n\nmeasureFixtureCreation(html`\n <sp-link href=\"test_url\" download=\"somefile.txt\">Default Link</sp-link>\n`);\n"],
|
|
5
|
-
"mappings": "AAYA
|
|
5
|
+
"mappings": "AAYA,iDACA,2BACA,+EAEA,EAAuB;AAAA;AAAA,CAEtB",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,4 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { regressVisuals } from "../../../test/visual/test.js";
|
|
3
|
-
regressVisuals("LinkSizesStories", stories);
|
|
1
|
+
import*as s from"../stories/link-sizes.stories.js";import{regressVisuals as r}from"../../../test/visual/test.js";r("LinkSizesStories",s);
|
|
4
2
|
//# sourceMappingURL=link-sizes.test-vrt.js.map
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["link-sizes.test-vrt.ts"],
|
|
4
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 * as stories from '../stories/link-sizes.stories.js';\nimport { regressVisuals } from '../../../test/visual/test.js';\n\nregressVisuals('LinkSizesStories', stories);\n"],
|
|
5
|
-
"mappings": "AAYA
|
|
5
|
+
"mappings": "AAYA,mDACA,8DAEA,EAAe,mBAAoB,CAAO",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/test/link.test-vrt.js
CHANGED
|
@@ -1,4 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { regressVisuals } from "../../../test/visual/test.js";
|
|
3
|
-
regressVisuals("LinkStories", stories);
|
|
1
|
+
import*as r from"../stories/link.stories.js";import{regressVisuals as s}from"../../../test/visual/test.js";s("LinkStories",r);
|
|
4
2
|
//# sourceMappingURL=link.test-vrt.js.map
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["link.test-vrt.ts"],
|
|
4
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 * as stories from '../stories/link.stories.js';\nimport { regressVisuals } from '../../../test/visual/test.js';\n\nregressVisuals('LinkStories', stories);\n"],
|
|
5
|
-
"mappings": "AAYA
|
|
5
|
+
"mappings": "AAYA,6CACA,8DAEA,EAAe,cAAe,CAAO",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/test/link.test.js
CHANGED
|
@@ -1,58 +1,14 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { elementUpdated, expect, fixture, html } from "@open-wc/testing";
|
|
3
|
-
import { testForLitDevWarnings } from "../../../test/testing-helpers.js";
|
|
4
|
-
describe("Link", () => {
|
|
5
|
-
testForLitDevWarnings(async () => await fixture(html`
|
|
1
|
+
import"@spectrum-web-components/link/sp-link.js";import{elementUpdated as i,expect as e,fixture as a,html as l}from"@open-wc/testing";import{testForLitDevWarnings as n}from"../../../test/testing-helpers.js";describe("Link",()=>{n(async()=>await a(l`
|
|
6
2
|
<sp-link href="test_url">Default Link</sp-link>
|
|
7
|
-
`))
|
|
8
|
-
it("loads", async () => {
|
|
9
|
-
const el = await fixture(html`
|
|
3
|
+
`)),it("loads",async()=>{const t=await a(l`
|
|
10
4
|
<sp-link href="test_url">Default Link</sp-link>
|
|
11
|
-
`);
|
|
12
|
-
await elementUpdated(el);
|
|
13
|
-
expect(el).to.not.be.undefined;
|
|
14
|
-
expect(el.textContent).to.include("Default Link");
|
|
15
|
-
await expect(el).to.be.accessible();
|
|
16
|
-
});
|
|
17
|
-
it("loads[download]", async () => {
|
|
18
|
-
const el = await fixture(html`
|
|
5
|
+
`);await i(t),e(t).to.not.be.undefined,e(t.textContent).to.include("Default Link"),await e(t).to.be.accessible()}),it("loads[download]",async()=>{const t=await a(l`
|
|
19
6
|
<sp-link href="test_url" download="somefile.txt">
|
|
20
7
|
Default Link
|
|
21
8
|
</sp-link>
|
|
22
|
-
`);
|
|
23
|
-
await elementUpdated(el);
|
|
24
|
-
expect(el).to.not.be.undefined;
|
|
25
|
-
expect(el.textContent).to.include("Default Link");
|
|
26
|
-
await expect(el).to.be.accessible();
|
|
27
|
-
});
|
|
28
|
-
it("loads[rel]", async () => {
|
|
29
|
-
const el = await fixture(html`
|
|
9
|
+
`);await i(t),e(t).to.not.be.undefined,e(t.textContent).to.include("Default Link"),await e(t).to.be.accessible()}),it("loads[rel]",async()=>{const t=await a(l`
|
|
30
10
|
<sp-link href="test_url" rel="external">Default Link</sp-link>
|
|
31
|
-
`);
|
|
32
|
-
await elementUpdated(el);
|
|
33
|
-
expect(el).to.not.be.undefined;
|
|
34
|
-
expect(el.focusElement.getAttribute("rel")).to.eq("external");
|
|
35
|
-
await expect(el).to.be.accessible();
|
|
36
|
-
});
|
|
37
|
-
it("manages the `size` atrbute", async () => {
|
|
38
|
-
const el = await fixture(html`
|
|
11
|
+
`);await i(t),e(t).to.not.be.undefined,e(t.focusElement.getAttribute("rel")).to.eq("external"),await e(t).to.be.accessible()}),it("manages the `size` atrbute",async()=>{const t=await a(l`
|
|
39
12
|
<sp-link href="test_url">Default Link</sp-link>
|
|
40
|
-
`);
|
|
41
|
-
await elementUpdated(el);
|
|
42
|
-
expect(el.size, "property 0: m").to.equal("m");
|
|
43
|
-
expect(el.getAttribute("size"), "attribute 0: null").to.be.null;
|
|
44
|
-
el.setAttribute("size", "xl");
|
|
45
|
-
await elementUpdated(el);
|
|
46
|
-
expect(el.size, "property 1: xl").to.equal("xl");
|
|
47
|
-
expect(el.getAttribute("size"), "attribute 1: xl").to.equal("xl");
|
|
48
|
-
el.removeAttribute("size");
|
|
49
|
-
await elementUpdated(el);
|
|
50
|
-
expect(el.size, "property 2: m").to.equal("m");
|
|
51
|
-
expect(el.getAttribute("size"), "attribute 2: null").to.be.null;
|
|
52
|
-
el.setAttribute("size", "m");
|
|
53
|
-
await elementUpdated(el);
|
|
54
|
-
expect(el.size, "property 3: m").to.equal("m");
|
|
55
|
-
expect(el.getAttribute("size"), "attribute 3: m").to.equal("m");
|
|
56
|
-
});
|
|
57
|
-
});
|
|
13
|
+
`);await i(t),e(t.size,"property 0: m").to.equal("m"),e(t.getAttribute("size"),"attribute 0: null").to.be.null,t.setAttribute("size","xl"),await i(t),e(t.size,"property 1: xl").to.equal("xl"),e(t.getAttribute("size"),"attribute 1: xl").to.equal("xl"),t.removeAttribute("size"),await i(t),e(t.size,"property 2: m").to.equal("m"),e(t.getAttribute("size"),"attribute 2: null").to.be.null,t.setAttribute("size","m"),await i(t),e(t.size,"property 3: m").to.equal("m"),e(t.getAttribute("size"),"attribute 3: m").to.equal("m")})});
|
|
58
14
|
//# sourceMappingURL=link.test.js.map
|
package/test/link.test.js.map
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["link.test.ts"],
|
|
4
4
|
"sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport '@spectrum-web-components/link/sp-link.js';\nimport { Link } from '@spectrum-web-components/link';\nimport { elementUpdated, expect, fixture, html } from '@open-wc/testing';\nimport { testForLitDevWarnings } from '../../../test/testing-helpers.js';\n\ndescribe('Link', () => {\n testForLitDevWarnings(\n async () =>\n await fixture<Link>(\n html`\n <sp-link href=\"test_url\">Default Link</sp-link>\n `\n )\n );\n it('loads', async () => {\n const el = await fixture<Link>(\n html`\n <sp-link href=\"test_url\">Default Link</sp-link>\n `\n );\n\n await elementUpdated(el);\n expect(el).to.not.be.undefined;\n expect(el.textContent).to.include('Default Link');\n\n await expect(el).to.be.accessible();\n });\n\n it('loads[download]', async () => {\n const el = await fixture<Link>(\n html`\n <sp-link href=\"test_url\" download=\"somefile.txt\">\n Default Link\n </sp-link>\n `\n );\n\n await elementUpdated(el);\n expect(el).to.not.be.undefined;\n expect(el.textContent).to.include('Default Link');\n\n await expect(el).to.be.accessible();\n });\n\n it('loads[rel]', async () => {\n const el = await fixture<Link>(\n html`\n <sp-link href=\"test_url\" rel=\"external\">Default Link</sp-link>\n `\n );\n\n await elementUpdated(el);\n expect(el).to.not.be.undefined;\n expect(el.focusElement.getAttribute('rel')).to.eq('external');\n\n await expect(el).to.be.accessible();\n });\n\n it('manages the `size` atrbute', async () => {\n const el = await fixture<Link>(\n html`\n <sp-link href=\"test_url\">Default Link</sp-link>\n `\n );\n\n await elementUpdated(el);\n expect(el.size, 'property 0: m').to.equal('m');\n expect(el.getAttribute('size'), 'attribute 0: null').to.be.null;\n\n el.setAttribute('size', 'xl');\n await elementUpdated(el);\n expect(el.size, 'property 1: xl').to.equal('xl');\n expect(el.getAttribute('size'), 'attribute 1: xl').to.equal('xl');\n\n el.removeAttribute('size');\n await elementUpdated(el);\n expect(el.size, 'property 2: m').to.equal('m');\n expect(el.getAttribute('size'), 'attribute 2: null').to.be.null;\n\n el.setAttribute('size', 'm');\n await elementUpdated(el);\n expect(el.size, 'property 3: m').to.equal('m');\n expect(el.getAttribute('size'), 'attribute 3: m').to.equal('m');\n });\n});\n"],
|
|
5
|
-
"mappings": "AAYA
|
|
5
|
+
"mappings": "AAYA,iDAEA,qFACA,yEAEA,SAAS,OAAQ,IAAM,CACnB,EACI,SACI,KAAM,GACF;AAAA;AAAA,iBAGJ,CACR,EACA,GAAG,QAAS,SAAY,CACpB,KAAM,GAAK,KAAM,GACb;AAAA;AAAA,aAGJ,EAEA,KAAM,GAAe,CAAE,EACvB,EAAO,CAAE,EAAE,GAAG,IAAI,GAAG,UACrB,EAAO,EAAG,WAAW,EAAE,GAAG,QAAQ,cAAc,EAEhD,KAAM,GAAO,CAAE,EAAE,GAAG,GAAG,WAAW,CACtC,CAAC,EAED,GAAG,kBAAmB,SAAY,CAC9B,KAAM,GAAK,KAAM,GACb;AAAA;AAAA;AAAA;AAAA,aAKJ,EAEA,KAAM,GAAe,CAAE,EACvB,EAAO,CAAE,EAAE,GAAG,IAAI,GAAG,UACrB,EAAO,EAAG,WAAW,EAAE,GAAG,QAAQ,cAAc,EAEhD,KAAM,GAAO,CAAE,EAAE,GAAG,GAAG,WAAW,CACtC,CAAC,EAED,GAAG,aAAc,SAAY,CACzB,KAAM,GAAK,KAAM,GACb;AAAA;AAAA,aAGJ,EAEA,KAAM,GAAe,CAAE,EACvB,EAAO,CAAE,EAAE,GAAG,IAAI,GAAG,UACrB,EAAO,EAAG,aAAa,aAAa,KAAK,CAAC,EAAE,GAAG,GAAG,UAAU,EAE5D,KAAM,GAAO,CAAE,EAAE,GAAG,GAAG,WAAW,CACtC,CAAC,EAED,GAAG,6BAA8B,SAAY,CACzC,KAAM,GAAK,KAAM,GACb;AAAA;AAAA,aAGJ,EAEA,KAAM,GAAe,CAAE,EACvB,EAAO,EAAG,KAAM,eAAe,EAAE,GAAG,MAAM,GAAG,EAC7C,EAAO,EAAG,aAAa,MAAM,EAAG,mBAAmB,EAAE,GAAG,GAAG,KAE3D,EAAG,aAAa,OAAQ,IAAI,EAC5B,KAAM,GAAe,CAAE,EACvB,EAAO,EAAG,KAAM,gBAAgB,EAAE,GAAG,MAAM,IAAI,EAC/C,EAAO,EAAG,aAAa,MAAM,EAAG,iBAAiB,EAAE,GAAG,MAAM,IAAI,EAEhE,EAAG,gBAAgB,MAAM,EACzB,KAAM,GAAe,CAAE,EACvB,EAAO,EAAG,KAAM,eAAe,EAAE,GAAG,MAAM,GAAG,EAC7C,EAAO,EAAG,aAAa,MAAM,EAAG,mBAAmB,EAAE,GAAG,GAAG,KAE3D,EAAG,aAAa,OAAQ,GAAG,EAC3B,KAAM,GAAe,CAAE,EACvB,EAAO,EAAG,KAAM,eAAe,EAAE,GAAG,MAAM,GAAG,EAC7C,EAAO,EAAG,aAAa,MAAM,EAAG,gBAAgB,EAAE,GAAG,MAAM,GAAG,CAClE,CAAC,CACL,CAAC",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|