qt-ui-kit 1.0.15 → 1.0.16

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/style.css CHANGED
@@ -225,6 +225,12 @@
225
225
  -webkit-box-orient: vertical;
226
226
  -webkit-line-clamp: 3;
227
227
  }
228
+ .line-clamp-6 {
229
+ overflow: hidden;
230
+ display: -webkit-box;
231
+ -webkit-box-orient: vertical;
232
+ -webkit-line-clamp: 6;
233
+ }
228
234
  .line-clamp-none {
229
235
  overflow: visible;
230
236
  display: block;
@@ -496,6 +502,9 @@
496
502
  .border-qtred-400 {
497
503
  border-color: var(--color-qtred-400);
498
504
  }
505
+ .border-transparent {
506
+ border-color: transparent;
507
+ }
499
508
  .bg-gray-100 {
500
509
  background-color: var(--color-gray-100);
501
510
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qt-ui-kit",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "Reusable component library with Tailwind v4 and custom CSS",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",