@you-agent-factory/components 0.0.2 → 0.0.7
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/charts/chart-state-panel.d.ts +1 -1
- package/dist/charts/chart.d.ts +3 -3
- package/dist/charts/index.d.ts +1 -1
- package/dist/charts/index.js +6 -1
- package/dist/chunks/alert-panel.js +10 -12
- package/dist/chunks/button.js +3 -1
- package/dist/chunks/{package-form-field.js → package-textarea.js} +51 -54
- package/dist/chunks/table-layout.js +22 -25
- package/dist/chunks/typography-roles.js +2 -2
- package/dist/chunks/typography.js +1 -1
- package/dist/chunks/{widget-frame.js → widget-frame-states.js} +144 -140
- package/dist/data-display/data-table.d.ts +1 -1
- package/dist/data-display/index.d.ts +5 -5
- package/dist/factory-emulator/factory-emulator-controls.d.ts +1 -1
- package/dist/factory-emulator/index.d.ts +1 -1
- package/dist/feedback/index.d.ts +1 -1
- package/dist/feedback/skeleton.d.ts +1 -1
- package/dist/forms/index.d.ts +9 -9
- package/dist/forms/index.js +1 -1
- package/dist/forms/package-enum-select.d.ts +3 -3
- package/dist/forms/package-select.d.ts +5 -5
- package/dist/forms/select-icons.d.ts +2 -2
- package/dist/graphs/graph-edge.d.ts +1 -1
- package/dist/graphs/graph-node-handle-badge.d.ts +1 -1
- package/dist/graphs/graph-node-shell.d.ts +1 -1
- package/dist/graphs/graph-node-state-indicator.d.ts +1 -1
- package/dist/graphs/index.d.ts +5 -5
- package/dist/graphs/index.js +483 -483
- package/dist/index.d.ts +16 -16
- package/dist/index.js +87 -87
- package/dist/layout/action-row.d.ts +1 -1
- package/dist/layout/index.d.ts +2 -2
- package/dist/overlays/collapsible.d.ts +1 -1
- package/dist/overlays/dialog.d.ts +6 -6
- package/dist/overlays/index.d.ts +3 -3
- package/dist/overlays/popover.d.ts +1 -1
- package/dist/primitives/index.d.ts +5 -5
- package/dist/primitives/index.js +3 -3
- package/dist/primitives/package-text.d.ts +1 -1
- package/dist/recipes/index.d.ts +7 -7
- package/dist/recipes/index.js +1 -1
- package/dist/recipes/widget-frame-content.d.ts +5 -5
- package/dist/recipes/widget-frame-disclosure.d.ts +3 -3
- package/dist/recipes/widget-frame-skeleton.d.ts +1 -1
- package/dist/recipes/widget-frame-states.d.ts +3 -3
- package/dist/recipes/widget-frame.d.ts +1 -1
- package/dist/testing/render.d.ts +1 -1
- package/package.json +1 -2
|
@@ -20,4 +20,4 @@ export interface FactoryEmulatorControlsProps extends Omit<HTMLAttributes<HTMLEl
|
|
|
20
20
|
showSpeedControl?: boolean;
|
|
21
21
|
speed: FactoryEmulatorSpeed;
|
|
22
22
|
}
|
|
23
|
-
export declare function FactoryEmulatorControls({ className, disabledActions, isPlaying, onPause, onPlay, onRestart, onSpeedChange, onStep, runtimeStatus, showPlaybackActions, showRuntimeStatus, showSpeedControl, speed, ...props }: FactoryEmulatorControlsProps): import("react").JSX.Element;
|
|
23
|
+
export declare function FactoryEmulatorControls({ className, disabledActions, isPlaying, onPause, onPlay, onRestart, onSpeedChange, onStep, runtimeStatus, showPlaybackActions, showRuntimeStatus, showSpeedControl, speed, ...props }: FactoryEmulatorControlsProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
/** Stable category path for `@you-agent-factory/components/factory-emulator`. */
|
|
3
3
|
export declare const COMPONENTS_CATEGORY: "factory-emulator";
|
|
4
4
|
export type ComponentsCategory = typeof COMPONENTS_CATEGORY;
|
|
5
|
-
export { FactoryEmulatorControls } from "./factory-emulator-controls";
|
|
6
5
|
export type { FactoryEmulatorAction, FactoryEmulatorControlsProps, FactoryEmulatorRuntimeStatus, FactoryEmulatorSpeed, } from "./factory-emulator-controls";
|
|
6
|
+
export { FactoryEmulatorControls } from "./factory-emulator-controls";
|
package/dist/feedback/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/** Stable category path for `@you-agent-factory/components/feedback`. */
|
|
2
2
|
export declare const COMPONENTS_CATEGORY: "feedback";
|
|
3
3
|
export type ComponentsCategory = typeof COMPONENTS_CATEGORY;
|
|
4
|
-
export { AlertPanel, AlertPanelStatusLabel, AlertPanelText, AlertPanelTitle, } from "./alert-panel";
|
|
5
4
|
export type { AlertPanelProps, AlertPanelSemanticVariant, AlertPanelStatusLabelProps, AlertPanelTextProps, AlertPanelTitleProps, AlertPanelTone, AlertPanelVariant, } from "./alert-panel";
|
|
5
|
+
export { AlertPanel, AlertPanelStatusLabel, AlertPanelText, AlertPanelTitle, } from "./alert-panel";
|
|
6
6
|
export { Skeleton } from "./skeleton";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { HTMLAttributes } from "react";
|
|
2
|
-
export declare function Skeleton({ className, ...props }: HTMLAttributes<HTMLDivElement>): import("react").JSX.Element;
|
|
2
|
+
export declare function Skeleton({ className, ...props }: HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
package/dist/forms/index.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
/** Stable category path for `@you-agent-factory/components/forms`. */
|
|
2
2
|
export declare const COMPONENTS_CATEGORY: "forms";
|
|
3
3
|
export type ComponentsCategory = typeof COMPONENTS_CATEGORY;
|
|
4
|
-
export { PackageCheckbox } from "./package-checkbox";
|
|
5
4
|
export type { PackageCheckboxProps } from "./package-checkbox";
|
|
6
|
-
export {
|
|
5
|
+
export { PackageCheckbox } from "./package-checkbox";
|
|
7
6
|
export type { EnumSelectOption, EnumSelectProps, OptionalEnumSelectProps, ResetEnumSelectProps, } from "./package-enum-select";
|
|
8
|
-
export {
|
|
7
|
+
export { ENUM_SELECT_EMPTY_VALUE, EnumSelect, OptionalEnumSelect, ResetEnumSelect, } from "./package-enum-select";
|
|
9
8
|
export type { PackageFileInputProps } from "./package-file-input";
|
|
10
|
-
export {
|
|
9
|
+
export { PackageFileInput } from "./package-file-input";
|
|
10
|
+
export type { FormDescriptionProps, FormErrorProps, FormFieldGroupLabelProps, FormFieldGroupProps, FormFieldMessageIds, FormFieldProps, FormHelperTextProps, FormLabelProps, FormSuccessProps, FormWarningProps, } from "./package-form-field";
|
|
11
|
+
export { buildFormFieldAriaDescribedBy, FormDescription, FormError, FormField, FormFieldGroup, FormFieldGroupLabel, FormHelperText, FormLabel, FormSuccess, FormWarning, } from "./package-form-field";
|
|
11
12
|
export type { PackageInputProps } from "./package-input";
|
|
12
|
-
export {
|
|
13
|
+
export { inputVariants, PackageInput } from "./package-input";
|
|
13
14
|
export type { NativeSelectProps } from "./package-native-select";
|
|
14
|
-
export {
|
|
15
|
+
export { NativeSelect } from "./package-native-select";
|
|
15
16
|
export type { SelectContentProps, SelectEmptyProps, SelectFieldProps, SelectItemProps, SelectLabelProps, SelectSeparatorProps, SelectTriggerProps, } from "./package-select";
|
|
16
|
-
export {
|
|
17
|
+
export { SELECT_EMPTY_STATE_VALUE, Select, SelectContent, SelectEmpty, SelectField, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, } from "./package-select";
|
|
17
18
|
export type { PackageTextareaProps } from "./package-textarea";
|
|
18
|
-
export {
|
|
19
|
-
export type { FormDescriptionProps, FormErrorProps, FormFieldGroupLabelProps, FormFieldGroupProps, FormFieldMessageIds, FormFieldProps, FormHelperTextProps, FormLabelProps, FormSuccessProps, FormWarningProps, } from "./package-form-field";
|
|
19
|
+
export { PackageTextarea, textareaVariants } from "./package-textarea";
|
package/dist/forms/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { E, a, F, b, c, d, e, f, g, h, i, N, O, P, j, k, l, R, S, m, n, o, p, q, r, s, t, u, v, w, x, y } from "../chunks/package-
|
|
1
|
+
import { E, a, F, b, c, d, e, f, g, h, i, N, O, P, j, k, l, R, S, m, n, o, p, q, r, s, t, u, v, w, x, y } from "../chunks/package-textarea.js";
|
|
2
2
|
const COMPONENTS_CATEGORY = "forms";
|
|
3
3
|
export {
|
|
4
4
|
COMPONENTS_CATEGORY,
|
|
@@ -19,7 +19,7 @@ export interface EnumSelectProps extends EnumSelectAriaProps {
|
|
|
19
19
|
placeholder?: string;
|
|
20
20
|
value: string;
|
|
21
21
|
}
|
|
22
|
-
export declare function EnumSelect({ className, disabled, emptyOptionsLabel, id, loading, loadingLabel, onValueChange, options, placeholder, value, ...aria }: EnumSelectProps): import("react").JSX.Element;
|
|
22
|
+
export declare function EnumSelect({ className, disabled, emptyOptionsLabel, id, loading, loadingLabel, onValueChange, options, placeholder, value, ...aria }: EnumSelectProps): import("react/jsx-runtime").JSX.Element;
|
|
23
23
|
export interface OptionalEnumSelectProps extends EnumSelectAriaProps {
|
|
24
24
|
className?: string;
|
|
25
25
|
disabled?: boolean;
|
|
@@ -29,7 +29,7 @@ export interface OptionalEnumSelectProps extends EnumSelectAriaProps {
|
|
|
29
29
|
options: readonly EnumSelectOption[];
|
|
30
30
|
value: string | null | undefined;
|
|
31
31
|
}
|
|
32
|
-
export declare function OptionalEnumSelect({ className, disabled, emptyOptionLabel, id, onValueChange, options, value, ...aria }: OptionalEnumSelectProps): import("react").JSX.Element;
|
|
32
|
+
export declare function OptionalEnumSelect({ className, disabled, emptyOptionLabel, id, onValueChange, options, value, ...aria }: OptionalEnumSelectProps): import("react/jsx-runtime").JSX.Element;
|
|
33
33
|
export interface ResetEnumSelectProps extends EnumSelectAriaProps {
|
|
34
34
|
className?: string;
|
|
35
35
|
disabled?: boolean;
|
|
@@ -38,5 +38,5 @@ export interface ResetEnumSelectProps extends EnumSelectAriaProps {
|
|
|
38
38
|
options: readonly EnumSelectOption[];
|
|
39
39
|
placeholder: string;
|
|
40
40
|
}
|
|
41
|
-
export declare function ResetEnumSelect({ className, disabled, id, onValueChange, options, placeholder, ...aria }: ResetEnumSelectProps): import("react").JSX.Element;
|
|
41
|
+
export declare function ResetEnumSelect({ className, disabled, id, onValueChange, options, placeholder, ...aria }: ResetEnumSelectProps): import("react/jsx-runtime").JSX.Element;
|
|
42
42
|
export {};
|
|
@@ -6,9 +6,9 @@ export declare const SelectValue: import("react").ForwardRefExoticComponent<Sele
|
|
|
6
6
|
export type SelectTriggerProps = ComponentProps<typeof SelectPrimitive.Trigger>;
|
|
7
7
|
export declare const SelectTrigger: import("react").ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & import("react").RefAttributes<HTMLButtonElement>, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
|
|
8
8
|
export type SelectContentProps = ComponentProps<typeof SelectPrimitive.Content>;
|
|
9
|
-
export declare function SelectContent({ children, className, onCloseAutoFocus, position, ...props }: SelectContentProps): import("react").JSX.Element;
|
|
9
|
+
export declare function SelectContent({ children, className, onCloseAutoFocus, position, ...props }: SelectContentProps): import("react/jsx-runtime").JSX.Element;
|
|
10
10
|
export type SelectLabelProps = ComponentProps<typeof SelectPrimitive.Label>;
|
|
11
|
-
export declare function SelectLabel({ className, ...props }: SelectLabelProps): import("react").JSX.Element;
|
|
11
|
+
export declare function SelectLabel({ className, ...props }: SelectLabelProps): import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
export declare const SELECT_EMPTY_STATE_VALUE = "__select-empty-state__";
|
|
13
13
|
export type SelectItemProps = ComponentProps<typeof SelectPrimitive.Item>;
|
|
14
14
|
export declare const SelectItem: import("react").ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -16,9 +16,9 @@ export type SelectEmptyProps = {
|
|
|
16
16
|
children: ReactNode;
|
|
17
17
|
className?: string;
|
|
18
18
|
};
|
|
19
|
-
export declare function SelectEmpty({ children, className }: SelectEmptyProps): import("react").JSX.Element;
|
|
19
|
+
export declare function SelectEmpty({ children, className }: SelectEmptyProps): import("react/jsx-runtime").JSX.Element;
|
|
20
20
|
export type SelectSeparatorProps = ComponentProps<typeof SelectPrimitive.Separator>;
|
|
21
|
-
export declare function SelectSeparator({ className, ...props }: SelectSeparatorProps): import("react").JSX.Element;
|
|
21
|
+
export declare function SelectSeparator({ className, ...props }: SelectSeparatorProps): import("react/jsx-runtime").JSX.Element;
|
|
22
22
|
export interface SelectFieldProps {
|
|
23
23
|
children: ReactNode;
|
|
24
24
|
className?: string;
|
|
@@ -29,4 +29,4 @@ export interface SelectFieldProps {
|
|
|
29
29
|
inputId: string;
|
|
30
30
|
label: ReactNode;
|
|
31
31
|
}
|
|
32
|
-
export declare function SelectField({ children, className, description, descriptionId, error, errorId, inputId, label, }: SelectFieldProps): import("react").JSX.Element;
|
|
32
|
+
export declare function SelectField({ children, className, description, descriptionId, error, errorId, inputId, label, }: SelectFieldProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { SVGProps } from "react";
|
|
2
|
-
export declare function SelectChevronDownIcon(props: SVGProps<SVGSVGElement>): import("react").JSX.Element;
|
|
3
|
-
export declare function SelectCheckIcon(props: SVGProps<SVGSVGElement>): import("react").JSX.Element;
|
|
2
|
+
export declare function SelectChevronDownIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare function SelectCheckIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -12,4 +12,4 @@ export type GraphEdgeProps = EdgeProps & {
|
|
|
12
12
|
edgeClassName?: string;
|
|
13
13
|
labelClassName?: string;
|
|
14
14
|
};
|
|
15
|
-
export declare function GraphEdge({ data, edgeClassName, id, interactionWidth, labelClassName, markerEnd, selected, sourcePosition, sourceX, sourceY, style, targetPosition, targetX, targetY, }: GraphEdgeProps): import("react").JSX.Element;
|
|
15
|
+
export declare function GraphEdge({ data, edgeClassName, id, interactionWidth, labelClassName, markerEnd, selected, sourcePosition, sourceX, sourceY, style, targetPosition, targetX, targetY, }: GraphEdgeProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -2,4 +2,4 @@ import type { GraphNodeHandle } from "./graph-node-handle";
|
|
|
2
2
|
export interface GraphNodeHandleBadgeProps {
|
|
3
3
|
handle: GraphNodeHandle;
|
|
4
4
|
}
|
|
5
|
-
export declare function GraphNodeHandleBadge({ handle }: GraphNodeHandleBadgeProps): import("react").JSX.Element;
|
|
5
|
+
export declare function GraphNodeHandleBadge({ handle }: GraphNodeHandleBadgeProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -10,4 +10,4 @@ export interface GraphNodeShellProps extends Omit<HTMLAttributes<HTMLElement>, "
|
|
|
10
10
|
state?: GraphNodeState;
|
|
11
11
|
stateLabel?: string;
|
|
12
12
|
}
|
|
13
|
-
export declare function GraphNodeShell({ children, className, handles, nodeKind, showStateIndicator, state, stateLabel, ...articleProps }: GraphNodeShellProps): import("react").JSX.Element;
|
|
13
|
+
export declare function GraphNodeShell({ children, className, handles, nodeKind, showStateIndicator, state, stateLabel, ...articleProps }: GraphNodeShellProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -3,4 +3,4 @@ export interface GraphNodeStateIndicatorProps {
|
|
|
3
3
|
state: GraphNodeState;
|
|
4
4
|
stateLabel?: string;
|
|
5
5
|
}
|
|
6
|
-
export declare function GraphNodeStateIndicator({ state, stateLabel, }: GraphNodeStateIndicatorProps): import("react").JSX.Element;
|
|
6
|
+
export declare function GraphNodeStateIndicator({ state, stateLabel, }: GraphNodeStateIndicatorProps): import("react/jsx-runtime").JSX.Element;
|
package/dist/graphs/index.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/** Stable category path for `@you-agent-factory/components/graphs`. */
|
|
2
2
|
export declare const COMPONENTS_CATEGORY: "graphs";
|
|
3
3
|
export type ComponentsCategory = typeof COMPONENTS_CATEGORY;
|
|
4
|
+
export type { GraphEdgeData, GraphEdgeProps } from "./graph-edge";
|
|
5
|
+
export { GRAPH_EDGE_TYPES, GraphEdge } from "./graph-edge";
|
|
6
|
+
export { buildGraphEdgePathThroughWaypoints, type GraphEdgeWaypoint, } from "./graph-edge-path";
|
|
4
7
|
export { GRAPH_NODE_BUTTON_BASE_CLASS, GraphNodeButton, type GraphNodeButtonProps, } from "./graph-node-button";
|
|
5
|
-
export { GraphViewportSurface, type GraphViewportSurfaceProps, } from "./graph-viewport-surface";
|
|
6
8
|
export type { GraphNodeHandle, GraphNodeHandleTone } from "./graph-node-handle";
|
|
7
9
|
export { GraphNodeHandleBadge, type GraphNodeHandleBadgeProps, } from "./graph-node-handle-badge";
|
|
8
10
|
export { GraphNodeShell, type GraphNodeShellProps } from "./graph-node-shell";
|
|
9
|
-
export { defaultGraphNodeStateLabel, GRAPH_NODE_CONTENT_MIN_HEIGHT_CLASS, GRAPH_NODE_STATE_INDICATOR_HEIGHT_CLASS, graphNodeButtonIsDisabled, graphNodeButtonStateAttributes, graphNodeButtonStateClassName, graphNodeShellStateAttributes, graphNodeShellStateClassName,
|
|
11
|
+
export { defaultGraphNodeStateLabel, GRAPH_NODE_CONTENT_MIN_HEIGHT_CLASS, GRAPH_NODE_STATE_INDICATOR_HEIGHT_CLASS, type GraphNodeState, graphNodeButtonIsDisabled, graphNodeButtonStateAttributes, graphNodeButtonStateClassName, graphNodeShellStateAttributes, graphNodeShellStateClassName, } from "./graph-node-state";
|
|
10
12
|
export { GraphNodeStateIndicator, type GraphNodeStateIndicatorProps, } from "./graph-node-state-indicator";
|
|
11
|
-
export {
|
|
12
|
-
export type { GraphEdgeData, GraphEdgeProps } from "./graph-edge";
|
|
13
|
-
export { GRAPH_EDGE_TYPES, GraphEdge } from "./graph-edge";
|
|
13
|
+
export { GraphViewportSurface, type GraphViewportSurfaceProps, } from "./graph-viewport-surface";
|