diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b3260f88..6e30a7ae 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -37,3 +37,19 @@ jobs:
- name: Build
run: bun run build
+
+ - name: Test
+ run: bun test
+
+ # Fails when docs/api-contract.md and the shipped types disagree, in
+ # either direction. Never runs with --write: regenerating the document on
+ # every build is what made the last one unable to disagree with the code.
+ - name: API Contract
+ run: bun run check:api
+
+ # Packs the tarball, installs it into a fresh consumer and builds against
+ # it. The only step that tests the artifact a consumer receives, and the
+ # one that catches a package dist imports but the manifest does not
+ # declare.
+ - name: Consumer Smoke
+ run: bun run smoke
diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml
deleted file mode 100644
index 38ad4fbe..00000000
--- a/.github/workflows/preview.yml
+++ /dev/null
@@ -1,73 +0,0 @@
-name: Deploy PR Preview
-
-on:
- pull_request:
- types: [opened, synchronize, reopened]
-
-permissions:
- pull-requests: write
- contents: read
-
-jobs:
- deploy-preview:
- runs-on: ubicloud-standard-2
- name: Deploy PR Preview
- steps:
- - uses: actions/checkout@v4
-
- - name: Setup Bun
- uses: oven-sh/setup-bun@v1
- with:
- bun-version: latest
-
- - name: Install Dependencies
- run: |
- bun install
- cd playground && bun install
-
- - name: Build Library
- run: bun run build
-
- - name: Build Playground
- run: cd playground && bun run build
-
- - name: Deploy to Surge
- env:
- SURGE_TOKEN: 256124bc72b634a53b5d5ec5f0c02258
- run: |
- bun install -g surge
- surge playground/dist pr-ui-preview-${{ github.event.pull_request.number }}.surge.sh --token ${{ env.SURGE_TOKEN }}
-
- - name: Comment PR
- uses: actions/github-script@v7
- with:
- github-token: ${{ secrets.GITHUB_TOKEN }}
- script: |
- const previewUrl = `https://pr-ui-preview-${context.issue.number}.surge.sh`;
- const body = `🚀 Preview deployment is ready!\n\nYou can view the preview at: ${previewUrl}`;
-
- const comments = await github.rest.issues.listComments({
- owner: context.repo.owner,
- repo: context.repo.repo,
- issue_number: context.issue.number,
- });
-
- const existingComment = comments.data.find(comment =>
- comment.body.includes('Preview deployment is ready!')
- );
-
- if (existingComment) {
- await github.rest.issues.updateComment({
- owner: context.repo.owner,
- repo: context.repo.repo,
- comment_id: existingComment.id,
- body: body
- });
- } else {
- await github.rest.issues.createComment({
- owner: context.repo.owner,
- repo: context.repo.repo,
- issue_number: context.issue.number,
- body: body
- });
- }
diff --git a/.gitignore b/.gitignore
index 36b60861..b0a8cf04 100644
--- a/.gitignore
+++ b/.gitignore
@@ -35,3 +35,6 @@ bun.lockb
# Finder (MacOS) folder config
.DS_Store
*.generated.tsx
+
+# Generated by the application-side iconify build, never by this library.
+src/styles/icons/
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 24352d74..d4356963 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -16,18 +16,23 @@ bun run lint
bun run format
```
-### Playground — hot-test without rebuilding
+### Trying a change
-The fastest way to try a change. Run from the repository root:
+There is no in-repo playground. It demoed every component against the pre-2.2 API
+and had become 477 typecheck errors of dead demos, so it was deleted rather than
+rewritten: a copy of the API living beside the API only ever drifts from it. The
+showcase belongs in [js.software](https://github.com/pathscale/js.software).
+
+[`docs/how-to-setup-playground.md`](docs/how-to-setup-playground.md) has two
+recipes, one aliased at `src/` for hot reload and one installed from the tarball.
+
+The quickest check without either:
```bash
-bun run playground:dev
+bun run build
+bun run smoke # scripts/smoke-consumer.ts, imports the built artifact
```
-The playground aliases `@pathscale/ui` to local `src/` via Vite, so edits under `src/` and
-`src/styles/` refresh immediately — no rebuild, no relink. `playground/src/App.tsx` demos
-every component, with longer examples in `playground/src/examples/`.
-
## Commit Convention
```
diff --git a/README.md b/README.md
index 895b737b..3bbbdfba 100644
--- a/README.md
+++ b/README.md
@@ -162,7 +162,7 @@ import — the published size is the whole library, not what ships to your users
|---|---|
| **[Live showcase](https://js.software)** | every component, rendered and interactive |
| **[Usage reference](https://github.com/pathscale/ui/blob/master/docs/ui-usage.md)** | theming, conventions, forms, table, toast, icons, dates |
-| **[Contributing](https://github.com/pathscale/ui/blob/master/CONTRIBUTING.md)** | local setup, playground, component checklist, proposal template |
+| **[Contributing](https://github.com/pathscale/ui/blob/master/CONTRIBUTING.md)** | local setup, component checklist, proposal template |
## License
diff --git a/bun.lock b/bun.lock
index b90c3458..53b1c804 100644
--- a/bun.lock
+++ b/bun.lock
@@ -40,10 +40,10 @@
"postcss": "^8.5.15",
"postcss-cli": "^11.0.1",
"postcss-selector-parser": "^7.1.1",
- "rsbuild-plugin-solid-layouts": "^0.1.2",
+ "rsbuild-plugin-solid-layouts": "^0.1.4",
"solid-js": "^1.9.14",
- "solid-layouts": "^0.1.2",
- "solid-layouts-oxc": "^0.1.2",
+ "solid-layouts": "^0.1.3",
+ "solid-layouts-oxc": "^0.1.7",
"svgo": "^3.3.3",
"typescript": "^6.0.3",
},
@@ -63,7 +63,7 @@
"@tanstack/solid-table": "^8.0.0",
"popmotion": "^11.0.5",
"solid-js": "^1.9",
- "solid-layouts": "^0.1.2",
+ "solid-layouts": "^0.1.3",
},
"optionalPeers": [
"@standard-schema/spec",
@@ -630,7 +630,7 @@
"rsbuild-plugin-dts": ["rsbuild-plugin-dts@0.22.0", "", { "dependencies": { "@ast-grep/napi": "0.37.0" }, "peerDependencies": { "@microsoft/api-extractor": "^7", "@rsbuild/core": "^1.0.0 || ^2.0.0-0", "@typescript/native-preview": "7.x", "typescript": "^5 || ^6" }, "optionalPeers": ["@microsoft/api-extractor", "@typescript/native-preview", "typescript"] }, "sha512-Oyiu5oJDHWOnBv7yRr8eAGfoEddwxfPqUbAX6HvcJxrnR/h6Zd0VgTBWVTgqALYhLcL2ZdyZ2vwnqfhan4krwA=="],
- "rsbuild-plugin-solid-layouts": ["rsbuild-plugin-solid-layouts@0.1.2", "", { "dependencies": { "solid-layouts-oxc": "0.1.2" }, "peerDependencies": { "@rsbuild/core": ">=1.3.0" } }, "sha512-UlYqXNLo2ETd8NTS31NuzmzKgZYB8bKg/D3nUiJlG5MnxSFu50Erw0SBX8OtvwPCEGmV10ql3uC/O8Jso00mjw=="],
+ "rsbuild-plugin-solid-layouts": ["rsbuild-plugin-solid-layouts@0.1.4", "", { "dependencies": { "solid-layouts-oxc": "0.1.7" }, "peerDependencies": { "@rsbuild/core": ">=1.3.0" } }, "sha512-6FgOrK2e9u8Bueb26AUVUAw5eE4zLMis8eA6dtF0tl+vByZEksQIUtkEHvNO17ki8sodoyOrMt+M1HFivNEZUg=="],
"sax": ["sax@1.6.0", "", {}, "sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA=="],
@@ -644,9 +644,9 @@
"solid-js": ["solid-js@1.9.14", "", { "dependencies": { "csstype": "^3.1.0", "seroval": "~1.5.4", "seroval-plugins": "~1.5.4" } }, "sha512-sAEXC0Kk0S1EDg+8ysEWJDbYhA3RRoEjwuySUGlKIemeo0I5YZfOyumNjNs9Sv3y2nmhD+0rW66ag2HsMuQiGQ=="],
- "solid-layouts": ["solid-layouts@0.1.2", "", { "peerDependencies": { "solid-js": "^1.9.14" } }, "sha512-0RHmvB/8B9SsqgiZRgqFP3naa0BcWzY34JKMp30FTyA6BeD0/sgmSvaNciEYq0/Jcn2i1zK+LLbz5/leqEVncg=="],
+ "solid-layouts": ["solid-layouts@0.1.3", "", { "peerDependencies": { "solid-js": "^1.9.14" } }, "sha512-SDlahgR/wbVA7x6M7Vgm1XqIShJ/1JeN0Kvbf4TZqj3CAZDjaTugkoJBogfg14+/Kfnh0BZ+86QFwjcXzMrpXA=="],
- "solid-layouts-oxc": ["solid-layouts-oxc@0.1.2", "", { "bin": { "solid-layouts-library": "bin/solid-layouts-library.js", "solid-layouts-application": "bin/solid-layouts-application.js", "solid-layouts-lint": "bin/solid-layouts-lint.js" } }, "sha512-WQqr5Ap28icOwMqBA6kuHFCeulpNPn26eV6DHfn3L4QRy98d7peJBO9iqwm8Mnm8PtMzh8FJPlUJ+xiVDjmUYw=="],
+ "solid-layouts-oxc": ["solid-layouts-oxc@0.1.7", "", { "bin": { "solid-layouts-library": "bin/solid-layouts-library.js", "solid-layouts-application": "bin/solid-layouts-application.js", "solid-layouts-lint": "bin/solid-layouts-lint.js" } }, "sha512-1rVht4oKW6SnW8uHjXBVWUb3jr8GwuUH+23T3UCvqj+HaWfBlWtgseefTMWf9qlAVDjX5BGE2V/kNV4gHxcGpg=="],
"solid-refresh": ["solid-refresh@0.7.8", "", { "dependencies": { "@babel/generator": "^7.29.1", "@babel/types": "^7.29.0" }, "peerDependencies": { "solid-js": "^1.3" } }, "sha512-iG442T3HXJp5jEebCy8okETrWnmX7CnxNOKrJQVeufh6WXSn+xtLXaptUXXMHTWcRqTJOJwQ8UwzxrRtVFSIzA=="],
diff --git a/docs/api-contract.md b/docs/api-contract.md
new file mode 100644
index 00000000..ca14ebab
--- /dev/null
+++ b/docs/api-contract.md
@@ -0,0 +1,733 @@
+# API contract
+
+**Committed, hand-edited, and enforced.** `bun run check:api` fails the build
+when this file and the shipped types disagree, in either direction: a promise
+the build does not keep, or API that shipped without being written down.
+
+It is deliberately not regenerated on every build. A document derived from the
+code cannot disagree with the code, which is how eleven component renames stayed
+invisible for a day behind a doc that looked correct the whole time.
+
+When an API change is intentional, run `bun run check:api -- --write`, read the
+diff, and commit it. The diff is the review.
+
+179 components. An empty list means the component adds nothing beyond
+HTML attributes and `UIBaseProps`; that is an assertion, not a gap.
+
+---
+
+### Accordion
+
+`children defaultValue disabled hideSeparator onValueChange selectionMode state value variant`
+
+### AccordionContent
+
+`children keepMounted`
+
+### AccordionIndicator
+
+`children`
+
+### AccordionItem
+
+`children disabled state value`
+
+### AccordionTrigger
+
+`children indicator showIndicator`
+
+### Address
+
+`copiedLabel copyLabel copyable explorerLabel explorerUrl font lead name onCopy size state tail truncate value`
+
+### Alert
+
+`children dismissLabel flavor icon onDismiss placement title variant`
+
+### AuthCard
+
+`brandingSlot children description footer title`
+
+### AuthFieldGroup
+
+`children gap`
+
+### AuthFooterLinks
+
+`align items`
+
+### AuthMessage
+
+`flavor message`
+
+### AuthPoweredBy
+
+`align href label logo variant`
+
+### AuthSubmitButton
+
+`children flavor size state type variant width`
+
+### Avatar
+
+`children flavor size variant`
+
+### AvatarFallback
+
+`children delayMs`
+
+### AvatarImage
+
+``
+
+### Badge
+
+`children class flavor placement size state variant`
+
+### Breadcrumb
+
+`children separator`
+
+### BreadcrumbItem
+
+`children href isCurrent`
+
+### Button
+
+`children flavor radius size state type variant width`
+
+### ButtonGroup
+
+`children fullWidth orientation size state variant`
+
+### ButtonGroupSeparator
+
+``
+
+### Calendar
+
+``
+
+### Card
+
+`children elevation flavor footer header isInteractive material padding radius state variant`
+
+### CardBody
+
+`children`
+
+### CardFooter
+
+`children`
+
+### CardHeader
+
+`children`
+
+### CardRoot
+
+`children elevation flavor footer header isInteractive material padding radius state variant`
+
+### ChatBubble
+
+`end`
+
+### Checkbox
+
+`children defaultChecked description indeterminate isIndeterminate issues state variant`
+
+### CheckboxGroup
+
+`children defaultValue disabled issues name onChange state value variant`
+
+### Chip
+
+`children class endIcon flavor onRemove removeButtonLabel size startIcon state variant`
+
+### CloseButton
+
+`endIcon isPending startIcon state variant`
+
+### Collapsible
+
+`children defaultOpen disabled id onOpenChange open state`
+
+### ColorArea
+
+`onChange state value`
+
+### ColorField
+
+`defaultValue format fullWidth onChange state value`
+
+### ColorPicker
+
+`children defaultValue onChange state value`
+
+### ColorSlider
+
+`defaultValue onChange state type value`
+
+### ColorSwatch
+
+`color colorName isSelected onChange onSelect shape size state`
+
+### ColorSwatchPicker
+
+`children defaultValue onChange state value`
+
+### ColorWheelFlower
+
+`class mode palette`
+
+### ComboBox
+
+`allowsCustomValue children defaultFilter defaultInputValue defaultOpen defaultSelectedKey disabled endIcon fullWidth inputValue issues itemDisabled itemKey itemTextValue items menuTrigger name onInputChange onOpenChange onSelectionChange open placeholder required selectedKey startIcon state variant`
+
+### ComboBoxInput
+
+`onInput`
+
+### ComboBoxInputGroup
+
+`children`
+
+### ComboBoxList
+
+`children endIcon renderEmpty`
+
+### ComboBoxPopover
+
+`children`
+
+### ComboBoxTrigger
+
+`endIcon startIcon`
+
+### Composer
+
+`autofocus defaultValue hint issues lead maxRows minRows name onChange onHeightChange onSubmit placeholder radius size state submitLabel submitOnEnter trail value variant viewportHeight`
+
+### CookieConsent
+
+`analytics marketing onConsentChange storageKeys texts type`
+
+### DateField
+
+`children defaultValue disabled fullWidth issues name onBlur onChange required state value variant`
+
+### DateFieldGroup
+
+`children`
+
+### DateFieldInput
+
+`onInput`
+
+### DateFieldInputContainer
+
+``
+
+### DateFieldPrefix
+
+``
+
+### DateFieldSegment
+
+`segment`
+
+### DateFieldSuffix
+
+``
+
+### DatePicker
+
+``
+
+### DateRangePicker
+
+``
+
+### Dialog
+
+`backdrop children defaultOpen isDismissable onOpenChange open placement scrollBehavior shouldCloseOnBackdropClick shouldCloseOnEsc size`
+
+### DialogBackdrop
+
+`children isDismissable shouldCloseOnBackdropClick variant`
+
+### DialogBody
+
+`children`
+
+### DialogCloseTrigger
+
+`children`
+
+### DialogContent
+
+`backdrop children isDismissable placement scrollBehavior shouldCloseOnBackdropClick size`
+
+### DialogFooter
+
+`children`
+
+### DialogHeader
+
+`children`
+
+### DialogHeading
+
+`children`
+
+### DialogIcon
+
+`children`
+
+### DialogTrigger
+
+`children`
+
+### Dock
+
+`baseSize desktopClass gap hoverIconSize hoverSize iconSize itemClass items magnify magnifyRange mobileClass mobileMode mobilePopupDirection mobileToggleIcon nudge orientation showContainer showDesktop showMobile springDamping springMass springStiffness tooltipClass tooltipDirection`
+
+### Drawer
+
+`backdrop children defaultOpen isDismissable onOpenChange open placement restoreFocus scrollBehavior shouldCloseOnBackdropClick shouldCloseOnEsc size trapFocus`
+
+### DrawerBackdrop
+
+`children isDismissable shouldCloseOnBackdropClick variant`
+
+### DrawerBody
+
+`children id`
+
+### DrawerClose
+
+`children`
+
+### DrawerCloseTrigger
+
+`children endIcon startIcon`
+
+### DrawerContent
+
+`children placement scrollBehavior`
+
+### DrawerDialog
+
+`bg borderColor borderWidth children maxWidth padding side size width`
+
+### DrawerFooter
+
+`children`
+
+### DrawerHandle
+
+``
+
+### DrawerHeader
+
+`children`
+
+### DrawerHeading
+
+`children id`
+
+### DrawerTrigger
+
+`children`
+
+### Dropdown
+
+`autoFlip children dataTheme defaultOpen disabled onOpenChange open placement`
+
+### Empty
+
+`children`
+
+### FieldGroup
+
+`children`
+
+### Fieldset
+
+``
+
+### FieldsetActions
+
+`children`
+
+### FieldsetLegend
+
+``
+
+### FirefoxPWABanner
+
+`extensionUrl onDismiss onInstall storageKey texts`
+
+### Flex
+
+`align as basis direction gap gapX gapY grow height justify minHeight minWidth paddingBlock paddingInline shrink width wrap`
+
+### Footer
+
+`center children horizontal vertical`
+
+### Form
+
+``
+
+### FormField
+
+`class form inputProps label name`
+
+### FormSubmitButton
+
+`form`
+
+### GlowCard
+
+``
+
+### Grid
+
+`as autoCols autoRows cols flow gap rows`
+
+### Header
+
+``
+
+### I18nProvider
+
+`children i18n`
+
+### Icon
+
+`flavor height src width`
+
+### ImmersiveLanding
+
+`appVersion children cookieConfig currentPage enableScrollNavigation firefoxPWAConfig initialPage onNavigate onNavigationComplete overlay pages pwaConfig showArrows showCookieConsent showFirefoxBanner showNavigation showPWAPrompt transitionDuration`
+
+### Input
+
+`errorMessage helperText id label`
+
+### InputOTP
+
+`autoFocus children defaultValue disabled inputClassName inputMode issues maxLength name onChange onComplete pattern state value variant`
+
+### InputOTPGroup
+
+`children`
+
+### InputOTPSeparator
+
+`children`
+
+### InputOTPSlot
+
+`index`
+
+### Join
+
+`horizontal responsive vertical`
+
+### Kbd
+
+`children variant`
+
+### KbdAbbr
+
+`keyValue`
+
+### KbdContent
+
+`children`
+
+### Label
+
+`for htmlFor issues required state`
+
+### LanguageSwitcher
+
+`align aria-label currentLanguageLabel i18n loadingLabel onLanguageChange optionsLabel`
+
+### Link
+
+`isExternal state underline variant`
+
+### LinkIcon
+
+``
+
+### ListBox
+
+`children defaultSelectedKeys disabled disabledKeys disallowEmptySelection items onAction onSelectionChange renderEmpty selectedKeys selectionMode state variant`
+
+### ListBoxItem
+
+`children disabled id state textValue variant`
+
+### ListBoxItemIndicator
+
+`children`
+
+### ListBoxSection
+
+`children title`
+
+### LiveChatBubble
+
+`aria-label autoScrollBehavior autoScrollOnNewMessage children onClose onOpen panelProps position stickToBottomThreshold unreadCount`
+
+### LiveChatPanel
+
+`autoScrollBehavior autoScrollOnNewMessage closeLabel emptyMessage isSending messages mockMode onClose onSendMessage placeholder sendLabel stickToBottomThreshold title`
+
+### Menu
+
+`children defaultSelectedKeys disabled disabledKeys disallowEmptySelection items onAction onSelectionChange renderEmpty selectedKeys selectionMode state`
+
+### MenuItem
+
+`children disabled hasSubmenu id onAction state textValue variant`
+
+### MenuItemIndicator
+
+`children type`
+
+### MenuItemSubmenuIndicator
+
+`children`
+
+### MenuSection
+
+`children title`
+
+### MetalBorder
+
+`children contentClass cornerRadius glow kind paused preset strength theme`
+
+### Meter
+
+`children flavor formatOptions formatValue highValue lowValue maxValue minValue optimumValue size state value`
+
+### MeterFill
+
+``
+
+### MeterOutput
+
+``
+
+### MeterTrack
+
+``
+
+### Navbar
+
+`as dataTheme`
+
+### NoiseBackground
+
+`animating backdropBlur borderRadius children containerClass gradientColors noiseIntensity noiseSrc showNoise speed`
+
+### Pagination
+
+`onChange page state total`
+
+### PasswordField
+
+`aria-describedby autocomplete autofocus class disabled hiddenIcon hideLabel id inputClass inputRef invalid label name onBlur onInput onVisibilityChange placeholder required showLabel startIcon value visibleIcon`
+
+### PasswordRequirements
+
+`metIcon results title unmetIcon`
+
+### Popover
+
+`autoFlip children closeOnEscape closeOnOutsideClick defaultOpen offset onInteractOutside onOpenChange open placement`
+
+### Progress
+
+`flavor formatValue isIndeterminate label maxValue minValue showValue size state value`
+
+### PWAInstallPrompt
+
+`appIcon appName onDismiss onInstall storageKey texts`
+
+### RadialProgress
+
+`flavor formatValue isIndeterminate label maxValue minValue size state value`
+
+### Radio
+
+`children description indicator issues state`
+
+### RadioGroup
+
+`children defaultValue description disabled errorMessage issues label name onChange orientation state value variant`
+
+### RangeCalendar
+
+``
+
+### ScrollArea
+
+`hideScrollBar isEnabled offset onVisibilityChange orientation size variant visibility`
+
+### Select
+
+`autoFlip children defaultOpen defaultSelectedKeys defaultValue disabled fullWidth onChange onOpenChange onSelectionChange open placeholder placement selectedKeys selectionMode state value variant`
+
+### Separator
+
+`orientation variant`
+
+### SizePicker
+
+`aria-label onSizeChange storagePrefix`
+
+### Skeleton
+
+`animation height lines radius shape size width`
+
+### Slider
+
+``
+
+### Spinner
+
+`label shape size state`
+
+### Switch
+
+`children defaultChecked description flavor icon size state`
+
+### Table
+
+`variant`
+
+### TableExpandToggle
+
+`disabled expanded label onToggle size`
+
+### TableInlineConfirm
+
+`cancelLabel confirmFlavor confirmLabel disabled loading onCancel onConfirm prompt`
+
+### TableMobileListView
+
+`children empty emptyIcon emptyTitle itemClass listClass renderRow rows`
+
+### TableSortIcon
+
+`ascIcon descIcon neutralIcon size state`
+
+### TableVirtualSpacerRow
+
+`colSpan height`
+
+### Tabs
+
+`children defaultSelectedKey onSelectionChange orientation selectedKey variant`
+
+### Text
+
+`children family leading size tracking transform variant weight`
+
+### Textarea
+
+`disabled fullWidth issues state variant`
+
+### ThemeColorPicker
+
+`align aria-label autoFlip children onColorChange onThemeSwitch placement storagePrefix`
+
+### TimeField
+
+`children defaultValue disabled fullWidth issues name onBlur onChange required state value variant`
+
+### TimeFieldGroup
+
+`children`
+
+### TimeFieldInput
+
+`onInput`
+
+### TimeFieldInputContainer
+
+``
+
+### TimeFieldPrefix
+
+``
+
+### TimeFieldSegment
+
+`segment`
+
+### TimeFieldSuffix
+
+``
+
+### Toast
+
+`actionProps children description indicator isEntering isExiting isFrontmost isHidden onClose state title variant`
+
+### ToastActionButton
+
+``
+
+### ToastCloseButton
+
+``
+
+### ToastContent
+
+`children`
+
+### ToastDescription
+
+`children`
+
+### ToastIndicator
+
+`children variant`
+
+### ToastProvider
+
+`children gap maxVisibleToasts placement queue renderToast scaleFactor width`
+
+### ToastTitle
+
+`children`
+
+### Toolbar
+
+`isAttached orientation`
+
+### Tooltip
+
+`autoFlip children closeDelay defaultOpen delay onOpenChange open placement showArrow sideOffset`
+
+### TooltipArrow
+
+`children`
+
+### TooltipContent
+
+`children`
+
+### TooltipTrigger
+
+`children`
+
+### VideoPreview
+
+``
diff --git a/docs/how-to-setup-playground.md b/docs/how-to-setup-playground.md
new file mode 100644
index 00000000..ec51dadf
--- /dev/null
+++ b/docs/how-to-setup-playground.md
@@ -0,0 +1,176 @@
+# How to set up a playground
+
+There is no playground in this repository, and there should not be one. The old
+`playground/` demoed every component against the pre-2.2 API and rotted into 477
+typecheck errors, because a second copy of the API living beside the API only
+ever drifts from it.
+
+The showcase belongs in **[js.software](https://github.com/pathscale/js.software)**,
+which is already the kitchen sink and already consumes the published package. It
+is on `^2.1.1` today and will need the 2.2 upgrade below.
+
+For local work on this library, you want the smallest thing that renders a
+component, and you have two ways to get one. They test different things, so pick
+by what you are doing.
+
+---
+
+## Which one
+
+| | aliased to `src/` | installed from the tarball |
+| --- | --- | --- |
+| feedback | hot reload, no rebuild | rebuild and reinstall per change |
+| tests | your source | the artifact a consumer receives |
+| catches | render and styling bugs | packaging, exports, dependency declarations |
+
+Use the alias while iterating. Use the tarball before you believe anything,
+because it is the only one that would have caught `clsx` sitting in
+`devDependencies` while every compiled Layout imported it.
+
+---
+
+## Option A: alias to `src/`
+
+A throwaway Vite app outside this repository.
+
+```bash
+bun create vite my-playground --template solid-ts
+cd my-playground
+bun add -d @tailwindcss/vite vite-plugin-solid vite-tsconfig-paths
+bun add @iconify/tailwind4 @iconify/json
+```
+
+`vite.config.ts`:
+
+```ts
+import { defineConfig } from "vite";
+import solid from "vite-plugin-solid";
+import paths from "vite-tsconfig-paths";
+import tailwindcss from "@tailwindcss/vite";
+import { resolve } from "node:path";
+
+const UI = resolve(__dirname, "../UI"); // wherever this repo is checked out
+
+export default defineConfig({
+ plugins: [solid(), paths(), tailwindcss()],
+ resolve: {
+ alias: [
+ { find: /^@pathscale\/ui$/, replacement: resolve(UI, "src/index.ts") },
+ { find: /^@pathscale\/ui\/lab$/, replacement: resolve(UI, "src/lab.ts") },
+ { find: /^@pathscale\/ui\/(.*)$/, replacement: resolve(UI, "src/$1") },
+ ],
+ },
+ // Vite refuses to serve outside its root without this.
+ server: { fs: { allow: [UI] } },
+});
+```
+
+`src/index.css`:
+
+```css
+@import "tailwindcss";
+@import "../../UI/src/index.css";
+
+/* Tailwind only sees classes in files it is told to scan, and half of them
+ live in the library. */
+@source "./";
+@source "../../UI/src";
+
+/* The library ships no glyphs. This is what resolves icon-[...] tokens, and it
+ scans YOUR source, so an icon only exists if you wrote it. */
+@plugin "@iconify/tailwind4";
+```
+
+`src/index.tsx`:
+
+```tsx
+import { render } from "solid-js/web";
+import "./index.css";
+import App from "./App";
+
+// Nothing sets a theme for you, and an unthemed page has no tokens.
+document.documentElement.setAttribute("data-theme", "dark");
+
+render(() => , document.getElementById("root")!);
+```
+
+### The one that will bite you
+
+**Run `bun run check` in this repo first, and after every recipe or layout change.**
+
+`src/index.ts` re-exports from `*.generated.tsx`, which the Layout compiler
+writes and which are gitignored. On a fresh clone they do not exist, so aliasing
+straight at `src/` gives you a barrel pointing at missing files. `bun run check`
+generates them. A `--watch` on the library is the ergonomic version:
+
+```bash
+bun run build:watch
+```
+
+---
+
+## Option B: install the tarball
+
+This is what `scripts/smoke-consumer.ts` automates, and what CI runs.
+
+```bash
+cd /path/to/UI && bun run build && bun pm pack
+cd /path/to/my-playground && bun add file:/path/to/UI/pathscale-ui-2.2.0.tgz
+```
+
+Then import `@pathscale/ui` normally, and `@pathscale/ui/index.css` for the
+styles. No aliases, no `server.fs.allow`, no generate step: you are consuming
+the built package, so what you see is what an app sees.
+
+Repeat the pack and add after every change. That friction is the point of
+Option A existing.
+
+---
+
+## Writing the demos
+
+The three axes, which is the whole of 2.2:
+
+```tsx
+import { Button, Card, Icon } from "@pathscale/ui";
+
+
+
+
+```
+
+- `flavor` is what a thing **is**, and it is open: your own name yields
+ `button--flavor-` for you to style.
+- `state` is what is **happening** to it, closed at
+ `default | loading | error | invalid | disabled | hidden`. There are no
+ `isDisabled` or `isLoading` booleans.
+- `variant` is **shape**: `solid | soft | outline | ghost | plain`.
+
+Validity is not a prop you assert. Pass `issues: Issue[]` and the component
+derives it, or force it with `state="invalid"`.
+
+Unadopted components live behind a separate entry point:
+
+```tsx
+import { ColorWheelFlower } from "@pathscale/ui/lab";
+```
+
+---
+
+## Upgrading js.software to 2.2
+
+Mechanical, and the compiler finds all of it:
+
+| replace | with |
+| --- | --- |
+| `className=` | `class=` |
+| `color=` | `flavor=`, `danger` becomes `destructive`, `default` becomes `neutral` |
+| `isDisabled` / `isLoading` | `state="disabled"` / `state="loading"` |
+| `isInvalid` | `issues={…}`, or `state="invalid"` |
+| `isRequired` | `required` |
+| `isOpen` | `open` |
+| `` | `` |
+| `Modal` `Toggle` `TextArea` `Disclosure` `EmptyState` `ProgressBar` `ProgressCircle` `ScrollShadow` `Breadcrumbs` `FloatingDock` | `Dialog` `Switch` `Textarea` `Collapsible` `Empty` `Progress` `RadialProgress` `ScrollArea` `Breadcrumb` `Dock` |
+
+Then add the iconify plugin, because the library no longer ships glyph CSS and
+icons will silently render as empty boxes without it.
diff --git a/docs/ui-usage.md b/docs/ui-usage.md
index 7d745c5a..a5ce9a7b 100644
--- a/docs/ui-usage.md
+++ b/docs/ui-usage.md
@@ -95,7 +95,7 @@ the shared fallback. This works with PathScale Fonts and application-owned font
- **Color**: ColorPicker, ColorArea, ColorSlider, ColorSwatch(+Picker), ColorWheelFlower, ThemeColorPicker
- **Overlays**: Modal, Drawer, Popover, Dropdown, Menu, Toast, Disclosure(+Group), Accordion
- **Data**: Table (headless compound + hooks), plus primitives `useVirtualRows`, `useStreamingBuffer`, `useStreamingSubscription`
-- **Auth kit**: AuthForm, AuthCard, AuthFieldGroup, AuthSubmitButton, AuthFooterLinks, AuthPoweredBy, AuthErrorMessage, AuthSuccessMessage — thin Tailwind-utility wrappers composing Button/Card/fields
+- **Auth kit**: AuthForm, AuthCard, AuthFieldGroup, AuthSubmitButton, AuthFooterLinks, AuthPoweredBy, AuthErrorMessage, AuthSuccessMessage — Layouts composing Button/Card/fields. Their spacing, alignment and tone are recipe parameters (`gap`, `align`, `variant`), so a consumer asks for the presentation it wants rather than restating utility classes. AuthCard exposes `header`, `headings`, `title`, `description`, `branding`, `body` and `footer` as `data-slot` targets.
- **Visual FX**: MetalBorder (WebGL liquid-metal border; presets `chromatic|silver|gold`, `kind="pill"|"circle"`, `glow`, `strength` 0-100, `theme="dark"|"light"|"auto"`), GlowCard (mouse-tracking glow), NoiseBackground (animated gradient blobs), ImmersiveLanding (full mini-app w/ PWA widgets), VideoPreview, LiveChat, ChatBubble, LanguageSwitcher
Renames from old versions (see `docs/component-migration-map.md`): Loading→Spinner, DropdownSelect→Select, RadialProgress→ProgressCircle, RangeSlider→Slider, Progress→ProgressBar/ProgressCircle. ~40 components removed outright (Carousel, Rating, Steps, Stats, FileInput, …).
@@ -150,7 +150,7 @@ const table = useTableModel({
- State-slice hooks (all controlled-or-uncontrolled): `useTableSorting`, `useTableSelection`, `useTableFiltering` (per-column popovers + `getColumnFilterProps`), `useTablePagination` (⚠️ `nextPage(max)`/`lastPage(max)` need caller-supplied max page index), `useTableExpansion`.
- Parts: TableRoot/ScrollContainer/Content/Header/Column/Body/Row/Cell/ExpandedRow/Footer/PageSize/ResizableContainer/ColumnResizer/LoadMore(+Content), plus SortIcon, ExpandToggle, InlineConfirm, MobileListView (responsive card fallback), VirtualSpacerRow.
-- **Virtualization is not built in**: combine `useVirtualRows` (wraps @tanstack/solid-virtual) + `VirtualSpacerRow` yourself. Playground has examples: `playground/src/examples/Table*.tsx`.
+- **Virtualization is not built in**: combine `useVirtualRows` (wraps @tanstack/solid-virtual) + `VirtualSpacerRow` yourself. See the Table section above.
## Motion
@@ -187,21 +187,25 @@ toast.success("Saved"); toast.danger("Failed"); toast.promise(p, {loading, succe
## Icons
-Icons are Iconify classes: `` or bare `class="icon-[lucide--search]"`. In this repo they're baked at build time into `src/styles/icons/generated-icons.css` (only icons actually used get emitted). Consumer apps with Tailwind v4 can use `@plugin "@iconify/tailwind4"` for arbitrary icons (playground does this).
+`Icon` takes one prop, `src`, and which source it is, is the type: a string is a
+preload token (`"lucide--copy"`, or the wrapped `"icon-[lucide--copy]"`), an
+element is inline SVG you own.
-## Dates
+```tsx
+
+…} />
+```
-Calendar/DatePicker/RangeCalendar/DateRangePicker use the internal engine (native Date + Intl; no date lib). Values are `Date` objects; ranges are `{start: Date, end: Date}`. Controlled via `value/defaultValue/onChange`. `DateField`/`TimeField` are separate segmented text editors, not calendar-backed.
+**The library ships no glyphs.** Your app generates the CSS that resolves a
+token, with `@plugin "@iconify/tailwind4"` under Tailwind v4 or
+`@pathscale/rsbuild-plugin-iconify` under rsbuild, scanning your source rather
+than ours. Both sources inherit colour through `currentColor`, so `flavor` works
+the same either way.
-## Playground (fastest way to try things)
+## Dates
-```sh
-bun install && cd playground && bun install && cd ..
-bun run playground:dev # Vite; @pathscale/ui aliased to local src/ — edits hot-reload, no rebuild
-```
-`playground/src/App.tsx` (~7,300 lines) demos every component; examples in `playground/src/examples/` (Form, Motion, Streaming, TableĂ—3). Playground forces `data-theme="dark"` at runtime in `playground/src/index.tsx`.
+Calendar/DatePicker/RangeCalendar/DateRangePicker use the internal engine (native Date + Intl; no date lib). Values are `Date` objects; ranges are `{start: Date, end: Date}`. Controlled via `value/defaultValue/onChange`. `DateField`/`TimeField` are separate segmented text editors, not calendar-backed.
----
## Mirroring to the public showcase (js.software)
diff --git a/layouts.library.json b/layouts.library.json
index 0f9ad876..9f4fed1b 100644
--- a/layouts.library.json
+++ b/layouts.library.json
@@ -3,37 +3,190 @@
"source": "src/components",
"output": "dist",
"exports": [
- "Accordion", "AccordionContent", "AccordionIndicator", "AccordionItem", "AccordionRoot", "AccordionTrigger",
- "Alert", "AlertContent", "AlertDescription", "AlertIndicator", "AlertRoot", "AlertTitle",
- "Avatar", "AvatarFallback", "AvatarImage", "AvatarRoot",
- "Badge", "Breadcrumbs", "BreadcrumbsItem", "BreadcrumbsRoot",
- "Button", "ButtonGroup", "ButtonGroupRoot", "ButtonGroupSeparator",
- "Calendar", "Card", "ChatBubble", "Checkbox", "CheckboxGroup", "Chip", "CloseButton",
- "ColorArea", "ColorField", "ColorPicker", "ColorSlider", "ColorSwatch", "ColorSwatchPicker", "ColorWheelFlower",
- "ComboBox", "ComboBoxInput", "ComboBoxInputGroup", "ComboBoxList", "ComboBoxPopover", "ComboBoxRoot", "ComboBoxTrigger",
- "DateField", "DateFieldGroup", "DateFieldInput", "DateFieldInputContainer", "DateFieldPrefix", "DateFieldRoot", "DateFieldSegment", "DateFieldSuffix",
- "DatePicker", "DateRangePicker", "Description", "DescriptionRoot", "Disclosure", "DisclosureGroup",
- "Drawer", "DrawerBackdrop", "DrawerBody", "DrawerClose", "DrawerCloseTrigger", "DrawerContent", "DrawerDialog", "DrawerFooter", "DrawerHandle", "DrawerHeader", "DrawerHeading", "DrawerRoot", "DrawerTrigger",
- "Dropdown", "EmptyState", "ErrorMessage", "ErrorMessageRoot", "FieldError", "FieldErrorMessage", "FieldErrorRoot",
- "FieldGroup", "Fieldset", "FieldsetActions", "FieldsetLegend", "FieldsetRoot",
- "Flex", "FloatingDock", "Footer", "Form", "FormField", "FormRoot", "FormSubmitButton", "FormWithContext",
- "GlassPanel", "GlowCard", "Grid", "Header", "HeaderRoot", "Icon", "ImmersiveLanding", "Input",
- "InputGroup", "InputGroupInput", "InputGroupPrefix", "InputGroupRoot", "InputGroupSuffix", "InputGroupTextArea",
- "InputOTP", "InputOTPGroup", "InputOTPRoot", "InputOTPSeparator", "InputOTPSlot", "Join",
- "Kbd", "KbdAbbr", "KbdContent", "KbdRoot", "Label", "LabelRoot", "LanguageSwitcher",
- "Link", "LinkIcon", "LinkRoot", "ListBox", "ListBoxItem", "ListBoxItemIndicator", "ListBoxItemRoot", "ListBoxRoot", "ListBoxSection", "ListBoxSectionRoot",
- "LiveChatBubble", "LiveChatPanel", "Loading", "Menu", "MenuItem", "MenuItemIndicator", "MenuItemRoot", "MenuItemSubmenuIndicator", "MenuRoot", "MenuSection", "MenuSectionRoot",
- "MetalBorder", "Meter", "MeterFill", "MeterOutput", "MeterRoot", "MeterTrack",
- "Modal", "ModalBackdrop", "ModalBody", "ModalCloseTrigger", "ModalContent", "ModalFooter", "ModalHeader", "ModalHeading", "ModalIcon", "ModalRoot", "ModalTrigger",
- "Navbar", "NoiseBackground", "NumberField", "NumberFieldDecrementButton", "NumberFieldGroup", "NumberFieldIncrementButton", "NumberFieldInput", "NumberFieldRoot",
- "Pagination", "Popover", "ProgressBar", "ProgressCircle", "Radio", "RadioGroup", "RangeCalendar", "ScrollShadow",
- "SearchField", "SearchFieldClearButton", "SearchFieldGroup", "SearchFieldInput", "SearchFieldRoot", "SearchFieldSearchIcon",
- "Select", "Separator", "SizePicker", "Skeleton", "Slider", "Spinner", "Surface",
- "Table", "TableExpandToggle", "TableInlineConfirm", "TableMobileListView", "TableSortIcon", "TableVirtualSpacerRow",
- "Tabs", "Tag", "TagGroup", "TagGroupList", "TagGroupRoot", "Text", "TextArea", "TextAreaRoot", "TextField", "TextFieldRoot", "TextRoot", "Textarea", "ThemeColorPicker",
- "TimeField", "TimeFieldGroup", "TimeFieldInput", "TimeFieldInputContainer", "TimeFieldPrefix", "TimeFieldRoot", "TimeFieldSegment", "TimeFieldSuffix",
- "Toast", "ToastActionButton", "ToastCloseButton", "ToastContent", "ToastDescription", "ToastIndicator", "ToastProvider", "ToastRoot", "ToastTitle",
- "Toggle", "Toolbar", "ToolbarRoot", "Tooltip", "TooltipArrow", "TooltipContent", "TooltipRoot", "TooltipTrigger", "VideoPreview"
+ "Accordion",
+ "AccordionContent",
+ "AccordionIndicator",
+ "AccordionItem",
+ "AccordionTrigger",
+ "Address",
+ "Alert",
+ "AuthCard",
+ "AuthFieldGroup",
+ "AuthFooterLinks",
+ "AuthMessage",
+ "AuthPoweredBy",
+ "AuthSubmitButton",
+ "Avatar",
+ "AvatarFallback",
+ "AvatarImage",
+ "Badge",
+ "Breadcrumb",
+ "BreadcrumbItem",
+ "Button",
+ "ButtonGroup",
+ "ButtonGroupSeparator",
+ "Calendar",
+ "Card",
+ "CardBody",
+ "CardFooter",
+ "CardHeader",
+ "CardRoot",
+ "ChatBubble",
+ "Checkbox",
+ "CheckboxGroup",
+ "Chip",
+ "CloseButton",
+ "Collapsible",
+ "ColorArea",
+ "ColorField",
+ "ColorPicker",
+ "ColorSlider",
+ "ColorSwatch",
+ "ColorSwatchPicker",
+ "ColorWheelFlower",
+ "ComboBox",
+ "ComboBoxInput",
+ "ComboBoxInputGroup",
+ "ComboBoxList",
+ "ComboBoxPopover",
+ "ComboBoxTrigger",
+ "Composer",
+ "CookieConsent",
+ "DateField",
+ "DateFieldGroup",
+ "DateFieldInput",
+ "DateFieldInputContainer",
+ "DateFieldPrefix",
+ "DateFieldSegment",
+ "DateFieldSuffix",
+ "DatePicker",
+ "DateRangePicker",
+ "Dialog",
+ "DialogBackdrop",
+ "DialogBody",
+ "DialogCloseTrigger",
+ "DialogContent",
+ "DialogFooter",
+ "DialogHeader",
+ "DialogHeading",
+ "DialogIcon",
+ "DialogTrigger",
+ "Dock",
+ "Drawer",
+ "DrawerBackdrop",
+ "DrawerBody",
+ "DrawerClose",
+ "DrawerCloseTrigger",
+ "DrawerContent",
+ "DrawerDialog",
+ "DrawerFooter",
+ "DrawerHandle",
+ "DrawerHeader",
+ "DrawerHeading",
+ "DrawerTrigger",
+ "Dropdown",
+ "Empty",
+ "FieldGroup",
+ "Fieldset",
+ "FieldsetActions",
+ "FieldsetLegend",
+ "FirefoxPWABanner",
+ "Flex",
+ "Footer",
+ "Form",
+ "FormContext",
+ "FormField",
+ "FormSubmitButton",
+ "FormWithContext",
+ "GlowCard",
+ "Grid",
+ "Header",
+ "I18nContext",
+ "I18nProvider",
+ "Icon",
+ "ImmersiveLanding",
+ "ImmersiveLandingContext",
+ "Input",
+ "InputOTP",
+ "InputOTPGroup",
+ "InputOTPSeparator",
+ "InputOTPSlot",
+ "Join",
+ "Kbd",
+ "KbdAbbr",
+ "KbdContent",
+ "Label",
+ "LanguageSwitcher",
+ "Link",
+ "LinkIcon",
+ "ListBox",
+ "ListBoxItem",
+ "ListBoxItemIndicator",
+ "ListBoxSection",
+ "LiveChatBubble",
+ "LiveChatPanel",
+ "Menu",
+ "MenuItem",
+ "MenuItemIndicator",
+ "MenuItemSubmenuIndicator",
+ "MenuSection",
+ "MetalBorder",
+ "Meter",
+ "MeterFill",
+ "MeterOutput",
+ "MeterTrack",
+ "Navbar",
+ "NoiseBackground",
+ "PWAInstallPrompt",
+ "Pagination",
+ "PasswordField",
+ "PasswordRequirements",
+ "Popover",
+ "Progress",
+ "RadialProgress",
+ "Radio",
+ "RadioGroup",
+ "RangeCalendar",
+ "ScrollArea",
+ "Select",
+ "Separator",
+ "SizePicker",
+ "Skeleton",
+ "Slider",
+ "Spinner",
+ "Switch",
+ "Table",
+ "TableExpandToggle",
+ "TableInlineConfirm",
+ "TableMobileListView",
+ "TableSortIcon",
+ "TableVirtualSpacerRow",
+ "Tabs",
+ "Text",
+ "Textarea",
+ "ThemeColorPicker",
+ "TimeField",
+ "TimeFieldGroup",
+ "TimeFieldInput",
+ "TimeFieldInputContainer",
+ "TimeFieldPrefix",
+ "TimeFieldSegment",
+ "TimeFieldSuffix",
+ "Toast",
+ "ToastActionButton",
+ "ToastCloseButton",
+ "ToastContent",
+ "ToastDescription",
+ "ToastIndicator",
+ "ToastProvider",
+ "ToastQueue",
+ "ToastTitle",
+ "Toolbar",
+ "Tooltip",
+ "TooltipArrow",
+ "TooltipContent",
+ "TooltipTrigger",
+ "VideoPreview"
],
"lint": {
"baseline": "layouts.lint-baseline.json",
diff --git a/layouts.lint-baseline.json b/layouts.lint-baseline.json
index 8ba23afd..5a1dce5b 100644
--- a/layouts.lint-baseline.json
+++ b/layouts.lint-baseline.json
@@ -1 +1,2131 @@
-{"format":"solid-layouts-lint-baseline-v1","diagnostics":["src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-body-inner` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-body-inner` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-body-inner` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-body-inner` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-body` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-body` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-body` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-body` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-content` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-content` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-content` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-content` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-indicator` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-indicator` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-indicator` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-indicator` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-item` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-item` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-item` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-item` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-trigger` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-trigger` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-trigger` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-trigger` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/accordion/Accordion.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/accordion/Accordion.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/accordion/Accordion.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/accordion/Accordion.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/accordion/Accordion.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/accordion/Accordion.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/accordion/Accordion.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/accordion/Accordion.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/accordion/Accordion.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/accordion/Accordion.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-content` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-content` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-content` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-content` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-default-icon` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-default-icon` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-default-icon` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-default-icon` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-default-icon` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-description` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-description` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-description` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-description` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-indicator` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-indicator` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-indicator` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-indicator` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-root` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-root` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-root` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-root` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-title` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-title` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-title` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `alert-title` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/alert/Alert.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/alert/Alert.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/alert/Alert.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/alert/Alert.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/alert/Alert.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/alert/Alert.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/alert/Alert.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/alert/Alert.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/alert/Alert.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/alert/Alert.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/avatar/Avatar.layout.tsx:error:slot-unused:declared slot `avatar-fallback` is not rendered by `componentRecipe`","src/components/avatar/Avatar.layout.tsx:error:slot-unused:declared slot `avatar-fallback` is not rendered by `componentRecipe`","src/components/avatar/Avatar.layout.tsx:error:slot-unused:declared slot `avatar-image` is not rendered by `componentRecipe`","src/components/avatar/Avatar.layout.tsx:error:slot-unused:declared slot `avatar-image` is not rendered by `componentRecipe`","src/components/avatar/Avatar.layout.tsx:error:slot-unused:declared slot `avatar-root` is not rendered by `componentRecipe`","src/components/avatar/Avatar.layout.tsx:error:slot-unused:declared slot `avatar-root` is not rendered by `componentRecipe`","src/components/avatar/Avatar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/avatar/Avatar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/avatar/Avatar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/avatar/Avatar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/avatar/Avatar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/avatar/Avatar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/avatar/Avatar.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/avatar/Avatar.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/avatar/Avatar.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/avatar/AvatarGroup.layout.tsx:error:slot-unused:declared slot `avatar-fallback` is not rendered by `componentRecipe`","src/components/avatar/AvatarGroup.layout.tsx:error:slot-unused:declared slot `avatar-image` is not rendered by `componentRecipe`","src/components/avatar/AvatarGroup.layout.tsx:error:slot-unused:declared slot `avatar-root` is not rendered by `componentRecipe`","src/components/avatar/AvatarGroup.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/avatar/AvatarGroup.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/avatar/AvatarGroup.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/badge/Badge.layout.tsx:error:slot-unused:declared slot `badge-anchor` is not rendered by `componentRecipe`","src/components/badge/Badge.layout.tsx:error:slot-unused:declared slot `badge-anchor` is not rendered by `componentRecipe`","src/components/badge/Badge.layout.tsx:error:slot-unused:declared slot `badge-label` is not rendered by `componentRecipe`","src/components/badge/Badge.layout.tsx:error:slot-unused:declared slot `badge-label` is not rendered by `componentRecipe`","src/components/badge/Badge.layout.tsx:error:slot-unused:declared slot `badge` is not rendered by `componentRecipe`","src/components/badge/Badge.layout.tsx:error:slot-unused:declared slot `badge` is not rendered by `componentRecipe`","src/components/badge/Badge.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/badge/Badge.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/badge/Badge.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/badge/Badge.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/badge/Badge.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/badge/Badge.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/badge/Badge.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/badge/Badge.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/badge/Badge.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/breadcrumbs/Breadcrumbs.layout.tsx:error:slot-unused:declared slot `breadcrumbs-item` is not rendered by `componentRecipe`","src/components/breadcrumbs/Breadcrumbs.layout.tsx:error:slot-unused:declared slot `breadcrumbs-link` is not rendered by `componentRecipe`","src/components/breadcrumbs/Breadcrumbs.layout.tsx:error:slot-unused:declared slot `breadcrumbs-separator` is not rendered by `componentRecipe`","src/components/breadcrumbs/Breadcrumbs.layout.tsx:error:slot-unused:declared slot `breadcrumbs` is not rendered by `componentRecipe`","src/components/breadcrumbs/Breadcrumbs.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/breadcrumbs/Breadcrumbs.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/breadcrumbs/Breadcrumbs.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/breadcrumbs/Breadcrumbs.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/breadcrumbs/Breadcrumbs.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/breadcrumbs/Breadcrumbs.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/button-group/ButtonGroup.layout.tsx:error:slot-unused:declared slot `button-group-separator` is not rendered by `componentRecipe`","src/components/button-group/ButtonGroup.layout.tsx:error:slot-unused:declared slot `button-group` is not rendered by `componentRecipe`","src/components/button-group/ButtonGroup.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/button-group/ButtonGroup.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/button-group/ButtonGroup.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/button-group/ButtonGroup.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/button-group/ButtonGroup.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/button-group/ButtonGroup.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/button/Button.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/button/Button.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/button/Button.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/calendar/Calendar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/calendar/Calendar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/calendar/Calendar.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/card/Card.layout.tsx:error:slot-unused:declared slot `card-body` is not rendered by `componentRecipe`","src/components/card/Card.layout.tsx:error:slot-unused:declared slot `card-body` is not rendered by `componentRecipe`","src/components/card/Card.layout.tsx:error:slot-unused:declared slot `card-body` is not rendered by `componentRecipe`","src/components/card/Card.layout.tsx:error:slot-unused:declared slot `card-footer` is not rendered by `componentRecipe`","src/components/card/Card.layout.tsx:error:slot-unused:declared slot `card-footer` is not rendered by `componentRecipe`","src/components/card/Card.layout.tsx:error:slot-unused:declared slot `card-footer` is not rendered by `componentRecipe`","src/components/card/Card.layout.tsx:error:slot-unused:declared slot `card-header` is not rendered by `componentRecipe`","src/components/card/Card.layout.tsx:error:slot-unused:declared slot `card-header` is not rendered by `componentRecipe`","src/components/card/Card.layout.tsx:error:slot-unused:declared slot `card-header` is not rendered by `componentRecipe`","src/components/card/Card.layout.tsx:error:slot-unused:declared slot `card` is not rendered by `componentRecipe`","src/components/card/Card.layout.tsx:error:slot-unused:declared slot `card` is not rendered by `componentRecipe`","src/components/card/Card.layout.tsx:error:slot-unused:declared slot `card` is not rendered by `componentRecipe`","src/components/card/Card.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/card/Card.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/card/Card.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/card/Card.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/card/Card.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/card/Card.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/card/Card.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/card/Card.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/card/Card.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/card/Card.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/card/Card.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/card/Card.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/chatbubble/ChatBubble.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/chatbubble/ChatBubble.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/chatbubble/ChatBubble.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/chatbubble/ChatBubbleAvatar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/chatbubble/ChatBubbleAvatar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/chatbubble/ChatBubbleAvatar.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/chatbubble/ChatBubbleFooter.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/chatbubble/ChatBubbleFooter.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/chatbubble/ChatBubbleFooter.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/chatbubble/ChatBubbleHeader.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/chatbubble/ChatBubbleHeader.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/chatbubble/ChatBubbleHeader.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/chatbubble/ChatBubbleMessage.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/chatbubble/ChatBubbleMessage.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/chatbubble/ChatBubbleMessage.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/chatbubble/ChatBubbleTime.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/chatbubble/ChatBubbleTime.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/chatbubble/ChatBubbleTime.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/checkbox-group/CheckboxGroup.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/checkbox-group/CheckboxGroup.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/checkbox-group/CheckboxGroup.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/checkbox/Checkbox.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/checkbox/Checkbox.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/checkbox/Checkbox.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/chip/Chip.layout.tsx:error:slot-unused:declared slot `chip-end-icon` is not rendered by `componentRecipe`","src/components/chip/Chip.layout.tsx:error:slot-unused:declared slot `chip-label` is not rendered by `componentRecipe`","src/components/chip/Chip.layout.tsx:error:slot-unused:declared slot `chip-remove-icon` is not rendered by `componentRecipe`","src/components/chip/Chip.layout.tsx:error:slot-unused:declared slot `chip-remove` is not rendered by `componentRecipe`","src/components/chip/Chip.layout.tsx:error:slot-unused:declared slot `chip-start-icon` is not rendered by `componentRecipe`","src/components/chip/Chip.layout.tsx:error:slot-unused:declared slot `chip` is not rendered by `componentRecipe`","src/components/chip/Chip.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/chip/Chip.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/chip/Chip.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/chip/Chip.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/chip/Chip.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/chip/Chip.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/close-button/CloseButton.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/close-button/CloseButton.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/close-button/CloseButton.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/color-area/ColorArea.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/color-area/ColorArea.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/color-area/ColorArea.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/color-field/ColorField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/color-field/ColorField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/color-field/ColorField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/color-picker/ColorPicker.layout.tsx:error:slot-unused:declared slot `color-picker` is not rendered by `componentRecipe`","src/components/color-picker/ColorPicker.layout.tsx:error:slot-unused:declared slot `color-picker` is not rendered by `componentRecipe`","src/components/color-picker/ColorPicker.layout.tsx:error:slot-unused:declared slot `color-picker` is not rendered by `componentRecipe`","src/components/color-picker/ColorPicker.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/color-picker/ColorPicker.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/color-picker/ColorPicker.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/color-picker/ColorPicker.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/color-picker/ColorPicker.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/color-picker/ColorPicker.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/color-picker/ColorPicker.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/color-picker/ColorPicker.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/color-picker/ColorPicker.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/color-picker/ColorPicker.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/color-picker/ColorPicker.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/color-picker/ColorPicker.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/color-slider/ColorSlider.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/color-slider/ColorSlider.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/color-slider/ColorSlider.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/color-swatch-picker/ColorSwatchPicker.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/color-swatch-picker/ColorSwatchPicker.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/color-swatch-picker/ColorSwatchPicker.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/color-swatch/ColorSwatch.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/color-swatch/ColorSwatch.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/color-swatch/ColorSwatch.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/color-wheel-flower/ColorWheelFlower.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/color-wheel-flower/ColorWheelFlower.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/color-wheel-flower/ColorWheelFlower.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-empty-state` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-empty-state` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-empty-state` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-empty-state` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-empty-state` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input-group` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input-group` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input-group` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input-group` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input-group` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-list` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-list` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-list` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-list` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-list` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option-end-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option-end-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option-end-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option-end-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option-end-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-popover` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-popover` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-popover` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-popover` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-popover` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-start-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-start-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-start-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-start-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-start-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-end-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-end-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-end-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-end-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-end-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-start-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-start-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-start-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-start-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-start-icon` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/combo-box/ComboBox.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/combo-box/ComboBox.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/combo-box/ComboBox.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/combo-box/ComboBox.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/combo-box/ComboBox.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/combo-box/ComboBox.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/combo-box/ComboBox.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/combo-box/ComboBox.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/combo-box/ComboBox.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/combo-box/ComboBox.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/combo-box/ComboBox.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/combo-box/ComboBox.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-field` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-field` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-field` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-field` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-field` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-field` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/date-field/DateField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/date-field/DateField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/date-field/DateField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/date-field/DateField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/date-field/DateField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/date-field/DateField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/date-field/DateField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/date-field/DateField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/date-field/DateField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/date-field/DateField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/date-field/DateField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/date-field/DateField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/date-field/DateField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/date-field/DateField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/date-picker/DatePicker.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/date-picker/DatePicker.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/date-picker/DatePicker.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/date-range-picker/DateRangePicker.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/date-range-picker/DateRangePicker.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/date-range-picker/DateRangePicker.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/description/Description.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/description/Description.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/description/Description.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/disclosure-group/DisclosureGroup.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/disclosure-group/DisclosureGroup.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/disclosure-group/DisclosureGroup.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-body-inner` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-body-inner` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-body-inner` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-body-inner` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-body-inner` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-body` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-body` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-body` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-body` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-body` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-content` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-content` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-content` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-content` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-content` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-heading` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-heading` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-heading` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-heading` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-heading` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-indicator` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-indicator` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-indicator` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-indicator` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-indicator` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-trigger` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-trigger` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-trigger` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-trigger` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure-trigger` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `disclosure` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/disclosure/Disclosure.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/disclosure/Disclosure.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/disclosure/Disclosure.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/disclosure/Disclosure.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/disclosure/Disclosure.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/disclosure/Disclosure.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/disclosure/Disclosure.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/disclosure/Disclosure.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/disclosure/Disclosure.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/disclosure/Disclosure.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/disclosure/Disclosure.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/disclosure/Disclosure.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-group` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-group` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-group` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-group` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-group` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-menu` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-menu` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-menu` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-menu` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-menu` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-popover` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-popover` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-popover` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-popover` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-popover` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-trigger` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-trigger` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-trigger` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-trigger` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-trigger` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `menu-item` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `menu-item` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `menu-item` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `menu-item` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `menu-item` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `separator` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `separator` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `separator` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `separator` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `separator` is not rendered by `componentRecipe`","src/components/dropdown/Dropdown.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/dropdown/Dropdown.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/dropdown/Dropdown.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/dropdown/Dropdown.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/dropdown/Dropdown.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/dropdown/Dropdown.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/dropdown/Dropdown.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/dropdown/Dropdown.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/dropdown/Dropdown.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/dropdown/Dropdown.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/dropdown/Dropdown.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/dropdown/Dropdown.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state-actions` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state-actions` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state-actions` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state-actions` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state-description` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state-description` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state-description` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state-description` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state-icon` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state-icon` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state-icon` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state-icon` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state-title` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state-title` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state-title` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state-title` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `empty-state` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/empty-state/EmptyState.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/empty-state/EmptyState.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/empty-state/EmptyState.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/empty-state/EmptyState.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/empty-state/EmptyState.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/empty-state/EmptyState.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/empty-state/EmptyState.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/empty-state/EmptyState.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/empty-state/EmptyState.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/empty-state/EmptyState.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/error-message/ErrorMessage.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/error-message/ErrorMessage.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/error-message/ErrorMessage.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/field-error/FieldError.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/field-error/FieldError.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/field-error/FieldError.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset-actions` is not rendered by `componentRecipe`","src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset-actions` is not rendered by `componentRecipe`","src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset-actions` is not rendered by `componentRecipe`","src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset-field-group` is not rendered by `componentRecipe`","src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset-field-group` is not rendered by `componentRecipe`","src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset-field-group` is not rendered by `componentRecipe`","src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset-legend` is not rendered by `componentRecipe`","src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset-legend` is not rendered by `componentRecipe`","src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset-legend` is not rendered by `componentRecipe`","src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset` is not rendered by `componentRecipe`","src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset` is not rendered by `componentRecipe`","src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset` is not rendered by `componentRecipe`","src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/fieldset/Fieldset.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/fieldset/Fieldset.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/fieldset/Fieldset.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/fieldset/Fieldset.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/fieldset/Fieldset.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/fieldset/Fieldset.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/fieldset/Fieldset.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/fieldset/Fieldset.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/flex/Flex.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/flex/Flex.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/flex/Flex.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/floating-dock/FloatingDock.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/floating-dock/FloatingDock.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/floating-dock/FloatingDock.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/floating-dock/FloatingDock.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/floating-dock/FloatingDock.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/floating-dock/FloatingDock.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/floating-dock/FloatingDock.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/floating-dock/FloatingDock.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/floating-dock/FloatingDock.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/floating-dock/FloatingDock.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/floating-dock/FloatingDock.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/floating-dock/FloatingDock.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/footer/Footer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/footer/Footer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/footer/Footer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/footer/FooterTitle.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/footer/FooterTitle.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/footer/FooterTitle.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/form/FieldErrorMessage.layout.tsx:error:slot-unused:declared slot `form-field` is not rendered by `componentRecipe`","src/components/form/FieldErrorMessage.layout.tsx:error:slot-unused:declared slot `form` is not rendered by `componentRecipe`","src/components/form/FieldErrorMessage.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/form/FieldErrorMessage.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/form/FieldErrorMessage.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/form/Form.layout.tsx:error:slot-unused:declared slot `field-error-message` is not rendered by `componentRecipe`","src/components/form/Form.layout.tsx:error:slot-unused:declared slot `field-error-message` is not rendered by `componentRecipe`","src/components/form/Form.layout.tsx:error:slot-unused:declared slot `field-error-message` is not rendered by `componentRecipe`","src/components/form/Form.layout.tsx:error:slot-unused:declared slot `form-field` is not rendered by `componentRecipe`","src/components/form/Form.layout.tsx:error:slot-unused:declared slot `form-field` is not rendered by `componentRecipe`","src/components/form/Form.layout.tsx:error:slot-unused:declared slot `form-field` is not rendered by `componentRecipe`","src/components/form/Form.layout.tsx:error:slot-unused:declared slot `form` is not rendered by `componentRecipe`","src/components/form/Form.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/form/Form.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/form/Form.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/form/Form.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/form/Form.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/form/Form.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/form/Form.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/form/Form.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/form/FormField.layout.tsx:error:slot-unused:declared slot `field-error-message` is not rendered by `componentRecipe`","src/components/form/FormField.layout.tsx:error:slot-unused:declared slot `form` is not rendered by `componentRecipe`","src/components/form/FormField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/form/FormField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/form/FormField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/form/FormSubmitButton.layout.tsx:error:slot-unused:declared slot `field-error-message` is not rendered by `componentRecipe`","src/components/form/FormSubmitButton.layout.tsx:error:slot-unused:declared slot `form-field` is not rendered by `componentRecipe`","src/components/form/FormSubmitButton.layout.tsx:error:slot-unused:declared slot `form` is not rendered by `componentRecipe`","src/components/form/FormSubmitButton.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/form/FormSubmitButton.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/glass-panel/GlassPanel.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/glass-panel/GlassPanel.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/glass-panel/GlassPanel.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/glow-card/GlowCard.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/glow-card/GlowCard.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/glow-card/GlowCard.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/grid/Grid.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/grid/Grid.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/grid/Grid.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/header/Header.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/header/Header.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/header/Header.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/icon/Icon.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/immersive-landing/ImmersiveLanding.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/immersive-landing/ImmersiveLanding.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/immersive-landing/ImmersiveLanding.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/immersive-landing/ImmersiveLandingArrows.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/immersive-landing/ImmersiveLandingArrows.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/immersive-landing/ImmersiveLandingArrows.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/immersive-landing/ImmersiveLandingNavigation.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/immersive-landing/ImmersiveLandingNavigation.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/immersive-landing/ImmersiveLandingNavigation.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/immersive-landing/ImmersiveLandingPage.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/immersive-landing/ImmersiveLandingPage.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/immersive-landing/ImmersiveLandingPage.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group-input` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group-input` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group-input` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group-input` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group-prefix` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group-prefix` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group-prefix` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group-prefix` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group-suffix` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group-suffix` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group-suffix` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group-suffix` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group-textarea` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group-textarea` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group-textarea` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group-textarea` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `input-group` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/input-group/InputGroup.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/input-group/InputGroup.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/input-group/InputGroup.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/input-group/InputGroup.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/input-group/InputGroup.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/input-group/InputGroup.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/input-group/InputGroup.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/input-group/InputGroup.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/input-group/InputGroup.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/input-group/InputGroup.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-caret` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-caret` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-caret` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-group` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-group` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-group` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-input` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-input` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-input` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-separator` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-separator` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-separator` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-slot-value` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-slot-value` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-slot-value` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-slot` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-slot` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-slot` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/input-otp/InputOTP.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/input-otp/InputOTP.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/input-otp/InputOTP.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/input-otp/InputOTP.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/input-otp/InputOTP.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/input-otp/InputOTP.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/input-otp/InputOTP.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/input-otp/InputOTP.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-control` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-control` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-control` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-control` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-end-icon` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-end-icon` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-end-icon` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-end-icon` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-field` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-field` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-field` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-field` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-helper` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-helper` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-helper` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-helper` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-label` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-label` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-label` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-label` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-root` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-root` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-root` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-root` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-start-icon` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-start-icon` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-start-icon` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-start-icon` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/input/Input.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/input/Input.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/input/Input.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/input/Input.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/input/Input.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/input/Input.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/input/Input.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/input/Input.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/input/Input.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/input/Input.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/join/Join.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/join/Join.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/join/Join.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/kbd/Kbd.layout.tsx:error:slot-unused:declared slot `kbd-abbr` is not rendered by `componentRecipe`","src/components/kbd/Kbd.layout.tsx:error:slot-unused:declared slot `kbd-abbr` is not rendered by `componentRecipe`","src/components/kbd/Kbd.layout.tsx:error:slot-unused:declared slot `kbd-content` is not rendered by `componentRecipe`","src/components/kbd/Kbd.layout.tsx:error:slot-unused:declared slot `kbd-content` is not rendered by `componentRecipe`","src/components/kbd/Kbd.layout.tsx:error:slot-unused:declared slot `kbd` is not rendered by `componentRecipe`","src/components/kbd/Kbd.layout.tsx:error:slot-unused:declared slot `kbd` is not rendered by `componentRecipe`","src/components/kbd/Kbd.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/kbd/Kbd.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/kbd/Kbd.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/kbd/Kbd.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/kbd/Kbd.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/kbd/Kbd.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/kbd/Kbd.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/kbd/Kbd.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/kbd/Kbd.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/label/Label.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/label/Label.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/label/Label.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/language-switcher/LanguageSwitcher.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/language-switcher/LanguageSwitcher.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/language-switcher/LanguageSwitcher.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/link/Link.layout.tsx:error:slot-unused:declared slot `link-default-icon` is not rendered by `componentRecipe`","src/components/link/Link.layout.tsx:error:slot-unused:declared slot `link-icon` is not rendered by `componentRecipe`","src/components/link/Link.layout.tsx:error:slot-unused:declared slot `link` is not rendered by `componentRecipe`","src/components/link/Link.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/link/Link.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/link/Link.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/link/Link.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/link/Link.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/link/Link.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/list-box/ListBox.layout.tsx:error:slot-unused:declared slot `heading` is not rendered by `componentRecipe`","src/components/list-box/ListBox.layout.tsx:error:slot-unused:declared slot `listbox-item-indicator--checkmark` is not rendered by `componentRecipe`","src/components/list-box/ListBox.layout.tsx:error:slot-unused:declared slot `listbox-item-indicator` is not rendered by `componentRecipe`","src/components/list-box/ListBox.layout.tsx:error:slot-unused:declared slot `listbox-item` is not rendered by `componentRecipe`","src/components/list-box/ListBox.layout.tsx:error:slot-unused:declared slot `listbox-section` is not rendered by `componentRecipe`","src/components/list-box/ListBox.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/list-box/ListBox.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/list-box/ListBox.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `heading` is not rendered by `componentRecipe`","src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `heading` is not rendered by `componentRecipe`","src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `listbox-item-indicator--checkmark` is not rendered by `componentRecipe`","src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `listbox-item-indicator` is not rendered by `componentRecipe`","src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `listbox-item` is not rendered by `componentRecipe`","src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `listbox-section` is not rendered by `componentRecipe`","src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `listbox-section` is not rendered by `componentRecipe`","src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `listbox` is not rendered by `componentRecipe`","src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `listbox` is not rendered by `componentRecipe`","src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/list-box/ListBoxItem.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/list-box/ListBoxItem.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/list-box/ListBoxItem.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/list-box/ListBoxItem.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/list-box/ListBoxSection.layout.tsx:error:slot-unused:declared slot `listbox-item-indicator--checkmark` is not rendered by `componentRecipe`","src/components/list-box/ListBoxSection.layout.tsx:error:slot-unused:declared slot `listbox-item-indicator` is not rendered by `componentRecipe`","src/components/list-box/ListBoxSection.layout.tsx:error:slot-unused:declared slot `listbox-item` is not rendered by `componentRecipe`","src/components/list-box/ListBoxSection.layout.tsx:error:slot-unused:declared slot `listbox` is not rendered by `componentRecipe`","src/components/list-box/ListBoxSection.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/list-box/ListBoxSection.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/list-box/ListBoxSection.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/live-chat/LiveChatBubble.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/live-chat/LiveChatBubble.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/live-chat/LiveChatBubble.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/live-chat/LiveChatPanel.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/live-chat/LiveChatPanel.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/live-chat/LiveChatPanel.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/menu/Menu.layout.tsx:error:slot-unused:declared slot `heading` is not rendered by `componentRecipe`","src/components/menu/Menu.layout.tsx:error:slot-unused:declared slot `menu-item-indicator--checkmark` is not rendered by `componentRecipe`","src/components/menu/Menu.layout.tsx:error:slot-unused:declared slot `menu-item-indicator--dot` is not rendered by `componentRecipe`","src/components/menu/Menu.layout.tsx:error:slot-unused:declared slot `menu-item-indicator` is not rendered by `componentRecipe`","src/components/menu/Menu.layout.tsx:error:slot-unused:declared slot `menu-item` is not rendered by `componentRecipe`","src/components/menu/Menu.layout.tsx:error:slot-unused:declared slot `menu-section` is not rendered by `componentRecipe`","src/components/menu/Menu.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/menu/Menu.layout.tsx:error:slot-unused:declared slot `submenu-indicator` is not rendered by `componentRecipe`","src/components/menu/Menu.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/menu/Menu.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `heading` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `heading` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `heading` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-item-indicator--checkmark` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-item-indicator--checkmark` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-item-indicator--dot` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-item-indicator--dot` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-item-indicator` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-item-indicator` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-item` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-item` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-section` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-section` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-section` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `submenu-indicator` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `submenu-indicator` is not rendered by `componentRecipe`","src/components/menu/MenuItem.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/menu/MenuItem.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/menu/MenuItem.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/menu/MenuItem.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/menu/MenuItem.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/menu/MenuItem.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/menu/MenuSection.layout.tsx:error:slot-unused:declared slot `menu-item-indicator--checkmark` is not rendered by `componentRecipe`","src/components/menu/MenuSection.layout.tsx:error:slot-unused:declared slot `menu-item-indicator--dot` is not rendered by `componentRecipe`","src/components/menu/MenuSection.layout.tsx:error:slot-unused:declared slot `menu-item-indicator` is not rendered by `componentRecipe`","src/components/menu/MenuSection.layout.tsx:error:slot-unused:declared slot `menu-item` is not rendered by `componentRecipe`","src/components/menu/MenuSection.layout.tsx:error:slot-unused:declared slot `menu` is not rendered by `componentRecipe`","src/components/menu/MenuSection.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/menu/MenuSection.layout.tsx:error:slot-unused:declared slot `submenu-indicator` is not rendered by `componentRecipe`","src/components/menu/MenuSection.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/menu/MenuSection.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/metal-border/MetalBorder.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/metal-border/MetalBorder.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/metal-border/MetalBorder.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter-fill` is not rendered by `componentRecipe`","src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter-fill` is not rendered by `componentRecipe`","src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter-fill` is not rendered by `componentRecipe`","src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter-output` is not rendered by `componentRecipe`","src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter-output` is not rendered by `componentRecipe`","src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter-output` is not rendered by `componentRecipe`","src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter-track` is not rendered by `componentRecipe`","src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter-track` is not rendered by `componentRecipe`","src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter-track` is not rendered by `componentRecipe`","src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter` is not rendered by `componentRecipe`","src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter` is not rendered by `componentRecipe`","src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter` is not rendered by `componentRecipe`","src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/meter/Meter.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/meter/Meter.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/meter/Meter.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/meter/Meter.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/meter/Meter.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/meter/Meter.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/meter/Meter.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/meter/Meter.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-backdrop` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-backdrop` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-backdrop` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-backdrop` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-backdrop` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-backdrop` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-backdrop` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-backdrop` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-backdrop` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-body` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-body` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-body` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-body` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-body` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-body` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-body` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-body` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-body` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-close-trigger-icon` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-close-trigger-icon` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-close-trigger-icon` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-close-trigger-icon` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-close-trigger-icon` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-close-trigger-icon` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-close-trigger-icon` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-close-trigger-icon` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-close-trigger-icon` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-close-trigger` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-close-trigger` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-close-trigger` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-close-trigger` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-close-trigger` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-close-trigger` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-close-trigger` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-close-trigger` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-close-trigger` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-container` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-container` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-container` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-container` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-container` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-container` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-container` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-container` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-container` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-content` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-content` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-content` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-content` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-content` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-content` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-content` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-content` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-content` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-footer` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-footer` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-footer` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-footer` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-footer` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-footer` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-footer` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-footer` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-footer` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-header` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-header` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-header` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-header` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-header` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-header` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-header` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-header` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-header` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-heading` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-heading` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-heading` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-heading` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-heading` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-heading` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-heading` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-heading` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-heading` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-icon` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-icon` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-icon` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-icon` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-icon` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-icon` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-icon` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-icon` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-icon` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-trigger` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-trigger` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-trigger` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-trigger` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-trigger` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-trigger` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-trigger` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-trigger` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `modal-trigger` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/modal/Modal.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/modal/Modal.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/modal/Modal.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/modal/Modal.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/modal/Modal.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/modal/Modal.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/modal/Modal.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/modal/Modal.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/modal/Modal.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/modal/Modal.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/modal/Modal.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/modal/Modal.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/modal/Modal.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/modal/Modal.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/modal/Modal.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/modal/Modal.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/modal/Modal.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/modal/Modal.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/modal/Modal.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/modal/Modal.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/navbar/Navbar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/navbar/Navbar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/navbar/Navbar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/navbar/Navbar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/navbar/Navbar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/navbar/Navbar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/navbar/Navbar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/navbar/Navbar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/navbar/Navbar.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/navbar/NavbarRow.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/navbar/NavbarRow.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/navbar/NavbarRow.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/navbar/NavbarSection.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/navbar/NavbarSection.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/navbar/NavbarSection.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/navbar/NavbarStack.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/navbar/NavbarStack.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/navbar/NavbarStack.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/noise-background/NoiseBackground.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/noise-background/NoiseBackground.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/noise-background/NoiseBackground.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-decrement-button-icon` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-decrement-button-icon` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-decrement-button-icon` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-decrement-button-icon` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-decrement-button` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-decrement-button` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-decrement-button` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-decrement-button` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-group` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-group` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-group` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-group` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-increment-button-icon` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-increment-button-icon` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-increment-button-icon` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-increment-button-icon` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-increment-button` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-increment-button` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-increment-button` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-increment-button` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-input` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-input` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-input` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field-input` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `number-field` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/number-field/NumberField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/number-field/NumberField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/number-field/NumberField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/number-field/NumberField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/number-field/NumberField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/number-field/NumberField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/number-field/NumberField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/number-field/NumberField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/number-field/NumberField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/number-field/NumberField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/pagination/Pagination.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/pagination/Pagination.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/pagination/Pagination.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow-svg` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow-svg` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow-svg` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow-svg` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow-svg` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-content` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-content` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-content` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-content` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-content` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-dialog` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-dialog` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-dialog` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-dialog` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-dialog` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-heading` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-heading` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-heading` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-heading` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-heading` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-root` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-root` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-root` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-root` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-root` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-trigger` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-trigger` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-trigger` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-trigger` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-trigger` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/popover/Popover.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/popover/Popover.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/popover/Popover.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/popover/Popover.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/popover/Popover.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/popover/Popover.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/popover/Popover.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/popover/Popover.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/popover/Popover.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/popover/Popover.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/popover/Popover.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/popover/Popover.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/progress-bar/ProgressBar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/progress-bar/ProgressBar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/progress-bar/ProgressBar.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/progress-circle/ProgressCircle.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/progress-circle/ProgressCircle.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/progress-circle/ProgressCircle.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/radio-group/RadioGroup.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/radio-group/RadioGroup.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/radio-group/RadioGroup.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/radio/Radio.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/radio/Radio.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/radio/Radio.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/range-calendar/RangeCalendar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/range-calendar/RangeCalendar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/range-calendar/RangeCalendar.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/scroll-shadow/ScrollShadow.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/scroll-shadow/ScrollShadow.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/scroll-shadow/ScrollShadow.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field-clear-button` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field-clear-button` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field-clear-button` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field-clear-button` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field-group` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field-group` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field-group` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field-group` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field-input` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field-input` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field-input` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field-input` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field-search-icon` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field-search-icon` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field-search-icon` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field-search-icon` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:error:slot-unused:declared slot `search-field` is not rendered by `componentRecipe`","src/components/search-field/SearchField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/search-field/SearchField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/search-field/SearchField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/search-field/SearchField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/search-field/SearchField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/search-field/SearchField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/search-field/SearchField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/search-field/SearchField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/search-field/SearchField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/search-field/SearchField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-end-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-end-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-end-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-end-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-end-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-end-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-start-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-start-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-start-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-start-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-start-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-start-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-listbox` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-listbox` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-listbox` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-listbox` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-listbox` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-listbox` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-end-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-end-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-end-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-end-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-end-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-end-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-indicator` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-indicator` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-indicator` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-indicator` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-indicator` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-indicator` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-label` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-label` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-label` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-label` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-label` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-label` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-start-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-start-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-start-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-start-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-start-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-start-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-popover` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-popover` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-popover` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-popover` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-popover` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-popover` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-end-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-end-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-end-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-end-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-end-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-end-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-start-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-start-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-start-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-start-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-start-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-start-icon` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-value` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-value` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-value` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-value` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-value` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-value` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select` is not rendered by `componentRecipe`","src/components/select/Select.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/select/Select.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/select/Select.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/select/Select.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/select/Select.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/select/Select.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/select/Select.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/select/Select.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/select/Select.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/select/Select.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/select/Select.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/select/Select.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/select/Select.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/select/Select.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/separator/Separator.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/separator/Separator.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/separator/Separator.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/size-picker/SizePicker.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/size-picker/SizePicker.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/size-picker/SizePicker.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/skeleton/Skeleton.layout.tsx:error:recipe-export:`./Skeleton.recipe` does not export a static recipe named `skeleton`","src/components/skeleton/Skeleton.recipe.ts:error:recipe-static:recipe `skeleton` must use a statically analyzable object literal","src/components/slider/Slider.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/slider/Slider.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/slider/Slider.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/spinner/Spinner.layout.tsx:error:recipe-export:`./Spinner.recipe` does not export a static recipe named `spinner`","src/components/spinner/Spinner.recipe.ts:error:recipe-static:recipe `spinner` must use a statically analyzable object literal","src/components/surface/Surface.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/surface/Surface.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/surface/Surface.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/ExpandToggle.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/ExpandToggle.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/InlineConfirm.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/InlineConfirm.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/MobileListView.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/MobileListView.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/SortIcon.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/SortIcon.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`","src/components/table/VirtualSpacerRow.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/table/VirtualSpacerRow.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-indicator` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-indicator` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-indicator` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-indicator` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-indicator` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list-container` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list-container` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list-container` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list-container` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list-container` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-panel` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-panel` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-panel` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-panel` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-panel` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-separator` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-separator` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-separator` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-separator` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-separator` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-tab` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-tab` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-tab` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-tab` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-tab` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs` is not rendered by `componentRecipe`","src/components/tabs/Tabs.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/tabs/Tabs.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/tabs/Tabs.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/tabs/Tabs.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/tabs/Tabs.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/tabs/Tabs.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/tabs/Tabs.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/tabs/Tabs.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/tabs/Tabs.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/tabs/Tabs.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/tabs/Tabs.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/tabs/Tabs.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/tag-group/TagGroup.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/tag-group/TagGroup.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/tag-group/TagGroup.layout.tsx:error:slot-unused:declared slot `tag-group-list` is not rendered by `componentRecipe`","src/components/tag-group/TagGroup.layout.tsx:error:slot-unused:declared slot `tag-group` is not rendered by `componentRecipe`","src/components/tag-group/TagGroup.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/tag-group/TagGroup.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/tag-group/TagGroup.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/tag-group/TagGroup.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/tag/Tag.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/tag/Tag.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/tag/Tag.layout.tsx:error:slot-unused:declared slot `tag-end-icon` is not rendered by `componentRecipe`","src/components/tag/Tag.layout.tsx:error:slot-unused:declared slot `tag-remove-button` is not rendered by `componentRecipe`","src/components/tag/Tag.layout.tsx:error:slot-unused:declared slot `tag-start-icon` is not rendered by `componentRecipe`","src/components/tag/Tag.layout.tsx:error:slot-unused:declared slot `tag` is not rendered by `componentRecipe`","src/components/tag/Tag.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/tag/Tag.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/tag/Tag.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/tag/Tag.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/text-area/TextArea.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/text-area/TextArea.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/text-area/TextArea.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/text-field/TextField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/text-field/TextField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/text-field/TextField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/text/Text.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/text/Text.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/text/Text.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/textarea/Textarea.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/textarea/Textarea.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/textarea/Textarea.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/theme-color-picker/ThemeColorPicker.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/theme-color-picker/ThemeColorPicker.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/theme-color-picker/ThemeColorPicker.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `time-field` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `time-field` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `time-field` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `time-field` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `time-field` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `time-field` is not rendered by `componentRecipe`","src/components/time-field/TimeField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/time-field/TimeField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/time-field/TimeField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/time-field/TimeField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/time-field/TimeField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/time-field/TimeField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/time-field/TimeField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/time-field/TimeField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/time-field/TimeField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/time-field/TimeField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/time-field/TimeField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/time-field/TimeField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/time-field/TimeField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/time-field/TimeField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-action` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-action` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-action` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-action` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-action` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-action` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-action` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-action` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-close` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-close` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-close` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-close` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-close` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-close` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-close` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-close` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-content` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-content` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-content` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-content` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-content` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-content` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-content` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-content` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-description` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-description` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-description` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-description` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-description` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-description` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-description` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-description` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-indicator` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-indicator` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-indicator` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-indicator` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-indicator` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-indicator` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-indicator` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-indicator` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region-item` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region-item` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region-item` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region-item` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region-item` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region-item` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region-item` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region-item` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-stack` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-stack` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-stack` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-stack` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-stack` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-stack` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-stack` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-stack` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-title` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-title` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-title` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-title` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-title` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-title` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-title` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-title` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast` is not rendered by `componentRecipe`","src/components/toast/Toast.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/toast/Toast.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/toast/Toast.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/toast/Toast.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/toast/Toast.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/toast/Toast.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/toast/Toast.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/toast/Toast.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/toast/Toast.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/toast/Toast.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/toast/Toast.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/toast/Toast.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/toast/Toast.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/toast/Toast.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/toast/Toast.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/toast/Toast.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/toast/Toast.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/toggle/Toggle.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/toggle/Toggle.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/toggle/Toggle.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/toolbar/Toolbar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/toolbar/Toolbar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/toolbar/Toolbar.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-arrow-svg` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-arrow-svg` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-arrow-svg` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-arrow` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-arrow` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-arrow` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-content` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-content` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-content` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-root` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-root` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-root` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-trigger` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-trigger` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-trigger` is not rendered by `componentRecipe`","src/components/tooltip/Tooltip.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/tooltip/Tooltip.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/tooltip/Tooltip.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/tooltip/Tooltip.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/tooltip/Tooltip.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/tooltip/Tooltip.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/tooltip/Tooltip.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/tooltip/Tooltip.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe","src/components/video-preview/VideoPreview.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`","src/components/video-preview/VideoPreview.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code","src/components/video-preview/VideoPreview.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe"]}
+{
+ "format": "solid-layouts-lint-baseline-v1",
+ "diagnostics": [
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-body-inner` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-body-inner` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-body-inner` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-body-inner` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-body` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-body` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-body` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-body` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-content` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-content` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-content` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-content` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-indicator` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-indicator` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-indicator` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-indicator` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-item` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-item` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-item` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-item` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-trigger` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-trigger` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-trigger` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion-trigger` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `accordion` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/accordion/Accordion.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/accordion/Accordion.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/accordion/Accordion.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/accordion/Accordion.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/accordion/Accordion.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/accordion/Accordion.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/accordion/Accordion.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/accordion/Accordion.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/accordion/Accordion.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/accordion/Accordion.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/avatar/Avatar.layout.tsx:error:slot-unused:declared slot `avatar-fallback` is not rendered by `componentRecipe`",
+ "src/components/avatar/Avatar.layout.tsx:error:slot-unused:declared slot `avatar-fallback` is not rendered by `componentRecipe`",
+ "src/components/avatar/Avatar.layout.tsx:error:slot-unused:declared slot `avatar-image` is not rendered by `componentRecipe`",
+ "src/components/avatar/Avatar.layout.tsx:error:slot-unused:declared slot `avatar-image` is not rendered by `componentRecipe`",
+ "src/components/avatar/Avatar.layout.tsx:error:slot-unused:declared slot `avatar-root` is not rendered by `componentRecipe`",
+ "src/components/avatar/Avatar.layout.tsx:error:slot-unused:declared slot `avatar-root` is not rendered by `componentRecipe`",
+ "src/components/avatar/Avatar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/avatar/Avatar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/avatar/Avatar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/avatar/Avatar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/avatar/Avatar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/avatar/Avatar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/avatar/Avatar.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/avatar/Avatar.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/avatar/Avatar.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/avatar/AvatarGroup.layout.tsx:error:slot-unused:declared slot `avatar-fallback` is not rendered by `componentRecipe`",
+ "src/components/avatar/AvatarGroup.layout.tsx:error:slot-unused:declared slot `avatar-image` is not rendered by `componentRecipe`",
+ "src/components/avatar/AvatarGroup.layout.tsx:error:slot-unused:declared slot `avatar-root` is not rendered by `componentRecipe`",
+ "src/components/avatar/AvatarGroup.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/avatar/AvatarGroup.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/avatar/AvatarGroup.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/badge/Badge.layout.tsx:error:slot-unused:declared slot `badge-anchor` is not rendered by `componentRecipe`",
+ "src/components/badge/Badge.layout.tsx:error:slot-unused:declared slot `badge-anchor` is not rendered by `componentRecipe`",
+ "src/components/badge/Badge.layout.tsx:error:slot-unused:declared slot `badge-label` is not rendered by `componentRecipe`",
+ "src/components/badge/Badge.layout.tsx:error:slot-unused:declared slot `badge-label` is not rendered by `componentRecipe`",
+ "src/components/badge/Badge.layout.tsx:error:slot-unused:declared slot `badge` is not rendered by `componentRecipe`",
+ "src/components/badge/Badge.layout.tsx:error:slot-unused:declared slot `badge` is not rendered by `componentRecipe`",
+ "src/components/badge/Badge.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/badge/Badge.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/badge/Badge.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/badge/Badge.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/badge/Badge.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/badge/Badge.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/badge/Badge.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/badge/Badge.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/badge/Badge.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/breadcrumb/Breadcrumb.layout.tsx:error:slot-unused:declared slot `breadcrumb-item` is not rendered by `componentRecipe`",
+ "src/components/breadcrumb/Breadcrumb.layout.tsx:error:slot-unused:declared slot `breadcrumb-link` is not rendered by `componentRecipe`",
+ "src/components/breadcrumb/Breadcrumb.layout.tsx:error:slot-unused:declared slot `breadcrumb-separator` is not rendered by `componentRecipe`",
+ "src/components/breadcrumb/Breadcrumb.layout.tsx:error:slot-unused:declared slot `breadcrumb` is not rendered by `componentRecipe`",
+ "src/components/breadcrumb/Breadcrumb.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/breadcrumb/Breadcrumb.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/breadcrumb/Breadcrumb.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/breadcrumb/Breadcrumb.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/breadcrumb/Breadcrumb.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/breadcrumb/Breadcrumb.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/button-group/ButtonGroup.layout.tsx:error:slot-unused:declared slot `button-group-separator` is not rendered by `componentRecipe`",
+ "src/components/button-group/ButtonGroup.layout.tsx:error:slot-unused:declared slot `button-group` is not rendered by `componentRecipe`",
+ "src/components/button-group/ButtonGroup.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/button-group/ButtonGroup.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/button-group/ButtonGroup.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/button-group/ButtonGroup.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/button-group/ButtonGroup.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/button-group/ButtonGroup.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/calendar/Calendar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/calendar/Calendar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/calendar/Calendar.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/chatbubble/ChatBubble.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/chatbubble/ChatBubble.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/chatbubble/ChatBubble.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/chatbubble/ChatBubbleAvatar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/chatbubble/ChatBubbleAvatar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/chatbubble/ChatBubbleAvatar.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/chatbubble/ChatBubbleFooter.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/chatbubble/ChatBubbleFooter.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/chatbubble/ChatBubbleFooter.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/chatbubble/ChatBubbleHeader.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/chatbubble/ChatBubbleHeader.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/chatbubble/ChatBubbleHeader.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/chatbubble/ChatBubbleMessage.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/chatbubble/ChatBubbleMessage.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/chatbubble/ChatBubbleMessage.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/chatbubble/ChatBubbleTime.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/chatbubble/ChatBubbleTime.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/chatbubble/ChatBubbleTime.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/checkbox-group/CheckboxGroup.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/checkbox-group/CheckboxGroup.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/checkbox-group/CheckboxGroup.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/checkbox/Checkbox.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/checkbox/Checkbox.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/checkbox/Checkbox.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/chip/Chip.layout.tsx:error:slot-unused:declared slot `chip-end-icon` is not rendered by `componentRecipe`",
+ "src/components/chip/Chip.layout.tsx:error:slot-unused:declared slot `chip-label` is not rendered by `componentRecipe`",
+ "src/components/chip/Chip.layout.tsx:error:slot-unused:declared slot `chip-remove-icon` is not rendered by `componentRecipe`",
+ "src/components/chip/Chip.layout.tsx:error:slot-unused:declared slot `chip-remove` is not rendered by `componentRecipe`",
+ "src/components/chip/Chip.layout.tsx:error:slot-unused:declared slot `chip-start-icon` is not rendered by `componentRecipe`",
+ "src/components/chip/Chip.layout.tsx:error:slot-unused:declared slot `chip` is not rendered by `componentRecipe`",
+ "src/components/chip/Chip.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/chip/Chip.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/chip/Chip.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/chip/Chip.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/chip/Chip.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/chip/Chip.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/close-button/CloseButton.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/close-button/CloseButton.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/close-button/CloseButton.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-body-inner` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-body-inner` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-body-inner` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-body-inner` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-body-inner` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-body` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-body` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-body` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-body` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-body` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-content` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-content` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-content` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-content` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-content` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-heading` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-heading` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-heading` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-heading` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-heading` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-indicator` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-indicator` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-indicator` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-indicator` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-indicator` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-trigger` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-trigger` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-trigger` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-trigger` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible-trigger` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `collapsible` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/collapsible/Collapsible.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/collapsible/Collapsible.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/collapsible/Collapsible.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/collapsible/Collapsible.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/collapsible/Collapsible.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/collapsible/Collapsible.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/collapsible/Collapsible.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/collapsible/Collapsible.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/collapsible/Collapsible.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/collapsible/Collapsible.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/collapsible/Collapsible.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/collapsible/Collapsible.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/color-area/ColorArea.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/color-area/ColorArea.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/color-area/ColorArea.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/color-field/ColorField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/color-field/ColorField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/color-field/ColorField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/color-picker/ColorPicker.layout.tsx:error:slot-unused:declared slot `color-picker` is not rendered by `componentRecipe`",
+ "src/components/color-picker/ColorPicker.layout.tsx:error:slot-unused:declared slot `color-picker` is not rendered by `componentRecipe`",
+ "src/components/color-picker/ColorPicker.layout.tsx:error:slot-unused:declared slot `color-picker` is not rendered by `componentRecipe`",
+ "src/components/color-picker/ColorPicker.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/color-picker/ColorPicker.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/color-picker/ColorPicker.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/color-picker/ColorPicker.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/color-picker/ColorPicker.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/color-picker/ColorPicker.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/color-picker/ColorPicker.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/color-picker/ColorPicker.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/color-picker/ColorPicker.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/color-picker/ColorPicker.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/color-picker/ColorPicker.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/color-picker/ColorPicker.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/color-slider/ColorSlider.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/color-slider/ColorSlider.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/color-slider/ColorSlider.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/color-swatch-picker/ColorSwatchPicker.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/color-swatch-picker/ColorSwatchPicker.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/color-swatch-picker/ColorSwatchPicker.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/color-swatch/ColorSwatch.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/color-swatch/ColorSwatch.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/color-swatch/ColorSwatch.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/color-wheel-flower/ColorWheelFlower.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/color-wheel-flower/ColorWheelFlower.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/color-wheel-flower/ColorWheelFlower.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-empty-state` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-empty-state` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-empty-state` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-empty-state` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-empty-state` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input-group` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input-group` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input-group` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input-group` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input-group` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-input` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-list` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-list` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-list` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-list` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-list` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option-end-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option-end-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option-end-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option-end-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option-end-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-option` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-popover` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-popover` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-popover` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-popover` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-popover` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-start-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-start-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-start-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-start-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-start-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-end-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-end-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-end-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-end-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-end-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-start-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-start-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-start-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-start-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger-start-icon` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox-trigger` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `combobox` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/combo-box/ComboBox.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/combo-box/ComboBox.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/combo-box/ComboBox.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/combo-box/ComboBox.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/combo-box/ComboBox.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/combo-box/ComboBox.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/combo-box/ComboBox.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/combo-box/ComboBox.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/combo-box/ComboBox.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/combo-box/ComboBox.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/combo-box/ComboBox.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/combo-box/ComboBox.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-field` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-field` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-field` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-field` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-field` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-field` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/date-field/DateField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/date-field/DateField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/date-field/DateField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/date-field/DateField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/date-field/DateField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/date-field/DateField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/date-field/DateField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/date-field/DateField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/date-field/DateField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/date-field/DateField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/date-field/DateField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/date-field/DateField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/date-field/DateField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/date-field/DateField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/date-picker/DatePicker.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/date-picker/DatePicker.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/date-picker/DatePicker.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/date-range-picker/DateRangePicker.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/date-range-picker/DateRangePicker.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/date-range-picker/DateRangePicker.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-backdrop` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-backdrop` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-backdrop` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-backdrop` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-backdrop` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-backdrop` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-backdrop` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-backdrop` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-backdrop` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-body` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-body` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-body` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-body` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-body` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-body` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-body` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-body` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-body` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-close-trigger-icon` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-close-trigger-icon` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-close-trigger-icon` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-close-trigger-icon` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-close-trigger-icon` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-close-trigger-icon` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-close-trigger-icon` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-close-trigger-icon` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-close-trigger-icon` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-container` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-container` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-container` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-container` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-container` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-container` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-container` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-container` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-container` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-content` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-content` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-content` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-content` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-content` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-content` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-content` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-content` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-content` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-footer` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-footer` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-footer` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-footer` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-footer` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-footer` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-footer` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-footer` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-footer` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-header` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-header` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-header` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-header` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-header` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-header` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-header` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-header` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-header` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-heading` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-heading` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-heading` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-heading` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-heading` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-heading` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-heading` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-heading` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-heading` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-icon` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-icon` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-icon` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-icon` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-icon` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-icon` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-icon` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-icon` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-icon` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-trigger` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-trigger` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-trigger` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-trigger` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-trigger` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-trigger` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-trigger` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-trigger` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `dialog-trigger` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dialog/Dialog.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dialog/Dialog.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dialog/Dialog.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dialog/Dialog.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dialog/Dialog.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dialog/Dialog.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dialog/Dialog.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dialog/Dialog.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dialog/Dialog.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dialog/Dialog.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dialog/Dialog.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dialog/Dialog.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dialog/Dialog.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dialog/Dialog.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dialog/Dialog.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dialog/Dialog.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dialog/Dialog.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dialog/Dialog.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dialog/Dialog.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dialog/Dialog.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dock/Dock.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dock/Dock.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dock/Dock.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dock/Dock.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dock/Dock.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dock/Dock.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dock/Dock.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dock/Dock.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dock/Dock.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dock/Dock.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dock/Dock.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dock/Dock.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-backdrop` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-body` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-close` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-content` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-dialog` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-footer` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle-bar` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-handle` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-header` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-heading` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `drawer-trigger` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/drawer/Drawer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/drawer/Drawer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-group` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-group` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-group` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-group` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-group` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-menu` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-menu` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-menu` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-menu` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-menu` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-popover` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-popover` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-popover` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-popover` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-popover` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-trigger` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-trigger` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-trigger` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-trigger` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown-trigger` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `dropdown` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `menu-item` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `menu-item` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `menu-item` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `menu-item` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `menu-item` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `separator` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `separator` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `separator` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `separator` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:error:slot-unused:declared slot `separator` is not rendered by `componentRecipe`",
+ "src/components/dropdown/Dropdown.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dropdown/Dropdown.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dropdown/Dropdown.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dropdown/Dropdown.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dropdown/Dropdown.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dropdown/Dropdown.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/dropdown/Dropdown.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dropdown/Dropdown.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dropdown/Dropdown.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dropdown/Dropdown.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dropdown/Dropdown.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/dropdown/Dropdown.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty-actions` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty-actions` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty-actions` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty-actions` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty-description` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty-description` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty-description` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty-description` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty-icon` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty-icon` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty-icon` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty-icon` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty-title` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty-title` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty-title` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty-title` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `empty` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/empty/Empty.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/empty/Empty.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/empty/Empty.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/empty/Empty.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/empty/Empty.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/empty/Empty.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/empty/Empty.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/empty/Empty.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/empty/Empty.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/empty/Empty.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset-actions` is not rendered by `componentRecipe`",
+ "src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset-actions` is not rendered by `componentRecipe`",
+ "src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset-actions` is not rendered by `componentRecipe`",
+ "src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset-field-group` is not rendered by `componentRecipe`",
+ "src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset-field-group` is not rendered by `componentRecipe`",
+ "src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset-field-group` is not rendered by `componentRecipe`",
+ "src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset-legend` is not rendered by `componentRecipe`",
+ "src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset-legend` is not rendered by `componentRecipe`",
+ "src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset-legend` is not rendered by `componentRecipe`",
+ "src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset` is not rendered by `componentRecipe`",
+ "src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset` is not rendered by `componentRecipe`",
+ "src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `fieldset` is not rendered by `componentRecipe`",
+ "src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/fieldset/Fieldset.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/fieldset/Fieldset.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/fieldset/Fieldset.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/fieldset/Fieldset.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/fieldset/Fieldset.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/fieldset/Fieldset.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/fieldset/Fieldset.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/fieldset/Fieldset.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/fieldset/Fieldset.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/flex/Flex.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/flex/Flex.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/flex/Flex.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/footer/Footer.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/footer/Footer.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/footer/Footer.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/footer/FooterTitle.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/footer/FooterTitle.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/footer/FooterTitle.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/form/FieldErrorMessage.layout.tsx:error:slot-unused:declared slot `form-field` is not rendered by `componentRecipe`",
+ "src/components/form/FieldErrorMessage.layout.tsx:error:slot-unused:declared slot `form` is not rendered by `componentRecipe`",
+ "src/components/form/FieldErrorMessage.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/form/FieldErrorMessage.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/form/FieldErrorMessage.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/form/Form.layout.tsx:error:slot-unused:declared slot `field-error-message` is not rendered by `componentRecipe`",
+ "src/components/form/Form.layout.tsx:error:slot-unused:declared slot `field-error-message` is not rendered by `componentRecipe`",
+ "src/components/form/Form.layout.tsx:error:slot-unused:declared slot `field-error-message` is not rendered by `componentRecipe`",
+ "src/components/form/Form.layout.tsx:error:slot-unused:declared slot `form-field` is not rendered by `componentRecipe`",
+ "src/components/form/Form.layout.tsx:error:slot-unused:declared slot `form-field` is not rendered by `componentRecipe`",
+ "src/components/form/Form.layout.tsx:error:slot-unused:declared slot `form-field` is not rendered by `componentRecipe`",
+ "src/components/form/Form.layout.tsx:error:slot-unused:declared slot `form` is not rendered by `componentRecipe`",
+ "src/components/form/Form.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/form/Form.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/form/Form.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/form/Form.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/form/Form.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/form/Form.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/form/Form.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/form/Form.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/form/FormField.layout.tsx:error:slot-unused:declared slot `field-error-message` is not rendered by `componentRecipe`",
+ "src/components/form/FormField.layout.tsx:error:slot-unused:declared slot `form` is not rendered by `componentRecipe`",
+ "src/components/form/FormField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/form/FormField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/form/FormField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/form/FormSubmitButton.layout.tsx:error:slot-unused:declared slot `field-error-message` is not rendered by `componentRecipe`",
+ "src/components/form/FormSubmitButton.layout.tsx:error:slot-unused:declared slot `form-field` is not rendered by `componentRecipe`",
+ "src/components/form/FormSubmitButton.layout.tsx:error:slot-unused:declared slot `form` is not rendered by `componentRecipe`",
+ "src/components/form/FormSubmitButton.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/form/FormSubmitButton.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/glow-card/GlowCard.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/glow-card/GlowCard.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/glow-card/GlowCard.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/grid/Grid.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/grid/Grid.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/grid/Grid.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/header/Header.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/header/Header.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/header/Header.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/immersive-landing/ImmersiveLanding.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/immersive-landing/ImmersiveLanding.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/immersive-landing/ImmersiveLanding.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/immersive-landing/ImmersiveLandingArrows.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/immersive-landing/ImmersiveLandingArrows.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/immersive-landing/ImmersiveLandingArrows.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/immersive-landing/ImmersiveLandingNavigation.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/immersive-landing/ImmersiveLandingNavigation.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/immersive-landing/ImmersiveLandingNavigation.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/immersive-landing/ImmersiveLandingPage.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/immersive-landing/ImmersiveLandingPage.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/immersive-landing/ImmersiveLandingPage.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-caret` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-caret` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-caret` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-group` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-group` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-group` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-input` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-input` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-input` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-separator` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-separator` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-separator` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-slot-value` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-slot-value` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-slot-value` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-slot` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-slot` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp-slot` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `input-otp` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/input-otp/InputOTP.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/input-otp/InputOTP.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/input-otp/InputOTP.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/input-otp/InputOTP.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/input-otp/InputOTP.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/input-otp/InputOTP.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/input-otp/InputOTP.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/input-otp/InputOTP.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-control` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-control` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-control` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-control` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-end-icon` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-end-icon` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-end-icon` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-end-icon` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-field` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-field` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-field` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-field` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-helper` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-helper` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-helper` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-helper` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-label` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-label` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-label` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-label` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-root` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-root` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-root` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-root` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-start-icon` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-start-icon` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-start-icon` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `input-start-icon` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/input/Input.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/input/Input.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/input/Input.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/input/Input.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/input/Input.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/input/Input.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/input/Input.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/input/Input.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/input/Input.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/join/Join.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/join/Join.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/join/Join.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/kbd/Kbd.layout.tsx:error:slot-unused:declared slot `kbd-abbr` is not rendered by `componentRecipe`",
+ "src/components/kbd/Kbd.layout.tsx:error:slot-unused:declared slot `kbd-abbr` is not rendered by `componentRecipe`",
+ "src/components/kbd/Kbd.layout.tsx:error:slot-unused:declared slot `kbd-content` is not rendered by `componentRecipe`",
+ "src/components/kbd/Kbd.layout.tsx:error:slot-unused:declared slot `kbd-content` is not rendered by `componentRecipe`",
+ "src/components/kbd/Kbd.layout.tsx:error:slot-unused:declared slot `kbd` is not rendered by `componentRecipe`",
+ "src/components/kbd/Kbd.layout.tsx:error:slot-unused:declared slot `kbd` is not rendered by `componentRecipe`",
+ "src/components/kbd/Kbd.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/kbd/Kbd.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/kbd/Kbd.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/kbd/Kbd.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/kbd/Kbd.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/kbd/Kbd.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/kbd/Kbd.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/kbd/Kbd.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/kbd/Kbd.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/label/Label.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/label/Label.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/label/Label.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/language-switcher/LanguageSwitcher.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/language-switcher/LanguageSwitcher.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/language-switcher/LanguageSwitcher.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/link/Link.layout.tsx:error:slot-unused:declared slot `link-default-icon` is not rendered by `componentRecipe`",
+ "src/components/link/Link.layout.tsx:error:slot-unused:declared slot `link-icon` is not rendered by `componentRecipe`",
+ "src/components/link/Link.layout.tsx:error:slot-unused:declared slot `link` is not rendered by `componentRecipe`",
+ "src/components/link/Link.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/link/Link.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/link/Link.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/link/Link.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/link/Link.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/link/Link.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/list-box/ListBox.layout.tsx:error:slot-unused:declared slot `heading` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBox.layout.tsx:error:slot-unused:declared slot `listbox-item-indicator--checkmark` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBox.layout.tsx:error:slot-unused:declared slot `listbox-item-indicator` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBox.layout.tsx:error:slot-unused:declared slot `listbox-item` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBox.layout.tsx:error:slot-unused:declared slot `listbox-section` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBox.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBox.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/list-box/ListBox.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `heading` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `heading` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `listbox-item-indicator--checkmark` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `listbox-item-indicator` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `listbox-item` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `listbox-section` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `listbox-section` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `listbox` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `listbox` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBoxItem.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBoxItem.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/list-box/ListBoxItem.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/list-box/ListBoxItem.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/list-box/ListBoxItem.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/list-box/ListBoxSection.layout.tsx:error:slot-unused:declared slot `listbox-item-indicator--checkmark` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBoxSection.layout.tsx:error:slot-unused:declared slot `listbox-item-indicator` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBoxSection.layout.tsx:error:slot-unused:declared slot `listbox-item` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBoxSection.layout.tsx:error:slot-unused:declared slot `listbox` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBoxSection.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/list-box/ListBoxSection.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/list-box/ListBoxSection.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/live-chat/LiveChatBubble.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/live-chat/LiveChatBubble.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/live-chat/LiveChatBubble.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/live-chat/LiveChatPanel.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/live-chat/LiveChatPanel.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/live-chat/LiveChatPanel.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/menu/Menu.layout.tsx:error:slot-unused:declared slot `heading` is not rendered by `componentRecipe`",
+ "src/components/menu/Menu.layout.tsx:error:slot-unused:declared slot `menu-item-indicator--checkmark` is not rendered by `componentRecipe`",
+ "src/components/menu/Menu.layout.tsx:error:slot-unused:declared slot `menu-item-indicator--dot` is not rendered by `componentRecipe`",
+ "src/components/menu/Menu.layout.tsx:error:slot-unused:declared slot `menu-item-indicator` is not rendered by `componentRecipe`",
+ "src/components/menu/Menu.layout.tsx:error:slot-unused:declared slot `menu-item` is not rendered by `componentRecipe`",
+ "src/components/menu/Menu.layout.tsx:error:slot-unused:declared slot `menu-section` is not rendered by `componentRecipe`",
+ "src/components/menu/Menu.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/menu/Menu.layout.tsx:error:slot-unused:declared slot `submenu-indicator` is not rendered by `componentRecipe`",
+ "src/components/menu/Menu.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/menu/Menu.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `heading` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `heading` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `heading` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-item-indicator--checkmark` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-item-indicator--checkmark` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-item-indicator--dot` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-item-indicator--dot` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-item-indicator` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-item-indicator` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-item` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-item` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-section` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-section` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu-section` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `menu` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `submenu-indicator` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:error:slot-unused:declared slot `submenu-indicator` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuItem.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/menu/MenuItem.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/menu/MenuItem.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/menu/MenuItem.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/menu/MenuItem.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/menu/MenuItem.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/menu/MenuSection.layout.tsx:error:slot-unused:declared slot `menu-item-indicator--checkmark` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuSection.layout.tsx:error:slot-unused:declared slot `menu-item-indicator--dot` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuSection.layout.tsx:error:slot-unused:declared slot `menu-item-indicator` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuSection.layout.tsx:error:slot-unused:declared slot `menu-item` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuSection.layout.tsx:error:slot-unused:declared slot `menu` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuSection.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuSection.layout.tsx:error:slot-unused:declared slot `submenu-indicator` is not rendered by `componentRecipe`",
+ "src/components/menu/MenuSection.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/menu/MenuSection.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/metal-border/MetalBorder.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/metal-border/MetalBorder.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/metal-border/MetalBorder.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter-fill` is not rendered by `componentRecipe`",
+ "src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter-fill` is not rendered by `componentRecipe`",
+ "src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter-fill` is not rendered by `componentRecipe`",
+ "src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter-output` is not rendered by `componentRecipe`",
+ "src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter-output` is not rendered by `componentRecipe`",
+ "src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter-output` is not rendered by `componentRecipe`",
+ "src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter-track` is not rendered by `componentRecipe`",
+ "src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter-track` is not rendered by `componentRecipe`",
+ "src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter-track` is not rendered by `componentRecipe`",
+ "src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter` is not rendered by `componentRecipe`",
+ "src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter` is not rendered by `componentRecipe`",
+ "src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `meter` is not rendered by `componentRecipe`",
+ "src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/meter/Meter.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/meter/Meter.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/meter/Meter.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/meter/Meter.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/meter/Meter.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/meter/Meter.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/meter/Meter.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/meter/Meter.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/meter/Meter.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/navbar/Navbar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/navbar/Navbar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/navbar/Navbar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/navbar/Navbar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/navbar/Navbar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/navbar/Navbar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/navbar/Navbar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/navbar/Navbar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/navbar/Navbar.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/navbar/NavbarRow.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/navbar/NavbarRow.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/navbar/NavbarRow.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/navbar/NavbarSection.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/navbar/NavbarSection.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/navbar/NavbarSection.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/navbar/NavbarStack.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/navbar/NavbarStack.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/navbar/NavbarStack.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/noise-background/NoiseBackground.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/noise-background/NoiseBackground.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/noise-background/NoiseBackground.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/pagination/Pagination.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/pagination/Pagination.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/pagination/Pagination.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow-svg` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow-svg` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow-svg` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow-svg` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow-svg` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-arrow` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-content` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-content` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-content` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-content` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-content` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-dialog` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-dialog` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-dialog` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-dialog` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-dialog` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-heading` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-heading` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-heading` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-heading` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-heading` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-root` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-root` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-root` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-root` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-root` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-trigger` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-trigger` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-trigger` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-trigger` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `popover-trigger` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/popover/Popover.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/popover/Popover.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/popover/Popover.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/popover/Popover.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/popover/Popover.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/popover/Popover.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/popover/Popover.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/popover/Popover.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/popover/Popover.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/popover/Popover.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/popover/Popover.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/popover/Popover.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/progress/Progress.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/progress/Progress.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/progress/Progress.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/radial-progress/RadialProgress.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/radial-progress/RadialProgress.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/radial-progress/RadialProgress.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/radio-group/RadioGroup.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/radio-group/RadioGroup.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/radio-group/RadioGroup.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/radio/Radio.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/radio/Radio.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/radio/Radio.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/range-calendar/RangeCalendar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/range-calendar/RangeCalendar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/range-calendar/RangeCalendar.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/scroll-area/ScrollArea.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/scroll-area/ScrollArea.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/scroll-area/ScrollArea.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-end-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-end-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-end-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-end-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-end-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-end-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-start-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-start-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-start-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-start-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-start-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator-start-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-indicator` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-listbox` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-listbox` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-listbox` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-listbox` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-listbox` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-listbox` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-end-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-end-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-end-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-end-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-end-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-end-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-indicator` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-indicator` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-indicator` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-indicator` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-indicator` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-indicator` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-label` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-label` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-label` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-label` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-label` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-label` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-start-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-start-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-start-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-start-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-start-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option-start-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-option` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-popover` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-popover` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-popover` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-popover` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-popover` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-popover` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-end-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-end-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-end-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-end-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-end-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-end-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-start-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-start-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-start-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-start-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-start-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger-start-icon` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-trigger` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-value` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-value` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-value` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-value` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-value` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select-value` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:error:slot-unused:declared slot `ui-select` is not rendered by `componentRecipe`",
+ "src/components/select/Select.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/select/Select.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/select/Select.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/select/Select.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/select/Select.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/select/Select.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/select/Select.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/select/Select.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/select/Select.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/select/Select.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/select/Select.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/select/Select.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/select/Select.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/select/Select.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/separator/Separator.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/separator/Separator.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/separator/Separator.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/size-picker/SizePicker.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/size-picker/SizePicker.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/size-picker/SizePicker.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/slider/Slider.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/slider/Slider.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/slider/Slider.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/switch/Switch.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/switch/Switch.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/switch/Switch.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/ExpandToggle.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/ExpandToggle.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/InlineConfirm.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/InlineConfirm.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/MobileListView.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/MobileListView.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/SortIcon.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/SortIcon.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table-virtual-spacer-row` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/Table.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/Table.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-body` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-cell` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-column-resizer` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-column` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-content` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-expand-toggle` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-expanded-row` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-footer` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-header` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-actions` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-inline-confirm-prompt` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-inline-confirm` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-load-more-content` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-load-more` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-empty` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-item` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view-list` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-mobile-list-view` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-page-size-label` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-page-size` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-resizable-container` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-row` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-scroll-container` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table-sort-icon` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:error:slot-unused:declared slot `table` is not rendered by `componentRecipe`",
+ "src/components/table/VirtualSpacerRow.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/table/VirtualSpacerRow.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-indicator` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-indicator` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-indicator` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-indicator` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-indicator` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list-container` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list-container` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list-container` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list-container` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list-container` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-list` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-panel` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-panel` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-panel` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-panel` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-panel` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-separator` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-separator` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-separator` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-separator` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-separator` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-tab` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-tab` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-tab` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-tab` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs-tab` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:error:slot-unused:declared slot `tabs` is not rendered by `componentRecipe`",
+ "src/components/tabs/Tabs.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/tabs/Tabs.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/tabs/Tabs.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/tabs/Tabs.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/tabs/Tabs.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/tabs/Tabs.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/tabs/Tabs.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/tabs/Tabs.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/tabs/Tabs.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/tabs/Tabs.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/tabs/Tabs.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/tabs/Tabs.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/text/Text.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/text/Text.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/text/Text.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/textarea/Textarea.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/textarea/Textarea.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/textarea/Textarea.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/theme-color-picker/ThemeColorPicker.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/theme-color-picker/ThemeColorPicker.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/theme-color-picker/ThemeColorPicker.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input-container` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-input` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-prefix` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-segment` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group-suffix` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `date-input-group` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `time-field` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `time-field` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `time-field` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `time-field` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `time-field` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:error:slot-unused:declared slot `time-field` is not rendered by `componentRecipe`",
+ "src/components/time-field/TimeField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/time-field/TimeField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/time-field/TimeField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/time-field/TimeField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/time-field/TimeField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/time-field/TimeField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/time-field/TimeField.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/time-field/TimeField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/time-field/TimeField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/time-field/TimeField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/time-field/TimeField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/time-field/TimeField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/time-field/TimeField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/time-field/TimeField.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-action` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-action` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-action` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-action` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-action` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-action` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-action` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-action` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-close` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-close` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-close` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-close` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-close` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-close` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-close` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-close` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-content` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-content` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-content` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-content` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-content` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-content` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-content` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-content` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-description` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-description` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-description` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-description` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-description` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-description` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-description` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-description` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-indicator` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-indicator` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-indicator` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-indicator` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-indicator` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-indicator` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-indicator` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-indicator` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region-item` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region-item` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region-item` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region-item` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region-item` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region-item` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region-item` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region-item` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-region` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-stack` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-stack` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-stack` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-stack` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-stack` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-stack` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-stack` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-stack` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-title` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-title` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-title` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-title` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-title` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-title` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-title` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast-title` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:error:slot-unused:declared slot `toast` is not rendered by `componentRecipe`",
+ "src/components/toast/Toast.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/toast/Toast.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/toast/Toast.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/toast/Toast.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/toast/Toast.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/toast/Toast.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/toast/Toast.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/toast/Toast.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/toast/Toast.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/toast/Toast.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/toast/Toast.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/toast/Toast.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/toast/Toast.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/toast/Toast.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/toast/Toast.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/toast/Toast.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/toast/Toast.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/toolbar/Toolbar.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/toolbar/Toolbar.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/toolbar/Toolbar.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-arrow-svg` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-arrow-svg` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-arrow-svg` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-arrow` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-arrow` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-arrow` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-content` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-content` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-content` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-root` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-root` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-root` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-trigger` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-trigger` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:error:slot-unused:declared slot `tooltip-trigger` is not rendered by `componentRecipe`",
+ "src/components/tooltip/Tooltip.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/tooltip/Tooltip.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/tooltip/Tooltip.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/tooltip/Tooltip.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/tooltip/Tooltip.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/tooltip/Tooltip.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/tooltip/Tooltip.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/tooltip/Tooltip.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe",
+ "src/components/video-preview/VideoPreview.layout.tsx:error:slot-unused:declared slot `root` is not rendered by `componentRecipe`",
+ "src/components/video-preview/VideoPreview.layout.tsx:warning:legacy-template:legacy component-shaped Layout keeps presentation in component code",
+ "src/components/video-preview/VideoPreview.layout.tsx:warning:manual-classes:manual class composition belongs in the recipe"
+ ]
+}
diff --git a/package.json b/package.json
index 71f7fe99..a6797b02 100644
--- a/package.json
+++ b/package.json
@@ -1,13 +1,13 @@
{
"name": "@pathscale/ui",
- "version": "2.1.1",
+ "version": "2.2.0",
"author": "pathscale",
"repository": {
"type": "git",
"url": "https://github.com/pathscale/ui"
},
"license": "MIT",
- "description": "Highly opinionated SolidJS component library — batteries and kitchen sink included, but optimized and shiny.",
+ "description": "Highly opinionated SolidJS component library \u2014 batteries and kitchen sink included, but optimized and shiny.",
"files": [
"dist"
],
@@ -39,6 +39,10 @@
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
+ "./lab": {
+ "types": "./dist/lab.d.ts",
+ "import": "./dist/lab.js"
+ },
"./layouts": "./dist/layouts.manifest.json",
"./components/*": {
"types": "./dist/components/*/index.d.ts",
@@ -85,21 +89,19 @@
"@types/bun": "^1.3.14",
"babel-preset-solid": "^1.9.12",
"cally": "^0.8.0",
- "clsx": "^2.1.1",
"cssnano": "^7.1.9",
"postcss": "^8.5.15",
"postcss-cli": "^11.0.1",
"postcss-selector-parser": "^7.1.1",
- "rsbuild-plugin-solid-layouts": "^0.1.2",
+ "rsbuild-plugin-solid-layouts": "^0.1.4",
"solid-js": "^1.9.14",
- "solid-layouts": "^0.1.2",
- "solid-layouts-oxc": "^0.1.2",
+ "solid-layouts": "^0.1.3",
+ "solid-layouts-oxc": "^0.1.7",
"svgo": "^3.3.3",
"typescript": "^6.0.3"
},
"dependencies": {
- "@iconify/tailwind4": "^1.2.3",
- "@pathscale/rsbuild-plugin-iconify": "^1.0.4",
+ "clsx": "^2.1.1",
"@tanstack/solid-virtual": "^3.13.27",
"tailwind-merge": "^3.6.0"
},
@@ -119,7 +121,7 @@
"@tanstack/solid-table": "^8.0.0",
"popmotion": "^11.0.5",
"solid-js": "^1.9",
- "solid-layouts": "^0.1.2"
+ "solid-layouts": "^0.1.3"
},
"peerDependenciesMeta": {
"@standard-schema/spec": {
@@ -145,9 +147,8 @@
"check:package": "bun run scripts/check-package.ts",
"next-version": "bun run scripts/next-version.ts",
"smoke": "bun run scripts/smoke-consumer.ts",
- "playground:dev": "cd playground && bun run dev",
- "playground:build": "cd playground && bun run build",
- "playground:preview": "cd playground && bun run preview"
+ "test": "bun test",
+ "check:api": "bun run scripts/check-api-contract.ts"
},
"sideEffects": [
"**/*.css"
diff --git a/playground/bun.lock b/playground/bun.lock
deleted file mode 100644
index 5d331649..00000000
--- a/playground/bun.lock
+++ /dev/null
@@ -1,409 +0,0 @@
-{
- "lockfileVersion": 1,
- "workspaces": {
- "": {
- "name": "playground",
- "dependencies": {
- "@iconify/tailwind4": "^1.0.6",
- "@standard-schema/spec": "^1.1.0",
- "@tanstack/solid-form": "^1.29.0",
- "popmotion": "^11.0.5",
- "zod": "^4.3.6",
- },
- "devDependencies": {
- "@iconify/json": "^2.2.342",
- "@tailwindcss/vite": "^4.0.0",
- "solid-js": "^1.8.15",
- "typescript": "^5.2.2",
- "vite": "^5.0.0",
- "vite-plugin-solid": "^2.9.1",
- "vite-tsconfig-paths": "^4.3.1",
- },
- },
- },
- "packages": {
- "@ampproject/remapping": ["@ampproject/remapping@2.3.0", "", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw=="],
-
- "@antfu/install-pkg": ["@antfu/install-pkg@1.1.0", "", { "dependencies": { "package-manager-detector": "^1.3.0", "tinyexec": "^1.0.1" } }, "sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ=="],
-
- "@antfu/utils": ["@antfu/utils@8.1.1", "", {}, "sha512-Mex9nXf9vR6AhcXmMrlz/HVgYYZpVGJ6YlPgwl7UnaFpnshXs6EK/oa5Gpf3CzENMjkvEx2tQtntGnb7UtSTOQ=="],
-
- "@babel/code-frame": ["@babel/code-frame@7.27.1", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.27.1", "js-tokens": "^4.0.0", "picocolors": "^1.1.1" } }, "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg=="],
-
- "@babel/compat-data": ["@babel/compat-data@7.27.2", "", {}, "sha512-TUtMJYRPyUb/9aU8f3K0mjmjf6M9N5Woshn2CS6nqJSeJtTtQcpLUXjGt9vbF8ZGff0El99sWkLgzwW3VXnxZQ=="],
-
- "@babel/core": ["@babel/core@7.27.1", "", { "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.27.1", "@babel/helper-compilation-targets": "^7.27.1", "@babel/helper-module-transforms": "^7.27.1", "@babel/helpers": "^7.27.1", "@babel/parser": "^7.27.1", "@babel/template": "^7.27.1", "@babel/traverse": "^7.27.1", "@babel/types": "^7.27.1", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.3", "semver": "^6.3.1" } }, "sha512-IaaGWsQqfsQWVLqMn9OB92MNN7zukfVA4s7KKAI0KfrrDsZ0yhi5uV4baBuLuN7n3vsZpwP8asPPcVwApxvjBQ=="],
-
- "@babel/generator": ["@babel/generator@7.27.1", "", { "dependencies": { "@babel/parser": "^7.27.1", "@babel/types": "^7.27.1", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w=="],
-
- "@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.27.2", "", { "dependencies": { "@babel/compat-data": "^7.27.2", "@babel/helper-validator-option": "^7.27.1", "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ=="],
-
- "@babel/helper-module-imports": ["@babel/helper-module-imports@7.27.1", "", { "dependencies": { "@babel/traverse": "^7.27.1", "@babel/types": "^7.27.1" } }, "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w=="],
-
- "@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.27.1", "", { "dependencies": { "@babel/helper-module-imports": "^7.27.1", "@babel/helper-validator-identifier": "^7.27.1", "@babel/traverse": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-9yHn519/8KvTU5BjTVEEeIM3w9/2yXNKoD82JifINImhpKkARMJKPP59kLo+BafpdN5zgNeIcS4jsGDmd3l58g=="],
-
- "@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.27.1", "", {}, "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw=="],
-
- "@babel/helper-string-parser": ["@babel/helper-string-parser@7.27.1", "", {}, "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA=="],
-
- "@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.27.1", "", {}, "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow=="],
-
- "@babel/helper-validator-option": ["@babel/helper-validator-option@7.27.1", "", {}, "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg=="],
-
- "@babel/helpers": ["@babel/helpers@7.27.1", "", { "dependencies": { "@babel/template": "^7.27.1", "@babel/types": "^7.27.1" } }, "sha512-FCvFTm0sWV8Fxhpp2McP5/W53GPllQ9QeQ7SiqGWjMf/LVG07lFa5+pgK05IRhVwtvafT22KF+ZSnM9I545CvQ=="],
-
- "@babel/parser": ["@babel/parser@7.27.2", "", { "dependencies": { "@babel/types": "^7.27.1" }, "bin": { "parser": "bin/babel-parser.js" } }, "sha512-QYLs8299NA7WM/bZAdp+CviYYkVoYXlDW2rzliy3chxd1PQjej7JORuMJDJXJUb9g0TT+B99EwaVLKmX+sPXWw=="],
-
- "@babel/plugin-syntax-jsx": ["@babel/plugin-syntax-jsx@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w=="],
-
- "@babel/template": ["@babel/template@7.27.2", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/parser": "^7.27.2", "@babel/types": "^7.27.1" } }, "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw=="],
-
- "@babel/traverse": ["@babel/traverse@7.27.1", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.27.1", "@babel/parser": "^7.27.1", "@babel/template": "^7.27.1", "@babel/types": "^7.27.1", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-ZCYtZciz1IWJB4U61UPu4KEaqyfj+r5T1Q5mqPo+IBpcG9kHv30Z0aD8LXPgC1trYa6rK0orRyAhqUgk4MjmEg=="],
-
- "@babel/types": ["@babel/types@7.27.1", "", { "dependencies": { "@babel/helper-string-parser": "^7.27.1", "@babel/helper-validator-identifier": "^7.27.1" } }, "sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q=="],
-
- "@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.21.5", "", { "os": "aix", "cpu": "ppc64" }, "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ=="],
-
- "@esbuild/android-arm": ["@esbuild/android-arm@0.21.5", "", { "os": "android", "cpu": "arm" }, "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg=="],
-
- "@esbuild/android-arm64": ["@esbuild/android-arm64@0.21.5", "", { "os": "android", "cpu": "arm64" }, "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A=="],
-
- "@esbuild/android-x64": ["@esbuild/android-x64@0.21.5", "", { "os": "android", "cpu": "x64" }, "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA=="],
-
- "@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.21.5", "", { "os": "darwin", "cpu": "arm64" }, "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ=="],
-
- "@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.21.5", "", { "os": "darwin", "cpu": "x64" }, "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw=="],
-
- "@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.21.5", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g=="],
-
- "@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.21.5", "", { "os": "freebsd", "cpu": "x64" }, "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ=="],
-
- "@esbuild/linux-arm": ["@esbuild/linux-arm@0.21.5", "", { "os": "linux", "cpu": "arm" }, "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA=="],
-
- "@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.21.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q=="],
-
- "@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.21.5", "", { "os": "linux", "cpu": "ia32" }, "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg=="],
-
- "@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.21.5", "", { "os": "linux", "cpu": "none" }, "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg=="],
-
- "@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.21.5", "", { "os": "linux", "cpu": "none" }, "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg=="],
-
- "@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.21.5", "", { "os": "linux", "cpu": "ppc64" }, "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w=="],
-
- "@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.21.5", "", { "os": "linux", "cpu": "none" }, "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA=="],
-
- "@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.21.5", "", { "os": "linux", "cpu": "s390x" }, "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A=="],
-
- "@esbuild/linux-x64": ["@esbuild/linux-x64@0.21.5", "", { "os": "linux", "cpu": "x64" }, "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ=="],
-
- "@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.21.5", "", { "os": "none", "cpu": "x64" }, "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg=="],
-
- "@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.21.5", "", { "os": "openbsd", "cpu": "x64" }, "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow=="],
-
- "@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.21.5", "", { "os": "sunos", "cpu": "x64" }, "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg=="],
-
- "@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.21.5", "", { "os": "win32", "cpu": "arm64" }, "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A=="],
-
- "@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.21.5", "", { "os": "win32", "cpu": "ia32" }, "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA=="],
-
- "@esbuild/win32-x64": ["@esbuild/win32-x64@0.21.5", "", { "os": "win32", "cpu": "x64" }, "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw=="],
-
- "@iconify/json": ["@iconify/json@2.2.342", "", { "dependencies": { "@iconify/types": "*", "pathe": "^1.1.2" } }, "sha512-ayuQgY+36XtS+y2NQtAozcOPGq4TzqENe3eTScSQ3l7rnF/4nT1W26Nl8JHfl2Ythwt5u1qknnL8cg/OL1xkJw=="],
-
- "@iconify/tailwind4": ["@iconify/tailwind4@1.0.6", "", { "dependencies": { "@iconify/types": "^2.0.0", "@iconify/utils": "^2.2.1" }, "peerDependencies": { "tailwindcss": ">= 4" } }, "sha512-43ZXe+bC7CuE2LCgROdqbQeFYJi/J7L/k1UpSy8KDQlWVsWxPzLSWbWhlJx4uRYLOh1NRyw02YlDOgzBOFNd+A=="],
-
- "@iconify/types": ["@iconify/types@2.0.0", "", {}, "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg=="],
-
- "@iconify/utils": ["@iconify/utils@2.3.0", "", { "dependencies": { "@antfu/install-pkg": "^1.0.0", "@antfu/utils": "^8.1.0", "@iconify/types": "^2.0.0", "debug": "^4.4.0", "globals": "^15.14.0", "kolorist": "^1.8.0", "local-pkg": "^1.0.0", "mlly": "^1.7.4" } }, "sha512-GmQ78prtwYW6EtzXRU1rY+KwOKfz32PD7iJh6Iyqw68GiKuoZ2A6pRtzWONz5VQJbp50mEjXh/7NkumtrAgRKA=="],
-
- "@isaacs/fs-minipass": ["@isaacs/fs-minipass@4.0.1", "", { "dependencies": { "minipass": "^7.0.4" } }, "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w=="],
-
- "@jridgewell/gen-mapping": ["@jridgewell/gen-mapping@0.3.8", "", { "dependencies": { "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA=="],
-
- "@jridgewell/resolve-uri": ["@jridgewell/resolve-uri@3.1.2", "", {}, "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="],
-
- "@jridgewell/set-array": ["@jridgewell/set-array@1.2.1", "", {}, "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A=="],
-
- "@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@1.5.0", "", {}, "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="],
-
- "@jridgewell/trace-mapping": ["@jridgewell/trace-mapping@0.3.25", "", { "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ=="],
-
- "@rollup/rollup-android-arm-eabi": ["@rollup/rollup-android-arm-eabi@4.40.2", "", { "os": "android", "cpu": "arm" }, "sha512-JkdNEq+DFxZfUwxvB58tHMHBHVgX23ew41g1OQinthJ+ryhdRk67O31S7sYw8u2lTjHUPFxwar07BBt1KHp/hg=="],
-
- "@rollup/rollup-android-arm64": ["@rollup/rollup-android-arm64@4.40.2", "", { "os": "android", "cpu": "arm64" }, "sha512-13unNoZ8NzUmnndhPTkWPWbX3vtHodYmy+I9kuLxN+F+l+x3LdVF7UCu8TWVMt1POHLh6oDHhnOA04n8oJZhBw=="],
-
- "@rollup/rollup-darwin-arm64": ["@rollup/rollup-darwin-arm64@4.40.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-Gzf1Hn2Aoe8VZzevHostPX23U7N5+4D36WJNHK88NZHCJr7aVMG4fadqkIf72eqVPGjGc0HJHNuUaUcxiR+N/w=="],
-
- "@rollup/rollup-darwin-x64": ["@rollup/rollup-darwin-x64@4.40.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-47N4hxa01a4x6XnJoskMKTS8XZ0CZMd8YTbINbi+w03A2w4j1RTlnGHOz/P0+Bg1LaVL6ufZyNprSg+fW5nYQQ=="],
-
- "@rollup/rollup-freebsd-arm64": ["@rollup/rollup-freebsd-arm64@4.40.2", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-8t6aL4MD+rXSHHZUR1z19+9OFJ2rl1wGKvckN47XFRVO+QL/dUSpKA2SLRo4vMg7ELA8pzGpC+W9OEd1Z/ZqoQ=="],
-
- "@rollup/rollup-freebsd-x64": ["@rollup/rollup-freebsd-x64@4.40.2", "", { "os": "freebsd", "cpu": "x64" }, "sha512-C+AyHBzfpsOEYRFjztcYUFsH4S7UsE9cDtHCtma5BK8+ydOZYgMmWg1d/4KBytQspJCld8ZIujFMAdKG1xyr4Q=="],
-
- "@rollup/rollup-linux-arm-gnueabihf": ["@rollup/rollup-linux-arm-gnueabihf@4.40.2", "", { "os": "linux", "cpu": "arm" }, "sha512-de6TFZYIvJwRNjmW3+gaXiZ2DaWL5D5yGmSYzkdzjBDS3W+B9JQ48oZEsmMvemqjtAFzE16DIBLqd6IQQRuG9Q=="],
-
- "@rollup/rollup-linux-arm-musleabihf": ["@rollup/rollup-linux-arm-musleabihf@4.40.2", "", { "os": "linux", "cpu": "arm" }, "sha512-urjaEZubdIkacKc930hUDOfQPysezKla/O9qV+O89enqsqUmQm8Xj8O/vh0gHg4LYfv7Y7UsE3QjzLQzDYN1qg=="],
-
- "@rollup/rollup-linux-arm64-gnu": ["@rollup/rollup-linux-arm64-gnu@4.40.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-KlE8IC0HFOC33taNt1zR8qNlBYHj31qGT1UqWqtvR/+NuCVhfufAq9fxO8BMFC22Wu0rxOwGVWxtCMvZVLmhQg=="],
-
- "@rollup/rollup-linux-arm64-musl": ["@rollup/rollup-linux-arm64-musl@4.40.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-j8CgxvfM0kbnhu4XgjnCWJQyyBOeBI1Zq91Z850aUddUmPeQvuAy6OiMdPS46gNFgy8gN1xkYyLgwLYZG3rBOg=="],
-
- "@rollup/rollup-linux-loongarch64-gnu": ["@rollup/rollup-linux-loongarch64-gnu@4.40.2", "", { "os": "linux", "cpu": "none" }, "sha512-Ybc/1qUampKuRF4tQXc7G7QY9YRyeVSykfK36Y5Qc5dmrIxwFhrOzqaVTNoZygqZ1ZieSWTibfFhQ5qK8jpWxw=="],
-
- "@rollup/rollup-linux-powerpc64le-gnu": ["@rollup/rollup-linux-powerpc64le-gnu@4.40.2", "", { "os": "linux", "cpu": "ppc64" }, "sha512-3FCIrnrt03CCsZqSYAOW/k9n625pjpuMzVfeI+ZBUSDT3MVIFDSPfSUgIl9FqUftxcUXInvFah79hE1c9abD+Q=="],
-
- "@rollup/rollup-linux-riscv64-gnu": ["@rollup/rollup-linux-riscv64-gnu@4.40.2", "", { "os": "linux", "cpu": "none" }, "sha512-QNU7BFHEvHMp2ESSY3SozIkBPaPBDTsfVNGx3Xhv+TdvWXFGOSH2NJvhD1zKAT6AyuuErJgbdvaJhYVhVqrWTg=="],
-
- "@rollup/rollup-linux-riscv64-musl": ["@rollup/rollup-linux-riscv64-musl@4.40.2", "", { "os": "linux", "cpu": "none" }, "sha512-5W6vNYkhgfh7URiXTO1E9a0cy4fSgfE4+Hl5agb/U1sa0kjOLMLC1wObxwKxecE17j0URxuTrYZZME4/VH57Hg=="],
-
- "@rollup/rollup-linux-s390x-gnu": ["@rollup/rollup-linux-s390x-gnu@4.40.2", "", { "os": "linux", "cpu": "s390x" }, "sha512-B7LKIz+0+p348JoAL4X/YxGx9zOx3sR+o6Hj15Y3aaApNfAshK8+mWZEf759DXfRLeL2vg5LYJBB7DdcleYCoQ=="],
-
- "@rollup/rollup-linux-x64-gnu": ["@rollup/rollup-linux-x64-gnu@4.40.2", "", { "os": "linux", "cpu": "x64" }, "sha512-lG7Xa+BmBNwpjmVUbmyKxdQJ3Q6whHjMjzQplOs5Z+Gj7mxPtWakGHqzMqNER68G67kmCX9qX57aRsW5V0VOng=="],
-
- "@rollup/rollup-linux-x64-musl": ["@rollup/rollup-linux-x64-musl@4.40.2", "", { "os": "linux", "cpu": "x64" }, "sha512-tD46wKHd+KJvsmije4bUskNuvWKFcTOIM9tZ/RrmIvcXnbi0YK/cKS9FzFtAm7Oxi2EhV5N2OpfFB348vSQRXA=="],
-
- "@rollup/rollup-win32-arm64-msvc": ["@rollup/rollup-win32-arm64-msvc@4.40.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-Bjv/HG8RRWLNkXwQQemdsWw4Mg+IJ29LK+bJPW2SCzPKOUaMmPEppQlu/Fqk1d7+DX3V7JbFdbkh/NMmurT6Pg=="],
-
- "@rollup/rollup-win32-ia32-msvc": ["@rollup/rollup-win32-ia32-msvc@4.40.2", "", { "os": "win32", "cpu": "ia32" }, "sha512-dt1llVSGEsGKvzeIO76HToiYPNPYPkmjhMHhP00T9S4rDern8P2ZWvWAQUEJ+R1UdMWJ/42i/QqJ2WV765GZcA=="],
-
- "@rollup/rollup-win32-x64-msvc": ["@rollup/rollup-win32-x64-msvc@4.40.2", "", { "os": "win32", "cpu": "x64" }, "sha512-bwspbWB04XJpeElvsp+DCylKfF4trJDa2Y9Go8O6A7YLX2LIKGcNK/CYImJN6ZP4DcuOHB4Utl3iCbnR62DudA=="],
-
- "@standard-schema/spec": ["@standard-schema/spec@1.1.0", "", {}, "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w=="],
-
- "@tailwindcss/node": ["@tailwindcss/node@4.1.7", "", { "dependencies": { "@ampproject/remapping": "^2.3.0", "enhanced-resolve": "^5.18.1", "jiti": "^2.4.2", "lightningcss": "1.30.1", "magic-string": "^0.30.17", "source-map-js": "^1.2.1", "tailwindcss": "4.1.7" } }, "sha512-9rsOpdY9idRI2NH6CL4wORFY0+Q6fnx9XP9Ju+iq/0wJwGD5IByIgFmwVbyy4ymuyprj8Qh4ErxMKTUL4uNh3g=="],
-
- "@tailwindcss/oxide": ["@tailwindcss/oxide@4.1.7", "", { "dependencies": { "detect-libc": "^2.0.4", "tar": "^7.4.3" }, "optionalDependencies": { "@tailwindcss/oxide-android-arm64": "4.1.7", "@tailwindcss/oxide-darwin-arm64": "4.1.7", "@tailwindcss/oxide-darwin-x64": "4.1.7", "@tailwindcss/oxide-freebsd-x64": "4.1.7", "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.7", "@tailwindcss/oxide-linux-arm64-gnu": "4.1.7", "@tailwindcss/oxide-linux-arm64-musl": "4.1.7", "@tailwindcss/oxide-linux-x64-gnu": "4.1.7", "@tailwindcss/oxide-linux-x64-musl": "4.1.7", "@tailwindcss/oxide-wasm32-wasi": "4.1.7", "@tailwindcss/oxide-win32-arm64-msvc": "4.1.7", "@tailwindcss/oxide-win32-x64-msvc": "4.1.7" } }, "sha512-5SF95Ctm9DFiUyjUPnDGkoKItPX/k+xifcQhcqX5RA85m50jw1pT/KzjdvlqxRja45Y52nR4MR9fD1JYd7f8NQ=="],
-
- "@tailwindcss/oxide-android-arm64": ["@tailwindcss/oxide-android-arm64@4.1.7", "", { "os": "android", "cpu": "arm64" }, "sha512-IWA410JZ8fF7kACus6BrUwY2Z1t1hm0+ZWNEzykKmMNM09wQooOcN/VXr0p/WJdtHZ90PvJf2AIBS/Ceqx1emg=="],
-
- "@tailwindcss/oxide-darwin-arm64": ["@tailwindcss/oxide-darwin-arm64@4.1.7", "", { "os": "darwin", "cpu": "arm64" }, "sha512-81jUw9To7fimGGkuJ2W5h3/oGonTOZKZ8C2ghm/TTxbwvfSiFSDPd6/A/KE2N7Jp4mv3Ps9OFqg2fEKgZFfsvg=="],
-
- "@tailwindcss/oxide-darwin-x64": ["@tailwindcss/oxide-darwin-x64@4.1.7", "", { "os": "darwin", "cpu": "x64" }, "sha512-q77rWjEyGHV4PdDBtrzO0tgBBPlQWKY7wZK0cUok/HaGgbNKecegNxCGikuPJn5wFAlIywC3v+WMBt0PEBtwGw=="],
-
- "@tailwindcss/oxide-freebsd-x64": ["@tailwindcss/oxide-freebsd-x64@4.1.7", "", { "os": "freebsd", "cpu": "x64" }, "sha512-RfmdbbK6G6ptgF4qqbzoxmH+PKfP4KSVs7SRlTwcbRgBwezJkAO3Qta/7gDy10Q2DcUVkKxFLXUQO6J3CRvBGw=="],
-
- "@tailwindcss/oxide-linux-arm-gnueabihf": ["@tailwindcss/oxide-linux-arm-gnueabihf@4.1.7", "", { "os": "linux", "cpu": "arm" }, "sha512-OZqsGvpwOa13lVd1z6JVwQXadEobmesxQ4AxhrwRiPuE04quvZHWn/LnihMg7/XkN+dTioXp/VMu/p6A5eZP3g=="],
-
- "@tailwindcss/oxide-linux-arm64-gnu": ["@tailwindcss/oxide-linux-arm64-gnu@4.1.7", "", { "os": "linux", "cpu": "arm64" }, "sha512-voMvBTnJSfKecJxGkoeAyW/2XRToLZ227LxswLAwKY7YslG/Xkw9/tJNH+3IVh5bdYzYE7DfiaPbRkSHFxY1xA=="],
-
- "@tailwindcss/oxide-linux-arm64-musl": ["@tailwindcss/oxide-linux-arm64-musl@4.1.7", "", { "os": "linux", "cpu": "arm64" }, "sha512-PjGuNNmJeKHnP58M7XyjJyla8LPo+RmwHQpBI+W/OxqrwojyuCQ+GUtygu7jUqTEexejZHr/z3nBc/gTiXBj4A=="],
-
- "@tailwindcss/oxide-linux-x64-gnu": ["@tailwindcss/oxide-linux-x64-gnu@4.1.7", "", { "os": "linux", "cpu": "x64" }, "sha512-HMs+Va+ZR3gC3mLZE00gXxtBo3JoSQxtu9lobbZd+DmfkIxR54NO7Z+UQNPsa0P/ITn1TevtFxXTpsRU7qEvWg=="],
-
- "@tailwindcss/oxide-linux-x64-musl": ["@tailwindcss/oxide-linux-x64-musl@4.1.7", "", { "os": "linux", "cpu": "x64" }, "sha512-MHZ6jyNlutdHH8rd+YTdr3QbXrHXqwIhHw9e7yXEBcQdluGwhpQY2Eku8UZK6ReLaWtQ4gijIv5QoM5eE+qlsA=="],
-
- "@tailwindcss/oxide-wasm32-wasi": ["@tailwindcss/oxide-wasm32-wasi@4.1.7", "", { "cpu": "none" }, "sha512-ANaSKt74ZRzE2TvJmUcbFQ8zS201cIPxUDm5qez5rLEwWkie2SkGtA4P+GPTj+u8N6JbPrC8MtY8RmJA35Oo+A=="],
-
- "@tailwindcss/oxide-win32-arm64-msvc": ["@tailwindcss/oxide-win32-arm64-msvc@4.1.7", "", { "os": "win32", "cpu": "arm64" }, "sha512-HUiSiXQ9gLJBAPCMVRk2RT1ZrBjto7WvqsPBwUrNK2BcdSxMnk19h4pjZjI7zgPhDxlAbJSumTC4ljeA9y0tEw=="],
-
- "@tailwindcss/oxide-win32-x64-msvc": ["@tailwindcss/oxide-win32-x64-msvc@4.1.7", "", { "os": "win32", "cpu": "x64" }, "sha512-rYHGmvoHiLJ8hWucSfSOEmdCBIGZIq7SpkPRSqLsH2Ab2YUNgKeAPT1Fi2cx3+hnYOrAb0jp9cRyode3bBW4mQ=="],
-
- "@tailwindcss/vite": ["@tailwindcss/vite@4.1.7", "", { "dependencies": { "@tailwindcss/node": "4.1.7", "@tailwindcss/oxide": "4.1.7", "tailwindcss": "4.1.7" }, "peerDependencies": { "vite": "^5.2.0 || ^6" } }, "sha512-tYa2fO3zDe41I7WqijyVbRd8oWT0aEID1Eokz5hMT6wShLIHj3yvwj9XbfuloHP9glZ6H+aG2AN/+ZrxJ1Y5RQ=="],
-
- "@tanstack/devtools-event-client": ["@tanstack/devtools-event-client@0.4.3", "", { "bin": { "intent": "bin/intent.js" } }, "sha512-OZI6QyULw0FI0wjgmeYzCIfbgPsOEzwJtCpa69XrfLMtNXLGnz3d/dIabk7frg0TmHo+Ah49w5I4KC7Tufwsvw=="],
-
- "@tanstack/form-core": ["@tanstack/form-core@1.29.0", "", { "dependencies": { "@tanstack/devtools-event-client": "^0.4.1", "@tanstack/pacer-lite": "^0.1.1", "@tanstack/store": "^0.9.1" } }, "sha512-uyeKEdJBfbj0bkBSwvSYVRtWLOaXvfNX3CeVw1HqGOXVLxpBBGAqWdYLc+UoX/9xcoFwFXrjR9QqMPzvwm2yyQ=="],
-
- "@tanstack/pacer-lite": ["@tanstack/pacer-lite@0.1.1", "", {}, "sha512-y/xtNPNt/YeyoVxE/JCx+T7yjEzpezmbb+toK8DDD1P4m7Kzs5YR956+7OKexG3f8aXgC3rLZl7b1V+yNUSy5w=="],
-
- "@tanstack/solid-form": ["@tanstack/solid-form@1.29.0", "", { "dependencies": { "@tanstack/form-core": "1.29.0", "@tanstack/solid-store": "^0.9.1" }, "peerDependencies": { "solid-js": ">=1.9.9" } }, "sha512-t+4ZR7ZF3LACP794zyDGPT+Lk51720IOWwm/VqrK28NetHHVV09YrY4H+iWRNqc1Flc0I2Tm1BIDDYRTmdZH/A=="],
-
- "@tanstack/solid-store": ["@tanstack/solid-store@0.9.3", "", { "dependencies": { "@tanstack/store": "0.9.3" }, "peerDependencies": { "solid-js": "^1.6.0" } }, "sha512-XThXDzwJT8zeatmxFK1UISikfzz1z76mMlpg1IBDPrJp6df6U3cpJInZRbYs3xlVsnhMziuZigaSkzMyZESK9Q=="],
-
- "@tanstack/store": ["@tanstack/store@0.9.3", "", {}, "sha512-8reSzl/qGWGGVKhBoxXPMWzATSbZLZFWhwBAFO9NAyp0TxzfBP0mIrGb8CP8KrQTmvzXlR/vFPPUrHTLBGyFyw=="],
-
- "@types/babel__core": ["@types/babel__core@7.20.5", "", { "dependencies": { "@babel/parser": "^7.20.7", "@babel/types": "^7.20.7", "@types/babel__generator": "*", "@types/babel__template": "*", "@types/babel__traverse": "*" } }, "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA=="],
-
- "@types/babel__generator": ["@types/babel__generator@7.27.0", "", { "dependencies": { "@babel/types": "^7.0.0" } }, "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg=="],
-
- "@types/babel__template": ["@types/babel__template@7.4.4", "", { "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" } }, "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A=="],
-
- "@types/babel__traverse": ["@types/babel__traverse@7.20.7", "", { "dependencies": { "@babel/types": "^7.20.7" } }, "sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng=="],
-
- "@types/estree": ["@types/estree@1.0.7", "", {}, "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ=="],
-
- "acorn": ["acorn@8.14.1", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg=="],
-
- "babel-plugin-jsx-dom-expressions": ["babel-plugin-jsx-dom-expressions@0.39.8", "", { "dependencies": { "@babel/helper-module-imports": "7.18.6", "@babel/plugin-syntax-jsx": "^7.18.6", "@babel/types": "^7.20.7", "html-entities": "2.3.3", "parse5": "^7.1.2", "validate-html-nesting": "^1.2.1" }, "peerDependencies": { "@babel/core": "^7.20.12" } }, "sha512-/MVOIIjonylDXnrWmG23ZX82m9mtKATsVHB7zYlPfDR9Vdd/NBE48if+wv27bSkBtyO7EPMUlcUc4J63QwuACQ=="],
-
- "babel-preset-solid": ["babel-preset-solid@1.9.6", "", { "dependencies": { "babel-plugin-jsx-dom-expressions": "^0.39.8" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-HXTK9f93QxoH8dYn1M2mJdOlWgMsR88Lg/ul6QCZGkNTktjTE5HAf93YxQumHoCudLEtZrU1cFCMFOVho6GqFg=="],
-
- "browserslist": ["browserslist@4.24.5", "", { "dependencies": { "caniuse-lite": "^1.0.30001716", "electron-to-chromium": "^1.5.149", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.3" }, "bin": "cli.js" }, "sha512-FDToo4Wo82hIdgc1CQ+NQD0hEhmpPjrZ3hiUgwgOG6IuTdlpr8jdjyG24P6cNP1yJpTLzS5OcGgSw0xmDU1/Tw=="],
-
- "caniuse-lite": ["caniuse-lite@1.0.30001718", "", {}, "sha512-AflseV1ahcSunK53NfEs9gFWgOEmzr0f+kaMFA4xiLZlr9Hzt7HxcSpIFcnNCUkz6R6dWKa54rUz3HUmI3nVcw=="],
-
- "chownr": ["chownr@3.0.0", "", {}, "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g=="],
-
- "confbox": ["confbox@0.2.2", "", {}, "sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ=="],
-
- "convert-source-map": ["convert-source-map@2.0.0", "", {}, "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="],
-
- "csstype": ["csstype@3.1.3", "", {}, "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="],
-
- "debug": ["debug@4.4.1", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ=="],
-
- "detect-libc": ["detect-libc@2.0.4", "", {}, "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA=="],
-
- "electron-to-chromium": ["electron-to-chromium@1.5.155", "", {}, "sha512-ps5KcGGmwL8VaeJlvlDlu4fORQpv3+GIcF5I3f9tUKUlJ/wsysh6HU8P5L1XWRYeXfA0oJd4PyM8ds8zTFf6Ng=="],
-
- "enhanced-resolve": ["enhanced-resolve@5.18.1", "", { "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" } }, "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg=="],
-
- "entities": ["entities@6.0.0", "", {}, "sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw=="],
-
- "esbuild": ["esbuild@0.21.5", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.21.5", "@esbuild/android-arm": "0.21.5", "@esbuild/android-arm64": "0.21.5", "@esbuild/android-x64": "0.21.5", "@esbuild/darwin-arm64": "0.21.5", "@esbuild/darwin-x64": "0.21.5", "@esbuild/freebsd-arm64": "0.21.5", "@esbuild/freebsd-x64": "0.21.5", "@esbuild/linux-arm": "0.21.5", "@esbuild/linux-arm64": "0.21.5", "@esbuild/linux-ia32": "0.21.5", "@esbuild/linux-loong64": "0.21.5", "@esbuild/linux-mips64el": "0.21.5", "@esbuild/linux-ppc64": "0.21.5", "@esbuild/linux-riscv64": "0.21.5", "@esbuild/linux-s390x": "0.21.5", "@esbuild/linux-x64": "0.21.5", "@esbuild/netbsd-x64": "0.21.5", "@esbuild/openbsd-x64": "0.21.5", "@esbuild/sunos-x64": "0.21.5", "@esbuild/win32-arm64": "0.21.5", "@esbuild/win32-ia32": "0.21.5", "@esbuild/win32-x64": "0.21.5" }, "bin": "bin/esbuild" }, "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw=="],
-
- "escalade": ["escalade@3.2.0", "", {}, "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="],
-
- "exsolve": ["exsolve@1.0.5", "", {}, "sha512-pz5dvkYYKQ1AHVrgOzBKWeP4u4FRb3a6DNK2ucr0OoNwYIU4QWsJ+NM36LLzORT+z845MzKHHhpXiUF5nvQoJg=="],
-
- "framesync": ["framesync@6.1.2", "", { "dependencies": { "tslib": "2.4.0" } }, "sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g=="],
-
- "fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="],
-
- "gensync": ["gensync@1.0.0-beta.2", "", {}, "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="],
-
- "globals": ["globals@15.15.0", "", {}, "sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg=="],
-
- "globrex": ["globrex@0.1.2", "", {}, "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg=="],
-
- "graceful-fs": ["graceful-fs@4.2.11", "", {}, "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="],
-
- "hey-listen": ["hey-listen@1.0.8", "", {}, "sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q=="],
-
- "html-entities": ["html-entities@2.3.3", "", {}, "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA=="],
-
- "is-what": ["is-what@4.1.16", "", {}, "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A=="],
-
- "jiti": ["jiti@2.4.2", "", { "bin": "lib/jiti-cli.mjs" }, "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A=="],
-
- "js-tokens": ["js-tokens@4.0.0", "", {}, "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="],
-
- "jsesc": ["jsesc@3.1.0", "", { "bin": "bin/jsesc" }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="],
-
- "json5": ["json5@2.2.3", "", { "bin": "lib/cli.js" }, "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg=="],
-
- "kolorist": ["kolorist@1.8.0", "", {}, "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ=="],
-
- "lightningcss": ["lightningcss@1.30.1", "", { "dependencies": { "detect-libc": "^2.0.3" }, "optionalDependencies": { "lightningcss-darwin-arm64": "1.30.1", "lightningcss-darwin-x64": "1.30.1", "lightningcss-freebsd-x64": "1.30.1", "lightningcss-linux-arm-gnueabihf": "1.30.1", "lightningcss-linux-arm64-gnu": "1.30.1", "lightningcss-linux-arm64-musl": "1.30.1", "lightningcss-linux-x64-gnu": "1.30.1", "lightningcss-linux-x64-musl": "1.30.1", "lightningcss-win32-arm64-msvc": "1.30.1", "lightningcss-win32-x64-msvc": "1.30.1" } }, "sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg=="],
-
- "lightningcss-darwin-arm64": ["lightningcss-darwin-arm64@1.30.1", "", { "os": "darwin", "cpu": "arm64" }, "sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ=="],
-
- "lightningcss-darwin-x64": ["lightningcss-darwin-x64@1.30.1", "", { "os": "darwin", "cpu": "x64" }, "sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA=="],
-
- "lightningcss-freebsd-x64": ["lightningcss-freebsd-x64@1.30.1", "", { "os": "freebsd", "cpu": "x64" }, "sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig=="],
-
- "lightningcss-linux-arm-gnueabihf": ["lightningcss-linux-arm-gnueabihf@1.30.1", "", { "os": "linux", "cpu": "arm" }, "sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q=="],
-
- "lightningcss-linux-arm64-gnu": ["lightningcss-linux-arm64-gnu@1.30.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw=="],
-
- "lightningcss-linux-arm64-musl": ["lightningcss-linux-arm64-musl@1.30.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ=="],
-
- "lightningcss-linux-x64-gnu": ["lightningcss-linux-x64-gnu@1.30.1", "", { "os": "linux", "cpu": "x64" }, "sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw=="],
-
- "lightningcss-linux-x64-musl": ["lightningcss-linux-x64-musl@1.30.1", "", { "os": "linux", "cpu": "x64" }, "sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ=="],
-
- "lightningcss-win32-arm64-msvc": ["lightningcss-win32-arm64-msvc@1.30.1", "", { "os": "win32", "cpu": "arm64" }, "sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA=="],
-
- "lightningcss-win32-x64-msvc": ["lightningcss-win32-x64-msvc@1.30.1", "", { "os": "win32", "cpu": "x64" }, "sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg=="],
-
- "local-pkg": ["local-pkg@1.1.1", "", { "dependencies": { "mlly": "^1.7.4", "pkg-types": "^2.0.1", "quansync": "^0.2.8" } }, "sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg=="],
-
- "lru-cache": ["lru-cache@5.1.1", "", { "dependencies": { "yallist": "^3.0.2" } }, "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w=="],
-
- "magic-string": ["magic-string@0.30.17", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.0" } }, "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA=="],
-
- "merge-anything": ["merge-anything@5.1.7", "", { "dependencies": { "is-what": "^4.1.8" } }, "sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ=="],
-
- "minipass": ["minipass@7.1.2", "", {}, "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="],
-
- "minizlib": ["minizlib@3.0.2", "", { "dependencies": { "minipass": "^7.1.2" } }, "sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA=="],
-
- "mkdirp": ["mkdirp@3.0.1", "", { "bin": "dist/cjs/src/bin.js" }, "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg=="],
-
- "mlly": ["mlly@1.7.4", "", { "dependencies": { "acorn": "^8.14.0", "pathe": "^2.0.1", "pkg-types": "^1.3.0", "ufo": "^1.5.4" } }, "sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw=="],
-
- "ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="],
-
- "nanoid": ["nanoid@3.3.11", "", { "bin": "bin/nanoid.cjs" }, "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="],
-
- "node-releases": ["node-releases@2.0.19", "", {}, "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw=="],
-
- "package-manager-detector": ["package-manager-detector@1.3.0", "", {}, "sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ=="],
-
- "parse5": ["parse5@7.3.0", "", { "dependencies": { "entities": "^6.0.0" } }, "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw=="],
-
- "pathe": ["pathe@1.1.2", "", {}, "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ=="],
-
- "picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="],
-
- "pkg-types": ["pkg-types@2.1.0", "", { "dependencies": { "confbox": "^0.2.1", "exsolve": "^1.0.1", "pathe": "^2.0.3" } }, "sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A=="],
-
- "popmotion": ["popmotion@11.0.5", "", { "dependencies": { "framesync": "6.1.2", "hey-listen": "^1.0.8", "style-value-types": "5.1.2", "tslib": "2.4.0" } }, "sha512-la8gPM1WYeFznb/JqF4GiTkRRPZsfaj2+kCxqQgr2MJylMmIKUwBfWW8Wa5fml/8gmtlD5yI01MP1QCZPWmppA=="],
-
- "postcss": ["postcss@8.5.3", "", { "dependencies": { "nanoid": "^3.3.8", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A=="],
-
- "quansync": ["quansync@0.2.10", "", {}, "sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A=="],
-
- "rollup": ["rollup@4.40.2", "", { "dependencies": { "@types/estree": "1.0.7" }, "optionalDependencies": { "@rollup/rollup-android-arm-eabi": "4.40.2", "@rollup/rollup-android-arm64": "4.40.2", "@rollup/rollup-darwin-arm64": "4.40.2", "@rollup/rollup-darwin-x64": "4.40.2", "@rollup/rollup-freebsd-arm64": "4.40.2", "@rollup/rollup-freebsd-x64": "4.40.2", "@rollup/rollup-linux-arm-gnueabihf": "4.40.2", "@rollup/rollup-linux-arm-musleabihf": "4.40.2", "@rollup/rollup-linux-arm64-gnu": "4.40.2", "@rollup/rollup-linux-arm64-musl": "4.40.2", "@rollup/rollup-linux-loongarch64-gnu": "4.40.2", "@rollup/rollup-linux-powerpc64le-gnu": "4.40.2", "@rollup/rollup-linux-riscv64-gnu": "4.40.2", "@rollup/rollup-linux-riscv64-musl": "4.40.2", "@rollup/rollup-linux-s390x-gnu": "4.40.2", "@rollup/rollup-linux-x64-gnu": "4.40.2", "@rollup/rollup-linux-x64-musl": "4.40.2", "@rollup/rollup-win32-arm64-msvc": "4.40.2", "@rollup/rollup-win32-ia32-msvc": "4.40.2", "@rollup/rollup-win32-x64-msvc": "4.40.2", "fsevents": "~2.3.2" }, "bin": "dist/bin/rollup" }, "sha512-tfUOg6DTP4rhQ3VjOO6B4wyrJnGOX85requAXvqYTHsOgb2TFJdZ3aWpT8W2kPoypSGP7dZUyzxJ9ee4buM5Fg=="],
-
- "semver": ["semver@6.3.1", "", { "bin": "bin/semver.js" }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="],
-
- "seroval": ["seroval@1.3.1", "", {}, "sha512-F+T9EQPdLzgdewgxnBh4mSc+vde+EOkU6dC9BDuu/bfGb+UyUlqM6t8znFCTPQSuai/ZcfFg0gu79h+bVW2O0w=="],
-
- "seroval-plugins": ["seroval-plugins@1.3.1", "", { "peerDependencies": { "seroval": "^1.0" } }, "sha512-dOlUoiI3fgZbQIcj6By+l865pzeWdP3XCSLdI3xlKnjCk5983yLWPsXytFOUI0BUZKG9qwqbj78n9yVcVwUqaQ=="],
-
- "solid-js": ["solid-js@1.9.6", "", { "dependencies": { "csstype": "^3.1.0", "seroval": "^1.1.0", "seroval-plugins": "^1.1.0" } }, "sha512-PoasAJvLk60hRtOTe9ulvALOdLjjqxuxcGZRolBQqxOnXrBXHGzqMT4ijNhGsDAYdOgEa8ZYaAE94PSldrFSkA=="],
-
- "solid-refresh": ["solid-refresh@0.6.3", "", { "dependencies": { "@babel/generator": "^7.23.6", "@babel/helper-module-imports": "^7.22.15", "@babel/types": "^7.23.6" }, "peerDependencies": { "solid-js": "^1.3" } }, "sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA=="],
-
- "source-map-js": ["source-map-js@1.2.1", "", {}, "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="],
-
- "style-value-types": ["style-value-types@5.1.2", "", { "dependencies": { "hey-listen": "^1.0.8", "tslib": "2.4.0" } }, "sha512-Vs9fNreYF9j6W2VvuDTP7kepALi7sk0xtk2Tu8Yxi9UoajJdEVpNpCov0HsLTqXvNGKX+Uv09pkozVITi1jf3Q=="],
-
- "tailwindcss": ["tailwindcss@4.1.7", "", {}, "sha512-kr1o/ErIdNhTz8uzAYL7TpaUuzKIE6QPQ4qmSdxnoX/lo+5wmUHQA6h3L5yIqEImSRnAAURDirLu/BgiXGPAhg=="],
-
- "tapable": ["tapable@2.2.1", "", {}, "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ=="],
-
- "tar": ["tar@7.4.3", "", { "dependencies": { "@isaacs/fs-minipass": "^4.0.0", "chownr": "^3.0.0", "minipass": "^7.1.2", "minizlib": "^3.0.1", "mkdirp": "^3.0.1", "yallist": "^5.0.0" } }, "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw=="],
-
- "tinyexec": ["tinyexec@1.0.1", "", {}, "sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw=="],
-
- "tsconfck": ["tsconfck@3.1.5", "", { "peerDependencies": { "typescript": "^5.0.0" }, "bin": "bin/tsconfck.js" }, "sha512-CLDfGgUp7XPswWnezWwsCRxNmgQjhYq3VXHM0/XIRxhVrKw0M1if9agzryh1QS3nxjCROvV+xWxoJO1YctzzWg=="],
-
- "tslib": ["tslib@2.4.0", "", {}, "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="],
-
- "typescript": ["typescript@5.8.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ=="],
-
- "ufo": ["ufo@1.6.1", "", {}, "sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA=="],
-
- "update-browserslist-db": ["update-browserslist-db@1.1.3", "", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": "cli.js" }, "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw=="],
-
- "validate-html-nesting": ["validate-html-nesting@1.2.2", "", {}, "sha512-hGdgQozCsQJMyfK5urgFcWEqsSSrK63Awe0t/IMR0bZ0QMtnuaiHzThW81guu3qx9abLi99NEuiaN6P9gVYsNg=="],
-
- "vite": ["vite@5.4.19", "", { "dependencies": { "esbuild": "^0.21.3", "postcss": "^8.4.43", "rollup": "^4.20.0" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^18.0.0 || >=20.0.0", "less": "*", "lightningcss": "^1.21.0", "sass": "*", "sass-embedded": "*", "stylus": "*", "sugarss": "*", "terser": "^5.4.0" }, "optionalPeers": ["@types/node", "less", "sass", "sass-embedded", "stylus", "sugarss", "terser"], "bin": "bin/vite.js" }, "sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA=="],
-
- "vite-plugin-solid": ["vite-plugin-solid@2.11.6", "", { "dependencies": { "@babel/core": "^7.23.3", "@types/babel__core": "^7.20.4", "babel-preset-solid": "^1.8.4", "merge-anything": "^5.1.7", "solid-refresh": "^0.6.3", "vitefu": "^1.0.4" }, "peerDependencies": { "@testing-library/jest-dom": "^5.16.6 || ^5.17.0 || ^6.*", "solid-js": "^1.7.2", "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0" }, "optionalPeers": ["@testing-library/jest-dom"] }, "sha512-Sl5CTqJTGyEeOsmdH6BOgalIZlwH3t4/y0RQuFLMGnvWMBvxb4+lq7x3BSiAw6etf0QexfNJW7HSOO/Qf7pigg=="],
-
- "vite-tsconfig-paths": ["vite-tsconfig-paths@4.3.2", "", { "dependencies": { "debug": "^4.1.1", "globrex": "^0.1.2", "tsconfck": "^3.0.3" }, "peerDependencies": { "vite": "*" } }, "sha512-0Vd/a6po6Q+86rPlntHye7F31zA2URZMbH8M3saAZ/xR9QoGN/L21bxEGfXdWmFdNkqPpRdxFT7nmNe12e9/uA=="],
-
- "vitefu": ["vitefu@1.0.6", "", { "peerDependencies": { "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0" } }, "sha512-+Rex1GlappUyNN6UfwbVZne/9cYC4+R2XDk9xkNXBKMw6HQagdX9PgZ8V2v1WUSK1wfBLp7qbI1+XSNIlB1xmA=="],
-
- "yallist": ["yallist@5.0.0", "", {}, "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw=="],
-
- "zod": ["zod@4.3.6", "", {}, "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg=="],
-
- "@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="],
-
- "babel-plugin-jsx-dom-expressions/@babel/helper-module-imports": ["@babel/helper-module-imports@7.18.6", "", { "dependencies": { "@babel/types": "^7.18.6" } }, "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA=="],
-
- "lru-cache/yallist": ["yallist@3.1.1", "", {}, "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="],
-
- "mlly/pathe": ["pathe@2.0.3", "", {}, "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="],
-
- "mlly/pkg-types": ["pkg-types@1.3.1", "", { "dependencies": { "confbox": "^0.1.8", "mlly": "^1.7.4", "pathe": "^2.0.1" } }, "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ=="],
-
- "pkg-types/pathe": ["pathe@2.0.3", "", {}, "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="],
-
- "mlly/pkg-types/confbox": ["confbox@0.1.8", "", {}, "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w=="],
- }
-}
diff --git a/playground/index.html b/playground/index.html
deleted file mode 100644
index 1c0a6399..00000000
--- a/playground/index.html
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
- Example
-
-
-
-
-
-
-
-
-
diff --git a/playground/package-lock.json b/playground/package-lock.json
deleted file mode 100644
index 1b68fbf0..00000000
--- a/playground/package-lock.json
+++ /dev/null
@@ -1,2934 +0,0 @@
-{
- "name": "playground",
- "version": "0.0.0",
- "lockfileVersion": 3,
- "requires": true,
- "packages": {
- "": {
- "name": "playground",
- "version": "0.0.0",
- "dependencies": {
- "@iconify/tailwind4": "^1.0.6",
- "popmotion": "^11.0.5"
- },
- "devDependencies": {
- "@iconify/json": "^2.2.342",
- "@tailwindcss/vite": "^4.0.0",
- "solid-js": "^1.8.15",
- "typescript": "^5.2.2",
- "vite": "^5.0.0",
- "vite-plugin-solid": "^2.9.1",
- "vite-tsconfig-paths": "^4.3.1"
- }
- },
- "node_modules/@ampproject/remapping": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
- "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "@jridgewell/gen-mapping": "^0.3.5",
- "@jridgewell/trace-mapping": "^0.3.24"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@antfu/install-pkg": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@antfu/install-pkg/-/install-pkg-1.1.0.tgz",
- "integrity": "sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==",
- "license": "MIT",
- "dependencies": {
- "package-manager-detector": "^1.3.0",
- "tinyexec": "^1.0.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@babel/code-frame": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
- "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-validator-identifier": "^7.27.1",
- "js-tokens": "^4.0.0",
- "picocolors": "^1.1.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/compat-data": {
- "version": "7.27.2",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.27.2.tgz",
- "integrity": "sha512-TUtMJYRPyUb/9aU8f3K0mjmjf6M9N5Woshn2CS6nqJSeJtTtQcpLUXjGt9vbF8ZGff0El99sWkLgzwW3VXnxZQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/core": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.27.1.tgz",
- "integrity": "sha512-IaaGWsQqfsQWVLqMn9OB92MNN7zukfVA4s7KKAI0KfrrDsZ0yhi5uV4baBuLuN7n3vsZpwP8asPPcVwApxvjBQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@ampproject/remapping": "^2.2.0",
- "@babel/code-frame": "^7.27.1",
- "@babel/generator": "^7.27.1",
- "@babel/helper-compilation-targets": "^7.27.1",
- "@babel/helper-module-transforms": "^7.27.1",
- "@babel/helpers": "^7.27.1",
- "@babel/parser": "^7.27.1",
- "@babel/template": "^7.27.1",
- "@babel/traverse": "^7.27.1",
- "@babel/types": "^7.27.1",
- "convert-source-map": "^2.0.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.2",
- "json5": "^2.2.3",
- "semver": "^6.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/babel"
- }
- },
- "node_modules/@babel/generator": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.27.1.tgz",
- "integrity": "sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/parser": "^7.27.1",
- "@babel/types": "^7.27.1",
- "@jridgewell/gen-mapping": "^0.3.5",
- "@jridgewell/trace-mapping": "^0.3.25",
- "jsesc": "^3.0.2"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-compilation-targets": {
- "version": "7.27.2",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz",
- "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/compat-data": "^7.27.2",
- "@babel/helper-validator-option": "^7.27.1",
- "browserslist": "^4.24.0",
- "lru-cache": "^5.1.1",
- "semver": "^6.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-module-imports": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
- "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/traverse": "^7.27.1",
- "@babel/types": "^7.27.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-module-transforms": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.1.tgz",
- "integrity": "sha512-9yHn519/8KvTU5BjTVEEeIM3w9/2yXNKoD82JifINImhpKkARMJKPP59kLo+BafpdN5zgNeIcS4jsGDmd3l58g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-module-imports": "^7.27.1",
- "@babel/helper-validator-identifier": "^7.27.1",
- "@babel/traverse": "^7.27.1"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-plugin-utils": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
- "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-string-parser": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
- "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-identifier": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
- "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-option": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
- "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helpers": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.1.tgz",
- "integrity": "sha512-FCvFTm0sWV8Fxhpp2McP5/W53GPllQ9QeQ7SiqGWjMf/LVG07lFa5+pgK05IRhVwtvafT22KF+ZSnM9I545CvQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/template": "^7.27.1",
- "@babel/types": "^7.27.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/parser": {
- "version": "7.27.2",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.2.tgz",
- "integrity": "sha512-QYLs8299NA7WM/bZAdp+CviYYkVoYXlDW2rzliy3chxd1PQjej7JORuMJDJXJUb9g0TT+B99EwaVLKmX+sPXWw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.27.1"
- },
- "bin": {
- "parser": "bin/babel-parser.js"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@babel/plugin-syntax-jsx": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz",
- "integrity": "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.27.1"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/template": {
- "version": "7.27.2",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
- "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.27.1",
- "@babel/parser": "^7.27.2",
- "@babel/types": "^7.27.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/traverse": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.1.tgz",
- "integrity": "sha512-ZCYtZciz1IWJB4U61UPu4KEaqyfj+r5T1Q5mqPo+IBpcG9kHv30Z0aD8LXPgC1trYa6rK0orRyAhqUgk4MjmEg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.27.1",
- "@babel/generator": "^7.27.1",
- "@babel/parser": "^7.27.1",
- "@babel/template": "^7.27.1",
- "@babel/types": "^7.27.1",
- "debug": "^4.3.1",
- "globals": "^11.1.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/types": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.1.tgz",
- "integrity": "sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-string-parser": "^7.27.1",
- "@babel/helper-validator-identifier": "^7.27.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@cyberalien/svg-utils": {
- "version": "1.2.8",
- "resolved": "https://registry.npmjs.org/@cyberalien/svg-utils/-/svg-utils-1.2.8.tgz",
- "integrity": "sha512-ILHRhyyv7WamaiKjPPUqriQKySGnl/r+A6YddAmtvW6xC/f0TksPmhljo/qvqaq7FPJ/ZHvZKsBJeuKOAEGXKA==",
- "license": "MIT",
- "dependencies": {
- "@iconify/types": "^2.0.0"
- }
- },
- "node_modules/@esbuild/aix-ppc64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz",
- "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==",
- "cpu": [
- "ppc64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "aix"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/android-arm": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz",
- "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==",
- "cpu": [
- "arm"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/android-arm64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz",
- "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/android-x64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz",
- "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/darwin-arm64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz",
- "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/darwin-x64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz",
- "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/freebsd-arm64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz",
- "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/freebsd-x64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz",
- "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/linux-arm": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz",
- "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==",
- "cpu": [
- "arm"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/linux-arm64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz",
- "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/linux-ia32": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz",
- "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==",
- "cpu": [
- "ia32"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/linux-loong64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz",
- "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==",
- "cpu": [
- "loong64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/linux-mips64el": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz",
- "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==",
- "cpu": [
- "mips64el"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/linux-ppc64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz",
- "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==",
- "cpu": [
- "ppc64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/linux-riscv64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz",
- "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==",
- "cpu": [
- "riscv64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/linux-s390x": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz",
- "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==",
- "cpu": [
- "s390x"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/linux-x64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz",
- "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/netbsd-x64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz",
- "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "netbsd"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/openbsd-x64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
- "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "openbsd"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/sunos-x64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz",
- "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "sunos"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/win32-arm64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz",
- "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/win32-ia32": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz",
- "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==",
- "cpu": [
- "ia32"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@esbuild/win32-x64": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz",
- "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@iconify/json": {
- "version": "2.2.456",
- "resolved": "https://registry.npmjs.org/@iconify/json/-/json-2.2.456.tgz",
- "integrity": "sha512-u2215knwHqSTgvRwkwziitJr5Js25KukLhW8C58fUGyNsD6P5EWoOb5nA0o8K8tzqUBi/622XTdf7wN2hmK+NA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@iconify/types": "*",
- "pathe": "^2.0.3"
- }
- },
- "node_modules/@iconify/tailwind4": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/@iconify/tailwind4/-/tailwind4-1.2.3.tgz",
- "integrity": "sha512-z8SKiMHRASJKF/IY//87MF88lcB7ulxh8vlhQXXLWsBkNtOh6ese9R41MyGpQeqXdRvQVt+/fX2glQtHFjQ+MA==",
- "license": "MIT",
- "dependencies": {
- "@iconify/tools": "^5.0.5",
- "@iconify/types": "^2.0.0",
- "@iconify/utils": "^3.1.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/cyberalien"
- },
- "peerDependencies": {
- "tailwindcss": ">= 4.0.0"
- }
- },
- "node_modules/@iconify/tools": {
- "version": "5.0.11",
- "resolved": "https://registry.npmjs.org/@iconify/tools/-/tools-5.0.11.tgz",
- "integrity": "sha512-zur/06/zTSflUSoPARK5FfHNZQ9UYsoloPDQHLAZHbQqWhs0/tXS+KB70uOAt94dUB1F94JOkSqIOT2R4Deixg==",
- "license": "MIT",
- "dependencies": {
- "@cyberalien/svg-utils": "^1.2.8",
- "@iconify/types": "^2.0.0",
- "@iconify/utils": "^3.1.0",
- "fflate": "^0.8.2",
- "modern-tar": "^0.7.6",
- "pathe": "^2.0.3",
- "svgo": "^4.0.1"
- }
- },
- "node_modules/@iconify/types": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz",
- "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==",
- "license": "MIT"
- },
- "node_modules/@iconify/utils": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@iconify/utils/-/utils-3.1.0.tgz",
- "integrity": "sha512-Zlzem1ZXhI1iHeeERabLNzBHdOa4VhQbqAcOQaMKuTuyZCpwKbC2R4Dd0Zo3g9EAc+Y4fiarO8HIHRAth7+skw==",
- "license": "MIT",
- "dependencies": {
- "@antfu/install-pkg": "^1.1.0",
- "@iconify/types": "^2.0.0",
- "mlly": "^1.8.0"
- }
- },
- "node_modules/@isaacs/fs-minipass": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz",
- "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "minipass": "^7.0.4"
- },
- "engines": {
- "node": ">=18.0.0"
- }
- },
- "node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.8",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
- "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@jridgewell/set-array": "^1.2.1",
- "@jridgewell/sourcemap-codec": "^1.4.10",
- "@jridgewell/trace-mapping": "^0.3.24"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/resolve-uri": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
- "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/set-array": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
- "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/sourcemap-codec": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
- "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.25",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
- "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@jridgewell/resolve-uri": "^3.1.0",
- "@jridgewell/sourcemap-codec": "^1.4.14"
- }
- },
- "node_modules/@rollup/rollup-android-arm-eabi": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.40.2.tgz",
- "integrity": "sha512-JkdNEq+DFxZfUwxvB58tHMHBHVgX23ew41g1OQinthJ+ryhdRk67O31S7sYw8u2lTjHUPFxwar07BBt1KHp/hg==",
- "cpu": [
- "arm"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ]
- },
- "node_modules/@rollup/rollup-android-arm64": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.40.2.tgz",
- "integrity": "sha512-13unNoZ8NzUmnndhPTkWPWbX3vtHodYmy+I9kuLxN+F+l+x3LdVF7UCu8TWVMt1POHLh6oDHhnOA04n8oJZhBw==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ]
- },
- "node_modules/@rollup/rollup-darwin-arm64": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.40.2.tgz",
- "integrity": "sha512-Gzf1Hn2Aoe8VZzevHostPX23U7N5+4D36WJNHK88NZHCJr7aVMG4fadqkIf72eqVPGjGc0HJHNuUaUcxiR+N/w==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ]
- },
- "node_modules/@rollup/rollup-darwin-x64": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.40.2.tgz",
- "integrity": "sha512-47N4hxa01a4x6XnJoskMKTS8XZ0CZMd8YTbINbi+w03A2w4j1RTlnGHOz/P0+Bg1LaVL6ufZyNprSg+fW5nYQQ==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ]
- },
- "node_modules/@rollup/rollup-freebsd-arm64": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.40.2.tgz",
- "integrity": "sha512-8t6aL4MD+rXSHHZUR1z19+9OFJ2rl1wGKvckN47XFRVO+QL/dUSpKA2SLRo4vMg7ELA8pzGpC+W9OEd1Z/ZqoQ==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ]
- },
- "node_modules/@rollup/rollup-freebsd-x64": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.40.2.tgz",
- "integrity": "sha512-C+AyHBzfpsOEYRFjztcYUFsH4S7UsE9cDtHCtma5BK8+ydOZYgMmWg1d/4KBytQspJCld8ZIujFMAdKG1xyr4Q==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ]
- },
- "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.40.2.tgz",
- "integrity": "sha512-de6TFZYIvJwRNjmW3+gaXiZ2DaWL5D5yGmSYzkdzjBDS3W+B9JQ48oZEsmMvemqjtAFzE16DIBLqd6IQQRuG9Q==",
- "cpu": [
- "arm"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-arm-musleabihf": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.40.2.tgz",
- "integrity": "sha512-urjaEZubdIkacKc930hUDOfQPysezKla/O9qV+O89enqsqUmQm8Xj8O/vh0gHg4LYfv7Y7UsE3QjzLQzDYN1qg==",
- "cpu": [
- "arm"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-arm64-gnu": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.40.2.tgz",
- "integrity": "sha512-KlE8IC0HFOC33taNt1zR8qNlBYHj31qGT1UqWqtvR/+NuCVhfufAq9fxO8BMFC22Wu0rxOwGVWxtCMvZVLmhQg==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-arm64-musl": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.40.2.tgz",
- "integrity": "sha512-j8CgxvfM0kbnhu4XgjnCWJQyyBOeBI1Zq91Z850aUddUmPeQvuAy6OiMdPS46gNFgy8gN1xkYyLgwLYZG3rBOg==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.40.2.tgz",
- "integrity": "sha512-Ybc/1qUampKuRF4tQXc7G7QY9YRyeVSykfK36Y5Qc5dmrIxwFhrOzqaVTNoZygqZ1ZieSWTibfFhQ5qK8jpWxw==",
- "cpu": [
- "loong64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.40.2.tgz",
- "integrity": "sha512-3FCIrnrt03CCsZqSYAOW/k9n625pjpuMzVfeI+ZBUSDT3MVIFDSPfSUgIl9FqUftxcUXInvFah79hE1c9abD+Q==",
- "cpu": [
- "ppc64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-riscv64-gnu": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.40.2.tgz",
- "integrity": "sha512-QNU7BFHEvHMp2ESSY3SozIkBPaPBDTsfVNGx3Xhv+TdvWXFGOSH2NJvhD1zKAT6AyuuErJgbdvaJhYVhVqrWTg==",
- "cpu": [
- "riscv64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-riscv64-musl": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.40.2.tgz",
- "integrity": "sha512-5W6vNYkhgfh7URiXTO1E9a0cy4fSgfE4+Hl5agb/U1sa0kjOLMLC1wObxwKxecE17j0URxuTrYZZME4/VH57Hg==",
- "cpu": [
- "riscv64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-s390x-gnu": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.40.2.tgz",
- "integrity": "sha512-B7LKIz+0+p348JoAL4X/YxGx9zOx3sR+o6Hj15Y3aaApNfAshK8+mWZEf759DXfRLeL2vg5LYJBB7DdcleYCoQ==",
- "cpu": [
- "s390x"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-x64-gnu": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.40.2.tgz",
- "integrity": "sha512-lG7Xa+BmBNwpjmVUbmyKxdQJ3Q6whHjMjzQplOs5Z+Gj7mxPtWakGHqzMqNER68G67kmCX9qX57aRsW5V0VOng==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-x64-musl": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.40.2.tgz",
- "integrity": "sha512-tD46wKHd+KJvsmije4bUskNuvWKFcTOIM9tZ/RrmIvcXnbi0YK/cKS9FzFtAm7Oxi2EhV5N2OpfFB348vSQRXA==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-win32-arm64-msvc": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.40.2.tgz",
- "integrity": "sha512-Bjv/HG8RRWLNkXwQQemdsWw4Mg+IJ29LK+bJPW2SCzPKOUaMmPEppQlu/Fqk1d7+DX3V7JbFdbkh/NMmurT6Pg==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ]
- },
- "node_modules/@rollup/rollup-win32-ia32-msvc": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.40.2.tgz",
- "integrity": "sha512-dt1llVSGEsGKvzeIO76HToiYPNPYPkmjhMHhP00T9S4rDern8P2ZWvWAQUEJ+R1UdMWJ/42i/QqJ2WV765GZcA==",
- "cpu": [
- "ia32"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ]
- },
- "node_modules/@rollup/rollup-win32-x64-msvc": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.40.2.tgz",
- "integrity": "sha512-bwspbWB04XJpeElvsp+DCylKfF4trJDa2Y9Go8O6A7YLX2LIKGcNK/CYImJN6ZP4DcuOHB4Utl3iCbnR62DudA==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ]
- },
- "node_modules/@tailwindcss/node": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.7.tgz",
- "integrity": "sha512-9rsOpdY9idRI2NH6CL4wORFY0+Q6fnx9XP9Ju+iq/0wJwGD5IByIgFmwVbyy4ymuyprj8Qh4ErxMKTUL4uNh3g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@ampproject/remapping": "^2.3.0",
- "enhanced-resolve": "^5.18.1",
- "jiti": "^2.4.2",
- "lightningcss": "1.30.1",
- "magic-string": "^0.30.17",
- "source-map-js": "^1.2.1",
- "tailwindcss": "4.1.7"
- }
- },
- "node_modules/@tailwindcss/oxide": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.7.tgz",
- "integrity": "sha512-5SF95Ctm9DFiUyjUPnDGkoKItPX/k+xifcQhcqX5RA85m50jw1pT/KzjdvlqxRja45Y52nR4MR9fD1JYd7f8NQ==",
- "dev": true,
- "hasInstallScript": true,
- "license": "MIT",
- "dependencies": {
- "detect-libc": "^2.0.4",
- "tar": "^7.4.3"
- },
- "engines": {
- "node": ">= 10"
- },
- "optionalDependencies": {
- "@tailwindcss/oxide-android-arm64": "4.1.7",
- "@tailwindcss/oxide-darwin-arm64": "4.1.7",
- "@tailwindcss/oxide-darwin-x64": "4.1.7",
- "@tailwindcss/oxide-freebsd-x64": "4.1.7",
- "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.7",
- "@tailwindcss/oxide-linux-arm64-gnu": "4.1.7",
- "@tailwindcss/oxide-linux-arm64-musl": "4.1.7",
- "@tailwindcss/oxide-linux-x64-gnu": "4.1.7",
- "@tailwindcss/oxide-linux-x64-musl": "4.1.7",
- "@tailwindcss/oxide-wasm32-wasi": "4.1.7",
- "@tailwindcss/oxide-win32-arm64-msvc": "4.1.7",
- "@tailwindcss/oxide-win32-x64-msvc": "4.1.7"
- }
- },
- "node_modules/@tailwindcss/oxide-android-arm64": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.7.tgz",
- "integrity": "sha512-IWA410JZ8fF7kACus6BrUwY2Z1t1hm0+ZWNEzykKmMNM09wQooOcN/VXr0p/WJdtHZ90PvJf2AIBS/Ceqx1emg==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-darwin-arm64": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.7.tgz",
- "integrity": "sha512-81jUw9To7fimGGkuJ2W5h3/oGonTOZKZ8C2ghm/TTxbwvfSiFSDPd6/A/KE2N7Jp4mv3Ps9OFqg2fEKgZFfsvg==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-darwin-x64": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.7.tgz",
- "integrity": "sha512-q77rWjEyGHV4PdDBtrzO0tgBBPlQWKY7wZK0cUok/HaGgbNKecegNxCGikuPJn5wFAlIywC3v+WMBt0PEBtwGw==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-freebsd-x64": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.7.tgz",
- "integrity": "sha512-RfmdbbK6G6ptgF4qqbzoxmH+PKfP4KSVs7SRlTwcbRgBwezJkAO3Qta/7gDy10Q2DcUVkKxFLXUQO6J3CRvBGw==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.7.tgz",
- "integrity": "sha512-OZqsGvpwOa13lVd1z6JVwQXadEobmesxQ4AxhrwRiPuE04quvZHWn/LnihMg7/XkN+dTioXp/VMu/p6A5eZP3g==",
- "cpu": [
- "arm"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.7.tgz",
- "integrity": "sha512-voMvBTnJSfKecJxGkoeAyW/2XRToLZ227LxswLAwKY7YslG/Xkw9/tJNH+3IVh5bdYzYE7DfiaPbRkSHFxY1xA==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.7.tgz",
- "integrity": "sha512-PjGuNNmJeKHnP58M7XyjJyla8LPo+RmwHQpBI+W/OxqrwojyuCQ+GUtygu7jUqTEexejZHr/z3nBc/gTiXBj4A==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.7.tgz",
- "integrity": "sha512-HMs+Va+ZR3gC3mLZE00gXxtBo3JoSQxtu9lobbZd+DmfkIxR54NO7Z+UQNPsa0P/ITn1TevtFxXTpsRU7qEvWg==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-linux-x64-musl": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.7.tgz",
- "integrity": "sha512-MHZ6jyNlutdHH8rd+YTdr3QbXrHXqwIhHw9e7yXEBcQdluGwhpQY2Eku8UZK6ReLaWtQ4gijIv5QoM5eE+qlsA==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-wasm32-wasi": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.7.tgz",
- "integrity": "sha512-ANaSKt74ZRzE2TvJmUcbFQ8zS201cIPxUDm5qez5rLEwWkie2SkGtA4P+GPTj+u8N6JbPrC8MtY8RmJA35Oo+A==",
- "bundleDependencies": [
- "@napi-rs/wasm-runtime",
- "@emnapi/core",
- "@emnapi/runtime",
- "@tybys/wasm-util",
- "@emnapi/wasi-threads",
- "tslib"
- ],
- "cpu": [
- "wasm32"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@emnapi/core": "^1.4.3",
- "@emnapi/runtime": "^1.4.3",
- "@emnapi/wasi-threads": "^1.0.2",
- "@napi-rs/wasm-runtime": "^0.2.9",
- "@tybys/wasm-util": "^0.9.0",
- "tslib": "^2.8.0"
- },
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/core": {
- "version": "1.4.3",
- "dev": true,
- "inBundle": true,
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@emnapi/wasi-threads": "1.0.2",
- "tslib": "^2.4.0"
- }
- },
- "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/runtime": {
- "version": "1.4.3",
- "dev": true,
- "inBundle": true,
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "tslib": "^2.4.0"
- }
- },
- "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/wasi-threads": {
- "version": "1.0.2",
- "dev": true,
- "inBundle": true,
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "tslib": "^2.4.0"
- }
- },
- "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@napi-rs/wasm-runtime": {
- "version": "0.2.9",
- "dev": true,
- "inBundle": true,
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@emnapi/core": "^1.4.0",
- "@emnapi/runtime": "^1.4.0",
- "@tybys/wasm-util": "^0.9.0"
- }
- },
- "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@tybys/wasm-util": {
- "version": "0.9.0",
- "dev": true,
- "inBundle": true,
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "tslib": "^2.4.0"
- }
- },
- "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/tslib": {
- "version": "2.8.0",
- "dev": true,
- "inBundle": true,
- "license": "0BSD",
- "optional": true
- },
- "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.7.tgz",
- "integrity": "sha512-HUiSiXQ9gLJBAPCMVRk2RT1ZrBjto7WvqsPBwUrNK2BcdSxMnk19h4pjZjI7zgPhDxlAbJSumTC4ljeA9y0tEw==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.7.tgz",
- "integrity": "sha512-rYHGmvoHiLJ8hWucSfSOEmdCBIGZIq7SpkPRSqLsH2Ab2YUNgKeAPT1Fi2cx3+hnYOrAb0jp9cRyode3bBW4mQ==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/vite": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.1.7.tgz",
- "integrity": "sha512-tYa2fO3zDe41I7WqijyVbRd8oWT0aEID1Eokz5hMT6wShLIHj3yvwj9XbfuloHP9glZ6H+aG2AN/+ZrxJ1Y5RQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@tailwindcss/node": "4.1.7",
- "@tailwindcss/oxide": "4.1.7",
- "tailwindcss": "4.1.7"
- },
- "peerDependencies": {
- "vite": "^5.2.0 || ^6"
- }
- },
- "node_modules/@types/babel__core": {
- "version": "7.20.5",
- "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
- "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/parser": "^7.20.7",
- "@babel/types": "^7.20.7",
- "@types/babel__generator": "*",
- "@types/babel__template": "*",
- "@types/babel__traverse": "*"
- }
- },
- "node_modules/@types/babel__generator": {
- "version": "7.27.0",
- "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
- "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.0.0"
- }
- },
- "node_modules/@types/babel__template": {
- "version": "7.4.4",
- "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
- "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/parser": "^7.1.0",
- "@babel/types": "^7.0.0"
- }
- },
- "node_modules/@types/babel__traverse": {
- "version": "7.20.7",
- "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.7.tgz",
- "integrity": "sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.20.7"
- }
- },
- "node_modules/@types/estree": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz",
- "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/acorn": {
- "version": "8.16.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz",
- "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
- "license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/babel-plugin-jsx-dom-expressions": {
- "version": "0.39.8",
- "resolved": "https://registry.npmjs.org/babel-plugin-jsx-dom-expressions/-/babel-plugin-jsx-dom-expressions-0.39.8.tgz",
- "integrity": "sha512-/MVOIIjonylDXnrWmG23ZX82m9mtKATsVHB7zYlPfDR9Vdd/NBE48if+wv27bSkBtyO7EPMUlcUc4J63QwuACQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-module-imports": "7.18.6",
- "@babel/plugin-syntax-jsx": "^7.18.6",
- "@babel/types": "^7.20.7",
- "html-entities": "2.3.3",
- "parse5": "^7.1.2",
- "validate-html-nesting": "^1.2.1"
- },
- "peerDependencies": {
- "@babel/core": "^7.20.12"
- }
- },
- "node_modules/babel-plugin-jsx-dom-expressions/node_modules/@babel/helper-module-imports": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz",
- "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.18.6"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/babel-preset-solid": {
- "version": "1.9.6",
- "resolved": "https://registry.npmjs.org/babel-preset-solid/-/babel-preset-solid-1.9.6.tgz",
- "integrity": "sha512-HXTK9f93QxoH8dYn1M2mJdOlWgMsR88Lg/ul6QCZGkNTktjTE5HAf93YxQumHoCudLEtZrU1cFCMFOVho6GqFg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "babel-plugin-jsx-dom-expressions": "^0.39.8"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/boolbase": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
- "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==",
- "license": "ISC"
- },
- "node_modules/browserslist": {
- "version": "4.24.5",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.5.tgz",
- "integrity": "sha512-FDToo4Wo82hIdgc1CQ+NQD0hEhmpPjrZ3hiUgwgOG6IuTdlpr8jdjyG24P6cNP1yJpTLzS5OcGgSw0xmDU1/Tw==",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "caniuse-lite": "^1.0.30001716",
- "electron-to-chromium": "^1.5.149",
- "node-releases": "^2.0.19",
- "update-browserslist-db": "^1.1.3"
- },
- "bin": {
- "browserslist": "cli.js"
- },
- "engines": {
- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
- }
- },
- "node_modules/caniuse-lite": {
- "version": "1.0.30001718",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001718.tgz",
- "integrity": "sha512-AflseV1ahcSunK53NfEs9gFWgOEmzr0f+kaMFA4xiLZlr9Hzt7HxcSpIFcnNCUkz6R6dWKa54rUz3HUmI3nVcw==",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "CC-BY-4.0"
- },
- "node_modules/chownr": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz",
- "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==",
- "dev": true,
- "license": "BlueOak-1.0.0",
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/commander": {
- "version": "11.1.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz",
- "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==",
- "license": "MIT",
- "engines": {
- "node": ">=16"
- }
- },
- "node_modules/confbox": {
- "version": "0.1.8",
- "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.8.tgz",
- "integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==",
- "license": "MIT"
- },
- "node_modules/convert-source-map": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/css-select": {
- "version": "5.2.2",
- "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.2.2.tgz",
- "integrity": "sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==",
- "license": "BSD-2-Clause",
- "dependencies": {
- "boolbase": "^1.0.0",
- "css-what": "^6.1.0",
- "domhandler": "^5.0.2",
- "domutils": "^3.0.1",
- "nth-check": "^2.0.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/fb55"
- }
- },
- "node_modules/css-tree": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.2.1.tgz",
- "integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==",
- "license": "MIT",
- "dependencies": {
- "mdn-data": "2.27.1",
- "source-map-js": "^1.2.1"
- },
- "engines": {
- "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
- }
- },
- "node_modules/css-what": {
- "version": "6.2.2",
- "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz",
- "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==",
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">= 6"
- },
- "funding": {
- "url": "https://github.com/sponsors/fb55"
- }
- },
- "node_modules/csso": {
- "version": "5.0.5",
- "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz",
- "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==",
- "license": "MIT",
- "dependencies": {
- "css-tree": "~2.2.0"
- },
- "engines": {
- "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0",
- "npm": ">=7.0.0"
- }
- },
- "node_modules/csso/node_modules/css-tree": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz",
- "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==",
- "license": "MIT",
- "dependencies": {
- "mdn-data": "2.0.28",
- "source-map-js": "^1.0.1"
- },
- "engines": {
- "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0",
- "npm": ">=7.0.0"
- }
- },
- "node_modules/csso/node_modules/mdn-data": {
- "version": "2.0.28",
- "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz",
- "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==",
- "license": "CC0-1.0"
- },
- "node_modules/csstype": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
- "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/debug": {
- "version": "4.4.1",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz",
- "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ms": "^2.1.3"
- },
- "engines": {
- "node": ">=6.0"
- },
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
- }
- },
- "node_modules/detect-libc": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz",
- "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/dom-serializer": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz",
- "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
- "license": "MIT",
- "dependencies": {
- "domelementtype": "^2.3.0",
- "domhandler": "^5.0.2",
- "entities": "^4.2.0"
- },
- "funding": {
- "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
- }
- },
- "node_modules/dom-serializer/node_modules/entities": {
- "version": "4.5.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
- "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=0.12"
- },
- "funding": {
- "url": "https://github.com/fb55/entities?sponsor=1"
- }
- },
- "node_modules/domelementtype": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
- "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/fb55"
- }
- ],
- "license": "BSD-2-Clause"
- },
- "node_modules/domhandler": {
- "version": "5.0.3",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz",
- "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
- "license": "BSD-2-Clause",
- "dependencies": {
- "domelementtype": "^2.3.0"
- },
- "engines": {
- "node": ">= 4"
- },
- "funding": {
- "url": "https://github.com/fb55/domhandler?sponsor=1"
- }
- },
- "node_modules/domutils": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz",
- "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==",
- "license": "BSD-2-Clause",
- "dependencies": {
- "dom-serializer": "^2.0.0",
- "domelementtype": "^2.3.0",
- "domhandler": "^5.0.3"
- },
- "funding": {
- "url": "https://github.com/fb55/domutils?sponsor=1"
- }
- },
- "node_modules/electron-to-chromium": {
- "version": "1.5.155",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.155.tgz",
- "integrity": "sha512-ps5KcGGmwL8VaeJlvlDlu4fORQpv3+GIcF5I3f9tUKUlJ/wsysh6HU8P5L1XWRYeXfA0oJd4PyM8ds8zTFf6Ng==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/enhanced-resolve": {
- "version": "5.18.1",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz",
- "integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.2.4",
- "tapable": "^2.2.0"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/entities": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.0.tgz",
- "integrity": "sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=0.12"
- },
- "funding": {
- "url": "https://github.com/fb55/entities?sponsor=1"
- }
- },
- "node_modules/esbuild": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz",
- "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==",
- "dev": true,
- "hasInstallScript": true,
- "license": "MIT",
- "bin": {
- "esbuild": "bin/esbuild"
- },
- "engines": {
- "node": ">=12"
- },
- "optionalDependencies": {
- "@esbuild/aix-ppc64": "0.21.5",
- "@esbuild/android-arm": "0.21.5",
- "@esbuild/android-arm64": "0.21.5",
- "@esbuild/android-x64": "0.21.5",
- "@esbuild/darwin-arm64": "0.21.5",
- "@esbuild/darwin-x64": "0.21.5",
- "@esbuild/freebsd-arm64": "0.21.5",
- "@esbuild/freebsd-x64": "0.21.5",
- "@esbuild/linux-arm": "0.21.5",
- "@esbuild/linux-arm64": "0.21.5",
- "@esbuild/linux-ia32": "0.21.5",
- "@esbuild/linux-loong64": "0.21.5",
- "@esbuild/linux-mips64el": "0.21.5",
- "@esbuild/linux-ppc64": "0.21.5",
- "@esbuild/linux-riscv64": "0.21.5",
- "@esbuild/linux-s390x": "0.21.5",
- "@esbuild/linux-x64": "0.21.5",
- "@esbuild/netbsd-x64": "0.21.5",
- "@esbuild/openbsd-x64": "0.21.5",
- "@esbuild/sunos-x64": "0.21.5",
- "@esbuild/win32-arm64": "0.21.5",
- "@esbuild/win32-ia32": "0.21.5",
- "@esbuild/win32-x64": "0.21.5"
- }
- },
- "node_modules/escalade": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
- "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/fflate": {
- "version": "0.8.2",
- "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.8.2.tgz",
- "integrity": "sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==",
- "license": "MIT"
- },
- "node_modules/framesync": {
- "version": "6.1.2",
- "resolved": "https://registry.npmjs.org/framesync/-/framesync-6.1.2.tgz",
- "integrity": "sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==",
- "license": "MIT",
- "dependencies": {
- "tslib": "2.4.0"
- }
- },
- "node_modules/fsevents": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
- "dev": true,
- "hasInstallScript": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
- }
- },
- "node_modules/gensync": {
- "version": "1.0.0-beta.2",
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/globals": {
- "version": "11.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/globrex": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz",
- "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/graceful-fs": {
- "version": "4.2.11",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
- "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/hey-listen": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/hey-listen/-/hey-listen-1.0.8.tgz",
- "integrity": "sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==",
- "license": "MIT"
- },
- "node_modules/html-entities": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz",
- "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/is-what": {
- "version": "4.1.16",
- "resolved": "https://registry.npmjs.org/is-what/-/is-what-4.1.16.tgz",
- "integrity": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12.13"
- },
- "funding": {
- "url": "https://github.com/sponsors/mesqueeb"
- }
- },
- "node_modules/jiti": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz",
- "integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==",
- "dev": true,
- "license": "MIT",
- "bin": {
- "jiti": "lib/jiti-cli.mjs"
- }
- },
- "node_modules/js-tokens": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/jsesc": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
- "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
- "dev": true,
- "license": "MIT",
- "bin": {
- "jsesc": "bin/jsesc"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/json5": {
- "version": "2.2.3",
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
- "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
- "dev": true,
- "license": "MIT",
- "bin": {
- "json5": "lib/cli.js"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/lightningcss": {
- "version": "1.30.1",
- "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.1.tgz",
- "integrity": "sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==",
- "dev": true,
- "license": "MPL-2.0",
- "dependencies": {
- "detect-libc": "^2.0.3"
- },
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- },
- "optionalDependencies": {
- "lightningcss-darwin-arm64": "1.30.1",
- "lightningcss-darwin-x64": "1.30.1",
- "lightningcss-freebsd-x64": "1.30.1",
- "lightningcss-linux-arm-gnueabihf": "1.30.1",
- "lightningcss-linux-arm64-gnu": "1.30.1",
- "lightningcss-linux-arm64-musl": "1.30.1",
- "lightningcss-linux-x64-gnu": "1.30.1",
- "lightningcss-linux-x64-musl": "1.30.1",
- "lightningcss-win32-arm64-msvc": "1.30.1",
- "lightningcss-win32-x64-msvc": "1.30.1"
- }
- },
- "node_modules/lightningcss-darwin-arm64": {
- "version": "1.30.1",
- "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.1.tgz",
- "integrity": "sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-darwin-x64": {
- "version": "1.30.1",
- "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.1.tgz",
- "integrity": "sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-freebsd-x64": {
- "version": "1.30.1",
- "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.1.tgz",
- "integrity": "sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-arm-gnueabihf": {
- "version": "1.30.1",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.1.tgz",
- "integrity": "sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==",
- "cpu": [
- "arm"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-arm64-gnu": {
- "version": "1.30.1",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.1.tgz",
- "integrity": "sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-arm64-musl": {
- "version": "1.30.1",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.1.tgz",
- "integrity": "sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-x64-gnu": {
- "version": "1.30.1",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.1.tgz",
- "integrity": "sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-x64-musl": {
- "version": "1.30.1",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.1.tgz",
- "integrity": "sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-win32-arm64-msvc": {
- "version": "1.30.1",
- "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.1.tgz",
- "integrity": "sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-win32-x64-msvc": {
- "version": "1.30.1",
- "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.1.tgz",
- "integrity": "sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lru-cache": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
- "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "yallist": "^3.0.2"
- }
- },
- "node_modules/lru-cache/node_modules/yallist": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
- "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/magic-string": {
- "version": "0.30.17",
- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz",
- "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@jridgewell/sourcemap-codec": "^1.5.0"
- }
- },
- "node_modules/mdn-data": {
- "version": "2.27.1",
- "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.27.1.tgz",
- "integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==",
- "license": "CC0-1.0"
- },
- "node_modules/merge-anything": {
- "version": "5.1.7",
- "resolved": "https://registry.npmjs.org/merge-anything/-/merge-anything-5.1.7.tgz",
- "integrity": "sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-what": "^4.1.8"
- },
- "engines": {
- "node": ">=12.13"
- },
- "funding": {
- "url": "https://github.com/sponsors/mesqueeb"
- }
- },
- "node_modules/minipass": {
- "version": "7.1.2",
- "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
- "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": ">=16 || 14 >=14.17"
- }
- },
- "node_modules/minizlib": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.0.2.tgz",
- "integrity": "sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "minipass": "^7.1.2"
- },
- "engines": {
- "node": ">= 18"
- }
- },
- "node_modules/mkdirp": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz",
- "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==",
- "dev": true,
- "license": "MIT",
- "bin": {
- "mkdirp": "dist/cjs/src/bin.js"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/mlly": {
- "version": "1.8.2",
- "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.8.2.tgz",
- "integrity": "sha512-d+ObxMQFmbt10sretNDytwt85VrbkhhUA/JBGm1MPaWJ65Cl4wOgLaB1NYvJSZ0Ef03MMEU/0xpPMXUIQ29UfA==",
- "license": "MIT",
- "dependencies": {
- "acorn": "^8.16.0",
- "pathe": "^2.0.3",
- "pkg-types": "^1.3.1",
- "ufo": "^1.6.3"
- }
- },
- "node_modules/modern-tar": {
- "version": "0.7.6",
- "resolved": "https://registry.npmjs.org/modern-tar/-/modern-tar-0.7.6.tgz",
- "integrity": "sha512-sweCIVXzx1aIGTCdzcMlSZt1h8k5Tmk08VNAuRk3IU28XamGiOH5ypi11g6De2CH7PhYqSSnGy2A/EFhbWnVKg==",
- "license": "MIT",
- "engines": {
- "node": ">=18.0.0"
- }
- },
- "node_modules/ms": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/nanoid": {
- "version": "3.3.11",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
- "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "bin": {
- "nanoid": "bin/nanoid.cjs"
- },
- "engines": {
- "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
- }
- },
- "node_modules/node-releases": {
- "version": "2.0.19",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
- "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/nth-check": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
- "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
- "license": "BSD-2-Clause",
- "dependencies": {
- "boolbase": "^1.0.0"
- },
- "funding": {
- "url": "https://github.com/fb55/nth-check?sponsor=1"
- }
- },
- "node_modules/package-manager-detector": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.6.0.tgz",
- "integrity": "sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==",
- "license": "MIT"
- },
- "node_modules/parse5": {
- "version": "7.3.0",
- "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz",
- "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "entities": "^6.0.0"
- },
- "funding": {
- "url": "https://github.com/inikulin/parse5?sponsor=1"
- }
- },
- "node_modules/pathe": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
- "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
- "license": "MIT"
- },
- "node_modules/picocolors": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
- "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
- "license": "ISC"
- },
- "node_modules/pkg-types": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.3.1.tgz",
- "integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==",
- "license": "MIT",
- "dependencies": {
- "confbox": "^0.1.8",
- "mlly": "^1.7.4",
- "pathe": "^2.0.1"
- }
- },
- "node_modules/popmotion": {
- "version": "11.0.5",
- "resolved": "https://registry.npmjs.org/popmotion/-/popmotion-11.0.5.tgz",
- "integrity": "sha512-la8gPM1WYeFznb/JqF4GiTkRRPZsfaj2+kCxqQgr2MJylMmIKUwBfWW8Wa5fml/8gmtlD5yI01MP1QCZPWmppA==",
- "license": "MIT",
- "dependencies": {
- "framesync": "6.1.2",
- "hey-listen": "^1.0.8",
- "style-value-types": "5.1.2",
- "tslib": "2.4.0"
- }
- },
- "node_modules/postcss": {
- "version": "8.5.3",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz",
- "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/postcss"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "nanoid": "^3.3.8",
- "picocolors": "^1.1.1",
- "source-map-js": "^1.2.1"
- },
- "engines": {
- "node": "^10 || ^12 || >=14"
- }
- },
- "node_modules/rollup": {
- "version": "4.40.2",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.40.2.tgz",
- "integrity": "sha512-tfUOg6DTP4rhQ3VjOO6B4wyrJnGOX85requAXvqYTHsOgb2TFJdZ3aWpT8W2kPoypSGP7dZUyzxJ9ee4buM5Fg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/estree": "1.0.7"
- },
- "bin": {
- "rollup": "dist/bin/rollup"
- },
- "engines": {
- "node": ">=18.0.0",
- "npm": ">=8.0.0"
- },
- "optionalDependencies": {
- "@rollup/rollup-android-arm-eabi": "4.40.2",
- "@rollup/rollup-android-arm64": "4.40.2",
- "@rollup/rollup-darwin-arm64": "4.40.2",
- "@rollup/rollup-darwin-x64": "4.40.2",
- "@rollup/rollup-freebsd-arm64": "4.40.2",
- "@rollup/rollup-freebsd-x64": "4.40.2",
- "@rollup/rollup-linux-arm-gnueabihf": "4.40.2",
- "@rollup/rollup-linux-arm-musleabihf": "4.40.2",
- "@rollup/rollup-linux-arm64-gnu": "4.40.2",
- "@rollup/rollup-linux-arm64-musl": "4.40.2",
- "@rollup/rollup-linux-loongarch64-gnu": "4.40.2",
- "@rollup/rollup-linux-powerpc64le-gnu": "4.40.2",
- "@rollup/rollup-linux-riscv64-gnu": "4.40.2",
- "@rollup/rollup-linux-riscv64-musl": "4.40.2",
- "@rollup/rollup-linux-s390x-gnu": "4.40.2",
- "@rollup/rollup-linux-x64-gnu": "4.40.2",
- "@rollup/rollup-linux-x64-musl": "4.40.2",
- "@rollup/rollup-win32-arm64-msvc": "4.40.2",
- "@rollup/rollup-win32-ia32-msvc": "4.40.2",
- "@rollup/rollup-win32-x64-msvc": "4.40.2",
- "fsevents": "~2.3.2"
- }
- },
- "node_modules/sax": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/sax/-/sax-1.6.0.tgz",
- "integrity": "sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==",
- "license": "BlueOak-1.0.0",
- "engines": {
- "node": ">=11.0.0"
- }
- },
- "node_modules/semver": {
- "version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/seroval": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/seroval/-/seroval-1.3.1.tgz",
- "integrity": "sha512-F+T9EQPdLzgdewgxnBh4mSc+vde+EOkU6dC9BDuu/bfGb+UyUlqM6t8znFCTPQSuai/ZcfFg0gu79h+bVW2O0w==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/seroval-plugins": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/seroval-plugins/-/seroval-plugins-1.3.1.tgz",
- "integrity": "sha512-dOlUoiI3fgZbQIcj6By+l865pzeWdP3XCSLdI3xlKnjCk5983yLWPsXytFOUI0BUZKG9qwqbj78n9yVcVwUqaQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "seroval": "^1.0"
- }
- },
- "node_modules/solid-js": {
- "version": "1.9.6",
- "resolved": "https://registry.npmjs.org/solid-js/-/solid-js-1.9.6.tgz",
- "integrity": "sha512-PoasAJvLk60hRtOTe9ulvALOdLjjqxuxcGZRolBQqxOnXrBXHGzqMT4ijNhGsDAYdOgEa8ZYaAE94PSldrFSkA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "csstype": "^3.1.0",
- "seroval": "^1.1.0",
- "seroval-plugins": "^1.1.0"
- }
- },
- "node_modules/solid-refresh": {
- "version": "0.6.3",
- "resolved": "https://registry.npmjs.org/solid-refresh/-/solid-refresh-0.6.3.tgz",
- "integrity": "sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/generator": "^7.23.6",
- "@babel/helper-module-imports": "^7.22.15",
- "@babel/types": "^7.23.6"
- },
- "peerDependencies": {
- "solid-js": "^1.3"
- }
- },
- "node_modules/source-map-js": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
- "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/style-value-types": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/style-value-types/-/style-value-types-5.1.2.tgz",
- "integrity": "sha512-Vs9fNreYF9j6W2VvuDTP7kepALi7sk0xtk2Tu8Yxi9UoajJdEVpNpCov0HsLTqXvNGKX+Uv09pkozVITi1jf3Q==",
- "license": "MIT",
- "dependencies": {
- "hey-listen": "^1.0.8",
- "tslib": "2.4.0"
- }
- },
- "node_modules/svgo": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/svgo/-/svgo-4.0.1.tgz",
- "integrity": "sha512-XDpWUOPC6FEibaLzjfe0ucaV0YrOjYotGJO1WpF0Zd+n6ZGEQUsSugaoLq9QkEZtAfQIxT42UChcssDVPP3+/w==",
- "license": "MIT",
- "dependencies": {
- "commander": "^11.1.0",
- "css-select": "^5.1.0",
- "css-tree": "^3.0.1",
- "css-what": "^6.1.0",
- "csso": "^5.0.5",
- "picocolors": "^1.1.1",
- "sax": "^1.5.0"
- },
- "bin": {
- "svgo": "bin/svgo.js"
- },
- "engines": {
- "node": ">=16"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/svgo"
- }
- },
- "node_modules/tailwindcss": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.7.tgz",
- "integrity": "sha512-kr1o/ErIdNhTz8uzAYL7TpaUuzKIE6QPQ4qmSdxnoX/lo+5wmUHQA6h3L5yIqEImSRnAAURDirLu/BgiXGPAhg==",
- "license": "MIT"
- },
- "node_modules/tapable": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
- "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/tar": {
- "version": "7.4.3",
- "resolved": "https://registry.npmjs.org/tar/-/tar-7.4.3.tgz",
- "integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "@isaacs/fs-minipass": "^4.0.0",
- "chownr": "^3.0.0",
- "minipass": "^7.1.2",
- "minizlib": "^3.0.1",
- "mkdirp": "^3.0.1",
- "yallist": "^5.0.0"
- },
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/tinyexec": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.0.4.tgz",
- "integrity": "sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/tsconfck": {
- "version": "3.1.5",
- "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.5.tgz",
- "integrity": "sha512-CLDfGgUp7XPswWnezWwsCRxNmgQjhYq3VXHM0/XIRxhVrKw0M1if9agzryh1QS3nxjCROvV+xWxoJO1YctzzWg==",
- "dev": true,
- "license": "MIT",
- "bin": {
- "tsconfck": "bin/tsconfck.js"
- },
- "engines": {
- "node": "^18 || >=20"
- },
- "peerDependencies": {
- "typescript": "^5.0.0"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/tslib": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz",
- "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==",
- "license": "0BSD"
- },
- "node_modules/typescript": {
- "version": "5.8.3",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz",
- "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
- "dev": true,
- "license": "Apache-2.0",
- "bin": {
- "tsc": "bin/tsc",
- "tsserver": "bin/tsserver"
- },
- "engines": {
- "node": ">=14.17"
- }
- },
- "node_modules/ufo": {
- "version": "1.6.3",
- "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.6.3.tgz",
- "integrity": "sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==",
- "license": "MIT"
- },
- "node_modules/update-browserslist-db": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz",
- "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "escalade": "^3.2.0",
- "picocolors": "^1.1.1"
- },
- "bin": {
- "update-browserslist-db": "cli.js"
- },
- "peerDependencies": {
- "browserslist": ">= 4.21.0"
- }
- },
- "node_modules/validate-html-nesting": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/validate-html-nesting/-/validate-html-nesting-1.2.2.tgz",
- "integrity": "sha512-hGdgQozCsQJMyfK5urgFcWEqsSSrK63Awe0t/IMR0bZ0QMtnuaiHzThW81guu3qx9abLi99NEuiaN6P9gVYsNg==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/vite": {
- "version": "5.4.19",
- "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.19.tgz",
- "integrity": "sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "esbuild": "^0.21.3",
- "postcss": "^8.4.43",
- "rollup": "^4.20.0"
- },
- "bin": {
- "vite": "bin/vite.js"
- },
- "engines": {
- "node": "^18.0.0 || >=20.0.0"
- },
- "funding": {
- "url": "https://github.com/vitejs/vite?sponsor=1"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.3"
- },
- "peerDependencies": {
- "@types/node": "^18.0.0 || >=20.0.0",
- "less": "*",
- "lightningcss": "^1.21.0",
- "sass": "*",
- "sass-embedded": "*",
- "stylus": "*",
- "sugarss": "*",
- "terser": "^5.4.0"
- },
- "peerDependenciesMeta": {
- "@types/node": {
- "optional": true
- },
- "less": {
- "optional": true
- },
- "lightningcss": {
- "optional": true
- },
- "sass": {
- "optional": true
- },
- "sass-embedded": {
- "optional": true
- },
- "stylus": {
- "optional": true
- },
- "sugarss": {
- "optional": true
- },
- "terser": {
- "optional": true
- }
- }
- },
- "node_modules/vite-plugin-solid": {
- "version": "2.11.6",
- "resolved": "https://registry.npmjs.org/vite-plugin-solid/-/vite-plugin-solid-2.11.6.tgz",
- "integrity": "sha512-Sl5CTqJTGyEeOsmdH6BOgalIZlwH3t4/y0RQuFLMGnvWMBvxb4+lq7x3BSiAw6etf0QexfNJW7HSOO/Qf7pigg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/core": "^7.23.3",
- "@types/babel__core": "^7.20.4",
- "babel-preset-solid": "^1.8.4",
- "merge-anything": "^5.1.7",
- "solid-refresh": "^0.6.3",
- "vitefu": "^1.0.4"
- },
- "peerDependencies": {
- "@testing-library/jest-dom": "^5.16.6 || ^5.17.0 || ^6.*",
- "solid-js": "^1.7.2",
- "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
- },
- "peerDependenciesMeta": {
- "@testing-library/jest-dom": {
- "optional": true
- }
- }
- },
- "node_modules/vite-tsconfig-paths": {
- "version": "4.3.2",
- "resolved": "https://registry.npmjs.org/vite-tsconfig-paths/-/vite-tsconfig-paths-4.3.2.tgz",
- "integrity": "sha512-0Vd/a6po6Q+86rPlntHye7F31zA2URZMbH8M3saAZ/xR9QoGN/L21bxEGfXdWmFdNkqPpRdxFT7nmNe12e9/uA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "debug": "^4.1.1",
- "globrex": "^0.1.2",
- "tsconfck": "^3.0.3"
- },
- "peerDependencies": {
- "vite": "*"
- },
- "peerDependenciesMeta": {
- "vite": {
- "optional": true
- }
- }
- },
- "node_modules/vitefu": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.0.6.tgz",
- "integrity": "sha512-+Rex1GlappUyNN6UfwbVZne/9cYC4+R2XDk9xkNXBKMw6HQagdX9PgZ8V2v1WUSK1wfBLp7qbI1+XSNIlB1xmA==",
- "dev": true,
- "license": "MIT",
- "workspaces": [
- "tests/deps/*",
- "tests/projects/*"
- ],
- "peerDependencies": {
- "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
- },
- "peerDependenciesMeta": {
- "vite": {
- "optional": true
- }
- }
- },
- "node_modules/yallist": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz",
- "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==",
- "dev": true,
- "license": "BlueOak-1.0.0",
- "engines": {
- "node": ">=18"
- }
- }
- }
-}
diff --git a/playground/package.json b/playground/package.json
deleted file mode 100644
index e5ff8845..00000000
--- a/playground/package.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "name": "playground",
- "private": true,
- "version": "0.0.0",
- "type": "module",
- "scripts": {
- "dev": "vite",
- "build": "vite build",
- "preview": "vite preview"
- },
- "devDependencies": {
- "@iconify/json": "^2.2.342",
- "@tailwindcss/vite": "^4.0.0",
- "solid-js": "^1.8.15",
- "typescript": "^5.2.2",
- "vite": "^5.0.0",
- "vite-plugin-solid": "^2.9.1",
- "vite-tsconfig-paths": "^4.3.1"
- },
- "dependencies": {
- "@iconify/tailwind4": "^1.0.6",
- "@standard-schema/spec": "^1.1.0",
- "@tanstack/solid-form": "^1.29.0",
- "popmotion": "^11.0.5",
- "zod": "^4.3.6"
- }
-}
diff --git a/playground/src/App.tsx b/playground/src/App.tsx
deleted file mode 100644
index 92c5c395..00000000
--- a/playground/src/App.tsx
+++ /dev/null
@@ -1,7271 +0,0 @@
-import {
- Accordion,
- Alert,
- AuthCard,
- AuthErrorMessage,
- AuthFieldGroup,
- AuthFooterLinks,
- AuthForm,
- AuthPoweredBy,
- AuthSubmitButton,
- AuthSuccessMessage,
- Avatar,
- Badge,
- Breadcrumbs,
- Button,
- ButtonGroup,
- Calendar,
- Card,
- ChatBubble,
- Checkbox,
- CheckboxGroup,
- Chip,
- CloseButton,
- ColorArea,
- ColorField,
- ColorPicker,
- ColorSlider,
- ColorSwatch,
- ColorSwatchPicker,
- ComboBox,
- DateField,
- DatePicker,
- DateRangePicker,
- type DateRangeValue,
- Description,
- Disclosure,
- DisclosureGroup,
- Drawer,
- Dropdown,
- EmptyState,
- ErrorMessage,
- FieldError,
- Fieldset,
- Flex,
- FloatingDock,
- Footer,
- Form,
- FormField,
- FormSubmitButton,
- GlassPanel,
- GlowCard,
- MetalBorder,
- Grid,
- Header,
- Icon,
- Input,
- InputGroup,
- InputOTP,
- Kbd,
- Label,
- LanguageSwitcher,
- Link,
- ListBox,
- LiveChatBubble,
- Menu,
- Meter,
- Modal,
- Navbar,
- NoiseBackground,
- NumberField,
- Pagination,
- PasswordField,
- PasswordRequirements,
- Popover,
- ProgressBar,
- ProgressCircle,
- REGEXP_ONLY_DIGITS,
- Radio,
- RadioGroup,
- RangeCalendar,
- ScrollShadow,
- SearchField,
- Select,
- Separator,
- Skeleton,
- Slider,
- Spinner,
- Surface,
- Table,
- TableExpandToggle,
- TableInlineConfirm,
- TableMobileListView,
- TableSortIcon,
- TableVirtualSpacerRow,
- Tabs,
- Tag,
- TagGroup,
- Text,
- TextArea,
- TextField,
- ThemeColorPicker,
- TimeField,
- Toast,
- Toggle,
- Toolbar,
- Tooltip,
- createForm,
- createI18n,
- evaluatePasswordRules,
- matchPasswordConfirmation,
- toast,
- useDisclosureGroupNavigation,
-} from "@pathscale/ui";
-import { For, createEffect, createSignal } from "solid-js";
-import { z } from "zod";
-import glassDemoBackground from "./assets/glass-demo-background.svg";
-import { FormExample } from "./examples/FormExample";
-import { MotionExamples } from "./examples/MotionExamples";
-import { StreamingComposableExample } from "./examples/StreamingComposableExample";
-import { TableExamples } from "./examples/TableExamples";
-import { TableHooksExample } from "./examples/TableHooksExample";
-import { TableVirtualizedExample } from "./examples/TableVirtualizedExample";
-
-const BADGE_COLORS = [
- "default",
- "accent",
- "success",
- "warning",
- "danger",
-] as const;
-
-const BADGE_VARIANTS = ["primary", "secondary", "soft"] as const;
-const BADGE_SIZES = ["sm", "md", "lg"] as const;
-const BADGE_PLACEMENTS = [
- "top-right",
- "top-left",
- "bottom-right",
- "bottom-left",
-] as const;
-const CHIP_VARIANTS = ["solid", "flat", "bordered"] as const;
-const CHIP_SIZES = ["sm", "md", "lg"] as const;
-const CHIP_COLORS = [
- "default",
- "primary",
- "accent",
- "success",
- "warning",
- "danger",
-] as const;
-const CARD_VARIANTS = ["default", "flat", "bordered", "shadow"] as const;
-const SURFACE_VARIANTS = [
- "default",
- "secondary",
- "tertiary",
- "transparent",
-] as const;
-const SEPARATOR_VARIANTS = ["default", "secondary", "tertiary"] as const;
-const TEXT_SIZES = ["xs", "sm", "base", "lg", "xl"] as const;
-const TEXT_VARIANTS = [
- "default",
- "muted",
- "success",
- "warning",
- "danger",
-] as const;
-
-const TAB_ITEMS = [
- { key: "overview", label: "Overview", content: "Overview content" },
- { key: "activity", label: "Activity", content: "Recent activity" },
- { key: "settings", label: "Settings", content: "Settings content" },
- {
- key: "disabled",
- label: "Disabled",
- content: "Disabled content",
- disabled: true,
- },
-] as const;
-
-const VERTICAL_TAB_ITEMS = [
- { key: "details", label: "Details", content: "Details panel" },
- { key: "members", label: "Members", content: "Members panel" },
- { key: "billing", label: "Billing", content: "Billing panel" },
-] as const;
-
-const DROPDOWN_ITEMS = [
- { key: "profile", label: "Profile" },
- { key: "billing", label: "Billing" },
- { key: "team", label: "Team settings" },
- { key: "disabled", label: "Disabled option", disabled: true },
-] as const;
-
-const BUTTON_VARIANTS = [
- "primary",
- "secondary",
- "tertiary",
- "outline",
- "ghost",
- "danger",
- "danger-soft",
-] as const;
-
-const BUTTON_SIZES = ["sm", "md", "lg"] as const;
-const INPUT_SIZES = ["sm", "md", "lg"] as const;
-const METAL_BORDER_PRESETS = ["silver", "gold", "chromatic"] as const;
-const METAL_BORDER_KINDS = ["pill", "circle"] as const;
-const TOGGLE_COLORS = [
- "default",
- "accent",
- "success",
- "warning",
- "danger",
-] as const;
-const TOGGLE_SIZES = ["sm", "md", "lg"] as const;
-const TOOLTIP_PLACEMENTS = ["top", "bottom", "left", "right"] as const;
-const POPOVER_PLACEMENTS = ["top", "bottom", "left", "right"] as const;
-const ALERT_STATUSES = [
- "default",
- "accent",
- "success",
- "warning",
- "danger",
-] as const;
-const SCROLL_SHADOW_HORIZONTAL_ITEMS = Array.from(
- { length: 10 },
- (_, index) => `Scrollable card ${index + 1}`,
-);
-
-const DISCLOSURE_ITEMS = [
- {
- id: "first",
- title: "First section",
- content: "Details for the first disclosure.",
- },
- {
- id: "second",
- title: "Second section",
- content: "More details for the second disclosure.",
- },
- {
- id: "third",
- title: "Third section",
- content: "Extra details for the third disclosure.",
- },
-] as const;
-
-const LISTBOX_USERS = [
- { id: "bob", name: "Bob", email: "bob@heroui.com" },
- { id: "fred", name: "Fred", email: "fred@heroui.com" },
- { id: "martha", name: "Martha", email: "martha@heroui.com" },
-] as const;
-
-const LISTBOX_TOPICS = [
- { id: "design", label: "Design" },
- { id: "docs", label: "Documentation" },
- { id: "api", label: "API" },
- { id: "research", label: "Research" },
-] as const;
-
-const LISTBOX_LONG_ITEMS = Array.from({ length: 20 }, (_, index) => ({
- id: `item-${index + 1}`,
- label: `List item ${index + 1}`,
-}));
-
-const COMBO_BOX_ANIMALS = [
- { id: "aardvark", label: "Aardvark" },
- { id: "cat", label: "Cat" },
- { id: "dog", label: "Dog" },
- { id: "kangaroo", label: "Kangaroo" },
- { id: "panda", label: "Panda" },
- { id: "snake", label: "Snake", disabled: true },
-] as const;
-
-const COMBO_BOX_LONG_ITEMS = Array.from({ length: 40 }, (_, index) => ({
- id: `city-${index + 1}`,
- label: `City ${index + 1}`,
-}));
-
-const FILTER_STATUS_OPTIONS = [
- { value: "", label: "All statuses" },
- { value: "enabled", label: "Enabled" },
- { value: "disabled", label: "Disabled" },
- { value: "archived", label: "Archived" },
-] as const;
-
-const FORM_VALIDATION_SCHEMA = z.object({
- demoName: z.string().min(1, "Name is required."),
- demoEmail: z
- .string()
- .min(1, "Email is required.")
- .email("Provide a valid email."),
- demoPassword: z.string().min(8, "Password must be at least 8 characters."),
- demoQuery: z.string().min(2, "Search query must be at least 2 characters."),
- demoSeats: z.number().min(1, "Seats must be at least 1."),
- demoDate: z.string().min(1, "Launch date is required."),
-});
-
-const FORM_CONTROLLED_SCHEMA = z.object({
- controlledEmail: z.string().email("Provide a valid controlled email."),
-});
-
-const searchIcon = () => (
-
-);
-const closeIcon = () => (
-
-);
-const chevronDownIcon = () => (
-
-);
-const checkIcon = () => (
-
-);
-const LANGUAGE_SWITCHER_DEMO_TRANSLATIONS = {
- en: {
- greeting: "Hello from Pathscale UI",
- helper:
- "Use the language switcher to test locale state and menu interactions.",
- },
- es: {
- greeting: "Hola desde Pathscale UI",
- helper:
- "Usa el selector de idioma para probar el estado de locale y el menu.",
- },
- pt: {
- greeting: "Ola do Pathscale UI",
- helper: "Use o seletor de idioma para testar o estado de locale e o menu.",
- },
-} as const;
-
-export default function App() {
- const [selectedFramework, setSelectedFramework] = createSignal("solid");
- const [checkedTerms, setCheckedTerms] = createSignal(false);
- const [selectedChannels, setSelectedChannels] = createSignal([
- "email",
- "push",
- ]);
- const [colorAreaValue, setColorAreaValue] = createSignal({
- h: 210,
- s: 75,
- v: 80,
- });
- const [colorFieldValue, setColorFieldValue] = createSignal("#3B82F6");
- const [colorPickerValue, setColorPickerValue] = createSignal("#3B82F6");
- const [themeHue, setThemeHue] = createSignal(null);
- const [themeSaturation, setThemeSaturation] = createSignal(100);
- const [colorSliderHue, setColorSliderHue] = createSignal(220);
- const [colorSliderAlpha, setColorSliderAlpha] = createSignal(0.75);
- const [selectedSwatch, setSelectedSwatch] = createSignal("#3B82F6");
- const [selectedSwatchPicker, setSelectedSwatchPicker] =
- createSignal("#3B82F6");
- const [toggleOn, setToggleOn] = createSignal(false);
- const [tableExpandOpen, setTableExpandOpen] = createSignal(false);
- const [inlineConfirmLoading, setInlineConfirmLoading] = createSignal(false);
- const [sliderVal, setSliderVal] = createSignal(30);
- const [sliderSm, setSliderSm] = createSignal(50);
- const [sliderLg, setSliderLg] = createSignal(70);
- const [basicPage, setBasicPage] = createSignal(1);
- const [largePage, setLargePage] = createSignal(8);
- const [controlledPage, setControlledPage] = createSignal(3);
- const [controlledState, setControlledState] = createSignal(
- "california",
- );
- const [emptyValueStatus, setEmptyValueStatus] = createSignal("");
- const [controlledPopoverOpen, setControlledPopoverOpen] = createSignal(false);
- const [nestedFilterPopoverOpen, setNestedFilterPopoverOpen] =
- createSignal(false);
- const [nestedFilterStatus, setNestedFilterStatus] = createSignal("");
- const [selectedRegions, setSelectedRegions] = createSignal([
- "north-america",
- "europe",
- ]);
- const [showRemovableChip, setShowRemovableChip] = createSignal(true);
- const [cardPressCount, setCardPressCount] = createSignal(0);
- const [selectedTag, setSelectedTag] = createSignal>(
- new Set(["news"]),
- );
- const [selectedTopics, setSelectedTopics] = createSignal>(
- new Set(["design", "docs"]),
- );
- const [removableTags, setRemovableTags] = createSignal([
- "react",
- "solid",
- "svelte",
- "vue",
- ]);
- const [selectedListUser, setSelectedListUser] = createSignal>(
- new Set(["bob"]),
- );
- const [selectedListTopics, setSelectedListTopics] = createSignal>(
- new Set(["design", "api"]),
- );
- const [lastListAction, setLastListAction] = createSignal(null);
- const [selectedMenuMode, setSelectedMenuMode] = createSignal>(
- new Set(["preview"]),
- );
- const [selectedMenuFilters, setSelectedMenuFilters] = createSignal<
- Set
- >(new Set(["all"]));
- const [lastMenuAction, setLastMenuAction] = createSignal(null);
- const [controlledAccordionValue, setControlledAccordionValue] = createSignal<
- string[]
- >(["security"]);
- const [showDemoPassword, setShowDemoPassword] = createSignal(false);
- const [disclosureKeys, setDisclosureKeys] = createSignal>(
- new Set(["first"]),
- );
- const [emailError, setEmailError] =
- createSignal("Email is required.");
- const [usernameError, setUsernameError] = createSignal(
- "Username is required.",
- );
- const [formSummary, setFormSummary] = createSignal("No submission yet.");
- const [selectedComboAnimal, setSelectedComboAnimal] = createSignal<
- string | null
- >("cat");
- const [comboInputValue, setComboInputValue] = createSignal("");
- const [comboIsOpen, setComboIsOpen] = createSignal(false);
- const [otpValue, setOtpValue] = createSignal("");
- const [otpCompletedCode, setOtpCompletedCode] = createSignal("");
- const [authPassword, setAuthPassword] = createSignal("");
- const [authConfirmPassword, setAuthConfirmPassword] = createSignal("");
- const [authPending, setAuthPending] = createSignal(false);
- const [authVisibilityState, setAuthVisibilityState] = createSignal("hidden");
-
- const authRuleResults = () =>
- evaluatePasswordRules(authPassword(), {
- minLength: 8,
- requireUpper: true,
- requireLower: true,
- requireNumber: true,
- requireSpecial: true,
- });
-
- const authPasswordsMatch = () =>
- matchPasswordConfirmation(authPassword(), authConfirmPassword());
- const [modalOpen, setModalOpen] = createSignal(false);
- const [nonDismissableModalOpen, setNonDismissableModalOpen] =
- createSignal(false);
- const [controlledTextFieldValue, setControlledTextFieldValue] =
- createSignal("Pathscale");
- const [controlledTextAreaValue, setControlledTextAreaValue] = createSignal(
- "Building HeroUI parity components in Solid.",
- );
- const [controlledSearchValue, setControlledSearchValue] =
- createSignal("analytics");
- const [controlledNumberValue, setControlledNumberValue] = createSignal<
- number | undefined
- >(3);
- const [controlledDateValue, setControlledDateValue] =
- createSignal("2026-04-11");
- const [controlledCalendarDate, setControlledCalendarDate] = createSignal(
- new Date(2026, 3, 15),
- );
- const [controlledPickerDate, setControlledPickerDate] = createSignal(
- new Date(2026, 3, 16),
- );
- const [controlledRangeValue, setControlledRangeValue] =
- createSignal({
- start: new Date(2026, 3, 16),
- end: new Date(2026, 3, 22),
- });
- const [glassPanelOpen, setGlassPanelOpen] = createSignal(true);
- const [glassBlur, setGlassBlur] = createSignal(50);
- const [glassRefraction, setGlassRefraction] = createSignal(0.08);
- const [glassDepth, setGlassDepth] = createSignal(5);
- const [metalBorderPreset, setMetalBorderPreset] =
- createSignal<(typeof METAL_BORDER_PRESETS)[number]>("silver");
- const [metalBorderStrength, setMetalBorderStrength] = createSignal(90);
- const [metalBorderKind, setMetalBorderKind] =
- createSignal<(typeof METAL_BORDER_KINDS)[number]>("pill");
- const [metalBorderPaused, setMetalBorderPaused] = createSignal(false);
- const [metalBorderGlow, setMetalBorderGlow] = createSignal(false);
- const [metalBorderClicks, setMetalBorderClicks] = createSignal(0);
- const [controlledTimeValue, setControlledTimeValue] = createSignal("13:30");
- const disclosureItemIds = () => DISCLOSURE_ITEMS.map((item) => item.id);
- const disclosureNav = useDisclosureGroupNavigation({
- expandedKeys: disclosureKeys,
- itemIds: disclosureItemIds,
- onExpandedChange: setDisclosureKeys,
- allowsMultipleExpanded: false,
- });
- const languageSwitcherI18n = createI18n({
- languages: [
- { code: "en", name: "English" },
- { code: "es", name: "Espanol" },
- { code: "pt", name: "Portugues" },
- ],
- storageKey: "pathscale_ui_playground_locale",
- defaultLanguage: "en",
- initialTranslations: LANGUAGE_SWITCHER_DEMO_TRANSLATIONS.en,
- loadTranslations: async (locale) =>
- LANGUAGE_SWITCHER_DEMO_TRANSLATIONS[
- locale as keyof typeof LANGUAGE_SWITCHER_DEMO_TRANSLATIONS
- ] ?? LANGUAGE_SWITCHER_DEMO_TRANSLATIONS.en,
- });
-
- const glassSettings = () => ({
- "--glass-blur": `${glassBlur()}px`,
- "--glass-background-opacity": `${glassRefraction() * 12}%`,
- "--glass-border-opacity": "30%",
- "--glass-highlight-opacity": `${glassRefraction() * 80}%`,
- "--glass-bottom-highlight-opacity": `${glassRefraction() * 40}%`,
- "--glass-edge-highlight-opacity": `${glassRefraction() * 100}%`,
- "--glass-saturation": "1.2",
- "--glass-brightness": "1",
- "--glass-inner-glow-alpha": "0.15",
- "--glass-inner-glow-blur": "2px",
- "--glass-inner-glow-spread": "0px",
- "--glass-depth-top-glow-opacity": "8%",
- "--glass-depth-bottom-glow-opacity": "12%",
- "--glass-depth-sheen-opacity": `${glassDepth() * 1.5}%`,
- "--glass-depth-sheen-size": "70%",
- "--glass-depth-surface-opacity": "0%",
- "--glass-border-radius": "20px",
- });
-
- const glassCssSnippet = () =>
- `:root {
- --glass-blur: ${glassBlur()}px;
- --glass-background-opacity: ${glassRefraction() * 12}%;
- --glass-border-opacity: 30%;
- --glass-highlight-opacity: ${glassRefraction() * 80}%;
- --glass-bottom-highlight-opacity: ${glassRefraction() * 40}%;
- --glass-edge-highlight-opacity: ${glassRefraction() * 100}%;
- --glass-saturation: 1.2;
- --glass-brightness: 1;
- --glass-inner-glow-alpha: 0.15;
- --glass-inner-glow-blur: 2px;
- --glass-inner-glow-spread: 0px;
- --glass-depth-top-glow-opacity: 8%;
- --glass-depth-bottom-glow-opacity: 12%;
- --glass-depth-sheen-opacity: ${glassDepth() * 1.5}%;
- --glass-depth-sheen-size: 70%;
- --glass-depth-surface-opacity: 0%;
-}`;
-
- const resetGlassSettings = () => {
- setGlassBlur(50);
- setGlassRefraction(0.08);
- setGlassDepth(5);
- };
-
- createEffect(() => {
- const root = document.documentElement;
- const settings = glassSettings();
-
- for (const [name, value] of Object.entries(settings)) {
- root.style.setProperty(name, value);
- }
- });
-
- const validatedForm = createForm({
- schema: FORM_VALIDATION_SCHEMA,
- defaultValues: {
- demoName: "",
- demoEmail: "",
- demoPassword: "",
- demoQuery: "",
- demoSeats: 5,
- demoDate: "",
- },
- onSubmit: (values) => {
- setFormSummary(
- `Validated submit: ${values.demoName} • ${values.demoEmail} • password:${values.demoPassword.length} chars • query:${values.demoQuery} • seats:${values.demoSeats} • ${values.demoDate}`,
- );
- },
- });
- const controlledForm = createForm({
- schema: FORM_CONTROLLED_SCHEMA,
- defaultValues: {
- controlledEmail: "team@pathscale.com",
- },
- onSubmit: (values) => {
- setFormSummary(`Controlled submit: ${values.controlledEmail}`);
- },
- });
-
- return (
-
-
-
-
Component Playground
-
- Focused migration test surfaces for HeroUI parity.
-
-
-
-
-
-
Card
-
- Compound API with static variants and optional hoverable/pressable
- interactions.
-
-
-
-
-
-
- Basic card content with the default surface styling.
-
- Scroll edge shadows for vertical and horizontal overflow content.
-
-
-
-
-
Vertical
-
-
- index + 1)}>
- {(item) => (
-
- Row {item}: Scroll to reveal top and bottom fade shadows.
-
- )}
-
-
-
-
-
-
-
- Horizontal
-
-
-
-
- {(label) => (
-
- {label}
-
- )}
-
-
-
-
-
-
-
-
-
Alert
-
- HeroUI-style compound alert with status variants and slots.
-
-
-
-
-
Statuses
-
-
- {(status) => (
-
-
-
-
- {status.charAt(0).toUpperCase() + status.slice(1)} alert
-
-
- This is a {status} alert with indicator, title, and
- description.
-
-
-
- )}
-
-
-
-
-
-
- With Action
-
-
-
-
- Update available
-
- A new version is available. Refresh to get the latest
- features. A new version is available. Refresh to get the
- latest features. A new version is available. Refresh to get
- the latest features. A new version is available. Refresh to
- get the latest features.
-
-
-
-
-
-
-
-
- Title Only + Close
-
-
-
-
- Profile updated successfully
-
-
-
-
-
-
-
-
-
Toast
-
- HeroUI-style toast provider with variants, actions, stacking, and
- auto-dismiss behavior.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Drawer
-
- HeroUI-style compound drawer with placements and backdrop
- variants.
-
- Pointer-reactive glow effect for feature cards and highlighted
- content.
-
-
-
-
-
-
Realtime Insights
-
- Move your pointer over this card to inspect the radial highlight
- behavior.
-
-
-
-
Smart Alerts
-
- Use the glow treatment on interactive dashboards or attention
- surfaces.
-
-
-
-
-
-
-
-
Metal Border
-
- Shared WebGL metal frame wrapper for forms, buttons, and generic
- panels. The overlay is pointer-events none and no-ops when WebGL
- is unavailable.
-
-
-
-
-
-
-
-
-
- Form card with interactive children
-
-
- Confirm focus, typing, and button clicks still work under
- the metal layer.
-
- Concurrent preset validation on separate instances.
-
-
-
-
- )}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Controls
-
- Live prop updates should keep one canvas per instance without
- blocking child interaction.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- WebGL fallback is a graceful no-op. If the browser or device
- cannot create the renderer, children still render normally with
- no extra overlay behavior.
-
-
-
-
-
-
-
-
Noise Background
-
- Animated layered gradients with optional texture overlay and
- configurable intensity.
-
-
-
-
-
-
-
Animated Background
-
- Motion-enabled gradient surface for callouts and promo blocks.
-
-
-
-
-
-
-
-
Static Texture
-
- Use static mode for quieter backgrounds while keeping visual
- depth.
-
-
- No animation
-
-
-
-
-
-
-
Live Chat
-
- Floating trigger and full-screen chat panel. Click the bubble in
- the demo area.
-
-
-
-
-
- The bubble is rendered as an overlay trigger and opens the chat
- panel with mock conversation data.
-
-
-
-
-
-
-
-
Empty State
-
- Compound empty state for lists, tables, and search results.
-
-
-
-
-
Simple
-
-
-
-
-
- No documents
-
- Get started by creating a new document.
-
-
-
-
-
-
-
-
-
-
- Search Results
-
-
-
-
-
-
- No results found
-
- Try adjusting your search or filter to find what you're
- looking for.
-
-
-
-
-
-
-
-
-
-
-
-
ColorArea
-
- HSV saturation/brightness area with pointer and keyboard
- interaction.
-
- HeroUI-style compound accordion with single/multiple and
- controlled/uncontrolled modes.
-
-
-
-
-
-
Basic
-
-
- Getting started
-
- Install the package, import components from{" "}
- @pathscale/ui, and apply your theme.
-
-
-
- Customization
-
- Use component props plus CSS variables to align visuals with
- your product style.
-
-
-
-
-
-
-
- Multiple items open
-
-
-
- Shipping policy
-
- Standard shipping takes 3-5 business days. Expedited
- shipping takes 1-2 business days.
-
-
-
- Return policy
-
- Returns are accepted within 30 days for unused items in
- original condition.
-
-
-
- Support channels
-
- Reach us via email, live chat, or the support portal for
- account-specific issues.
-
-
-
-
-
-
-
- Single-open mode
-
-
-
- Billing
-
- Monthly invoices are generated automatically and can be
- downloaded from settings.
-
-
-
- Security
-
- Enable multi-factor authentication and rotate API keys
- regularly for safer access.
-
-
-
- Integrations
-
- Connect with analytics, observability, and communication
- providers from the integrations page.
-
-
-
-
-
-
-
- Controlled
-
-
-
-
-
-
-
-
- Billing
-
- This panel is controlled via external state from the buttons
- above.
-
-
-
- Security
-
- Controlled selection allows synchronized UI with tabs,
- routes, or URL parameters.
-
-
-
-
- Open item: {controlledAccordionValue()[0] ?? "none"}
-
-
-
-
-
-
-
-
Layout Primitives
-
- Flex, Grid, Toolbar, Navbar, and Footer examples using the
- refactored component styling system.
-