@altimateai/ui-components 0.0.1-beta.2 → 0.0.1-beta.4

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 (60) hide show
  1. package/dist/Accordion.js +43 -114
  2. package/dist/Badge.js +1 -1
  3. package/dist/CoachForm.js +6285 -6583
  4. package/dist/DbtDocsRenderer.js +833 -2651
  5. package/dist/Tooltip.js +115 -0
  6. package/dist/assets/icons/index.js +44 -39
  7. package/dist/chatbot/index.js +100 -96
  8. package/dist/chatbotV2/index.js +16 -3
  9. package/dist/flowchart-elk-definition-170a3958.js +2 -2
  10. package/dist/index.js +16 -16
  11. package/dist/index2.js +194 -193
  12. package/dist/is_dark.js +1 -1
  13. package/dist/lineage/index.js +2284 -2710
  14. package/dist/main.js +50 -185
  15. package/dist/mindmap-definition-44684416.js +2 -2
  16. package/dist/redux-toolkit.modern.js +1 -1
  17. package/dist/shadcn/index.js +352 -382
  18. package/dist/timeline-definition-8e5a9bc6.js +1 -1
  19. package/dist/v4.js +524 -514
  20. package/package.json +54 -54
  21. package/readme.md +11 -0
  22. package/dist/Stack.js +0 -132
  23. package/dist/assets/icons/index.d.ts +0 -86
  24. package/dist/chatbot/index.d.ts +0 -39
  25. package/dist/chatbotV2/index.d.ts +0 -111
  26. package/dist/index.d.ts +0 -217
  27. package/dist/lineage/index.d.ts +0 -183
  28. package/dist/shadcn/index.d.ts +0 -517
  29. package/dist/storybook/Accordion.stories.tsx +0 -61
  30. package/dist/storybook/Alert.stories.tsx +0 -65
  31. package/dist/storybook/AlertDialog.stories.tsx +0 -166
  32. package/dist/storybook/Avatar.stories.tsx +0 -58
  33. package/dist/storybook/Badge.stories.tsx +0 -36
  34. package/dist/storybook/Button.stories.tsx +0 -129
  35. package/dist/storybook/Card.stories.tsx +0 -76
  36. package/dist/storybook/Checkbox.stories.tsx +0 -74
  37. package/dist/storybook/Command.stories.tsx +0 -35
  38. package/dist/storybook/DropdownMenu.stories.tsx +0 -36
  39. package/dist/storybook/Form.stories.tsx +0 -120
  40. package/dist/storybook/HoverCard.stories.tsx +0 -105
  41. package/dist/storybook/Input.stories.tsx +0 -53
  42. package/dist/storybook/Label.stories.tsx +0 -42
  43. package/dist/storybook/Menubar.stories.tsx +0 -159
  44. package/dist/storybook/Pagination.stories.tsx +0 -155
  45. package/dist/storybook/Popover.stories.tsx +0 -25
  46. package/dist/storybook/Progress.stories.tsx +0 -89
  47. package/dist/storybook/RadioGroup.stories.tsx +0 -61
  48. package/dist/storybook/Resizable.stories.tsx +0 -119
  49. package/dist/storybook/ScrollArea.stories.tsx +0 -120
  50. package/dist/storybook/Select.stories.tsx +0 -95
  51. package/dist/storybook/Sheet.stories.tsx +0 -75
  52. package/dist/storybook/Sidebar.stories.tsx +0 -97
  53. package/dist/storybook/Slider.stories.tsx +0 -81
  54. package/dist/storybook/Switch.stories.tsx +0 -99
  55. package/dist/storybook/Textarea.stories.tsx +0 -50
  56. package/dist/storybook/Toast.stories.tsx +0 -111
  57. package/dist/storybook/Tooltip.stories.tsx +0 -33
  58. package/dist/storybook/Typography.stories.tsx +0 -178
  59. package/dist/types-PVxbm0tZ.d.ts +0 -99
  60. /package/dist/{Stack.css → v4.css} +0 -0
@@ -1,81 +0,0 @@
1
- import { Meta, StoryFn } from "@storybook/react";
2
- import { Slider } from "../shadcn";
3
-
4
- export default {
5
- title: "Shadcn/Components/Slider",
6
- component: Slider,
7
- argTypes: {
8
- defaultValue: {
9
- control: "object",
10
- },
11
- min: {
12
- control: "number",
13
- },
14
- max: {
15
- control: "number",
16
- },
17
- step: {
18
- control: "number",
19
- },
20
- disabled: {
21
- control: "boolean",
22
- },
23
- },
24
- } as Meta<typeof Slider>;
25
-
26
- const Template: StoryFn = (args) => (
27
- <div className="al-w-[60%] al-space-y-4">
28
- <Slider {...args} />
29
- </div>
30
- );
31
-
32
- export const Default = Template.bind({});
33
- Default.args = {
34
- defaultValue: [50],
35
- max: 100,
36
- step: 1,
37
- };
38
-
39
- export const WithSteps = Template.bind({});
40
- WithSteps.args = {
41
- defaultValue: [0],
42
- max: 100,
43
- step: 10,
44
- };
45
-
46
- export const Range = Template.bind({});
47
- Range.args = {
48
- defaultValue: [25, 75],
49
- max: 100,
50
- step: 1,
51
- };
52
-
53
- export const Disabled = Template.bind({});
54
- Disabled.args = {
55
- defaultValue: [50],
56
- max: 100,
57
- step: 1,
58
- disabled: true,
59
- };
60
-
61
- export const CustomRange = Template.bind({});
62
- CustomRange.args = {
63
- defaultValue: [40],
64
- min: -50,
65
- max: 50,
66
- step: 5,
67
- };
68
-
69
- export const WithLabels: StoryFn = () => (
70
- <div className="al-w-[60%] al-space-y-4">
71
- <div className="al-grid al-gap-4 al-pt-4">
72
- <div className="al-flex al-items-center al-justify-between">
73
- <label className="al-text-sm al-font-medium">Volume</label>
74
- <span className="al-w-12 al-rounded-md al-text-right al-text-sm">
75
- 50%
76
- </span>
77
- </div>
78
- <Slider defaultValue={[50]} max={100} step={1} />
79
- </div>
80
- </div>
81
- );
@@ -1,99 +0,0 @@
1
- import { Meta, StoryFn } from "@storybook/react";
2
- import { Switch } from "../shadcn";
3
-
4
- export default {
5
- title: "Shadcn/Components/Switch",
6
- component: Switch,
7
- argTypes: {
8
- checked: {
9
- control: "boolean",
10
- },
11
- disabled: {
12
- control: "boolean",
13
- },
14
- defaultChecked: {
15
- control: "boolean",
16
- },
17
- onCheckedChange: { action: "checked changed" },
18
- },
19
- } as Meta;
20
-
21
- const Template: StoryFn = (args) => <Switch {...args} />;
22
-
23
- export const Default = Template.bind({});
24
- Default.args = {
25
- "aria-label": "Switch demo",
26
- };
27
-
28
- export const Checked = Template.bind({});
29
- Checked.args = {
30
- defaultChecked: true,
31
- "aria-label": "Switch demo",
32
- };
33
-
34
- export const Disabled = Template.bind({});
35
- Disabled.args = {
36
- disabled: true,
37
- "aria-label": "Switch demo",
38
- };
39
-
40
- export const DisabledChecked = Template.bind({});
41
- DisabledChecked.args = {
42
- disabled: true,
43
- defaultChecked: true,
44
- "aria-label": "Switch demo",
45
- };
46
-
47
- export const WithLabel: StoryFn = () => (
48
- <div className="al-flex al-items-center al-space-x-2">
49
- <Switch id="airplane-mode" />
50
- <label
51
- htmlFor="airplane-mode"
52
- className="al-text-sm al-font-medium al-leading-none al-peer-disabled:al-cursor-not-allowed al-peer-disabled:al-opacity-70"
53
- >
54
- Airplane Mode
55
- </label>
56
- </div>
57
- );
58
-
59
- export const WithDescription: StoryFn = () => (
60
- <div className="al-flex al-flex-col al-space-y-2">
61
- <div className="al-flex al-items-center al-space-x-2">
62
- <Switch id="notifications" />
63
- <label
64
- htmlFor="notifications"
65
- className="al-text-sm al-font-medium al-leading-none"
66
- >
67
- Enable Notifications
68
- </label>
69
- </div>
70
- <p className="al-text-sm al-text-muted-foreground">
71
- You will receive notifications when someone mentions you in a comment.
72
- </p>
73
- </div>
74
- );
75
-
76
- export const InForm: StoryFn = () => (
77
- <form className="al-w-full al-max-w-sm">
78
- <div className="al-flex al-flex-col al-space-y-4">
79
- <div className="al-flex al-items-center al-justify-between">
80
- <label
81
- htmlFor="marketing"
82
- className="al-text-sm al-font-medium al-leading-none"
83
- >
84
- Marketing emails
85
- </label>
86
- <Switch id="marketing" />
87
- </div>
88
- <div className="al-flex al-items-center al-justify-between">
89
- <label
90
- htmlFor="newsletter"
91
- className="al-text-sm al-font-medium al-leading-none"
92
- >
93
- Weekly newsletter
94
- </label>
95
- <Switch id="newsletter" defaultChecked />
96
- </div>
97
- </div>
98
- </form>
99
- );
@@ -1,50 +0,0 @@
1
- import { Meta, StoryFn } from "@storybook/react";
2
- import { Textarea } from "../shadcn";
3
-
4
- export default {
5
- title: "Shadcn/Components/Textarea",
6
- component: Textarea,
7
- argTypes: {
8
- disabled: {
9
- control: "boolean",
10
- },
11
- placeholder: {
12
- control: "text",
13
- },
14
- rows: {
15
- control: "number",
16
- },
17
- },
18
- } as Meta;
19
-
20
- const Template: StoryFn = (args) => <Textarea {...args} />;
21
-
22
- export const Default = Template.bind({});
23
- Default.args = {
24
- placeholder: "Type your message here.",
25
- };
26
-
27
- export const WithRows = Template.bind({});
28
- WithRows.args = {
29
- placeholder: "Type your message here.",
30
- rows: 10,
31
- };
32
-
33
- export const Disabled = Template.bind({});
34
- Disabled.args = {
35
- placeholder: "This textarea is disabled",
36
- disabled: true,
37
- };
38
-
39
- export const WithValue = Template.bind({});
40
- WithValue.args = {
41
- value:
42
- "This is a pre-filled textarea with some content that demonstrates how the component handles longer text.",
43
- rows: 5,
44
- };
45
-
46
- export const WithCustomClass = Template.bind({});
47
- WithCustomClass.args = {
48
- placeholder: "Custom styled textarea",
49
- className: "al-border-2 al-border-primary",
50
- };
@@ -1,111 +0,0 @@
1
- import { Meta, StoryFn } from "@storybook/react";
2
- import {
3
- Toast,
4
- ToastProvider,
5
- ToastTitle,
6
- ToastDescription,
7
- ToastAction,
8
- ToastClose,
9
- ToastViewport,
10
- Toaster,
11
- Button,
12
- toast,
13
- } from "../shadcn";
14
-
15
- export default {
16
- title: "Shadcn/Components/Toast",
17
- component: Toast,
18
- decorators: [
19
- (Story) => (
20
- <ToastProvider>
21
- <Story />
22
- <Toaster />
23
- <ToastViewport />
24
- </ToastProvider>
25
- ),
26
- ],
27
- } as Meta;
28
-
29
- const Template: StoryFn = (args) => (
30
- <Toast {...args}>
31
- <ToastTitle>Toast Title</ToastTitle>
32
- <ToastDescription>Toast description goes here.</ToastDescription>
33
- <ToastClose />
34
- </Toast>
35
- );
36
-
37
- export const Default = Template.bind({});
38
- Default.args = {
39
- variant: "default",
40
- };
41
-
42
- export const Destructive = Template.bind({});
43
- Destructive.args = {
44
- variant: "destructive",
45
- };
46
-
47
- export const WithAction: StoryFn = () => (
48
- <Toast>
49
- <ToastTitle>Scheduled: Catch up</ToastTitle>
50
- <ToastDescription>Friday, February 10, 2024 at 5:57 PM</ToastDescription>
51
- <ToastAction altText="Goto schedule to undo" onClick={() => {}}>
52
- Undo
53
- </ToastAction>
54
- <ToastClose />
55
- </Toast>
56
- );
57
-
58
- export const WithLongContent: StoryFn = () => (
59
- <Toast>
60
- <ToastTitle>Long Content Example</ToastTitle>
61
- <ToastDescription>
62
- This is a toast with a very long description that might wrap to multiple
63
- lines. It demonstrates how the toast component handles longer content
64
- while maintaining its layout and readability.
65
- </ToastDescription>
66
- <ToastClose />
67
- </Toast>
68
- );
69
-
70
- export const Success: StoryFn = () => (
71
- <Toast>
72
- <div className="al-flex al-items-center al-gap-2">
73
- <div className="al-h-6 al-w-6 al-text-green-500">✓</div>
74
- <ToastTitle>Successfully saved!</ToastTitle>
75
- </div>
76
- <ToastDescription>
77
- Your changes have been saved successfully.
78
- </ToastDescription>
79
- <ToastClose />
80
- </Toast>
81
- );
82
-
83
- export const Error: StoryFn = () => (
84
- <Toast variant="destructive">
85
- <div className="al-flex al-items-center al-gap-2">
86
- <div className="al-h-6 al-w-6 al-text-red-500">✕</div>
87
- <ToastTitle>Error occurred</ToastTitle>
88
- </div>
89
- <ToastDescription>
90
- There was a problem with your request. Please try again.
91
- </ToastDescription>
92
- <ToastAction altText="Try again" onClick={() => {}}>
93
- Try again
94
- </ToastAction>
95
- <ToastClose />
96
- </Toast>
97
- );
98
-
99
- export const OnClick: StoryFn = () => (
100
- <Button
101
- variant="outline"
102
- onClick={() => {
103
- toast({
104
- title: "Uh oh! Something went wrong.",
105
- description: "There was a problem with your request.",
106
- });
107
- }}
108
- >
109
- Show Toast
110
- </Button>
111
- );
@@ -1,33 +0,0 @@
1
- import type { Meta, StoryObj } from "@storybook/react";
2
- import {
3
- Tooltip,
4
- TooltipContent,
5
- TooltipProvider,
6
- TooltipTrigger,
7
- } from "../shadcn";
8
-
9
- const meta: Meta<typeof Tooltip> = {
10
- title: "Shadcn/Components/Tooltip",
11
- component: Tooltip,
12
- decorators: [
13
- (Story) => (
14
- <TooltipProvider>
15
- <Story />
16
- </TooltipProvider>
17
- ),
18
- ],
19
- };
20
-
21
- export default meta;
22
- type Story = StoryObj<typeof Tooltip>;
23
-
24
- export const Default: Story = {
25
- render: () => (
26
- <Tooltip>
27
- <TooltipTrigger>Hover me</TooltipTrigger>
28
- <TooltipContent>
29
- <p>Tooltip content</p>
30
- </TooltipContent>
31
- </Tooltip>
32
- ),
33
- };
@@ -1,178 +0,0 @@
1
- import type { Meta, StoryObj } from "@storybook/react";
2
- import { Typography as Component } from "../shadcn";
3
-
4
- const meta = {
5
- title: "Shadcn/Theme/Typography",
6
- component: Component,
7
- parameters: {
8
- layout: "centered",
9
- },
10
- } satisfies Meta<typeof Component>;
11
-
12
- export default meta;
13
- type Story = StoryObj<typeof meta>;
14
-
15
- export const Typography: Story = {
16
- args: {
17
- variant: "h1",
18
- weight: "regular",
19
- size: "md",
20
- children: "Heading 1",
21
- },
22
- render: () => (
23
- <div className="space-y-8">
24
- {/* Heading 1 Variations */}
25
- <div className="al-border al-flex al-justify-between al-p-4 al-my-2">
26
- <Component variant="h1" weight="regular">
27
- Heading 1
28
- <br /> Regular
29
- </Component>
30
- <Component variant="h1" weight="medium">
31
- Heading 1 <br />
32
- Medium
33
- </Component>
34
- <Component variant="h1" weight="semibold">
35
- Heading 1 <br />
36
- Semibold
37
- </Component>
38
- <Component variant="h1" weight="bold">
39
- Heading 1 <br />
40
- Bold
41
- </Component>
42
- <Component variant="caption" className="al-text-gray-500">
43
- 48px / Line height: 60px
44
- </Component>
45
- </div>
46
-
47
- {/* Heading 2 Variations */}
48
- <div className="al-border al-flex al-justify-between al-p-4 al-my-2">
49
- <Component variant="h2" weight="regular">
50
- Heading 2 <br />
51
- Regular
52
- </Component>
53
- <Component variant="h2" weight="medium">
54
- Heading 2 <br />
55
- Medium
56
- </Component>
57
- <Component variant="h2" weight="semibold">
58
- Heading 2 <br />
59
- Semibold
60
- </Component>
61
- <Component variant="h2" weight="bold">
62
- Heading 2 <br />
63
- Bold
64
- </Component>
65
- <Component variant="caption" className="al-text-gray-500">
66
- 36px / Line height: 44px
67
- </Component>
68
- </div>
69
-
70
- {/* Heading 3 Variations */}
71
- <div className="al-border al-flex al-justify-between al-p-4 al-my-2">
72
- <Component variant="h3" weight="regular">
73
- Heading 3 <br />
74
- Regular
75
- </Component>
76
- <Component variant="h3" weight="medium">
77
- Heading 3 <br />
78
- Medium
79
- </Component>
80
- <Component variant="h3" weight="semibold">
81
- Heading 3 <br />
82
- Semibold
83
- </Component>
84
- <Component variant="h3" weight="bold">
85
- Heading 3 <br />
86
- Bold
87
- </Component>
88
- <Component variant="caption" className="al-text-gray-500">
89
- 30px / Line height: 38px
90
- </Component>
91
- </div>
92
-
93
- {/* Heading 4 Variations */}
94
- <div className="al-border al-flex al-justify-between al-p-4 al-my-2">
95
- <Component variant="h4" weight="regular">
96
- Heading 4 <br />
97
- Regular
98
- </Component>
99
- <Component variant="h4" weight="medium">
100
- Heading 4 <br />
101
- Medium
102
- </Component>
103
- <Component variant="h4" weight="semibold">
104
- Heading 4 <br />
105
- Semibold
106
- </Component>
107
- <Component variant="h4" weight="bold">
108
- Heading 4 <br />
109
- Bold
110
- </Component>
111
- <Component variant="caption" className="al-text-gray-500">
112
- 24px / Line height: 32px
113
- </Component>
114
- </div>
115
-
116
- {/* Subheading Variations */}
117
- <div className="al-border al-flex al-justify-between al-p-4 al-my-2">
118
- <Component variant="subheading" weight="regular">
119
- Sub heading <br />
120
- Regular
121
- </Component>
122
- <Component variant="subheading" weight="medium">
123
- Sub heading <br />
124
- Medium
125
- </Component>
126
- <Component variant="subheading" weight="semibold">
127
- Sub heading <br />
128
- Semibold
129
- </Component>
130
- <Component variant="subheading" weight="bold">
131
- Sub heading <br />
132
- Bold
133
- </Component>
134
- <Component variant="caption" className="al-text-gray-500">
135
- 20px / Line height: 30px
136
- </Component>
137
- </div>
138
-
139
- {/* Body/Paragraph Example */}
140
- <div className="al-border al-flex al-justify-between al-p-4 al-my-2">
141
- <Component variant="body" size="sm">
142
- Body SM <br /> Regular
143
- </Component>
144
- <Component variant="body" size="md">
145
- Body MD <br /> Regular
146
- </Component>
147
- <Component variant="body" size="lg">
148
- Body LG <br /> Regular
149
- </Component>
150
- <Component variant="body" size="xl">
151
- Body XL <br /> Regular
152
- </Component>
153
- <Component variant="caption" className="al-text-gray-500">
154
- 20px, 16px, 14px, 12px | Line height: 30px, 24px, 20px, 18px
155
- </Component>
156
- </div>
157
-
158
- {/* Caption Example */}
159
- <div className="al-border al-flex al-justify-between al-p-4 al-my-2">
160
- <Component variant="caption" size="sm">
161
- Caption SM <br /> Regular
162
- </Component>
163
- <Component variant="caption" weight="medium" size="sm">
164
- Caption SM <br /> Medium
165
- </Component>
166
- <Component variant="caption" weight="medium" size="md">
167
- Caption MD <br /> Medium
168
- </Component>
169
- <Component variant="caption" weight="medium" size="lg">
170
- Caption LG <br /> Medium
171
- </Component>
172
- <Component variant="caption" className="al-text-gray-500">
173
- 12px, 14px, 16px | Line height: 24px, 20px, 18px
174
- </Component>
175
- </div>
176
- </div>
177
- ),
178
- };
@@ -1,99 +0,0 @@
1
- import { Dispatch, ComponentType } from 'react';
2
- import { UnknownAction } from '@reduxjs/toolkit';
3
- import { z } from 'zod';
4
-
5
- interface TeamMateState {
6
- showCoachingForm: boolean;
7
- }
8
- interface TeamMateContextProps {
9
- state: TeamMateState;
10
- dispatch: Dispatch<UnknownAction>;
11
- }
12
- interface CoachAiResponse {
13
- ai_response: string;
14
- category: string;
15
- personalizationScope: string;
16
- }
17
- interface CoachAiConfirmationResponse {
18
- ok: boolean;
19
- train_doc_uid: string;
20
- frontend_url: string;
21
- }
22
- declare enum ContentCategory {
23
- TERM_CLARIFICATION = "TermClarification",
24
- GENERAL_GUIDELINES = "GeneralGuidelines",
25
- BUSINESS_EXPLANATION = "BusinessExplanation"
26
- }
27
- declare enum TaskLabels {
28
- DocGen = "DocGen",
29
- ChartBot = "ChartBot",
30
- SqlBot = "SqlExpert",
31
- OpportunitiesBot = "OpportunitiesBot",
32
- ProjectGovernor = "ProjectGovernor",
33
- TeradataToSnowflakeMigrator = "TeradataToSnowflakeMigrator"
34
- }
35
- declare enum PersonalizationScope {
36
- USER_SPECIFIC = "UserSpecific",
37
- ALL_USERS = "AllUsers"
38
- }
39
- declare const learningSchema: z.ZodObject<{
40
- train_doc_uid: z.ZodString;
41
- userId: z.ZodString;
42
- display_name: z.ZodString;
43
- taskLabel: z.ZodString;
44
- category: z.ZodEnum<[string, ...string[]]>;
45
- personalizationScope: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
46
- createdDate: z.ZodString;
47
- updatedDate: z.ZodString;
48
- content: z.ZodString;
49
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
50
- isActive: z.ZodDefault<z.ZodBoolean>;
51
- }, "strip", z.ZodTypeAny, {
52
- content: string;
53
- display_name: string;
54
- userId: string;
55
- train_doc_uid: string;
56
- taskLabel: string;
57
- category: string;
58
- personalizationScope: string;
59
- createdDate: string;
60
- updatedDate: string;
61
- isActive: boolean;
62
- metadata?: Record<string, unknown> | undefined;
63
- }, {
64
- content: string;
65
- display_name: string;
66
- userId: string;
67
- train_doc_uid: string;
68
- taskLabel: string;
69
- category: string;
70
- createdDate: string;
71
- updatedDate: string;
72
- metadata?: Record<string, unknown> | undefined;
73
- personalizationScope?: string | undefined;
74
- isActive?: boolean | undefined;
75
- }>;
76
- interface Learning extends z.infer<typeof learningSchema> {
77
- }
78
- declare enum TeamMateAvailability {
79
- EXTENSION = "VSCode Extension",
80
- SAAS = "SaaS"
81
- }
82
- interface TeamMateConfig {
83
- name: string;
84
- avatar: string;
85
- description: string;
86
- availability: TeamMateAvailability[];
87
- key: TaskLabels;
88
- seeInAction?: boolean;
89
- comingSoon?: boolean | (() => boolean);
90
- displayComponent?: ComponentType<any>;
91
- formComponent?: ComponentType<any>;
92
- }
93
- declare enum TeamMateActionType {
94
- SEE_IN_ACTION = "SEE_IN_ACTION",
95
- REQUEST_ACCESS = "REQUEST_ACCESS",
96
- VIEW_DETAILS = "VIEW_DETAILS"
97
- }
98
-
99
- export { type CoachAiResponse as C, type Learning as L, PersonalizationScope as P, TaskLabels as T, type TeamMateContextProps as a, type TeamMateState as b, type TeamMateConfig as c, TeamMateActionType as d, TeamMateAvailability as e, type CoachAiConfirmationResponse as f, ContentCategory as g, learningSchema as l };
File without changes