{"version":3,"sources":["../../../../src/lib/AreStyle/AreStyle.context.ts"],"names":[],"mappings":";;;;AAQO,IAAM,QAAA,GAAN,cAAuB,UAAA,CAAW;AAAA,EAIrC,WAAA,CACI,QACA,KAAA,EAEF;AACE,IAAA,KAAA,CAAM;AAAA,MACF,IAAA,EAAM,KAAA,GAAQ,KAAA,CAAM,QAAA,EAAS,GAAI;AAAA,KACpC,CAAA;AAED,IAAA,IAAA,CAAK,MAAA,GAAS,MAAA;AAAA,EAClB;AAEJ;AAhBa,QAAA,GAAN,eAAA,CAAA;AAAA,EAJN,QAAQ,MAAA,CAAO;AAAA,IACZ,SAAA,EAAW,YAAA;AAAA,IACX,WAAA,EAAa;AAAA,GAChB;AAAA,CAAA,EACY,QAAA,CAAA","file":"AreStyle.context.mjs","sourcesContent":["import { A_Fragment, ASEID } from \"@adaas/a-concept\";\nimport { A_Frame } from \"@adaas/a-frame/core\";\n\n\n@A_Frame.Define({\n    namespace: 'a-are-html',\n    description: 'Context fragment that holds the resolved CSS style rules string for a component scope. Populated during lifecycle initialisation and read by the compiler when emitting AddStyle instructions for inline styles declared on the component host element.'\n})\nexport class AreStyle extends A_Fragment {\n\n    styles!: string;\n\n    constructor(\n        styles: string,\n        aseid?: ASEID | string,\n\n    ) {\n        super({\n            name: aseid ? aseid.toString() : 'default-style',\n        });\n\n        this.styles = styles;\n    }\n\n}"]}