@carbonid1/design-system 4.2.0 → 5.0.0
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.
- package/LICENSE +21 -0
- package/package.json +19 -2
- package/src/Badge/Badge.tsx +53 -0
- package/src/Badge/Badge.types.ts +17 -0
- package/src/index.ts +3 -2
- package/src/ProgressRing/ProgressRing.test.tsx +0 -51
- package/src/Switch/Switch.test.tsx +0 -31
- package/src/Switch/Switch.tsx +0 -41
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Andrew Korin
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbonid1/design-system",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Shared React UI primitives + design tokens (themes, postcss config)",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -43,6 +43,23 @@
|
|
|
43
43
|
"react-hotkeys-hook": "^5.0.0",
|
|
44
44
|
"tailwind-merge": "^3.0.0"
|
|
45
45
|
},
|
|
46
|
+
"peerDependenciesMeta": {
|
|
47
|
+
"@base-ui/react": {
|
|
48
|
+
"optional": true
|
|
49
|
+
},
|
|
50
|
+
"class-variance-authority": {
|
|
51
|
+
"optional": true
|
|
52
|
+
},
|
|
53
|
+
"clsx": {
|
|
54
|
+
"optional": true
|
|
55
|
+
},
|
|
56
|
+
"lucide-react": {
|
|
57
|
+
"optional": true
|
|
58
|
+
},
|
|
59
|
+
"tailwind-merge": {
|
|
60
|
+
"optional": true
|
|
61
|
+
}
|
|
62
|
+
},
|
|
46
63
|
"publishConfig": {
|
|
47
64
|
"access": "public"
|
|
48
65
|
},
|
|
@@ -72,7 +89,7 @@
|
|
|
72
89
|
"tailwindcss": "^4.2.2",
|
|
73
90
|
"vite": "^8.0.8",
|
|
74
91
|
"vitest": "^4.1.4",
|
|
75
|
-
"@carbonid1/tsconfig": "0.
|
|
92
|
+
"@carbonid1/tsconfig": "0.3.0"
|
|
76
93
|
},
|
|
77
94
|
"scripts": {
|
|
78
95
|
"storybook": "storybook dev -p 6006",
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
'use client'
|
|
2
|
+
|
|
3
|
+
import { cn } from '../helpers/cn/cn'
|
|
4
|
+
import { cva } from 'class-variance-authority'
|
|
5
|
+
import { X } from 'lucide-react'
|
|
6
|
+
import type { BadgeProps } from './Badge.types'
|
|
7
|
+
|
|
8
|
+
const badgeVariants = cva(
|
|
9
|
+
'inline-flex max-w-full min-w-0 items-center gap-1 rounded-full px-2 py-0.5 text-xs font-medium',
|
|
10
|
+
{
|
|
11
|
+
variants: {
|
|
12
|
+
variant: {
|
|
13
|
+
default: 'bg-muted text-muted-foreground',
|
|
14
|
+
primary: 'bg-primary-border/30 text-primary',
|
|
15
|
+
success: 'bg-success/15 text-success-foreground',
|
|
16
|
+
attention: 'bg-attention-muted text-attention-foreground',
|
|
17
|
+
destructive: 'bg-destructive/15 text-destructive',
|
|
18
|
+
highlight: 'bg-highlight-muted text-highlight-foreground',
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
defaultVariants: { variant: 'default' },
|
|
22
|
+
},
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
const Badge = ({
|
|
26
|
+
className,
|
|
27
|
+
variant,
|
|
28
|
+
onRemove,
|
|
29
|
+
removeLabel,
|
|
30
|
+
children,
|
|
31
|
+
...props
|
|
32
|
+
}: BadgeProps) => {
|
|
33
|
+
const resolvedRemoveLabel =
|
|
34
|
+
removeLabel ?? (typeof children === 'string' ? `Remove ${children}` : 'Remove')
|
|
35
|
+
|
|
36
|
+
return (
|
|
37
|
+
<span className={cn(badgeVariants({ variant }), className)} {...props}>
|
|
38
|
+
{onRemove ? <span className="truncate">{children}</span> : children}
|
|
39
|
+
{onRemove && (
|
|
40
|
+
<button
|
|
41
|
+
type="button"
|
|
42
|
+
aria-label={resolvedRemoveLabel}
|
|
43
|
+
onClick={onRemove}
|
|
44
|
+
className="-me-0.5 inline-flex size-4 shrink-0 cursor-pointer items-center justify-center rounded-full opacity-70 hover:opacity-100 focus-visible:ring-2 focus-visible:ring-current focus-visible:ring-offset-1 focus-visible:ring-offset-transparent focus-visible:outline-none"
|
|
45
|
+
>
|
|
46
|
+
<X className="size-3" aria-hidden="true" />
|
|
47
|
+
</button>
|
|
48
|
+
)}
|
|
49
|
+
</span>
|
|
50
|
+
)
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export { Badge, badgeVariants }
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { HTMLAttributes } from 'react'
|
|
2
|
+
import type { VariantProps } from 'class-variance-authority'
|
|
3
|
+
import type { badgeVariants } from './Badge'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* `variant` communicates emphasis, not meaning — always pair it with
|
|
7
|
+
* descriptive text content so the badge isn't relying on color alone.
|
|
8
|
+
*/
|
|
9
|
+
type BadgeProps = HTMLAttributes<HTMLSpanElement> &
|
|
10
|
+
VariantProps<typeof badgeVariants> & {
|
|
11
|
+
/** When set, renders an inline dismiss button after the label. */
|
|
12
|
+
onRemove?: () => void
|
|
13
|
+
/** A11y label for the dismiss button. Defaults to `Remove ${children}` when children is a string, otherwise `Remove`. */
|
|
14
|
+
removeLabel?: string
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export type { BadgeProps }
|
package/src/index.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export { Badge, badgeVariants } from './Badge/Badge'
|
|
2
|
+
export type { BadgeProps } from './Badge/Badge.types'
|
|
3
|
+
|
|
1
4
|
export { Button, buttonVariants } from './Button/Button'
|
|
2
5
|
export type { ButtonProps } from './Button/Button.types'
|
|
3
6
|
|
|
@@ -8,8 +11,6 @@ export { ProgressRing } from './ProgressRing/ProgressRing'
|
|
|
8
11
|
|
|
9
12
|
export { Slider } from './Slider/Slider'
|
|
10
13
|
|
|
11
|
-
export { Switch } from './Switch/Switch'
|
|
12
|
-
|
|
13
14
|
export { ContextMenu } from './ContextMenu/ContextMenu'
|
|
14
15
|
|
|
15
16
|
export { Select } from './Select/Select'
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import { render, screen } from '@testing-library/react'
|
|
2
|
-
import { describe, expect, it } from 'vitest'
|
|
3
|
-
import { ProgressRing } from './ProgressRing'
|
|
4
|
-
import { CIRCUMFERENCE } from './ProgressRing.consts'
|
|
5
|
-
|
|
6
|
-
describe('ProgressRing', () => {
|
|
7
|
-
it('renders zero dashoffset at 0% progress', () => {
|
|
8
|
-
render(<ProgressRing progress={0} colorClass="text-primary" label="Empty" testId="ring" />)
|
|
9
|
-
const circle = screen.getByTestId('ring')
|
|
10
|
-
const offset = Number(circle.getAttribute('stroke-dashoffset'))
|
|
11
|
-
expect(offset).toBeCloseTo(CIRCUMFERENCE, 1)
|
|
12
|
-
})
|
|
13
|
-
|
|
14
|
-
it('renders correct dashoffset at 50% progress', () => {
|
|
15
|
-
render(<ProgressRing progress={0.5} colorClass="text-primary" label="Half" testId="ring" />)
|
|
16
|
-
const circle = screen.getByTestId('ring')
|
|
17
|
-
const offset = Number(circle.getAttribute('stroke-dashoffset'))
|
|
18
|
-
expect(offset).toBeCloseTo(CIRCUMFERENCE * 0.5, 1)
|
|
19
|
-
})
|
|
20
|
-
|
|
21
|
-
it('renders zero dashoffset at 100% progress', () => {
|
|
22
|
-
render(<ProgressRing progress={1} colorClass="text-success" label="Full" testId="ring" />)
|
|
23
|
-
const circle = screen.getByTestId('ring')
|
|
24
|
-
const offset = Number(circle.getAttribute('stroke-dashoffset'))
|
|
25
|
-
expect(offset).toBeCloseTo(0, 1)
|
|
26
|
-
})
|
|
27
|
-
|
|
28
|
-
it('applies colorClass to fill circle', () => {
|
|
29
|
-
render(<ProgressRing progress={0.5} colorClass="text-success" label="Test" testId="ring" />)
|
|
30
|
-
const circle = screen.getByTestId('ring')
|
|
31
|
-
expect(circle.classList.toString()).toContain('text-success')
|
|
32
|
-
})
|
|
33
|
-
|
|
34
|
-
it('applies pulse animation when animate is true', () => {
|
|
35
|
-
render(<ProgressRing progress={0.5} colorClass="text-primary" label="Pulsing" animate />)
|
|
36
|
-
const svg = screen.getByRole('img', { hidden: true })
|
|
37
|
-
expect(svg.classList.toString()).toContain('animate-buffer-pulse')
|
|
38
|
-
})
|
|
39
|
-
|
|
40
|
-
it('does not apply pulse animation when animate is false', () => {
|
|
41
|
-
render(<ProgressRing progress={0.5} colorClass="text-primary" label="Idle" />)
|
|
42
|
-
const svg = screen.getByRole('img', { hidden: true })
|
|
43
|
-
expect(svg.classList.toString()).not.toContain('animate-buffer-pulse')
|
|
44
|
-
})
|
|
45
|
-
|
|
46
|
-
it('sets aria-label from label prop', () => {
|
|
47
|
-
render(<ProgressRing progress={0.5} colorClass="text-primary" label="42 paragraphs ready" />)
|
|
48
|
-
const svg = screen.getByRole('img', { hidden: true })
|
|
49
|
-
expect(svg.getAttribute('aria-label')).toBe('42 paragraphs ready')
|
|
50
|
-
})
|
|
51
|
-
})
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { cleanup, render, screen } from '@testing-library/react'
|
|
2
|
-
import userEvent from '@testing-library/user-event'
|
|
3
|
-
import { afterEach, describe, expect, it, vi } from 'vitest'
|
|
4
|
-
import { Switch } from './Switch'
|
|
5
|
-
|
|
6
|
-
afterEach(cleanup)
|
|
7
|
-
|
|
8
|
-
describe('Switch', () => {
|
|
9
|
-
it('renders as a switch with the correct checked state', () => {
|
|
10
|
-
render(<Switch checked={true} onChange={() => {}} aria-label="Toggle" />)
|
|
11
|
-
expect(screen.getByRole('switch')).toBeChecked()
|
|
12
|
-
})
|
|
13
|
-
|
|
14
|
-
it('calls onChange when clicked', async () => {
|
|
15
|
-
const user = userEvent.setup()
|
|
16
|
-
const onChange = vi.fn()
|
|
17
|
-
render(<Switch checked={false} onChange={onChange} aria-label="Toggle" />)
|
|
18
|
-
|
|
19
|
-
await user.click(screen.getByRole('switch'))
|
|
20
|
-
expect(onChange).toHaveBeenCalledWith(true)
|
|
21
|
-
})
|
|
22
|
-
|
|
23
|
-
it('does not call onChange when disabled', async () => {
|
|
24
|
-
const user = userEvent.setup()
|
|
25
|
-
const onChange = vi.fn()
|
|
26
|
-
render(<Switch checked={false} onChange={onChange} disabled aria-label="Toggle" />)
|
|
27
|
-
|
|
28
|
-
await user.click(screen.getByRole('switch'))
|
|
29
|
-
expect(onChange).not.toHaveBeenCalled()
|
|
30
|
-
})
|
|
31
|
-
})
|
package/src/Switch/Switch.tsx
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
'use client'
|
|
2
|
-
|
|
3
|
-
import { cn } from '../helpers/cn/cn'
|
|
4
|
-
import { Switch as SwitchPrimitive } from '@base-ui/react/switch'
|
|
5
|
-
|
|
6
|
-
type SwitchProps = {
|
|
7
|
-
checked: boolean
|
|
8
|
-
onChange: (checked: boolean) => void
|
|
9
|
-
disabled?: boolean
|
|
10
|
-
'aria-label'?: string
|
|
11
|
-
className?: string
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export const Switch = ({
|
|
15
|
-
checked,
|
|
16
|
-
onChange,
|
|
17
|
-
disabled,
|
|
18
|
-
'aria-label': ariaLabel,
|
|
19
|
-
className,
|
|
20
|
-
}: SwitchProps) => (
|
|
21
|
-
<SwitchPrimitive.Root
|
|
22
|
-
checked={checked}
|
|
23
|
-
onCheckedChange={checked => onChange(checked)}
|
|
24
|
-
disabled={disabled}
|
|
25
|
-
aria-label={ariaLabel}
|
|
26
|
-
className={cn(
|
|
27
|
-
'relative inline-flex h-6 w-11 shrink-0 cursor-pointer items-center rounded-full transition-colors',
|
|
28
|
-
'focus-visible:ring-ring/50 focus-visible:border-ring focus-visible:ring-3 focus-visible:outline-hidden',
|
|
29
|
-
checked ? 'bg-primary' : 'bg-input',
|
|
30
|
-
disabled && 'pointer-events-none opacity-50',
|
|
31
|
-
className,
|
|
32
|
-
)}
|
|
33
|
-
>
|
|
34
|
-
<SwitchPrimitive.Thumb
|
|
35
|
-
className={cn(
|
|
36
|
-
'bg-background pointer-events-none block size-[18px] rounded-full shadow-sm transition-transform',
|
|
37
|
-
checked ? 'translate-x-5.5' : 'translate-x-[3px]',
|
|
38
|
-
)}
|
|
39
|
-
/>
|
|
40
|
-
</SwitchPrimitive.Root>
|
|
41
|
-
)
|