@pathscale/ui 0.0.142 → 0.0.143
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/accordion/index.d.ts +1 -1
- package/dist/components/alert/index.d.ts +1 -1
- package/dist/components/background/index.d.ts +1 -1
- package/dist/components/badge/index.d.ts +1 -1
- package/dist/components/bottom-sheet/BottomSheet.d.ts +1 -1
- package/dist/components/breadcrumbs/Breadcrumbs.d.ts +1 -1
- package/dist/components/breadcrumbs/index.d.ts +1 -0
- package/dist/components/button/index.d.ts +1 -1
- package/dist/components/card/index.d.ts +1 -1
- package/dist/components/chatbubble/index.d.ts +1 -1
- package/dist/components/checkbox/index.d.ts +1 -1
- package/dist/components/codemockup/CodeMockup.d.ts +1 -1
- package/dist/components/codemockup/index.d.ts +1 -1
- package/dist/components/collapse/index.d.ts +1 -1
- package/dist/components/confirm-dialog/ConfirmDialog.d.ts +3 -3
- package/dist/components/connectionstatus/ConnectionStatus.d.ts +2 -2
- package/dist/components/countdown/index.d.ts +1 -1
- package/dist/components/diff/index.d.ts +1 -1
- package/dist/components/divider/index.d.ts +1 -0
- package/dist/components/dropdown/index.d.ts +1 -0
- package/dist/components/dropdown-select/DropdownSelect.d.ts +2 -0
- package/dist/components/empty-state/EmptyState.d.ts +1 -0
- package/dist/components/fieldset/Fieldset.d.ts +11 -0
- package/dist/components/fieldset/index.d.ts +2 -0
- package/dist/components/fileinput/index.d.ts +1 -1
- package/dist/components/flex/index.d.ts +1 -1
- package/dist/components/grid/index.d.ts +1 -1
- package/dist/components/kbd/index.d.ts +1 -1
- package/dist/components/link/index.d.ts +1 -1
- package/dist/components/loading/index.d.ts +1 -1
- package/dist/components/mask/index.d.ts +1 -0
- package/dist/components/pagination/Pagination.d.ts +2 -1
- package/dist/components/progress/index.d.ts +1 -1
- package/dist/components/radialprogress/index.d.ts +1 -1
- package/dist/components/radio/index.d.ts +1 -1
- package/dist/components/radio-group/RadioGroup.d.ts +2 -1
- package/dist/components/radio-group/index.d.ts +2 -1
- package/dist/components/range/index.d.ts +1 -1
- package/dist/components/range-slider/RangeSlider.d.ts +5 -5
- package/dist/components/range-slider/index.d.ts +2 -2
- package/dist/components/select/index.d.ts +1 -1
- package/dist/components/skeleton/index.d.ts +1 -1
- package/dist/components/skip-link/SkipLink.d.ts +3 -3
- package/dist/components/stat-card/index.d.ts +1 -1
- package/dist/components/stats/index.d.ts +1 -1
- package/dist/components/steps/index.d.ts +1 -0
- package/dist/components/swap/index.d.ts +1 -1
- package/dist/components/switch-field/SwitchField.d.ts +19 -0
- package/dist/components/switch-field/index.d.ts +2 -0
- package/dist/components/textarea/index.d.ts +1 -1
- package/dist/components/timeline/Timeline.d.ts +1 -1
- package/dist/components/timeline/index.d.ts +1 -1
- package/dist/components/toast/index.d.ts +1 -1
- package/dist/components/toastcontainer/ToastContainer.d.ts +2 -1
- package/dist/components/toggle/index.d.ts +1 -1
- package/dist/components/tooltip/index.d.ts +1 -1
- package/dist/glow-card/GlowCard.css +9 -1
- package/dist/index.css +9 -1
- package/dist/index.d.ts +3 -8
- package/dist/index.js +402 -552
- package/dist/styles/icons/generated-icons.css +1 -1
- package/package.json +4 -3
- package/dist/components/duration-badge/DurationBadge.d.ts +0 -14
- package/dist/components/duration-badge/index.d.ts +0 -2
- package/dist/components/form-section/FormSection.d.ts +0 -9
- package/dist/components/form-section/index.d.ts +0 -2
- package/dist/components/form-status/FormStatus.d.ts +0 -10
- package/dist/components/form-status/index.d.ts +0 -2
- package/dist/components/level-meter/LevelMeter.d.ts +0 -10
- package/dist/components/level-meter/index.d.ts +0 -2
- package/dist/components/media-toggle-controls/MediaToggleControls.d.ts +0 -15
- package/dist/components/media-toggle-controls/index.d.ts +0 -2
- package/dist/components/section-card/SectionCard.d.ts +0 -10
- package/dist/components/section-card/index.d.ts +0 -2
- package/dist/components/toggle-setting/ToggleSetting.d.ts +0 -17
- package/dist/components/toggle-setting/index.d.ts +0 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Accordion";
|
|
1
|
+
export { default, type AccordionProps } from "./Accordion";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Alert";
|
|
1
|
+
export { default, type AlertProps } from "./Alert";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Background";
|
|
1
|
+
export { default, type BackgroundProps } from "./Background";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Badge";
|
|
1
|
+
export { default, type BadgeProps } from "./Badge";
|
|
@@ -3,7 +3,7 @@ import type { IComponentBaseProps } from "../types";
|
|
|
3
3
|
export interface BottomSheetProps extends IComponentBaseProps {
|
|
4
4
|
isOpen: boolean;
|
|
5
5
|
onClose: () => void;
|
|
6
|
-
children?:
|
|
6
|
+
children?: import("solid-js").JSX.Element;
|
|
7
7
|
closeOnOverlayClick?: boolean;
|
|
8
8
|
closeOnSwipeDown?: boolean;
|
|
9
9
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type JSX, type Component } from "solid-js";
|
|
2
2
|
import type { IComponentBaseProps } from "../types";
|
|
3
|
-
type BreadcrumbProps = IComponentBaseProps & JSX.HTMLAttributes<HTMLDivElement> & {
|
|
3
|
+
export type BreadcrumbProps = IComponentBaseProps & JSX.HTMLAttributes<HTMLDivElement> & {
|
|
4
4
|
innerProps?: JSX.HTMLAttributes<HTMLUListElement>;
|
|
5
5
|
};
|
|
6
6
|
declare const Breadcrumbs: Component<BreadcrumbProps>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Button";
|
|
1
|
+
export { default, type ButtonProps } from "./Button";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Card";
|
|
1
|
+
export { default, type CardProps } from "./Card";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./ChatBubble";
|
|
1
|
+
export { default, type ChatBubbleProps } from "./ChatBubble";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Checkbox";
|
|
1
|
+
export { default, type CheckboxProps } from "./Checkbox";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type JSX, type ParentProps } from "solid-js";
|
|
2
2
|
import type { IComponentBaseProps } from "../types";
|
|
3
|
-
type CodeMockupProps = JSX.HTMLAttributes<HTMLDivElement> & IComponentBaseProps;
|
|
3
|
+
export type CodeMockupProps = JSX.HTMLAttributes<HTMLDivElement> & IComponentBaseProps;
|
|
4
4
|
declare const CodeMockup: (props: ParentProps<CodeMockupProps>) => JSX.Element;
|
|
5
5
|
export default CodeMockup;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as CodeMockup } from "./CodeMockup";
|
|
1
|
+
export { default as CodeMockup, type CodeMockupProps } from "./CodeMockup";
|
|
2
2
|
export { default as CodeMockupLine } from "./CodeMockupLine";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { default as CollapseContent } from "./CollapseContent";
|
|
2
2
|
export { CollapseTitle, Summary } from "./CollapseTitle";
|
|
3
3
|
export { default as CollapseDetails } from "./CollapseDetails";
|
|
4
|
-
export { default as Collapse } from "./Collapse";
|
|
4
|
+
export { default as Collapse, type CollapseProps } from "./Collapse";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { JSX } from "solid-js";
|
|
1
|
+
import type { JSX, ParentProps } from "solid-js";
|
|
2
2
|
import type { ComponentColor, IComponentBaseProps } from "../types";
|
|
3
|
-
export type ConfirmDialogProps = IComponentBaseProps & {
|
|
3
|
+
export type ConfirmDialogProps = ParentProps<IComponentBaseProps & Omit<JSX.HTMLAttributes<HTMLDialogElement>, "children"> & {
|
|
4
4
|
open: boolean;
|
|
5
5
|
onClose: () => void;
|
|
6
6
|
onConfirm: () => void;
|
|
@@ -10,5 +10,5 @@ export type ConfirmDialogProps = IComponentBaseProps & {
|
|
|
10
10
|
cancelText?: string;
|
|
11
11
|
confirmColor?: ComponentColor;
|
|
12
12
|
loading?: boolean;
|
|
13
|
-
}
|
|
13
|
+
}>;
|
|
14
14
|
export default function ConfirmDialog(props: ConfirmDialogProps): JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Component } from "solid-js";
|
|
1
|
+
import { type Component, type JSX } 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 {
|
|
@@ -49,7 +49,7 @@ export interface ConnectionStatusProps extends IComponentBaseProps {
|
|
|
49
49
|
/**
|
|
50
50
|
* Custom style
|
|
51
51
|
*/
|
|
52
|
-
style?:
|
|
52
|
+
style?: JSX.CSSProperties;
|
|
53
53
|
/**
|
|
54
54
|
* Data theme
|
|
55
55
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Countdown";
|
|
1
|
+
export { default, type CountdownProps } from "./Countdown";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Diff";
|
|
1
|
+
export { default, type DiffProps } from "./Diff";
|
|
@@ -15,6 +15,8 @@ export type DropdownSelectProps = IComponentBaseProps & {
|
|
|
15
15
|
showCheckmark?: boolean;
|
|
16
16
|
size?: ComponentSize;
|
|
17
17
|
"aria-label"?: string;
|
|
18
|
+
labelRenderer?: (value: string, option?: DropdownSelectOption) => JSX.Element;
|
|
19
|
+
optionRenderer?: (option: DropdownSelectOption, selected: boolean, highlighted: boolean) => JSX.Element;
|
|
18
20
|
};
|
|
19
21
|
declare const DropdownSelect: (props: DropdownSelectProps) => JSX.Element;
|
|
20
22
|
export default DropdownSelect;
|
|
@@ -3,6 +3,7 @@ import type { IComponentBaseProps } from "../types";
|
|
|
3
3
|
export type EmptyStateProps = IComponentBaseProps & Omit<JSX.HTMLAttributes<HTMLDivElement>, "title"> & {
|
|
4
4
|
icon?: string;
|
|
5
5
|
iconSize?: number;
|
|
6
|
+
image?: JSX.Element;
|
|
6
7
|
title?: JSX.Element;
|
|
7
8
|
description?: JSX.Element;
|
|
8
9
|
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { type JSX } from "solid-js";
|
|
2
|
+
import type { IComponentBaseProps, ComponentSize } from "../types";
|
|
3
|
+
export type FieldsetGap = ComponentSize | "none";
|
|
4
|
+
export type FieldsetProps = IComponentBaseProps & JSX.HTMLAttributes<HTMLFieldSetElement> & {
|
|
5
|
+
legend?: JSX.Element | string;
|
|
6
|
+
description?: string;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
gap?: FieldsetGap;
|
|
9
|
+
};
|
|
10
|
+
declare const Fieldset: (props: FieldsetProps) => JSX.Element;
|
|
11
|
+
export default Fieldset;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./FileInput";
|
|
1
|
+
export { default, type FileInputProps } from "./FileInput";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Flex";
|
|
1
|
+
export { default, type FlexProps } from "./Flex";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Grid";
|
|
1
|
+
export { default, type GridProps } from "./Grid";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Kbd";
|
|
1
|
+
export { default, type KbdProps } from "./Kbd";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Link";
|
|
1
|
+
export { default, type LinkProps } from "./Link";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Loading";
|
|
1
|
+
export { default, type LoadingProps } from "./Loading";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import { type JSX } from "solid-js";
|
|
1
2
|
import { type JoinProps } from "../join/Join";
|
|
2
3
|
export type PaginationProps = JoinProps;
|
|
3
|
-
declare const Pagination: (props:
|
|
4
|
+
declare const Pagination: (props: PaginationProps) => JSX.Element;
|
|
4
5
|
export default Pagination;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Progress";
|
|
1
|
+
export { default, type ProgressProps } from "./Progress";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./RadialProgress";
|
|
1
|
+
export { default, type RadialProgressProps } from "./RadialProgress";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Radio";
|
|
1
|
+
export { default, type RadioProps } from "./Radio";
|
|
@@ -2,7 +2,7 @@ import { type JSX } from "solid-js";
|
|
|
2
2
|
import type { ComponentColor, ComponentSize, IComponentBaseProps } from "../types";
|
|
3
3
|
export type RadioGroupOption = {
|
|
4
4
|
value: string;
|
|
5
|
-
label: string;
|
|
5
|
+
label: JSX.Element | string;
|
|
6
6
|
disabled?: boolean;
|
|
7
7
|
};
|
|
8
8
|
type RadioGroupBaseProps = {
|
|
@@ -14,6 +14,7 @@ type RadioGroupBaseProps = {
|
|
|
14
14
|
size?: ComponentSize;
|
|
15
15
|
color?: ComponentColor;
|
|
16
16
|
direction?: "horizontal" | "vertical";
|
|
17
|
+
error?: string;
|
|
17
18
|
dataTheme?: string;
|
|
18
19
|
class?: string;
|
|
19
20
|
className?: string;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export { default as RadioGroup
|
|
1
|
+
export { default as RadioGroup } from "./RadioGroup";
|
|
2
|
+
export type { RadioGroupProps, RadioGroupOption } from "./RadioGroup";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Range";
|
|
1
|
+
export { default, type RangeProps } from "./Range";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type JSX } from "solid-js";
|
|
2
2
|
import type { ComponentColor, ComponentSize, IComponentBaseProps } from "../types";
|
|
3
|
-
type
|
|
4
|
-
label
|
|
3
|
+
type SliderFieldBaseProps = {
|
|
4
|
+
label?: string;
|
|
5
5
|
value: number;
|
|
6
6
|
onChange: (value: number) => void;
|
|
7
7
|
min?: number;
|
|
@@ -16,6 +16,6 @@ type RangeSliderBaseProps = {
|
|
|
16
16
|
className?: string;
|
|
17
17
|
style?: JSX.CSSProperties;
|
|
18
18
|
};
|
|
19
|
-
export type
|
|
20
|
-
declare const
|
|
21
|
-
export default
|
|
19
|
+
export type SliderFieldProps = SliderFieldBaseProps & IComponentBaseProps & Omit<JSX.InputHTMLAttributes<HTMLInputElement>, keyof SliderFieldBaseProps>;
|
|
20
|
+
declare const SliderField: (props: SliderFieldProps) => JSX.Element;
|
|
21
|
+
export default SliderField;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as
|
|
2
|
-
export type {
|
|
1
|
+
export { default as SliderField } from "./RangeSlider";
|
|
2
|
+
export type { SliderFieldProps } from "./RangeSlider";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Select";
|
|
1
|
+
export { default, type SelectProps } from "./Select";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Skeleton";
|
|
1
|
+
export { default, type SkeletonProps } from "./Skeleton";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type JSX } from "solid-js";
|
|
2
|
-
|
|
2
|
+
import type { IComponentBaseProps } from "../types";
|
|
3
|
+
export type SkipLinkProps = IComponentBaseProps & {
|
|
3
4
|
href?: string;
|
|
4
5
|
children?: JSX.Element;
|
|
5
|
-
|
|
6
|
-
} & Omit<JSX.AnchorHTMLAttributes<HTMLAnchorElement>, "href" | "children" | "class">;
|
|
6
|
+
} & Omit<JSX.AnchorHTMLAttributes<HTMLAnchorElement>, "href" | "children" | "class" | "className" | "style">;
|
|
7
7
|
export default function SkipLink(props: SkipLinkProps): JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./StatCard";
|
|
1
|
+
export { default, type StatCardProps } from "./StatCard";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Stats";
|
|
1
|
+
export { default, type StatsProps } from "./Stats";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Swap";
|
|
1
|
+
export { default, type SwapProps } from "./Swap";
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { type JSX } from "solid-js";
|
|
2
|
+
import type { ComponentColor, ComponentSize, IComponentBaseProps } from "../types";
|
|
3
|
+
type SwitchFieldBaseProps = {
|
|
4
|
+
label: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
checked?: boolean;
|
|
7
|
+
onChange?: (checked: boolean) => void;
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
size?: ComponentSize;
|
|
10
|
+
color?: ComponentColor;
|
|
11
|
+
error?: string;
|
|
12
|
+
dataTheme?: string;
|
|
13
|
+
class?: string;
|
|
14
|
+
className?: string;
|
|
15
|
+
style?: JSX.CSSProperties;
|
|
16
|
+
};
|
|
17
|
+
export type SwitchFieldProps = SwitchFieldBaseProps & IComponentBaseProps;
|
|
18
|
+
declare const SwitchField: (props: SwitchFieldProps) => JSX.Element;
|
|
19
|
+
export default SwitchField;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Textarea";
|
|
1
|
+
export { default, type TextareaProps } from "./Textarea";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type JSX } from "solid-js";
|
|
2
2
|
import type { IComponentBaseProps } from "../types";
|
|
3
|
-
type TimelineProps = IComponentBaseProps & JSX.HTMLAttributes<HTMLUListElement> & {
|
|
3
|
+
export type TimelineProps = IComponentBaseProps & JSX.HTMLAttributes<HTMLUListElement> & {
|
|
4
4
|
vertical?: boolean;
|
|
5
5
|
horizontal?: boolean;
|
|
6
6
|
responsive?: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { default as Timeline } from "./Timeline";
|
|
1
|
+
export { default as Timeline, type TimelineProps } from "./Timeline";
|
|
2
2
|
export { default as TimelineItem } from "./TimelineItem";
|
|
3
3
|
export { default as TimelineStart } from "./TimelineStart";
|
|
4
4
|
export { default as TimelineMiddle } from "./TimelineMiddle";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Toast";
|
|
1
|
+
export { default, type ToastProps } from "./Toast";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Toggle";
|
|
1
|
+
export { default, type ToggleProps } from "./Toggle";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "./Tooltip";
|
|
1
|
+
export { default, type TooltipProps } from "./Tooltip";
|
|
@@ -49,9 +49,17 @@
|
|
|
49
49
|
opacity: 1;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
+
[data-theme="light"] .glow-card::before {
|
|
53
|
+
--glow-color-border: oklch(30% 0.15 260 / 0.4);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
[data-theme="light"] .glow-card::after {
|
|
57
|
+
--glow-color-bg: oklch(30% 0.15 260 / 0.15);
|
|
58
|
+
}
|
|
59
|
+
|
|
52
60
|
@media (prefers-reduced-motion: reduce) {
|
|
53
61
|
.glow-card::before,
|
|
54
62
|
.glow-card::after {
|
|
55
|
-
|
|
63
|
+
opacity: 0 !important;
|
|
56
64
|
}
|
|
57
65
|
}
|
package/dist/index.css
CHANGED
|
@@ -40,9 +40,17 @@
|
|
|
40
40
|
opacity: 1;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
+
[data-theme="light"] .glow-card:before {
|
|
44
|
+
--glow-color-border: oklch(30% .15 260 / .4);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
[data-theme="light"] .glow-card:after {
|
|
48
|
+
--glow-color-bg: oklch(30% .15 260 / .15);
|
|
49
|
+
}
|
|
50
|
+
|
|
43
51
|
@media (prefers-reduced-motion: reduce) {
|
|
44
52
|
.glow-card:before, .glow-card:after {
|
|
45
|
-
|
|
53
|
+
opacity: 0 !important;
|
|
46
54
|
}
|
|
47
55
|
}
|
|
48
56
|
|
package/dist/index.d.ts
CHANGED
|
@@ -31,7 +31,6 @@ export { default as Dock } from "./components/dock";
|
|
|
31
31
|
export { default as Drawer, type DrawerProps } from "./components/drawer";
|
|
32
32
|
export { default as Dropdown } from "./components/dropdown";
|
|
33
33
|
export { DropdownSelect, type DropdownSelectProps, type DropdownSelectOption } from "./components/dropdown-select";
|
|
34
|
-
export { DurationBadge, type DurationBadgeProps } from "./components/duration-badge";
|
|
35
34
|
export { EmptyState, type EmptyStateProps } from "./components/empty-state";
|
|
36
35
|
export { default as FileInput } from "./components/fileinput";
|
|
37
36
|
export { default as FloatingDock } from "./components/floating-dock";
|
|
@@ -43,8 +42,7 @@ export type { GlassPanelProps, GlassPanelBlur } from "./components/glass-panel";
|
|
|
43
42
|
export { default as Footer } from "./components/footer";
|
|
44
43
|
export type { FooterProps, FooterTitleProps } from "./components/footer";
|
|
45
44
|
export { FormActions, type FormActionsProps } from "./components/form-actions";
|
|
46
|
-
export {
|
|
47
|
-
export { FormStatus, type FormStatusProps } from "./components/form-status";
|
|
45
|
+
export { Fieldset, type FieldsetProps } from "./components/fieldset";
|
|
48
46
|
export { default as Form, useFormValidation } from "./components/form";
|
|
49
47
|
export { useDesktop } from "./components/utils";
|
|
50
48
|
export type { FormProps, LabelProps, ValidatedFormProps, } from "./components/form";
|
|
@@ -61,12 +59,10 @@ export { default as Kbd } from "./components/kbd";
|
|
|
61
59
|
export { default as Link } from "./components/link";
|
|
62
60
|
export { LiveChatBubble, LiveChatPanel, } from "./components/live-chat";
|
|
63
61
|
export type { LiveChatBubbleProps, LiveChatPanelProps, ChatMessage, SendMessagePayload, SendMessageResponse, } from "./components/live-chat";
|
|
64
|
-
export { LevelMeter, type LevelMeterProps } from "./components/level-meter";
|
|
65
62
|
export { default as Loading } from "./components/loading";
|
|
66
63
|
export { LanguageSwitcher, createI18n, I18nProvider, I18nContext, useI18n, } from "./components/language-switcher";
|
|
67
64
|
export type { LanguageSwitcherProps, I18nStore, I18nOptions, I18nContextValue, I18nProviderProps, Language, } from "./components/language-switcher";
|
|
68
65
|
export { default as Mask } from "./components/mask";
|
|
69
|
-
export { MediaToggleControls, type MediaToggleControlsProps } from "./components/media-toggle-controls";
|
|
70
66
|
export { Menu } from "./components/menu";
|
|
71
67
|
export { default as Modal } from "./components/modal";
|
|
72
68
|
export { default as Navbar } from "./components/navbar";
|
|
@@ -83,10 +79,9 @@ export { default as RadialProgress } from "./components/radialprogress";
|
|
|
83
79
|
export { default as Radio } from "./components/radio";
|
|
84
80
|
export { RadioGroup, type RadioGroupProps, type RadioGroupOption } from "./components/radio-group";
|
|
85
81
|
export { default as Range } from "./components/range";
|
|
86
|
-
export {
|
|
82
|
+
export { SliderField, type SliderFieldProps } from "./components/range-slider";
|
|
87
83
|
export { Rating } from "./components/rating";
|
|
88
84
|
export type { RatingHiddenProps, RatingItemProps, RatingProps, } from "./components/rating";
|
|
89
|
-
export { SectionCard, type SectionCardProps } from "./components/section-card";
|
|
90
85
|
export { default as Select } from "./components/select";
|
|
91
86
|
export { ShowcaseSection } from "./components/showcase-section";
|
|
92
87
|
export { default as ShowcaseBlock } from "./components/showcase/ShowcaseBlock";
|
|
@@ -119,7 +114,7 @@ export { default as Toast } from "./components/toast";
|
|
|
119
114
|
export { ToastContainer, ToastStack } from "./components/toastcontainer";
|
|
120
115
|
export type { ToastRenderer, ToastStackProps, } from "./components/toastcontainer";
|
|
121
116
|
export { default as Toggle } from "./components/toggle";
|
|
122
|
-
export {
|
|
117
|
+
export { SwitchField, type SwitchFieldProps } from "./components/switch-field";
|
|
123
118
|
export { default as Tooltip } from "./components/tooltip";
|
|
124
119
|
export { VideoPreview, type VideoPreviewProps } from "./components/video-preview";
|
|
125
120
|
export { default as WindowMockup, type WindowMockupProps, } from "./components/windowmockup";
|