@spectrum-web-components/illustrated-message 1.12.0-testing.20260223092154 → 1.12.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.
@@ -58,9 +58,18 @@
58
58
  "text": "string"
59
59
  },
60
60
  "privacy": "public",
61
- "default": "''",
61
+ "deprecated": "Use `<h2 slot=\"heading\">` instead.",
62
62
  "attribute": "heading"
63
63
  },
64
+ {
65
+ "kind": "field",
66
+ "name": "_heading",
67
+ "type": {
68
+ "text": "string"
69
+ },
70
+ "privacy": "private",
71
+ "default": "''"
72
+ },
64
73
  {
65
74
  "kind": "field",
66
75
  "name": "description",
@@ -68,8 +77,17 @@
68
77
  "text": "string"
69
78
  },
70
79
  "privacy": "public",
71
- "default": "''",
80
+ "deprecated": "Use `<span slot=\"description\">` instead.",
72
81
  "attribute": "description"
82
+ },
83
+ {
84
+ "kind": "field",
85
+ "name": "_description",
86
+ "type": {
87
+ "text": "string"
88
+ },
89
+ "privacy": "private",
90
+ "default": "''"
73
91
  }
74
92
  ],
75
93
  "attributes": [
@@ -78,7 +96,7 @@
78
96
  "type": {
79
97
  "text": "string"
80
98
  },
81
- "default": "''",
99
+ "deprecated": "Use `<h2 slot=\"heading\">` instead.",
82
100
  "fieldName": "heading"
83
101
  },
84
102
  {
@@ -86,7 +104,7 @@
86
104
  "type": {
87
105
  "text": "string"
88
106
  },
89
- "default": "''",
107
+ "deprecated": "Use `<span slot=\"description\">` instead.",
90
108
  "fieldName": "description"
91
109
  }
92
110
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/illustrated-message",
3
- "version": "1.12.0-testing.20260223092154",
3
+ "version": "1.12.0",
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.0-testing.20260223092154",
58
- "@spectrum-web-components/styles": "1.12.0-testing.20260223092154"
57
+ "@spectrum-web-components/base": "1.12.0",
58
+ "@spectrum-web-components/styles": "1.12.0"
59
59
  },
60
60
  "keywords": [
61
61
  "design-system",
@@ -20,7 +20,17 @@ import { CSSResultArray, SpectrumElement, TemplateResult } from '@spectrum-web-c
20
20
  export declare class IllustratedMessage extends SpectrumElement {
21
21
  static readonly is = "sp-illustrated-message";
22
22
  static get styles(): CSSResultArray;
23
- heading: string;
24
- description: string;
23
+ /**
24
+ * @deprecated Use `<h2 slot="heading">` instead.
25
+ */
26
+ get heading(): string;
27
+ set heading(value: string);
28
+ private _heading;
29
+ /**
30
+ * @deprecated Use `<span slot="description">` instead.
31
+ */
32
+ get description(): string;
33
+ set description(value: string);
34
+ private _description;
25
35
  protected render(): TemplateResult;
26
36
  }
@@ -20,12 +20,42 @@ import messageStyles from "./illustrated-message.css.js";
20
20
  export class IllustratedMessage extends SpectrumElement {
21
21
  constructor() {
22
22
  super(...arguments);
23
- this.heading = "";
24
- this.description = "";
23
+ this._heading = "";
24
+ this._description = "";
25
25
  }
26
26
  static get styles() {
27
27
  return [headingStyles, bodyStyles, messageStyles];
28
28
  }
29
+ get heading() {
30
+ return this._heading;
31
+ }
32
+ set heading(value) {
33
+ if (value) {
34
+ window.__swc.warn(
35
+ this,
36
+ `The "heading" property on <${this.localName}> has been deprecated and will be removed in a future release. Use <h2 slot="heading"> instead.`,
37
+ "https://opensource.adobe.com/spectrum-web-components/components/illustrated-message/",
38
+ { level: "deprecation" }
39
+ );
40
+ }
41
+ this._heading = value;
42
+ this.requestUpdate("heading", this._heading);
43
+ }
44
+ get description() {
45
+ return this._description;
46
+ }
47
+ set description(value) {
48
+ if (value) {
49
+ window.__swc.warn(
50
+ this,
51
+ `The "description" property on <${this.localName}> has been deprecated and will be removed in a future release. Use <span slot="description"> instead.`,
52
+ "https://opensource.adobe.com/spectrum-web-components/components/illustrated-message/",
53
+ { level: "deprecation" }
54
+ );
55
+ }
56
+ this._description = value;
57
+ this.requestUpdate("description", this._description);
58
+ }
29
59
  render() {
30
60
  return html`
31
61
  <div id="illustration"><slot></slot></div>
@@ -44,8 +74,8 @@ export class IllustratedMessage extends SpectrumElement {
44
74
  IllustratedMessage.is = "sp-illustrated-message";
45
75
  __decorateClass([
46
76
  property()
47
- ], IllustratedMessage.prototype, "heading", 2);
77
+ ], IllustratedMessage.prototype, "heading", 1);
48
78
  __decorateClass([
49
79
  property()
50
- ], IllustratedMessage.prototype, "description", 2);
80
+ ], IllustratedMessage.prototype, "description", 1);
51
81
  //# sourceMappingURL=IllustratedMessage.dev.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["IllustratedMessage.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 SpectrumElement,\n TemplateResult,\n} from '@spectrum-web-components/base';\nimport { property } from '@spectrum-web-components/base/src/decorators.js';\nimport bodyStyles from '@spectrum-web-components/styles/body.js';\nimport headingStyles from '@spectrum-web-components/styles/heading.js';\n\nimport messageStyles from './illustrated-message.css.js';\n\n/**\n * @element sp-illustrated-message\n *\n * @slot - The SVG that represents the illustration\n * @slot heading - Headline for the message\n * @slot description - Description text for the illustration\n */\nexport class IllustratedMessage extends SpectrumElement {\n public static readonly is = 'sp-illustrated-message';\n\n public static override get styles(): CSSResultArray {\n return [headingStyles, bodyStyles, messageStyles];\n }\n\n @property()\n public heading = '';\n\n @property()\n public description = '';\n\n protected override render(): TemplateResult {\n return html`\n <div id=\"illustration\"><slot></slot></div>\n <h2\n id=\"heading\"\n class=\"spectrum-Heading spectrum-Heading--sizeL spectrum-Heading--light\"\n >\n <slot name=\"heading\">${this.heading}</slot>\n </h2>\n <div id=\"description\" class=\"spectrum-Body spectrum-Body--sizeS\">\n <slot name=\"description\">${this.description}</slot>\n </div>\n `;\n }\n}\n"],
5
- "mappings": ";;;;;;;;;;;AAYA;AAAA,EAEE;AAAA,EACA;AAAA,OAEK;AACP,SAAS,gBAAgB;AACzB,OAAO,gBAAgB;AACvB,OAAO,mBAAmB;AAE1B,OAAO,mBAAmB;AASnB,aAAM,2BAA2B,gBAAgB;AAAA,EAAjD;AAAA;AAQL,SAAO,UAAU;AAGjB,SAAO,cAAc;AAAA;AAAA,EARrB,WAA2B,SAAyB;AAClD,WAAO,CAAC,eAAe,YAAY,aAAa;AAAA,EAClD;AAAA,EAQmB,SAAyB;AAC1C,WAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,+BAMoB,KAAK,OAAO;AAAA;AAAA;AAAA,mCAGR,KAAK,WAAW;AAAA;AAAA;AAAA,EAGjD;AACF;AA3Ba,mBACY,KAAK;AAOrB;AAAA,EADN,SAAS;AAAA,GAPC,mBAQJ;AAGA;AAAA,EADN,SAAS;AAAA,GAVC,mBAWJ;",
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 SpectrumElement,\n TemplateResult,\n} from '@spectrum-web-components/base';\nimport { property } from '@spectrum-web-components/base/src/decorators.js';\nimport bodyStyles from '@spectrum-web-components/styles/body.js';\nimport headingStyles from '@spectrum-web-components/styles/heading.js';\n\nimport messageStyles from './illustrated-message.css.js';\n\n/**\n * @element sp-illustrated-message\n *\n * @slot - The SVG that represents the illustration\n * @slot heading - Headline for the message\n * @slot description - Description text for the illustration\n */\nexport class IllustratedMessage extends SpectrumElement {\n public static readonly is = 'sp-illustrated-message';\n\n public static override get styles(): CSSResultArray {\n return [headingStyles, bodyStyles, messageStyles];\n }\n\n /**\n * @deprecated Use `<h2 slot=\"heading\">` instead.\n */\n @property()\n public get heading(): string {\n return this._heading;\n }\n\n public set heading(value: string) {\n if (window.__swc?.DEBUG && value) {\n window.__swc.warn(\n this,\n `The \"heading\" property on <${this.localName}> has been deprecated and will be removed in a future release. Use <h2 slot=\"heading\"> instead.`,\n 'https://opensource.adobe.com/spectrum-web-components/components/illustrated-message/',\n { level: 'deprecation' }\n );\n }\n this._heading = value;\n this.requestUpdate('heading', this._heading);\n }\n\n private _heading = '';\n\n /**\n * @deprecated Use `<span slot=\"description\">` instead.\n */\n @property()\n public get description(): string {\n return this._description;\n }\n\n public set description(value: string) {\n if (window.__swc?.DEBUG && value) {\n window.__swc.warn(\n this,\n `The \"description\" property on <${this.localName}> has been deprecated and will be removed in a future release. Use <span slot=\"description\"> instead.`,\n 'https://opensource.adobe.com/spectrum-web-components/components/illustrated-message/',\n { level: 'deprecation' }\n );\n }\n this._description = value;\n this.requestUpdate('description', this._description);\n }\n\n private _description = '';\n\n protected override render(): TemplateResult {\n return html`\n <div id=\"illustration\"><slot></slot></div>\n <h2\n id=\"heading\"\n class=\"spectrum-Heading spectrum-Heading--sizeL spectrum-Heading--light\"\n >\n <slot name=\"heading\">${this.heading}</slot>\n </h2>\n <div id=\"description\" class=\"spectrum-Body spectrum-Body--sizeS\">\n <slot name=\"description\">${this.description}</slot>\n </div>\n `;\n }\n}\n"],
5
+ "mappings": ";;;;;;;;;;;AAYA;AAAA,EAEE;AAAA,EACA;AAAA,OAEK;AACP,SAAS,gBAAgB;AACzB,OAAO,gBAAgB;AACvB,OAAO,mBAAmB;AAE1B,OAAO,mBAAmB;AASnB,aAAM,2BAA2B,gBAAgB;AAAA,EAAjD;AAAA;AA4BL,SAAQ,WAAW;AAuBnB,SAAQ,eAAe;AAAA;AAAA,EAhDvB,WAA2B,SAAyB;AAClD,WAAO,CAAC,eAAe,YAAY,aAAa;AAAA,EAClD;AAAA,EAMA,IAAW,UAAkB;AAC3B,WAAO,KAAK;AAAA,EACd;AAAA,EAEA,IAAW,QAAQ,OAAe;AAChC,QAA2B,OAAO;AAChC,aAAO,MAAM;AAAA,QACX;AAAA,QACA,8BAA8B,KAAK,SAAS;AAAA,QAC5C;AAAA,QACA,EAAE,OAAO,cAAc;AAAA,MACzB;AAAA,IACF;AACA,SAAK,WAAW;AAChB,SAAK,cAAc,WAAW,KAAK,QAAQ;AAAA,EAC7C;AAAA,EAQA,IAAW,cAAsB;AAC/B,WAAO,KAAK;AAAA,EACd;AAAA,EAEA,IAAW,YAAY,OAAe;AACpC,QAA2B,OAAO;AAChC,aAAO,MAAM;AAAA,QACX;AAAA,QACA,kCAAkC,KAAK,SAAS;AAAA,QAChD;AAAA,QACA,EAAE,OAAO,cAAc;AAAA,MACzB;AAAA,IACF;AACA,SAAK,eAAe;AACpB,SAAK,cAAc,eAAe,KAAK,YAAY;AAAA,EACrD;AAAA,EAImB,SAAyB;AAC1C,WAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,+BAMoB,KAAK,OAAO;AAAA;AAAA;AAAA,mCAGR,KAAK,WAAW;AAAA;AAAA;AAAA,EAGjD;AACF;AAnEa,mBACY,KAAK;AAUjB;AAAA,EADV,SAAS;AAAA,GAVC,mBAWA;AAuBA;AAAA,EADV,SAAS;AAAA,GAjCC,mBAkCA;",
6
6
  "names": []
7
7
  }
@@ -1,4 +1,4 @@
1
- "use strict";var m=Object.defineProperty;var n=Object.getOwnPropertyDescriptor;var l=(r,t,s,i)=>{for(var e=i>1?void 0:i?n(t,s):t,o=r.length-1,d;o>=0;o--)(d=r[o])&&(e=(i?d(t,s,e):d(e))||e);return i&&e&&m(t,s,e),e};import{html as a,SpectrumElement as c}from"@spectrum-web-components/base";import{property as p}from"@spectrum-web-components/base/src/decorators.js";import u from"@spectrum-web-components/styles/body.js";import h from"@spectrum-web-components/styles/heading.js";import y from"./illustrated-message.css.js";export class IllustratedMessage extends c{constructor(){super(...arguments);this.heading="";this.description=""}static get styles(){return[h,u,y]}render(){return a`
1
+ "use strict";var p=Object.defineProperty;var l=Object.getOwnPropertyDescriptor;var d=(r,i,e,s)=>{for(var t=s>1?void 0:s?l(i,e):i,n=r.length-1,o;n>=0;n--)(o=r[n])&&(t=(s?o(i,e,t):o(t))||t);return s&&t&&p(i,e,t),t};import{html as c,SpectrumElement as h}from"@spectrum-web-components/base";import{property as a}from"@spectrum-web-components/base/src/decorators.js";import m from"@spectrum-web-components/styles/body.js";import u from"@spectrum-web-components/styles/heading.js";import g from"./illustrated-message.css.js";export class IllustratedMessage extends h{constructor(){super(...arguments);this._heading="";this._description=""}static get styles(){return[u,m,g]}get heading(){return this._heading}set heading(e){this._heading=e,this.requestUpdate("heading",this._heading)}get description(){return this._description}set description(e){this._description=e,this.requestUpdate("description",this._description)}render(){return c`
2
2
  <div id="illustration"><slot></slot></div>
3
3
  <h2
4
4
  id="heading"
@@ -9,5 +9,5 @@
9
9
  <div id="description" class="spectrum-Body spectrum-Body--sizeS">
10
10
  <slot name="description">${this.description}</slot>
11
11
  </div>
12
- `}}IllustratedMessage.is="sp-illustrated-message",l([p()],IllustratedMessage.prototype,"heading",2),l([p()],IllustratedMessage.prototype,"description",2);
12
+ `}}IllustratedMessage.is="sp-illustrated-message",d([a()],IllustratedMessage.prototype,"heading",1),d([a()],IllustratedMessage.prototype,"description",1);
13
13
  //# sourceMappingURL=IllustratedMessage.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["IllustratedMessage.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 SpectrumElement,\n TemplateResult,\n} from '@spectrum-web-components/base';\nimport { property } from '@spectrum-web-components/base/src/decorators.js';\nimport bodyStyles from '@spectrum-web-components/styles/body.js';\nimport headingStyles from '@spectrum-web-components/styles/heading.js';\n\nimport messageStyles from './illustrated-message.css.js';\n\n/**\n * @element sp-illustrated-message\n *\n * @slot - The SVG that represents the illustration\n * @slot heading - Headline for the message\n * @slot description - Description text for the illustration\n */\nexport class IllustratedMessage extends SpectrumElement {\n public static readonly is = 'sp-illustrated-message';\n\n public static override get styles(): CSSResultArray {\n return [headingStyles, bodyStyles, messageStyles];\n }\n\n @property()\n public heading = '';\n\n @property()\n public description = '';\n\n protected override render(): TemplateResult {\n return html`\n <div id=\"illustration\"><slot></slot></div>\n <h2\n id=\"heading\"\n class=\"spectrum-Heading spectrum-Heading--sizeL spectrum-Heading--light\"\n >\n <slot name=\"heading\">${this.heading}</slot>\n </h2>\n <div id=\"description\" class=\"spectrum-Body spectrum-Body--sizeS\">\n <slot name=\"description\">${this.description}</slot>\n </div>\n `;\n }\n}\n"],
5
- "mappings": "qNAYA,OAEE,QAAAA,EACA,mBAAAC,MAEK,gCACP,OAAS,YAAAC,MAAgB,kDACzB,OAAOC,MAAgB,0CACvB,OAAOC,MAAmB,6CAE1B,OAAOC,MAAmB,+BASnB,aAAM,2BAA2BJ,CAAgB,CAAjD,kCAQL,KAAO,QAAU,GAGjB,KAAO,YAAc,GARrB,WAA2B,QAAyB,CAClD,MAAO,CAACG,EAAeD,EAAYE,CAAa,CAClD,CAQmB,QAAyB,CAC1C,OAAOL;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,+BAMoB,KAAK,OAAO;AAAA;AAAA;AAAA,mCAGR,KAAK,WAAW;AAAA;AAAA,KAGjD,CACF,CA3Ba,mBACY,GAAK,yBAOrBM,EAAA,CADNJ,EAAS,GAPC,mBAQJ,uBAGAI,EAAA,CADNJ,EAAS,GAVC,mBAWJ",
6
- "names": ["html", "SpectrumElement", "property", "bodyStyles", "headingStyles", "messageStyles", "__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 SpectrumElement,\n TemplateResult,\n} from '@spectrum-web-components/base';\nimport { property } from '@spectrum-web-components/base/src/decorators.js';\nimport bodyStyles from '@spectrum-web-components/styles/body.js';\nimport headingStyles from '@spectrum-web-components/styles/heading.js';\n\nimport messageStyles from './illustrated-message.css.js';\n\n/**\n * @element sp-illustrated-message\n *\n * @slot - The SVG that represents the illustration\n * @slot heading - Headline for the message\n * @slot description - Description text for the illustration\n */\nexport class IllustratedMessage extends SpectrumElement {\n public static readonly is = 'sp-illustrated-message';\n\n public static override get styles(): CSSResultArray {\n return [headingStyles, bodyStyles, messageStyles];\n }\n\n /**\n * @deprecated Use `<h2 slot=\"heading\">` instead.\n */\n @property()\n public get heading(): string {\n return this._heading;\n }\n\n public set heading(value: string) {\n if (window.__swc?.DEBUG && value) {\n window.__swc.warn(\n this,\n `The \"heading\" property on <${this.localName}> has been deprecated and will be removed in a future release. Use <h2 slot=\"heading\"> instead.`,\n 'https://opensource.adobe.com/spectrum-web-components/components/illustrated-message/',\n { level: 'deprecation' }\n );\n }\n this._heading = value;\n this.requestUpdate('heading', this._heading);\n }\n\n private _heading = '';\n\n /**\n * @deprecated Use `<span slot=\"description\">` instead.\n */\n @property()\n public get description(): string {\n return this._description;\n }\n\n public set description(value: string) {\n if (window.__swc?.DEBUG && value) {\n window.__swc.warn(\n this,\n `The \"description\" property on <${this.localName}> has been deprecated and will be removed in a future release. Use <span slot=\"description\"> instead.`,\n 'https://opensource.adobe.com/spectrum-web-components/components/illustrated-message/',\n { level: 'deprecation' }\n );\n }\n this._description = value;\n this.requestUpdate('description', this._description);\n }\n\n private _description = '';\n\n protected override render(): TemplateResult {\n return html`\n <div id=\"illustration\"><slot></slot></div>\n <h2\n id=\"heading\"\n class=\"spectrum-Heading spectrum-Heading--sizeL spectrum-Heading--light\"\n >\n <slot name=\"heading\">${this.heading}</slot>\n </h2>\n <div id=\"description\" class=\"spectrum-Body spectrum-Body--sizeS\">\n <slot name=\"description\">${this.description}</slot>\n </div>\n `;\n }\n}\n"],
5
+ "mappings": "qNAYA,OAEE,QAAAA,EACA,mBAAAC,MAEK,gCACP,OAAS,YAAAC,MAAgB,kDACzB,OAAOC,MAAgB,0CACvB,OAAOC,MAAmB,6CAE1B,OAAOC,MAAmB,+BASnB,aAAM,2BAA2BJ,CAAgB,CAAjD,kCA4BL,KAAQ,SAAW,GAuBnB,KAAQ,aAAe,GAhDvB,WAA2B,QAAyB,CAClD,MAAO,CAACG,EAAeD,EAAYE,CAAa,CAClD,CAMA,IAAW,SAAkB,CAC3B,OAAO,KAAK,QACd,CAEA,IAAW,QAAQC,EAAe,CAShC,KAAK,SAAWA,EAChB,KAAK,cAAc,UAAW,KAAK,QAAQ,CAC7C,CAQA,IAAW,aAAsB,CAC/B,OAAO,KAAK,YACd,CAEA,IAAW,YAAYA,EAAe,CASpC,KAAK,aAAeA,EACpB,KAAK,cAAc,cAAe,KAAK,YAAY,CACrD,CAImB,QAAyB,CAC1C,OAAON;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,+BAMoB,KAAK,OAAO;AAAA;AAAA;AAAA,mCAGR,KAAK,WAAW;AAAA;AAAA,KAGjD,CACF,CAnEa,mBACY,GAAK,yBAUjBO,EAAA,CADVL,EAAS,GAVC,mBAWA,uBAuBAK,EAAA,CADVL,EAAS,GAjCC,mBAkCA",
6
+ "names": ["html", "SpectrumElement", "property", "bodyStyles", "headingStyles", "messageStyles", "value", "__decorateClass"]
7
7
  }