@arclux/arc-ui-react 1.9.2 → 1.10.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.
Files changed (56) hide show
  1. package/package.json +2 -2
  2. package/src/content/Avatar.ts +1 -0
  3. package/src/content/DataTable.ts +4 -0
  4. package/src/content/Image.ts +29 -0
  5. package/src/content/List.ts +28 -0
  6. package/src/content/ListItem.ts +27 -0
  7. package/src/content/ScrollIndicator.ts +21 -0
  8. package/src/content/Separator.ts +19 -0
  9. package/src/content/VirtualList.ts +21 -0
  10. package/src/content/index.ts +15 -0
  11. package/src/feedback/Announcement.ts +18 -0
  12. package/src/feedback/Banner.ts +23 -0
  13. package/src/feedback/CommandPalette.ts +0 -1
  14. package/src/feedback/Confirm.ts +26 -0
  15. package/src/feedback/ConnectionStatus.ts +24 -0
  16. package/src/feedback/Dialog.ts +1 -3
  17. package/src/feedback/DropdownMenu.ts +0 -1
  18. package/src/feedback/GuidedTour.ts +27 -0
  19. package/src/feedback/HoverCard.ts +1 -1
  20. package/src/feedback/InlineMessage.ts +17 -0
  21. package/src/feedback/LoadingOverlay.ts +19 -0
  22. package/src/feedback/Popover.ts +1 -1
  23. package/src/feedback/ProgressToast.ts +24 -0
  24. package/src/feedback/Sheet.ts +0 -2
  25. package/src/feedback/Snackbar.ts +25 -0
  26. package/src/feedback/Spotlight.ts +23 -0
  27. package/src/feedback/index.ts +30 -0
  28. package/src/index.ts +120 -0
  29. package/src/input/ButtonGroup.ts +19 -0
  30. package/src/input/Fieldset.ts +23 -0
  31. package/src/input/Hotkey.ts +23 -0
  32. package/src/input/InputGroup.ts +19 -0
  33. package/src/input/Label.ts +22 -0
  34. package/src/input/SwitchGroup.ts +20 -0
  35. package/src/input/index.ts +18 -0
  36. package/src/layout/AspectGrid.ts +19 -0
  37. package/src/layout/Center.ts +19 -0
  38. package/src/layout/Cluster.ts +19 -0
  39. package/src/layout/Dock.ts +20 -0
  40. package/src/layout/FloatBar.ts +18 -0
  41. package/src/layout/Inset.ts +18 -0
  42. package/src/layout/Masonry.ts +18 -0
  43. package/src/layout/ResponsiveSwitcher.ts +18 -0
  44. package/src/layout/Sticky.ts +22 -0
  45. package/src/layout/index.ts +27 -0
  46. package/src/navigation/AnchorNav.ts +23 -0
  47. package/src/navigation/BottomNav.ts +22 -0
  48. package/src/navigation/BreadcrumbMenu.ts +22 -0
  49. package/src/navigation/CommandBar.ts +25 -0
  50. package/src/navigation/Drawer.ts +0 -2
  51. package/src/navigation/PageIndicator.ts +23 -0
  52. package/src/navigation/Rail.ts +23 -0
  53. package/src/navigation/SkipLink.ts +17 -0
  54. package/src/navigation/SpeedDial.ts +26 -0
  55. package/src/navigation/StepperNav.ts +25 -0
  56. package/src/navigation/index.ts +27 -0
package/src/index.ts CHANGED
@@ -358,3 +358,123 @@ export type { CtaBannerProps } from './content/CtaBanner.js';
358
358
 
359
359
  export { IconLibrary } from './content/IconLibrary.js';
360
360
  export type { IconLibraryProps } from './content/IconLibrary.js';
361
+
362
+ export { Image } from './content/Image.js';
363
+ export type { ImageProps } from './content/Image.js';
364
+
365
+ export { ListItem } from './content/ListItem.js';
366
+ export type { ListItemProps } from './content/ListItem.js';
367
+
368
+ export { List } from './content/List.js';
369
+ export type { ListProps } from './content/List.js';
370
+
371
+ export { ScrollIndicator } from './content/ScrollIndicator.js';
372
+ export type { ScrollIndicatorProps } from './content/ScrollIndicator.js';
373
+
374
+ export { Separator } from './content/Separator.js';
375
+ export type { SeparatorProps } from './content/Separator.js';
376
+
377
+ export { VirtualList } from './content/VirtualList.js';
378
+ export type { VirtualListProps } from './content/VirtualList.js';
379
+
380
+ export { ButtonGroup } from './input/ButtonGroup.js';
381
+ export type { ButtonGroupProps } from './input/ButtonGroup.js';
382
+
383
+ export { Fieldset } from './input/Fieldset.js';
384
+ export type { FieldsetProps } from './input/Fieldset.js';
385
+
386
+ export { InputGroup } from './input/InputGroup.js';
387
+ export type { InputGroupProps } from './input/InputGroup.js';
388
+
389
+ export { Label } from './input/Label.js';
390
+ export type { LabelProps } from './input/Label.js';
391
+
392
+ export { SwitchGroup } from './input/SwitchGroup.js';
393
+ export type { SwitchGroupProps } from './input/SwitchGroup.js';
394
+
395
+ export { Hotkey } from './input/Hotkey.js';
396
+ export type { HotkeyProps } from './input/Hotkey.js';
397
+
398
+ export { AnchorNav } from './navigation/AnchorNav.js';
399
+ export type { AnchorNavProps } from './navigation/AnchorNav.js';
400
+
401
+ export { BottomNav } from './navigation/BottomNav.js';
402
+ export type { BottomNavProps } from './navigation/BottomNav.js';
403
+
404
+ export { BreadcrumbMenu } from './navigation/BreadcrumbMenu.js';
405
+ export type { BreadcrumbMenuProps } from './navigation/BreadcrumbMenu.js';
406
+
407
+ export { CommandBar } from './navigation/CommandBar.js';
408
+ export type { CommandBarProps } from './navigation/CommandBar.js';
409
+
410
+ export { PageIndicator } from './navigation/PageIndicator.js';
411
+ export type { PageIndicatorProps } from './navigation/PageIndicator.js';
412
+
413
+ export { Rail } from './navigation/Rail.js';
414
+ export type { RailProps } from './navigation/Rail.js';
415
+
416
+ export { SkipLink } from './navigation/SkipLink.js';
417
+ export type { SkipLinkProps } from './navigation/SkipLink.js';
418
+
419
+ export { SpeedDial } from './navigation/SpeedDial.js';
420
+ export type { SpeedDialProps } from './navigation/SpeedDial.js';
421
+
422
+ export { StepperNav } from './navigation/StepperNav.js';
423
+ export type { StepperNavProps } from './navigation/StepperNav.js';
424
+
425
+ export { AspectGrid } from './layout/AspectGrid.js';
426
+ export type { AspectGridProps } from './layout/AspectGrid.js';
427
+
428
+ export { Center } from './layout/Center.js';
429
+ export type { CenterProps } from './layout/Center.js';
430
+
431
+ export { Cluster } from './layout/Cluster.js';
432
+ export type { ClusterProps } from './layout/Cluster.js';
433
+
434
+ export { Dock } from './layout/Dock.js';
435
+ export type { DockProps } from './layout/Dock.js';
436
+
437
+ export { FloatBar } from './layout/FloatBar.js';
438
+ export type { FloatBarProps } from './layout/FloatBar.js';
439
+
440
+ export { Inset } from './layout/Inset.js';
441
+ export type { InsetProps } from './layout/Inset.js';
442
+
443
+ export { Masonry } from './layout/Masonry.js';
444
+ export type { MasonryProps } from './layout/Masonry.js';
445
+
446
+ export { ResponsiveSwitcher } from './layout/ResponsiveSwitcher.js';
447
+ export type { ResponsiveSwitcherProps } from './layout/ResponsiveSwitcher.js';
448
+
449
+ export { Sticky } from './layout/Sticky.js';
450
+ export type { StickyProps } from './layout/Sticky.js';
451
+
452
+ export { Announcement } from './feedback/Announcement.js';
453
+ export type { AnnouncementProps } from './feedback/Announcement.js';
454
+
455
+ export { Banner } from './feedback/Banner.js';
456
+ export type { BannerProps } from './feedback/Banner.js';
457
+
458
+ export { Confirm } from './feedback/Confirm.js';
459
+ export type { ConfirmProps } from './feedback/Confirm.js';
460
+
461
+ export { ConnectionStatus } from './feedback/ConnectionStatus.js';
462
+ export type { ConnectionStatusProps } from './feedback/ConnectionStatus.js';
463
+
464
+ export { GuidedTour } from './feedback/GuidedTour.js';
465
+ export type { GuidedTourProps } from './feedback/GuidedTour.js';
466
+
467
+ export { InlineMessage } from './feedback/InlineMessage.js';
468
+ export type { InlineMessageProps } from './feedback/InlineMessage.js';
469
+
470
+ export { LoadingOverlay } from './feedback/LoadingOverlay.js';
471
+ export type { LoadingOverlayProps } from './feedback/LoadingOverlay.js';
472
+
473
+ export { ProgressToast } from './feedback/ProgressToast.js';
474
+ export type { ProgressToastProps } from './feedback/ProgressToast.js';
475
+
476
+ export { Snackbar } from './feedback/Snackbar.js';
477
+ export type { SnackbarProps } from './feedback/Snackbar.js';
478
+
479
+ export { Spotlight } from './feedback/Spotlight.js';
480
+ export type { SpotlightProps } from './feedback/Spotlight.js';
@@ -0,0 +1,19 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcButtonGroup } from '@arclux/arc-ui';
6
+
7
+ export interface ButtonGroupProps {
8
+ orientation?: 'vertical';
9
+ size?: string;
10
+ variant?: string;
11
+ className?: string;
12
+ children?: React.ReactNode;
13
+ }
14
+
15
+ export const ButtonGroup = createComponent({
16
+ tagName: 'arc-button-group',
17
+ elementClass: ArcButtonGroup,
18
+ react: React,
19
+ });
@@ -0,0 +1,23 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcFieldset } from '@arclux/arc-ui';
6
+
7
+ export interface FieldsetProps {
8
+ legend?: string;
9
+ description?: string;
10
+ disabled?: boolean;
11
+ error?: string;
12
+ variant?: 'card';
13
+ _hasLegend?: string;
14
+ _hasActions?: string;
15
+ className?: string;
16
+ children?: React.ReactNode;
17
+ }
18
+
19
+ export const Fieldset = createComponent({
20
+ tagName: 'arc-fieldset',
21
+ elementClass: ArcFieldset,
22
+ react: React,
23
+ });
@@ -0,0 +1,23 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcHotkey } from '@arclux/arc-ui';
6
+
7
+ export interface HotkeyProps {
8
+ keys?: string;
9
+ disabled?: boolean;
10
+ global?: boolean;
11
+ className?: string;
12
+ children?: React.ReactNode;
13
+ onArcTrigger?: (e: CustomEvent) => void;
14
+ }
15
+
16
+ export const Hotkey = createComponent({
17
+ tagName: 'arc-hotkey',
18
+ elementClass: ArcHotkey,
19
+ react: React,
20
+ events: {
21
+ onArcTrigger: 'arc-trigger' as EventName<CustomEvent>,
22
+ },
23
+ });
@@ -0,0 +1,19 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcInputGroup } from '@arclux/arc-ui';
6
+
7
+ export interface InputGroupProps {
8
+ size?: 'sm' | 'lg';
9
+ _hasPrefix?: string;
10
+ _hasSuffix?: string;
11
+ className?: string;
12
+ children?: React.ReactNode;
13
+ }
14
+
15
+ export const InputGroup = createComponent({
16
+ tagName: 'arc-input-group',
17
+ elementClass: ArcInputGroup,
18
+ react: React,
19
+ });
@@ -0,0 +1,22 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcLabel } from '@arclux/arc-ui';
6
+
7
+ export interface LabelProps {
8
+ for?: string;
9
+ required?: boolean;
10
+ size?: 'sm' | 'lg';
11
+ disabled?: boolean;
12
+ _hasDescription?: string;
13
+ _hasTooltip?: string;
14
+ className?: string;
15
+ children?: React.ReactNode;
16
+ }
17
+
18
+ export const Label = createComponent({
19
+ tagName: 'arc-label',
20
+ elementClass: ArcLabel,
21
+ react: React,
22
+ });
@@ -0,0 +1,20 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcSwitchGroup } from '@arclux/arc-ui';
6
+
7
+ export interface SwitchGroupProps {
8
+ label?: string;
9
+ orientation?: 'horizontal';
10
+ size?: string;
11
+ disabled?: boolean;
12
+ className?: string;
13
+ children?: React.ReactNode;
14
+ }
15
+
16
+ export const SwitchGroup = createComponent({
17
+ tagName: 'arc-switch-group',
18
+ elementClass: ArcSwitchGroup,
19
+ react: React,
20
+ });
@@ -84,3 +84,21 @@ export type { ThemeToggleProps } from './ThemeToggle.js';
84
84
 
85
85
  export { Toggle } from './Toggle.js';
86
86
  export type { ToggleProps } from './Toggle.js';
87
+
88
+ export { ButtonGroup } from './ButtonGroup.js';
89
+ export type { ButtonGroupProps } from './ButtonGroup.js';
90
+
91
+ export { Fieldset } from './Fieldset.js';
92
+ export type { FieldsetProps } from './Fieldset.js';
93
+
94
+ export { InputGroup } from './InputGroup.js';
95
+ export type { InputGroupProps } from './InputGroup.js';
96
+
97
+ export { Label } from './Label.js';
98
+ export type { LabelProps } from './Label.js';
99
+
100
+ export { SwitchGroup } from './SwitchGroup.js';
101
+ export type { SwitchGroupProps } from './SwitchGroup.js';
102
+
103
+ export { Hotkey } from './Hotkey.js';
104
+ export type { HotkeyProps } from './Hotkey.js';
@@ -0,0 +1,19 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcAspectGrid } from '@arclux/arc-ui';
6
+
7
+ export interface AspectGridProps {
8
+ columns?: number;
9
+ ratio?: string;
10
+ gap?: 'sm' | 'md' | 'lg';
11
+ className?: string;
12
+ children?: React.ReactNode;
13
+ }
14
+
15
+ export const AspectGrid = createComponent({
16
+ tagName: 'arc-aspect-grid',
17
+ elementClass: ArcAspectGrid,
18
+ react: React,
19
+ });
@@ -0,0 +1,19 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcCenter } from '@arclux/arc-ui';
6
+
7
+ export interface CenterProps {
8
+ maxWidth?: string;
9
+ intrinsic?: boolean;
10
+ text?: boolean;
11
+ className?: string;
12
+ children?: React.ReactNode;
13
+ }
14
+
15
+ export const Center = createComponent({
16
+ tagName: 'arc-center',
17
+ elementClass: ArcCenter,
18
+ react: React,
19
+ });
@@ -0,0 +1,19 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcCluster } from '@arclux/arc-ui';
6
+
7
+ export interface ClusterProps {
8
+ gap?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
9
+ align?: 'start' | 'center' | 'end';
10
+ justify?: 'start' | 'center' | 'end' | 'space-between' | 'space-around';
11
+ className?: string;
12
+ children?: React.ReactNode;
13
+ }
14
+
15
+ export const Cluster = createComponent({
16
+ tagName: 'arc-cluster',
17
+ elementClass: ArcCluster,
18
+ react: React,
19
+ });
@@ -0,0 +1,20 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcDock } from '@arclux/arc-ui';
6
+
7
+ export interface DockProps {
8
+ position?: 'bottom' | 'left' | 'right';
9
+ autoHide?: boolean;
10
+ open?: boolean;
11
+ _hovered?: string;
12
+ className?: string;
13
+ children?: React.ReactNode;
14
+ }
15
+
16
+ export const Dock = createComponent({
17
+ tagName: 'arc-dock',
18
+ elementClass: ArcDock,
19
+ react: React,
20
+ });
@@ -0,0 +1,18 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcFloatBar } from '@arclux/arc-ui';
6
+
7
+ export interface FloatBarProps {
8
+ open?: boolean;
9
+ position?: 'top';
10
+ className?: string;
11
+ children?: React.ReactNode;
12
+ }
13
+
14
+ export const FloatBar = createComponent({
15
+ tagName: 'arc-float-bar',
16
+ elementClass: ArcFloatBar,
17
+ react: React,
18
+ });
@@ -0,0 +1,18 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcInset } from '@arclux/arc-ui';
6
+
7
+ export interface InsetProps {
8
+ space?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
9
+ bleed?: boolean;
10
+ className?: string;
11
+ children?: React.ReactNode;
12
+ }
13
+
14
+ export const Inset = createComponent({
15
+ tagName: 'arc-inset',
16
+ elementClass: ArcInset,
17
+ react: React,
18
+ });
@@ -0,0 +1,18 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcMasonry } from '@arclux/arc-ui';
6
+
7
+ export interface MasonryProps {
8
+ columns?: number;
9
+ gap?: 'sm' | 'md' | 'lg';
10
+ className?: string;
11
+ children?: React.ReactNode;
12
+ }
13
+
14
+ export const Masonry = createComponent({
15
+ tagName: 'arc-masonry',
16
+ elementClass: ArcMasonry,
17
+ react: React,
18
+ });
@@ -0,0 +1,18 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcResponsiveSwitcher } from '@arclux/arc-ui';
6
+
7
+ export interface ResponsiveSwitcherProps {
8
+ threshold?: string;
9
+ gap?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
10
+ className?: string;
11
+ children?: React.ReactNode;
12
+ }
13
+
14
+ export const ResponsiveSwitcher = createComponent({
15
+ tagName: 'arc-responsive-switcher',
16
+ elementClass: ArcResponsiveSwitcher,
17
+ react: React,
18
+ });
@@ -0,0 +1,22 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcSticky } from '@arclux/arc-ui';
6
+
7
+ export interface StickyProps {
8
+ offset?: string;
9
+ stuck?: boolean;
10
+ className?: string;
11
+ children?: React.ReactNode;
12
+ onArcStuck?: (e: CustomEvent) => void;
13
+ }
14
+
15
+ export const Sticky = createComponent({
16
+ tagName: 'arc-sticky',
17
+ elementClass: ArcSticky,
18
+ react: React,
19
+ events: {
20
+ onArcStuck: 'arc-stuck' as EventName<CustomEvent>,
21
+ },
22
+ });
@@ -36,3 +36,30 @@ export type { StatusBarProps } from './StatusBar.js';
36
36
 
37
37
  export { Toolbar } from './Toolbar.js';
38
38
  export type { ToolbarProps } from './Toolbar.js';
39
+
40
+ export { AspectGrid } from './AspectGrid.js';
41
+ export type { AspectGridProps } from './AspectGrid.js';
42
+
43
+ export { Center } from './Center.js';
44
+ export type { CenterProps } from './Center.js';
45
+
46
+ export { Cluster } from './Cluster.js';
47
+ export type { ClusterProps } from './Cluster.js';
48
+
49
+ export { Dock } from './Dock.js';
50
+ export type { DockProps } from './Dock.js';
51
+
52
+ export { FloatBar } from './FloatBar.js';
53
+ export type { FloatBarProps } from './FloatBar.js';
54
+
55
+ export { Inset } from './Inset.js';
56
+ export type { InsetProps } from './Inset.js';
57
+
58
+ export { Masonry } from './Masonry.js';
59
+ export type { MasonryProps } from './Masonry.js';
60
+
61
+ export { ResponsiveSwitcher } from './ResponsiveSwitcher.js';
62
+ export type { ResponsiveSwitcherProps } from './ResponsiveSwitcher.js';
63
+
64
+ export { Sticky } from './Sticky.js';
65
+ export type { StickyProps } from './Sticky.js';
@@ -0,0 +1,23 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcAnchorNav } from '@arclux/arc-ui';
6
+
7
+ export interface AnchorNavProps {
8
+ orientation?: 'vertical';
9
+ value?: string;
10
+ items?: string;
11
+ className?: string;
12
+ children?: React.ReactNode;
13
+ onArcChange?: (e: CustomEvent) => void;
14
+ }
15
+
16
+ export const AnchorNav = createComponent({
17
+ tagName: 'arc-anchor-nav',
18
+ elementClass: ArcAnchorNav,
19
+ react: React,
20
+ events: {
21
+ onArcChange: 'arc-change' as EventName<CustomEvent>,
22
+ },
23
+ });
@@ -0,0 +1,22 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcBottomNav } from '@arclux/arc-ui';
6
+
7
+ export interface BottomNavProps {
8
+ items?: string;
9
+ value?: string;
10
+ className?: string;
11
+ children?: React.ReactNode;
12
+ onArcChange?: (e: CustomEvent) => void;
13
+ }
14
+
15
+ export const BottomNav = createComponent({
16
+ tagName: 'arc-bottom-nav',
17
+ elementClass: ArcBottomNav,
18
+ react: React,
19
+ events: {
20
+ onArcChange: 'arc-change' as EventName<CustomEvent>,
21
+ },
22
+ });
@@ -0,0 +1,22 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcBreadcrumbMenu } from '@arclux/arc-ui';
6
+
7
+ export interface BreadcrumbMenuProps {
8
+ items?: string;
9
+ _openIndex?: number;
10
+ className?: string;
11
+ children?: React.ReactNode;
12
+ onArcNavigate?: (e: CustomEvent) => void;
13
+ }
14
+
15
+ export const BreadcrumbMenu = createComponent({
16
+ tagName: 'arc-breadcrumb-menu',
17
+ elementClass: ArcBreadcrumbMenu,
18
+ react: React,
19
+ events: {
20
+ onArcNavigate: 'arc-navigate' as EventName<CustomEvent>,
21
+ },
22
+ });
@@ -0,0 +1,25 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcCommandBar } from '@arclux/arc-ui';
6
+
7
+ export interface CommandBarProps {
8
+ placeholder?: string;
9
+ value?: string;
10
+ icon?: string;
11
+ className?: string;
12
+ children?: React.ReactNode;
13
+ onArcInput?: (e: CustomEvent) => void;
14
+ onArcSubmit?: (e: CustomEvent) => void;
15
+ }
16
+
17
+ export const CommandBar = createComponent({
18
+ tagName: 'arc-command-bar',
19
+ elementClass: ArcCommandBar,
20
+ react: React,
21
+ events: {
22
+ onArcInput: 'arc-input' as EventName<CustomEvent>,
23
+ onArcSubmit: 'arc-submit' as EventName<CustomEvent>,
24
+ },
25
+ });
@@ -11,7 +11,6 @@ export interface DrawerProps {
11
11
  className?: string;
12
12
  children?: React.ReactNode;
13
13
  onArcClose?: (e: CustomEvent) => void;
14
- onClick?: (e: Event) => void;
15
14
  }
16
15
 
17
16
  export const Drawer = createComponent({
@@ -20,6 +19,5 @@ export const Drawer = createComponent({
20
19
  react: React,
21
20
  events: {
22
21
  onArcClose: 'arc-close' as EventName<CustomEvent>,
23
- onClick: 'click' as EventName<Event>,
24
22
  },
25
23
  });
@@ -0,0 +1,23 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcPageIndicator } from '@arclux/arc-ui';
6
+
7
+ export interface PageIndicatorProps {
8
+ count?: number;
9
+ value?: number;
10
+ clickable?: boolean;
11
+ className?: string;
12
+ children?: React.ReactNode;
13
+ onArcChange?: (e: CustomEvent) => void;
14
+ }
15
+
16
+ export const PageIndicator = createComponent({
17
+ tagName: 'arc-page-indicator',
18
+ elementClass: ArcPageIndicator,
19
+ react: React,
20
+ events: {
21
+ onArcChange: 'arc-change' as EventName<CustomEvent>,
22
+ },
23
+ });
@@ -0,0 +1,23 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcRail } from '@arclux/arc-ui';
6
+
7
+ export interface RailProps {
8
+ items?: string;
9
+ value?: string;
10
+ expanded?: boolean;
11
+ className?: string;
12
+ children?: React.ReactNode;
13
+ onArcChange?: (e: CustomEvent) => void;
14
+ }
15
+
16
+ export const Rail = createComponent({
17
+ tagName: 'arc-rail',
18
+ elementClass: ArcRail,
19
+ react: React,
20
+ events: {
21
+ onArcChange: 'arc-change' as EventName<CustomEvent>,
22
+ },
23
+ });
@@ -0,0 +1,17 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import React from 'react';
4
+ import { createComponent, type EventName } from '@lit/react';
5
+ import { ArcSkipLink } from '@arclux/arc-ui';
6
+
7
+ export interface SkipLinkProps {
8
+ target?: string;
9
+ className?: string;
10
+ children?: React.ReactNode;
11
+ }
12
+
13
+ export const SkipLink = createComponent({
14
+ tagName: 'arc-skip-link',
15
+ elementClass: ArcSkipLink,
16
+ react: React,
17
+ });