@pathscale/ui 0.0.99 → 0.0.101

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 (61) hide show
  1. package/dist/components/artboard/Artboard.d.ts +1 -1
  2. package/dist/components/bottom-sheet/BottomSheet.d.ts +1 -1
  3. package/dist/components/browsermockup/BrowserMockup.d.ts +1 -1
  4. package/dist/components/card/Card.d.ts +2 -2
  5. package/dist/components/chatbubble/ChatBubbleAvatar.d.ts +1 -1
  6. package/dist/components/chatbubble/ChatBubbleHeader.d.ts +1 -1
  7. package/dist/components/codemockup/CodeMockup.d.ts +2 -2
  8. package/dist/components/codemockup/CodeMockupLine.d.ts +1 -1
  9. package/dist/components/connectionstatus/ConnectionStatus.d.ts +1 -1
  10. package/dist/components/connectionstatus/index.d.ts +1 -1
  11. package/dist/components/diff/Diff.d.ts +1 -1
  12. package/dist/components/dock/Dock.d.ts +1 -1
  13. package/dist/components/dock/DockItem.d.ts +2 -2
  14. package/dist/components/drawer/Drawer.d.ts +1 -1
  15. package/dist/components/dropdown/DropdownToggle.d.ts +1 -1
  16. package/dist/components/dropdown/index.d.ts +1 -1
  17. package/dist/components/flex/Flex.d.ts +1 -1
  18. package/dist/components/footer/Footer.d.ts +1 -1
  19. package/dist/components/footer/FooterTitle.d.ts +2 -2
  20. package/dist/components/form/Form.d.ts +6 -6
  21. package/dist/components/form/FormDropdown.d.ts +1 -1
  22. package/dist/components/form/FormField.d.ts +1 -1
  23. package/dist/components/form/Label.d.ts +1 -1
  24. package/dist/components/form/NumberField.d.ts +1 -1
  25. package/dist/components/form/PasswordField.d.ts +1 -1
  26. package/dist/components/form/ValidatedForm.d.ts +1 -1
  27. package/dist/components/form/index.d.ts +1 -1
  28. package/dist/components/grid/Grid.d.ts +1 -1
  29. package/dist/components/hero/Hero.d.ts +1 -1
  30. package/dist/components/hero/HeroContent.d.ts +1 -1
  31. package/dist/components/hero/HeroOverlay.d.ts +1 -1
  32. package/dist/components/icon/Icon.d.ts +1 -1
  33. package/dist/components/mask/index.d.ts +1 -1
  34. package/dist/components/menu/index.d.ts +1 -1
  35. package/dist/components/modal/Modal.d.ts +1 -1
  36. package/dist/components/modal/index.d.ts +5 -5
  37. package/dist/components/phonemockup/PhoneMockup.d.ts +2 -2
  38. package/dist/components/props-table/PropsTable.d.ts +1 -1
  39. package/dist/components/radio/Radio.d.ts +1 -1
  40. package/dist/components/range/Range.d.ts +2 -2
  41. package/dist/components/showcase/ShowcaseBlock.d.ts +1 -1
  42. package/dist/components/showcase-section/ShowcaseSection.d.ts +1 -1
  43. package/dist/components/stats/Stat.d.ts +1 -1
  44. package/dist/components/status/Status.d.ts +1 -1
  45. package/dist/components/streaming-table/StreamingTable.d.ts +9 -8
  46. package/dist/components/streaming-table/createStreamingTableStore.d.ts +3 -0
  47. package/dist/components/streaming-table/index.d.ts +3 -1
  48. package/dist/components/streaming-table/types.d.ts +10 -0
  49. package/dist/components/svgbackground/SvgBackground.d.ts +1 -1
  50. package/dist/components/svgbackground/index.d.ts +2 -2
  51. package/dist/components/table/TableBody.d.ts +2 -2
  52. package/dist/components/table/TableCell.d.ts +1 -1
  53. package/dist/components/table/TableFooter.d.ts +2 -2
  54. package/dist/components/table/TableHead.d.ts +2 -2
  55. package/dist/components/table/TableHeadCell.d.ts +1 -1
  56. package/dist/components/table/TableRow.d.ts +2 -2
  57. package/dist/components/utils.d.ts +1 -1
  58. package/dist/components/windowmockup/WindowMockup.d.ts +2 -2
  59. package/dist/index.d.ts +3 -1
  60. package/dist/index.js +94 -71
  61. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import { type ParentComponent } from "solid-js";
2
- import { IComponentBaseProps } from "../types";
2
+ import type { IComponentBaseProps } from "../types";
3
3
  export type ArtboardProps = IComponentBaseProps & {
4
4
  demo?: boolean;
5
5
  size?: 1 | 2 | 3 | 4 | 5 | 6;
@@ -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 interface BottomSheetProps extends IComponentBaseProps {
4
4
  isOpen: 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 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 | 'base-100' | 'base-200' | 'base-300';
14
- shadow?: 'none' | 'sm' | 'md' | 'lg' | 'xl';
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 { type JSX } from "solid-js";
1
+ import type { JSX } from "solid-js";
2
2
  import type { AvatarProps } from "../avatar";
3
3
  import type { IComponentBaseProps } from "../types";
4
4
  export type ChatBubbleAvatarProps = AvatarProps & IComponentBaseProps;
@@ -1,4 +1,4 @@
1
- import { type JSX } from "solid-js";
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 { JSX } from "solid-js";
1
+ import { type JSX } from "solid-js";
2
2
  type ComponentStatus = "info" | "success" | "warning" | "error";
3
3
  type AppTheme = "light" | "dark";
4
4
  type CodeMockupLineProps = JSX.HTMLAttributes<HTMLPreElement> & {
@@ -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 { type ConnectionState, type ConnectionStatusProps, } from "./ConnectionStatus";
2
+ export type { ConnectionState, ConnectionStatusProps, } from "./ConnectionStatus";
@@ -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 DiffProps = JSX.HTMLAttributes<HTMLDivElement> & IComponentBaseProps & {
4
4
  secondItem: JSX.Element;
5
5
  };
@@ -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 './Dropdown';
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 { ParentComponent } from "solid-js";
1
+ import { type ParentComponent } from "solid-js";
2
2
  import type { IComponentBaseProps } from "../types";
3
3
  export type FooterProps = IComponentBaseProps & {
4
4
  center?: boolean;
@@ -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 { 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, type DropdownOption } from "./FormDropdown";
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,4 +1,4 @@
1
- import { Component, JSX } from "solid-js";
1
+ import { type Component, type JSX } from "solid-js";
2
2
  export interface DropdownOption {
3
3
  value: string;
4
4
  label: string;
@@ -1,4 +1,4 @@
1
- import { Component } from "solid-js";
1
+ import { type Component } from "solid-js";
2
2
  import type { InputProps } from "../input";
3
3
  export interface FormFieldProps extends Omit<InputProps, "ref"> {
4
4
  label: string;
@@ -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,4 +1,4 @@
1
- import { Component } from "solid-js";
1
+ import { type Component } from "solid-js";
2
2
  import type { InputProps } from "../input";
3
3
  export interface NumberFieldProps extends Omit<InputProps, "type" | "ref"> {
4
4
  label?: string;
@@ -1,4 +1,4 @@
1
- import { Component, JSX } from "solid-js";
1
+ import { type Component, type JSX } from "solid-js";
2
2
  import type { InputProps } from "../input";
3
3
  export interface PasswordFieldProps extends Omit<InputProps, "type" | "ref"> {
4
4
  label?: string;
@@ -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 { type LabelProps } from "./Label";
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,4 +1,4 @@
1
- import { ParentComponent } from "solid-js";
1
+ import { type ParentComponent } from "solid-js";
2
2
  import type { IComponentBaseProps } from "../types";
3
3
  export type HeroProps = IComponentBaseProps & {
4
4
  minHeight?: string;
@@ -1,4 +1,4 @@
1
- import { ParentComponent } from "solid-js";
1
+ import { type ParentComponent } from "solid-js";
2
2
  import type { IComponentBaseProps } from "../types";
3
3
  export type HeroContentProps = IComponentBaseProps & {
4
4
  center?: boolean;
@@ -1,4 +1,4 @@
1
- import { ParentComponent } from "solid-js";
1
+ import { type ParentComponent } from "solid-js";
2
2
  import type { IComponentBaseProps } from "../types";
3
3
  export type HeroOverlayProps = IComponentBaseProps & {
4
4
  bgOpacity?: string;
@@ -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 './Mask';
1
+ import Mask from "./Mask";
2
2
  export default Mask;
@@ -1,3 +1,3 @@
1
- import Menu, { type MenuProps as TMenuProps } from './Menu';
1
+ import Menu, { type MenuProps as TMenuProps } from "./Menu";
2
2
  export type MenuProps = TMenuProps;
3
3
  export { Menu };
@@ -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 | 'full';
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 { type ModalProps as TModalProps, type 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";
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,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 interface PropDefinition {
4
4
  name: string;
@@ -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,4 +1,4 @@
1
- import { ParentComponent } from "solid-js";
1
+ import { type ParentComponent } from "solid-js";
2
2
  import type { IComponentBaseProps } from "../types";
3
3
  export interface ShowcaseBlockProps extends IComponentBaseProps {
4
4
  title: string;
@@ -1,4 +1,4 @@
1
- import { ParentComponent } from "solid-js";
1
+ import { type ParentComponent } from "solid-js";
2
2
  import type { IComponentBaseProps } from "../types";
3
3
  export interface ShowcaseSectionProps extends IComponentBaseProps {
4
4
  id: string;
@@ -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,4 +1,4 @@
1
- import { ParentComponent } from "solid-js";
1
+ import { type ParentComponent } from "solid-js";
2
2
  import type { ComponentColor, IComponentBaseProps } from "../types";
3
3
  export interface StatusProps extends IComponentBaseProps {
4
4
  color?: ComponentColor;
@@ -1,9 +1,10 @@
1
- import Table from "../table/Table";
2
- import type { StreamingColumnDef } from "./types";
3
- export type StreamingTableProps<T> = {
4
- data: T[];
5
- columns: StreamingColumnDef<T>[];
6
- getRowId?: (row: T) => string;
7
- } & Omit<Parameters<typeof Table>[0], "children">;
8
- export declare function StreamingTable<T>(props: StreamingTableProps<T>): import("solid-js").JSX.Element;
1
+ import { type EnhancedTableProps } from "../table/EnhancedTable";
2
+ import type { StreamingColumnDef, StreamingConfig } from "./types";
3
+ export type StreamingTableProps<TData> = {
4
+ data: TData[];
5
+ columns: StreamingColumnDef<TData>[];
6
+ getRowId?: (row: TData) => string;
7
+ streamingConfig?: StreamingConfig;
8
+ } & Omit<EnhancedTableProps<TData>, "data" | "columns">;
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,4 +1,4 @@
1
- import { JSX } from 'solid-js';
1
+ import { type JSX } from "solid-js";
2
2
  export interface SvgBackgroundProps {
3
3
  /** Primary gradient color (CSS color value) */
4
4
  colorStart?: string;
@@ -1,2 +1,2 @@
1
- export { default as SvgBackground } from './SvgBackground';
2
- export type { SvgBackgroundProps } from './SvgBackground';
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 { type IComponentBaseProps } from "../types";
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 { type IComponentBaseProps } from "../types";
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 { type IComponentBaseProps } from "../types";
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 { type IComponentBaseProps } from "../types";
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 { type IComponentBaseProps } from "../types";
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 { type IComponentBaseProps } from "../types";
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 ('number' == typeof value || 'string' == typeof value) return value;
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 = '#6366f1', colorEnd = '#4f46e5', backgroundColor = '#000000', opacity = 1, blurIntensity = 40, density = 5, darkness = 0, class: className = '', style = {}, children } = props;
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, '0')}${g.toString(16).padStart(2, '0')}${b.toString(16).padStart(2, '0')}`;
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: 'image/svg+xml'
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('2d');
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 && 'ResizeObserver' in 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: 'relative',
10957
- overflow: 'hidden',
10956
+ position: "relative",
10957
+ overflow: "hidden",
10958
10958
  ...style
10959
10959
  });
10960
10960
  const canvasStyle = ()=>({
10961
- position: 'absolute',
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
- 'z-index': '0',
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,78 +11980,82 @@ 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
  }
11973
- function StreamingTable_StreamingTable(props) {
11974
- const [local, tableProps] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
12001
+ const StreamingTable_StreamingTable = (props)=>{
12002
+ const [local, enhancedProps] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
11975
12003
  "data",
11976
12004
  "columns",
11977
- "getRowId"
12005
+ "getRowId",
12006
+ "streamingConfig"
11978
12007
  ]);
11979
- const getId = local.getRowId ?? ((row)=>row.id);
11980
12008
  const store = createStreamingTableStore();
11981
- (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.onMount)(()=>{
11982
- store.loadInitial(local.data, getId);
12009
+ const config = {
12010
+ maxBufferSize: local.streamingConfig?.maxBufferSize ?? 1000,
12011
+ appendMode: local.streamingConfig?.appendMode ?? false
12012
+ };
12013
+ const resolveId = (row)=>{
12014
+ if (local.getRowId) return local.getRowId(row);
12015
+ const anyRow = row;
12016
+ if (null != anyRow.id) return String(anyRow.id);
12017
+ return JSON.stringify(anyRow);
12018
+ };
12019
+ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createEffect)(()=>{
12020
+ const incoming = local.data ?? [];
12021
+ if (config.appendMode) {
12022
+ store.appendRows(incoming, resolveId);
12023
+ store.truncateToSize(config.maxBufferSize);
12024
+ } else {
12025
+ const idSet = new Set();
12026
+ incoming.forEach((row)=>{
12027
+ const id = resolveId(row);
12028
+ idSet.add(id);
12029
+ store.upsertRow(row, resolveId);
12030
+ });
12031
+ const current = store.rows();
12032
+ current.forEach((r)=>{
12033
+ if (!idSet.has(r.id)) store.removeRow(r.id);
12034
+ });
12035
+ }
11983
12036
  });
11984
- return (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(table_Table, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(tableProps, {
11985
- get children () {
11986
- return [
11987
- (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(table_Table.Head, {
11988
- get children () {
11989
- return (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(table_Table.Row, {
11990
- get children () {
11991
- return (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(__WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.For, {
11992
- get each () {
11993
- return local.columns;
11994
- },
11995
- children: (col)=>(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(table_Table.HeadCell, {
11996
- get children () {
11997
- return col.header;
11998
- }
11999
- })
12000
- });
12001
- }
12002
- });
12003
- }
12004
- }),
12005
- (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(table_Table.Body, {
12006
- get children () {
12007
- return (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(__WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.For, {
12008
- get each () {
12009
- return store.rows();
12010
- },
12011
- children: (rowStore)=>(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(table_Table.Row, {
12012
- get children () {
12013
- return (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(__WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.For, {
12014
- get each () {
12015
- return local.columns;
12016
- },
12017
- children: (col)=>(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(table_Table.Cell, {
12018
- get children () {
12019
- return (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.memo)(()=>!!col.cell)() ? col.cell({
12020
- row: {
12021
- original: rowStore.data()
12022
- }
12023
- }) : (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()) : "";
12024
- }
12025
- })
12026
- });
12027
- }
12028
- })
12029
- });
12030
- }
12031
- })
12032
- ];
12037
+ const tableData = ()=>store.rows().map((rowStore)=>rowStore.data());
12038
+ const enhancedColumns = ()=>local.columns.map((col)=>{
12039
+ const colDef = {
12040
+ header: col.header,
12041
+ meta: col.meta,
12042
+ enableColumnFilter: col.enableColumnFilter,
12043
+ enableSorting: col.enableSorting
12044
+ };
12045
+ if (col.accessorKey) colDef.accessorKey = col.accessorKey;
12046
+ if (col.accessorFn) colDef.accessorFn = col.accessorFn;
12047
+ if (col.cell) colDef.cell = col.cell;
12048
+ return colDef;
12049
+ });
12050
+ return (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(EnhancedTable, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)({
12051
+ get data () {
12052
+ return tableData();
12053
+ },
12054
+ get columns () {
12055
+ return enhancedColumns();
12033
12056
  }
12034
- }));
12035
- }
12057
+ }, enhancedProps));
12058
+ };
12036
12059
  const StreamingTable = StreamingTable_StreamingTable;
12037
12060
  var Tab_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<a role=tab>");
12038
12061
  const Tab = (props)=>{
@@ -12626,4 +12649,4 @@ const WindowMockup = (props)=>{
12626
12649
  })();
12627
12650
  };
12628
12651
  const windowmockup_WindowMockup = WindowMockup;
12629
- 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 };
12652
+ 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pathscale/ui",
3
- "version": "0.0.99",
3
+ "version": "0.0.101",
4
4
  "author": "pathscale",
5
5
  "repository": {
6
6
  "type": "git",