canonrs-server 0.1.0

CanonRS server-side rendering support
id: resizable
label: Resizable
family: family-g-composite
category: Layout
intent: Split panels with draggable divider
description: Resizable panel component
composable: true
capabilities: Orientation, Resize
required_parts: ["ResizablePanel", "ResizableHandle"]
optional_parts: []
tags: ["resizable", "resize", "panel", "split", "adjust"]
keywords: 
pain: Resizable panels break layout constraints and overflow limits
promise: Panel sizes constrained and behavior encoded structurally
why: |
  ResizablePrimitive defines orientation and size limits via attributes. Panels and handles follow strict composition. This guarantees controlled resizing behavior.
rules: ["CR-001", "CR-004"]
use_cases: ["editors", "dashboards"]
related: ["card", "scroll_area", "aspect_ratio", "page_header", "toolbar", "separator"]
file: resizable_ui.css
tokens: resizable-*, size-*, space-*, radius-*
foundation: size, spacing, radius, motion
states: ["active", "inactive"]
island: resizable_boundary.rs
pillar: layout
badges: ["SSR Safe", "Hydration Safe", "Token Driven", "Deterministic API", "Zero Drift", "Island Architecture"]
before: |
  // ❌ Typical
  view! {
    <div class="split">
      <div></div>
      <div></div>
    </div>
  }
after: |
  // ✅ CanonRS
  view! {
    <Resizable>
      <ResizablePanel />
      <ResizableHandle />
    </Resizable>
  }
boundary_type: interaction
ix_group: ix_gesture
block: []
blocks_primitives: [flex]