From 15bb7ad3b0a68baa167ce6fbadb6f3873d73b08a Mon Sep 17 00:00:00 2001 From: Mark Lawlor Date: Fri, 15 Aug 2025 09:32:52 +1000 Subject: [PATCH] feat: container-type --- src/compiler/declarations.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/compiler/declarations.ts b/src/compiler/declarations.ts index 55e253ed..7b8a6f17 100644 --- a/src/compiler/declarations.ts +++ b/src/compiler/declarations.ts @@ -864,7 +864,11 @@ function parseZIndex( } } -function parseContainerType(_value: unknown, _builder: StylesheetBuilder) { +function parseContainerType( + _declaration: DeclarationType<"container-type">, + builder: StylesheetBuilder, +) { + builder.addContainer(["___default___"]); return; }