Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update "@radui/ui" version to 0.0.36 in Docs #968

Merged
merged 1 commit into from
Mar 23, 2025
Merged
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
8 changes: 4 additions & 4 deletions docs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.2.0",
"@radui/ui": "^0.0.35",
"@radui/ui": "^0.0.36",
"@types/mdx": "^2.0.13",
"@types/node": "20.5.9",
"@types/react": "19.0.2",

Unchanged files with check annotations Beta

// Use RAF to ensure the DOM has updated with the new height
rafRef.current = requestAnimationFrame(() => {
// Force a reflow
const _ = ref.current?.offsetHeight;

Check warning on line 83 in src/core/primitives/Collapsible/fragments/CollapsiblePrimitiveContent.tsx

GitHub Actions / lint

'_' is assigned a value but never used
// Now measure and start animation in the next frame
rafRef.current = requestAnimationFrame(() => {
// Use RAF to ensure browser processes the height setting
rafRef.current = requestAnimationFrame(() => {
// Force a reflow
const _ = ref.current?.offsetHeight;

Check warning on line 107 in src/core/primitives/Collapsible/fragments/CollapsiblePrimitiveContent.tsx

GitHub Actions / lint

'_' is assigned a value but never used
// Then animate to 0 in the next frame
rafRef.current = requestAnimationFrame(() => {
import React, { createContext, useContext } from 'react';

Check warning on line 1 in src/core/primitives/Collapsible/contexts/CollapsiblePrimitiveContext.tsx

GitHub Actions / lint

'React' is defined but never used
/**
* Context value for CollapsiblePrimitive
<form onSubmit={handleSubmit} className="space-y-4">
<div className="flex items-center justify-between">
<label className="text-sm">Enable Notifications</label>

Check warning on line 183 in src/components/ui/Toggle/stories/Toggle.stories.tsx

GitHub Actions / lint

A form label must be associated with a control
<Toggle
pressed={formData.notifications}
onChange={(value) => handleToggle('notifications', value)}
</div>
<div className="flex items-center justify-between">
<label className="text-sm">Dark Mode</label>

Check warning on line 192 in src/components/ui/Toggle/stories/Toggle.stories.tsx

GitHub Actions / lint

A form label must be associated with a control
<Toggle
pressed={formData.darkMode}
onChange={(value) => handleToggle('darkMode', value)}
</div>
<div className="flex items-center justify-between">
<label className="text-sm">Auto-Save</label>

Check warning on line 201 in src/components/ui/Toggle/stories/Toggle.stories.tsx

GitHub Actions / lint

A form label must be associated with a control
<Toggle
pressed={formData.autoSave}
onChange={(value) => handleToggle('autoSave', value)}
import { clsx } from 'clsx';
import { TabProps } from './TabContent';
import TabsRootContext, { TabsRootContextType } from '../context/TabsRootContext';

Check warning on line 6 in src/components/ui/Tabs/fragments/TabTrigger.tsx

GitHub Actions / lint

'TabsRootContextType' is defined but never used
import RovingFocusGroup from '~/core/utils/RovingFocusGroup';

Check warning on line 5 in src/components/ui/Link/Link.tsx

GitHub Actions / lint

'useComposeAttributes' is defined but never used
import React, { forwardRef, PropsWithChildren, useEffect, useState } from 'react';

Check warning on line 1 in src/components/tools/SandboxEditor/SandboxEditor.tsx

GitHub Actions / lint

'forwardRef' is defined but never used
import Button from '~/components/ui/Button/Button';
import Separator from '~/components/ui/Separator/Separator';
import Heading from '~/components/ui/Heading/Heading';
import type { Config } from 'jest';

Check warning on line 1 in jest.config.ts

GitHub Actions / lint

'Config' is defined but never used
const config: Config = {
verbose: false, // enable to see the full test suite output, console.log, etc.