From 77037e72fad20c6af8a35cf232430fd5e0d7d73f Mon Sep 17 00:00:00 2001 From: "(quasar) nebula" Date: Sun, 31 Dec 2023 22:25:57 -0400 Subject: html: new 'attributes' slot type --- src/util/html.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'src/util/html.js') diff --git a/src/util/html.js b/src/util/html.js index 5144a31b..20f51eaf 100644 --- a/src/util/html.js +++ b/src/util/html.js @@ -1056,6 +1056,7 @@ export class Template { 'boolean', 'symbol', 'html', + 'attributes', ]; if (slotDescription.type === 'function') { @@ -1160,6 +1161,10 @@ export class Template { return isHTML(value); } + case 'attributes': { + return isAttributesAdditionSingletValue(value); + } + case 'string': { // Tags and templates are valid in string arguments - they'll be // stringified when exposed to the description's .content() function. @@ -1200,6 +1205,18 @@ export class Template { return providedValue; } + if (description.type === 'attributes') { + if (!providedValue) { + return blankAttributes(); + } + + if (providedValue instanceof Attributes) { + return providedValue.clone(); + } + + return new Attributes(providedValue); + } + if (description.type === 'string') { if (providedValue instanceof Tag || providedValue instanceof Template) { return providedValue.toString(); -- cgit 1.3.0-6-gf8a5