@pathscale/ui 0.0.100 → 0.0.102
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/dist/components/artboard/Artboard.d.ts +1 -1
- package/dist/components/bottom-sheet/BottomSheet.d.ts +1 -1
- package/dist/components/browsermockup/BrowserMockup.d.ts +1 -1
- package/dist/components/card/Card.d.ts +2 -2
- package/dist/components/chatbubble/ChatBubbleAvatar.d.ts +1 -1
- package/dist/components/chatbubble/ChatBubbleHeader.d.ts +1 -1
- package/dist/components/codemockup/CodeMockup.d.ts +2 -2
- package/dist/components/codemockup/CodeMockupLine.d.ts +1 -1
- package/dist/components/connectionstatus/ConnectionStatus.d.ts +1 -1
- package/dist/components/connectionstatus/index.d.ts +1 -1
- package/dist/components/diff/Diff.d.ts +1 -1
- package/dist/components/dock/Dock.d.ts +1 -1
- package/dist/components/dock/DockItem.d.ts +2 -2
- package/dist/components/drawer/Drawer.d.ts +1 -1
- package/dist/components/dropdown/DropdownToggle.d.ts +1 -1
- package/dist/components/dropdown/index.d.ts +1 -1
- package/dist/components/flex/Flex.d.ts +1 -1
- package/dist/components/footer/Footer.d.ts +1 -1
- package/dist/components/footer/FooterTitle.d.ts +2 -2
- package/dist/components/form/Form.d.ts +6 -6
- package/dist/components/form/FormDropdown.d.ts +1 -1
- package/dist/components/form/FormField.d.ts +1 -1
- package/dist/components/form/Label.d.ts +1 -1
- package/dist/components/form/NumberField.d.ts +1 -1
- package/dist/components/form/PasswordField.d.ts +1 -1
- package/dist/components/form/ValidatedForm.d.ts +1 -1
- package/dist/components/form/index.d.ts +1 -1
- package/dist/components/grid/Grid.d.ts +1 -1
- package/dist/components/hero/Hero.d.ts +1 -1
- package/dist/components/hero/HeroContent.d.ts +1 -1
- package/dist/components/hero/HeroOverlay.d.ts +1 -1
- package/dist/components/icon/Icon.d.ts +1 -1
- package/dist/components/mask/index.d.ts +1 -1
- package/dist/components/menu/index.d.ts +1 -1
- package/dist/components/modal/Modal.d.ts +1 -1
- package/dist/components/modal/index.d.ts +5 -5
- package/dist/components/phonemockup/PhoneMockup.d.ts +2 -2
- package/dist/components/props-table/PropsTable.d.ts +1 -1
- package/dist/components/radio/Radio.d.ts +1 -1
- package/dist/components/range/Range.d.ts +2 -2
- package/dist/components/showcase/ShowcaseBlock.d.ts +1 -1
- package/dist/components/showcase-section/ShowcaseSection.d.ts +1 -1
- package/dist/components/stats/Stat.d.ts +1 -1
- package/dist/components/status/Status.d.ts +1 -1
- package/dist/components/streaming-table/StreamingTable.d.ts +2 -1
- package/dist/components/streaming-table/createStreamingTableStore.d.ts +3 -0
- package/dist/components/streaming-table/index.d.ts +3 -1
- package/dist/components/streaming-table/types.d.ts +10 -0
- package/dist/components/svgbackground/SvgBackground.d.ts +1 -1
- package/dist/components/svgbackground/index.d.ts +2 -2
- package/dist/components/table/TableBody.d.ts +2 -2
- package/dist/components/table/TableCell.d.ts +1 -1
- package/dist/components/table/TableFooter.d.ts +2 -2
- package/dist/components/table/TableHead.d.ts +2 -2
- package/dist/components/table/TableHeadCell.d.ts +1 -1
- package/dist/components/table/TableRow.d.ts +2 -2
- package/dist/components/utils.d.ts +1 -1
- package/dist/components/windowmockup/WindowMockup.d.ts +2 -2
- package/dist/index.d.ts +3 -1
- package/dist/index.js +95 -60
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type JSX, type ParentComponent } from "solid-js";
|
|
2
|
-
import { IComponentBaseProps } from "../types";
|
|
2
|
+
import type { IComponentBaseProps } from "../types";
|
|
3
3
|
export type BrowserMockupProps = Omit<JSX.HTMLAttributes<HTMLDivElement>, "ref"> & IComponentBaseProps & {
|
|
4
4
|
url: string;
|
|
5
5
|
variant?: "border" | "background";
|
|
@@ -10,8 +10,8 @@ export type CardProps = IComponentBaseProps & JSX.HTMLAttributes<HTMLDivElement>
|
|
|
10
10
|
variant?: Exclude<ComponentVariant, "soft"> | "border";
|
|
11
11
|
imageFull?: boolean;
|
|
12
12
|
side?: ComponentSize | boolean;
|
|
13
|
-
background?: ComponentColor |
|
|
14
|
-
shadow?:
|
|
13
|
+
background?: ComponentColor | "base-100" | "base-200" | "base-300";
|
|
14
|
+
shadow?: "none" | "sm" | "md" | "lg" | "xl";
|
|
15
15
|
fullWidth?: boolean;
|
|
16
16
|
"aria-label"?: string;
|
|
17
17
|
"aria-describedby"?: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { JSX } from "solid-js";
|
|
2
2
|
import type { IComponentBaseProps } from "../types";
|
|
3
3
|
export type ChatBubbleHeaderProps = JSX.HTMLAttributes<HTMLDivElement> & IComponentBaseProps;
|
|
4
4
|
declare const ChatBubbleHeader: (props: ChatBubbleHeaderProps) => JSX.Element;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { JSX, ParentProps } from "solid-js";
|
|
2
|
-
import { IComponentBaseProps } from "../types";
|
|
1
|
+
import { type JSX, type ParentProps } from "solid-js";
|
|
2
|
+
import type { IComponentBaseProps } from "../types";
|
|
3
3
|
type CodeMockupProps = JSX.HTMLAttributes<HTMLDivElement> & IComponentBaseProps;
|
|
4
4
|
declare const CodeMockup: (props: ParentProps<CodeMockupProps>) => JSX.Element;
|
|
5
5
|
export default CodeMockup;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component } from "solid-js";
|
|
1
|
+
import { type Component } from "solid-js";
|
|
2
2
|
import type { IComponentBaseProps } from "../types";
|
|
3
3
|
export type ConnectionState = "connecting" | "connected" | "disconnected" | "error";
|
|
4
4
|
export interface ConnectionStatusProps extends IComponentBaseProps {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { default } from "./ConnectionStatus";
|
|
2
|
-
export {
|
|
2
|
+
export type { ConnectionState, ConnectionStatusProps, } from "./ConnectionStatus";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { JSX } from "solid-js";
|
|
2
|
-
import { IComponentBaseProps, ComponentSize } from "../types";
|
|
2
|
+
import type { IComponentBaseProps, ComponentSize } from "../types";
|
|
3
3
|
import { type DockItemProps as ItemProps } from "./DockItem";
|
|
4
4
|
import { type DockLabelProps as LabelProps } from "./DockLabel";
|
|
5
5
|
export type DockItemProps = ItemProps;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { JSX, Component } from "solid-js";
|
|
2
|
-
import { IComponentBaseProps } from "../types";
|
|
3
|
-
import { ComponentColor } from "../types";
|
|
2
|
+
import type { IComponentBaseProps } from "../types";
|
|
3
|
+
import type { ComponentColor } from "../types";
|
|
4
4
|
export type DockItemProps = JSX.ButtonHTMLAttributes<HTMLButtonElement> & IComponentBaseProps & {
|
|
5
5
|
color?: ComponentColor;
|
|
6
6
|
active?: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type JSX, type ParentComponent } from "solid-js";
|
|
2
|
-
import { IComponentBaseProps } from "../types";
|
|
2
|
+
import type { IComponentBaseProps } from "../types";
|
|
3
3
|
export type DrawerProps = Omit<JSX.HTMLAttributes<HTMLDivElement>, "ref"> & IComponentBaseProps & {
|
|
4
4
|
side: JSX.Element;
|
|
5
5
|
open?: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { JSX } from "solid-js";
|
|
1
|
+
import { type JSX } from "solid-js";
|
|
2
2
|
import type { ComponentColor, ComponentSize, IComponentBaseProps } from "../types";
|
|
3
3
|
export type DropdownToggleProps = Omit<JSX.LabelHTMLAttributes<HTMLLabelElement>, "color"> & IComponentBaseProps & {
|
|
4
4
|
color?: ComponentColor;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import Dropdown from
|
|
1
|
+
import Dropdown from "./Dropdown";
|
|
2
2
|
export default Dropdown;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type JSX } from "solid-js";
|
|
2
2
|
import type { IComponentBaseProps } from "../types";
|
|
3
|
-
import { ResponsiveProp } from "../types";
|
|
3
|
+
import type { ResponsiveProp } from "../types";
|
|
4
4
|
export type FlexProps = IComponentBaseProps & Omit<JSX.HTMLAttributes<HTMLElement>, "ref"> & {
|
|
5
5
|
as?: keyof JSX.IntrinsicElements;
|
|
6
6
|
direction?: ResponsiveProp<"row" | "col" | "row-reverse" | "col-reverse">;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IComponentBaseProps } from "../types";
|
|
2
|
-
import { ParentComponent } from "solid-js";
|
|
1
|
+
import type { IComponentBaseProps } from "../types";
|
|
2
|
+
import { type ParentComponent } from "solid-js";
|
|
3
3
|
export type FooterTitleProps = IComponentBaseProps;
|
|
4
4
|
export declare const FooterTitle: ParentComponent<FooterTitleProps>;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { type JSX, type ParentComponent } from "solid-js";
|
|
2
|
-
import { IComponentBaseProps } from "../types";
|
|
2
|
+
import type { IComponentBaseProps } from "../types";
|
|
3
3
|
import ValidatedForm, { useFormValidation } from "./ValidatedForm";
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
8
|
-
export {
|
|
4
|
+
export type { ValidatedFormProps } from "./ValidatedForm";
|
|
5
|
+
export type { FormFieldProps } from "./FormField";
|
|
6
|
+
export type { PasswordFieldProps } from "./PasswordField";
|
|
7
|
+
export type { NumberFieldProps } from "./NumberField";
|
|
8
|
+
export type { FormDropdownProps, DropdownOption } from "./FormDropdown";
|
|
9
9
|
export type FormProps = Omit<JSX.HTMLAttributes<HTMLFormElement>, "ref"> & IComponentBaseProps & {
|
|
10
10
|
autoFocus?: boolean;
|
|
11
11
|
cycleOnEnter?: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type JSX, type ParentComponent } from "solid-js";
|
|
2
|
-
import { IComponentBaseProps } from "../types";
|
|
2
|
+
import type { IComponentBaseProps } from "../types";
|
|
3
3
|
export type LabelProps = Omit<JSX.HTMLAttributes<HTMLLabelElement>, "ref"> & IComponentBaseProps & {
|
|
4
4
|
title?: string;
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type JSX } from "solid-js";
|
|
2
|
-
import { z } from "zod";
|
|
2
|
+
import type { z } from "zod";
|
|
3
3
|
import type { ObjectSetter, Paths } from "@felte/common";
|
|
4
4
|
import { type FormProps } from "./Form";
|
|
5
5
|
export type ValidatedFormProps<T extends z.ZodTypeAny> = Omit<FormProps, "onSubmit"> & {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { default } from "./Form";
|
|
2
2
|
export { type FormProps, type ValidatedFormProps, type FormFieldProps, type PasswordFieldProps, type NumberFieldProps, useFormValidation, } from "./Form";
|
|
3
|
-
export {
|
|
3
|
+
export type { LabelProps } from "./Label";
|
|
4
4
|
export { default as FormDropdown, type FormDropdownProps, type DropdownOption, } from "./FormDropdown";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type JSX } from "solid-js";
|
|
2
2
|
import type { IComponentBaseProps } from "../types";
|
|
3
|
-
import { ResponsiveProp } from "../types";
|
|
3
|
+
import type { ResponsiveProp } from "../types";
|
|
4
4
|
type GridFlow = "row" | "col" | "row-dense" | "col-dense";
|
|
5
5
|
type GridSize = "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
|
|
6
6
|
type GridGap = "none" | "sm" | "md" | "lg" | "xl";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type JSX } from "solid-js";
|
|
2
2
|
import type { IComponentBaseProps } from "../types";
|
|
3
|
-
import { ComponentColor } from "../types";
|
|
3
|
+
import type { ComponentColor } from "../types";
|
|
4
4
|
export type IconProps = IComponentBaseProps & {
|
|
5
5
|
width?: number;
|
|
6
6
|
height?: number;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import Mask from
|
|
1
|
+
import Mask from "./Mask";
|
|
2
2
|
export default Mask;
|
|
@@ -13,7 +13,7 @@ export type ModalProps = IComponentBaseProps & JSX.HTMLAttributes<HTMLDialogElem
|
|
|
13
13
|
onClose?: () => void;
|
|
14
14
|
closeOnEsc?: boolean;
|
|
15
15
|
closeOnOutsideClick?: boolean;
|
|
16
|
-
size?: ComponentSize |
|
|
16
|
+
size?: ComponentSize | "full";
|
|
17
17
|
};
|
|
18
18
|
export type DialogProps = Omit<ModalProps, "ref">;
|
|
19
19
|
export declare function Modal(props: ModalProps): JSX.Element;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { default } from "./Modal";
|
|
2
|
-
export {
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
2
|
+
export type { ModalProps as TModalProps, DialogProps as TDialogProps, } from "./Modal";
|
|
3
|
+
export type { ModalHeaderProps as TModalHeaderProps } from "./ModalHeader";
|
|
4
|
+
export type { ModalBodyProps as TModalBodyProps } from "./ModalBody";
|
|
5
|
+
export type { ModalActionsProps as TModalActionsProps } from "./ModalActions";
|
|
6
|
+
export type { ModalLegacyProps as TModalLegacyProps } from "./ModalLegacy";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ParentComponent, JSX } from "solid-js";
|
|
2
|
-
import { IComponentBaseProps, ComponentColor } from "../types";
|
|
1
|
+
import { type ParentComponent, type JSX } from "solid-js";
|
|
2
|
+
import type { IComponentBaseProps, ComponentColor } from "../types";
|
|
3
3
|
export type PhoneMockupProps = JSX.HTMLAttributes<HTMLDivElement> & IComponentBaseProps & {
|
|
4
4
|
color?: Exclude<ComponentColor, "ghost">;
|
|
5
5
|
innerProps?: JSX.HTMLAttributes<HTMLDivElement> & IComponentBaseProps;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type JSX } from "solid-js";
|
|
2
|
-
import { IComponentBaseProps } from "../types";
|
|
2
|
+
import type { IComponentBaseProps } from "../types";
|
|
3
3
|
export type ComponentColor = "primary" | "secondary" | "accent" | "info" | "success" | "warning" | "error";
|
|
4
4
|
export type ComponentSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
5
5
|
export type RadioProps = Omit<JSX.InputHTMLAttributes<HTMLInputElement>, "size"> & IComponentBaseProps & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { JSX } from "solid-js";
|
|
2
|
-
import { IComponentBaseProps } from "../types";
|
|
1
|
+
import { type JSX } from "solid-js";
|
|
2
|
+
import type { IComponentBaseProps } from "../types";
|
|
3
3
|
export type ComponentColor = "primary" | "secondary" | "accent" | "info" | "success" | "warning" | "error";
|
|
4
4
|
export type ComponentSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
5
5
|
export type RangeProps = Omit<JSX.InputHTMLAttributes<HTMLInputElement>, "size"> & IComponentBaseProps & {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type JSX } from "solid-js";
|
|
2
2
|
import { type StatSectionProps } from "./StatSection";
|
|
3
|
-
import { IComponentBaseProps } from "../types";
|
|
3
|
+
import type { IComponentBaseProps } from "../types";
|
|
4
4
|
export type StatProps = JSX.HTMLAttributes<HTMLDivElement> & IComponentBaseProps;
|
|
5
5
|
declare const _default: ((props: StatProps) => JSX.Element) & {
|
|
6
6
|
Title: (props: Omit<StatSectionProps, "section">) => JSX.Element;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import type { TableProps } from "../table";
|
|
2
|
-
import type { StreamingColumnDef } from "./types";
|
|
2
|
+
import type { StreamingColumnDef, StreamingConfig } from "./types";
|
|
3
3
|
export type StreamingTableProps<TData> = {
|
|
4
4
|
data: TData[];
|
|
5
5
|
columns: StreamingColumnDef<TData>[];
|
|
6
6
|
getRowId?: (row: TData) => string;
|
|
7
|
+
streamingConfig?: StreamingConfig;
|
|
7
8
|
} & Omit<TableProps, "children">;
|
|
8
9
|
declare const StreamingTable: <TData>(props: StreamingTableProps<TData>) => import("solid-js").JSX.Element;
|
|
9
10
|
export default StreamingTable;
|
|
@@ -6,5 +6,8 @@ export interface StreamingTableStore<T> {
|
|
|
6
6
|
upsertRows: (rows: T[], getId: (row: T) => string) => void;
|
|
7
7
|
updateRow: (id: string, patch: Partial<T>) => void;
|
|
8
8
|
removeRow: (id: string) => void;
|
|
9
|
+
appendRow: (row: T, getId: (row: T) => string) => void;
|
|
10
|
+
appendRows: (rows: T[], getId: (row: T) => string) => void;
|
|
11
|
+
truncateToSize: (maxSize: number) => void;
|
|
9
12
|
}
|
|
10
13
|
export declare function createStreamingTableStore<T>(): StreamingTableStore<T>;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
export { default as StreamingTable } from "./StreamingTable";
|
|
2
2
|
export type { StreamingTableProps } from "./StreamingTable";
|
|
3
|
-
export type { StreamingColumnDef } from "./types";
|
|
3
|
+
export type { StreamingColumnDef, StreamingConfig } from "./types";
|
|
4
|
+
export { createStreamingTableStore } from "./createStreamingTableStore";
|
|
5
|
+
export type { StreamingTableStore } from "./createStreamingTableStore";
|
|
@@ -14,4 +14,14 @@ export interface StreamingColumnDef<T> {
|
|
|
14
14
|
}) => JSX.Element;
|
|
15
15
|
/** Extra config (sorting, filters, etc.) */
|
|
16
16
|
meta?: Record<string, any>;
|
|
17
|
+
/** Enable column filter */
|
|
18
|
+
enableColumnFilter?: boolean;
|
|
19
|
+
/** Enable sorting for this column */
|
|
20
|
+
enableSorting?: boolean;
|
|
21
|
+
}
|
|
22
|
+
export interface StreamingConfig {
|
|
23
|
+
/** Maximum buffer size (default: 1000) */
|
|
24
|
+
maxBufferSize?: number;
|
|
25
|
+
/** Append-only mode - don't remove stale rows (default: false) */
|
|
26
|
+
appendMode?: boolean;
|
|
17
27
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as SvgBackground } from
|
|
2
|
-
export type { SvgBackgroundProps } from
|
|
1
|
+
export { default as SvgBackground } from "./SvgBackground";
|
|
2
|
+
export type { SvgBackgroundProps } from "./SvgBackground";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { type Component, JSX } from "solid-js";
|
|
2
|
-
import {
|
|
1
|
+
import { type Component, type JSX } from "solid-js";
|
|
2
|
+
import type { IComponentBaseProps } from "../types";
|
|
3
3
|
export type TableBodyProps = JSX.HTMLAttributes<HTMLTableSectionElement> & IComponentBaseProps;
|
|
4
4
|
declare const TableBody: Component<TableBodyProps>;
|
|
5
5
|
export default TableBody;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type Component, type JSX } from "solid-js";
|
|
2
|
-
import {
|
|
2
|
+
import type { IComponentBaseProps } from "../types";
|
|
3
3
|
export type TableCellProps = JSX.HTMLAttributes<HTMLTableCellElement> & IComponentBaseProps & {
|
|
4
4
|
colSpan?: number;
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { type Component, JSX } from "solid-js";
|
|
2
|
-
import {
|
|
1
|
+
import { type Component, type JSX } from "solid-js";
|
|
2
|
+
import type { IComponentBaseProps } from "../types";
|
|
3
3
|
export type TableFooterProps = JSX.HTMLAttributes<HTMLTableSectionElement> & IComponentBaseProps & {
|
|
4
4
|
noCell?: boolean;
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { type Component, JSX } from "solid-js";
|
|
2
|
-
import {
|
|
1
|
+
import { type Component, type JSX } from "solid-js";
|
|
2
|
+
import type { IComponentBaseProps } from "../types";
|
|
3
3
|
export type TableHeadProps = JSX.HTMLAttributes<HTMLTableSectionElement> & IComponentBaseProps & {
|
|
4
4
|
noCell?: boolean;
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type Component, type JSX } from "solid-js";
|
|
2
|
-
import {
|
|
2
|
+
import type { IComponentBaseProps } from "../types";
|
|
3
3
|
export type TableHeadCellProps = JSX.HTMLAttributes<HTMLTableCellElement> & IComponentBaseProps & {
|
|
4
4
|
colSpan?: number;
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { type Component, JSX } from "solid-js";
|
|
2
|
-
import {
|
|
1
|
+
import { type Component, type JSX } from "solid-js";
|
|
2
|
+
import type { IComponentBaseProps } from "../types";
|
|
3
3
|
export type TableRowProps = JSX.HTMLAttributes<HTMLTableRowElement> & IComponentBaseProps & {
|
|
4
4
|
active?: boolean;
|
|
5
5
|
noCell?: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type JSX } from "solid-js";
|
|
2
|
-
import { ResponsiveProp } from "./types";
|
|
2
|
+
import type { ResponsiveProp } from "./types";
|
|
3
3
|
export declare function wrapWithElementIfInvalid({ node, wrapper, className, }: {
|
|
4
4
|
node: JSX.Element | string | number | null | undefined;
|
|
5
5
|
wrapper?: keyof JSX.IntrinsicElements;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ParentComponent, JSX } from "solid-js";
|
|
2
|
-
import { IComponentBaseProps, ComponentColor } from "../types";
|
|
1
|
+
import { type ParentComponent, type JSX } from "solid-js";
|
|
2
|
+
import type { IComponentBaseProps, ComponentColor } from "../types";
|
|
3
3
|
export type WindowMockupColors = Exclude<ComponentColor, "ghost">;
|
|
4
4
|
export type WindowMockupProps = JSX.HTMLAttributes<HTMLDivElement> & IComponentBaseProps & {
|
|
5
5
|
frameColor?: WindowMockupColors;
|
package/dist/index.d.ts
CHANGED
|
@@ -77,7 +77,9 @@ export type { TableProps } from "./components/table";
|
|
|
77
77
|
export type { EnhancedTableProps } from "./components/table/EnhancedTable";
|
|
78
78
|
export { StreamingTable } from "./components/streaming-table";
|
|
79
79
|
export type { StreamingTableProps } from "./components/streaming-table";
|
|
80
|
-
export type { StreamingColumnDef } from "./components/streaming-table";
|
|
80
|
+
export type { StreamingColumnDef, StreamingConfig, } from "./components/streaming-table";
|
|
81
|
+
export { createStreamingTableStore } from "./components/streaming-table";
|
|
82
|
+
export type { StreamingTableStore } from "./components/streaming-table";
|
|
81
83
|
export { default as Tabs } from "./components/tabs";
|
|
82
84
|
export type { RadioTabProps, TabProps, TabsProps } from "./components/tabs";
|
|
83
85
|
export { default as Textarea } from "./components/textarea";
|
package/dist/index.js
CHANGED
|
@@ -9394,7 +9394,7 @@ const Progress_Progress = (props)=>{
|
|
|
9394
9394
|
const getAriaValueNow = ()=>{
|
|
9395
9395
|
if (void 0 !== local["aria-valuenow"]) return local["aria-valuenow"];
|
|
9396
9396
|
const value = others.value;
|
|
9397
|
-
if (
|
|
9397
|
+
if ("number" == typeof value || "string" == typeof value) return value;
|
|
9398
9398
|
};
|
|
9399
9399
|
return (()=>{
|
|
9400
9400
|
var _el$ = Progress_tmpl$();
|
|
@@ -10612,8 +10612,8 @@ const steps_Steps = Object.assign(Steps, {
|
|
|
10612
10612
|
const steps = steps_Steps;
|
|
10613
10613
|
var SvgBackground_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<svg><ellipse></svg>", false, true, false), SvgBackground_tmpl$2 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<svg><circle></svg>", false, true, false), SvgBackground_tmpl$3 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<svg><circle cx=0 cy=0 r=100 opacity=0.7></svg>", false, true, false), SvgBackground_tmpl$4 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<svg><circle cx=400 cy=0 r=120></svg>", false, true, false), SvgBackground_tmpl$5 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<svg><circle cx=0 cy=400 r=100 opacity=0.7></svg>", false, true, false), _tmpl$6 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<svg><circle cx=400 cy=400 r=120></svg>", false, true, false), _tmpl$7 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<svg><circle cx=0 cy=200 r=70 opacity=0.6></svg>", false, true, false), _tmpl$8 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<svg><circle cx=200 cy=0 r=100></svg>", false, true, false), _tmpl$9 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<svg><circle cx=400 cy=200 r=100></svg>", false, true, false), _tmpl$0 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<svg><circle cx=200 cy=400 r=100></svg>", false, true, false), _tmpl$1 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)('<div><div><svg viewBox="0 0 400 400"xmlns=http://www.w3.org/2000/svg><rect width=400 height=400></rect></svg></div><canvas></canvas><div class="relative z-10 h-full w-full">'), _tmpl$10 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)('<div class="absolute inset-0 z-5">');
|
|
10614
10614
|
function hexToRgb(hex) {
|
|
10615
|
-
hex = hex.replace(/^#/,
|
|
10616
|
-
const bigint = parseInt(hex, 16);
|
|
10615
|
+
hex = hex.replace(/^#/, "");
|
|
10616
|
+
const bigint = Number.parseInt(hex, 16);
|
|
10617
10617
|
const r = bigint >> 16 & 255;
|
|
10618
10618
|
const g = bigint >> 8 & 255;
|
|
10619
10619
|
const b = 255 & bigint;
|
|
@@ -10624,7 +10624,7 @@ function hexToRgb(hex) {
|
|
|
10624
10624
|
};
|
|
10625
10625
|
}
|
|
10626
10626
|
function SvgBackground(props) {
|
|
10627
|
-
const { colorStart =
|
|
10627
|
+
const { colorStart = "#6366f1", colorEnd = "#4f46e5", backgroundColor = "#000000", opacity = 1, blurIntensity = 40, density = 5, darkness = 0, class: className = "", style = {}, children } = props;
|
|
10628
10628
|
let containerRef;
|
|
10629
10629
|
let svgRef;
|
|
10630
10630
|
let canvasRef;
|
|
@@ -10635,7 +10635,7 @@ function SvgBackground(props) {
|
|
|
10635
10635
|
const r = Math.round(start.r + (end.r - start.r) * t);
|
|
10636
10636
|
const g = Math.round(start.g + (end.g - start.g) * t);
|
|
10637
10637
|
const b = Math.round(start.b + (end.b - start.b) * t);
|
|
10638
|
-
return `#${r.toString(16).padStart(2,
|
|
10638
|
+
return `#${r.toString(16).padStart(2, "0")}${g.toString(16).padStart(2, "0")}${b.toString(16).padStart(2, "0")}`;
|
|
10639
10639
|
};
|
|
10640
10640
|
const generateShapes = ()=>{
|
|
10641
10641
|
const normalizedDensity = Math.max(1, density);
|
|
@@ -10912,7 +10912,7 @@ function SvgBackground(props) {
|
|
|
10912
10912
|
const svgBlob = new Blob([
|
|
10913
10913
|
svgData
|
|
10914
10914
|
], {
|
|
10915
|
-
type:
|
|
10915
|
+
type: "image/svg+xml"
|
|
10916
10916
|
});
|
|
10917
10917
|
const svgUrl = URL.createObjectURL(svgBlob);
|
|
10918
10918
|
const img = new Image();
|
|
@@ -10925,7 +10925,7 @@ function SvgBackground(props) {
|
|
|
10925
10925
|
canvasRef.width = rect.width + 2 * blurPadding;
|
|
10926
10926
|
canvasRef.height = rect.height + 2 * blurPadding;
|
|
10927
10927
|
}
|
|
10928
|
-
const ctx = canvasRef.getContext(
|
|
10928
|
+
const ctx = canvasRef.getContext("2d");
|
|
10929
10929
|
if (!ctx) return;
|
|
10930
10930
|
ctx.clearRect(0, 0, canvasRef.width, canvasRef.height);
|
|
10931
10931
|
ctx.fillStyle = backgroundColor;
|
|
@@ -10936,7 +10936,7 @@ function SvgBackground(props) {
|
|
|
10936
10936
|
};
|
|
10937
10937
|
};
|
|
10938
10938
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.onMount)(()=>{
|
|
10939
|
-
if (window &&
|
|
10939
|
+
if (window && "ResizeObserver" in window) {
|
|
10940
10940
|
const observer = new ResizeObserver(()=>{
|
|
10941
10941
|
renderSvgToCanvas();
|
|
10942
10942
|
});
|
|
@@ -10953,17 +10953,17 @@ function SvgBackground(props) {
|
|
|
10953
10953
|
}, 0);
|
|
10954
10954
|
});
|
|
10955
10955
|
const backgroundStyle = ()=>({
|
|
10956
|
-
position:
|
|
10957
|
-
overflow:
|
|
10956
|
+
position: "relative",
|
|
10957
|
+
overflow: "hidden",
|
|
10958
10958
|
...style
|
|
10959
10959
|
});
|
|
10960
10960
|
const canvasStyle = ()=>({
|
|
10961
|
-
position:
|
|
10961
|
+
position: "absolute",
|
|
10962
10962
|
top: `-${2 * blurIntensity}px`,
|
|
10963
10963
|
left: `-${2 * blurIntensity}px`,
|
|
10964
10964
|
width: `calc(100% + ${4 * blurIntensity}px)`,
|
|
10965
10965
|
height: `calc(100% + ${4 * blurIntensity}px)`,
|
|
10966
|
-
|
|
10966
|
+
"z-index": "0",
|
|
10967
10967
|
opacity: opacity.toString(),
|
|
10968
10968
|
filter: `blur(${blurIntensity}px)`
|
|
10969
10969
|
});
|
|
@@ -11952,6 +11952,25 @@ function createStreamingTableStore() {
|
|
|
11952
11952
|
function upsertRows(rows, getId) {
|
|
11953
11953
|
rows.forEach((row)=>upsertRow(row, getId));
|
|
11954
11954
|
}
|
|
11955
|
+
function appendRow(row, getId) {
|
|
11956
|
+
const id = getId(row);
|
|
11957
|
+
const stores = rowStores();
|
|
11958
|
+
const existing = stores.find((s)=>s.id === id);
|
|
11959
|
+
if (existing) return;
|
|
11960
|
+
setRowStores([
|
|
11961
|
+
...stores,
|
|
11962
|
+
createRowStore(id, row)
|
|
11963
|
+
]);
|
|
11964
|
+
}
|
|
11965
|
+
function appendRows(rows, getId) {
|
|
11966
|
+
const stores = rowStores();
|
|
11967
|
+
const existingIds = new Set(stores.map((s)=>s.id));
|
|
11968
|
+
const newStores = rows.filter((row)=>!existingIds.has(getId(row))).map((row)=>createRowStore(getId(row), row));
|
|
11969
|
+
if (newStores.length > 0) setRowStores([
|
|
11970
|
+
...stores,
|
|
11971
|
+
...newStores
|
|
11972
|
+
]);
|
|
11973
|
+
}
|
|
11955
11974
|
function updateRow(id, patch) {
|
|
11956
11975
|
const stores = rowStores();
|
|
11957
11976
|
const existing = stores.find((s)=>s.id === id);
|
|
@@ -11961,22 +11980,37 @@ function createStreamingTableStore() {
|
|
|
11961
11980
|
const stores = rowStores().filter((s)=>s.id !== id);
|
|
11962
11981
|
setRowStores(stores);
|
|
11963
11982
|
}
|
|
11983
|
+
function truncateToSize(maxSize) {
|
|
11984
|
+
const stores = rowStores();
|
|
11985
|
+
if (stores.length <= maxSize) return;
|
|
11986
|
+
const truncated = stores.slice(-maxSize);
|
|
11987
|
+
setRowStores(truncated);
|
|
11988
|
+
}
|
|
11964
11989
|
return {
|
|
11965
11990
|
rows: rowStores,
|
|
11966
11991
|
loadInitial,
|
|
11967
11992
|
upsertRow,
|
|
11968
11993
|
upsertRows,
|
|
11969
11994
|
updateRow,
|
|
11970
|
-
removeRow
|
|
11995
|
+
removeRow,
|
|
11996
|
+
appendRow,
|
|
11997
|
+
appendRows,
|
|
11998
|
+
truncateToSize
|
|
11971
11999
|
};
|
|
11972
12000
|
}
|
|
12001
|
+
var StreamingTable_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<tbody>");
|
|
11973
12002
|
const StreamingTable_StreamingTable = (props)=>{
|
|
11974
12003
|
const [local, tableProps] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
|
|
11975
12004
|
"data",
|
|
11976
12005
|
"columns",
|
|
11977
|
-
"getRowId"
|
|
12006
|
+
"getRowId",
|
|
12007
|
+
"streamingConfig"
|
|
11978
12008
|
]);
|
|
11979
12009
|
const store = createStreamingTableStore();
|
|
12010
|
+
const config = {
|
|
12011
|
+
maxBufferSize: local.streamingConfig?.maxBufferSize ?? 1000,
|
|
12012
|
+
appendMode: local.streamingConfig?.appendMode ?? false
|
|
12013
|
+
};
|
|
11980
12014
|
const resolveId = (row)=>{
|
|
11981
12015
|
if (local.getRowId) return local.getRowId(row);
|
|
11982
12016
|
const anyRow = row;
|
|
@@ -11985,65 +12019,66 @@ const StreamingTable_StreamingTable = (props)=>{
|
|
|
11985
12019
|
};
|
|
11986
12020
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createEffect)(()=>{
|
|
11987
12021
|
const incoming = local.data ?? [];
|
|
11988
|
-
|
|
11989
|
-
|
|
11990
|
-
|
|
11991
|
-
|
|
11992
|
-
|
|
11993
|
-
|
|
11994
|
-
|
|
11995
|
-
|
|
11996
|
-
|
|
11997
|
-
|
|
12022
|
+
if (config.appendMode) {
|
|
12023
|
+
store.appendRows(incoming, resolveId);
|
|
12024
|
+
store.truncateToSize(config.maxBufferSize);
|
|
12025
|
+
} else {
|
|
12026
|
+
const idSet = new Set();
|
|
12027
|
+
incoming.forEach((row)=>{
|
|
12028
|
+
const id = resolveId(row);
|
|
12029
|
+
idSet.add(id);
|
|
12030
|
+
store.upsertRow(row, resolveId);
|
|
12031
|
+
});
|
|
12032
|
+
const current = store.rows();
|
|
12033
|
+
current.forEach((r)=>{
|
|
12034
|
+
if (!idSet.has(r.id)) store.removeRow(r.id);
|
|
12035
|
+
});
|
|
12036
|
+
}
|
|
11998
12037
|
});
|
|
11999
12038
|
return (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(table_Table, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(tableProps, {
|
|
12000
12039
|
get children () {
|
|
12001
12040
|
return [
|
|
12002
12041
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(table_Table.Head, {
|
|
12003
|
-
get children () {
|
|
12004
|
-
return (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(table_Table.Row, {
|
|
12005
|
-
get children () {
|
|
12006
|
-
return (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(__WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.For, {
|
|
12007
|
-
get each () {
|
|
12008
|
-
return local.columns;
|
|
12009
|
-
},
|
|
12010
|
-
children: (col)=>(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(table_Table.HeadCell, {
|
|
12011
|
-
get children () {
|
|
12012
|
-
return col.header;
|
|
12013
|
-
}
|
|
12014
|
-
})
|
|
12015
|
-
});
|
|
12016
|
-
}
|
|
12017
|
-
});
|
|
12018
|
-
}
|
|
12019
|
-
}),
|
|
12020
|
-
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(table_Table.Body, {
|
|
12021
12042
|
get children () {
|
|
12022
12043
|
return (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(__WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.For, {
|
|
12023
12044
|
get each () {
|
|
12024
|
-
return
|
|
12045
|
+
return local.columns;
|
|
12025
12046
|
},
|
|
12026
|
-
children: (
|
|
12047
|
+
children: (col)=>(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(table_Table.HeadCell, {
|
|
12027
12048
|
get children () {
|
|
12028
|
-
return
|
|
12029
|
-
get each () {
|
|
12030
|
-
return local.columns;
|
|
12031
|
-
},
|
|
12032
|
-
children: (col)=>(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(table_Table.Cell, {
|
|
12033
|
-
get children () {
|
|
12034
|
-
return (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.memo)(()=>!!col.cell)() ? col.cell({
|
|
12035
|
-
row: {
|
|
12036
|
-
original: rowStore.data()
|
|
12037
|
-
}
|
|
12038
|
-
}) : (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.memo)(()=>!!col.accessorKey)() ? rowStore.data()[col.accessorKey] : (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.memo)(()=>!!col.accessorFn)() ? col.accessorFn(rowStore.data()) : "";
|
|
12039
|
-
}
|
|
12040
|
-
})
|
|
12041
|
-
});
|
|
12049
|
+
return col.header;
|
|
12042
12050
|
}
|
|
12043
12051
|
})
|
|
12044
12052
|
});
|
|
12045
12053
|
}
|
|
12046
|
-
})
|
|
12054
|
+
}),
|
|
12055
|
+
(()=>{
|
|
12056
|
+
var _el$ = StreamingTable_tmpl$();
|
|
12057
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(__WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.For, {
|
|
12058
|
+
get each () {
|
|
12059
|
+
return store.rows();
|
|
12060
|
+
},
|
|
12061
|
+
children: (rowStore)=>(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(table_Table.Row, {
|
|
12062
|
+
get children () {
|
|
12063
|
+
return (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(__WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.For, {
|
|
12064
|
+
get each () {
|
|
12065
|
+
return local.columns;
|
|
12066
|
+
},
|
|
12067
|
+
children: (col)=>(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(table_Table.Cell, {
|
|
12068
|
+
get children () {
|
|
12069
|
+
return (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.memo)(()=>!!col.cell)() ? col.cell({
|
|
12070
|
+
row: {
|
|
12071
|
+
original: rowStore.data()
|
|
12072
|
+
}
|
|
12073
|
+
}) : (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.memo)(()=>!!col.accessorKey)() ? rowStore.data()[col.accessorKey] : (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.memo)(()=>!!col.accessorFn)() ? col.accessorFn(rowStore.data()) : "";
|
|
12074
|
+
}
|
|
12075
|
+
})
|
|
12076
|
+
});
|
|
12077
|
+
}
|
|
12078
|
+
})
|
|
12079
|
+
}));
|
|
12080
|
+
return _el$;
|
|
12081
|
+
})()
|
|
12047
12082
|
];
|
|
12048
12083
|
}
|
|
12049
12084
|
}));
|
|
@@ -12641,4 +12676,4 @@ const WindowMockup = (props)=>{
|
|
|
12641
12676
|
})();
|
|
12642
12677
|
};
|
|
12643
12678
|
const windowmockup_WindowMockup = WindowMockup;
|
|
12644
|
-
export { accordion_Accordion as Accordion, alert_Alert as Alert, artboard_Artboard as Artboard, avatar as Avatar, background_Background as Background, Badge, bottom_sheet_BottomSheet as BottomSheet, Breadcrumbs, breadcrumbs_BreadcrumbsItem as BreadcrumbsItem, browsermockup_BrowserMockup as BrowserMockup, button_Button as Button, Calendar, card_Card as Card, carousel_Carousel as Carousel, chatbubble_ChatBubble as ChatBubble, checkbox_Checkbox as Checkbox, codemockup_CodeMockup as CodeMockup, CodeMockupLine, collapse_Collapse as Collapse, CollapseContent, CollapseDetails, CollapseTitle, connectionstatus_ConnectionStatus as ConnectionStatus, CopyButton, countdown_Countdown as Countdown, diff_Diff as Diff, divider as Divider, dock as Dock, Drawer, dropdown as Dropdown, EnhancedTable, FileInput, flex_Flex as Flex, footer_Footer as Footer, form_Form as Form, Grid, hero_Hero as Hero, icon_Icon as Icon, indicator_Indicator as Indicator, input as Input, join_Join as Join, kbd_Kbd as Kbd, link_Link as Link, loading_Loading as Loading, mask as Mask, menu_Menu as Menu, modal_Modal as Modal, navbar_Navbar as Navbar, pagination_Pagination as Pagination, phonemockup_PhoneMockup as PhoneMockup, Progress, props_table_PropsTable as PropsTable, radialprogress_RadialProgress as RadialProgress, radio_Radio as Radio, range_Range as Range, Rating, select_Select as Select, showcase_ShowcaseBlock as ShowcaseBlock, showcase_section_ShowcaseSection as ShowcaseSection, sidenav_Sidenav as Sidenav, sidenav_SidenavButton as SidenavButton, sidenav_SidenavGroup as SidenavGroup, sidenav_SidenavItem as SidenavItem, sidenav_SidenavLink as SidenavLink, sidenav_SidenavMenu as SidenavMenu, skeleton_Skeleton as Skeleton, Stack, stat_card_StatCard as StatCard, stats_Stats as Stats, status_Status as Status, steps as Steps, StreamingTable, Summary, SvgBackground, Swap, table_Table as Table, tabs_Tabs as Tabs, textarea_Textarea as Textarea, Timeline, timeline_TimelineEnd as TimelineEnd, timeline_TimelineItem as TimelineItem, timeline_TimelineMiddle as TimelineMiddle, timeline_TimelineStart as TimelineStart, toast_Toast as Toast, ToastContainer, toggle_Toggle as Toggle, tooltip_Tooltip as Tooltip, windowmockup_WindowMockup as WindowMockup, connectionstatus_ConnectionStatus as default, toastStore, useDesktop, useFormValidation };
|
|
12679
|
+
export { accordion_Accordion as Accordion, alert_Alert as Alert, artboard_Artboard as Artboard, avatar as Avatar, background_Background as Background, Badge, bottom_sheet_BottomSheet as BottomSheet, Breadcrumbs, breadcrumbs_BreadcrumbsItem as BreadcrumbsItem, browsermockup_BrowserMockup as BrowserMockup, button_Button as Button, Calendar, card_Card as Card, carousel_Carousel as Carousel, chatbubble_ChatBubble as ChatBubble, checkbox_Checkbox as Checkbox, codemockup_CodeMockup as CodeMockup, CodeMockupLine, collapse_Collapse as Collapse, CollapseContent, CollapseDetails, CollapseTitle, connectionstatus_ConnectionStatus as ConnectionStatus, CopyButton, countdown_Countdown as Countdown, diff_Diff as Diff, divider as Divider, dock as Dock, Drawer, dropdown as Dropdown, EnhancedTable, FileInput, flex_Flex as Flex, footer_Footer as Footer, form_Form as Form, Grid, hero_Hero as Hero, icon_Icon as Icon, indicator_Indicator as Indicator, input as Input, join_Join as Join, kbd_Kbd as Kbd, link_Link as Link, loading_Loading as Loading, mask as Mask, menu_Menu as Menu, modal_Modal as Modal, navbar_Navbar as Navbar, pagination_Pagination as Pagination, phonemockup_PhoneMockup as PhoneMockup, Progress, props_table_PropsTable as PropsTable, radialprogress_RadialProgress as RadialProgress, radio_Radio as Radio, range_Range as Range, Rating, select_Select as Select, showcase_ShowcaseBlock as ShowcaseBlock, showcase_section_ShowcaseSection as ShowcaseSection, sidenav_Sidenav as Sidenav, sidenav_SidenavButton as SidenavButton, sidenav_SidenavGroup as SidenavGroup, sidenav_SidenavItem as SidenavItem, sidenav_SidenavLink as SidenavLink, sidenav_SidenavMenu as SidenavMenu, skeleton_Skeleton as Skeleton, Stack, stat_card_StatCard as StatCard, stats_Stats as Stats, status_Status as Status, steps as Steps, StreamingTable, Summary, SvgBackground, Swap, table_Table as Table, tabs_Tabs as Tabs, textarea_Textarea as Textarea, Timeline, timeline_TimelineEnd as TimelineEnd, timeline_TimelineItem as TimelineItem, timeline_TimelineMiddle as TimelineMiddle, timeline_TimelineStart as TimelineStart, toast_Toast as Toast, ToastContainer, toggle_Toggle as Toggle, tooltip_Tooltip as Tooltip, windowmockup_WindowMockup as WindowMockup, createStreamingTableStore, connectionstatus_ConnectionStatus as default, toastStore, useDesktop, useFormValidation };
|