@touchvue/chat 1.0.0-beta.21 → 1.0.0-beta.23
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/es/package.json.mjs +1 -1
- package/es/packages/components/touchchat/component/AiRobot/face.vue2.mjs +5 -4
- package/es/packages/components/touchchat/component/AiRobot/face.vue2.mjs.map +1 -1
- package/es/packages/components/touchchat/component/AiRobot/meterialPrepare.vue2.mjs +3 -4
- package/es/packages/components/touchchat/component/AiRobot/meterialPrepare.vue2.mjs.map +1 -1
- package/es/packages/components/touchchat/component/AiRobot/start.vue2.mjs +16 -9
- package/es/packages/components/touchchat/component/AiRobot/start.vue2.mjs.map +1 -1
- package/es/packages/components/touchchat/src/AiChat/ChatInput.vue2.mjs +1 -1
- package/es/packages/components/touchchat/src/AiChat/ChatInput.vue2.mjs.map +1 -1
- package/es/packages/components/touchchat/src/AiChat/TouchChat.vue2.mjs +9 -11
- package/es/packages/components/touchchat/src/AiChat/TouchChat.vue2.mjs.map +1 -1
- package/es/packages/components/touchchat/utils/markdown.mjs +1 -1
- package/es/packages/components/touchchat/utils/markdown.mjs.map +1 -1
- package/lib/package.json.js +1 -1
- package/lib/packages/components/touchchat/component/AiRobot/face.vue2.js +5 -4
- package/lib/packages/components/touchchat/component/AiRobot/face.vue2.js.map +1 -1
- package/lib/packages/components/touchchat/component/AiRobot/meterialPrepare.vue2.js +3 -4
- package/lib/packages/components/touchchat/component/AiRobot/meterialPrepare.vue2.js.map +1 -1
- package/lib/packages/components/touchchat/component/AiRobot/start.vue2.js +15 -8
- package/lib/packages/components/touchchat/component/AiRobot/start.vue2.js.map +1 -1
- package/lib/packages/components/touchchat/src/AiChat/ChatInput.vue2.js +1 -1
- package/lib/packages/components/touchchat/src/AiChat/ChatInput.vue2.js.map +1 -1
- package/lib/packages/components/touchchat/src/AiChat/TouchChat.vue2.js +9 -11
- package/lib/packages/components/touchchat/src/AiChat/TouchChat.vue2.js.map +1 -1
- package/lib/packages/components/touchchat/utils/markdown.js +1 -1
- package/lib/packages/components/touchchat/utils/markdown.js.map +1 -1
- package/package.json +1 -1
- package/theme/components/index.css +6 -6
- package/theme/index.css +6 -6
- package/theme/skin/default.css +6 -6
package/theme/index.css
CHANGED
|
@@ -762,27 +762,27 @@
|
|
|
762
762
|
flex-direction: column;
|
|
763
763
|
gap: 1em;
|
|
764
764
|
}
|
|
765
|
-
table {
|
|
765
|
+
table.touchchat-table {
|
|
766
766
|
width: 100%;
|
|
767
767
|
border-collapse: separate;
|
|
768
768
|
margin: 1em 0;
|
|
769
769
|
font-size: 0.9em;
|
|
770
770
|
}
|
|
771
|
-
table th,
|
|
772
|
-
table td {
|
|
771
|
+
table.touchchat-table th,
|
|
772
|
+
table.touchchat-table td {
|
|
773
773
|
padding: 0.75em 1em;
|
|
774
774
|
border: 1px solid #ddd;
|
|
775
775
|
text-align: left;
|
|
776
776
|
vertical-align: top;
|
|
777
777
|
}
|
|
778
|
-
table th {
|
|
778
|
+
table.touchchat-table th {
|
|
779
779
|
background-color: #f5f5f5;
|
|
780
780
|
font-weight: bold;
|
|
781
781
|
}
|
|
782
|
-
table tr:nth-child(even) {
|
|
782
|
+
table.touchchat-table tr:nth-child(even) {
|
|
783
783
|
background-color: #f9f9f9;
|
|
784
784
|
}
|
|
785
|
-
table tr:hover {
|
|
785
|
+
table.touchchat-table tr:hover {
|
|
786
786
|
background-color: #f1f1f1;
|
|
787
787
|
}
|
|
788
788
|
.delete-dialog-overlay {
|
package/theme/skin/default.css
CHANGED
|
@@ -762,27 +762,27 @@
|
|
|
762
762
|
flex-direction: column;
|
|
763
763
|
gap: 1em;
|
|
764
764
|
}
|
|
765
|
-
table {
|
|
765
|
+
table.touchchat-table {
|
|
766
766
|
width: 100%;
|
|
767
767
|
border-collapse: separate;
|
|
768
768
|
margin: 1em 0;
|
|
769
769
|
font-size: 0.9em;
|
|
770
770
|
}
|
|
771
|
-
table th,
|
|
772
|
-
table td {
|
|
771
|
+
table.touchchat-table th,
|
|
772
|
+
table.touchchat-table td {
|
|
773
773
|
padding: 0.75em 1em;
|
|
774
774
|
border: 1px solid #ddd;
|
|
775
775
|
text-align: left;
|
|
776
776
|
vertical-align: top;
|
|
777
777
|
}
|
|
778
|
-
table th {
|
|
778
|
+
table.touchchat-table th {
|
|
779
779
|
background-color: #f5f5f5;
|
|
780
780
|
font-weight: bold;
|
|
781
781
|
}
|
|
782
|
-
table tr:nth-child(even) {
|
|
782
|
+
table.touchchat-table tr:nth-child(even) {
|
|
783
783
|
background-color: #f9f9f9;
|
|
784
784
|
}
|
|
785
|
-
table tr:hover {
|
|
785
|
+
table.touchchat-table tr:hover {
|
|
786
786
|
background-color: #f1f1f1;
|
|
787
787
|
}
|
|
788
788
|
.delete-dialog-overlay {
|