@copilotz/chat-ui 0.6.2 → 0.6.4

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/styles.css CHANGED
@@ -1070,6 +1070,9 @@
1070
1070
  .\!inline {
1071
1071
  display: inline !important;
1072
1072
  }
1073
+ .block {
1074
+ display: block;
1075
+ }
1073
1076
  .flex {
1074
1077
  display: flex;
1075
1078
  }
@@ -1472,6 +1475,9 @@
1472
1475
  .grid-cols-4 {
1473
1476
  grid-template-columns: repeat(4, minmax(0, 1fr));
1474
1477
  }
1478
+ .grid-cols-\[minmax\(0\,1fr\)_auto\] {
1479
+ grid-template-columns: minmax(0,1fr) auto;
1480
+ }
1475
1481
  .grid-rows-\[auto_auto\] {
1476
1482
  grid-template-rows: auto auto;
1477
1483
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@copilotz/chat-ui",
3
- "version": "0.6.2",
3
+ "version": "0.6.4",
4
4
  "description": "Copilotz chat UI components",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",