Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/raystack/components/avatar/avatar.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { Avatar as AvatarPrimitive } from '@base-ui/react/avatar';
import { cva, cx, VariantProps } from 'class-variance-authority';
import { ComponentProps, isValidElement, ReactElement, ReactNode } from 'react';
Expand Down
2 changes: 2 additions & 0 deletions packages/raystack/components/button/button.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { Button as ButtonPrimitive } from '@base-ui/react';
import { cva, cx, type VariantProps } from 'class-variance-authority';
import { ReactNode } from 'react';
Expand Down
2 changes: 2 additions & 0 deletions packages/raystack/components/flex/flex.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { mergeProps, useRender } from '@base-ui/react';
import { cva, VariantProps } from 'class-variance-authority';
import styles from './flex.module.css';
Expand Down
2 changes: 2 additions & 0 deletions packages/raystack/components/grid/grid-item.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { mergeProps, useRender } from '@base-ui/react';
import { AlignType } from './types';

Expand Down
2 changes: 2 additions & 0 deletions packages/raystack/components/grid/grid.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { mergeProps, useRender } from '@base-ui/react';
import { useMemo } from 'react';
import { AlignExtendedType, AlignType } from './types';
Expand Down
2 changes: 2 additions & 0 deletions packages/raystack/components/radio/radio.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { Radio as RadioPrimitive } from '@base-ui/react/radio';
import { RadioGroup as RadioGroupPrimitive } from '@base-ui/react/radio-group';
import { cx } from 'class-variance-authority';
Expand Down
2 changes: 2 additions & 0 deletions packages/raystack/components/separator/separator.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { Separator as SeparatorPrimitive } from '@base-ui/react/separator';
import { cva, type VariantProps } from 'class-variance-authority';

Expand Down
2 changes: 2 additions & 0 deletions packages/raystack/components/switch/switch.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { Switch as SwitchPrimitive } from '@base-ui/react/switch';
import { cva, type VariantProps } from 'class-variance-authority';

Expand Down
2 changes: 2 additions & 0 deletions packages/raystack/components/tabs/tabs.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { Tabs as TabsPrimitive } from '@base-ui/react';
import { cva, cx, type VariantProps } from 'class-variance-authority';
import { ReactNode } from 'react';
Expand Down
Loading