@jupyter/chat 0.8.0 → 0.8.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/style/chat.css +10 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyter/chat",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "A package that provides UI components that can be used to create a chat in a Jupyterlab extension.",
5
5
  "keywords": [
6
6
  "jupyter",
package/style/chat.css CHANGED
@@ -130,3 +130,13 @@
130
130
  .jp-chat-attachment .jp-chat-attachment-clickable:hover {
131
131
  cursor: pointer;
132
132
  }
133
+
134
+ .jp-chat-command-name {
135
+ font-weight: normal;
136
+ margin: 5px;
137
+ }
138
+
139
+ .jp-chat-command-description {
140
+ color: gray;
141
+ margin: 5px;
142
+ }