@spectrum-web-components/button-group 1.12.1 → 1.12.2

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.
@@ -35,14 +35,23 @@
35
35
  {
36
36
  "kind": "field",
37
37
  "name": "vertical",
38
+ "privacy": "public",
39
+ "deprecated": "Use `orientation=\"vertical\"` on `<swc-button-group>` instead.\nThe `vertical` attribute will not be carried forward to 2nd-gen.",
38
40
  "type": {
39
41
  "text": "boolean"
40
42
  },
41
- "privacy": "public",
42
- "default": "false",
43
43
  "attribute": "vertical",
44
44
  "reflects": true
45
45
  },
46
+ {
47
+ "kind": "field",
48
+ "name": "_vertical",
49
+ "type": {
50
+ "text": "boolean"
51
+ },
52
+ "privacy": "private",
53
+ "default": "false"
54
+ },
46
55
  {
47
56
  "kind": "field",
48
57
  "name": "slotElement",
@@ -90,10 +99,10 @@
90
99
  "attributes": [
91
100
  {
92
101
  "name": "vertical",
102
+ "deprecated": "Use `orientation=\"vertical\"` on `<swc-button-group>` instead.\nThe `vertical` attribute will not be carried forward to 2nd-gen.",
93
103
  "type": {
94
104
  "text": "boolean"
95
105
  },
96
- "default": "false",
97
106
  "fieldName": "vertical"
98
107
  }
99
108
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/button-group",
3
- "version": "1.12.1",
3
+ "version": "1.12.2",
4
4
  "description": "",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Adobe",
@@ -54,8 +54,8 @@
54
54
  ],
55
55
  "types": "./src/index.d.ts",
56
56
  "dependencies": {
57
- "@spectrum-web-components/base": "1.12.1",
58
- "@spectrum-web-components/button": "1.12.1"
57
+ "@spectrum-web-components/base": "1.12.2",
58
+ "@spectrum-web-components/button": "1.12.2"
59
59
  },
60
60
  "keywords": [
61
61
  "design-system",
@@ -17,7 +17,13 @@ declare const ButtonGroup_base: typeof SpectrumElement & import("@spectrum-web-c
17
17
  */
18
18
  export declare class ButtonGroup extends ButtonGroup_base {
19
19
  static get styles(): CSSResultArray;
20
- vertical: boolean;
20
+ /**
21
+ * @deprecated Use `orientation="vertical"` on `<swc-button-group>` instead.
22
+ * The `vertical` attribute will not be carried forward to 2nd-gen.
23
+ */
24
+ set vertical(value: boolean);
25
+ get vertical(): boolean;
26
+ private _vertical;
21
27
  slotElement: HTMLSlotElement;
22
28
  protected updated(changedProperties: PropertyValues): void;
23
29
  protected handleSlotchange({ target: slot, }: Event & {
@@ -24,11 +24,27 @@ export class ButtonGroup extends SizedMixin(SpectrumElement, {
24
24
  }) {
25
25
  constructor() {
26
26
  super(...arguments);
27
- this.vertical = false;
27
+ this._vertical = false;
28
28
  }
29
29
  static get styles() {
30
30
  return [styles];
31
31
  }
32
+ set vertical(value) {
33
+ const oldValue = this._vertical;
34
+ this._vertical = value;
35
+ this.requestUpdate("vertical", oldValue);
36
+ if (true) {
37
+ window.__swc.warn(
38
+ this,
39
+ `The "vertical" attribute on <${this.localName}> is deprecated. Use orientation="vertical" on <swc-button-group> when migrating to 2nd-gen.`,
40
+ "https://opensource.adobe.com/spectrum-web-components/components/button-group/",
41
+ { level: "deprecation" }
42
+ );
43
+ }
44
+ }
45
+ get vertical() {
46
+ return this._vertical;
47
+ }
32
48
  updated(changedProperties) {
33
49
  super.updated(changedProperties);
34
50
  if (changedProperties.has("size")) {
@@ -54,7 +70,7 @@ export class ButtonGroup extends SizedMixin(SpectrumElement, {
54
70
  }
55
71
  __decorateClass([
56
72
  property({ type: Boolean, reflect: true })
57
- ], ButtonGroup.prototype, "vertical", 2);
73
+ ], ButtonGroup.prototype, "vertical", 1);
58
74
  __decorateClass([
59
75
  query("slot")
60
76
  ], ButtonGroup.prototype, "slotElement", 2);
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["ButtonGroup.ts"],
4
- "sourcesContent": ["/**\n * Copyright 2026 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing 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 {\n property,\n query,\n} from '@spectrum-web-components/base/src/decorators.js';\nimport type { Button } from '@spectrum-web-components/button';\n\nimport styles from './button-group.css.js';\n\n/**\n * @element sp-button-group\n * @slot - the sp-button elements that make up the group\n */\nexport class ButtonGroup extends SizedMixin(SpectrumElement, {\n noDefaultSize: true,\n}) {\n public static override get styles(): CSSResultArray {\n return [styles];\n }\n\n @property({ type: Boolean, reflect: true })\n public vertical = false;\n\n @query('slot')\n slotElement!: HTMLSlotElement;\n\n protected override updated(changedProperties: PropertyValues): void {\n super.updated(changedProperties);\n\n if (changedProperties.has('size')) {\n this.manageChildrenSize(this.slotElement);\n }\n }\n\n protected handleSlotchange({\n target: slot,\n }: Event & { target: HTMLSlotElement }): void {\n this.manageChildrenSize(slot);\n }\n\n private manageChildrenSize(slot: HTMLSlotElement): void {\n const assignedElements = slot.assignedElements() as Button[];\n assignedElements.forEach((button) => {\n button.size = this.size;\n });\n }\n\n protected override render(): TemplateResult {\n return html`\n <slot @slotchange=${this.handleSlotchange}></slot>\n `;\n }\n}\n"],
5
- "mappings": ";;;;;;;;;;;AAYA;AAAA,EAEE;AAAA,EAEA;AAAA,EACA;AAAA,OAEK;AACP;AAAA,EACE;AAAA,EACA;AAAA,OACK;AAGP,OAAO,YAAY;AAMZ,aAAM,oBAAoB,WAAW,iBAAiB;AAAA,EAC3D,eAAe;AACjB,CAAC,EAAE;AAAA,EAFI;AAAA;AAQL,SAAO,WAAW;AAAA;AAAA,EALlB,WAA2B,SAAyB;AAClD,WAAO,CAAC,MAAM;AAAA,EAChB;AAAA,EAQmB,QAAQ,mBAAyC;AAClE,UAAM,QAAQ,iBAAiB;AAE/B,QAAI,kBAAkB,IAAI,MAAM,GAAG;AACjC,WAAK,mBAAmB,KAAK,WAAW;AAAA,IAC1C;AAAA,EACF;AAAA,EAEU,iBAAiB;AAAA,IACzB,QAAQ;AAAA,EACV,GAA8C;AAC5C,SAAK,mBAAmB,IAAI;AAAA,EAC9B;AAAA,EAEQ,mBAAmB,MAA6B;AACtD,UAAM,mBAAmB,KAAK,iBAAiB;AAC/C,qBAAiB,QAAQ,CAAC,WAAW;AACnC,aAAO,OAAO,KAAK;AAAA,IACrB,CAAC;AAAA,EACH;AAAA,EAEmB,SAAyB;AAC1C,WAAO;AAAA,0BACe,KAAK,gBAAgB;AAAA;AAAA,EAE7C;AACF;AA/BS;AAAA,EADN,SAAS,EAAE,MAAM,SAAS,SAAS,KAAK,CAAC;AAAA,GAP/B,YAQJ;AAGP;AAAA,EADC,MAAM,MAAM;AAAA,GAVF,YAWX;",
4
+ "sourcesContent": ["/**\n * Copyright 2026 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing 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 {\n property,\n query,\n} from '@spectrum-web-components/base/src/decorators.js';\nimport type { Button } from '@spectrum-web-components/button';\n\nimport styles from './button-group.css.js';\n\n/**\n * @element sp-button-group\n * @slot - the sp-button elements that make up the group\n */\nexport class ButtonGroup extends SizedMixin(SpectrumElement, {\n noDefaultSize: true,\n}) {\n public static override get styles(): CSSResultArray {\n return [styles];\n }\n\n /**\n * @deprecated Use `orientation=\"vertical\"` on `<swc-button-group>` instead.\n * The `vertical` attribute will not be carried forward to 2nd-gen.\n */\n @property({ type: Boolean, reflect: true })\n public set vertical(value: boolean) {\n const oldValue = this._vertical;\n this._vertical = value;\n this.requestUpdate('vertical', oldValue);\n if (window.__swc?.DEBUG) {\n window.__swc.warn(\n this,\n `The \"vertical\" attribute on <${this.localName}> is deprecated. Use orientation=\"vertical\" on <swc-button-group> when migrating to 2nd-gen.`,\n 'https://opensource.adobe.com/spectrum-web-components/components/button-group/',\n { level: 'deprecation' }\n );\n }\n }\n\n public get vertical(): boolean {\n return this._vertical;\n }\n\n private _vertical = false;\n\n @query('slot')\n slotElement!: HTMLSlotElement;\n\n protected override updated(changedProperties: PropertyValues): void {\n super.updated(changedProperties);\n\n if (changedProperties.has('size')) {\n this.manageChildrenSize(this.slotElement);\n }\n }\n\n protected handleSlotchange({\n target: slot,\n }: Event & { target: HTMLSlotElement }): void {\n this.manageChildrenSize(slot);\n }\n\n private manageChildrenSize(slot: HTMLSlotElement): void {\n const assignedElements = slot.assignedElements() as Button[];\n assignedElements.forEach((button) => {\n button.size = this.size;\n });\n }\n\n protected override render(): TemplateResult {\n return html`\n <slot @slotchange=${this.handleSlotchange}></slot>\n `;\n }\n}\n"],
5
+ "mappings": ";;;;;;;;;;;AAYA;AAAA,EAEE;AAAA,EAEA;AAAA,EACA;AAAA,OAEK;AACP;AAAA,EACE;AAAA,EACA;AAAA,OACK;AAGP,OAAO,YAAY;AAMZ,aAAM,oBAAoB,WAAW,iBAAiB;AAAA,EAC3D,eAAe;AACjB,CAAC,EAAE;AAAA,EAFI;AAAA;AA8BL,SAAQ,YAAY;AAAA;AAAA,EA3BpB,WAA2B,SAAyB;AAClD,WAAO,CAAC,MAAM;AAAA,EAChB;AAAA,EAOA,IAAW,SAAS,OAAgB;AAClC,UAAM,WAAW,KAAK;AACtB,SAAK,YAAY;AACjB,SAAK,cAAc,YAAY,QAAQ;AACvC,QAAI,MAAqB;AACvB,aAAO,MAAM;AAAA,QACX;AAAA,QACA,gCAAgC,KAAK,SAAS;AAAA,QAC9C;AAAA,QACA,EAAE,OAAO,cAAc;AAAA,MACzB;AAAA,IACF;AAAA,EACF;AAAA,EAEA,IAAW,WAAoB;AAC7B,WAAO,KAAK;AAAA,EACd;AAAA,EAOmB,QAAQ,mBAAyC;AAClE,UAAM,QAAQ,iBAAiB;AAE/B,QAAI,kBAAkB,IAAI,MAAM,GAAG;AACjC,WAAK,mBAAmB,KAAK,WAAW;AAAA,IAC1C;AAAA,EACF;AAAA,EAEU,iBAAiB;AAAA,IACzB,QAAQ;AAAA,EACV,GAA8C;AAC5C,SAAK,mBAAmB,IAAI;AAAA,EAC9B;AAAA,EAEQ,mBAAmB,MAA6B;AACtD,UAAM,mBAAmB,KAAK,iBAAiB;AAC/C,qBAAiB,QAAQ,CAAC,WAAW;AACnC,aAAO,OAAO,KAAK;AAAA,IACrB,CAAC;AAAA,EACH;AAAA,EAEmB,SAAyB;AAC1C,WAAO;AAAA,0BACe,KAAK,gBAAgB;AAAA;AAAA,EAE7C;AACF;AAjDa;AAAA,EADV,SAAS,EAAE,MAAM,SAAS,SAAS,KAAK,CAAC;AAAA,GAX/B,YAYA;AAqBX;AAAA,EADC,MAAM,MAAM;AAAA,GAhCF,YAiCX;",
6
6
  "names": []
7
7
  }
@@ -1,4 +1,4 @@
1
- "use strict";var a=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var n=(s,r,e,l)=>{for(var t=l>1?void 0:l?m(r,e):r,o=s.length-1,i;o>=0;o--)(i=s[o])&&(t=(l?i(r,e,t):i(t))||t);return l&&t&&a(r,e,t),t};import{html as d,SizedMixin as p,SpectrumElement as u}from"@spectrum-web-components/base";import{property as c,query as h}from"@spectrum-web-components/base/src/decorators.js";import S from"./button-group.css.js";export class ButtonGroup extends p(u,{noDefaultSize:!0}){constructor(){super(...arguments);this.vertical=!1}static get styles(){return[S]}updated(e){super.updated(e),e.has("size")&&this.manageChildrenSize(this.slotElement)}handleSlotchange({target:e}){this.manageChildrenSize(e)}manageChildrenSize(e){e.assignedElements().forEach(t=>{t.size=this.size})}render(){return d`
1
+ "use strict";var a=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var n=(i,o,e,r)=>{for(var t=r>1?void 0:r?c(o,e):o,s=i.length-1,l;s>=0;s--)(l=i[s])&&(t=(r?l(o,e,t):l(t))||t);return r&&t&&a(o,e,t),t};import{html as p,SizedMixin as d,SpectrumElement as m}from"@spectrum-web-components/base";import{property as u,query as h}from"@spectrum-web-components/base/src/decorators.js";import v from"./button-group.css.js";export class ButtonGroup extends d(m,{noDefaultSize:!0}){constructor(){super(...arguments);this._vertical=!1}static get styles(){return[v]}set vertical(e){const r=this._vertical;this._vertical=e,this.requestUpdate("vertical",r)}get vertical(){return this._vertical}updated(e){super.updated(e),e.has("size")&&this.manageChildrenSize(this.slotElement)}handleSlotchange({target:e}){this.manageChildrenSize(e)}manageChildrenSize(e){e.assignedElements().forEach(t=>{t.size=this.size})}render(){return p`
2
2
  <slot @slotchange=${this.handleSlotchange}></slot>
3
- `}}n([c({type:Boolean,reflect:!0})],ButtonGroup.prototype,"vertical",2),n([h("slot")],ButtonGroup.prototype,"slotElement",2);
3
+ `}}n([u({type:Boolean,reflect:!0})],ButtonGroup.prototype,"vertical",1),n([h("slot")],ButtonGroup.prototype,"slotElement",2);
4
4
  //# sourceMappingURL=ButtonGroup.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["ButtonGroup.ts"],
4
- "sourcesContent": ["/**\n * Copyright 2026 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing 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 {\n property,\n query,\n} from '@spectrum-web-components/base/src/decorators.js';\nimport type { Button } from '@spectrum-web-components/button';\n\nimport styles from './button-group.css.js';\n\n/**\n * @element sp-button-group\n * @slot - the sp-button elements that make up the group\n */\nexport class ButtonGroup extends SizedMixin(SpectrumElement, {\n noDefaultSize: true,\n}) {\n public static override get styles(): CSSResultArray {\n return [styles];\n }\n\n @property({ type: Boolean, reflect: true })\n public vertical = false;\n\n @query('slot')\n slotElement!: HTMLSlotElement;\n\n protected override updated(changedProperties: PropertyValues): void {\n super.updated(changedProperties);\n\n if (changedProperties.has('size')) {\n this.manageChildrenSize(this.slotElement);\n }\n }\n\n protected handleSlotchange({\n target: slot,\n }: Event & { target: HTMLSlotElement }): void {\n this.manageChildrenSize(slot);\n }\n\n private manageChildrenSize(slot: HTMLSlotElement): void {\n const assignedElements = slot.assignedElements() as Button[];\n assignedElements.forEach((button) => {\n button.size = this.size;\n });\n }\n\n protected override render(): TemplateResult {\n return html`\n <slot @slotchange=${this.handleSlotchange}></slot>\n `;\n }\n}\n"],
5
- "mappings": "qNAYA,OAEE,QAAAA,EAEA,cAAAC,EACA,mBAAAC,MAEK,gCACP,OACE,YAAAC,EACA,SAAAC,MACK,kDAGP,OAAOC,MAAY,wBAMZ,aAAM,oBAAoBJ,EAAWC,EAAiB,CAC3D,cAAe,EACjB,CAAC,CAAE,CAFI,kCAQL,KAAO,SAAW,GALlB,WAA2B,QAAyB,CAClD,MAAO,CAACG,CAAM,CAChB,CAQmB,QAAQC,EAAyC,CAClE,MAAM,QAAQA,CAAiB,EAE3BA,EAAkB,IAAI,MAAM,GAC9B,KAAK,mBAAmB,KAAK,WAAW,CAE5C,CAEU,iBAAiB,CACzB,OAAQC,CACV,EAA8C,CAC5C,KAAK,mBAAmBA,CAAI,CAC9B,CAEQ,mBAAmBA,EAA6B,CAC7BA,EAAK,iBAAiB,EAC9B,QAASC,GAAW,CACnCA,EAAO,KAAO,KAAK,IACrB,CAAC,CACH,CAEmB,QAAyB,CAC1C,OAAOR;AAAA,0BACe,KAAK,gBAAgB;AAAA,KAE7C,CACF,CA/BSS,EAAA,CADNN,EAAS,CAAE,KAAM,QAAS,QAAS,EAAK,CAAC,GAP/B,YAQJ,wBAGPM,EAAA,CADCL,EAAM,MAAM,GAVF,YAWX",
6
- "names": ["html", "SizedMixin", "SpectrumElement", "property", "query", "styles", "changedProperties", "slot", "button", "__decorateClass"]
4
+ "sourcesContent": ["/**\n * Copyright 2026 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing 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 {\n property,\n query,\n} from '@spectrum-web-components/base/src/decorators.js';\nimport type { Button } from '@spectrum-web-components/button';\n\nimport styles from './button-group.css.js';\n\n/**\n * @element sp-button-group\n * @slot - the sp-button elements that make up the group\n */\nexport class ButtonGroup extends SizedMixin(SpectrumElement, {\n noDefaultSize: true,\n}) {\n public static override get styles(): CSSResultArray {\n return [styles];\n }\n\n /**\n * @deprecated Use `orientation=\"vertical\"` on `<swc-button-group>` instead.\n * The `vertical` attribute will not be carried forward to 2nd-gen.\n */\n @property({ type: Boolean, reflect: true })\n public set vertical(value: boolean) {\n const oldValue = this._vertical;\n this._vertical = value;\n this.requestUpdate('vertical', oldValue);\n if (window.__swc?.DEBUG) {\n window.__swc.warn(\n this,\n `The \"vertical\" attribute on <${this.localName}> is deprecated. Use orientation=\"vertical\" on <swc-button-group> when migrating to 2nd-gen.`,\n 'https://opensource.adobe.com/spectrum-web-components/components/button-group/',\n { level: 'deprecation' }\n );\n }\n }\n\n public get vertical(): boolean {\n return this._vertical;\n }\n\n private _vertical = false;\n\n @query('slot')\n slotElement!: HTMLSlotElement;\n\n protected override updated(changedProperties: PropertyValues): void {\n super.updated(changedProperties);\n\n if (changedProperties.has('size')) {\n this.manageChildrenSize(this.slotElement);\n }\n }\n\n protected handleSlotchange({\n target: slot,\n }: Event & { target: HTMLSlotElement }): void {\n this.manageChildrenSize(slot);\n }\n\n private manageChildrenSize(slot: HTMLSlotElement): void {\n const assignedElements = slot.assignedElements() as Button[];\n assignedElements.forEach((button) => {\n button.size = this.size;\n });\n }\n\n protected override render(): TemplateResult {\n return html`\n <slot @slotchange=${this.handleSlotchange}></slot>\n `;\n }\n}\n"],
5
+ "mappings": "qNAYA,OAEE,QAAAA,EAEA,cAAAC,EACA,mBAAAC,MAEK,gCACP,OACE,YAAAC,EACA,SAAAC,MACK,kDAGP,OAAOC,MAAY,wBAMZ,aAAM,oBAAoBJ,EAAWC,EAAiB,CAC3D,cAAe,EACjB,CAAC,CAAE,CAFI,kCA8BL,KAAQ,UAAY,GA3BpB,WAA2B,QAAyB,CAClD,MAAO,CAACG,CAAM,CAChB,CAOA,IAAW,SAASC,EAAgB,CAClC,MAAMC,EAAW,KAAK,UACtB,KAAK,UAAYD,EACjB,KAAK,cAAc,WAAYC,CAAQ,CASzC,CAEA,IAAW,UAAoB,CAC7B,OAAO,KAAK,SACd,CAOmB,QAAQC,EAAyC,CAClE,MAAM,QAAQA,CAAiB,EAE3BA,EAAkB,IAAI,MAAM,GAC9B,KAAK,mBAAmB,KAAK,WAAW,CAE5C,CAEU,iBAAiB,CACzB,OAAQC,CACV,EAA8C,CAC5C,KAAK,mBAAmBA,CAAI,CAC9B,CAEQ,mBAAmBA,EAA6B,CAC7BA,EAAK,iBAAiB,EAC9B,QAASC,GAAW,CACnCA,EAAO,KAAO,KAAK,IACrB,CAAC,CACH,CAEmB,QAAyB,CAC1C,OAAOV;AAAA,0BACe,KAAK,gBAAgB;AAAA,KAE7C,CACF,CAjDaW,EAAA,CADVR,EAAS,CAAE,KAAM,QAAS,QAAS,EAAK,CAAC,GAX/B,YAYA,wBAqBXQ,EAAA,CADCP,EAAM,MAAM,GAhCF,YAiCX",
6
+ "names": ["html", "SizedMixin", "SpectrumElement", "property", "query", "styles", "value", "oldValue", "changedProperties", "slot", "button", "__decorateClass"]
7
7
  }