@arclux/arc-ui-solid 1.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.
Files changed (204) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +52 -0
  3. package/package.json +72 -0
  4. package/src/application/AppShell.tsx +19 -0
  5. package/src/application/AuthShell.tsx +19 -0
  6. package/src/application/Breadcrumb.tsx +19 -0
  7. package/src/application/BreadcrumbItem.tsx +19 -0
  8. package/src/application/Container.tsx +19 -0
  9. package/src/application/DashboardGrid.tsx +21 -0
  10. package/src/application/Footer.tsx +20 -0
  11. package/src/application/NavItem.tsx +21 -0
  12. package/src/application/NavigationMenu.tsx +20 -0
  13. package/src/application/NotificationPanel.tsx +21 -0
  14. package/src/application/PageHeader.tsx +20 -0
  15. package/src/application/PageLayout.tsx +21 -0
  16. package/src/application/Resizable.tsx +23 -0
  17. package/src/application/ScrollSpy.tsx +22 -0
  18. package/src/application/Section.tsx +19 -0
  19. package/src/application/SettingsLayout.tsx +19 -0
  20. package/src/application/Sidebar.tsx +23 -0
  21. package/src/application/SidebarLink.tsx +20 -0
  22. package/src/application/SidebarSection.tsx +21 -0
  23. package/src/application/SplitPane.tsx +22 -0
  24. package/src/application/SpyLink.tsx +19 -0
  25. package/src/application/StatusBar.tsx +19 -0
  26. package/src/application/Toolbar.tsx +21 -0
  27. package/src/application/TopBar.tsx +21 -0
  28. package/src/application/index.ts +45 -0
  29. package/src/content/Accordion.tsx +20 -0
  30. package/src/content/AccordionItem.tsx +19 -0
  31. package/src/content/AnimatedNumber.tsx +25 -0
  32. package/src/content/AspectRatio.tsx +19 -0
  33. package/src/content/Avatar.tsx +21 -0
  34. package/src/content/AvatarGroup.tsx +20 -0
  35. package/src/content/Badge.tsx +19 -0
  36. package/src/content/Callout.tsx +19 -0
  37. package/src/content/Card.tsx +19 -0
  38. package/src/content/Carousel.tsx +25 -0
  39. package/src/content/CodeBlock.tsx +22 -0
  40. package/src/content/Collapsible.tsx +20 -0
  41. package/src/content/ColorSwatch.tsx +21 -0
  42. package/src/content/Column.tsx +22 -0
  43. package/src/content/DataTable.tsx +25 -0
  44. package/src/content/Divider.tsx +21 -0
  45. package/src/content/EmptyState.tsx +20 -0
  46. package/src/content/FeatureCard.tsx +22 -0
  47. package/src/content/Highlight.tsx +21 -0
  48. package/src/content/Icon.tsx +21 -0
  49. package/src/content/InfiniteScroll.tsx +22 -0
  50. package/src/content/Kbd.tsx +18 -0
  51. package/src/content/Link.tsx +22 -0
  52. package/src/content/Markdown.tsx +19 -0
  53. package/src/content/Marquee.tsx +22 -0
  54. package/src/content/Meter.tsx +25 -0
  55. package/src/content/ScrollArea.tsx +20 -0
  56. package/src/content/Skeleton.tsx +21 -0
  57. package/src/content/Spinner.tsx +20 -0
  58. package/src/content/Stack.tsx +23 -0
  59. package/src/content/Stat.tsx +20 -0
  60. package/src/content/Step.tsx +19 -0
  61. package/src/content/Stepper.tsx +20 -0
  62. package/src/content/Table.tsx +22 -0
  63. package/src/content/Tag.tsx +21 -0
  64. package/src/content/Text.tsx +20 -0
  65. package/src/content/Timeline.tsx +19 -0
  66. package/src/content/TimelineItem.tsx +20 -0
  67. package/src/content/Truncate.tsx +20 -0
  68. package/src/content/ValueCard.tsx +21 -0
  69. package/src/content/index.ts +89 -0
  70. package/src/feedback/Alert.tsx +21 -0
  71. package/src/feedback/CommandItem.tsx +20 -0
  72. package/src/feedback/CommandPalette.tsx +23 -0
  73. package/src/feedback/ContextMenu.tsx +23 -0
  74. package/src/feedback/Dialog.tsx +22 -0
  75. package/src/feedback/DropdownMenu.tsx +21 -0
  76. package/src/feedback/HoverCard.tsx +22 -0
  77. package/src/feedback/Modal.tsx +22 -0
  78. package/src/feedback/NotificationPanel.tsx +21 -0
  79. package/src/feedback/Popover.tsx +21 -0
  80. package/src/feedback/Progress.tsx +23 -0
  81. package/src/feedback/Sheet.tsx +21 -0
  82. package/src/feedback/Toast.tsx +21 -0
  83. package/src/feedback/Tooltip.tsx +22 -0
  84. package/src/index.ts +257 -0
  85. package/src/input/Button.tsx +23 -0
  86. package/src/input/Calendar.tsx +24 -0
  87. package/src/input/Checkbox.tsx +24 -0
  88. package/src/input/Chip.tsx +21 -0
  89. package/src/input/ColorPicker.tsx +28 -0
  90. package/src/input/Combobox.tsx +26 -0
  91. package/src/input/CopyButton.tsx +21 -0
  92. package/src/input/DatePicker.tsx +28 -0
  93. package/src/input/FileUpload.tsx +25 -0
  94. package/src/input/Form.tsx +21 -0
  95. package/src/input/IconButton.tsx +26 -0
  96. package/src/input/Input.tsx +27 -0
  97. package/src/input/MultiSelect.tsx +26 -0
  98. package/src/input/NumberInput.tsx +24 -0
  99. package/src/input/OtpInput.tsx +22 -0
  100. package/src/input/PinInput.tsx +25 -0
  101. package/src/input/Radio.tsx +20 -0
  102. package/src/input/RadioGroup.tsx +23 -0
  103. package/src/input/Rating.tsx +22 -0
  104. package/src/input/Search.tsx +26 -0
  105. package/src/input/SegmentedControl.tsx +21 -0
  106. package/src/input/Select.tsx +25 -0
  107. package/src/input/Slider.tsx +24 -0
  108. package/src/input/SortableList.tsx +24 -0
  109. package/src/input/Suggestion.tsx +19 -0
  110. package/src/input/Textarea.tsx +27 -0
  111. package/src/input/ThemeToggle.tsx +21 -0
  112. package/src/input/Toggle.tsx +22 -0
  113. package/src/layout/AppShell.tsx +22 -0
  114. package/src/layout/AuthShell.tsx +19 -0
  115. package/src/layout/Container.tsx +19 -0
  116. package/src/layout/DashboardGrid.tsx +21 -0
  117. package/src/layout/PageHeader.tsx +20 -0
  118. package/src/layout/PageLayout.tsx +21 -0
  119. package/src/layout/Resizable.tsx +23 -0
  120. package/src/layout/Section.tsx +19 -0
  121. package/src/layout/SettingsLayout.tsx +19 -0
  122. package/src/layout/SplitPane.tsx +22 -0
  123. package/src/layout/StatusBar.tsx +19 -0
  124. package/src/layout/Toolbar.tsx +21 -0
  125. package/src/navigation/Breadcrumb.tsx +19 -0
  126. package/src/navigation/BreadcrumbItem.tsx +19 -0
  127. package/src/navigation/Drawer.tsx +21 -0
  128. package/src/navigation/Footer.tsx +20 -0
  129. package/src/navigation/Link.tsx +22 -0
  130. package/src/navigation/NavItem.tsx +21 -0
  131. package/src/navigation/NavigationMenu.tsx +23 -0
  132. package/src/navigation/Pagination.tsx +21 -0
  133. package/src/navigation/ScrollSpy.tsx +22 -0
  134. package/src/navigation/ScrollToTop.tsx +23 -0
  135. package/src/navigation/Sidebar.tsx +23 -0
  136. package/src/navigation/SidebarLink.tsx +20 -0
  137. package/src/navigation/SidebarSection.tsx +21 -0
  138. package/src/navigation/SpyLink.tsx +19 -0
  139. package/src/navigation/Tab.tsx +19 -0
  140. package/src/navigation/Tabs.tsx +21 -0
  141. package/src/navigation/TopBar.tsx +23 -0
  142. package/src/navigation/TreeItem.tsx +21 -0
  143. package/src/navigation/TreeView.tsx +20 -0
  144. package/src/reactive/Accordion.tsx +20 -0
  145. package/src/reactive/AccordionItem.tsx +19 -0
  146. package/src/reactive/Alert.tsx +21 -0
  147. package/src/reactive/Button.tsx +23 -0
  148. package/src/reactive/Calendar.tsx +24 -0
  149. package/src/reactive/Carousel.tsx +25 -0
  150. package/src/reactive/Checkbox.tsx +24 -0
  151. package/src/reactive/Chip.tsx +21 -0
  152. package/src/reactive/Collapsible.tsx +20 -0
  153. package/src/reactive/ColorPicker.tsx +28 -0
  154. package/src/reactive/Column.tsx +22 -0
  155. package/src/reactive/Combobox.tsx +26 -0
  156. package/src/reactive/CommandItem.tsx +20 -0
  157. package/src/reactive/CommandPalette.tsx +23 -0
  158. package/src/reactive/ContextMenu.tsx +23 -0
  159. package/src/reactive/CopyButton.tsx +21 -0
  160. package/src/reactive/DataTable.tsx +25 -0
  161. package/src/reactive/DatePicker.tsx +28 -0
  162. package/src/reactive/Dialog.tsx +22 -0
  163. package/src/reactive/Drawer.tsx +21 -0
  164. package/src/reactive/DropdownMenu.tsx +21 -0
  165. package/src/reactive/FileUpload.tsx +25 -0
  166. package/src/reactive/Form.tsx +21 -0
  167. package/src/reactive/HoverCard.tsx +22 -0
  168. package/src/reactive/IconButton.tsx +26 -0
  169. package/src/reactive/InfiniteScroll.tsx +22 -0
  170. package/src/reactive/Input.tsx +27 -0
  171. package/src/reactive/Modal.tsx +22 -0
  172. package/src/reactive/MultiSelect.tsx +26 -0
  173. package/src/reactive/NumberInput.tsx +24 -0
  174. package/src/reactive/OtpInput.tsx +22 -0
  175. package/src/reactive/Pagination.tsx +21 -0
  176. package/src/reactive/PinInput.tsx +25 -0
  177. package/src/reactive/Popover.tsx +21 -0
  178. package/src/reactive/Progress.tsx +23 -0
  179. package/src/reactive/Radio.tsx +20 -0
  180. package/src/reactive/RadioGroup.tsx +23 -0
  181. package/src/reactive/Rating.tsx +22 -0
  182. package/src/reactive/ScrollToTop.tsx +23 -0
  183. package/src/reactive/Search.tsx +26 -0
  184. package/src/reactive/SegmentedControl.tsx +21 -0
  185. package/src/reactive/Select.tsx +25 -0
  186. package/src/reactive/Sheet.tsx +21 -0
  187. package/src/reactive/Slider.tsx +24 -0
  188. package/src/reactive/SortableList.tsx +24 -0
  189. package/src/reactive/Suggestion.tsx +19 -0
  190. package/src/reactive/Tab.tsx +19 -0
  191. package/src/reactive/Tabs.tsx +21 -0
  192. package/src/reactive/Tag.tsx +21 -0
  193. package/src/reactive/Textarea.tsx +27 -0
  194. package/src/reactive/ThemeToggle.tsx +21 -0
  195. package/src/reactive/Toast.tsx +21 -0
  196. package/src/reactive/Toggle.tsx +22 -0
  197. package/src/reactive/Tooltip.tsx +22 -0
  198. package/src/reactive/TreeItem.tsx +21 -0
  199. package/src/reactive/TreeView.tsx +20 -0
  200. package/src/reactive/Truncate.tsx +20 -0
  201. package/src/reactive/index.ts +120 -0
  202. package/src/shared/MenuDivider.tsx +18 -0
  203. package/src/shared/MenuItem.tsx +21 -0
  204. package/src/shared/Option.tsx +21 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Arclight Digital, LLC
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/README.md ADDED
@@ -0,0 +1,52 @@
1
+ # @arclux/arc-ui-solid
2
+
3
+ Solid component wrappers for [ARC UI](https://arcui.dev) web components.
4
+
5
+ > **Auto-generated** -- this package is produced by [Prism](../../prism.config.js) from the canonical source in [`@arclux/arc-ui`](../web-components/). Do not edit by hand.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @arclux/arc-ui-solid @arclux/arc-ui
11
+ ```
12
+
13
+ Requires `solid-js >= 1.8.0`.
14
+
15
+ ## Usage
16
+
17
+ ```tsx
18
+ import { Button, Card, Input } from '@arclux/arc-ui-solid';
19
+
20
+ export default function App() {
21
+ return (
22
+ <>
23
+ <Button variant="primary" onClick={() => console.log('clicked')}>
24
+ Get Started
25
+ </Button>
26
+ <Card>
27
+ <h3>Card Title</h3>
28
+ <p>Card content.</p>
29
+ </Card>
30
+ <Input label="Email" type="email" placeholder="you@example.com" />
31
+ </>
32
+ );
33
+ }
34
+ ```
35
+
36
+ Components are organized by category and can be imported from subpaths:
37
+
38
+ ```tsx
39
+ import { Button } from '@arclux/arc-ui-solid/input';
40
+ import { Card } from '@arclux/arc-ui-solid/content';
41
+ import { AppShell } from '@arclux/arc-ui-solid/layout';
42
+ ```
43
+
44
+ ## Documentation
45
+
46
+ Full component docs and interactive examples: [arcui.dev](https://arcui.dev)
47
+
48
+ ## Links
49
+
50
+ - [Canonical source (`@arclux/arc-ui`)](../web-components/)
51
+ - [Root README](../../README.md)
52
+ - [License](../../LICENSE)
package/package.json ADDED
@@ -0,0 +1,72 @@
1
+ {
2
+ "name": "@arclux/arc-ui-solid",
3
+ "version": "1.0.0",
4
+ "description": "Solid wrappers for ARC UI Web Components.",
5
+ "type": "module",
6
+ "main": "src/index.ts",
7
+ "module": "src/index.ts",
8
+ "types": "src/index.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./src/index.ts",
12
+ "default": "./src/index.ts"
13
+ },
14
+ "./content": {
15
+ "types": "./src/content/index.ts",
16
+ "default": "./src/content/index.ts"
17
+ },
18
+ "./input": {
19
+ "types": "./src/input/index.ts",
20
+ "default": "./src/input/index.ts"
21
+ },
22
+ "./feedback": {
23
+ "types": "./src/feedback/index.ts",
24
+ "default": "./src/feedback/index.ts"
25
+ },
26
+ "./navigation": {
27
+ "types": "./src/navigation/index.ts",
28
+ "default": "./src/navigation/index.ts"
29
+ },
30
+ "./layout": {
31
+ "types": "./src/layout/index.ts",
32
+ "default": "./src/layout/index.ts"
33
+ },
34
+ "./shared": {
35
+ "types": "./src/shared/index.ts",
36
+ "default": "./src/shared/index.ts"
37
+ }
38
+ },
39
+ "files": [
40
+ "src/"
41
+ ],
42
+ "sideEffects": false,
43
+ "peerDependencies": {
44
+ "solid-js": ">=1.8.0"
45
+ },
46
+ "dependencies": {
47
+ "@arclux/arc-ui": "1.0.0"
48
+ },
49
+ "license": "MIT",
50
+ "keywords": [
51
+ "solid",
52
+ "solidjs",
53
+ "web-components",
54
+ "design-system",
55
+ "arclight"
56
+ ],
57
+ "repository": {
58
+ "type": "git",
59
+ "url": "https://github.com/arclight-digital/arc-ui",
60
+ "directory": "packages/solid"
61
+ },
62
+ "homepage": "https://arcui.dev",
63
+ "bugs": {
64
+ "url": "https://github.com/arclight-digital/arc-ui/issues"
65
+ },
66
+ "publishConfig": {
67
+ "access": "public"
68
+ },
69
+ "scripts": {
70
+ "build": "echo 'Consumed directly via workspace — no build step required'"
71
+ }
72
+ }
@@ -0,0 +1,19 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface AppShellProps {
7
+ sidebarOpen?: boolean;
8
+ children?: JSX.Element;
9
+ [key: string]: unknown;
10
+ }
11
+
12
+ export const AppShell: Component<AppShellProps> = (props) => {
13
+ const [local, rest] = splitProps(props, ['sidebarOpen', 'children']);
14
+ return (
15
+ <arc-app-shell sidebarOpen={local.sidebarOpen} {...rest}>
16
+ {local.children}
17
+ </arc-app-shell>
18
+ );
19
+ };
@@ -0,0 +1,19 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface AuthShellProps {
7
+ variant?: string;
8
+ children?: JSX.Element;
9
+ [key: string]: unknown;
10
+ }
11
+
12
+ export const AuthShell: Component<AuthShellProps> = (props) => {
13
+ const [local, rest] = splitProps(props, ['variant', 'children']);
14
+ return (
15
+ <arc-auth-shell variant={local.variant} {...rest}>
16
+ {local.children}
17
+ </arc-auth-shell>
18
+ );
19
+ };
@@ -0,0 +1,19 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface BreadcrumbProps {
7
+ _items?: string;
8
+ children?: JSX.Element;
9
+ [key: string]: unknown;
10
+ }
11
+
12
+ export const Breadcrumb: Component<BreadcrumbProps> = (props) => {
13
+ const [local, rest] = splitProps(props, ['_items', 'children']);
14
+ return (
15
+ <arc-breadcrumb _items={local._items} {...rest}>
16
+ {local.children}
17
+ </arc-breadcrumb>
18
+ );
19
+ };
@@ -0,0 +1,19 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface BreadcrumbItemProps {
7
+ href?: string;
8
+ children?: JSX.Element;
9
+ [key: string]: unknown;
10
+ }
11
+
12
+ export const BreadcrumbItem: Component<BreadcrumbItemProps> = (props) => {
13
+ const [local, rest] = splitProps(props, ['href', 'children']);
14
+ return (
15
+ <arc-breadcrumb-item href={local.href} {...rest}>
16
+ {local.children}
17
+ </arc-breadcrumb-item>
18
+ );
19
+ };
@@ -0,0 +1,19 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface ContainerProps {
7
+ narrow?: boolean;
8
+ children?: JSX.Element;
9
+ [key: string]: unknown;
10
+ }
11
+
12
+ export const Container: Component<ContainerProps> = (props) => {
13
+ const [local, rest] = splitProps(props, ['narrow', 'children']);
14
+ return (
15
+ <arc-container narrow={local.narrow} {...rest}>
16
+ {local.children}
17
+ </arc-container>
18
+ );
19
+ };
@@ -0,0 +1,21 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface DashboardGridProps {
7
+ columns?: number;
8
+ gap?: string;
9
+ minColumnWidth?: string;
10
+ children?: JSX.Element;
11
+ [key: string]: unknown;
12
+ }
13
+
14
+ export const DashboardGrid: Component<DashboardGridProps> = (props) => {
15
+ const [local, rest] = splitProps(props, ['columns', 'gap', 'minColumnWidth', 'children']);
16
+ return (
17
+ <arc-dashboard-grid columns={local.columns} gap={local.gap} minColumnWidth={local.minColumnWidth} {...rest}>
18
+ {local.children}
19
+ </arc-dashboard-grid>
20
+ );
21
+ };
@@ -0,0 +1,20 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface FooterProps {
7
+ compact?: boolean;
8
+ border?: boolean;
9
+ children?: JSX.Element;
10
+ [key: string]: unknown;
11
+ }
12
+
13
+ export const Footer: Component<FooterProps> = (props) => {
14
+ const [local, rest] = splitProps(props, ['compact', 'border', 'children']);
15
+ return (
16
+ <arc-footer compact={local.compact} border={local.border} {...rest}>
17
+ {local.children}
18
+ </arc-footer>
19
+ );
20
+ };
@@ -0,0 +1,21 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface NavItemProps {
7
+ href?: string;
8
+ active?: boolean;
9
+ description?: string;
10
+ children?: JSX.Element;
11
+ [key: string]: unknown;
12
+ }
13
+
14
+ export const NavItem: Component<NavItemProps> = (props) => {
15
+ const [local, rest] = splitProps(props, ['href', 'active', 'description', 'children']);
16
+ return (
17
+ <arc-nav-item href={local.href} active={local.active} description={local.description} {...rest}>
18
+ {local.children}
19
+ </arc-nav-item>
20
+ );
21
+ };
@@ -0,0 +1,20 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface NavigationMenuProps {
7
+ _items?: string;
8
+ _openIndex?: string;
9
+ children?: JSX.Element;
10
+ [key: string]: unknown;
11
+ }
12
+
13
+ export const NavigationMenu: Component<NavigationMenuProps> = (props) => {
14
+ const [local, rest] = splitProps(props, ['_items', '_openIndex', 'children']);
15
+ return (
16
+ <arc-navigation-menu _items={local._items} _openIndex={local._openIndex} {...rest}>
17
+ {local.children}
18
+ </arc-navigation-menu>
19
+ );
20
+ };
@@ -0,0 +1,21 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface NotificationPanelProps {
7
+ open?: boolean;
8
+ position?: string;
9
+ maxHeight?: string;
10
+ children?: JSX.Element;
11
+ [key: string]: unknown;
12
+ }
13
+
14
+ export const NotificationPanel: Component<NotificationPanelProps> = (props) => {
15
+ const [local, rest] = splitProps(props, ['open', 'position', 'maxHeight', 'children']);
16
+ return (
17
+ <arc-notification-panel open={local.open} position={local.position} maxHeight={local.maxHeight} {...rest}>
18
+ {local.children}
19
+ </arc-notification-panel>
20
+ );
21
+ };
@@ -0,0 +1,20 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface PageHeaderProps {
7
+ heading?: string;
8
+ description?: string;
9
+ children?: JSX.Element;
10
+ [key: string]: unknown;
11
+ }
12
+
13
+ export const PageHeader: Component<PageHeaderProps> = (props) => {
14
+ const [local, rest] = splitProps(props, ['heading', 'description', 'children']);
15
+ return (
16
+ <arc-page-header heading={local.heading} description={local.description} {...rest}>
17
+ {local.children}
18
+ </arc-page-header>
19
+ );
20
+ };
@@ -0,0 +1,21 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface PageLayoutProps {
7
+ layout?: string;
8
+ maxWidth?: string;
9
+ gap?: string;
10
+ children?: JSX.Element;
11
+ [key: string]: unknown;
12
+ }
13
+
14
+ export const PageLayout: Component<PageLayoutProps> = (props) => {
15
+ const [local, rest] = splitProps(props, ['layout', 'maxWidth', 'gap', 'children']);
16
+ return (
17
+ <arc-page-layout layout={local.layout} maxWidth={local.maxWidth} gap={local.gap} {...rest}>
18
+ {local.children}
19
+ </arc-page-layout>
20
+ );
21
+ };
@@ -0,0 +1,23 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface ResizableProps {
7
+ direction?: 'horizontal' | 'vertical';
8
+ minSize?: number;
9
+ maxSize?: number;
10
+ size?: number;
11
+ _dragging?: string;
12
+ children?: JSX.Element;
13
+ [key: string]: unknown;
14
+ }
15
+
16
+ export const Resizable: Component<ResizableProps> = (props) => {
17
+ const [local, rest] = splitProps(props, ['direction', 'minSize', 'maxSize', 'size', '_dragging', 'children']);
18
+ return (
19
+ <arc-resizable direction={local.direction} minSize={local.minSize} maxSize={local.maxSize} size={local.size} _dragging={local._dragging} {...rest}>
20
+ {local.children}
21
+ </arc-resizable>
22
+ );
23
+ };
@@ -0,0 +1,22 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface ScrollSpyProps {
7
+ active?: string;
8
+ offset?: number;
9
+ _active?: string;
10
+ _links?: string;
11
+ children?: JSX.Element;
12
+ [key: string]: unknown;
13
+ }
14
+
15
+ export const ScrollSpy: Component<ScrollSpyProps> = (props) => {
16
+ const [local, rest] = splitProps(props, ['active', 'offset', '_active', '_links', 'children']);
17
+ return (
18
+ <arc-scroll-spy active={local.active} offset={local.offset} _active={local._active} _links={local._links} {...rest}>
19
+ {local.children}
20
+ </arc-scroll-spy>
21
+ );
22
+ };
@@ -0,0 +1,19 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface SectionProps {
7
+ label?: string;
8
+ children?: JSX.Element;
9
+ [key: string]: unknown;
10
+ }
11
+
12
+ export const Section: Component<SectionProps> = (props) => {
13
+ const [local, rest] = splitProps(props, ['label', 'children']);
14
+ return (
15
+ <arc-section label={local.label} {...rest}>
16
+ {local.children}
17
+ </arc-section>
18
+ );
19
+ };
@@ -0,0 +1,19 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface SettingsLayoutProps {
7
+ navPosition?: string;
8
+ children?: JSX.Element;
9
+ [key: string]: unknown;
10
+ }
11
+
12
+ export const SettingsLayout: Component<SettingsLayoutProps> = (props) => {
13
+ const [local, rest] = splitProps(props, ['navPosition', 'children']);
14
+ return (
15
+ <arc-settings-layout navPosition={local.navPosition} {...rest}>
16
+ {local.children}
17
+ </arc-settings-layout>
18
+ );
19
+ };
@@ -0,0 +1,23 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface SidebarProps {
7
+ active?: string;
8
+ collapsed?: boolean;
9
+ width?: string;
10
+ glow?: boolean;
11
+ _sections?: string;
12
+ children?: JSX.Element;
13
+ [key: string]: unknown;
14
+ }
15
+
16
+ export const Sidebar: Component<SidebarProps> = (props) => {
17
+ const [local, rest] = splitProps(props, ['active', 'collapsed', 'width', 'glow', '_sections', 'children']);
18
+ return (
19
+ <arc-sidebar active={local.active} collapsed={local.collapsed} width={local.width} glow={local.glow} _sections={local._sections} {...rest}>
20
+ {local.children}
21
+ </arc-sidebar>
22
+ );
23
+ };
@@ -0,0 +1,20 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface SidebarLinkProps {
7
+ href?: string;
8
+ active?: boolean;
9
+ children?: JSX.Element;
10
+ [key: string]: unknown;
11
+ }
12
+
13
+ export const SidebarLink: Component<SidebarLinkProps> = (props) => {
14
+ const [local, rest] = splitProps(props, ['href', 'active', 'children']);
15
+ return (
16
+ <arc-sidebar-link href={local.href} active={local.active} {...rest}>
17
+ {local.children}
18
+ </arc-sidebar-link>
19
+ );
20
+ };
@@ -0,0 +1,21 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface SidebarSectionProps {
7
+ heading?: string;
8
+ collapsible?: boolean;
9
+ open?: boolean;
10
+ children?: JSX.Element;
11
+ [key: string]: unknown;
12
+ }
13
+
14
+ export const SidebarSection: Component<SidebarSectionProps> = (props) => {
15
+ const [local, rest] = splitProps(props, ['heading', 'collapsible', 'open', 'children']);
16
+ return (
17
+ <arc-sidebar-section heading={local.heading} collapsible={local.collapsible} open={local.open} {...rest}>
18
+ {local.children}
19
+ </arc-sidebar-section>
20
+ );
21
+ };
@@ -0,0 +1,22 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface SplitPaneProps {
7
+ orientation?: string;
8
+ ratio?: number;
9
+ minRatio?: number;
10
+ maxRatio?: number;
11
+ children?: JSX.Element;
12
+ [key: string]: unknown;
13
+ }
14
+
15
+ export const SplitPane: Component<SplitPaneProps> = (props) => {
16
+ const [local, rest] = splitProps(props, ['orientation', 'ratio', 'minRatio', 'maxRatio', 'children']);
17
+ return (
18
+ <arc-split-pane orientation={local.orientation} ratio={local.ratio} minRatio={local.minRatio} maxRatio={local.maxRatio} {...rest}>
19
+ {local.children}
20
+ </arc-split-pane>
21
+ );
22
+ };
@@ -0,0 +1,19 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface SpyLinkProps {
7
+ target?: string;
8
+ children?: JSX.Element;
9
+ [key: string]: unknown;
10
+ }
11
+
12
+ export const SpyLink: Component<SpyLinkProps> = (props) => {
13
+ const [local, rest] = splitProps(props, ['target', 'children']);
14
+ return (
15
+ <arc-spy-link target={local.target} {...rest}>
16
+ {local.children}
17
+ </arc-spy-link>
18
+ );
19
+ };
@@ -0,0 +1,19 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface StatusBarProps {
7
+ position?: string;
8
+ children?: JSX.Element;
9
+ [key: string]: unknown;
10
+ }
11
+
12
+ export const StatusBar: Component<StatusBarProps> = (props) => {
13
+ const [local, rest] = splitProps(props, ['position', 'children']);
14
+ return (
15
+ <arc-status-bar position={local.position} {...rest}>
16
+ {local.children}
17
+ </arc-status-bar>
18
+ );
19
+ };
@@ -0,0 +1,21 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface ToolbarProps {
7
+ sticky?: boolean;
8
+ size?: string;
9
+ border?: boolean;
10
+ children?: JSX.Element;
11
+ [key: string]: unknown;
12
+ }
13
+
14
+ export const Toolbar: Component<ToolbarProps> = (props) => {
15
+ const [local, rest] = splitProps(props, ['sticky', 'size', 'border', 'children']);
16
+ return (
17
+ <arc-toolbar sticky={local.sticky} size={local.size} border={local.border} {...rest}>
18
+ {local.children}
19
+ </arc-toolbar>
20
+ );
21
+ };
@@ -0,0 +1,21 @@
1
+ // Auto-generated by @arclux/prism — do not edit manually
2
+
3
+ import { splitProps, type Component, type JSX } from 'solid-js';
4
+ import '@arclux/arc-ui';
5
+
6
+ export interface TopBarProps {
7
+ heading?: string;
8
+ fixed?: boolean;
9
+ menuOpen?: boolean;
10
+ children?: JSX.Element;
11
+ [key: string]: unknown;
12
+ }
13
+
14
+ export const TopBar: Component<TopBarProps> = (props) => {
15
+ const [local, rest] = splitProps(props, ['heading', 'fixed', 'menuOpen', 'children']);
16
+ return (
17
+ <arc-top-bar heading={local.heading} fixed={local.fixed} menuOpen={local.menuOpen} {...rest}>
18
+ {local.children}
19
+ </arc-top-bar>
20
+ );
21
+ };