@arclux/arc-ui-react 2.1.0 → 2.3.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.
- package/package.json +10 -2
- package/src/content/Accordion.ts +1 -3
- package/src/content/AccordionItem.ts +2 -2
- package/src/content/AspectRatio.ts +2 -2
- package/src/content/Avatar.ts +2 -3
- package/src/content/AvatarGroup.ts +2 -2
- package/src/content/Callout.ts +1 -2
- package/src/content/Card.ts +2 -3
- package/src/content/Carousel.ts +1 -3
- package/src/content/Collapsible.ts +1 -1
- package/src/content/ColorSwatch.ts +2 -2
- package/src/content/Column.ts +2 -2
- package/src/content/CtaBanner.ts +2 -2
- package/src/content/Divider.ts +2 -2
- package/src/content/EmptyState.ts +2 -2
- package/src/content/FeatureCard.ts +2 -2
- package/src/content/Icon.ts +2 -3
- package/src/content/Image.ts +1 -2
- package/src/content/InfiniteScroll.ts +1 -1
- package/src/content/Marquee.ts +2 -3
- package/src/content/QrCode.ts +22 -0
- package/src/content/ScrollArea.ts +2 -2
- package/src/content/ScrollIndicator.ts +2 -3
- package/src/content/Separator.ts +2 -2
- package/src/content/Skeleton.ts +2 -2
- package/src/content/Spinner.ts +2 -2
- package/src/content/Stack.ts +2 -2
- package/src/content/VirtualList.ts +2 -4
- package/src/content/index.ts +23 -81
- package/src/data/AnimatedNumber.ts +2 -2
- package/src/data/Badge.ts +2 -2
- package/src/data/Chart.ts +29 -0
- package/src/data/Comparison.ts +2 -3
- package/src/data/ComparisonColumn.ts +2 -2
- package/src/data/CountdownTimer.ts +1 -6
- package/src/data/DataGrid.ts +31 -0
- package/src/data/DataTable.ts +1 -5
- package/src/data/DescriptionItem.ts +2 -2
- package/src/data/DescriptionList.ts +2 -2
- package/src/data/Diff.ts +2 -2
- package/src/data/EventCalendar.ts +29 -0
- package/src/data/Kanban.ts +24 -0
- package/src/data/KeyValue.ts +2 -2
- package/src/data/KvPair.ts +2 -2
- package/src/data/List.ts +2 -2
- package/src/data/ListItem.ts +1 -4
- package/src/data/Meter.ts +2 -2
- package/src/data/Sparkline.ts +2 -2
- package/src/data/Stat.ts +2 -2
- package/src/data/Step.ts +2 -2
- package/src/data/Stepper.ts +2 -3
- package/src/data/Table.ts +2 -2
- package/src/data/Tag.ts +1 -1
- package/src/data/Timeline.ts +3 -3
- package/src/data/TimelineItem.ts +2 -2
- package/src/data/ValueCard.ts +2 -2
- package/src/data/index.ts +82 -0
- package/src/feedback/Alert.ts +1 -1
- package/src/feedback/Announcement.ts +2 -2
- package/src/feedback/Banner.ts +1 -1
- package/src/feedback/CommandItem.ts +2 -2
- package/src/feedback/CommandPalette.ts +1 -3
- package/src/feedback/Confirm.ts +1 -1
- package/src/feedback/ConnectionStatus.ts +1 -3
- package/src/feedback/ContextMenu.ts +1 -5
- package/src/feedback/Dialog.ts +1 -1
- package/src/feedback/DropdownMenu.ts +1 -2
- package/src/feedback/GuidedTour.ts +1 -3
- package/src/feedback/HoverCard.ts +1 -2
- package/src/feedback/InlineMessage.ts +2 -2
- package/src/feedback/LoadingOverlay.ts +2 -2
- package/src/feedback/Modal.ts +1 -1
- package/src/feedback/NotificationPanel.ts +1 -1
- package/src/feedback/Popover.ts +1 -1
- package/src/feedback/Progress.ts +2 -2
- package/src/feedback/ProgressToast.ts +1 -2
- package/src/feedback/Sheet.ts +1 -1
- package/src/feedback/Snackbar.ts +1 -2
- package/src/feedback/Spotlight.ts +1 -1
- package/src/feedback/Toast.ts +1 -2
- package/src/feedback/ToastManager.ts +29 -0
- package/src/feedback/Tooltip.ts +2 -3
- package/src/feedback/index.ts +35 -33
- package/src/index.ts +242 -217
- package/src/input/Button.ts +1 -3
- package/src/input/ButtonGroup.ts +2 -2
- package/src/input/Calendar.ts +1 -2
- package/src/input/Checkbox.ts +1 -1
- package/src/input/Chip.ts +1 -1
- package/src/input/ColorPicker.ts +2 -7
- package/src/input/Combobox.ts +2 -5
- package/src/input/CopyButton.ts +1 -2
- package/src/input/DatePicker.ts +2 -5
- package/src/input/DateRangePicker.ts +31 -0
- package/src/input/Fieldset.ts +2 -4
- package/src/input/FileUpload.ts +1 -4
- package/src/input/Form.ts +1 -2
- package/src/input/Hotkey.ts +1 -1
- package/src/input/IconButton.ts +1 -1
- package/src/input/ImageCropper.ts +24 -0
- package/src/input/Input.ts +1 -3
- package/src/input/InputGroup.ts +2 -4
- package/src/input/Label.ts +2 -4
- package/src/input/MultiSelect.ts +2 -5
- package/src/input/NumberInput.ts +2 -1
- package/src/input/OtpInput.ts +2 -1
- package/src/input/PasswordInput.ts +36 -0
- package/src/input/PinInput.ts +2 -1
- package/src/input/Radio.ts +2 -2
- package/src/input/RadioGroup.ts +1 -2
- package/src/input/RangeSlider.ts +2 -2
- package/src/input/Rating.ts +2 -1
- package/src/input/Search.ts +1 -4
- package/src/input/SegmentedControl.ts +1 -2
- package/src/input/Select.ts +1 -2
- package/src/input/Slider.ts +2 -1
- package/src/input/SortableList.ts +1 -6
- package/src/input/Suggestion.ts +2 -2
- package/src/input/SwitchGroup.ts +2 -2
- package/src/input/TagInput.ts +32 -0
- package/src/input/Textarea.ts +1 -1
- package/src/input/ThemeToggle.ts +1 -1
- package/src/input/TimePicker.ts +2 -6
- package/src/input/Toggle.ts +1 -1
- package/src/input/TransferList.ts +27 -0
- package/src/input/index.ts +47 -33
- package/src/layout/AppShell.ts +2 -4
- package/src/layout/AspectGrid.ts +2 -2
- package/src/layout/AuthShell.ts +2 -2
- package/src/layout/Center.ts +2 -2
- package/src/layout/Cluster.ts +2 -2
- package/src/layout/Container.ts +2 -2
- package/src/layout/DashboardGrid.ts +2 -2
- package/src/layout/Dock.ts +2 -3
- package/src/layout/FloatBar.ts +2 -2
- package/src/layout/Inset.ts +2 -2
- package/src/layout/Masonry.ts +2 -2
- package/src/layout/PageHeader.ts +2 -2
- package/src/layout/PageLayout.ts +2 -2
- package/src/layout/Resizable.ts +1 -2
- package/src/layout/ResponsiveSwitcher.ts +2 -2
- package/src/layout/Section.ts +2 -2
- package/src/layout/SettingsLayout.ts +2 -2
- package/src/layout/SplitPane.ts +1 -1
- package/src/layout/StatusBar.ts +2 -2
- package/src/layout/Sticky.ts +1 -2
- package/src/layout/Toolbar.ts +6 -1
- package/src/layout/index.ts +28 -29
- package/src/navigation/AnchorNav.ts +1 -1
- package/src/navigation/BottomNav.ts +1 -1
- package/src/navigation/Breadcrumb.ts +2 -2
- package/src/navigation/BreadcrumbItem.ts +2 -2
- package/src/navigation/BreadcrumbMenu.ts +2 -2
- package/src/navigation/CommandBar.ts +1 -1
- package/src/navigation/Drawer.ts +1 -1
- package/src/navigation/Footer.ts +2 -2
- package/src/navigation/Link.ts +2 -2
- package/src/navigation/Menubar.ts +23 -0
- package/src/navigation/NavItem.ts +2 -2
- package/src/navigation/NavigationMenu.ts +2 -6
- package/src/navigation/PageIndicator.ts +1 -1
- package/src/navigation/Pagination.ts +1 -1
- package/src/navigation/Rail.ts +1 -1
- package/src/navigation/ScrollSpy.ts +1 -3
- package/src/navigation/ScrollToTop.ts +1 -2
- package/src/navigation/Sidebar.ts +3 -3
- package/src/navigation/SidebarLink.ts +2 -2
- package/src/navigation/SidebarSection.ts +1 -1
- package/src/navigation/SkipLink.ts +2 -2
- package/src/navigation/SpeedDial.ts +1 -1
- package/src/navigation/SpyLink.ts +2 -2
- package/src/navigation/StepperNav.ts +1 -1
- package/src/navigation/Tab.ts +2 -2
- package/src/navigation/Tabs.ts +1 -2
- package/src/navigation/TopBar.ts +2 -2
- package/src/navigation/TreeItem.ts +2 -2
- package/src/navigation/TreeView.ts +1 -3
- package/src/navigation/index.ts +35 -33
- package/src/shared/MenuDivider.ts +2 -2
- package/src/shared/MenuItem.ts +2 -2
- package/src/shared/Option.ts +2 -2
- package/src/shared/index.ts +6 -4
- package/src/typography/Blockquote.ts +2 -2
- package/src/typography/CodeBlock.ts +2 -3
- package/src/typography/GradientText.ts +2 -2
- package/src/typography/Highlight.ts +2 -2
- package/src/typography/Kbd.ts +2 -2
- package/src/typography/Markdown.ts +2 -2
- package/src/typography/NumberFormat.ts +2 -2
- package/src/typography/Prose.ts +2 -2
- package/src/typography/Text.ts +2 -2
- package/src/typography/TimeAgo.ts +2 -2
- package/src/typography/Truncate.ts +1 -1
- package/src/typography/Typewriter.ts +1 -3
- package/src/typography/index.ts +37 -0
- package/src/content/AnimatedNumber.ts +0 -23
- package/src/content/Badge.ts +0 -19
- package/src/content/CodeBlock.ts +0 -21
- package/src/content/DataTable.ts +0 -35
- package/src/content/Highlight.ts +0 -19
- package/src/content/IconLibrary.ts +0 -16
- package/src/content/Kbd.ts +0 -16
- package/src/content/List.ts +0 -28
- package/src/content/ListItem.ts +0 -27
- package/src/content/Markdown.ts +0 -17
- package/src/content/Meter.ts +0 -23
- package/src/content/Stat.ts +0 -20
- package/src/content/Step.ts +0 -17
- package/src/content/Stepper.ts +0 -18
- package/src/content/Table.ts +0 -20
- package/src/content/Tag.ts +0 -25
- package/src/content/Text.ts +0 -18
- package/src/content/Timeline.ts +0 -17
- package/src/content/TimelineItem.ts +0 -18
- package/src/content/Truncate.ts +0 -22
- package/src/content/ValueCard.ts +0 -19
package/src/navigation/Drawer.ts
CHANGED
package/src/navigation/Footer.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcFooter } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcFooter } from '@arclux/arc-ui/footer';
|
|
6
6
|
|
|
7
7
|
export interface FooterProps {
|
|
8
8
|
compact?: boolean;
|
package/src/navigation/Link.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcLink } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcLink } from '@arclux/arc-ui/link';
|
|
6
6
|
|
|
7
7
|
export interface LinkProps {
|
|
8
8
|
href?: string;
|
|
@@ -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 { ArcMenubar } from '@arclux/arc-ui/menubar';
|
|
6
|
+
|
|
7
|
+
export interface MenubarProps {
|
|
8
|
+
items?: unknown[];
|
|
9
|
+
className?: string;
|
|
10
|
+
children?: React.ReactNode;
|
|
11
|
+
onArcSelect?: (e: CustomEvent) => void;
|
|
12
|
+
onClick?: (e: Event) => void;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export const Menubar = createComponent({
|
|
16
|
+
tagName: 'arc-menubar',
|
|
17
|
+
elementClass: ArcMenubar,
|
|
18
|
+
react: React,
|
|
19
|
+
events: {
|
|
20
|
+
onArcSelect: 'arc-select' as EventName<CustomEvent>,
|
|
21
|
+
onClick: 'click' as EventName<Event>,
|
|
22
|
+
},
|
|
23
|
+
});
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcNavItem } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcNavItem } from '@arclux/arc-ui/nav-item';
|
|
6
6
|
|
|
7
7
|
export interface NavItemProps {
|
|
8
8
|
href?: string;
|
|
@@ -2,14 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createComponent, type EventName } from '@lit/react';
|
|
5
|
-
import { ArcNavigationMenu } from '@arclux/arc-ui';
|
|
5
|
+
import { ArcNavigationMenu } from '@arclux/arc-ui/navigation-menu';
|
|
6
6
|
|
|
7
7
|
export interface NavigationMenuProps {
|
|
8
|
-
|
|
9
|
-
_openIndex?: string;
|
|
10
|
-
_mobileOpen?: string;
|
|
11
|
-
_mobileClosing?: string;
|
|
12
|
-
_mobileExpandedIndex?: string;
|
|
8
|
+
label?: string;
|
|
13
9
|
className?: string;
|
|
14
10
|
children?: React.ReactNode;
|
|
15
11
|
onArcMobileMenuToggle?: (e: CustomEvent) => void;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createComponent, type EventName } from '@lit/react';
|
|
5
|
-
import { ArcPageIndicator } from '@arclux/arc-ui';
|
|
5
|
+
import { ArcPageIndicator } from '@arclux/arc-ui/page-indicator';
|
|
6
6
|
|
|
7
7
|
export interface PageIndicatorProps {
|
|
8
8
|
count?: number;
|
package/src/navigation/Rail.ts
CHANGED
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createComponent, type EventName } from '@lit/react';
|
|
5
|
-
import { ArcScrollSpy } from '@arclux/arc-ui';
|
|
5
|
+
import { ArcScrollSpy } from '@arclux/arc-ui/scroll-spy';
|
|
6
6
|
|
|
7
7
|
export interface ScrollSpyProps {
|
|
8
8
|
active?: string;
|
|
9
9
|
offset?: number;
|
|
10
|
-
_active?: string;
|
|
11
|
-
_links?: string;
|
|
12
10
|
className?: string;
|
|
13
11
|
children?: React.ReactNode;
|
|
14
12
|
onArcChange?: (e: CustomEvent) => void;
|
|
@@ -2,14 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createComponent, type EventName } from '@lit/react';
|
|
5
|
-
import { ArcScrollToTop } from '@arclux/arc-ui';
|
|
5
|
+
import { ArcScrollToTop } from '@arclux/arc-ui/scroll-to-top';
|
|
6
6
|
|
|
7
7
|
export interface ScrollToTopProps {
|
|
8
8
|
threshold?: number;
|
|
9
9
|
smooth?: boolean;
|
|
10
10
|
position?: 'bottom-right' | 'bottom-left';
|
|
11
11
|
offset?: string;
|
|
12
|
-
_visible?: string;
|
|
13
12
|
className?: string;
|
|
14
13
|
children?: React.ReactNode;
|
|
15
14
|
onClick?: (e: Event) => void;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcSidebar } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcSidebar } from '@arclux/arc-ui/sidebar';
|
|
6
6
|
|
|
7
7
|
export interface SidebarProps {
|
|
8
8
|
active?: string;
|
|
@@ -10,7 +10,7 @@ export interface SidebarProps {
|
|
|
10
10
|
position?: 'right';
|
|
11
11
|
width?: string;
|
|
12
12
|
glow?: boolean;
|
|
13
|
-
|
|
13
|
+
label?: string;
|
|
14
14
|
className?: string;
|
|
15
15
|
children?: React.ReactNode;
|
|
16
16
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcSidebarLink } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcSidebarLink } from '@arclux/arc-ui/sidebar-link';
|
|
6
6
|
|
|
7
7
|
export interface SidebarLinkProps {
|
|
8
8
|
href?: string;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createComponent, type EventName } from '@lit/react';
|
|
5
|
-
import { ArcSidebarSection } from '@arclux/arc-ui';
|
|
5
|
+
import { ArcSidebarSection } from '@arclux/arc-ui/sidebar-section';
|
|
6
6
|
|
|
7
7
|
export interface SidebarSectionProps {
|
|
8
8
|
heading?: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcSkipLink } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcSkipLink } from '@arclux/arc-ui/skip-link';
|
|
6
6
|
|
|
7
7
|
export interface SkipLinkProps {
|
|
8
8
|
target?: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcSpyLink } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcSpyLink } from '@arclux/arc-ui/spy-link';
|
|
6
6
|
|
|
7
7
|
export interface SpyLinkProps {
|
|
8
8
|
target?: string;
|
package/src/navigation/Tab.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcTab } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcTab } from '@arclux/arc-ui/tab';
|
|
6
6
|
|
|
7
7
|
export interface TabProps {
|
|
8
8
|
label?: string;
|
package/src/navigation/Tabs.ts
CHANGED
|
@@ -2,14 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createComponent, type EventName } from '@lit/react';
|
|
5
|
-
import { ArcTabs } from '@arclux/arc-ui';
|
|
5
|
+
import { ArcTabs } from '@arclux/arc-ui/tabs';
|
|
6
6
|
|
|
7
7
|
export interface TabsProps {
|
|
8
8
|
selected?: number;
|
|
9
9
|
align?: 'center' | 'end';
|
|
10
10
|
variant?: 'pills';
|
|
11
11
|
orientation?: 'vertical';
|
|
12
|
-
_tabs?: string;
|
|
13
12
|
className?: string;
|
|
14
13
|
children?: React.ReactNode;
|
|
15
14
|
onArcChange?: (e: CustomEvent) => void;
|
package/src/navigation/TopBar.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcTopBar } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcTopBar } from '@arclux/arc-ui/top-bar';
|
|
6
6
|
|
|
7
7
|
export interface TopBarProps {
|
|
8
8
|
heading?: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcTreeItem } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcTreeItem } from '@arclux/arc-ui/tree-item';
|
|
6
6
|
|
|
7
7
|
export interface TreeItemProps {
|
|
8
8
|
label?: string;
|
|
@@ -2,11 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createComponent, type EventName } from '@lit/react';
|
|
5
|
-
import { ArcTreeView } from '@arclux/arc-ui';
|
|
5
|
+
import { ArcTreeView } from '@arclux/arc-ui/tree-view';
|
|
6
6
|
|
|
7
7
|
export interface TreeViewProps {
|
|
8
|
-
_items?: string;
|
|
9
|
-
_selected?: string;
|
|
10
8
|
className?: string;
|
|
11
9
|
children?: React.ReactNode;
|
|
12
10
|
onArcToggle?: (e: CustomEvent) => void;
|
package/src/navigation/index.ts
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Navigation menus, sidebars, breadcrumbs, tabs, and links
|
|
1
|
+
// Auto-generated by @arclux/prism — do not edit manually
|
|
3
2
|
|
|
4
|
-
export {
|
|
5
|
-
export type {
|
|
3
|
+
export { AnchorNav } from './AnchorNav.js';
|
|
4
|
+
export type { AnchorNavProps } from './AnchorNav.js';
|
|
5
|
+
|
|
6
|
+
export { BottomNav } from './BottomNav.js';
|
|
7
|
+
export type { BottomNavProps } from './BottomNav.js';
|
|
6
8
|
|
|
7
9
|
export { BreadcrumbItem } from './BreadcrumbItem.js';
|
|
8
10
|
export type { BreadcrumbItemProps } from './BreadcrumbItem.js';
|
|
9
11
|
|
|
12
|
+
export { BreadcrumbMenu } from './BreadcrumbMenu.js';
|
|
13
|
+
export type { BreadcrumbMenuProps } from './BreadcrumbMenu.js';
|
|
14
|
+
|
|
15
|
+
export { CommandBar } from './CommandBar.js';
|
|
16
|
+
export type { CommandBarProps } from './CommandBar.js';
|
|
17
|
+
|
|
10
18
|
export { Drawer } from './Drawer.js';
|
|
11
19
|
export type { DrawerProps } from './Drawer.js';
|
|
12
20
|
|
|
@@ -16,33 +24,45 @@ export type { FooterProps } from './Footer.js';
|
|
|
16
24
|
export { Link } from './Link.js';
|
|
17
25
|
export type { LinkProps } from './Link.js';
|
|
18
26
|
|
|
27
|
+
export { NavItem } from './NavItem.js';
|
|
28
|
+
export type { NavItemProps } from './NavItem.js';
|
|
29
|
+
|
|
19
30
|
export { NavigationMenu } from './NavigationMenu.js';
|
|
20
31
|
export type { NavigationMenuProps } from './NavigationMenu.js';
|
|
21
32
|
|
|
22
|
-
export {
|
|
23
|
-
export type {
|
|
33
|
+
export { PageIndicator } from './PageIndicator.js';
|
|
34
|
+
export type { PageIndicatorProps } from './PageIndicator.js';
|
|
24
35
|
|
|
25
36
|
export { Pagination } from './Pagination.js';
|
|
26
37
|
export type { PaginationProps } from './Pagination.js';
|
|
27
38
|
|
|
39
|
+
export { Rail } from './Rail.js';
|
|
40
|
+
export type { RailProps } from './Rail.js';
|
|
41
|
+
|
|
28
42
|
export { ScrollSpy } from './ScrollSpy.js';
|
|
29
43
|
export type { ScrollSpyProps } from './ScrollSpy.js';
|
|
30
44
|
|
|
31
45
|
export { ScrollToTop } from './ScrollToTop.js';
|
|
32
46
|
export type { ScrollToTopProps } from './ScrollToTop.js';
|
|
33
47
|
|
|
34
|
-
export { Sidebar } from './Sidebar.js';
|
|
35
|
-
export type { SidebarProps } from './Sidebar.js';
|
|
36
|
-
|
|
37
48
|
export { SidebarLink } from './SidebarLink.js';
|
|
38
49
|
export type { SidebarLinkProps } from './SidebarLink.js';
|
|
39
50
|
|
|
40
51
|
export { SidebarSection } from './SidebarSection.js';
|
|
41
52
|
export type { SidebarSectionProps } from './SidebarSection.js';
|
|
42
53
|
|
|
54
|
+
export { SkipLink } from './SkipLink.js';
|
|
55
|
+
export type { SkipLinkProps } from './SkipLink.js';
|
|
56
|
+
|
|
57
|
+
export { SpeedDial } from './SpeedDial.js';
|
|
58
|
+
export type { SpeedDialProps } from './SpeedDial.js';
|
|
59
|
+
|
|
43
60
|
export { SpyLink } from './SpyLink.js';
|
|
44
61
|
export type { SpyLinkProps } from './SpyLink.js';
|
|
45
62
|
|
|
63
|
+
export { StepperNav } from './StepperNav.js';
|
|
64
|
+
export type { StepperNavProps } from './StepperNav.js';
|
|
65
|
+
|
|
46
66
|
export { Tab } from './Tab.js';
|
|
47
67
|
export type { TabProps } from './Tab.js';
|
|
48
68
|
|
|
@@ -58,29 +78,11 @@ export type { TreeItemProps } from './TreeItem.js';
|
|
|
58
78
|
export { TreeView } from './TreeView.js';
|
|
59
79
|
export type { TreeViewProps } from './TreeView.js';
|
|
60
80
|
|
|
61
|
-
export {
|
|
62
|
-
export type {
|
|
63
|
-
|
|
64
|
-
export { BottomNav } from './BottomNav.js';
|
|
65
|
-
export type { BottomNavProps } from './BottomNav.js';
|
|
66
|
-
|
|
67
|
-
export { BreadcrumbMenu } from './BreadcrumbMenu.js';
|
|
68
|
-
export type { BreadcrumbMenuProps } from './BreadcrumbMenu.js';
|
|
69
|
-
|
|
70
|
-
export { CommandBar } from './CommandBar.js';
|
|
71
|
-
export type { CommandBarProps } from './CommandBar.js';
|
|
81
|
+
export { Menubar } from './Menubar.js';
|
|
82
|
+
export type { MenubarProps } from './Menubar.js';
|
|
72
83
|
|
|
73
|
-
export {
|
|
74
|
-
export type {
|
|
75
|
-
|
|
76
|
-
export { Rail } from './Rail.js';
|
|
77
|
-
export type { RailProps } from './Rail.js';
|
|
78
|
-
|
|
79
|
-
export { SkipLink } from './SkipLink.js';
|
|
80
|
-
export type { SkipLinkProps } from './SkipLink.js';
|
|
81
|
-
|
|
82
|
-
export { SpeedDial } from './SpeedDial.js';
|
|
83
|
-
export type { SpeedDialProps } from './SpeedDial.js';
|
|
84
|
+
export { Breadcrumb } from './Breadcrumb.js';
|
|
85
|
+
export type { BreadcrumbProps } from './Breadcrumb.js';
|
|
84
86
|
|
|
85
|
-
export {
|
|
86
|
-
export type {
|
|
87
|
+
export { Sidebar } from './Sidebar.js';
|
|
88
|
+
export type { SidebarProps } from './Sidebar.js';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcMenuDivider } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcMenuDivider } from '@arclux/arc-ui/menu-divider';
|
|
6
6
|
|
|
7
7
|
export interface MenuDividerProps {
|
|
8
8
|
className?: string;
|
package/src/shared/MenuItem.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcMenuItem } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcMenuItem } from '@arclux/arc-ui/menu-item';
|
|
6
6
|
|
|
7
7
|
export interface MenuItemProps {
|
|
8
8
|
shortcut?: string;
|
package/src/shared/Option.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcOption } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcOption } from '@arclux/arc-ui/option';
|
|
6
6
|
|
|
7
7
|
export interface OptionProps {
|
|
8
8
|
value?: string;
|
package/src/shared/index.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
|
-
export { Option } from './Option.js';
|
|
4
|
-
export type { OptionProps } from './Option.js';
|
|
5
|
-
export { MenuItem } from './MenuItem.js';
|
|
6
|
-
export type { MenuItemProps } from './MenuItem.js';
|
|
7
3
|
export { MenuDivider } from './MenuDivider.js';
|
|
8
4
|
export type { MenuDividerProps } from './MenuDivider.js';
|
|
5
|
+
|
|
6
|
+
export { MenuItem } from './MenuItem.js';
|
|
7
|
+
export type { MenuItemProps } from './MenuItem.js';
|
|
8
|
+
|
|
9
|
+
export { Option } from './Option.js';
|
|
10
|
+
export type { OptionProps } from './Option.js';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcBlockquote } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcBlockquote } from '@arclux/arc-ui/blockquote';
|
|
6
6
|
|
|
7
7
|
export interface BlockquoteProps {
|
|
8
8
|
cite?: string;
|
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcCodeBlock } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcCodeBlock } from '@arclux/arc-ui/code-block';
|
|
6
6
|
|
|
7
7
|
export interface CodeBlockProps {
|
|
8
8
|
language?: string;
|
|
9
9
|
filename?: string;
|
|
10
10
|
code?: string;
|
|
11
11
|
variant?: 'window' | 'basic';
|
|
12
|
-
_highlightedHtml?: string;
|
|
13
12
|
className?: string;
|
|
14
13
|
children?: React.ReactNode;
|
|
15
14
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcGradientText } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcGradientText } from '@arclux/arc-ui/gradient-text';
|
|
6
6
|
|
|
7
7
|
export interface GradientTextProps {
|
|
8
8
|
variant?: 'accent' | 'display' | 'sunset' | 'ocean';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcHighlight } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcHighlight } from '@arclux/arc-ui/highlight';
|
|
6
6
|
|
|
7
7
|
export interface HighlightProps {
|
|
8
8
|
text?: string;
|
package/src/typography/Kbd.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcKbd } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcKbd } from '@arclux/arc-ui/kbd';
|
|
6
6
|
|
|
7
7
|
export interface KbdProps {
|
|
8
8
|
className?: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcMarkdown } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcMarkdown } from '@arclux/arc-ui/markdown';
|
|
6
6
|
|
|
7
7
|
export interface MarkdownProps {
|
|
8
8
|
content?: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcNumberFormat } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcNumberFormat } from '@arclux/arc-ui/number-format';
|
|
6
6
|
|
|
7
7
|
export interface NumberFormatProps {
|
|
8
8
|
value?: number;
|
package/src/typography/Prose.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcProse } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcProse } from '@arclux/arc-ui/prose';
|
|
6
6
|
|
|
7
7
|
export interface ProseProps {
|
|
8
8
|
size?: 'sm' | 'md' | 'lg';
|
package/src/typography/Text.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcText } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcText } from '@arclux/arc-ui/text';
|
|
6
6
|
|
|
7
7
|
export interface TextProps {
|
|
8
8
|
variant?: 'accent' | 'code';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { createComponent
|
|
5
|
-
import { ArcTimeAgo } from '@arclux/arc-ui';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcTimeAgo } from '@arclux/arc-ui/time-ago';
|
|
6
6
|
|
|
7
7
|
export interface TimeAgoProps {
|
|
8
8
|
datetime?: string;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createComponent, type EventName } from '@lit/react';
|
|
5
|
-
import { ArcTypewriter } from '@arclux/arc-ui';
|
|
5
|
+
import { ArcTypewriter } from '@arclux/arc-ui/typewriter';
|
|
6
6
|
|
|
7
7
|
export interface TypewriterProps {
|
|
8
8
|
text?: string;
|
|
@@ -11,8 +11,6 @@ export interface TypewriterProps {
|
|
|
11
11
|
cursor?: boolean;
|
|
12
12
|
loop?: boolean;
|
|
13
13
|
nowrap?: boolean;
|
|
14
|
-
_displayText?: string;
|
|
15
|
-
_complete?: string;
|
|
16
14
|
className?: string;
|
|
17
15
|
children?: React.ReactNode;
|
|
18
16
|
onArcComplete?: (e: CustomEvent) => void;
|