Add a Bun script to apply and normalize AGPL copyright headers across the default frontend source files. The script keeps headers idempotent, upgrades existing headers to the 2023-2026 QuantumNous range, and is exposed through `bun run copyright` for future maintenance.
101 lines
3.5 KiB
TypeScript
Vendored
101 lines
3.5 KiB
TypeScript
Vendored
/*
|
|
Copyright (C) 2023-2026 QuantumNous
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
For commercial licensing, please contact support@quantumnous.com
|
|
*/
|
|
import { Accordion as AccordionPrimitive } from '@base-ui/react/accordion'
|
|
import { ArrowDown01Icon, ArrowUp01Icon } from '@hugeicons/core-free-icons'
|
|
import { HugeiconsIcon } from '@hugeicons/react'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
function Accordion({ className, ...props }: AccordionPrimitive.Root.Props) {
|
|
return (
|
|
<AccordionPrimitive.Root
|
|
data-slot='accordion'
|
|
className={cn('flex w-full flex-col', className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function AccordionItem({ className, ...props }: AccordionPrimitive.Item.Props) {
|
|
return (
|
|
<AccordionPrimitive.Item
|
|
data-slot='accordion-item'
|
|
className={cn('not-last:border-b', className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function AccordionTrigger({
|
|
className,
|
|
children,
|
|
...props
|
|
}: AccordionPrimitive.Trigger.Props) {
|
|
return (
|
|
<AccordionPrimitive.Header className='flex'>
|
|
<AccordionPrimitive.Trigger
|
|
data-slot='accordion-trigger'
|
|
className={cn(
|
|
'group/accordion-trigger focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:after:border-ring **:data-[slot=accordion-trigger-icon]:text-muted-foreground relative flex flex-1 items-start justify-between rounded-lg border border-transparent py-2.5 text-left text-sm font-medium transition-all outline-none hover:underline focus-visible:ring-3 aria-disabled:pointer-events-none aria-disabled:opacity-50 **:data-[slot=accordion-trigger-icon]:ml-auto **:data-[slot=accordion-trigger-icon]:size-4',
|
|
className
|
|
)}
|
|
{...props}
|
|
>
|
|
{children}
|
|
<HugeiconsIcon
|
|
icon={ArrowDown01Icon}
|
|
strokeWidth={2}
|
|
data-slot='accordion-trigger-icon'
|
|
className='pointer-events-none shrink-0 group-aria-expanded/accordion-trigger:hidden'
|
|
/>
|
|
<HugeiconsIcon
|
|
icon={ArrowUp01Icon}
|
|
strokeWidth={2}
|
|
data-slot='accordion-trigger-icon'
|
|
className='pointer-events-none hidden shrink-0 group-aria-expanded/accordion-trigger:inline'
|
|
/>
|
|
</AccordionPrimitive.Trigger>
|
|
</AccordionPrimitive.Header>
|
|
)
|
|
}
|
|
|
|
function AccordionContent({
|
|
className,
|
|
children,
|
|
...props
|
|
}: AccordionPrimitive.Panel.Props) {
|
|
return (
|
|
<AccordionPrimitive.Panel
|
|
data-slot='accordion-content'
|
|
className='data-open:animate-accordion-down data-closed:animate-accordion-up overflow-hidden text-sm'
|
|
{...props}
|
|
>
|
|
<div
|
|
className={cn(
|
|
'[&_a]:hover:text-foreground h-(--accordion-panel-height) pt-0 pb-2.5 data-ending-style:h-0 data-starting-style:h-0 [&_a]:underline [&_a]:underline-offset-3 [&_p:not(:last-child)]:mb-4',
|
|
className
|
|
)}
|
|
>
|
|
{children}
|
|
</div>
|
|
</AccordionPrimitive.Panel>
|
|
)
|
|
}
|
|
|
|
export { Accordion, AccordionItem, AccordionTrigger, AccordionContent }
|