qt-ui-kit 1.0.48 → 1.0.50

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
@@ -647,6 +647,12 @@
647
647
  .wrap-anywhere {
648
648
  overflow-wrap: anywhere;
649
649
  }
650
+ .break-all {
651
+ word-break: break-all;
652
+ }
653
+ .whitespace-pre-wrap {
654
+ white-space: pre-wrap;
655
+ }
650
656
  .text-gray-700 {
651
657
  color: var(--color-gray-700);
652
658
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qt-ui-kit",
3
- "version": "1.0.48",
3
+ "version": "1.0.50",
4
4
  "description": "Reusable component library with Tailwind v4 and custom CSS",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -30,6 +30,7 @@
30
30
  "@tailwindcss/postcss": "^4.1.4",
31
31
  "@tailwindcss/typography": "^0.5.16",
32
32
  "clsx": "^2.1.1",
33
+ "dompurify": "^3.2.6",
33
34
  "react": "^19.1.0",
34
35
  "react-dom": "^19.1.0",
35
36
  "react-markdown": "^10.1.0",
@@ -44,12 +45,12 @@
44
45
  "autoprefixer": "^10.4.21",
45
46
  "date-fns": "^4.1.0",
46
47
  "emoji-dictionary": "^1.0.12",
48
+ "next": "^15.3.0",
47
49
  "postcss": "^8.5.4",
48
50
  "postcss-cli": "^11.0.1",
49
51
  "tailwindcss": "^4.1.8",
50
- "typescript": "^5.8.3",
51
- "vite-plugin-svgr": "^4.3.0",
52
52
  "tsup": "^8.0.0",
53
- "next": "^15.3.0"
53
+ "typescript": "^5.8.3",
54
+ "vite-plugin-svgr": "^4.3.0"
54
55
  }
55
56
  }