@spectrum-web-components/divider 0.5.0-devmode.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/divider",
3
- "version": "0.5.0-devmode.0+7b0ea531e",
3
+ "version": "0.5.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -57,7 +57,7 @@
57
57
  "lit-html"
58
58
  ],
59
59
  "dependencies": {
60
- "@spectrum-web-components/base": "^0.6.0",
60
+ "@spectrum-web-components/base": "^0.7.0",
61
61
  "tslib": "^2.0.0"
62
62
  },
63
63
  "devDependencies": {
@@ -70,5 +70,5 @@
70
70
  "./**/*.dev.js",
71
71
  "./stories/typography-decorator.js"
72
72
  ],
73
- "gitHead": "7b0ea531e9c7225c8964c5429bc5fd005618b80e"
73
+ "gitHead": "05c81318844160db3f8156144106e643507fef97"
74
74
  }
package/sp-divider.js CHANGED
@@ -1,3 +1,2 @@
1
- import { Divider } from "./src/Divider.js";
2
- customElements.define("sp-divider", Divider);
1
+ import{Divider as e}from"./src/Divider.js";customElements.define("sp-divider",e);
3
2
  //# sourceMappingURL=sp-divider.js.map
package/sp-divider.js.map CHANGED
@@ -2,6 +2,6 @@
2
2
  "version": 3,
3
3
  "sources": ["sp-divider.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 { Divider } from './src/Divider.js';\n\ncustomElements.define('sp-divider', Divider);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-divider': Divider;\n }\n}\n"],
5
- "mappings": "AAYA;AAEA,eAAe,OAAO,cAAc,OAAO;",
5
+ "mappings": "AAYA,2CAEA,eAAe,OAAO,aAAc,CAAO",
6
6
  "names": []
7
7
  }
package/src/Divider.js CHANGED
@@ -1,48 +1,2 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __decorateClass = (decorators, target, key, kind) => {
4
- var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
5
- for (var i = decorators.length - 1, decorator; i >= 0; i--)
6
- if (decorator = decorators[i])
7
- result = (kind ? decorator(target, key, result) : decorator(result)) || result;
8
- if (kind && result)
9
- __defProp(target, key, result);
10
- return result;
11
- };
12
- import {
13
- html,
14
- SizedMixin,
15
- SpectrumElement
16
- } from "@spectrum-web-components/base";
17
- import { property } from "@spectrum-web-components/base/src/decorators.js";
18
- import styles from "./divider.css.js";
19
- export class Divider extends SizedMixin(SpectrumElement, {
20
- validSizes: ["s", "m", "l"]
21
- }) {
22
- constructor() {
23
- super(...arguments);
24
- this.vertical = false;
25
- }
26
- render() {
27
- return html``;
28
- }
29
- firstUpdated(changed) {
30
- super.firstUpdated(changed);
31
- this.setAttribute("role", "separator");
32
- }
33
- updated(changed) {
34
- super.updated(changed);
35
- if (changed.has("vertical")) {
36
- if (this.vertical) {
37
- this.setAttribute("aria-orientation", "vertical");
38
- } else {
39
- this.removeAttribute("aria-orientation");
40
- }
41
- }
42
- }
43
- }
44
- Divider.styles = [styles];
45
- __decorateClass([
46
- property({ type: Boolean, reflect: true })
47
- ], Divider.prototype, "vertical", 2);
1
+ var p=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var l=(i,e,s,r)=>{for(var t=r>1?void 0:r?d(e,s):e,o=i.length-1,a;o>=0;o--)(a=i[o])&&(t=(r?a(e,s,t):a(t))||t);return r&&t&&p(e,s,t),t};import{html as u,SizedMixin as m,SpectrumElement as c}from"@spectrum-web-components/base";import{property as v}from"@spectrum-web-components/base/src/decorators.js";import f from"./divider.css.js";export class Divider extends m(c,{validSizes:["s","m","l"]}){constructor(){super(...arguments);this.vertical=!1}render(){return u``}firstUpdated(e){super.firstUpdated(e),this.setAttribute("role","separator")}updated(e){super.updated(e),e.has("vertical")&&(this.vertical?this.setAttribute("aria-orientation","vertical"):this.removeAttribute("aria-orientation"))}}Divider.styles=[f],l([v({type:Boolean,reflect:!0})],Divider.prototype,"vertical",2);
48
2
  //# sourceMappingURL=Divider.js.map
@@ -2,6 +2,6 @@
2
2
  "version": 3,
3
3
  "sources": ["Divider.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 html,\n PropertyValues,\n SizedMixin,\n SpectrumElement,\n TemplateResult,\n} from '@spectrum-web-components/base';\nimport { property } from '@spectrum-web-components/base/src/decorators.js';\n\nimport styles from './divider.css.js';\n\n/**\n * @element sp-divider\n */\nexport class Divider extends SizedMixin(SpectrumElement, {\n validSizes: ['s', 'm', 'l'],\n}) {\n public static override styles: CSSResultArray = [styles];\n\n @property({ type: Boolean, reflect: true })\n public vertical = false;\n\n protected override render(): TemplateResult {\n return html``;\n }\n\n protected override firstUpdated(changed: PropertyValues<this>): void {\n super.firstUpdated(changed);\n this.setAttribute('role', 'separator');\n }\n\n protected override updated(changed: PropertyValues<this>): void {\n super.updated(changed);\n if (changed.has('vertical')) {\n if (this.vertical) {\n this.setAttribute('aria-orientation', 'vertical');\n } else {\n this.removeAttribute('aria-orientation');\n }\n }\n }\n}\n"],
5
- "mappings": ";;;;;;;;;;;AAYA;AAAA;AAAA;AAAA;AAAA;AAQA;AAEA;AAKO,aAAM,gBAAgB,WAAW,iBAAiB;AAAA,EACrD,YAAY,CAAC,KAAK,KAAK,GAAG;AAC9B,CAAC,EAAE;AAAA,EAFI;AAAA;AAMI,oBAAW;AAAA;AAAA,EAEC,SAAyB;AACxC,WAAO;AAAA,EACX;AAAA,EAEmB,aAAa,SAAqC;AACjE,UAAM,aAAa,OAAO;AAC1B,SAAK,aAAa,QAAQ,WAAW;AAAA,EACzC;AAAA,EAEmB,QAAQ,SAAqC;AAC5D,UAAM,QAAQ,OAAO;AACrB,QAAI,QAAQ,IAAI,UAAU,GAAG;AACzB,UAAI,KAAK,UAAU;AACf,aAAK,aAAa,oBAAoB,UAAU;AAAA,MACpD,OAAO;AACH,aAAK,gBAAgB,kBAAkB;AAAA,MAC3C;AAAA,IACJ;AAAA,EACJ;AACJ;AAxB2B,AAHpB,QAGoB,SAAyB,CAAC,MAAM;AAGhD;AAAA,EADP,AAAC,SAAS,EAAE,MAAM,SAAS,SAAS,KAAK,CAAC;AAAA,GACnC,AANJ,QAMI;",
5
+ "mappings": "wMAYA,0FAQA,2EAEA,gCAKO,aAAM,eAAgB,GAAW,EAAiB,CACrD,WAAY,CAAC,IAAK,IAAK,GAAG,CAC9B,CAAC,CAAE,CAFI,kCAMI,cAAW,GAEC,QAAyB,CACxC,MAAO,IACX,CAEmB,aAAa,EAAqC,CACjE,MAAM,aAAa,CAAO,EAC1B,KAAK,aAAa,OAAQ,WAAW,CACzC,CAEmB,QAAQ,EAAqC,CAC5D,MAAM,QAAQ,CAAO,EACjB,EAAQ,IAAI,UAAU,GACtB,CAAI,KAAK,SACL,KAAK,aAAa,mBAAoB,UAAU,EAEhD,KAAK,gBAAgB,kBAAkB,EAGnD,CACJ,CAxB2B,AAHpB,QAGoB,OAAyB,CAAC,CAAM,EAGhD,GADP,AAAC,EAAS,CAAE,KAAM,QAAS,QAAS,EAAK,CAAC,GACnC,AANJ,QAMI",
6
6
  "names": []
7
7
  }
@@ -1,5 +1,4 @@
1
- import { css } from "@spectrum-web-components/base";
2
- const styles = css`
1
+ import{css as r}from"@spectrum-web-components/base";const e=r`
3
2
  :host([size=s]){--spectrum-divider-height:var(
4
3
  --spectrum-divider-s-height,var(--spectrum-global-dimension-size-10)
5
4
  );--spectrum-divider-vertical-height:var(
@@ -33,6 +32,5 @@ const styles = css`
33
32
  )}:host([size=s]){background-color:var(
34
33
  --spectrum-divider-s-background-color,var(--spectrum-global-color-gray-300)
35
34
  )}:host{display:block}hr{border:none;margin:0}
36
- `;
37
- export default styles;
35
+ `;export default e;
38
36
  //# sourceMappingURL=divider.css.js.map
@@ -2,6 +2,6 @@
2
2
  "version": 3,
3
3
  "sources": ["divider.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-divider-height:var(\n--spectrum-divider-s-height,var(--spectrum-global-dimension-size-10)\n);--spectrum-divider-vertical-height:var(\n--spectrum-divider-s-vertical-height,var(--spectrum-global-dimension-size-10)\n);--spectrum-divider-vertical-width:var(\n--spectrum-divider-s-vertical-width,var(--spectrum-global-dimension-size-10)\n)}:host([size=m]){--spectrum-divider-height:var(\n--spectrum-divider-m-height,var(--spectrum-global-dimension-size-25)\n);--spectrum-divider-vertical-height:var(\n--spectrum-divider-m-vertical-height,var(--spectrum-global-dimension-size-25)\n);--spectrum-divider-vertical-width:var(\n--spectrum-divider-m-vertical-width,var(--spectrum-global-dimension-size-25)\n)}:host([size=l]){--spectrum-divider-height:var(\n--spectrum-divider-l-height,var(--spectrum-global-dimension-size-50)\n);--spectrum-divider-vertical-height:var(\n--spectrum-divider-l-vertical-height,var(--spectrum-global-dimension-size-50)\n);--spectrum-divider-vertical-width:var(\n--spectrum-divider-l-vertical-width,var(--spectrum-global-dimension-size-50)\n)}:host{--spectrum-divider-vertical-height:100%}:host{border-width:medium;border:var(--spectrum-divider-height);border-radius:var(--spectrum-divider-height);height:var(--spectrum-divider-height);overflow:visible;width:100%}:host([vertical]){height:var(\n--spectrum-divider-vertical-height\n);width:var(--spectrum-divider-vertical-width)}:host{--spectrum-divider-l-background-color:var(\n--spectrum-global-color-gray-800\n);--spectrum-divider-m-background-color:var(\n--spectrum-global-color-gray-300\n);--spectrum-divider-s-background-color:var(\n--spectrum-global-color-gray-300\n)}:host([size=l]){background-color:var(\n--spectrum-divider-l-background-color,var(--spectrum-global-color-gray-800)\n)}:host([size=m]){background-color:var(\n--spectrum-divider-m-background-color,var(--spectrum-global-color-gray-300)\n)}:host([size=s]){background-color:var(\n--spectrum-divider-s-background-color,var(--spectrum-global-color-gray-300)\n)}:host{display:block}hr{border:none;margin:0}\n`;\nexport default styles;"],
5
- "mappings": "AAWA;AACA,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;AAmCf,eAAe;",
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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAmCf,cAAe",
6
6
  "names": []
7
7
  }
package/src/index.js CHANGED
@@ -1,2 +1,2 @@
1
- export * from "./Divider.js";
1
+ export*from"./Divider.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*/\n\nexport * from './Divider.js';\n"],
5
- "mappings": "AAYA;",
5
+ "mappings": "AAYA",
6
6
  "names": []
7
7
  }
@@ -1,5 +1,4 @@
1
- import { css } from "@spectrum-web-components/base";
2
- const styles = css`
1
+ import{css as r}from"@spectrum-web-components/base";const e=r`
3
2
  :host([size=s]){--spectrum-divider-height:var(
4
3
  --spectrum-divider-s-height,var(--spectrum-global-dimension-size-10)
5
4
  );--spectrum-divider-vertical-height:var(
@@ -33,6 +32,5 @@ const styles = css`
33
32
  )}:host([size=s]){background-color:var(
34
33
  --spectrum-divider-s-background-color,var(--spectrum-global-color-gray-300)
35
34
  )}
36
- `;
37
- export default styles;
35
+ `;export default e;
38
36
  //# sourceMappingURL=spectrum-divider.css.js.map
@@ -2,6 +2,6 @@
2
2
  "version": 3,
3
3
  "sources": ["spectrum-divider.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-divider-height:var(\n--spectrum-divider-s-height,var(--spectrum-global-dimension-size-10)\n);--spectrum-divider-vertical-height:var(\n--spectrum-divider-s-vertical-height,var(--spectrum-global-dimension-size-10)\n);--spectrum-divider-vertical-width:var(\n--spectrum-divider-s-vertical-width,var(--spectrum-global-dimension-size-10)\n)}:host([size=m]){--spectrum-divider-height:var(\n--spectrum-divider-m-height,var(--spectrum-global-dimension-size-25)\n);--spectrum-divider-vertical-height:var(\n--spectrum-divider-m-vertical-height,var(--spectrum-global-dimension-size-25)\n);--spectrum-divider-vertical-width:var(\n--spectrum-divider-m-vertical-width,var(--spectrum-global-dimension-size-25)\n)}:host([size=l]){--spectrum-divider-height:var(\n--spectrum-divider-l-height,var(--spectrum-global-dimension-size-50)\n);--spectrum-divider-vertical-height:var(\n--spectrum-divider-l-vertical-height,var(--spectrum-global-dimension-size-50)\n);--spectrum-divider-vertical-width:var(\n--spectrum-divider-l-vertical-width,var(--spectrum-global-dimension-size-50)\n)}:host{--spectrum-divider-vertical-height:100%}:host{border-width:medium;border:var(--spectrum-divider-height);border-radius:var(--spectrum-divider-height);height:var(--spectrum-divider-height);overflow:visible;width:100%}:host([vertical]){height:var(\n--spectrum-divider-vertical-height\n);width:var(--spectrum-divider-vertical-width)}:host{--spectrum-divider-l-background-color:var(\n--spectrum-global-color-gray-800\n);--spectrum-divider-m-background-color:var(\n--spectrum-global-color-gray-300\n);--spectrum-divider-s-background-color:var(\n--spectrum-global-color-gray-300\n)}:host([size=l]){background-color:var(\n--spectrum-divider-l-background-color,var(--spectrum-global-color-gray-800)\n)}:host([size=m]){background-color:var(\n--spectrum-divider-m-background-color,var(--spectrum-global-color-gray-300)\n)}:host([size=s]){background-color:var(\n--spectrum-divider-s-background-color,var(--spectrum-global-color-gray-300)\n)}\n`;\nexport default styles;"],
5
- "mappings": "AAWA;AACA,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;AAmCf,eAAe;",
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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAmCf,cAAe",
6
6
  "names": []
7
7
  }
@@ -1,47 +1,24 @@
1
- import { html } from "@spectrum-web-components/base";
2
- import "@spectrum-web-components/divider/sp-divider.js";
3
- import "./typography-decorator.js";
4
- import "@spectrum-web-components/action-button/sp-action-button.js";
5
- import "@spectrum-web-components/icon/sp-icon.js";
6
- import "@spectrum-web-components/icons-workflow/icons/sp-icon-align-left.js";
7
- import "@spectrum-web-components/icons-workflow/icons/sp-icon-align-right.js";
8
- export default {
9
- title: "Divider",
10
- decorators: [
11
- (story) => html`
12
- <typography-decorator .story=${story()}></typography-decorator>
13
- `
14
- ]
15
- };
16
- export const large = () => {
17
- return html`
1
+ import{html as t}from"@spectrum-web-components/base";import"@spectrum-web-components/divider/sp-divider.js";import"./typography-decorator.js";import"@spectrum-web-components/action-button/sp-action-button.js";import"@spectrum-web-components/icon/sp-icon.js";import"@spectrum-web-components/icons-workflow/icons/sp-icon-align-left.js";import"@spectrum-web-components/icons-workflow/icons/sp-icon-align-right.js";export default{title:"Divider",decorators:[e=>t`
2
+ <typography-decorator .story=${e()}></typography-decorator>
3
+ `]};export const large=()=>t`
18
4
  <h2 class="spectrum-Heading spectrum-Heading--sizeM">Large</h2>
19
5
  <sp-divider size="l"></sp-divider>
20
6
  <p class="spectrum-Body">Page or Section Titles.</p>
21
- `;
22
- };
23
- export const medium = () => {
24
- return html`
7
+ `,medium=()=>t`
25
8
  <h3 class="spectrum-Heading spectrum-Heading--sizeS">Medium</h3>
26
9
  <sp-divider size="m"></sp-divider>
27
10
  <p class="spectrum-Body">
28
11
  Divide subsections, or divide different groups of elements (between
29
12
  panels, rails, etc.)
30
13
  </p>
31
- `;
32
- };
33
- export const small = () => {
34
- return html`
14
+ `,small=()=>t`
35
15
  <h4 class="spectrum-Heading spectrum-Heading--sizeXS">Small</h4>
36
16
  <sp-divider size="s"></sp-divider>
37
17
  <p class="spectrum-Body">
38
18
  Divide like-elements (tables, tool groups, elements within a panel,
39
19
  etc.)
40
20
  </p>
41
- `;
42
- };
43
- export const verticalSmall = () => {
44
- return html`
21
+ `,verticalSmall=()=>t`
45
22
  <div
46
23
  style="height: var(--spectrum-global-dimension-size-400, 32px); display: flex;"
47
24
  >
@@ -57,10 +34,7 @@ export const verticalSmall = () => {
57
34
  <sp-icon-align-right slot="icon"></sp-icon-align-right>
58
35
  </sp-action-button>
59
36
  </div>
60
- `;
61
- };
62
- export const verticalMedium = () => {
63
- return html`
37
+ `,verticalMedium=()=>t`
64
38
  <div
65
39
  style="height: var(--spectrum-global-dimension-size-400, 32px); display: flex;"
66
40
  >
@@ -76,10 +50,7 @@ export const verticalMedium = () => {
76
50
  <sp-icon-align-right slot="icon"></sp-icon-align-right>
77
51
  </sp-action-button>
78
52
  </div>
79
- `;
80
- };
81
- export const verticalLarge = () => {
82
- return html`
53
+ `,verticalLarge=()=>t`
83
54
  <div
84
55
  style="height: var(--spectrum-global-dimension-size-400, 32px); display: flex;"
85
56
  >
@@ -96,5 +67,4 @@ export const verticalLarge = () => {
96
67
  </sp-action-button>
97
68
  </div>
98
69
  `;
99
- };
100
70
  //# sourceMappingURL=divider.stories.js.map
@@ -2,6 +2,6 @@
2
2
  "version": 3,
3
3
  "sources": ["divider.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/divider/sp-divider.js';\nimport './typography-decorator.js';\nimport '@spectrum-web-components/action-button/sp-action-button.js';\nimport '@spectrum-web-components/icon/sp-icon.js';\nimport '@spectrum-web-components/icons-workflow/icons/sp-icon-align-left.js';\nimport '@spectrum-web-components/icons-workflow/icons/sp-icon-align-right.js';\n\nexport default {\n title: 'Divider',\n decorators: [\n (story: () => TemplateResult): TemplateResult => html`\n <typography-decorator .story=${story()}></typography-decorator>\n `,\n ],\n};\n\nexport const large = (): TemplateResult => {\n return html`\n <h2 class=\"spectrum-Heading spectrum-Heading--sizeM\">Large</h2>\n <sp-divider size=\"l\"></sp-divider>\n <p class=\"spectrum-Body\">Page or Section Titles.</p>\n `;\n};\n\nexport const medium = (): TemplateResult => {\n return html`\n <h3 class=\"spectrum-Heading spectrum-Heading--sizeS\">Medium</h3>\n <sp-divider size=\"m\"></sp-divider>\n <p class=\"spectrum-Body\">\n Divide subsections, or divide different groups of elements (between\n panels, rails, etc.)\n </p>\n `;\n};\n\nexport const small = (): TemplateResult => {\n return html`\n <h4 class=\"spectrum-Heading spectrum-Heading--sizeXS\">Small</h4>\n <sp-divider size=\"s\"></sp-divider>\n <p class=\"spectrum-Body\">\n Divide like-elements (tables, tool groups, elements within a panel,\n etc.)\n </p>\n `;\n};\n\nexport const verticalSmall = (): TemplateResult => {\n return html`\n <div\n style=\"height: var(--spectrum-global-dimension-size-400, 32px); display: flex;\"\n >\n <sp-action-button quiet>\n <sp-icon-align-left slot=\"icon\"></sp-icon-align-left>\n </sp-action-button>\n <sp-divider\n vertical\n size=\"s\"\n style=\"height: auto; align-self: stretch;\"\n ></sp-divider>\n <sp-action-button quiet>\n <sp-icon-align-right slot=\"icon\"></sp-icon-align-right>\n </sp-action-button>\n </div>\n `;\n};\n\nexport const verticalMedium = (): TemplateResult => {\n return html`\n <div\n style=\"height: var(--spectrum-global-dimension-size-400, 32px); display: flex;\"\n >\n <sp-action-button quiet>\n <sp-icon-align-left slot=\"icon\"></sp-icon-align-left>\n </sp-action-button>\n <sp-divider\n size=\"m\"\n vertical\n style=\"height: auto; align-self: stretch;\"\n ></sp-divider>\n <sp-action-button quiet>\n <sp-icon-align-right slot=\"icon\"></sp-icon-align-right>\n </sp-action-button>\n </div>\n `;\n};\n\nexport const verticalLarge = (): TemplateResult => {\n return html`\n <div\n style=\"height: var(--spectrum-global-dimension-size-400, 32px); display: flex;\"\n >\n <sp-action-button quiet>\n <sp-icon-align-left slot=\"icon\"></sp-icon-align-left>\n </sp-action-button>\n <sp-divider\n size=\"l\"\n vertical\n style=\"height: auto; align-self: stretch;\"\n ></sp-divider>\n <sp-action-button quiet>\n <sp-icon-align-right slot=\"icon\"></sp-icon-align-right>\n </sp-action-button>\n </div>\n `;\n};\n"],
5
- "mappings": "AAWA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA,eAAe;AAAA,EACX,OAAO;AAAA,EACP,YAAY;AAAA,IACR,CAAC,UAAgD;AAAA,2CACd,MAAM;AAAA;AAAA,EAE7C;AACJ;AAEO,aAAM,QAAQ,MAAsB;AACvC,SAAO;AAAA;AAAA;AAAA;AAAA;AAKX;AAEO,aAAM,SAAS,MAAsB;AACxC,SAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQX;AAEO,aAAM,QAAQ,MAAsB;AACvC,SAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQX;AAEO,aAAM,gBAAgB,MAAsB;AAC/C,SAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAiBX;AAEO,aAAM,iBAAiB,MAAsB;AAChD,SAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAiBX;AAEO,aAAM,gBAAgB,MAAsB;AAC/C,SAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAiBX;",
5
+ "mappings": "AAWA,qDAEA,uDACA,kCACA,mEACA,iDACA,4EACA,6EAEA,cAAe,CACX,MAAO,UACP,WAAY,CACR,AAAC,GAAgD;AAAA,2CACd,EAAM;AAAA,SAE7C,CACJ,EAEO,YAAM,OAAQ,IACV;AAAA;AAAA;AAAA;AAAA,MAOE,OAAS,IACX;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,MAUE,MAAQ,IACV;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,MAUE,cAAgB,IAClB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,MAmBE,eAAiB,IACnB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,MAmBE,cAAgB,IAClB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;",
6
6
  "names": []
7
7
  }
@@ -1,37 +1,4 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __decorateClass = (decorators, target, key, kind) => {
4
- var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
5
- for (var i = decorators.length - 1, decorator; i >= 0; i--)
6
- if (decorator = decorators[i])
7
- result = (kind ? decorator(target, key, result) : decorator(result)) || result;
8
- if (kind && result)
9
- __defProp(target, key, result);
10
- return result;
11
- };
12
- import {
13
- html,
14
- LitElement
15
- } from "@spectrum-web-components/base";
16
- import {
17
- customElement,
18
- property
19
- } from "@spectrum-web-components/base/src/decorators.js";
20
- import styles from "@spectrum-web-components/theme/src/typography.css.js";
21
- export let Typography = class extends LitElement {
22
- render() {
23
- if (!this.story)
24
- return html``;
25
- return html`
1
+ var a=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var m=(s,e,l,r)=>{for(var t=r>1?void 0:r?c(e,l):e,o=s.length-1,i;o>=0;o--)(i=s[o])&&(t=(r?i(e,l,t):i(t))||t);return r&&t&&a(e,l,t),t};import{html as u,LitElement as d}from"@spectrum-web-components/base";import{customElement as p,property as n}from"@spectrum-web-components/base/src/decorators.js";import f from"@spectrum-web-components/theme/src/typography.css.js";export let Typography=class extends d{render(){return this.story?u`
26
2
  <div class="spectrum-Typography">${this.story}</div>
27
- `;
28
- }
29
- };
30
- Typography.styles = [styles];
31
- __decorateClass([
32
- property({ attribute: false })
33
- ], Typography.prototype, "story", 2);
34
- Typography = __decorateClass([
35
- customElement("typography-decorator")
36
- ], Typography);
3
+ `:u``}};Typography.styles=[f],m([n({attribute:!1})],Typography.prototype,"story",2),Typography=m([p("typography-decorator")],Typography);
37
4
  //# sourceMappingURL=typography-decorator.js.map
@@ -2,6 +2,6 @@
2
2
  "version": 3,
3
3
  "sources": ["typography-decorator.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\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 LitElement,\n TemplateResult,\n} from '@spectrum-web-components/base';\nimport {\n customElement,\n property,\n} from '@spectrum-web-components/base/src/decorators.js';\n\nimport styles from '@spectrum-web-components/theme/src/typography.css.js';\n\n/**\n * @element typography-decorator\n */\n@customElement('typography-decorator')\nexport class Typography extends LitElement {\n static override styles: CSSResultArray = [styles];\n\n @property({ attribute: false })\n public story?: TemplateResult;\n\n protected override render(): TemplateResult {\n if (!this.story) return html``;\n return html`\n <div class=\"spectrum-Typography\">${this.story}</div>\n `;\n }\n}\n"],
5
- "mappings": ";;;;;;;;;;;AAWA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAKA;AAMO,sCAAyB,WAAW;AAAA,EAMpB,SAAyB;AACxC,QAAI,CAAC,KAAK;AAAO,aAAO;AACxB,WAAO;AAAA,+CACgC,KAAK;AAAA;AAAA,EAEhD;AACJ;AAXoB,AADb,WACa,SAAyB,CAAC,MAAM;AAGzC;AAAA,EADP,AAAC,SAAS,EAAE,WAAW,MAAM,CAAC;AAAA,GACvB,AAJJ,WAII;AAJJ;AAAA,EADP,AAAC,cAAc,sBAAsB;AAAA,GAC9B;",
5
+ "mappings": "wMAWA,qEAMA,8FAKA,oEAMO,mCAAyB,EAAW,CAMpB,QAAyB,CACxC,MAAK,MAAK,MACH;AAAA,+CACgC,KAAK;AAAA,UAFpB,GAI5B,CACJ,EAXoB,AADb,WACa,OAAyB,CAAC,CAAM,EAGzC,GADP,AAAC,EAAS,CAAE,UAAW,EAAM,CAAC,GACvB,AAJJ,WAII,qBAJJ,cADP,AAAC,EAAc,sBAAsB,GAC9B",
6
6
  "names": []
7
7
  }
@@ -1,7 +1,4 @@
1
- import "@spectrum-web-components/divider/sp-divider.js";
2
- import { html } from "lit";
3
- import { measureFixtureCreation } from "../../../../test/benchmark/helpers.js";
4
- measureFixtureCreation(html`
1
+ import"@spectrum-web-components/divider/sp-divider.js";import{html as r}from"lit";import{measureFixtureCreation as i}from"../../../../test/benchmark/helpers.js";i(r`
5
2
  <sp-divider></sp-divider>
6
3
  `);
7
4
  //# sourceMappingURL=basic-test.js.map
@@ -2,6 +2,6 @@
2
2
  "version": 3,
3
3
  "sources": ["basic-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/divider/sp-divider.js';\nimport { html } from 'lit';\nimport { measureFixtureCreation } from '../../../../test/benchmark/helpers.js';\n\nmeasureFixtureCreation(html`\n <sp-divider></sp-divider>\n`);\n"],
5
- "mappings": "AAYA;AACA;AACA;AAEA,uBAAuB;AAAA;AAAA,CAEtB;",
5
+ "mappings": "AAYA,uDACA,2BACA,+EAEA,EAAuB;AAAA;AAAA,CAEtB",
6
6
  "names": []
7
7
  }
@@ -1,4 +1,2 @@
1
- import * as stories from "../stories/divider.stories.js";
2
- import { regressVisuals } from "../../../test/visual/test.js";
3
- regressVisuals("DividerStories", stories);
1
+ import*as r from"../stories/divider.stories.js";import{regressVisuals as s}from"../../../test/visual/test.js";s("DividerStories",r);
4
2
  //# sourceMappingURL=divider.test-vrt.js.map
@@ -2,6 +2,6 @@
2
2
  "version": 3,
3
3
  "sources": ["divider.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/divider.stories.js';\nimport { regressVisuals } from '../../../test/visual/test.js';\n\nregressVisuals('DividerStories', stories);\n"],
5
- "mappings": "AAYA;AACA;AAEA,eAAe,kBAAkB,OAAO;",
5
+ "mappings": "AAYA,gDACA,8DAEA,EAAe,iBAAkB,CAAO",
6
6
  "names": []
7
7
  }
@@ -1,23 +1,8 @@
1
- import { elementUpdated, expect, fixture, html } from "@open-wc/testing";
2
- import "@spectrum-web-components/divider/sp-divider.js";
3
- import { testForLitDevWarnings } from "../../../test/testing-helpers.js";
4
- describe("Divider", () => {
5
- testForLitDevWarnings(async () => await fixture(html`
1
+ import{elementUpdated as t,expect as d,fixture as e,html as a}from"@open-wc/testing";import"@spectrum-web-components/divider/sp-divider.js";import{testForLitDevWarnings as r}from"../../../test/testing-helpers.js";describe("Divider",()=>{r(async()=>await e(a`
6
2
  <sp-divider></sp-divider>
7
- `));
8
- it("loads default divider accessibly", async () => {
9
- const el = await fixture(html`
3
+ `)),it("loads default divider accessibly",async()=>{const i=await e(a`
10
4
  <sp-divider></sp-divider>
11
- `);
12
- await elementUpdated(el);
13
- await expect(el).to.be.accessible();
14
- });
15
- it("loads [vertical] divider accessibly", async () => {
16
- const el = await fixture(html`
5
+ `);await t(i),await d(i).to.be.accessible()}),it("loads [vertical] divider accessibly",async()=>{const i=await e(a`
17
6
  <sp-divider vertical></sp-divider>
18
- `);
19
- await elementUpdated(el);
20
- await expect(el).to.be.accessible();
21
- });
22
- });
7
+ `);await t(i),await d(i).to.be.accessible()})});
23
8
  //# sourceMappingURL=divider.test.js.map
@@ -2,6 +2,6 @@
2
2
  "version": 3,
3
3
  "sources": ["divider.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 { elementUpdated, expect, fixture, html } from '@open-wc/testing';\n\nimport '@spectrum-web-components/divider/sp-divider.js';\nimport { Divider } from '@spectrum-web-components/divider';\nimport { testForLitDevWarnings } from '../../../test/testing-helpers.js';\n\ndescribe('Divider', () => {\n testForLitDevWarnings(\n async () =>\n await fixture<Divider>(\n html`\n <sp-divider></sp-divider>\n `\n )\n );\n it('loads default divider accessibly', async () => {\n const el = await fixture<Divider>(\n html`\n <sp-divider></sp-divider>\n `\n );\n\n await elementUpdated(el);\n\n await expect(el).to.be.accessible();\n });\n it('loads [vertical] divider accessibly', async () => {\n const el = await fixture<Divider>(\n html`\n <sp-divider vertical></sp-divider>\n `\n );\n\n await elementUpdated(el);\n\n await expect(el).to.be.accessible();\n });\n});\n"],
5
- "mappings": "AAYA;AAEA;AAEA;AAEA,SAAS,WAAW,MAAM;AACtB,wBACI,YACI,MAAM,QACF;AAAA;AAAA,iBAGJ,CACR;AACA,KAAG,oCAAoC,YAAY;AAC/C,UAAM,KAAK,MAAM,QACb;AAAA;AAAA,aAGJ;AAEA,UAAM,eAAe,EAAE;AAEvB,UAAM,OAAO,EAAE,EAAE,GAAG,GAAG,WAAW;AAAA,EACtC,CAAC;AACD,KAAG,uCAAuC,YAAY;AAClD,UAAM,KAAK,MAAM,QACb;AAAA;AAAA,aAGJ;AAEA,UAAM,eAAe,EAAE;AAEvB,UAAM,OAAO,EAAE,EAAE,GAAG,GAAG,WAAW;AAAA,EACtC,CAAC;AACL,CAAC;",
5
+ "mappings": "AAYA,qFAEA,uDAEA,yEAEA,SAAS,UAAW,IAAM,CACtB,EACI,SACI,KAAM,GACF;AAAA;AAAA,iBAGJ,CACR,EACA,GAAG,mCAAoC,SAAY,CAC/C,KAAM,GAAK,KAAM,GACb;AAAA;AAAA,aAGJ,EAEA,KAAM,GAAe,CAAE,EAEvB,KAAM,GAAO,CAAE,EAAE,GAAG,GAAG,WAAW,CACtC,CAAC,EACD,GAAG,sCAAuC,SAAY,CAClD,KAAM,GAAK,KAAM,GACb;AAAA;AAAA,aAGJ,EAEA,KAAM,GAAe,CAAE,EAEvB,KAAM,GAAO,CAAE,EAAE,GAAG,GAAG,WAAW,CACtC,CAAC,CACL,CAAC",
6
6
  "names": []
7
7
  }