bunnyquery 1.8.12 → 1.8.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bunnyquery",
3
- "version": "1.8.12",
3
+ "version": "1.8.13",
4
4
  "description": "Embeddable BunnyQuery AI chat widget + its framework-agnostic chat engine",
5
5
  "main": "bunnyquery.js",
6
6
  "exports": {
package/src/widget.css CHANGED
@@ -1013,6 +1013,15 @@
1013
1013
  .bq-input-row { flex-direction: column; padding: 0.65rem 0.75rem 0.75rem; }
1014
1014
  .bq-input-wrap { width: 100%; flex: 0 0 auto; }
1015
1015
  .bq-input-row .btn { width: 100%; }
1016
+ /* `flex-basis: 100%` on these two means FULL WIDTH only while the row is a
1017
+ row. The line above flips it to a column, where the main axis is vertical
1018
+ and the same declaration claims the container's full HEIGHT: the chips
1019
+ then fill the column, and since the row still wraps, the input and Send
1020
+ wrap into a SECOND COLUMN, off to the right of the screen. That is the
1021
+ attachment bug, and it is why it never appeared on the dashboard, whose
1022
+ own mobile block already carries these two lines (agent.vue). */
1023
+ .bq-attachments { flex-basis: auto; width: 100%; }
1024
+ .bq-attachment-warning { flex-basis: auto; width: 100%; }
1016
1025
  .bq-bubble { max-width: 100%; }
1017
1026
  .bq-page { padding: 2rem 1.25rem; }
1018
1027
  .bq-section-title { padding: 0.75rem; }