@pstdio/ui 0.0.4 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chat-ui.js +1212 -193
- package/dist/chat-ui.js.map +1 -1
- package/dist/components/chat-ui/index.d.ts +8 -5
- package/dist/components/chat-ui/tool-rendering/build-timeline.d.ts +2 -2
- package/dist/components/documentation/docs-changelog.d.ts +20 -0
- package/dist/components/documentation/docs-changelog.stories.d.ts +15 -0
- package/dist/components/documentation/docs-outline.d.ts +13 -0
- package/dist/components/documentation/docs-outline.stories.d.ts +16 -0
- package/dist/components/documentation/docs-pagination.d.ts +10 -0
- package/dist/components/documentation/docs-pagination.stories.d.ts +14 -0
- package/dist/components/documentation/docs-sidebar.d.ts +14 -0
- package/dist/components/documentation/docs-sidebar.stories.d.ts +7 -0
- package/dist/components/folder-picker-dialog.d.ts +25 -0
- package/dist/components/folder-picker-dialog.stories.d.ts +11 -0
- package/dist/components/panel-menu.d.ts +2 -0
- package/dist/components/panel-menu.stories.d.ts +1 -0
- package/dist/components/rich-text/markdown-editor/markdown-editor.d.ts +1 -0
- package/dist/components/rich-text/markdown-editor/markdown-editor.stories.d.ts +1 -0
- package/dist/components/rich-text/utils/inferResourceType.d.ts +1 -1
- package/dist/components/session-indicator.d.ts +1 -1
- package/dist/components/switch.d.ts +15 -0
- package/dist/components/switch.stories.d.ts +16 -0
- package/dist/components/{ticket-card.d.ts → tickets/ticket-card.d.ts} +2 -1
- package/dist/components/tickets/ticket-list.d.ts +23 -0
- package/dist/components/tickets/ticket-list.stories.d.ts +10 -0
- package/dist/empty-state-Bu1ocnPz.js +70 -0
- package/dist/empty-state-Bu1ocnPz.js.map +1 -0
- package/dist/index.d.ts +27 -0
- package/dist/index.js +1148 -305
- package/dist/index.js.map +1 -1
- package/dist/{rich-message-CiA3ripk.js → rich-message-CNDoACE7.js} +8 -7
- package/dist/{rich-message-CiA3ripk.js.map → rich-message-CNDoACE7.js.map} +1 -1
- package/dist/rich-text.js +267 -262
- package/dist/rich-text.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/theme/primitives/colors.d.ts +12 -28
- package/dist/theme/recipes/menu.d.ts +1 -1
- package/dist/theme/tokens/borders.d.ts +6 -6
- package/dist/theme/tokens/colors.d.ts +180 -0
- package/dist/{theme-9E0MRtZk.js → theme-C7CIuIPZ.js} +197 -115
- package/dist/theme-C7CIuIPZ.js.map +1 -0
- package/dist/theme.js +1 -1
- package/package.json +6 -8
- package/dist/theme-9E0MRtZk.js.map +0 -1
- /package/dist/components/{ticket-board.d.ts → tickets/ticket-board.d.ts} +0 -0
- /package/dist/components/{ticket-board.stories.d.ts → tickets/ticket-board.stories.d.ts} +0 -0
- /package/dist/components/{ticket-card.stories.d.ts → tickets/ticket-card.stories.d.ts} +0 -0
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
|
+
type PanelMenuVariant = "default" | "compact";
|
|
2
3
|
interface PanelMenuProps {
|
|
3
4
|
title: string;
|
|
4
5
|
children?: ReactNode;
|
|
6
|
+
variant?: PanelMenuVariant;
|
|
5
7
|
}
|
|
6
8
|
export declare function PanelMenu(props: PanelMenuProps): import("react/jsx-runtime").JSX.Element;
|
|
7
9
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function inferResourceTypeFromMediaType(mediaType: string): "text" | "table" | "
|
|
1
|
+
export declare function inferResourceTypeFromMediaType(mediaType: string): "text" | "table" | "image" | "json" | "pdf" | "markdown";
|
|
@@ -2,7 +2,7 @@ import { Icon } from '@chakra-ui/react';
|
|
|
2
2
|
import { ComponentProps } from 'react';
|
|
3
3
|
export type SessionCompletionStatus = "in_progress" | "awaiting_input" | "completed" | "failed";
|
|
4
4
|
export declare const resolveSessionIndicatorIcon: (status: SessionCompletionStatus | undefined) => import('react').ForwardRefExoticComponent<Omit<import('lucide-react').LucideProps, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
5
|
-
export declare const resolveSessionIndicatorColor: (status: SessionCompletionStatus | undefined) => "
|
|
5
|
+
export declare const resolveSessionIndicatorColor: (status: SessionCompletionStatus | undefined) => "fg.muted" | "fg.error" | "fg.success";
|
|
6
6
|
interface SessionIndicatorProps {
|
|
7
7
|
status?: SessionCompletionStatus;
|
|
8
8
|
boxSize?: ComponentProps<typeof Icon>["boxSize"];
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Switch as ChakraSwitch } from '@chakra-ui/react';
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
export interface SwitchProps extends ChakraSwitch.RootProps {
|
|
4
|
+
inputProps?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
5
|
+
rootRef?: React.RefObject<HTMLLabelElement | null>;
|
|
6
|
+
trackLabel?: {
|
|
7
|
+
on: React.ReactNode;
|
|
8
|
+
off: React.ReactNode;
|
|
9
|
+
};
|
|
10
|
+
thumbLabel?: {
|
|
11
|
+
on: React.ReactNode;
|
|
12
|
+
off: React.ReactNode;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
export declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { StoryObj } from '@storybook/react';
|
|
2
|
+
import { ReactNode } from 'react';
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: import('react').ForwardRefExoticComponent<import('./switch').SwitchProps & import('react').RefAttributes<HTMLInputElement>>;
|
|
6
|
+
decorators: ((Story: () => ReactNode) => import("react/jsx-runtime").JSX.Element)[];
|
|
7
|
+
};
|
|
8
|
+
export default meta;
|
|
9
|
+
type Story = StoryObj<typeof meta>;
|
|
10
|
+
export declare const Default: Story;
|
|
11
|
+
export declare const DefaultChecked: Story;
|
|
12
|
+
export declare const WithLabel: Story;
|
|
13
|
+
export declare const Disabled: Story;
|
|
14
|
+
export declare const DisabledChecked: Story;
|
|
15
|
+
export declare const Sizes: Story;
|
|
16
|
+
export declare const WithTrackLabel: Story;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { DragEventHandler } from 'react';
|
|
2
|
-
import { SessionCompletionStatus } from '
|
|
2
|
+
import { SessionCompletionStatus } from '../session-indicator';
|
|
3
3
|
export interface TicketCardBadge {
|
|
4
4
|
label: string;
|
|
5
5
|
color?: string;
|
|
6
6
|
}
|
|
7
7
|
interface TicketCardProps {
|
|
8
8
|
ticketId: string;
|
|
9
|
+
parentPath?: string[];
|
|
9
10
|
sessionIndicatorLabel?: string;
|
|
10
11
|
sessionIndicatorStatus?: SessionCompletionStatus;
|
|
11
12
|
title: string;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ComponentType, ReactNode } from 'react';
|
|
2
|
+
import { TicketCardBadge } from './ticket-card';
|
|
3
|
+
export interface TicketListItem {
|
|
4
|
+
id: string;
|
|
5
|
+
ticketId: string;
|
|
6
|
+
title: string;
|
|
7
|
+
statusIcon?: ComponentType<{
|
|
8
|
+
size?: number | string;
|
|
9
|
+
}>;
|
|
10
|
+
statusColor?: string;
|
|
11
|
+
badges?: TicketCardBadge[];
|
|
12
|
+
date?: string;
|
|
13
|
+
assigneeIcon?: ReactNode;
|
|
14
|
+
children?: TicketListItem[];
|
|
15
|
+
onClick?: () => void;
|
|
16
|
+
}
|
|
17
|
+
interface TicketListProps {
|
|
18
|
+
items: TicketListItem[];
|
|
19
|
+
selectedItemId?: string | null;
|
|
20
|
+
onItemClick?: (item: TicketListItem) => void;
|
|
21
|
+
}
|
|
22
|
+
export declare const TicketList: (props: TicketListProps) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { TicketList } from './ticket-list';
|
|
3
|
+
declare const meta: Meta<typeof TicketList>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof TicketList>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Interactive: Story;
|
|
8
|
+
export declare const WithBadges: Story;
|
|
9
|
+
export declare const Empty: Story;
|
|
10
|
+
export declare const DeepNesting: Story;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { jsx as d, jsxs as D } from "react/jsx-runtime";
|
|
2
|
+
import { c as _ } from "react/compiler-runtime";
|
|
3
|
+
import { Span as S, EmptyState as g, VStack as W } from "@chakra-ui/react";
|
|
4
|
+
import * as j from "react";
|
|
5
|
+
const A = (R) => {
|
|
6
|
+
const e = _(18), {
|
|
7
|
+
fileName: r,
|
|
8
|
+
additions: t,
|
|
9
|
+
deletions: a,
|
|
10
|
+
label: o,
|
|
11
|
+
variant: n,
|
|
12
|
+
size: s,
|
|
13
|
+
onClick: i,
|
|
14
|
+
onClickFileLink: l
|
|
15
|
+
} = R, c = n === void 0 ? "outline" : n, m = (s === void 0 ? "default" : s) === "small", k = c === "outline" ? "1px solid" : "none", y = c === "outline" ? m ? "3xs" : "2xs" : "2px", v = m ? "label/S/regular" : void 0, C = i ? "pointer" : "default";
|
|
16
|
+
let x;
|
|
17
|
+
e[0] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (x = {
|
|
18
|
+
background: "bg.muted"
|
|
19
|
+
}, e[0] = x) : x = e[0];
|
|
20
|
+
let u;
|
|
21
|
+
e[1] !== r || e[2] !== l ? (u = r && /* @__PURE__ */ d(S, { display: "inline-block", maxW: "24ch", truncate: !0, mr: "xs", title: r, onClick: (z) => {
|
|
22
|
+
z.stopPropagation(), l?.();
|
|
23
|
+
}, cursor: l ? "pointer" : "default", _hover: {
|
|
24
|
+
textDecoration: l ? "underline" : "none",
|
|
25
|
+
color: l ? "fg.blue-dark" : "fg.muted"
|
|
26
|
+
}, children: r }), e[1] = r, e[2] = l, e[3] = u) : u = e[3];
|
|
27
|
+
const E = `+${t}`;
|
|
28
|
+
let p;
|
|
29
|
+
e[4] !== E ? (p = /* @__PURE__ */ d(S, { color: "fg.success", children: E }), e[4] = E, e[5] = p) : p = e[5];
|
|
30
|
+
const $ = `-${a}`;
|
|
31
|
+
let h;
|
|
32
|
+
e[6] !== $ ? (h = /* @__PURE__ */ d(S, { color: "fg.error", children: $ }), e[6] = $, e[7] = h) : h = e[7];
|
|
33
|
+
let b;
|
|
34
|
+
return e[8] !== o || e[9] !== i || e[10] !== h || e[11] !== k || e[12] !== y || e[13] !== v || e[14] !== C || e[15] !== u || e[16] !== p ? (b = /* @__PURE__ */ D(S, { display: "inline-flex", alignItems: "center", gap: "2xs", border: k, borderColor: "border.muted", color: "fg.muted", paddingX: y, paddingY: "1px", borderRadius: "xs", textStyle: v, cursor: C, onClick: i, _hover: x, children: [
|
|
35
|
+
o,
|
|
36
|
+
u,
|
|
37
|
+
p,
|
|
38
|
+
h
|
|
39
|
+
] }), e[8] = o, e[9] = i, e[10] = h, e[11] = k, e[12] = y, e[13] = v, e[14] = C, e[15] = u, e[16] = p, e[17] = b) : b = e[17], b;
|
|
40
|
+
}, B = j.forwardRef(function(e, r) {
|
|
41
|
+
const t = _(19);
|
|
42
|
+
let a, o, n, s, i;
|
|
43
|
+
t[0] !== e ? ({
|
|
44
|
+
title: i,
|
|
45
|
+
description: o,
|
|
46
|
+
icon: n,
|
|
47
|
+
children: a,
|
|
48
|
+
...s
|
|
49
|
+
} = e, t[0] = e, t[1] = a, t[2] = o, t[3] = n, t[4] = s, t[5] = i) : (a = t[1], o = t[2], n = t[3], s = t[4], i = t[5]);
|
|
50
|
+
let l;
|
|
51
|
+
t[6] !== n ? (l = n && /* @__PURE__ */ d(g.Indicator, { children: n }), t[6] = n, t[7] = l) : l = t[7];
|
|
52
|
+
let c;
|
|
53
|
+
t[8] !== o || t[9] !== i ? (c = o ? /* @__PURE__ */ D(W, { textAlign: "center", children: [
|
|
54
|
+
/* @__PURE__ */ d(g.Title, { fontWeight: "normal", children: i }),
|
|
55
|
+
/* @__PURE__ */ d(g.Description, { children: o })
|
|
56
|
+
] }) : /* @__PURE__ */ d(g.Title, { fontWeight: "normal", children: i }), t[8] = o, t[9] = i, t[10] = c) : c = t[10];
|
|
57
|
+
let f;
|
|
58
|
+
t[11] !== a || t[12] !== l || t[13] !== c ? (f = /* @__PURE__ */ D(g.Content, { children: [
|
|
59
|
+
l,
|
|
60
|
+
c,
|
|
61
|
+
a
|
|
62
|
+
] }), t[11] = a, t[12] = l, t[13] = c, t[14] = f) : f = t[14];
|
|
63
|
+
let m;
|
|
64
|
+
return t[15] !== r || t[16] !== s || t[17] !== f ? (m = /* @__PURE__ */ d(g.Root, { ref: r, ...s, children: f }), t[15] = r, t[16] = s, t[17] = f, t[18] = m) : m = t[18], m;
|
|
65
|
+
});
|
|
66
|
+
export {
|
|
67
|
+
A as D,
|
|
68
|
+
B as E
|
|
69
|
+
};
|
|
70
|
+
//# sourceMappingURL=empty-state-Bu1ocnPz.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"empty-state-Bu1ocnPz.js","sources":["../src/components/diff-bubble.tsx","../src/components/empty-state.tsx"],"sourcesContent":["import { Span } from \"@chakra-ui/react\";\nimport type React from \"react\";\nimport type { ComponentProps, MouseEvent } from \"react\";\n\ninterface DiffBubbleProps extends Omit<ComponentProps<typeof Span>, \"onClick\"> {\n fileName?: string;\n additions: number;\n deletions: number;\n label?: React.ReactNode;\n variant?: \"outline\" | \"ghost\";\n size?: \"default\" | \"small\";\n onClick?: (event: MouseEvent<HTMLSpanElement>) => void;\n onClickFileLink?: () => void;\n}\n\nexport const DiffBubble = (props: DiffBubbleProps) => {\n const {\n fileName,\n additions,\n deletions,\n label,\n variant = \"outline\",\n size = \"default\",\n onClick,\n onClickFileLink,\n } = props;\n\n const isSmall = size === \"small\";\n\n return (\n <Span\n display=\"inline-flex\"\n alignItems=\"center\"\n gap={\"2xs\"}\n border={variant === \"outline\" ? \"1px solid\" : \"none\"}\n borderColor=\"border.muted\"\n color=\"fg.muted\"\n paddingX={variant === \"outline\" ? (isSmall ? \"3xs\" : \"2xs\") : \"2px\"}\n paddingY=\"1px\"\n borderRadius=\"xs\"\n textStyle={isSmall ? \"label/S/regular\" : undefined}\n cursor={onClick ? \"pointer\" : \"default\"}\n onClick={onClick}\n _hover={{\n background: \"bg.muted\",\n }}\n >\n {label}\n {fileName && (\n <Span\n display=\"inline-block\"\n maxW=\"24ch\"\n truncate\n mr=\"xs\"\n title={fileName}\n onClick={(e) => {\n e.stopPropagation();\n onClickFileLink?.();\n }}\n cursor={onClickFileLink ? \"pointer\" : \"default\"}\n _hover={{\n textDecoration: onClickFileLink ? \"underline\" : \"none\",\n color: onClickFileLink ? \"fg.blue-dark\" : \"fg.muted\",\n }}\n >\n {fileName}\n </Span>\n )}\n <Span color=\"fg.success\">{`+${additions}`}</Span>\n <Span color=\"fg.error\">{`-${deletions}`}</Span>\n </Span>\n );\n};\n","import { EmptyState as ChakraEmptyState, VStack } from \"@chakra-ui/react\";\nimport * as React from \"react\";\n\nexport interface EmptyStateProps extends ChakraEmptyState.RootProps {\n title: string;\n description?: string;\n icon?: React.ReactNode;\n}\n\nexport const EmptyState = React.forwardRef<HTMLDivElement, EmptyStateProps>(function EmptyState(props, ref) {\n const { title, description, icon, children, ...rest } = props;\n return (\n <ChakraEmptyState.Root ref={ref} {...rest}>\n <ChakraEmptyState.Content>\n {icon && <ChakraEmptyState.Indicator>{icon}</ChakraEmptyState.Indicator>}\n {description ? (\n <VStack textAlign=\"center\">\n <ChakraEmptyState.Title fontWeight=\"normal\">{title}</ChakraEmptyState.Title>\n <ChakraEmptyState.Description>{description}</ChakraEmptyState.Description>\n </VStack>\n ) : (\n <ChakraEmptyState.Title fontWeight=\"normal\">{title}</ChakraEmptyState.Title>\n )}\n {children}\n </ChakraEmptyState.Content>\n </ChakraEmptyState.Root>\n );\n});\n"],"names":["DiffBubble","props","$","_c","fileName","additions","deletions","label","variant","t0","size","t1","onClick","onClickFileLink","undefined","isSmall","t2","t3","t4","t5","t6","Symbol","for","background","t7","jsx","Span","e","stopPropagation","textDecoration","color","t8","t9","t10","t11","t12","EmptyState","React","forwardRef","ref","children","description","icon","rest","title","ChakraEmptyState","jsxs","VStack"],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,41 @@
|
|
|
1
1
|
export { ChakraProvider } from '@chakra-ui/react';
|
|
2
2
|
export type { AlertProps } from './components/alert';
|
|
3
3
|
export { AlertMessage } from './components/alert';
|
|
4
|
+
export { Breadcrumb } from './components/breadcrumb';
|
|
4
5
|
export { ContentPlaceholder, Label as ContentPlaceholderLabel } from './components/content-placeholder';
|
|
5
6
|
export { DeleteConfirmationModal } from './components/delete-confirmation-modal';
|
|
7
|
+
export { DiffBubble } from './components/diff-bubble';
|
|
8
|
+
export type { DocsChangelogEntry, DocsChangelogProps } from './components/documentation/docs-changelog';
|
|
9
|
+
export { DocsChangelog } from './components/documentation/docs-changelog';
|
|
10
|
+
export type { DocsOutlineProps } from './components/documentation/docs-outline';
|
|
11
|
+
export { DocsOutline } from './components/documentation/docs-outline';
|
|
12
|
+
export type { DocsPaginationItem, DocsPaginationProps } from './components/documentation/docs-pagination';
|
|
13
|
+
export { DocsPagination } from './components/documentation/docs-pagination';
|
|
14
|
+
export type { DocsSidebarItem, DocsSidebarProps } from './components/documentation/docs-sidebar';
|
|
15
|
+
export { DocsSidebar } from './components/documentation/docs-sidebar';
|
|
6
16
|
export type { EmptyStateProps } from './components/empty-state';
|
|
7
17
|
export { EmptyState } from './components/empty-state';
|
|
8
18
|
export { ErrorBoundary } from './components/error-boundary';
|
|
19
|
+
export type { FolderPickerDialogEntry, FolderPickerDialogProps } from './components/folder-picker-dialog';
|
|
20
|
+
export { FolderPickerDialog } from './components/folder-picker-dialog';
|
|
21
|
+
export { HorizontalMenuStack } from './components/horizontal-menu-stack';
|
|
22
|
+
export type { ItemSectionProps } from './components/item-section';
|
|
23
|
+
export { ItemSection } from './components/item-section';
|
|
9
24
|
export { MenuItem } from './components/menu-item';
|
|
10
25
|
export type { OpenSourceNotice, OpenSourceNoticesScreenProps } from './components/open-source-notices-screen';
|
|
11
26
|
export { OpenSourceNoticesScreen } from './components/open-source-notices-screen';
|
|
27
|
+
export { PanelMenu } from './components/panel-menu';
|
|
28
|
+
export { Properties } from './components/properties';
|
|
29
|
+
export type { SessionCompletionStatus } from './components/session-indicator';
|
|
30
|
+
export { SessionIndicator } from './components/session-indicator';
|
|
31
|
+
export type { SwitchProps } from './components/switch';
|
|
32
|
+
export { Switch } from './components/switch';
|
|
33
|
+
export type { TicketBoardColumn, TicketBoardColumnAction, TicketBoardItem } from './components/tickets/ticket-board';
|
|
34
|
+
export { TicketBoard } from './components/tickets/ticket-board';
|
|
35
|
+
export type { TicketCardBadge } from './components/tickets/ticket-card';
|
|
36
|
+
export { TicketCard } from './components/tickets/ticket-card';
|
|
37
|
+
export type { TicketListItem } from './components/tickets/ticket-list';
|
|
38
|
+
export { TicketList } from './components/tickets/ticket-list';
|
|
12
39
|
export { Toaster, toaster } from './components/toaster';
|
|
13
40
|
export { Tooltip } from './components/tooltip';
|
|
14
41
|
export { psTheme } from './theme';
|