ai-design-system 0.1.36 → 0.1.37

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 (2) hide show
  1. package/dist/index.d.ts +13 -13
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -1040,6 +1040,19 @@ export interface TablePaginationProps {
1040
1040
 
1041
1041
  export const TablePagination: React.FC<TablePaginationProps>;
1042
1042
 
1043
+ // From components/composites/StateNode/StateNode.tsx
1044
+ export type StateNodeData = {
1045
+ label: string;
1046
+ description?: string;
1047
+ type: "state";
1048
+ /** True for terminal states — marks workflow completion, no outgoing transitions */
1049
+ isTerminal?: boolean;
1050
+ status?: "idle" | "running" | "success" | "error";
1051
+ enabled?: boolean;
1052
+ };
1053
+
1054
+ export const StateNode: React.FC<any>;
1055
+
1043
1056
  // From components/composites/StatsCard/StatsCard.tsx
1044
1057
  export interface StatsCardProps {
1045
1058
  /**
@@ -1072,19 +1085,6 @@ export interface StatsCardProps {
1072
1085
 
1073
1086
  export const StatsCard: React.FC<StatsCardProps>;
1074
1087
 
1075
- // From components/composites/StateNode/StateNode.tsx
1076
- export type StateNodeData = {
1077
- label: string;
1078
- description?: string;
1079
- type: "state";
1080
- /** True for terminal states — marks workflow completion, no outgoing transitions */
1081
- isTerminal?: boolean;
1082
- status?: "idle" | "running" | "success" | "error";
1083
- enabled?: boolean;
1084
- };
1085
-
1086
- export const StateNode: React.FC<any>;
1087
-
1088
1088
  // From components/composites/SpecialistMessage/SpecialistMessage.tsx
1089
1089
  export interface SpecialistMessageData {
1090
1090
  id: string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-design-system",
3
- "version": "0.1.36",
3
+ "version": "0.1.37",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "AI-powered design system with React components, built with Tailwind CSS and Radix UI - test",
@@ -77,7 +77,7 @@
77
77
  "@tiptap/markdown": "^3.10.7",
78
78
  "@tiptap/react": "^3.10.7",
79
79
  "@tiptap/starter-kit": "^3.10.7",
80
- "@xyflow/react": "^12.9.2",
80
+ "@xyflow/react": "12.10.0",
81
81
  "@tabler/icons-react": "^3.39.0",
82
82
  "ai": "^5.0.87",
83
83
  "class-variance-authority": "^0.7.1",