@altimateai/ui-components 0.0.80 → 0.0.81
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/131.js.map +1 -1
- package/dist/315.js +46633 -0
- package/dist/315.js.LICENSE.txt +73 -0
- package/dist/chatbotV2.css +20 -0
- package/dist/components/chatbotV2/components/modeSelector/ModeSelector.d.ts +2 -0
- package/dist/components/chatbotV2/components/modeSelector/ModeSelector.d.ts.map +1 -0
- package/dist/components/chatbotV2/store/chatSlice.d.ts +1 -1
- package/dist/components/chatbotV2/store/chatSlice.d.ts.map +1 -1
- package/dist/components/chatbotV2/store/index.d.ts +3 -3
- package/dist/components/chatbotV2/store/index.d.ts.map +1 -1
- package/dist/components/lineage/graph.d.ts.map +1 -1
- package/dist/dbtDocs.css.map +1 -1
- package/dist/lineage.css.map +1 -1
- package/dist/lineage.js.map +1 -1
- package/dist/static/svg/robot2.svg +179 -0
- package/dist/static/svg/user.svg +4 -0
- package/dist/styles.css.map +1 -1
- package/dist/teammate.css.map +1 -1
- package/dist/user.css.map +1 -1
- package/package.json +10 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@altimateai/ui-components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.81",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"module": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -9,31 +9,37 @@
|
|
|
9
9
|
],
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
|
+
"source": "./src/index.ts",
|
|
12
13
|
"types": "./dist/index.d.ts",
|
|
13
14
|
"import": "./dist/index.js",
|
|
14
15
|
"default": "./dist/index.js"
|
|
15
16
|
},
|
|
16
17
|
"./chatbotV2": {
|
|
18
|
+
"source": "./src/components/chatbotV2/index.ts",
|
|
17
19
|
"types": "./dist/components/chatbotV2/index.d.ts",
|
|
18
20
|
"import": "./dist/chatbotV2.js",
|
|
19
21
|
"default": "./dist/chatbotV2.js"
|
|
20
22
|
},
|
|
21
23
|
"./lineage": {
|
|
24
|
+
"source": "./src/components/lineage/index.ts",
|
|
22
25
|
"types": "./dist/components/lineage/index.d.ts",
|
|
23
26
|
"import": "./dist/lineage.js",
|
|
24
27
|
"default": "./dist/lineage.js"
|
|
25
28
|
},
|
|
26
29
|
"./dbtDocs": {
|
|
30
|
+
"source": "./src/components/dbtDocs/index.ts",
|
|
27
31
|
"types": "./dist/components/dbtDocs/index.d.ts",
|
|
28
32
|
"import": "./dist/dbtDocs.js",
|
|
29
33
|
"default": "./dist/dbtDocs.js"
|
|
30
34
|
},
|
|
31
35
|
"./teammate": {
|
|
36
|
+
"source": "./src/components/teammate/index.ts",
|
|
32
37
|
"types": "./dist/components/teammate/index.d.ts",
|
|
33
38
|
"import": "./dist/teammate.js",
|
|
34
39
|
"default": "./dist/teammate.js"
|
|
35
40
|
},
|
|
36
41
|
"./user": {
|
|
42
|
+
"source": "./src/components/user/index.ts",
|
|
37
43
|
"types": "./dist/components/user/index.d.ts",
|
|
38
44
|
"import": "./dist/user.js",
|
|
39
45
|
"default": "./dist/user.js"
|
|
@@ -44,6 +50,7 @@
|
|
|
44
50
|
"build": "rslib build",
|
|
45
51
|
"dev": "rslib build --watch",
|
|
46
52
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives",
|
|
53
|
+
"lint:baseline": "bash ../../scripts/check-eslint-baseline.sh",
|
|
47
54
|
"typecheck": "tsc --noEmit",
|
|
48
55
|
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
|
|
49
56
|
"test:ci": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --coverage --silent --runInBand",
|
|
@@ -105,33 +112,12 @@
|
|
|
105
112
|
"zod": "^3.25.76"
|
|
106
113
|
},
|
|
107
114
|
"devDependencies": {
|
|
108
|
-
"@faker-js/faker": "^8.4.1",
|
|
109
115
|
"@rsbuild/plugin-react": "^1.4.5",
|
|
110
116
|
"@rsbuild/plugin-sass": "^1.5.0",
|
|
111
117
|
"@rsbuild/plugin-svgr": "^1.3.0",
|
|
112
118
|
"@rslib/core": "^0.19.4",
|
|
113
|
-
"@testing-library/dom": "^10.1.0",
|
|
114
|
-
"@testing-library/jest-dom": "^6.4.6",
|
|
115
|
-
"@testing-library/react": "^16.0.0",
|
|
116
|
-
"@testing-library/user-event": "^14.6.1",
|
|
117
|
-
"@types/jest": "^29.5.14",
|
|
118
|
-
"@types/plotly.js": "^2",
|
|
119
119
|
"@types/prismjs": "^1.26.4",
|
|
120
|
-
"@types/react": "^18.3.3",
|
|
121
|
-
"@types/react-dom": "^18.3.0",
|
|
122
120
|
"@types/react-mentions": "^4",
|
|
123
|
-
"@types/react-plotly.js": "^2"
|
|
124
|
-
"@types/react-syntax-highlighter": "^15",
|
|
125
|
-
"autoprefixer": "^10.4.20",
|
|
126
|
-
"identity-obj-proxy": "^3.0.0",
|
|
127
|
-
"jest": "^29.7.0",
|
|
128
|
-
"jest-environment-jsdom": "^29.7.0",
|
|
129
|
-
"jest-fixed-jsdom": "^0.0.9",
|
|
130
|
-
"msw": "2.6.2",
|
|
131
|
-
"postcss": "^8.5.1",
|
|
132
|
-
"sass": "^1.72.0",
|
|
133
|
-
"tailwindcss": "^3.4.17",
|
|
134
|
-
"ts-jest": "^29.1.4",
|
|
135
|
-
"typescript": "^5.6.3"
|
|
121
|
+
"@types/react-plotly.js": "^2"
|
|
136
122
|
}
|
|
137
|
-
}
|
|
123
|
+
}
|