@mastra/playground-ui 7.0.0-beta.23 → 7.0.0-beta.25

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 (57) hide show
  1. package/CHANGELOG.md +86 -0
  2. package/dist/index.cjs.js +1133 -264
  3. package/dist/index.cjs.js.map +1 -1
  4. package/dist/index.css +10 -10
  5. package/dist/index.es.js +1120 -259
  6. package/dist/index.es.js.map +1 -1
  7. package/dist/spacings-Ddc7umGk.js +196 -0
  8. package/dist/spacings-Ddc7umGk.js.map +1 -0
  9. package/dist/spacings-bCnRJAUT.cjs +206 -0
  10. package/dist/spacings-bCnRJAUT.cjs.map +1 -0
  11. package/dist/src/domains/agents/components/agent-metadata/agent-metadata.d.ts +11 -0
  12. package/dist/src/domains/processors/components/index.d.ts +2 -0
  13. package/dist/src/domains/processors/components/processor-panel.d.ts +8 -0
  14. package/dist/src/domains/processors/components/processor-table/columns.d.ts +12 -0
  15. package/dist/src/domains/processors/components/processor-table/index.d.ts +2 -0
  16. package/dist/src/domains/processors/components/processor-table/processor-table.d.ts +7 -0
  17. package/dist/src/domains/processors/hooks/index.d.ts +1 -0
  18. package/dist/src/domains/processors/hooks/use-processors.d.ts +50 -0
  19. package/dist/src/domains/processors/index.d.ts +2 -0
  20. package/dist/src/domains/workflows/hooks/use-workflows.d.ts +3 -1
  21. package/dist/src/domains/workflows/workflow/workflow-input-data.d.ts +2 -1
  22. package/dist/src/ds/components/Alert/Alert.d.ts +2 -1
  23. package/dist/src/ds/components/Avatar/Avatar.d.ts +2 -1
  24. package/dist/src/ds/components/Badge/Badge.d.ts +1 -1
  25. package/dist/src/ds/components/Button/Button.d.ts +1 -1
  26. package/dist/src/ds/components/Card/Card.d.ts +26 -0
  27. package/dist/src/ds/components/Card/index.d.ts +2 -0
  28. package/dist/src/ds/components/Collapsible/collapsible.d.ts +4 -3
  29. package/dist/src/ds/components/EmptyState/EmptyState.d.ts +10 -9
  30. package/dist/src/ds/components/EmptyState/index.d.ts +2 -1
  31. package/dist/src/ds/components/Input/input.d.ts +2 -0
  32. package/dist/src/ds/components/Kbd/kbd.d.ts +2 -1
  33. package/dist/src/ds/components/Notification/notification.d.ts +1 -1
  34. package/dist/src/ds/components/Spinner/spinner.d.ts +2 -1
  35. package/dist/src/ds/components/StatusBadge/StatusBadge.d.ts +13 -0
  36. package/dist/src/ds/components/StatusBadge/index.d.ts +2 -0
  37. package/dist/src/ds/icons/ProcessorIcon.d.ts +2 -0
  38. package/dist/src/ds/icons/index.d.ts +1 -0
  39. package/dist/src/ds/primitives/form-element.d.ts +3 -2
  40. package/dist/src/ds/primitives/transitions.d.ts +22 -0
  41. package/dist/src/ds/tokens/animations.d.ts +5 -0
  42. package/dist/src/ds/tokens/colors.d.ts +2 -1
  43. package/dist/src/ds/tokens/index.d.ts +2 -0
  44. package/dist/src/ds/tokens/shadows.d.ts +14 -0
  45. package/dist/src/index.d.ts +1 -0
  46. package/dist/src/lib/ai-ui/tools/badges/tool-approval-buttons.d.ts +2 -1
  47. package/dist/src/lib/framework.d.ts +2 -0
  48. package/dist/src/services/tool-call-provider.d.ts +5 -1
  49. package/dist/tailwind.preset.cjs.js +38 -10
  50. package/dist/tailwind.preset.cjs.js.map +1 -1
  51. package/dist/tailwind.preset.es.js +29 -1
  52. package/dist/tailwind.preset.es.js.map +1 -1
  53. package/dist/tokens.cjs.js +17 -175
  54. package/dist/tokens.cjs.js.map +1 -1
  55. package/dist/tokens.es.js +8 -169
  56. package/dist/tokens.es.js.map +1 -1
  57. package/package.json +10 -10
@@ -1,9 +1,10 @@
1
- import { ElementType, ReactNode } from '../../../../node_modules/@types/react';
2
- export interface EmptyStateProps {
3
- as?: ElementType;
4
- iconSlot: ReactNode;
5
- titleSlot: ReactNode;
6
- descriptionSlot: ReactNode;
7
- actionSlot: ReactNode;
8
- }
9
- export declare const EmptyState: ({ iconSlot, titleSlot, descriptionSlot, actionSlot, as: Component, }: EmptyStateProps) => import("react/jsx-runtime").JSX.Element;
1
+ import * as React from 'react';
2
+ export type EmptyStateProps = {
3
+ iconSlot: React.ReactNode;
4
+ titleSlot: React.ReactNode;
5
+ descriptionSlot?: React.ReactNode;
6
+ actionSlot?: React.ReactNode;
7
+ className?: string;
8
+ as?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
9
+ };
10
+ export declare function EmptyState({ iconSlot, titleSlot, descriptionSlot, actionSlot, className, as: HeadingTag, }: EmptyStateProps): import("react/jsx-runtime").JSX.Element;
@@ -1 +1,2 @@
1
- export * from './EmptyState';
1
+ export { EmptyState } from './EmptyState';
2
+ export type { EmptyStateProps } from './EmptyState';
@@ -6,11 +6,13 @@ declare const inputVariants: (props?: ({
6
6
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
7
7
  export type InputProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size'> & VariantProps<typeof inputVariants> & {
8
8
  testId?: string;
9
+ error?: boolean;
9
10
  };
10
11
  declare const Input: React.ForwardRefExoticComponent<Omit<React.InputHTMLAttributes<HTMLInputElement>, "size"> & VariantProps<(props?: ({
11
12
  variant?: "default" | "unstyled" | "filled" | null | undefined;
12
13
  size?: "sm" | "md" | "lg" | null | undefined;
13
14
  } & import('class-variance-authority/types').ClassProp) | undefined) => string> & {
14
15
  testId?: string;
16
+ error?: boolean;
15
17
  } & React.RefAttributes<HTMLInputElement>>;
16
18
  export { Input, inputVariants };
@@ -1,5 +1,6 @@
1
1
  export type KbdProps = {
2
2
  children: React.ReactNode;
3
3
  theme?: 'light' | 'dark';
4
+ className?: string;
4
5
  };
5
- export declare const Kbd: ({ children, theme }: KbdProps) => import("react/jsx-runtime").JSX.Element;
6
+ export declare const Kbd: ({ children, theme, className }: KbdProps) => import("react/jsx-runtime").JSX.Element;
@@ -5,6 +5,6 @@ export type NotificationProps = {
5
5
  autoDismiss?: boolean;
6
6
  dismissTime?: number;
7
7
  dismissible?: boolean;
8
- type?: 'info' | 'error';
8
+ type?: 'info' | 'error' | 'success' | 'warning';
9
9
  };
10
10
  export declare function Notification({ children, className, isVisible, autoDismiss, dismissTime, dismissible, type, }: NotificationProps): import("react/jsx-runtime").JSX.Element | null;
@@ -1,6 +1,7 @@
1
1
  export type SpinnerProps = {
2
2
  color?: string;
3
3
  className?: string;
4
+ size?: 'sm' | 'md' | 'lg';
4
5
  };
5
- declare function Spinner({ color, className }: SpinnerProps): import("react/jsx-runtime").JSX.Element;
6
+ declare function Spinner({ color, className, size }: SpinnerProps): import("react/jsx-runtime").JSX.Element;
6
7
  export { Spinner };
@@ -0,0 +1,13 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import * as React from 'react';
3
+ declare const statusBadgeVariants: (props?: ({
4
+ variant?: "error" | "warning" | "info" | "success" | "neutral" | null | undefined;
5
+ size?: "sm" | "md" | "lg" | null | undefined;
6
+ withDot?: boolean | null | undefined;
7
+ pulse?: boolean | null | undefined;
8
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
9
+ export type StatusBadgeProps = React.HTMLAttributes<HTMLSpanElement> & VariantProps<typeof statusBadgeVariants> & {
10
+ children: React.ReactNode;
11
+ };
12
+ export declare function StatusBadge({ className, variant, size, withDot, pulse, children, ...props }: StatusBadgeProps): import("react/jsx-runtime").JSX.Element;
13
+ export {};
@@ -0,0 +1,2 @@
1
+ export { StatusBadge } from './StatusBadge';
2
+ export type { StatusBadgeProps } from './StatusBadge';
@@ -0,0 +1,2 @@
1
+ import { ComponentProps } from '../../../node_modules/@types/react';
2
+ export declare function ProcessorIcon(props: ComponentProps<'svg'>): import("react/jsx-runtime").JSX.Element;
@@ -40,3 +40,4 @@ export * from './FolderIcon';
40
40
  export * from './McpCoinIcon';
41
41
  export * from './ToolCoinIcon';
42
42
  export * from './AgentNetworkCoinIcon';
43
+ export * from './ProcessorIcon';
@@ -3,7 +3,8 @@ export declare const formElementSizes: {
3
3
  readonly md: "h-form-md";
4
4
  readonly lg: "h-form-lg";
5
5
  };
6
- export declare const formElementFocus = "focus:outline focus:outline-1 focus:outline-accent1";
7
- export declare const formElementFocusWithin = "focus-within:outline focus-within:outline-1 focus-within:outline-accent1 focus-within:-outline-offset-2";
6
+ export declare const formElementFocus = "focus:outline-none focus:ring-1 focus:ring-accent1 focus:shadow-focus-ring transition-shadow duration-normal";
7
+ export declare const formElementFocusWithin = "focus-within:outline-none focus-within:ring-1 focus-within:ring-accent1 focus-within:shadow-focus-ring transition-shadow duration-normal";
8
8
  export declare const formElementRadius = "rounded-md";
9
+ export declare const formElementTransition = "transition-all duration-normal ease-out-custom";
9
10
  export type FormElementSize = keyof typeof formElementSizes;
@@ -0,0 +1,22 @@
1
+ export declare const transitions: {
2
+ readonly colors: "transition-colors duration-normal ease-out-custom";
3
+ readonly transform: "transition-transform duration-normal ease-out-custom";
4
+ readonly all: "transition-all duration-normal ease-out-custom";
5
+ readonly opacity: "transition-opacity duration-normal ease-out-custom";
6
+ readonly shadow: "transition-shadow duration-normal ease-out-custom";
7
+ readonly allSlow: "transition-all duration-slow ease-out-custom";
8
+ };
9
+ export declare const hoverEffects: {
10
+ readonly scale: "hover:scale-[1.02] active:scale-[0.98]";
11
+ readonly scaleSubtle: "active:scale-[0.98]";
12
+ readonly brightness: "hover:brightness-110";
13
+ readonly lift: "hover:bg-surface4";
14
+ };
15
+ export declare const focusRing: {
16
+ readonly default: "focus:outline-none focus:ring-1 focus:ring-accent1 focus:shadow-focus-ring";
17
+ readonly simple: "focus:outline-none focus:ring-1 focus:ring-accent1";
18
+ readonly visible: "focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-accent1 focus-visible:shadow-focus-ring";
19
+ };
20
+ export type TransitionPreset = keyof typeof transitions;
21
+ export type HoverEffect = keyof typeof hoverEffects;
22
+ export type FocusRingStyle = keyof typeof focusRing;
@@ -0,0 +1,5 @@
1
+ export declare const Animations: {
2
+ durationNormal: string;
3
+ durationSlow: string;
4
+ easeOut: string;
5
+ };
@@ -7,7 +7,6 @@ export declare const Colors: {
7
7
  accent1: string;
8
8
  accent2: string;
9
9
  accent3: string;
10
- accent4: string;
11
10
  accent5: string;
12
11
  accent6: string;
13
12
  accent1Dark: string;
@@ -26,6 +25,8 @@ export declare const Colors: {
26
25
  neutral4: string;
27
26
  neutral5: string;
28
27
  neutral6: string;
28
+ error: string;
29
+ overlay: string;
29
30
  };
30
31
  export declare const BorderColors: {
31
32
  border1: string;
@@ -1,5 +1,7 @@
1
+ export * from './animations';
1
2
  export * from './borders';
2
3
  export * from './colors';
3
4
  export * from './fonts';
5
+ export * from './shadows';
4
6
  export * from './sizes';
5
7
  export * from './spacings';
@@ -0,0 +1,14 @@
1
+ export declare const Shadows: {
2
+ sm: string;
3
+ md: string;
4
+ lg: string;
5
+ inner: string;
6
+ card: string;
7
+ elevated: string;
8
+ dialog: string;
9
+ };
10
+ export declare const Glows: {
11
+ accent1: string;
12
+ accent2: string;
13
+ focusRing: string;
14
+ };
@@ -1,4 +1,5 @@
1
1
  export * from './domains/agents/index';
2
+ export * from './domains/processors/index';
2
3
  export * from './domains/scores/index';
3
4
  export * from './domains/tools/index';
4
5
  export * from './domains/workflows/index';
@@ -9,5 +9,6 @@ export interface ToolApprovalButtonsProps {
9
9
  runId?: string;
10
10
  } | undefined;
11
11
  isNetwork: boolean;
12
+ isGenerateMode?: boolean;
12
13
  }
13
- export declare const ToolApprovalButtons: ({ toolCalled, toolCallId, toolApprovalMetadata, toolName, isNetwork, }: ToolApprovalButtonsProps) => import("react/jsx-runtime").JSX.Element | null;
14
+ export declare const ToolApprovalButtons: ({ toolCalled, toolCallId, toolApprovalMetadata, toolName, isNetwork, isGenerateMode, }: ToolApprovalButtonsProps) => import("react/jsx-runtime").JSX.Element | null;
@@ -14,6 +14,8 @@ type LinkComponentPaths = {
14
14
  networkThreadLink: (networkId: string, threadId: string) => string;
15
15
  scorerLink: (scorerId: string) => string;
16
16
  toolLink: (toolId: string) => string;
17
+ processorsLink: () => string;
18
+ processorLink: (processorId: string) => string;
17
19
  mcpServerLink: (serverId: string) => string;
18
20
  mcpServerToolLink: (serverId: string, toolId: string) => string;
19
21
  workflowRunLink: (workflowId: string, runId: string) => string;
@@ -2,6 +2,8 @@ import { ReactNode } from '../../node_modules/@types/react';
2
2
  interface ToolCallContextValue {
3
3
  approveToolcall: (toolCallId: string) => void;
4
4
  declineToolcall: (toolCallId: string) => void;
5
+ approveToolcallGenerate: (toolCallId: string) => void;
6
+ declineToolcallGenerate: (toolCallId: string) => void;
5
7
  approveNetworkToolcall: (toolName: string, runId?: string) => void;
6
8
  declineNetworkToolcall: (toolName: string, runId?: string) => void;
7
9
  isRunning: boolean;
@@ -20,6 +22,8 @@ interface ToolCallProviderProps {
20
22
  children: ReactNode;
21
23
  approveToolcall: (toolCallId: string) => void;
22
24
  declineToolcall: (toolCallId: string) => void;
25
+ approveToolcallGenerate: (toolCallId: string) => void;
26
+ declineToolcallGenerate: (toolCallId: string) => void;
23
27
  approveNetworkToolcall: (toolName: string, runId?: string) => void;
24
28
  declineNetworkToolcall: (toolName: string, runId?: string) => void;
25
29
  isRunning: boolean;
@@ -34,6 +38,6 @@ interface ToolCallProviderProps {
34
38
  };
35
39
  };
36
40
  }
37
- export declare function ToolCallProvider({ children, approveToolcall, declineToolcall, approveNetworkToolcall, declineNetworkToolcall, isRunning, toolCallApprovals, networkToolCallApprovals, }: ToolCallProviderProps): import("react/jsx-runtime").JSX.Element;
41
+ export declare function ToolCallProvider({ children, approveToolcall, declineToolcall, approveToolcallGenerate, declineToolcallGenerate, approveNetworkToolcall, declineNetworkToolcall, isRunning, toolCallApprovals, networkToolCallApprovals, }: ToolCallProviderProps): import("react/jsx-runtime").JSX.Element;
38
42
  export declare function useToolCall(): ToolCallContextValue;
39
43
  export {};
@@ -2,6 +2,7 @@
2
2
 
3
3
  const defaultFont = require('tailwindcss/defaultTheme');
4
4
  const tokens = require('./tokens.cjs.js');
5
+ const spacings = require('./spacings-bCnRJAUT.cjs');
5
6
  const animate = require('tailwindcss-animate');
6
7
  const assistantUi = require('@assistant-ui/react-ui/tailwindcss');
7
8
  const require$$0 = require('tailwindcss/plugin');
@@ -112,41 +113,68 @@ const tailwindConfig = {
112
113
  "2xl": "1400px"
113
114
  }
114
115
  },
115
- spacing: tokens.Spacings,
116
+ spacing: spacings.Spacings,
116
117
  extend: {
117
118
  screens: {
118
119
  "3xl": "1900px",
119
120
  "4xl": "2000px"
120
121
  },
121
122
  fontSize: {
122
- ...tokens.FontSizes
123
+ ...spacings.FontSizes
123
124
  },
124
125
  lineHeight: {
125
- ...tokens.LineHeights
126
+ ...spacings.LineHeights
126
127
  },
127
128
  borderRadius: {
128
- ...tokens.BorderRadius
129
+ ...spacings.BorderRadius
129
130
  },
130
131
  height: {
131
- ...tokens.Sizes
132
+ ...spacings.Sizes
132
133
  },
133
134
  maxHeight: {
134
- ...tokens.Sizes
135
+ ...spacings.Sizes
135
136
  },
136
137
  width: {
137
- ...tokens.Sizes
138
+ ...spacings.Sizes
138
139
  },
139
140
  maxWidth: {
140
- ...tokens.Sizes
141
+ ...spacings.Sizes
141
142
  },
142
143
  colors: {
143
- ...tokens.Colors,
144
- ...tokens.BorderColors
144
+ ...spacings.Colors,
145
+ ...spacings.BorderColors
145
146
  },
146
147
  fontFamily: {
147
148
  serif: ["var(--tasa-explorer)", ...defaultFont.fontFamily.serif],
148
149
  mono: ["var(--geist-mono)", ...defaultFont.fontFamily.mono],
149
150
  sans: ["var(--font-inter)", ...defaultFont.fontFamily.sans]
151
+ },
152
+ // Animation tokens
153
+ transitionDuration: {
154
+ normal: tokens.Animations.durationNormal,
155
+ slow: tokens.Animations.durationSlow
156
+ },
157
+ transitionTimingFunction: {
158
+ "ease-out-custom": tokens.Animations.easeOut
159
+ },
160
+ // Shadow tokens
161
+ boxShadow: {
162
+ sm: spacings.Shadows.sm,
163
+ md: spacings.Shadows.md,
164
+ lg: spacings.Shadows.lg,
165
+ inner: spacings.Shadows.inner,
166
+ card: spacings.Shadows.card,
167
+ elevated: spacings.Shadows.elevated,
168
+ dialog: spacings.Shadows.dialog,
169
+ "glow-accent1": spacings.Glows.accent1,
170
+ "glow-accent2": spacings.Glows.accent2,
171
+ "focus-ring": spacings.Glows.focusRing
172
+ },
173
+ // Custom keyframes
174
+ keyframes: {
175
+ shimmer: {
176
+ "100%": { transform: "translateX(100%)" }
177
+ }
150
178
  }
151
179
  }
152
180
  },
@@ -1 +1 @@
1
- {"version":3,"file":"tailwind.preset.cjs.js","sources":["../../../node_modules/.pnpm/@tailwindcss+container-queries@0.1.1_tailwindcss@3.4.18_tsx@4.21.0_yaml@2.8.1_/node_modules/@tailwindcss/container-queries/dist/index.js","../tailwind.config.ts","../tailwind.preset.ts"],"sourcesContent":["\"use strict\";\nvar _plugin = /*#__PURE__*/ _interopRequireDefault(require(\"tailwindcss/plugin\"));\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {\n default: obj\n };\n}\nmodule.exports = (0, _plugin.default)(function containerQueries(param) {\n var matchUtilities = param.matchUtilities, matchVariant = param.matchVariant, theme = param.theme;\n var parseValue = function parseValue(value) {\n var _value_match;\n var _value_match_;\n var numericValue = (_value_match_ = (_value_match = value.match(/^(\\d+\\.\\d+|\\d+|\\.\\d+)\\D+/)) === null || _value_match === void 0 ? void 0 : _value_match[1]) !== null && _value_match_ !== void 0 ? _value_match_ : null;\n if (numericValue === null) return null;\n return parseFloat(value);\n };\n var _theme;\n var values = (_theme = theme(\"containers\")) !== null && _theme !== void 0 ? _theme : {};\n matchUtilities({\n \"@container\": function(value, param) {\n var modifier = param.modifier;\n return {\n \"container-type\": value,\n \"container-name\": modifier\n };\n }\n }, {\n values: {\n DEFAULT: \"inline-size\",\n normal: \"normal\"\n },\n modifiers: \"any\"\n });\n matchVariant(\"@\", function() {\n var value = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : \"\", modifier = (arguments.length > 1 ? arguments[1] : void 0).modifier;\n var parsed = parseValue(value);\n return parsed !== null ? \"@container \".concat(modifier !== null && modifier !== void 0 ? modifier : \"\", \" (min-width: \").concat(value, \")\") : [];\n }, {\n values: values,\n sort: function sort(aVariant, zVariant) {\n var a = parseFloat(aVariant.value);\n var z = parseFloat(zVariant.value);\n if (a === null || z === null) return 0;\n // Sort values themselves regardless of unit\n if (a - z !== 0) return a - z;\n var _aVariant_modifier;\n var aLabel = (_aVariant_modifier = aVariant.modifier) !== null && _aVariant_modifier !== void 0 ? _aVariant_modifier : \"\";\n var _zVariant_modifier;\n var zLabel = (_zVariant_modifier = zVariant.modifier) !== null && _zVariant_modifier !== void 0 ? _zVariant_modifier : \"\";\n // Explicitly move empty labels to the end\n if (aLabel === \"\" && zLabel !== \"\") {\n return 1;\n } else if (aLabel !== \"\" && zLabel === \"\") {\n return -1;\n }\n // Sort labels alphabetically in the English locale\n // We are intentionally overriding the locale because we do not want the sort to\n // be affected by the machine's locale (be it a developer or CI environment)\n return aLabel.localeCompare(zLabel, \"en\", {\n numeric: true\n });\n }\n });\n}, {\n theme: {\n containers: {\n xs: \"20rem\",\n sm: \"24rem\",\n md: \"28rem\",\n lg: \"32rem\",\n xl: \"36rem\",\n \"2xl\": \"42rem\",\n \"3xl\": \"48rem\",\n \"4xl\": \"56rem\",\n \"5xl\": \"64rem\",\n \"6xl\": \"72rem\",\n \"7xl\": \"80rem\"\n }\n }\n});\n","import type { Config } from 'tailwindcss';\nimport defaultFont from 'tailwindcss/defaultTheme';\nimport { FontSizes, LineHeights, BorderColors, Colors, BorderRadius, Spacings, Sizes } from './src/ds/tokens';\nimport animate from 'tailwindcss-animate';\nimport assistantUi from '@assistant-ui/react-ui/tailwindcss';\nimport containerQueries from '@tailwindcss/container-queries';\n\nexport default {\n darkMode: ['class'],\n content: ['./src/**/*.{html,js,tsx,ts,jsx}'],\n theme: {\n container: {\n center: true,\n padding: '2rem',\n screens: {\n '2xl': '1400px',\n },\n },\n spacing: Spacings,\n extend: {\n screens: {\n '3xl': '1900px',\n '4xl': '2000px',\n },\n fontSize: {\n ...FontSizes,\n },\n lineHeight: {\n ...LineHeights,\n },\n borderRadius: {\n ...BorderRadius,\n },\n height: {\n ...Sizes,\n },\n maxHeight: {\n ...Sizes,\n },\n width: {\n ...Sizes,\n },\n maxWidth: {\n ...Sizes,\n },\n colors: {\n ...Colors,\n ...BorderColors,\n },\n fontFamily: {\n serif: ['var(--tasa-explorer)', ...defaultFont.fontFamily.serif],\n mono: ['var(--geist-mono)', ...defaultFont.fontFamily.mono],\n sans: ['var(--font-inter)', ...defaultFont.fontFamily.sans],\n },\n },\n },\n plugins: [animate, assistantUi, containerQueries],\n} satisfies Config;\n","import type { Config } from 'tailwindcss';\nimport tailwindConfig from './tailwind.config';\n\nconst { content, ...preset } = tailwindConfig;\nexport default preset as Partial<Config>;\n"],"names":["Spacings","FontSizes","LineHeights","BorderRadius","Sizes","Colors","BorderColors"],"mappings":"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","x_google_ignoreList":[0]}
1
+ {"version":3,"file":"tailwind.preset.cjs.js","sources":["../../../node_modules/.pnpm/@tailwindcss+container-queries@0.1.1_tailwindcss@3.4.18_tsx@4.21.0_yaml@2.8.1_/node_modules/@tailwindcss/container-queries/dist/index.js","../tailwind.config.ts","../tailwind.preset.ts"],"sourcesContent":["\"use strict\";\nvar _plugin = /*#__PURE__*/ _interopRequireDefault(require(\"tailwindcss/plugin\"));\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {\n default: obj\n };\n}\nmodule.exports = (0, _plugin.default)(function containerQueries(param) {\n var matchUtilities = param.matchUtilities, matchVariant = param.matchVariant, theme = param.theme;\n var parseValue = function parseValue(value) {\n var _value_match;\n var _value_match_;\n var numericValue = (_value_match_ = (_value_match = value.match(/^(\\d+\\.\\d+|\\d+|\\.\\d+)\\D+/)) === null || _value_match === void 0 ? void 0 : _value_match[1]) !== null && _value_match_ !== void 0 ? _value_match_ : null;\n if (numericValue === null) return null;\n return parseFloat(value);\n };\n var _theme;\n var values = (_theme = theme(\"containers\")) !== null && _theme !== void 0 ? _theme : {};\n matchUtilities({\n \"@container\": function(value, param) {\n var modifier = param.modifier;\n return {\n \"container-type\": value,\n \"container-name\": modifier\n };\n }\n }, {\n values: {\n DEFAULT: \"inline-size\",\n normal: \"normal\"\n },\n modifiers: \"any\"\n });\n matchVariant(\"@\", function() {\n var value = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : \"\", modifier = (arguments.length > 1 ? arguments[1] : void 0).modifier;\n var parsed = parseValue(value);\n return parsed !== null ? \"@container \".concat(modifier !== null && modifier !== void 0 ? modifier : \"\", \" (min-width: \").concat(value, \")\") : [];\n }, {\n values: values,\n sort: function sort(aVariant, zVariant) {\n var a = parseFloat(aVariant.value);\n var z = parseFloat(zVariant.value);\n if (a === null || z === null) return 0;\n // Sort values themselves regardless of unit\n if (a - z !== 0) return a - z;\n var _aVariant_modifier;\n var aLabel = (_aVariant_modifier = aVariant.modifier) !== null && _aVariant_modifier !== void 0 ? _aVariant_modifier : \"\";\n var _zVariant_modifier;\n var zLabel = (_zVariant_modifier = zVariant.modifier) !== null && _zVariant_modifier !== void 0 ? _zVariant_modifier : \"\";\n // Explicitly move empty labels to the end\n if (aLabel === \"\" && zLabel !== \"\") {\n return 1;\n } else if (aLabel !== \"\" && zLabel === \"\") {\n return -1;\n }\n // Sort labels alphabetically in the English locale\n // We are intentionally overriding the locale because we do not want the sort to\n // be affected by the machine's locale (be it a developer or CI environment)\n return aLabel.localeCompare(zLabel, \"en\", {\n numeric: true\n });\n }\n });\n}, {\n theme: {\n containers: {\n xs: \"20rem\",\n sm: \"24rem\",\n md: \"28rem\",\n lg: \"32rem\",\n xl: \"36rem\",\n \"2xl\": \"42rem\",\n \"3xl\": \"48rem\",\n \"4xl\": \"56rem\",\n \"5xl\": \"64rem\",\n \"6xl\": \"72rem\",\n \"7xl\": \"80rem\"\n }\n }\n});\n","import type { Config } from 'tailwindcss';\nimport defaultFont from 'tailwindcss/defaultTheme';\nimport {\n FontSizes,\n LineHeights,\n BorderColors,\n Colors,\n BorderRadius,\n Spacings,\n Sizes,\n Animations,\n Shadows,\n Glows,\n} from './src/ds/tokens';\nimport animate from 'tailwindcss-animate';\nimport assistantUi from '@assistant-ui/react-ui/tailwindcss';\nimport containerQueries from '@tailwindcss/container-queries';\n\nexport default {\n darkMode: ['class'],\n content: ['./src/**/*.{html,js,tsx,ts,jsx}'],\n theme: {\n container: {\n center: true,\n padding: '2rem',\n screens: {\n '2xl': '1400px',\n },\n },\n spacing: Spacings,\n extend: {\n screens: {\n '3xl': '1900px',\n '4xl': '2000px',\n },\n fontSize: {\n ...FontSizes,\n },\n lineHeight: {\n ...LineHeights,\n },\n borderRadius: {\n ...BorderRadius,\n },\n height: {\n ...Sizes,\n },\n maxHeight: {\n ...Sizes,\n },\n width: {\n ...Sizes,\n },\n maxWidth: {\n ...Sizes,\n },\n colors: {\n ...Colors,\n ...BorderColors,\n },\n fontFamily: {\n serif: ['var(--tasa-explorer)', ...defaultFont.fontFamily.serif],\n mono: ['var(--geist-mono)', ...defaultFont.fontFamily.mono],\n sans: ['var(--font-inter)', ...defaultFont.fontFamily.sans],\n },\n // Animation tokens\n transitionDuration: {\n normal: Animations.durationNormal,\n slow: Animations.durationSlow,\n },\n transitionTimingFunction: {\n 'ease-out-custom': Animations.easeOut,\n },\n // Shadow tokens\n boxShadow: {\n sm: Shadows.sm,\n md: Shadows.md,\n lg: Shadows.lg,\n inner: Shadows.inner,\n card: Shadows.card,\n elevated: Shadows.elevated,\n dialog: Shadows.dialog,\n 'glow-accent1': Glows.accent1,\n 'glow-accent2': Glows.accent2,\n 'focus-ring': Glows.focusRing,\n },\n // Custom keyframes\n keyframes: {\n shimmer: {\n '100%': { transform: 'translateX(100%)' },\n },\n },\n },\n },\n plugins: [animate, assistantUi, containerQueries],\n} satisfies Config;\n","import type { Config } from 'tailwindcss';\nimport tailwindConfig from './tailwind.config';\n\nconst { content, ...preset } = tailwindConfig;\nexport default preset as Partial<Config>;\n"],"names":["Spacings","FontSizes","LineHeights","BorderRadius","Sizes","Colors","BorderColors","Animations","Shadows","Glows"],"mappings":"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","x_google_ignoreList":[0]}
@@ -1,5 +1,6 @@
1
1
  import defaultFont from 'tailwindcss/defaultTheme';
2
- import { BorderColors, Colors, Sizes, BorderRadius, LineHeights, FontSizes, Spacings } from './tokens.es.js';
2
+ import { Animations } from './tokens.es.js';
3
+ import { G as Glows, S as Shadows, B as BorderColors, C as Colors, a as Sizes, b as BorderRadius, L as LineHeights, F as FontSizes, c as Spacings } from './spacings-Ddc7umGk.js';
3
4
  import animate from 'tailwindcss-animate';
4
5
  import assistantUi from '@assistant-ui/react-ui/tailwindcss';
5
6
  import require$$0 from 'tailwindcss/plugin';
@@ -145,6 +146,33 @@ const tailwindConfig = {
145
146
  serif: ["var(--tasa-explorer)", ...defaultFont.fontFamily.serif],
146
147
  mono: ["var(--geist-mono)", ...defaultFont.fontFamily.mono],
147
148
  sans: ["var(--font-inter)", ...defaultFont.fontFamily.sans]
149
+ },
150
+ // Animation tokens
151
+ transitionDuration: {
152
+ normal: Animations.durationNormal,
153
+ slow: Animations.durationSlow
154
+ },
155
+ transitionTimingFunction: {
156
+ "ease-out-custom": Animations.easeOut
157
+ },
158
+ // Shadow tokens
159
+ boxShadow: {
160
+ sm: Shadows.sm,
161
+ md: Shadows.md,
162
+ lg: Shadows.lg,
163
+ inner: Shadows.inner,
164
+ card: Shadows.card,
165
+ elevated: Shadows.elevated,
166
+ dialog: Shadows.dialog,
167
+ "glow-accent1": Glows.accent1,
168
+ "glow-accent2": Glows.accent2,
169
+ "focus-ring": Glows.focusRing
170
+ },
171
+ // Custom keyframes
172
+ keyframes: {
173
+ shimmer: {
174
+ "100%": { transform: "translateX(100%)" }
175
+ }
148
176
  }
149
177
  }
150
178
  },
@@ -1 +1 @@
1
- {"version":3,"file":"tailwind.preset.es.js","sources":["../../../node_modules/.pnpm/@tailwindcss+container-queries@0.1.1_tailwindcss@3.4.18_tsx@4.21.0_yaml@2.8.1_/node_modules/@tailwindcss/container-queries/dist/index.js","../tailwind.config.ts","../tailwind.preset.ts"],"sourcesContent":["\"use strict\";\nvar _plugin = /*#__PURE__*/ _interopRequireDefault(require(\"tailwindcss/plugin\"));\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {\n default: obj\n };\n}\nmodule.exports = (0, _plugin.default)(function containerQueries(param) {\n var matchUtilities = param.matchUtilities, matchVariant = param.matchVariant, theme = param.theme;\n var parseValue = function parseValue(value) {\n var _value_match;\n var _value_match_;\n var numericValue = (_value_match_ = (_value_match = value.match(/^(\\d+\\.\\d+|\\d+|\\.\\d+)\\D+/)) === null || _value_match === void 0 ? void 0 : _value_match[1]) !== null && _value_match_ !== void 0 ? _value_match_ : null;\n if (numericValue === null) return null;\n return parseFloat(value);\n };\n var _theme;\n var values = (_theme = theme(\"containers\")) !== null && _theme !== void 0 ? _theme : {};\n matchUtilities({\n \"@container\": function(value, param) {\n var modifier = param.modifier;\n return {\n \"container-type\": value,\n \"container-name\": modifier\n };\n }\n }, {\n values: {\n DEFAULT: \"inline-size\",\n normal: \"normal\"\n },\n modifiers: \"any\"\n });\n matchVariant(\"@\", function() {\n var value = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : \"\", modifier = (arguments.length > 1 ? arguments[1] : void 0).modifier;\n var parsed = parseValue(value);\n return parsed !== null ? \"@container \".concat(modifier !== null && modifier !== void 0 ? modifier : \"\", \" (min-width: \").concat(value, \")\") : [];\n }, {\n values: values,\n sort: function sort(aVariant, zVariant) {\n var a = parseFloat(aVariant.value);\n var z = parseFloat(zVariant.value);\n if (a === null || z === null) return 0;\n // Sort values themselves regardless of unit\n if (a - z !== 0) return a - z;\n var _aVariant_modifier;\n var aLabel = (_aVariant_modifier = aVariant.modifier) !== null && _aVariant_modifier !== void 0 ? _aVariant_modifier : \"\";\n var _zVariant_modifier;\n var zLabel = (_zVariant_modifier = zVariant.modifier) !== null && _zVariant_modifier !== void 0 ? _zVariant_modifier : \"\";\n // Explicitly move empty labels to the end\n if (aLabel === \"\" && zLabel !== \"\") {\n return 1;\n } else if (aLabel !== \"\" && zLabel === \"\") {\n return -1;\n }\n // Sort labels alphabetically in the English locale\n // We are intentionally overriding the locale because we do not want the sort to\n // be affected by the machine's locale (be it a developer or CI environment)\n return aLabel.localeCompare(zLabel, \"en\", {\n numeric: true\n });\n }\n });\n}, {\n theme: {\n containers: {\n xs: \"20rem\",\n sm: \"24rem\",\n md: \"28rem\",\n lg: \"32rem\",\n xl: \"36rem\",\n \"2xl\": \"42rem\",\n \"3xl\": \"48rem\",\n \"4xl\": \"56rem\",\n \"5xl\": \"64rem\",\n \"6xl\": \"72rem\",\n \"7xl\": \"80rem\"\n }\n }\n});\n","import type { Config } from 'tailwindcss';\nimport defaultFont from 'tailwindcss/defaultTheme';\nimport { FontSizes, LineHeights, BorderColors, Colors, BorderRadius, Spacings, Sizes } from './src/ds/tokens';\nimport animate from 'tailwindcss-animate';\nimport assistantUi from '@assistant-ui/react-ui/tailwindcss';\nimport containerQueries from '@tailwindcss/container-queries';\n\nexport default {\n darkMode: ['class'],\n content: ['./src/**/*.{html,js,tsx,ts,jsx}'],\n theme: {\n container: {\n center: true,\n padding: '2rem',\n screens: {\n '2xl': '1400px',\n },\n },\n spacing: Spacings,\n extend: {\n screens: {\n '3xl': '1900px',\n '4xl': '2000px',\n },\n fontSize: {\n ...FontSizes,\n },\n lineHeight: {\n ...LineHeights,\n },\n borderRadius: {\n ...BorderRadius,\n },\n height: {\n ...Sizes,\n },\n maxHeight: {\n ...Sizes,\n },\n width: {\n ...Sizes,\n },\n maxWidth: {\n ...Sizes,\n },\n colors: {\n ...Colors,\n ...BorderColors,\n },\n fontFamily: {\n serif: ['var(--tasa-explorer)', ...defaultFont.fontFamily.serif],\n mono: ['var(--geist-mono)', ...defaultFont.fontFamily.mono],\n sans: ['var(--font-inter)', ...defaultFont.fontFamily.sans],\n },\n },\n },\n plugins: [animate, assistantUi, containerQueries],\n} satisfies Config;\n","import type { Config } from 'tailwindcss';\nimport tailwindConfig from './tailwind.config';\n\nconst { content, ...preset } = tailwindConfig;\nexport default preset as Partial<Config>;\n"],"names":[],"mappings":"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","x_google_ignoreList":[0]}
1
+ {"version":3,"file":"tailwind.preset.es.js","sources":["../../../node_modules/.pnpm/@tailwindcss+container-queries@0.1.1_tailwindcss@3.4.18_tsx@4.21.0_yaml@2.8.1_/node_modules/@tailwindcss/container-queries/dist/index.js","../tailwind.config.ts","../tailwind.preset.ts"],"sourcesContent":["\"use strict\";\nvar _plugin = /*#__PURE__*/ _interopRequireDefault(require(\"tailwindcss/plugin\"));\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {\n default: obj\n };\n}\nmodule.exports = (0, _plugin.default)(function containerQueries(param) {\n var matchUtilities = param.matchUtilities, matchVariant = param.matchVariant, theme = param.theme;\n var parseValue = function parseValue(value) {\n var _value_match;\n var _value_match_;\n var numericValue = (_value_match_ = (_value_match = value.match(/^(\\d+\\.\\d+|\\d+|\\.\\d+)\\D+/)) === null || _value_match === void 0 ? void 0 : _value_match[1]) !== null && _value_match_ !== void 0 ? _value_match_ : null;\n if (numericValue === null) return null;\n return parseFloat(value);\n };\n var _theme;\n var values = (_theme = theme(\"containers\")) !== null && _theme !== void 0 ? _theme : {};\n matchUtilities({\n \"@container\": function(value, param) {\n var modifier = param.modifier;\n return {\n \"container-type\": value,\n \"container-name\": modifier\n };\n }\n }, {\n values: {\n DEFAULT: \"inline-size\",\n normal: \"normal\"\n },\n modifiers: \"any\"\n });\n matchVariant(\"@\", function() {\n var value = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : \"\", modifier = (arguments.length > 1 ? arguments[1] : void 0).modifier;\n var parsed = parseValue(value);\n return parsed !== null ? \"@container \".concat(modifier !== null && modifier !== void 0 ? modifier : \"\", \" (min-width: \").concat(value, \")\") : [];\n }, {\n values: values,\n sort: function sort(aVariant, zVariant) {\n var a = parseFloat(aVariant.value);\n var z = parseFloat(zVariant.value);\n if (a === null || z === null) return 0;\n // Sort values themselves regardless of unit\n if (a - z !== 0) return a - z;\n var _aVariant_modifier;\n var aLabel = (_aVariant_modifier = aVariant.modifier) !== null && _aVariant_modifier !== void 0 ? _aVariant_modifier : \"\";\n var _zVariant_modifier;\n var zLabel = (_zVariant_modifier = zVariant.modifier) !== null && _zVariant_modifier !== void 0 ? _zVariant_modifier : \"\";\n // Explicitly move empty labels to the end\n if (aLabel === \"\" && zLabel !== \"\") {\n return 1;\n } else if (aLabel !== \"\" && zLabel === \"\") {\n return -1;\n }\n // Sort labels alphabetically in the English locale\n // We are intentionally overriding the locale because we do not want the sort to\n // be affected by the machine's locale (be it a developer or CI environment)\n return aLabel.localeCompare(zLabel, \"en\", {\n numeric: true\n });\n }\n });\n}, {\n theme: {\n containers: {\n xs: \"20rem\",\n sm: \"24rem\",\n md: \"28rem\",\n lg: \"32rem\",\n xl: \"36rem\",\n \"2xl\": \"42rem\",\n \"3xl\": \"48rem\",\n \"4xl\": \"56rem\",\n \"5xl\": \"64rem\",\n \"6xl\": \"72rem\",\n \"7xl\": \"80rem\"\n }\n }\n});\n","import type { Config } from 'tailwindcss';\nimport defaultFont from 'tailwindcss/defaultTheme';\nimport {\n FontSizes,\n LineHeights,\n BorderColors,\n Colors,\n BorderRadius,\n Spacings,\n Sizes,\n Animations,\n Shadows,\n Glows,\n} from './src/ds/tokens';\nimport animate from 'tailwindcss-animate';\nimport assistantUi from '@assistant-ui/react-ui/tailwindcss';\nimport containerQueries from '@tailwindcss/container-queries';\n\nexport default {\n darkMode: ['class'],\n content: ['./src/**/*.{html,js,tsx,ts,jsx}'],\n theme: {\n container: {\n center: true,\n padding: '2rem',\n screens: {\n '2xl': '1400px',\n },\n },\n spacing: Spacings,\n extend: {\n screens: {\n '3xl': '1900px',\n '4xl': '2000px',\n },\n fontSize: {\n ...FontSizes,\n },\n lineHeight: {\n ...LineHeights,\n },\n borderRadius: {\n ...BorderRadius,\n },\n height: {\n ...Sizes,\n },\n maxHeight: {\n ...Sizes,\n },\n width: {\n ...Sizes,\n },\n maxWidth: {\n ...Sizes,\n },\n colors: {\n ...Colors,\n ...BorderColors,\n },\n fontFamily: {\n serif: ['var(--tasa-explorer)', ...defaultFont.fontFamily.serif],\n mono: ['var(--geist-mono)', ...defaultFont.fontFamily.mono],\n sans: ['var(--font-inter)', ...defaultFont.fontFamily.sans],\n },\n // Animation tokens\n transitionDuration: {\n normal: Animations.durationNormal,\n slow: Animations.durationSlow,\n },\n transitionTimingFunction: {\n 'ease-out-custom': Animations.easeOut,\n },\n // Shadow tokens\n boxShadow: {\n sm: Shadows.sm,\n md: Shadows.md,\n lg: Shadows.lg,\n inner: Shadows.inner,\n card: Shadows.card,\n elevated: Shadows.elevated,\n dialog: Shadows.dialog,\n 'glow-accent1': Glows.accent1,\n 'glow-accent2': Glows.accent2,\n 'focus-ring': Glows.focusRing,\n },\n // Custom keyframes\n keyframes: {\n shimmer: {\n '100%': { transform: 'translateX(100%)' },\n },\n },\n },\n },\n plugins: [animate, assistantUi, containerQueries],\n} satisfies Config;\n","import type { Config } from 'tailwindcss';\nimport tailwindConfig from './tailwind.config';\n\nconst { content, ...preset } = tailwindConfig;\nexport default preset as Partial<Config>;\n"],"names":[],"mappings":"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","x_google_ignoreList":[0]}