@altimateai/ui-components 0.0.1-beta.3 → 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 (55) hide show
  1. package/dist/Accordion.js +43 -114
  2. package/dist/Badge.js +1 -1
  3. package/dist/CoachForm.js +7112 -7241
  4. package/dist/DbtDocsRenderer.js +833 -2651
  5. package/dist/Tooltip.js +115 -0
  6. package/dist/chatbot/index.js +100 -96
  7. package/dist/flowchart-elk-definition-170a3958.js +1 -1
  8. package/dist/index.js +1 -1
  9. package/dist/index2.js +1 -5
  10. package/dist/lineage/index.js +2284 -2710
  11. package/dist/main.js +49 -184
  12. package/dist/mindmap-definition-44684416.js +1 -1
  13. package/dist/redux-toolkit.modern.js +1 -1
  14. package/dist/shadcn/index.js +352 -382
  15. package/dist/v4.js +524 -514
  16. package/package.json +2 -2
  17. package/dist/Stack.js +0 -132
  18. package/dist/assets/icons/index.d.ts +0 -96
  19. package/dist/chatbot/index.d.ts +0 -39
  20. package/dist/chatbotV2/index.d.ts +0 -176
  21. package/dist/index.d.ts +0 -217
  22. package/dist/lineage/index.d.ts +0 -183
  23. package/dist/shadcn/index.d.ts +0 -517
  24. package/dist/storybook/Accordion.stories.tsx +0 -61
  25. package/dist/storybook/Alert.stories.tsx +0 -65
  26. package/dist/storybook/AlertDialog.stories.tsx +0 -166
  27. package/dist/storybook/Avatar.stories.tsx +0 -58
  28. package/dist/storybook/Badge.stories.tsx +0 -36
  29. package/dist/storybook/Button.stories.tsx +0 -129
  30. package/dist/storybook/Card.stories.tsx +0 -76
  31. package/dist/storybook/Checkbox.stories.tsx +0 -74
  32. package/dist/storybook/Command.stories.tsx +0 -35
  33. package/dist/storybook/DropdownMenu.stories.tsx +0 -36
  34. package/dist/storybook/Form.stories.tsx +0 -120
  35. package/dist/storybook/HoverCard.stories.tsx +0 -105
  36. package/dist/storybook/Input.stories.tsx +0 -53
  37. package/dist/storybook/Label.stories.tsx +0 -42
  38. package/dist/storybook/Menubar.stories.tsx +0 -159
  39. package/dist/storybook/Pagination.stories.tsx +0 -155
  40. package/dist/storybook/Popover.stories.tsx +0 -25
  41. package/dist/storybook/Progress.stories.tsx +0 -89
  42. package/dist/storybook/RadioGroup.stories.tsx +0 -61
  43. package/dist/storybook/Resizable.stories.tsx +0 -119
  44. package/dist/storybook/ScrollArea.stories.tsx +0 -120
  45. package/dist/storybook/Select.stories.tsx +0 -95
  46. package/dist/storybook/Sheet.stories.tsx +0 -75
  47. package/dist/storybook/Sidebar.stories.tsx +0 -97
  48. package/dist/storybook/Slider.stories.tsx +0 -81
  49. package/dist/storybook/Switch.stories.tsx +0 -99
  50. package/dist/storybook/Textarea.stories.tsx +0 -50
  51. package/dist/storybook/Toast.stories.tsx +0 -111
  52. package/dist/storybook/Tooltip.stories.tsx +0 -33
  53. package/dist/storybook/Typography.stories.tsx +0 -178
  54. package/dist/types-PVxbm0tZ.d.ts +0 -99
  55. /package/dist/{Stack.css → v4.css} +0 -0
@@ -1,183 +0,0 @@
1
- import * as React$1 from 'react';
2
-
3
- declare const VIEWS_TYPE_COLOR: {
4
- Original: string;
5
- Alias: string;
6
- Transformation: string;
7
- Unchanged: string;
8
- "Not sure": string;
9
- "Non select": string;
10
- };
11
- type ViewsTypes = keyof typeof VIEWS_TYPE_COLOR;
12
-
13
- interface Table {
14
- table: string;
15
- label: string;
16
- url?: string;
17
- nodeType: string;
18
- materialization?: string;
19
- downstreamCount: number;
20
- upstreamCount: number;
21
- isExternalProject: boolean;
22
- tests: {
23
- key: string;
24
- path: string;
25
- }[];
26
- schema?: string;
27
- meta?: Map<any, any>;
28
- }
29
- interface Column {
30
- name: string;
31
- table: string;
32
- datatype?: string;
33
- can_lineage_expand: boolean;
34
- description: string;
35
- meta?: Map<any, any>;
36
- }
37
- interface Columns {
38
- id: string;
39
- purpose: string;
40
- columns: Column[];
41
- }
42
- interface ColumnLineage {
43
- source: [string, string];
44
- target: [string, string];
45
- type: string;
46
- viewsType?: ViewsTypes;
47
- viewsCode?: [string, string][];
48
- }
49
- interface ExposureMetaData {
50
- description?: string;
51
- depends_on: {
52
- macros: [string];
53
- nodes: [string];
54
- sources: [string];
55
- };
56
- label?: string;
57
- maturity?: string;
58
- name: string;
59
- owner: {
60
- email: string;
61
- name: string;
62
- };
63
- tags: [string];
64
- url?: string;
65
- type: string;
66
- config: {
67
- enabled: boolean;
68
- };
69
- path: string;
70
- unique_id: string;
71
- sources?: [string];
72
- metrics?: unknown[];
73
- meta?: Record<string, unknown>;
74
- }
75
- interface ViewsCodeModalArgs {
76
- table: string;
77
- column: string;
78
- viewsType: ViewsTypes;
79
- viewsCode: Record<string, [string, string][]>;
80
- nodeType: string;
81
- }
82
- interface OpNodeArgs {
83
- op_type: string;
84
- op_code: string;
85
- }
86
- interface ModalArgs {
87
- type: "none" | "views_code" | "op_node";
88
- args?: ViewsCodeModalArgs | OpNodeArgs;
89
- }
90
- interface SelectedColumn {
91
- name: string;
92
- table: string;
93
- }
94
- interface Confidence {
95
- confidence: string;
96
- operator_list?: string[];
97
- }
98
- type Details = Record<string, {
99
- columns?: {
100
- name: string;
101
- datatype?: string;
102
- expression?: string;
103
- }[];
104
- sql?: string;
105
- nodeType?: string;
106
- nodeId?: string;
107
- name?: string;
108
- type: string;
109
- purpose?: string;
110
- }>;
111
- type StaticLineageDetails = Record<string, {
112
- columns?: {
113
- name: string;
114
- expression?: string;
115
- datatype?: string;
116
- }[];
117
- name?: string;
118
- sql?: string;
119
- type: string;
120
- nodeId?: string;
121
- node_id?: string;
122
- nodeType?: string;
123
- expression?: string;
124
- join_type?: string;
125
- }>;
126
- interface CollectColumn {
127
- column: string;
128
- viewsType?: ViewsTypes;
129
- }
130
- interface StaticLineage {
131
- selectedColumn: {
132
- table: string;
133
- name: string;
134
- };
135
- collectColumns: Record<string, CollectColumn[]>;
136
- columnEdges?: [string, string, string][];
137
- tableEdges: [string, string][];
138
- details: Details;
139
- }
140
-
141
- type LineageType = "static" | "dynamic" | "sql";
142
- interface SqlLineage {
143
- tableEdges: [string, string][];
144
- details: StaticLineageDetails;
145
- errorMessage?: undefined;
146
- nodePositions?: Record<string, [number, number]>;
147
- }
148
-
149
- interface LineageProviderProps {
150
- dynamicLineage?: {
151
- node?: Table;
152
- aiEnabled: boolean;
153
- };
154
- sqlLineage?: SqlLineage;
155
- staticLineage?: StaticLineage;
156
- theme: "dark" | "light";
157
- lineageType: LineageType;
158
- allowSyncColumnsWithDB?: boolean;
159
- externalSidePanel?: boolean;
160
- }
161
- interface LineageRef {
162
- rerender: () => void;
163
- }
164
- declare const _default: React$1.ForwardRefExoticComponent<LineageProviderProps & React$1.RefAttributes<LineageRef>>;
165
-
166
- declare enum CllEvents {
167
- CANCEL = "cancel",
168
- END = "end",
169
- START = "start"
170
- }
171
- declare class CLL {
172
- static isCancelled: boolean;
173
- static inProgress: boolean;
174
- static linkCount: number;
175
- static onCancel(): void;
176
- static cancel(): void;
177
- static start(): void;
178
- static end(): void;
179
- static addLinks(n: number): void;
180
- static showCllInProgressMsg(): void;
181
- }
182
-
183
- export { CLL, CllEvents, type CollectColumn, type Column, type ColumnLineage, type Columns, type Confidence, type Details, type ExposureMetaData, _default as Lineage, type LineageRef, type ModalArgs, type OpNodeArgs, type SelectedColumn, type StaticLineage, type StaticLineageDetails, type Table, type ViewsCodeModalArgs };