@@ -8,13 +8,17 @@ import { HTMLStencilElement, JSXBase } from "@stencil/core/internal";
88export namespace Components {
99 interface MehComments {
1010 /**
11- * The base URL for where the meh system is hosted If not provided, defaults to same origin
11+ * The base URL for where the meh system is hosted If not provided, attempts to detect from script tag
1212 */
1313 "backend" : string ;
1414 /**
1515 * Custom translations object that overrides default and loaded translations This allows users to provide their own translations directly
1616 */
1717 "customTranslations" : string | Partial < typeof this . defaultTranslations > ;
18+ /**
19+ * URL to an external stylesheet to be injected into the shadow DOM
20+ */
21+ "externalStyles" : string ;
1822 /**
1923 * The language code for translations If not provided, defaults to 'en'
2024 */
@@ -30,13 +34,17 @@ export namespace Components {
3034 }
3135 interface MehCount {
3236 /**
33- * The base URL for where the meh system is hosted If not provided, defaults to same origin
37+ * The base URL for where the meh system is hosted If not provided, attempts to detect from script tag
3438 */
3539 "backend" : string ;
3640 /**
3741 * Custom translations object that overrides default and loaded translations This allows users to provide their own translations directly
3842 */
3943 "customTranslations" : string | Partial < typeof this . defaultTranslations > ;
44+ /**
45+ * URL to an external stylesheet to be injected into the shadow DOM
46+ */
47+ "externalStyles" : string ;
4048 /**
4149 * The language code for translations If not provided, defaults to 'en'
4250 */
@@ -56,13 +64,17 @@ export namespace Components {
5664 }
5765 interface MehForm {
5866 /**
59- * The base URL for where the meh system is hosted If not provided, defaults to same origin
67+ * The base URL for where the meh system is hosted If not provided, attempts to detect from script tag
6068 */
6169 "backend" : string ;
6270 /**
6371 * Custom translations object that overrides default and loaded translations This allows users to provide their own translations directly
6472 */
6573 "customTranslations" : string | Partial < typeof this . defaultTranslations > ;
74+ /**
75+ * URL to an external stylesheet to be injected into the shadow DOM
76+ */
77+ "externalStyles" : string ;
6678 /**
6779 * The language code for translations If not provided, defaults to 'en'
6880 */
@@ -78,13 +90,17 @@ export namespace Components {
7890 }
7991 interface MehLogin {
8092 /**
81- * The base URL for where the meh system is hosted If not provided, defaults to same origin
93+ * The base URL for where the meh system is hosted If not provided, attempts to detect from script tag
8294 */
8395 "backend" : string ;
8496 /**
8597 * Custom translations object that overrides default and loaded translations This allows users to provide their own translations directly
8698 */
8799 "customTranslations" : string | Partial < typeof this . defaultTranslations > ;
100+ /**
101+ * URL to an external stylesheet to be injected into the shadow DOM
102+ */
103+ "externalStyles" : string ;
88104 /**
89105 * The language code for translations If not provided, defaults to 'en'
90106 */
@@ -96,13 +112,17 @@ export namespace Components {
96112 }
97113 interface MehMastodon {
98114 /**
99- * The base URL for where the meh system is hosted If not provided, defaults to same origin
115+ * The base URL for where the meh system is hosted If not provided, attempts to detect from script tag
100116 */
101117 "backend" : string ;
102118 /**
103119 * Custom translations object that overrides default and loaded translations This allows users to provide their own translations directly
104120 */
105121 "customTranslations" : string | Partial < typeof this . defaultTranslations > ;
122+ /**
123+ * URL to an external stylesheet to be injected into the shadow DOM
124+ */
125+ "externalStyles" : string ;
106126 /**
107127 * The language code for translations If not provided, defaults to 'en'
108128 */
@@ -159,13 +179,17 @@ declare global {
159179declare namespace LocalJSX {
160180 interface MehComments {
161181 /**
162- * The base URL for where the meh system is hosted If not provided, defaults to same origin
182+ * The base URL for where the meh system is hosted If not provided, attempts to detect from script tag
163183 */
164184 "backend" ?: string ;
165185 /**
166186 * Custom translations object that overrides default and loaded translations This allows users to provide their own translations directly
167187 */
168188 "customTranslations" ?: string | Partial < typeof this . defaultTranslations > ;
189+ /**
190+ * URL to an external stylesheet to be injected into the shadow DOM
191+ */
192+ "externalStyles" ?: string ;
169193 /**
170194 * The language code for translations If not provided, defaults to 'en'
171195 */
@@ -181,13 +205,17 @@ declare namespace LocalJSX {
181205 }
182206 interface MehCount {
183207 /**
184- * The base URL for where the meh system is hosted If not provided, defaults to same origin
208+ * The base URL for where the meh system is hosted If not provided, attempts to detect from script tag
185209 */
186210 "backend" ?: string ;
187211 /**
188212 * Custom translations object that overrides default and loaded translations This allows users to provide their own translations directly
189213 */
190214 "customTranslations" ?: string | Partial < typeof this . defaultTranslations > ;
215+ /**
216+ * URL to an external stylesheet to be injected into the shadow DOM
217+ */
218+ "externalStyles" ?: string ;
191219 /**
192220 * The language code for translations If not provided, defaults to 'en'
193221 */
@@ -207,13 +235,17 @@ declare namespace LocalJSX {
207235 }
208236 interface MehForm {
209237 /**
210- * The base URL for where the meh system is hosted If not provided, defaults to same origin
238+ * The base URL for where the meh system is hosted If not provided, attempts to detect from script tag
211239 */
212240 "backend" ?: string ;
213241 /**
214242 * Custom translations object that overrides default and loaded translations This allows users to provide their own translations directly
215243 */
216244 "customTranslations" ?: string | Partial < typeof this . defaultTranslations > ;
245+ /**
246+ * URL to an external stylesheet to be injected into the shadow DOM
247+ */
248+ "externalStyles" ?: string ;
217249 /**
218250 * The language code for translations If not provided, defaults to 'en'
219251 */
@@ -229,13 +261,17 @@ declare namespace LocalJSX {
229261 }
230262 interface MehLogin {
231263 /**
232- * The base URL for where the meh system is hosted If not provided, defaults to same origin
264+ * The base URL for where the meh system is hosted If not provided, attempts to detect from script tag
233265 */
234266 "backend" ?: string ;
235267 /**
236268 * Custom translations object that overrides default and loaded translations This allows users to provide their own translations directly
237269 */
238270 "customTranslations" ?: string | Partial < typeof this . defaultTranslations > ;
271+ /**
272+ * URL to an external stylesheet to be injected into the shadow DOM
273+ */
274+ "externalStyles" ?: string ;
239275 /**
240276 * The language code for translations If not provided, defaults to 'en'
241277 */
@@ -247,13 +283,17 @@ declare namespace LocalJSX {
247283 }
248284 interface MehMastodon {
249285 /**
250- * The base URL for where the meh system is hosted If not provided, defaults to same origin
286+ * The base URL for where the meh system is hosted If not provided, attempts to detect from script tag
251287 */
252288 "backend" ?: string ;
253289 /**
254290 * Custom translations object that overrides default and loaded translations This allows users to provide their own translations directly
255291 */
256292 "customTranslations" ?: string | Partial < typeof this . defaultTranslations > ;
293+ /**
294+ * URL to an external stylesheet to be injected into the shadow DOM
295+ */
296+ "externalStyles" ?: string ;
257297 /**
258298 * The language code for translations If not provided, defaults to 'en'
259299 */
0 commit comments