// Auto-generated by @arclux/prism 3.1.1 — do not edit manually
// Opt-in JSX typings for using these custom elements directly in Solid 1
// — no wrapper. The wrapper package is the other supported path; both are.
//
// Add this file to your program. Either in tsconfig:
//
// { "include": ["src", "node_modules/@arclux/arc-ui/types/solid-jsx.d.ts"] }
//
// or from one file in the project:
//
// ///
//
// NOT `{ "types": ["@arclux/arc-ui/solid-jsx"] }` and NOT
// `/// `. Both look right and both
// silently do nothing: TypeScript resolves a `types` entry as a *package*
// — node_modules/@types/, or /package.json#types — and never
// follows an export-map subpath. Nothing resolves, nothing is included,
// every tag stays untyped, and there is no diagnostic. A `files` entry
// pointing outside the consuming project is a third silent no-op.
export {};
type ArcBaseAttributes = {
children?: unknown;
ref?: unknown;
class?: string;
classList?: Record;
style?: unknown;
id?: string;
slot?: string;
part?: string;
hidden?: boolean;
title?: string;
role?: string;
tabindex?: number | string;
} & { [attr: `data-${string}`]: unknown } & { [attr: `aria-${string}`]: unknown } & {
[directive: `on:${string}`]: unknown;
[directive: `oncapture:${string}`]: unknown;
[directive: `prop:${string}`]: unknown;
[directive: `attr:${string}`]: unknown;
[directive: `use:${string}`]: unknown;
[attr: `on${string}`]: unknown;
};
declare module 'solid-js/jsx-runtime' {
namespace JSX {
interface IntrinsicElements {
'arc-accordion': ArcBaseAttributes & {
multiple?: boolean;
};
'arc-accordion-item': ArcBaseAttributes & {
question?: string;
};
'arc-activity-heatmap': ArcBaseAttributes & {
data?: Array<{date: string, value: number, label?: string}>;
'end-date'?: string;
endDate?: string;
weeks?: number | string;
'week-start'?: 'sunday' | 'monday';
weekStart?: 'sunday' | 'monday';
max?: number | string;
legend?: boolean;
};
'arc-alert': ArcBaseAttributes & {
variant?: 'info' | 'tip' | 'success' | 'warning' | 'error';
live?: 'auto' | 'off' | 'polite' | 'assertive';
density?: 'default' | 'compact';
dismissible?: boolean;
heading?: string;
};
'arc-anchor-nav': ArcBaseAttributes & {
orientation?: 'vertical' | 'horizontal';
value?: string;
items?: Array<{label: string, value: string}>;
};
'arc-animated-number': ArcBaseAttributes & {
value?: number | string;
duration?: number | string;
format?: 'number' | 'currency' | 'percent';
prefix?: string;
suffix?: string;
decimals?: number | string;
locale?: string;
};
'arc-announcement': ArcBaseAttributes & {
politeness?: 'polite' | 'assertive';
message?: string;
};
'arc-app-shell': ArcBaseAttributes & {
'sidebar-open'?: boolean;
sidebarOpen?: boolean;
embedded?: boolean;
breakpoint?: number | string;
};
'arc-aspect-grid': ArcBaseAttributes & {
columns?: number | string;
ratio?: '1/1' | '16/9' | '4/3';
gap?: 'sm' | 'md' | 'lg';
};
'arc-aspect-ratio': ArcBaseAttributes & {
ratio?: string;
};
'arc-auth-shell': ArcBaseAttributes & {
variant?: 'centered' | 'split';
};
'arc-avatar': ArcBaseAttributes & {
src?: string;
name?: string;
size?: 'sm' | 'md' | 'lg';
shape?: 'circle' | 'square' | 'rounded';
status?: '' | 'online' | 'offline' | 'busy' | 'away';
};
'arc-avatar-group': ArcBaseAttributes & {
max?: number | string;
overlap?: 'sm' | 'md' | 'lg';
};
'arc-badge': ArcBaseAttributes & {
variant?: 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info';
size?: 'sm' | 'md' | 'lg';
color?: string;
};
'arc-banner': ArcBaseAttributes & {
variant?: 'info' | 'success' | 'warning' | 'error';
dismissible?: boolean;
sticky?: boolean;
};
'arc-blockquote': ArcBaseAttributes & {
cite?: string;
variant?: 'default' | 'accent';
};
'arc-bottom-nav': ArcBaseAttributes & {
items?: Array<{label: string, icon?: string, value: string}>;
value?: string;
};
'arc-breadcrumb': ArcBaseAttributes & {
separator?: string;
label?: string;
};
'arc-breadcrumb-item': ArcBaseAttributes & {
href?: string;
};
'arc-breadcrumb-menu': ArcBaseAttributes & {
items?: Array<{label: string, href?: string, siblings?: Array<{label: string, href?: string}>}>;
label?: string;
};
'arc-button': ArcBaseAttributes & {
variant?: 'primary' | 'secondary' | 'ghost';
size?: 'sm' | 'md' | 'lg';
href?: string;
disabled?: boolean;
loading?: boolean;
type?: 'button' | 'submit' | 'reset';
};
'arc-button-group': ArcBaseAttributes & {
orientation?: 'horizontal' | 'vertical';
size?: 'sm' | 'md' | 'lg';
variant?: string;
};
'arc-calendar': ArcBaseAttributes & {
locale?: string;
'first-day-of-week'?: 0|1|2|3|4|5|6|7;
firstDayOfWeek?: 0|1|2|3|4|5|6|7;
value?: string;
min?: string;
max?: string;
month?: number | string;
year?: number | string;
};
'arc-card': ArcBaseAttributes & {
href?: string;
padding?: 'none' | 'sm' | 'md' | 'lg';
interactive?: boolean;
};
'arc-carousel': ArcBaseAttributes & {
'auto-play'?: boolean;
autoPlay?: boolean;
interval?: number | string;
loop?: boolean;
'show-dots'?: boolean;
showDots?: boolean;
'show-arrows'?: boolean;
showArrows?: boolean;
};
'arc-center': ArcBaseAttributes & {
'max-width'?: string;
maxWidth?: string;
intrinsic?: boolean;
text?: boolean;
};
'arc-chart': ArcBaseAttributes & {
type?: 'line' | 'area' | 'bar' | 'donut';
series?: Array<{label:string,data:number[]}>;
labels?: string[];
stacked?: boolean;
'hide-legend'?: boolean;
hideLegend?: boolean;
'hide-axis'?: boolean;
hideAxis?: boolean;
height?: number | string;
'value-format'?: 'number' | 'percent' | 'currency';
valueFormat?: 'number' | 'percent' | 'currency';
currency?: string;
};
'arc-checkbox': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
checked?: boolean;
indeterminate?: boolean;
disabled?: boolean;
size?: 'sm' | 'md' | 'lg';
label?: string;
name?: string;
value?: string;
};
'arc-chip': ArcBaseAttributes & {
selected?: boolean;
disabled?: boolean;
value?: string;
};
'arc-clock': ArcBaseAttributes & {
variant?: 'digital' | 'analog';
timezone?: string;
label?: string;
'show-seconds'?: boolean;
showSeconds?: boolean;
hour12?: boolean;
'show-timezone'?: boolean;
showTimezone?: boolean;
};
'arc-code-block': ArcBaseAttributes & {
language?: string;
filename?: string;
code?: string;
variant?: 'default' | 'window' | 'basic';
};
'arc-collapsible': ArcBaseAttributes & {
open?: boolean;
heading?: string;
};
'arc-color-picker': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
size?: 'sm' | 'md' | 'lg';
value?: string;
name?: string;
presets?: string[];
disabled?: boolean;
label?: string;
};
'arc-color-swatch': ArcBaseAttributes & {
color?: string;
label?: string;
size?: 'sm' | 'md' | 'lg';
};
'arc-combobox': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
size?: 'sm' | 'md' | 'lg';
value?: string;
placeholder?: string;
label?: string;
name?: string;
disabled?: boolean;
};
'arc-command-bar': ArcBaseAttributes & {
placeholder?: string;
value?: string;
icon?: string;
label?: string;
};
'arc-command-group': ArcBaseAttributes & {
heading?: string;
};
'arc-command-item': ArcBaseAttributes & {
shortcut?: string;
icon?: string;
keywords?: string;
description?: string;
value?: string;
};
'arc-command-palette': ArcBaseAttributes & {
open?: boolean;
placeholder?: string;
'max-results'?: number | string;
maxResults?: number | string;
};
'arc-comparison': ArcBaseAttributes & {
features?: string[];
};
'arc-comparison-column': ArcBaseAttributes & {
heading?: string;
highlight?: boolean;
values?: string[];
};
'arc-confirm': ArcBaseAttributes & {
open?: boolean;
heading?: string;
message?: string;
'confirm-label'?: string;
confirmLabel?: string;
'cancel-label'?: string;
cancelLabel?: string;
variant?: 'default' | 'error';
};
'arc-connection-status': ArcBaseAttributes;
'arc-container': ArcBaseAttributes & {
narrow?: boolean;
size?: 'sm' | 'md' | 'lg' | 'xl' | 'full';
padding?: 'none' | 'sm' | 'md' | 'lg';
};
'arc-context-menu': ArcBaseAttributes & {
open?: boolean;
};
'arc-conversation': ArcBaseAttributes & {
'auto-scroll'?: boolean;
autoScroll?: boolean;
};
'arc-copy-button': ArcBaseAttributes & {
value?: string;
disabled?: boolean;
};
'arc-countdown-timer': ArcBaseAttributes & {
target?: string;
label?: string;
expired?: string;
'hide-zero-segments'?: boolean;
hideZeroSegments?: boolean;
};
'arc-cta-banner': ArcBaseAttributes & {
eyebrow?: string;
headline?: string;
nogradient?: boolean;
};
'arc-dashboard-grid': ArcBaseAttributes & {
columns?: number | string;
gap?: string;
'min-column-width'?: string;
minColumnWidth?: string;
};
'arc-data-grid': ArcBaseAttributes & {
columns?: Array<{key:string,label:string,sortable?:boolean,editable?:boolean,pinned?:boolean,width?:string,align?:string}>;
rows?: Array>;
sort?: Array<{key:string,direction:'asc'|'desc'}>;
'manual-sort'?: boolean;
manualSort?: boolean;
selectable?: boolean;
virtual?: boolean;
'row-height'?: number | string;
rowHeight?: number | string;
overscan?: number | string;
density?: 'default' | 'compact';
striped?: boolean;
};
'arc-date-picker': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
size?: 'sm' | 'md' | 'lg';
value?: string;
name?: string;
min?: string;
max?: string;
placeholder?: string;
disabled?: boolean;
label?: string;
open?: boolean;
locale?: string;
'first-day-of-week'?: number | string;
firstDayOfWeek?: number | string;
};
'arc-date-range-picker': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
size?: 'sm' | 'md' | 'lg';
locale?: string;
'first-day-of-week'?: number | string;
firstDayOfWeek?: number | string;
start?: string;
end?: string;
name?: string;
min?: string;
max?: string;
months?: number | string;
presets?: Array<{label:string,days:number}>;
placeholder?: string;
disabled?: boolean;
label?: string;
open?: boolean;
};
'arc-description-item': ArcBaseAttributes & {
term?: string;
};
'arc-description-list': ArcBaseAttributes & {
columns?: number | string;
layout?: 'stacked' | 'horizontal';
dividers?: boolean;
};
'arc-dialog': ArcBaseAttributes & {
open?: boolean;
heading?: string;
size?: 'sm' | 'md' | 'lg';
fullscreen?: boolean;
dismissible?: boolean;
};
'arc-diff': ArcBaseAttributes & {
original?: string;
revised?: string;
mode?: 'inline' | 'side-by-side';
};
'arc-divider': ArcBaseAttributes & {
variant?: 'subtle' | 'glow' | 'line-white' | 'line-primary' | 'line-gradient' | 'dashed' | 'dotted' | 'fade' | 'line';
align?: '' | 'left' | 'right';
vertical?: boolean;
label?: string;
};
'arc-drawer': ArcBaseAttributes & {
open?: boolean;
position?: 'left' | 'right';
heading?: string;
};
'arc-dropdown-menu': ArcBaseAttributes & {
open?: boolean;
};
'arc-empty-state': ArcBaseAttributes & {
heading?: string;
description?: string;
};
'arc-feature-card': ArcBaseAttributes & {
icon?: string;
heading?: string;
description?: string;
href?: string;
action?: string;
};
'arc-fieldset': ArcBaseAttributes & {
legend?: string;
description?: string;
disabled?: boolean;
error?: string;
variant?: 'default' | 'card';
};
'arc-file-upload': ArcBaseAttributes & {
accept?: string;
multiple?: boolean;
'max-size'?: number | string;
maxSize?: number | string;
disabled?: boolean;
};
'arc-float-bar': ArcBaseAttributes & {
open?: boolean;
position?: 'bottom' | 'top';
};
'arc-footer': ArcBaseAttributes & {
density?: 'default' | 'compact';
border?: boolean;
contained?: string;
align?: 'left' | 'center';
};
'arc-form': ArcBaseAttributes & {
action?: string;
method?: string;
novalidate?: boolean;
loading?: boolean;
disabled?: boolean;
'error-summary'?: boolean;
errorSummary?: boolean;
};
'arc-gauge': ArcBaseAttributes & {
value?: number | string;
min?: number | string;
max?: number | string;
low?: number | string;
high?: number | string;
optimum?: number | string;
label?: string;
unit?: string;
variant?: 'full' | 'half';
'show-value'?: boolean;
showValue?: boolean;
};
'arc-gradient-text': ArcBaseAttributes & {
variant?: 'accent' | 'display' | 'sunset' | 'ocean' | 'custom';
gradient?: string;
animated?: boolean;
};
'arc-highlight': ArcBaseAttributes & {
text?: string;
query?: string;
'case-sensitive'?: boolean;
caseSensitive?: boolean;
};
'arc-hotkey': ArcBaseAttributes & {
keys?: string;
disabled?: boolean;
global?: boolean;
};
'arc-hotspot': ArcBaseAttributes & {
x?: number | string;
y?: number | string;
label?: string;
open?: boolean;
};
'arc-hover-card': ArcBaseAttributes & {
position?: 'bottom' | 'top' | 'left' | 'right';
'open-delay'?: number | string;
openDelay?: number | string;
'close-delay'?: number | string;
closeDelay?: number | string;
};
'arc-icon': ArcBaseAttributes & {
name?: string;
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
label?: string;
};
'arc-icon-button': ArcBaseAttributes & {
name?: string;
text?: string;
variant?: 'ghost' | 'secondary' | 'primary';
size?: 'xs' | 'sm' | 'md' | 'lg';
label?: string;
href?: string;
disabled?: boolean;
type?: string;
};
'arc-image': ArcBaseAttributes & {
src?: string;
alt?: string;
aspect?: '' | '1/1' | '4/3' | '16/9' | '21/9' | '3/4' | '9/16';
fit?: 'cover' | 'contain' | 'fill' | 'none' | 'scale-down';
loading?: 'lazy' | 'eager';
fallback?: string;
};
'arc-image-compare': ArcBaseAttributes & {
position?: number | string;
orientation?: 'horizontal' | 'vertical';
'before-label'?: string;
beforeLabel?: string;
'after-label'?: string;
afterLabel?: string;
label?: string;
};
'arc-image-cropper': ArcBaseAttributes & {
src?: string;
height?: number | string;
aspect?: number | string;
zoom?: number | string;
};
'arc-image-hotspots': ArcBaseAttributes;
'arc-infinite-scroll': ArcBaseAttributes & {
threshold?: number | string;
loading?: boolean;
finished?: boolean;
disabled?: boolean;
};
'arc-inline-edit': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
value?: string;
label?: string;
name?: string;
placeholder?: string;
multiline?: boolean;
disabled?: boolean;
};
'arc-input': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
type?: 'text' | 'email' | 'tel' | 'url' | 'password';
name?: string;
label?: string;
placeholder?: string;
value?: string;
disabled?: boolean;
error?: string;
size?: 'sm' | 'md' | 'lg';
multiline?: boolean;
rows?: number | string;
};
'arc-input-group': ArcBaseAttributes & {
size?: 'sm' | 'md' | 'lg';
};
'arc-inset': ArcBaseAttributes & {
space?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
bleed?: boolean;
};
'arc-json-tree': ArcBaseAttributes & {
data?: Record;
json?: string;
expanded?: number | boolean;
'keys-quoted'?: boolean;
keysQuoted?: boolean;
};
'arc-kanban': ArcBaseAttributes & {
columns?: Array<{id:string,title?:string,limit?:number,items:Array<{id:string,label:string,description?:string,tag?:string,variant?:string}>}>;
disabled?: boolean;
};
'arc-kbd': ArcBaseAttributes;
'arc-keyboard-map': ArcBaseAttributes & {
layout?: 'compact' | 'ansi';
highlight?: string|string[];
labels?: boolean;
platform?: 'auto' | 'mac' | 'win';
caption?: string;
};
'arc-knob': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
size?: 'sm' | 'md' | 'lg';
value?: number | string;
min?: number | string;
max?: number | string;
step?: number | string;
name?: string;
disabled?: boolean;
label?: string;
detents?: number[];
format?: Function;
};
'arc-label': ArcBaseAttributes & {
for?: string;
required?: boolean;
size?: 'sm' | 'md' | 'lg';
disabled?: boolean;
};
'arc-level-meter': ArcBaseAttributes & {
value?: number | string;
min?: number | string;
max?: number | string;
peak?: number | string;
orientation?: 'vertical' | 'horizontal';
segments?: number | string;
warn?: number | string;
clip?: number | string;
label?: string;
};
'arc-lightbox': ArcBaseAttributes & {
images?: unknown[];
index?: number | string;
open?: boolean;
};
'arc-link': ArcBaseAttributes & {
href?: string;
variant?: 'default' | 'muted' | 'nav';
underline?: 'hover' | 'always' | 'never';
active?: boolean;
external?: boolean;
};
'arc-list': ArcBaseAttributes & {
variant?: 'default' | 'bordered' | 'separated';
size?: 'sm' | 'md' | 'lg';
selectable?: boolean;
multiple?: boolean;
value?: string;
label?: string;
};
'arc-list-item': ArcBaseAttributes & {
value?: string;
selected?: boolean;
disabled?: boolean;
href?: string;
};
'arc-loading-overlay': ArcBaseAttributes & {
active?: boolean;
message?: string;
global?: boolean;
};
'arc-markdown': ArcBaseAttributes & {
content?: string;
};
'arc-marquee': ArcBaseAttributes & {
speed?: number | string;
direction?: 'left' | 'right';
'pause-on-hover'?: boolean;
pauseOnHover?: boolean;
gap?: string;
};
'arc-masked-input': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
mask?: string;
value?: string;
'placeholder-char'?: string;
placeholderChar?: string;
label?: string;
name?: string;
disabled?: boolean;
autocomplete?: string;
error?: string;
size?: 'sm' | 'md' | 'lg';
};
'arc-masonry': ArcBaseAttributes & {
columns?: number | string;
gap?: 'sm' | 'md' | 'lg';
};
'arc-menu-divider': ArcBaseAttributes;
'arc-menu-item': ArcBaseAttributes & {
label?: string;
shortcut?: string;
disabled?: boolean;
icon?: string;
value?: string;
};
'arc-menubar': ArcBaseAttributes & {
items?: Array<{label:string,disabled?:boolean,items:Array<{label?:string,shortcut?:string,disabled?:boolean,divider?:boolean,items?:Array<{label:string,shortcut?:string,disabled?:boolean}>}>}>;
};
'arc-message': ArcBaseAttributes & {
speaker?: 'user' | 'assistant' | 'system';
author?: string;
timestamp?: string;
pending?: boolean;
markdown?: boolean;
};
'arc-meter': ArcBaseAttributes & {
value?: number | string;
min?: number | string;
max?: number | string;
low?: number | string;
high?: number | string;
optimum?: number | string;
label?: string;
};
'arc-multi-select': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
size?: 'sm' | 'md' | 'lg';
value?: string[];
placeholder?: string;
label?: string;
name?: string;
disabled?: boolean;
};
'arc-nav-item': ArcBaseAttributes & {
href?: string;
active?: boolean;
variant?: 'default' | 'primary' | 'muted';
description?: string;
};
'arc-navigation-menu': ArcBaseAttributes & {
label?: string;
};
'arc-notification-panel': ArcBaseAttributes & {
open?: boolean;
position?: 'top-right' | 'top-left';
'max-height'?: string;
maxHeight?: string;
};
'arc-number-format': ArcBaseAttributes & {
value?: number | string;
type?: 'number' | 'currency' | 'percent' | 'compact';
locale?: string;
currency?: string;
decimals?: number | string;
notation?: 'standard' | 'compact';
};
'arc-number-input': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
size?: 'sm' | 'md' | 'lg';
value?: number | string;
min?: number | string;
max?: number | string;
step?: number | string;
label?: string;
name?: string;
disabled?: boolean;
};
'arc-option': ArcBaseAttributes & {
value?: string;
disabled?: boolean;
selected?: boolean;
};
'arc-page-header': ArcBaseAttributes & {
heading?: string;
description?: string;
border?: boolean;
};
'arc-page-indicator': ArcBaseAttributes & {
count?: number | string;
value?: number | string;
clickable?: boolean;
};
'arc-page-layout': ArcBaseAttributes & {
layout?: 'sidebar-left' | 'sidebar-right' | 'centered' | 'wide';
'max-width'?: string;
maxWidth?: string;
gap?: string;
};
'arc-pagination': ArcBaseAttributes & {
total?: number | string;
current?: number | string;
siblings?: number | string;
compact?: boolean;
};
'arc-password-input': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
name?: string;
label?: string;
placeholder?: string;
value?: string;
disabled?: boolean;
error?: string;
size?: 'sm' | 'md' | 'lg';
autocomplete?: string;
'show-strength'?: boolean;
showStrength?: boolean;
};
'arc-pin-input': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
size?: 'sm' | 'md' | 'lg';
length?: number | string;
value?: string;
name?: string;
disabled?: boolean;
mask?: boolean;
type?: 'number' | 'alphanumeric' | 'text';
separator?: number | string;
label?: string;
};
'arc-popover': ArcBaseAttributes & {
open?: boolean;
position?: 'top' | 'bottom' | 'left' | 'right';
trigger?: string;
};
'arc-progress': ArcBaseAttributes & {
value?: number | string;
variant?: 'bar' | 'spinner';
size?: 'sm' | 'md' | 'lg';
indeterminate?: boolean;
'show-value'?: boolean;
showValue?: boolean;
label?: string;
};
'arc-prose': ArcBaseAttributes & {
size?: 'sm' | 'md' | 'lg';
};
'arc-qr-code': ArcBaseAttributes & {
value?: string;
size?: number | string;
level?: 'L' | 'M' | 'Q' | 'H';
label?: string;
'quiet-zone'?: number | string;
quietZone?: number | string;
contrast?: boolean;
};
'arc-radio': ArcBaseAttributes & {
value?: string;
disabled?: boolean;
};
'arc-radio-group': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
value?: string;
name?: string;
disabled?: boolean;
size?: 'sm' | 'md' | 'lg';
orientation?: 'vertical' | 'horizontal';
};
'arc-rail': ArcBaseAttributes & {
items?: Array<{icon: string, label: string, value: string}>;
value?: string;
expanded?: boolean;
};
'arc-range-slider': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
size?: 'sm' | 'md' | 'lg';
min?: number | string;
max?: number | string;
step?: number | string;
low?: number | string;
high?: number | string;
name?: string;
disabled?: boolean;
label?: string;
'show-values'?: boolean;
showValues?: boolean;
};
'arc-rating': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
size?: 'sm' | 'md' | 'lg';
value?: number | string;
max?: number | string;
name?: string;
label?: string;
disabled?: boolean;
};
'arc-resizable': ArcBaseAttributes & {
direction?: 'horizontal' | 'vertical';
'min-size'?: number | string;
minSize?: number | string;
'max-size'?: number | string;
maxSize?: number | string;
size?: number | string;
};
'arc-responsive-switcher': ArcBaseAttributes & {
threshold?: string;
gap?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
};
'arc-scroll-area': ArcBaseAttributes & {
'max-height'?: string;
maxHeight?: string;
orientation?: 'vertical' | 'horizontal' | 'both';
};
'arc-scroll-indicator': ArcBaseAttributes & {
target?: string;
position?: 'top' | 'bottom';
size?: 'sm' | 'md' | 'lg';
color?: 'accent' | 'gradient';
};
'arc-scroll-spy': ArcBaseAttributes & {
active?: string;
offset?: number | string;
progress?: 'none' | 'ring' | 'read' | 'both';
};
'arc-scroll-to-top': ArcBaseAttributes & {
threshold?: number | string;
smooth?: boolean;
position?: 'bottom-right' | 'bottom-left';
offset?: string;
};
'arc-search': ArcBaseAttributes & {
value?: string;
placeholder?: string;
label?: string;
disabled?: boolean;
loading?: boolean;
open?: boolean;
};
'arc-section': ArcBaseAttributes & {
label?: string;
};
'arc-segmented-control': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
value?: string;
name?: string;
disabled?: boolean;
};
'arc-select': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
value?: string;
placeholder?: string;
label?: string;
name?: string;
disabled?: boolean;
size?: 'sm' | 'md' | 'lg';
error?: string;
open?: boolean;
};
'arc-settings-layout': ArcBaseAttributes & {
'nav-position'?: 'left' | 'top';
navPosition?: 'left' | 'top';
};
'arc-sheet': ArcBaseAttributes & {
open?: boolean;
side?: 'bottom' | 'right';
heading?: string;
};
'arc-sidebar': ArcBaseAttributes & {
active?: string;
collapsed?: boolean;
position?: 'left' | 'right';
width?: string;
glow?: boolean;
label?: string;
};
'arc-sidebar-link': ArcBaseAttributes & {
href?: string;
active?: boolean;
level?: number | string;
icon?: string;
external?: boolean;
};
'arc-sidebar-section': ArcBaseAttributes & {
heading?: string;
collapsible?: boolean;
open?: boolean;
icon?: string;
};
'arc-signature-pad': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
value?: string;
name?: string;
label?: string;
disabled?: boolean;
'pen-color'?: string;
penColor?: string;
'pen-width'?: number | string;
penWidth?: number | string;
};
'arc-skeleton': ArcBaseAttributes & {
variant?: 'text' | 'circle' | 'rect';
width?: string;
height?: string;
count?: number | string;
};
'arc-skip-link': ArcBaseAttributes & {
target?: string;
};
'arc-slider': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
size?: 'sm' | 'md' | 'lg';
value?: number | string;
min?: number | string;
max?: number | string;
step?: number | string;
name?: string;
disabled?: boolean;
label?: string;
};
'arc-sortable-list': ArcBaseAttributes & {
disabled?: boolean;
};
'arc-sparkline': ArcBaseAttributes & {
data?: string;
type?: 'line' | 'bar';
color?: string;
width?: number | string;
height?: number | string;
fill?: boolean;
};
'arc-spinner': ArcBaseAttributes & {
size?: 'sm' | 'md' | 'lg';
variant?: 'primary' | 'secondary' | 'white';
};
'arc-split-pane': ArcBaseAttributes & {
orientation?: 'horizontal' | 'vertical';
ratio?: number | string;
'min-ratio'?: number | string;
minRatio?: number | string;
'max-ratio'?: number | string;
maxRatio?: number | string;
label?: string;
};
'arc-spy-link': ArcBaseAttributes & {
target?: string;
level?: number | string;
};
'arc-stack': ArcBaseAttributes & {
direction?: 'vertical' | 'horizontal';
gap?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
align?: 'start' | 'center' | 'end' | 'stretch';
justify?: 'start' | 'center' | 'end' | 'between' | 'around';
wrap?: boolean;
};
'arc-stat': ArcBaseAttributes & {
value?: string;
label?: string;
trend?: '' | 'up' | 'down' | 'neutral';
change?: string;
};
'arc-status-bar': ArcBaseAttributes & {
position?: 'static' | 'fixed';
};
'arc-step': ArcBaseAttributes & {
label?: string;
};
'arc-stepper': ArcBaseAttributes & {
active?: number | string;
};
'arc-stepper-nav': ArcBaseAttributes & {
steps?: Array;
active?: number | string;
linear?: boolean;
};
'arc-sticky': ArcBaseAttributes & {
offset?: string;
stuck?: boolean;
};
'arc-suggestion': ArcBaseAttributes & {
value?: string;
};
'arc-switch-group': ArcBaseAttributes & {
label?: string;
orientation?: 'vertical' | 'horizontal';
size?: 'sm' | 'md' | 'lg';
disabled?: boolean;
};
'arc-tab': ArcBaseAttributes & {
label?: string;
disabled?: boolean;
};
'arc-tabs': ArcBaseAttributes & {
selected?: number | string;
align?: 'start' | 'center' | 'end';
variant?: 'underline' | 'pills';
orientation?: 'horizontal' | 'vertical';
};
'arc-tag': ArcBaseAttributes & {
variant?: 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info';
size?: 'sm' | 'md' | 'lg';
removable?: boolean;
disabled?: boolean;
color?: string;
};
'arc-tag-input': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
size?: 'sm' | 'md' | 'lg';
value?: string[];
suggestions?: string[];
delimiter?: string;
'max-tags'?: number | string;
maxTags?: number | string;
'allow-custom'?: boolean;
allowCustom?: boolean;
label?: string;
placeholder?: string;
name?: string;
disabled?: boolean;
error?: string;
};
'arc-terminal': ArcBaseAttributes & {
lines?: unknown[];
prompt?: string;
title?: string;
speed?: number | string;
autoplay?: boolean;
loop?: boolean;
};
'arc-text': ArcBaseAttributes & {
variant?: 'display' | 'heading' | 'body' | 'muted' | 'ghost' | 'accent' | 'label' | 'wordmark' | 'code';
as?: 'p' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'span';
};
'arc-textarea': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
value?: string;
name?: string;
placeholder?: string;
label?: string;
rows?: number | string;
maxlength?: number | string;
disabled?: boolean;
resize?: 'none' | 'vertical' | 'horizontal' | 'both';
size?: 'sm' | 'md' | 'lg';
'auto-resize'?: boolean;
autoResize?: boolean;
error?: string;
};
'arc-theme-toggle': ArcBaseAttributes & {
theme?: 'dark' | 'light' | 'auto';
disabled?: boolean;
'icon-only'?: boolean;
iconOnly?: boolean;
size?: 'xs' | 'sm' | 'md' | 'lg';
};
'arc-time-ago': ArcBaseAttributes & {
datetime?: string;
live?: boolean;
locale?: string;
};
'arc-time-picker': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
size?: 'sm' | 'md' | 'lg';
value?: string;
name?: string;
min?: string;
max?: string;
step?: 1 | 5 | 15 | 30;
format?: '12h' | '24h';
placeholder?: string;
disabled?: boolean;
label?: string;
open?: boolean;
};
'arc-timeline': ArcBaseAttributes & {
'heading-level'?: number | string;
headingLevel?: number | string;
};
'arc-timeline-item': ArcBaseAttributes & {
heading?: string;
date?: string;
};
'arc-toast': ArcBaseAttributes & {
position?: 'top-right' | 'top-left' | 'top-center' | 'bottom-right' | 'bottom-left' | 'bottom-center';
duration?: number | string;
'max-visible'?: number | string;
maxVisible?: number | string;
dedupe?: boolean;
'queue-limit'?: number | string;
queueLimit?: number | string;
};
'arc-toggle': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
checked?: boolean;
disabled?: boolean;
size?: 'sm' | 'md' | 'lg';
label?: string;
name?: string;
};
'arc-toolbar': ArcBaseAttributes & {
sticky?: boolean;
size?: 'sm' | 'md' | 'lg';
border?: boolean;
overflow?: boolean;
};
'arc-tooltip': ArcBaseAttributes & {
content?: string;
position?: 'top' | 'bottom' | 'left' | 'right';
delay?: number | string;
};
'arc-top-bar': ArcBaseAttributes & {
heading?: string;
'home-href'?: string;
homeHref?: string;
scrolled?: boolean;
immersive?: boolean;
fixed?: boolean;
contained?: string;
'menu-open'?: boolean;
menuOpen?: boolean;
'mobile-menu'?: string;
mobileMenu?: string;
'menu-position'?: string;
menuPosition?: string;
'nav-align'?: 'left' | 'center' | 'right';
navAlign?: 'left' | 'center' | 'right';
};
'arc-transfer-list': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
size?: 'sm' | 'md' | 'lg';
options?: Array<{value:string,label:string,disabled?:boolean}>;
value?: string[];
name?: string;
disabled?: boolean;
searchable?: boolean;
'source-label'?: string;
sourceLabel?: string;
'target-label'?: string;
targetLabel?: string;
};
'arc-tree-item': ArcBaseAttributes & {
label?: string;
icon?: string;
expanded?: boolean;
};
'arc-tree-select': ArcBaseAttributes & {
required?: boolean;
readonly?: boolean;
items?: Array<{value: string, label: string, children?: Array