@copilotkit/react-ui 1.2.0 → 1.2.1
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/CHANGELOG.md +19 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# ui
|
|
2
2
|
|
|
3
|
+
## 1.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- inject minified css in bundle
|
|
8
|
+
|
|
9
|
+
- removes the need to import `styles.css` manually
|
|
10
|
+
- empty `styles.css` included in the build for backwards compatibility
|
|
11
|
+
- uses tsup's `injectStyles` with `postcss` to bundle and minify the CSS, then inject it as a style tag
|
|
12
|
+
- currently uses my fork of `tsup` where I added support for async function in `injectStyles` (must-have for postcss), a PR from my fork to the main library will follow shortly
|
|
13
|
+
- remove material-ui, and use `react-icons` for icons (same icons as before)
|
|
14
|
+
- remove unused `IncludedFilesPreview` component
|
|
15
|
+
- updated docs
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @copilotkit/react-core@1.2.1
|
|
19
|
+
- @copilotkit/runtime-client-gql@1.2.1
|
|
20
|
+
- @copilotkit/shared@1.2.1
|
|
21
|
+
|
|
3
22
|
## 1.2.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
|
-
"version": "1.2.
|
|
12
|
+
"version": "1.2.1",
|
|
13
13
|
"sideEffects": [
|
|
14
14
|
"**/*.css"
|
|
15
15
|
],
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
"ts-jest": "^29.1.1",
|
|
49
49
|
"tsup-async-inject-style": "0.0.2",
|
|
50
50
|
"typescript": "^5.5.4",
|
|
51
|
-
"eslint-config-custom": "1.2.
|
|
52
|
-
"tailwind-config": "1.2.
|
|
53
|
-
"tsconfig": "1.2.
|
|
51
|
+
"eslint-config-custom": "1.2.1",
|
|
52
|
+
"tailwind-config": "1.2.1",
|
|
53
|
+
"tsconfig": "1.2.1"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@headlessui/react": "^2.1.3",
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
"react-syntax-highlighter": "^15.5.0",
|
|
59
59
|
"remark-gfm": "^3.0.1",
|
|
60
60
|
"remark-math": "^5.1.1",
|
|
61
|
-
"@copilotkit/react-core": "1.2.
|
|
62
|
-
"@copilotkit/runtime-client-gql": "1.2.
|
|
63
|
-
"@copilotkit/shared": "1.2.
|
|
61
|
+
"@copilotkit/react-core": "1.2.1",
|
|
62
|
+
"@copilotkit/runtime-client-gql": "1.2.1",
|
|
63
|
+
"@copilotkit/shared": "1.2.1"
|
|
64
64
|
},
|
|
65
65
|
"keywords": [
|
|
66
66
|
"copilotkit",
|