@arclux/arc-ui-react 1.9.2 → 1.10.1

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 (77) 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/data/AnimatedNumber.ts +23 -0
  12. package/src/data/Badge.ts +19 -0
  13. package/src/data/DataTable.ts +35 -0
  14. package/src/data/List.ts +28 -0
  15. package/src/data/ListItem.ts +27 -0
  16. package/src/data/Meter.ts +23 -0
  17. package/src/data/Stat.ts +20 -0
  18. package/src/data/Step.ts +17 -0
  19. package/src/data/Stepper.ts +18 -0
  20. package/src/data/Table.ts +20 -0
  21. package/src/data/Tag.ts +25 -0
  22. package/src/data/Timeline.ts +17 -0
  23. package/src/data/TimelineItem.ts +18 -0
  24. package/src/data/ValueCard.ts +19 -0
  25. package/src/feedback/Announcement.ts +18 -0
  26. package/src/feedback/Banner.ts +23 -0
  27. package/src/feedback/CommandPalette.ts +0 -1
  28. package/src/feedback/Confirm.ts +26 -0
  29. package/src/feedback/ConnectionStatus.ts +24 -0
  30. package/src/feedback/Dialog.ts +1 -3
  31. package/src/feedback/DropdownMenu.ts +0 -1
  32. package/src/feedback/GuidedTour.ts +27 -0
  33. package/src/feedback/HoverCard.ts +1 -1
  34. package/src/feedback/InlineMessage.ts +17 -0
  35. package/src/feedback/LoadingOverlay.ts +19 -0
  36. package/src/feedback/Popover.ts +1 -1
  37. package/src/feedback/ProgressToast.ts +24 -0
  38. package/src/feedback/Sheet.ts +0 -2
  39. package/src/feedback/Snackbar.ts +25 -0
  40. package/src/feedback/Spotlight.ts +23 -0
  41. package/src/feedback/index.ts +30 -0
  42. package/src/index.ts +120 -0
  43. package/src/input/ButtonGroup.ts +19 -0
  44. package/src/input/Fieldset.ts +23 -0
  45. package/src/input/Hotkey.ts +23 -0
  46. package/src/input/InputGroup.ts +19 -0
  47. package/src/input/Label.ts +22 -0
  48. package/src/input/SwitchGroup.ts +20 -0
  49. package/src/input/index.ts +18 -0
  50. package/src/layout/AspectGrid.ts +19 -0
  51. package/src/layout/Center.ts +19 -0
  52. package/src/layout/Cluster.ts +19 -0
  53. package/src/layout/Dock.ts +20 -0
  54. package/src/layout/FloatBar.ts +18 -0
  55. package/src/layout/Inset.ts +18 -0
  56. package/src/layout/Masonry.ts +18 -0
  57. package/src/layout/ResponsiveSwitcher.ts +18 -0
  58. package/src/layout/Sticky.ts +22 -0
  59. package/src/layout/index.ts +27 -0
  60. package/src/navigation/AnchorNav.ts +23 -0
  61. package/src/navigation/BottomNav.ts +22 -0
  62. package/src/navigation/BreadcrumbMenu.ts +22 -0
  63. package/src/navigation/CommandBar.ts +25 -0
  64. package/src/navigation/Drawer.ts +0 -2
  65. package/src/navigation/PageIndicator.ts +23 -0
  66. package/src/navigation/Rail.ts +23 -0
  67. package/src/navigation/SkipLink.ts +17 -0
  68. package/src/navigation/SpeedDial.ts +26 -0
  69. package/src/navigation/StepperNav.ts +25 -0
  70. package/src/navigation/Tabs.ts +0 -1
  71. package/src/navigation/index.ts +27 -0
  72. package/src/typography/CodeBlock.ts +21 -0
  73. package/src/typography/Highlight.ts +19 -0
  74. package/src/typography/Kbd.ts +16 -0
  75. package/src/typography/Markdown.ts +17 -0
  76. package/src/typography/Text.ts +18 -0
  77. package/src/typography/Truncate.ts +22 -0
@@ -0,0 +1,27 @@
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 { ArcGuidedTour } from '@arclux/arc-ui';
6
+
7
+ export interface GuidedTourProps {
8
+ steps?: string;
9
+ active?: string;
10
+ open?: boolean;
11
+ className?: string;
12
+ children?: React.ReactNode;
13
+ onArcChange?: (e: CustomEvent) => void;
14
+ onArcComplete?: (e: CustomEvent) => void;
15
+ onArcDismiss?: (e: CustomEvent) => void;
16
+ }
17
+
18
+ export const GuidedTour = createComponent({
19
+ tagName: 'arc-guided-tour',
20
+ elementClass: ArcGuidedTour,
21
+ react: React,
22
+ events: {
23
+ onArcChange: 'arc-change' as EventName<CustomEvent>,
24
+ onArcComplete: 'arc-complete' as EventName<CustomEvent>,
25
+ onArcDismiss: 'arc-dismiss' as EventName<CustomEvent>,
26
+ },
27
+ });
@@ -5,7 +5,7 @@ import { createComponent, type EventName } from '@lit/react';
5
5
  import { ArcHoverCard } from '@arclux/arc-ui';
6
6
 
7
7
  export interface HoverCardProps {
8
- position?: 'bottom' | 'top' | 'left' | 'right';
8
+ position?: string;
9
9
  openDelay?: number;
10
10
  closeDelay?: number;
11
11
  _visible?: string;
@@ -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 { ArcInlineMessage } from '@arclux/arc-ui';
6
+
7
+ export interface InlineMessageProps {
8
+ variant?: string;
9
+ className?: string;
10
+ children?: React.ReactNode;
11
+ }
12
+
13
+ export const InlineMessage = createComponent({
14
+ tagName: 'arc-inline-message',
15
+ elementClass: ArcInlineMessage,
16
+ react: React,
17
+ });
@@ -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 { ArcLoadingOverlay } from '@arclux/arc-ui';
6
+
7
+ export interface LoadingOverlayProps {
8
+ active?: boolean;
9
+ message?: string;
10
+ global?: boolean;
11
+ className?: string;
12
+ children?: React.ReactNode;
13
+ }
14
+
15
+ export const LoadingOverlay = createComponent({
16
+ tagName: 'arc-loading-overlay',
17
+ elementClass: ArcLoadingOverlay,
18
+ react: React,
19
+ });
@@ -6,7 +6,7 @@ import { ArcPopover } from '@arclux/arc-ui';
6
6
 
7
7
  export interface PopoverProps {
8
8
  open?: boolean;
9
- position?: 'bottom' | 'top' | 'left' | 'right';
9
+ position?: string;
10
10
  trigger?: string;
11
11
  className?: string;
12
12
  children?: React.ReactNode;
@@ -0,0 +1,24 @@
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 { ArcProgressToast } from '@arclux/arc-ui';
6
+
7
+ export interface ProgressToastProps {
8
+ position?: 'bottom-right' | 'top-right';
9
+ _toasts?: string;
10
+ className?: string;
11
+ children?: React.ReactNode;
12
+ onArcComplete?: (e: CustomEvent) => void;
13
+ onArcCancel?: (e: CustomEvent) => void;
14
+ }
15
+
16
+ export const ProgressToast = createComponent({
17
+ tagName: 'arc-progress-toast',
18
+ elementClass: ArcProgressToast,
19
+ react: React,
20
+ events: {
21
+ onArcComplete: 'arc-complete' as EventName<CustomEvent>,
22
+ onArcCancel: 'arc-cancel' as EventName<CustomEvent>,
23
+ },
24
+ });
@@ -12,7 +12,6 @@ export interface SheetProps {
12
12
  children?: React.ReactNode;
13
13
  onArcClose?: (e: CustomEvent) => void;
14
14
  onArcOpen?: (e: CustomEvent) => void;
15
- onClick?: (e: Event) => void;
16
15
  }
17
16
 
18
17
  export const Sheet = createComponent({
@@ -22,6 +21,5 @@ export const Sheet = createComponent({
22
21
  events: {
23
22
  onArcClose: 'arc-close' as EventName<CustomEvent>,
24
23
  onArcOpen: 'arc-open' as EventName<CustomEvent>,
25
- onClick: 'click' as EventName<Event>,
26
24
  },
27
25
  });
@@ -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 { ArcSnackbar } from '@arclux/arc-ui';
6
+
7
+ export interface SnackbarProps {
8
+ position?: 'bottom-center' | 'bottom-left' | 'bottom-right';
9
+ duration?: number;
10
+ _snackbars?: string;
11
+ className?: string;
12
+ children?: React.ReactNode;
13
+ onArcAction?: (e: CustomEvent) => void;
14
+ onArcDismiss?: (e: CustomEvent) => void;
15
+ }
16
+
17
+ export const Snackbar = createComponent({
18
+ tagName: 'arc-snackbar',
19
+ elementClass: ArcSnackbar,
20
+ react: React,
21
+ events: {
22
+ onArcAction: 'arc-action' as EventName<CustomEvent>,
23
+ onArcDismiss: 'arc-dismiss' as EventName<CustomEvent>,
24
+ },
25
+ });
@@ -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 { ArcSpotlight } from '@arclux/arc-ui';
6
+
7
+ export interface SpotlightProps {
8
+ target?: string;
9
+ active?: boolean;
10
+ padding?: number;
11
+ className?: string;
12
+ children?: React.ReactNode;
13
+ onArcDismiss?: (e: CustomEvent) => void;
14
+ }
15
+
16
+ export const Spotlight = createComponent({
17
+ tagName: 'arc-spotlight',
18
+ elementClass: ArcSpotlight,
19
+ react: React,
20
+ events: {
21
+ onArcDismiss: 'arc-dismiss' as EventName<CustomEvent>,
22
+ },
23
+ });
@@ -42,3 +42,33 @@ export type { ToastProps } from './Toast.js';
42
42
 
43
43
  export { Tooltip } from './Tooltip.js';
44
44
  export type { TooltipProps } from './Tooltip.js';
45
+
46
+ export { Announcement } from './Announcement.js';
47
+ export type { AnnouncementProps } from './Announcement.js';
48
+
49
+ export { Banner } from './Banner.js';
50
+ export type { BannerProps } from './Banner.js';
51
+
52
+ export { Confirm } from './Confirm.js';
53
+ export type { ConfirmProps } from './Confirm.js';
54
+
55
+ export { ConnectionStatus } from './ConnectionStatus.js';
56
+ export type { ConnectionStatusProps } from './ConnectionStatus.js';
57
+
58
+ export { GuidedTour } from './GuidedTour.js';
59
+ export type { GuidedTourProps } from './GuidedTour.js';
60
+
61
+ export { InlineMessage } from './InlineMessage.js';
62
+ export type { InlineMessageProps } from './InlineMessage.js';
63
+
64
+ export { LoadingOverlay } from './LoadingOverlay.js';
65
+ export type { LoadingOverlayProps } from './LoadingOverlay.js';
66
+
67
+ export { ProgressToast } from './ProgressToast.js';
68
+ export type { ProgressToastProps } from './ProgressToast.js';
69
+
70
+ export { Snackbar } from './Snackbar.js';
71
+ export type { SnackbarProps } from './Snackbar.js';
72
+
73
+ export { Spotlight } from './Spotlight.js';
74
+ export type { SpotlightProps } from './Spotlight.js';
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
+ });