@vaneui/ui 0.3.1-alpha.20251201135827.a31cb1e → 0.3.1-alpha.20251213103636.79707b4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/components/ui/badge.d.ts +36 -2
  2. package/dist/components/ui/badge.d.ts.map +1 -1
  3. package/dist/components/ui/button.d.ts +39 -3
  4. package/dist/components/ui/button.d.ts.map +1 -1
  5. package/dist/components/ui/card.d.ts +43 -2
  6. package/dist/components/ui/card.d.ts.map +1 -1
  7. package/dist/components/ui/checkbox.d.ts +39 -2
  8. package/dist/components/ui/checkbox.d.ts.map +1 -1
  9. package/dist/components/ui/chip.d.ts +36 -2
  10. package/dist/components/ui/chip.d.ts.map +1 -1
  11. package/dist/components/ui/code.d.ts +36 -2
  12. package/dist/components/ui/code.d.ts.map +1 -1
  13. package/dist/components/ui/col.d.ts +41 -2
  14. package/dist/components/ui/col.d.ts.map +1 -1
  15. package/dist/components/ui/container.d.ts +38 -2
  16. package/dist/components/ui/container.d.ts.map +1 -1
  17. package/dist/components/ui/divider.d.ts +32 -2
  18. package/dist/components/ui/divider.d.ts.map +1 -1
  19. package/dist/components/ui/docs/propDocs.d.ts +2 -2
  20. package/dist/components/ui/docs/propDocs.d.ts.map +1 -1
  21. package/dist/components/ui/grid.d.ts +117 -10
  22. package/dist/components/ui/grid.d.ts.map +1 -1
  23. package/dist/components/ui/img.d.ts +36 -2
  24. package/dist/components/ui/img.d.ts.map +1 -1
  25. package/dist/components/ui/input.d.ts +36 -2
  26. package/dist/components/ui/input.d.ts.map +1 -1
  27. package/dist/components/ui/label.d.ts +42 -2
  28. package/dist/components/ui/label.d.ts.map +1 -1
  29. package/dist/components/ui/row.d.ts +40 -2
  30. package/dist/components/ui/row.d.ts.map +1 -1
  31. package/dist/components/ui/section.d.ts +39 -2
  32. package/dist/components/ui/section.d.ts.map +1 -1
  33. package/dist/components/ui/stack.d.ts +40 -2
  34. package/dist/components/ui/stack.d.ts.map +1 -1
  35. package/dist/components/ui/typography.d.ts +223 -14
  36. package/dist/components/ui/typography.d.ts.map +1 -1
  37. package/dist/index.esm.js +839 -0
  38. package/dist/index.esm.js.map +1 -1
  39. package/dist/index.js +839 -0
  40. package/dist/index.js.map +1 -1
  41. package/dist/ui.css +15 -0
  42. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -5411,31 +5411,228 @@ const ThemedComponent = react.forwardRef(function ThemedComponent(allProps, ref)
5411
5411
  return (jsxRuntime.jsx(Tag, { ref: ref, className: finalClasses, ...finalProps, children: props.children }));
5412
5412
  });
5413
5413
 
5414
+ /**
5415
+ * A clickable button component with customizable appearance, size, and behavior.
5416
+ *
5417
+ * Supports rendering as a button element or anchor tag when href is provided.
5418
+ * Can be styled with different appearances (primary, secondary, success, etc.),
5419
+ * sizes (xs to xl), and variants (filled, outline).
5420
+ *
5421
+ * @example
5422
+ * ```tsx
5423
+ * // Basic button
5424
+ * <Button>Click me</Button>
5425
+ * ```
5426
+ *
5427
+ * @example
5428
+ * ```tsx
5429
+ * // Primary filled button with large size
5430
+ * <Button primary lg filled>Submit</Button>
5431
+ * ```
5432
+ *
5433
+ * @example
5434
+ * ```tsx
5435
+ * // Button as a link
5436
+ * <Button href="/about" secondary>About</Button>
5437
+ * ```
5438
+ *
5439
+ * @example
5440
+ * ```tsx
5441
+ * // Danger button with custom styling
5442
+ * <Button danger outline className="w-full">Delete</Button>
5443
+ * ```
5444
+ *
5445
+ * @see {@link ButtonProps} for all available props
5446
+ */
5414
5447
  const Button = react.forwardRef(function Button(props, ref) {
5415
5448
  const theme = useTheme();
5416
5449
  return jsxRuntime.jsx(ThemedComponent, { ref: ref, theme: theme.button, ...props });
5417
5450
  });
5418
5451
 
5452
+ /**
5453
+ * A compact badge component for displaying status, labels, or counts.
5454
+ *
5455
+ * Badges are typically used to highlight important information or indicate
5456
+ * status (e.g., "New", "Beta", notification counts). Supports the same
5457
+ * customization options as buttons including appearances, sizes, and variants.
5458
+ *
5459
+ * @example
5460
+ * ```tsx
5461
+ * // Basic badge
5462
+ * <Badge>New</Badge>
5463
+ * ```
5464
+ *
5465
+ * @example
5466
+ * ```tsx
5467
+ * // Success badge with filled variant
5468
+ * <Badge success filled>Active</Badge>
5469
+ * ```
5470
+ *
5471
+ * @example
5472
+ * ```tsx
5473
+ * // Notification count badge
5474
+ * <Badge danger pill xs>3</Badge>
5475
+ * ```
5476
+ *
5477
+ * @example
5478
+ * ```tsx
5479
+ * // Badge as a link
5480
+ * <Badge href="/beta" info outline>Beta</Badge>
5481
+ * ```
5482
+ *
5483
+ * @see {@link BadgeProps} for all available props
5484
+ */
5419
5485
  const Badge = react.forwardRef(function Badge(props, ref) {
5420
5486
  const theme = useTheme();
5421
5487
  return jsxRuntime.jsx(ThemedComponent, { theme: theme.badge, ref: ref, ...props });
5422
5488
  });
5423
5489
 
5490
+ /**
5491
+ * A visual separator component for dividing content sections.
5492
+ *
5493
+ * Renders a horizontal line to separate content blocks. Can be styled
5494
+ * with different appearances and sizes. Useful for creating visual
5495
+ * hierarchy and content organization.
5496
+ *
5497
+ * @example
5498
+ * ```tsx
5499
+ * // Basic divider
5500
+ * <Text>Section 1</Text>
5501
+ * <Divider />
5502
+ * <Text>Section 2</Text>
5503
+ * ```
5504
+ *
5505
+ * @example
5506
+ * ```tsx
5507
+ * // Styled divider
5508
+ * <Divider primary lg />
5509
+ * ```
5510
+ *
5511
+ * @example
5512
+ * ```tsx
5513
+ * // Divider with padding
5514
+ * <Divider padding />
5515
+ * ```
5516
+ *
5517
+ * @see {@link DividerProps} for all available props
5518
+ */
5424
5519
  const Divider = react.forwardRef(function Divider(props, ref) {
5425
5520
  const theme = useTheme();
5426
5521
  return jsxRuntime.jsx(ThemedComponent, { theme: theme.divider, ref: ref, ...props });
5427
5522
  });
5428
5523
 
5524
+ /**
5525
+ * A chip component for displaying tags, filters, or selections.
5526
+ *
5527
+ * Chips are interactive elements commonly used to represent tags, filters,
5528
+ * or user selections. They typically appear in pill shape and can be
5529
+ * removed or clicked. Similar to badges but more interactive in nature.
5530
+ *
5531
+ * @example
5532
+ * ```tsx
5533
+ * // Basic chip
5534
+ * <Chip>React</Chip>
5535
+ * ```
5536
+ *
5537
+ * @example
5538
+ * ```tsx
5539
+ * // Filter chip with primary color
5540
+ * <Chip primary pill>JavaScript</Chip>
5541
+ * ```
5542
+ *
5543
+ * @example
5544
+ * ```tsx
5545
+ * // Removable tag chip
5546
+ * <Chip secondary outline xs>TypeScript ×</Chip>
5547
+ * ```
5548
+ *
5549
+ * @example
5550
+ * ```tsx
5551
+ * // Clickable chip as link
5552
+ * <Chip href="/tag/react" accent>React</Chip>
5553
+ * ```
5554
+ *
5555
+ * @see {@link ChipProps} for all available props
5556
+ */
5429
5557
  const Chip = react.forwardRef(function Chip(props, ref) {
5430
5558
  const theme = useTheme();
5431
5559
  return jsxRuntime.jsx(ThemedComponent, { theme: theme.chip, ref: ref, ...props });
5432
5560
  });
5433
5561
 
5562
+ /**
5563
+ * An inline code component for displaying code snippets or technical terms.
5564
+ *
5565
+ * Renders text in a monospace font with subtle background styling to
5566
+ * distinguish code from regular text. Ideal for inline code references,
5567
+ * variable names, or short code snippets within paragraphs.
5568
+ *
5569
+ * @example
5570
+ * ```tsx
5571
+ * // Basic inline code
5572
+ * <Code>const x = 10</Code>
5573
+ * ```
5574
+ *
5575
+ * @example
5576
+ * ```tsx
5577
+ * // Code with custom appearance
5578
+ * <Code primary filled>npm install</Code>
5579
+ * ```
5580
+ *
5581
+ * @example
5582
+ * ```tsx
5583
+ * // Code block style
5584
+ * <Code secondary outline lg mono>function hello() {}</Code>
5585
+ * ```
5586
+ *
5587
+ * @example
5588
+ * ```tsx
5589
+ * // Code with custom styling
5590
+ * <Code className="px-4 py-2">git commit -m "message"</Code>
5591
+ * ```
5592
+ *
5593
+ * @see {@link CodeProps} for all available props
5594
+ */
5434
5595
  const Code = react.forwardRef(function Code(props, ref) {
5435
5596
  const theme = useTheme();
5436
5597
  return jsxRuntime.jsx(ThemedComponent, { theme: theme.code, ref: ref, ...props });
5437
5598
  });
5438
5599
 
5600
+ /**
5601
+ * A styled checkbox component for forms and selections.
5602
+ *
5603
+ * Provides a custom-styled checkbox with checkmark visualization. Supports
5604
+ * all standard HTML checkbox attributes (checked, onChange, disabled, etc.)
5605
+ * and can be customized with appearances, sizes, and variants.
5606
+ *
5607
+ * @example
5608
+ * ```tsx
5609
+ * // Basic checkbox
5610
+ * <Checkbox />
5611
+ * ```
5612
+ *
5613
+ * @example
5614
+ * ```tsx
5615
+ * // Controlled checkbox with label
5616
+ * <Label>
5617
+ * <Checkbox checked={accepted} onChange={(e) => setAccepted(e.target.checked)} />
5618
+ * I accept the terms
5619
+ * </Label>
5620
+ * ```
5621
+ *
5622
+ * @example
5623
+ * ```tsx
5624
+ * // Primary checkbox with custom size
5625
+ * <Checkbox primary lg defaultChecked />
5626
+ * ```
5627
+ *
5628
+ * @example
5629
+ * ```tsx
5630
+ * // Disabled checkbox
5631
+ * <Checkbox disabled checked />
5632
+ * ```
5633
+ *
5634
+ * @see {@link CheckboxProps} for all available props
5635
+ */
5439
5636
  const Checkbox = react.forwardRef(function Checkbox(props, ref) {
5440
5637
  const theme = useTheme();
5441
5638
  // Extract only theme-relevant props for wrapper and check components
@@ -5469,97 +5666,739 @@ const Checkbox = react.forwardRef(function Checkbox(props, ref) {
5469
5666
  return (jsxRuntime.jsxs(ThemedComponent, { theme: theme.checkbox.wrapper, ref: ref, ...themeProps, children: [jsxRuntime.jsx(ThemedComponent, { theme: theme.checkbox.input, ...inputProps }), jsxRuntime.jsx(ThemedComponent, { theme: theme.checkbox.check, ...themeProps, children: theme.checkbox.check.themes.checkElement() })] }));
5470
5667
  });
5471
5668
 
5669
+ /**
5670
+ * A label component for form fields and inputs.
5671
+ *
5672
+ * Renders a semantic HTML label element with typography and styling support.
5673
+ * Typically used with form inputs like Input or Checkbox to provide
5674
+ * accessible labels. Clicking the label focuses the associated input.
5675
+ *
5676
+ * @example
5677
+ * ```tsx
5678
+ * // Basic label
5679
+ * <Label htmlFor="email">Email Address</Label>
5680
+ * ```
5681
+ *
5682
+ * @example
5683
+ * ```tsx
5684
+ * // Label with checkbox
5685
+ * <Label>
5686
+ * <Checkbox id="terms" />
5687
+ * I agree to the terms
5688
+ * </Label>
5689
+ * ```
5690
+ *
5691
+ * @example
5692
+ * ```tsx
5693
+ * // Styled label with custom appearance
5694
+ * <Label semibold primary>Username</Label>
5695
+ * ```
5696
+ *
5697
+ * @example
5698
+ * ```tsx
5699
+ * // Label with input
5700
+ * <Label htmlFor="password" className="block mb-2">
5701
+ * Password
5702
+ * </Label>
5703
+ * <Input id="password" type="password" />
5704
+ * ```
5705
+ *
5706
+ * @see {@link LabelProps} for all available props
5707
+ */
5472
5708
  const Label = react.forwardRef(function Label(props, ref) {
5473
5709
  const theme = useTheme();
5474
5710
  return jsxRuntime.jsx(ThemedComponent, { theme: theme.label, ref: ref, ...props });
5475
5711
  });
5476
5712
 
5713
+ /**
5714
+ * An image component with styling and layout support.
5715
+ *
5716
+ * Wraps the HTML img element with VaneUI's styling system. Supports all
5717
+ * standard image attributes (src, alt, width, height, etc.) plus additional
5718
+ * props for borders, shadows, shapes, and positioning.
5719
+ *
5720
+ * @example
5721
+ * ```tsx
5722
+ * // Basic image
5723
+ * <Img src="/photo.jpg" alt="Description" />
5724
+ * ```
5725
+ *
5726
+ * @example
5727
+ * ```tsx
5728
+ * // Rounded image with border
5729
+ * <Img src="/avatar.jpg" alt="User" pill border primary />
5730
+ * ```
5731
+ *
5732
+ * @example
5733
+ * ```tsx
5734
+ * // Image with shadow and custom size
5735
+ * <Img src="/product.jpg" alt="Product" shadow lg />
5736
+ * ```
5737
+ *
5738
+ * @example
5739
+ * ```tsx
5740
+ * // Full width responsive image
5741
+ * <Img src="/banner.jpg" alt="Banner" className="w-full h-auto" />
5742
+ * ```
5743
+ *
5744
+ * @see {@link ImgProps} for all available props
5745
+ */
5477
5746
  const Img = react.forwardRef(function Img(props, ref) {
5478
5747
  const theme = useTheme();
5479
5748
  return (jsxRuntime.jsx(ThemedComponent, { theme: theme.img, ref: ref, ...props }));
5480
5749
  });
5481
5750
 
5751
+ /**
5752
+ * A text input field component for forms and user data entry.
5753
+ *
5754
+ * Provides a styled input element with support for all standard HTML input
5755
+ * attributes and types. Can be customized with appearances, sizes, and variants
5756
+ * to match your design system. Supports all native input types (text, email, password, etc.).
5757
+ *
5758
+ * @example
5759
+ * ```tsx
5760
+ * // Basic text input
5761
+ * <Input placeholder="Enter your name" />
5762
+ * ```
5763
+ *
5764
+ * @example
5765
+ * ```tsx
5766
+ * // Email input with primary styling
5767
+ * <Input type="email" primary outline placeholder="Email address" />
5768
+ * ```
5769
+ *
5770
+ * @example
5771
+ * ```tsx
5772
+ * // Large input with custom styling
5773
+ * <Input lg className="w-full" placeholder="Search..." />
5774
+ * ```
5775
+ *
5776
+ * @example
5777
+ * ```tsx
5778
+ * // Controlled input with state
5779
+ * <Input value={value} onChange={(e) => setValue(e.target.value)} />
5780
+ * ```
5781
+ *
5782
+ * @see {@link InputProps} for all available props
5783
+ */
5482
5784
  const Input = react.forwardRef(function Input(props, ref) {
5483
5785
  const theme = useTheme();
5484
5786
  return jsxRuntime.jsx(ThemedComponent, { ref: ref, theme: theme.input, ...props });
5485
5787
  });
5486
5788
 
5789
+ /**
5790
+ * A semantic section container for grouping related content.
5791
+ *
5792
+ * Renders as a semantic HTML section element with generous layout spacing.
5793
+ * Use to organize page content into logical sections. Supports responsive
5794
+ * flex direction with breakpoint props (mobileCol, tabletCol, etc.).
5795
+ *
5796
+ * @example
5797
+ * ```tsx
5798
+ * // Basic section
5799
+ * <Section>
5800
+ * <SectionTitle>About</SectionTitle>
5801
+ * <Text>Section content here.</Text>
5802
+ * </Section>
5803
+ * ```
5804
+ *
5805
+ * @example
5806
+ * ```tsx
5807
+ * // Section with padding and gap
5808
+ * <Section padding gap>
5809
+ * <Title>Features</Title>
5810
+ * <Text>Feature descriptions...</Text>
5811
+ * </Section>
5812
+ * ```
5813
+ *
5814
+ * @example
5815
+ * ```tsx
5816
+ * // Responsive section that stacks on tablets
5817
+ * <Section tabletCol gap>
5818
+ * <Card>Card 1</Card>
5819
+ * <Card>Card 2</Card>
5820
+ * </Section>
5821
+ * ```
5822
+ *
5823
+ * @see {@link SectionProps} for all available props
5824
+ */
5487
5825
  const Section = react.forwardRef(function Section(props, ref) {
5488
5826
  const theme = useTheme();
5489
5827
  return jsxRuntime.jsx(ThemedComponent, { theme: theme.section, ref: ref, ...props });
5490
5828
  });
5491
5829
 
5830
+ /**
5831
+ * A page-level content wrapper with maximum width constraints.
5832
+ *
5833
+ * Provides consistent horizontal padding and centers content on the page.
5834
+ * Typically the outermost wrapper for page content. Uses layout spacing
5835
+ * (larger gaps) for structural organization.
5836
+ *
5837
+ * @example
5838
+ * ```tsx
5839
+ * // Basic container
5840
+ * <Container>
5841
+ * <PageTitle>My Page</PageTitle>
5842
+ * <Text>Page content goes here.</Text>
5843
+ * </Container>
5844
+ * ```
5845
+ *
5846
+ * @example
5847
+ * ```tsx
5848
+ * // Container with custom spacing
5849
+ * <Container lg gap>
5850
+ * <Section>Section 1</Section>
5851
+ * <Section>Section 2</Section>
5852
+ * </Container>
5853
+ * ```
5854
+ *
5855
+ * @example
5856
+ * ```tsx
5857
+ * // Full-width container
5858
+ * <Container className="max-w-none">
5859
+ * Wide content
5860
+ * </Container>
5861
+ * ```
5862
+ *
5863
+ * @see {@link ContainerProps} for all available props
5864
+ */
5492
5865
  const Container = react.forwardRef(function Container(props, ref) {
5493
5866
  const theme = useTheme();
5494
5867
  return jsxRuntime.jsx(ThemedComponent, { theme: theme.container, ref: ref, ...props });
5495
5868
  });
5496
5869
 
5870
+ /**
5871
+ * A column flex container for vertical content organization.
5872
+ *
5873
+ * Arranges children in a column (vertical) layout with consistent spacing.
5874
+ * Similar to Stack but without responsive breakpoints. Use for predictable
5875
+ * vertical layouts that don't need to change based on screen size.
5876
+ *
5877
+ * @example
5878
+ * ```tsx
5879
+ * // Basic column
5880
+ * <Col gap>
5881
+ * <Title>Column Content</Title>
5882
+ * <Text>First paragraph</Text>
5883
+ * <Text>Second paragraph</Text>
5884
+ * </Col>
5885
+ * ```
5886
+ *
5887
+ * @example
5888
+ * ```tsx
5889
+ * // Column with centered items
5890
+ * <Col itemsCenter justifyCenter gap>
5891
+ * <Badge>Status</Badge>
5892
+ * <Button>Action</Button>
5893
+ * </Col>
5894
+ * ```
5895
+ *
5896
+ * @example
5897
+ * ```tsx
5898
+ * // Full-height column
5899
+ * <Col className="h-screen" justifyBetween>
5900
+ * <header>Header</header>
5901
+ * <main>Main Content</main>
5902
+ * <footer>Footer</footer>
5903
+ * </Col>
5904
+ * ```
5905
+ *
5906
+ * @see {@link ColProps} for all available props
5907
+ */
5497
5908
  const Col = react.forwardRef(function Col(props, ref) {
5498
5909
  const theme = useTheme();
5499
5910
  return jsxRuntime.jsx(ThemedComponent, { theme: theme.col, ref: ref, ...props });
5500
5911
  });
5501
5912
 
5913
+ /**
5914
+ * A horizontal flex container for arranging elements side-by-side.
5915
+ *
5916
+ * Arranges children horizontally with consistent spacing. Supports responsive
5917
+ * breakpoints to switch to vertical stacking on smaller screens. Uses layout
5918
+ * spacing for structural organization.
5919
+ *
5920
+ * @example
5921
+ * ```tsx
5922
+ * // Basic horizontal row
5923
+ * <Row gap>
5924
+ * <Button>Action 1</Button>
5925
+ * <Button>Action 2</Button>
5926
+ * </Row>
5927
+ * ```
5928
+ *
5929
+ * @example
5930
+ * ```tsx
5931
+ * // Row with space-between
5932
+ * <Row justifyBetween itemsCenter>
5933
+ * <Title>Page Header</Title>
5934
+ * <Button>CTA</Button>
5935
+ * </Row>
5936
+ * ```
5937
+ *
5938
+ * @example
5939
+ * ```tsx
5940
+ * // Responsive row (stacks on tablets and below)
5941
+ * <Row tabletCol gap>
5942
+ * <Card>Card 1</Card>
5943
+ * <Card>Card 2</Card>
5944
+ * <Card>Card 3</Card>
5945
+ * </Row>
5946
+ * ```
5947
+ *
5948
+ * @see {@link RowProps} for all available props
5949
+ */
5502
5950
  const Row = react.forwardRef(function Row(props, ref) {
5503
5951
  const theme = useTheme();
5504
5952
  return jsxRuntime.jsx(ThemedComponent, { theme: theme.row, ref: ref, ...props });
5505
5953
  });
5506
5954
 
5955
+ /**
5956
+ * A 2-column CSS grid container.
5957
+ *
5958
+ * Creates a responsive grid with 2 equal-width columns. Grid items automatically
5959
+ * fill available columns. Uses CSS Grid for precise layout control.
5960
+ *
5961
+ * @example
5962
+ * ```tsx
5963
+ * // Basic 2-column grid
5964
+ * <Grid2 gap>
5965
+ * <Card>Item 1</Card>
5966
+ * <Card>Item 2</Card>
5967
+ * <Card>Item 3</Card>
5968
+ * <Card>Item 4</Card>
5969
+ * </Grid2>
5970
+ * ```
5971
+ *
5972
+ * @example
5973
+ * ```tsx
5974
+ * // Grid with custom styling
5975
+ * <Grid2 gap lg className="auto-rows-fr">
5976
+ * <div>Column 1</div>
5977
+ * <div>Column 2</div>
5978
+ * </Grid2>
5979
+ * ```
5980
+ *
5981
+ * @see {@link GridProps} for all available props
5982
+ */
5507
5983
  const Grid2 = react.forwardRef(function Grid2(props, ref) {
5508
5984
  const theme = useTheme();
5509
5985
  return jsxRuntime.jsx(ThemedComponent, { theme: theme.grid2, ref: ref, ...props });
5510
5986
  });
5987
+ /**
5988
+ * A 3-column CSS grid container.
5989
+ *
5990
+ * Creates a responsive grid with 3 equal-width columns. Ideal for card
5991
+ * layouts and feature displays. Grid items automatically wrap to new rows.
5992
+ *
5993
+ * @example
5994
+ * ```tsx
5995
+ * // Basic 3-column grid
5996
+ * <Grid3 gap>
5997
+ * <Card>Feature 1</Card>
5998
+ * <Card>Feature 2</Card>
5999
+ * <Card>Feature 3</Card>
6000
+ * </Grid3>
6001
+ * ```
6002
+ *
6003
+ * @see {@link GridProps} for all available props
6004
+ */
5511
6005
  const Grid3 = react.forwardRef(function Grid3(props, ref) {
5512
6006
  const theme = useTheme();
5513
6007
  return jsxRuntime.jsx(ThemedComponent, { theme: theme.grid3, ref: ref, ...props });
5514
6008
  });
6009
+ /**
6010
+ * A 4-column CSS grid container.
6011
+ *
6012
+ * Creates a responsive grid with 4 equal-width columns. Perfect for
6013
+ * image galleries or product listings with multiple items per row.
6014
+ *
6015
+ * @example
6016
+ * ```tsx
6017
+ * // Basic 4-column grid
6018
+ * <Grid4 gap>
6019
+ * <Img src="/img1.jpg" alt="1" />
6020
+ * <Img src="/img2.jpg" alt="2" />
6021
+ * <Img src="/img3.jpg" alt="3" />
6022
+ * <Img src="/img4.jpg" alt="4" />
6023
+ * </Grid4>
6024
+ * ```
6025
+ *
6026
+ * @see {@link GridProps} for all available props
6027
+ */
5515
6028
  const Grid4 = react.forwardRef(function Grid4(props, ref) {
5516
6029
  const theme = useTheme();
5517
6030
  return jsxRuntime.jsx(ThemedComponent, { theme: theme.grid4, ref: ref, ...props });
5518
6031
  });
6032
+ /**
6033
+ * A 5-column CSS grid container.
6034
+ *
6035
+ * Creates a responsive grid with 5 equal-width columns. Useful for
6036
+ * dense layouts with many small items, like icon grids or tag clouds.
6037
+ *
6038
+ * @example
6039
+ * ```tsx
6040
+ * // Basic 5-column grid
6041
+ * <Grid5 gap>
6042
+ * <Badge>Tag 1</Badge>
6043
+ * <Badge>Tag 2</Badge>
6044
+ * <Badge>Tag 3</Badge>
6045
+ * <Badge>Tag 4</Badge>
6046
+ * <Badge>Tag 5</Badge>
6047
+ * </Grid5>
6048
+ * ```
6049
+ *
6050
+ * @see {@link GridProps} for all available props
6051
+ */
5519
6052
  const Grid5 = react.forwardRef(function Grid5(props, ref) {
5520
6053
  const theme = useTheme();
5521
6054
  return jsxRuntime.jsx(ThemedComponent, { theme: theme.grid5, ref: ref, ...props });
5522
6055
  });
6056
+ /**
6057
+ * A 6-column CSS grid container.
6058
+ *
6059
+ * Creates a responsive grid with 6 equal-width columns. Ideal for very
6060
+ * dense layouts or dashboard widgets with many small components.
6061
+ *
6062
+ * @example
6063
+ * ```tsx
6064
+ * // Basic 6-column grid
6065
+ * <Grid6 gap>
6066
+ * <Chip>Item 1</Chip>
6067
+ * <Chip>Item 2</Chip>
6068
+ * <Chip>Item 3</Chip>
6069
+ * <Chip>Item 4</Chip>
6070
+ * <Chip>Item 5</Chip>
6071
+ * <Chip>Item 6</Chip>
6072
+ * </Grid6>
6073
+ * ```
6074
+ *
6075
+ * @see {@link GridProps} for all available props
6076
+ */
5523
6077
  const Grid6 = react.forwardRef(function Grid6(props, ref) {
5524
6078
  const theme = useTheme();
5525
6079
  return jsxRuntime.jsx(ThemedComponent, { theme: theme.grid6, ref: ref, ...props });
5526
6080
  });
5527
6081
 
6082
+ /**
6083
+ * A container component for grouping related content with padding and borders.
6084
+ *
6085
+ * Cards provide visual separation and organization for content blocks. Support
6086
+ * responsive flex direction with breakpoint props. Use for content cards,
6087
+ * feature boxes, or any grouped content that needs visual distinction.
6088
+ *
6089
+ * @example
6090
+ * ```tsx
6091
+ * // Basic card
6092
+ * <Card>
6093
+ * <Title>Card Title</Title>
6094
+ * <Text>Card content goes here.</Text>
6095
+ * </Card>
6096
+ * ```
6097
+ *
6098
+ * @example
6099
+ * ```tsx
6100
+ * // Card with styling
6101
+ * <Card primary outline shadow padding gap>
6102
+ * <Title>Feature</Title>
6103
+ * <Text>Description of the feature</Text>
6104
+ * <Button>Learn More</Button>
6105
+ * </Card>
6106
+ * ```
6107
+ *
6108
+ * @example
6109
+ * ```tsx
6110
+ * // Responsive card layout
6111
+ * <Card tabletCol gap padding>
6112
+ * <Img src="/image.jpg" alt="Image" />
6113
+ * <div>
6114
+ * <Title>Content</Title>
6115
+ * <Text>Details here</Text>
6116
+ * </div>
6117
+ * </Card>
6118
+ * ```
6119
+ *
6120
+ * @see {@link CardProps} for all available props
6121
+ */
5528
6122
  const Card = react.forwardRef(function Card(props, ref) {
5529
6123
  const theme = useTheme();
5530
6124
  return jsxRuntime.jsx(ThemedComponent, { ref: ref, theme: theme.card, ...props });
5531
6125
  });
5532
6126
 
6127
+ /**
6128
+ * A vertical flex container for stacking elements.
6129
+ *
6130
+ * Arranges children vertically with consistent spacing. Supports responsive
6131
+ * breakpoints to switch to horizontal layout on larger screens. Uses layout
6132
+ * spacing for structural organization.
6133
+ *
6134
+ * @example
6135
+ * ```tsx
6136
+ * // Basic vertical stack
6137
+ * <Stack gap>
6138
+ * <Button>Button 1</Button>
6139
+ * <Button>Button 2</Button>
6140
+ * <Button>Button 3</Button>
6141
+ * </Stack>
6142
+ * ```
6143
+ *
6144
+ * @example
6145
+ * ```tsx
6146
+ * // Stack with padding and alignment
6147
+ * <Stack padding gap itemsCenter>
6148
+ * <Title>Centered Content</Title>
6149
+ * <Text>All items are centered</Text>
6150
+ * </Stack>
6151
+ * ```
6152
+ *
6153
+ * @example
6154
+ * ```tsx
6155
+ * // Responsive stack (becomes horizontal on desktop)
6156
+ * <Stack desktopCol gap>
6157
+ * <Card>Item 1</Card>
6158
+ * <Card>Item 2</Card>
6159
+ * </Stack>
6160
+ * ```
6161
+ *
6162
+ * @see {@link StackProps} for all available props
6163
+ */
5533
6164
  const Stack = react.forwardRef(function Stack(props, ref) {
5534
6165
  const theme = useTheme();
5535
6166
  const stackTheme = theme.stack;
5536
6167
  return jsxRuntime.jsx(ThemedComponent, { theme: stackTheme, ref: ref, ...props });
5537
6168
  });
5538
6169
 
6170
+ /**
6171
+ * A top-level page heading component (h1).
6172
+ *
6173
+ * Renders the main heading for a page with large, bold typography.
6174
+ * Automatically scales down on smaller screens for responsive design.
6175
+ * Can be rendered as a link when href prop is provided.
6176
+ *
6177
+ * @example
6178
+ * ```tsx
6179
+ * // Basic page title
6180
+ * <PageTitle>Welcome to My Site</PageTitle>
6181
+ * ```
6182
+ *
6183
+ * @example
6184
+ * ```tsx
6185
+ * // Page title with custom styling
6186
+ * <PageTitle primary xl>Product Launch</PageTitle>
6187
+ * ```
6188
+ *
6189
+ * @example
6190
+ * ```tsx
6191
+ * // Page title as a link
6192
+ * <PageTitle href="/">Home Page</PageTitle>
6193
+ * ```
6194
+ *
6195
+ * @see {@link TypographyProps} for all available props
6196
+ */
5539
6197
  const PageTitle = react.forwardRef(function PageTitle(props, ref) {
5540
6198
  const theme = useTheme();
5541
6199
  return jsxRuntime.jsx(ThemedComponent, { ref: ref, theme: theme.pageTitle, ...props });
5542
6200
  });
6201
+ /**
6202
+ * A section heading component (h2).
6203
+ *
6204
+ * Renders a heading for major sections of content. Medium-large size with
6205
+ * responsive scaling on smaller screens. Typically used to divide page
6206
+ * content into logical sections.
6207
+ *
6208
+ * @example
6209
+ * ```tsx
6210
+ * // Basic section title
6211
+ * <SectionTitle>Features</SectionTitle>
6212
+ * ```
6213
+ *
6214
+ * @example
6215
+ * ```tsx
6216
+ * // Section title with styling
6217
+ * <SectionTitle secondary bold>About Us</SectionTitle>
6218
+ * ```
6219
+ *
6220
+ * @example
6221
+ * ```tsx
6222
+ * // Section title as a link
6223
+ * <SectionTitle href="#features">Jump to Features</SectionTitle>
6224
+ * ```
6225
+ *
6226
+ * @see {@link TypographyProps} for all available props
6227
+ */
5543
6228
  const SectionTitle = react.forwardRef(function SectionTitle(props, ref) {
5544
6229
  const theme = useTheme();
5545
6230
  return jsxRuntime.jsx(ThemedComponent, { ref: ref, theme: theme.sectionTitle, ...props });
5546
6231
  });
6232
+ /**
6233
+ * A subsection heading component (h3).
6234
+ *
6235
+ * Renders a heading for subsections or cards. Medium size with subtle
6236
+ * responsive scaling. Use for content organization below section titles.
6237
+ *
6238
+ * @example
6239
+ * ```tsx
6240
+ * // Basic title
6241
+ * <Title>Getting Started</Title>
6242
+ * ```
6243
+ *
6244
+ * @example
6245
+ * ```tsx
6246
+ * // Title with custom appearance
6247
+ * <Title primary semibold>Installation</Title>
6248
+ * ```
6249
+ *
6250
+ * @example
6251
+ * ```tsx
6252
+ * // Title as a link
6253
+ * <Title href="/docs/intro">Documentation</Title>
6254
+ * ```
6255
+ *
6256
+ * @see {@link TypographyProps} for all available props
6257
+ */
5547
6258
  const Title = react.forwardRef(function Title(props, ref) {
5548
6259
  const theme = useTheme();
5549
6260
  return jsxRuntime.jsx(ThemedComponent, { ref: ref, theme: theme.title, ...props });
5550
6261
  });
6262
+ /**
6263
+ * A body text component (p).
6264
+ *
6265
+ * Renders paragraph text with automatic URL detection and link conversion.
6266
+ * Use for main content, descriptions, and body copy. Can be rendered as
6267
+ * a link when href prop is provided.
6268
+ *
6269
+ * @example
6270
+ * ```tsx
6271
+ * // Basic paragraph
6272
+ * <Text>This is a paragraph of body text.</Text>
6273
+ * ```
6274
+ *
6275
+ * @example
6276
+ * ```tsx
6277
+ * // Text with custom styling
6278
+ * <Text secondary lg>Large secondary text content.</Text>
6279
+ * ```
6280
+ *
6281
+ * @example
6282
+ * ```tsx
6283
+ * // Text as a link
6284
+ * <Text href="/about">Learn more</Text>
6285
+ * ```
6286
+ *
6287
+ * @example
6288
+ * ```tsx
6289
+ * // Text with typography props
6290
+ * <Text mono semibold>Monospace bold text</Text>
6291
+ * ```
6292
+ *
6293
+ * @see {@link TypographyProps} for all available props
6294
+ */
5551
6295
  const Text = react.forwardRef(function Text(props, ref) {
5552
6296
  const theme = useTheme();
5553
6297
  return jsxRuntime.jsx(ThemedComponent, { ref: ref, theme: theme.text, ...props });
5554
6298
  });
6299
+ /**
6300
+ * An anchor link component (a).
6301
+ *
6302
+ * Renders a hyperlink with hover underline effect. Inherits text styling
6303
+ * from parent or can be customized with typography props. Use for
6304
+ * navigation links and clickable text.
6305
+ *
6306
+ * @example
6307
+ * ```tsx
6308
+ * // Basic link
6309
+ * <Link href="/about">About Us</Link>
6310
+ * ```
6311
+ *
6312
+ * @example
6313
+ * ```tsx
6314
+ * // Styled link
6315
+ * <Link href="/contact" primary semibold>Contact</Link>
6316
+ * ```
6317
+ *
6318
+ * @example
6319
+ * ```tsx
6320
+ * // External link
6321
+ * <Link href="https://example.com" target="_blank" rel="noopener">
6322
+ * Visit Example
6323
+ * </Link>
6324
+ * ```
6325
+ *
6326
+ * @see {@link TypographyProps} for all available props
6327
+ */
5555
6328
  const Link = react.forwardRef(function Link(props, ref) {
5556
6329
  const theme = useTheme();
5557
6330
  return jsxRuntime.jsx(ThemedComponent, { ref: ref, theme: theme.link, ...props });
5558
6331
  });
6332
+ /**
6333
+ * A list item component (li).
6334
+ *
6335
+ * Renders an individual list item within a List component. Supports
6336
+ * typography styling and can be rendered as a link when href is provided.
6337
+ * Use within List for bullet points or numbered lists.
6338
+ *
6339
+ * @example
6340
+ * ```tsx
6341
+ * // Basic list item
6342
+ * <List>
6343
+ * <ListItem>First item</ListItem>
6344
+ * <ListItem>Second item</ListItem>
6345
+ * </List>
6346
+ * ```
6347
+ *
6348
+ * @example
6349
+ * ```tsx
6350
+ * // Styled list item
6351
+ * <ListItem primary semibold>Important item</ListItem>
6352
+ * ```
6353
+ *
6354
+ * @example
6355
+ * ```tsx
6356
+ * // List item as a link
6357
+ * <ListItem href="/item/1">Click to view details</ListItem>
6358
+ * ```
6359
+ *
6360
+ * @see {@link TypographyProps} for all available props
6361
+ */
5559
6362
  const ListItem = react.forwardRef(function ListItem(props, ref) {
5560
6363
  const theme = useTheme();
5561
6364
  return jsxRuntime.jsx(ThemedComponent, { ref: ref, theme: theme.listItem, ...props });
5562
6365
  });
6366
+ /**
6367
+ * A list container component (ul or ol).
6368
+ *
6369
+ * Renders an unordered (bullets) or ordered (numbers) list. Automatically
6370
+ * switches between ul and ol based on the `decimal` prop. Use with ListItem
6371
+ * components for structured lists.
6372
+ *
6373
+ * @example
6374
+ * ```tsx
6375
+ * // Unordered list (bullets)
6376
+ * <List>
6377
+ * <ListItem>Item one</ListItem>
6378
+ * <ListItem>Item two</ListItem>
6379
+ * </List>
6380
+ * ```
6381
+ *
6382
+ * @example
6383
+ * ```tsx
6384
+ * // Ordered list (numbers)
6385
+ * <List decimal>
6386
+ * <ListItem>First step</ListItem>
6387
+ * <ListItem>Second step</ListItem>
6388
+ * </List>
6389
+ * ```
6390
+ *
6391
+ * @example
6392
+ * ```tsx
6393
+ * // Styled list
6394
+ * <List primary lg padding>
6395
+ * <ListItem>Feature A</ListItem>
6396
+ * <ListItem>Feature B</ListItem>
6397
+ * </List>
6398
+ * ```
6399
+ *
6400
+ * @see {@link ListProps} for all available props
6401
+ */
5563
6402
  const List = react.forwardRef(function List(props, ref) {
5564
6403
  const theme = useTheme();
5565
6404
  return jsxRuntime.jsx(ThemedComponent, { ref: ref, theme: theme.list, ...props });