qt-ui-kit 1.0.4 → 1.0.6

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
@@ -446,10 +446,6 @@
446
446
  .rounded-bl-md {
447
447
  border-bottom-left-radius: var(--radius-md);
448
448
  }
449
- .border-0 {
450
- border-style: var(--tw-border-style);
451
- border-width: 0px;
452
- }
453
449
  .border-2 {
454
450
  border-style: var(--tw-border-style);
455
451
  border-width: 2px;
@@ -539,10 +535,6 @@
539
535
  .bg-white {
540
536
  background-color: var(--color-white);
541
537
  }
542
- .object-contain {
543
- -o-object-fit: contain;
544
- object-fit: contain;
545
- }
546
538
  .p-0 {
547
539
  padding: calc(var(--spacing) * 0);
548
540
  }
package/package.json CHANGED
@@ -1,56 +1,55 @@
1
1
  {
2
- "name": "qt-ui-kit",
3
- "version": "1.0.4",
4
- "main": "./dist/index.js",
5
- "module": "./dist/index.js",
6
- "types": "./dist/index.d.ts",
7
- "files": [
8
- "dist"
9
- ],
10
- "exports": {
11
- ".": {
12
- "import": "./dist/index.js",
13
- "require": "./dist/index.js",
14
- "types": "./dist/index.d.ts"
15
- },
16
- "./style.css": {
17
- "default": "./dist/style.css"
2
+ "name": "qt-ui-kit",
3
+ "version": "1.0.6",
4
+ "description": "Reusable component library with Tailwind v4 and custom CSS",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js",
11
+ "require": "./dist/index.js"
12
+ },
13
+ "./style.css": "./dist/style.css"
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "scripts": {
19
+ "dev": "npx ladle serve",
20
+ "build:css": "postcss src/index.css -o dist/style.css",
21
+ "build": "tsup",
22
+ "prepublishOnly": "npm run build && npm run build:css",
23
+ "test": "echo \"Error: no test specified\" && exit 1"
24
+ },
25
+ "keywords": [],
26
+ "author": "",
27
+ "license": "ISC",
28
+ "dependencies": {
29
+ "@tailwindcss/line-clamp": "^0.4.4",
30
+ "@tailwindcss/postcss": "^4.1.4",
31
+ "@tailwindcss/typography": "^0.5.16",
32
+ "clsx": "^2.1.1",
33
+ "react": "^19.1.0",
34
+ "react-dom": "^19.1.0",
35
+ "react-markdown": "^10.1.0",
36
+ "remark-gfm": "^4.0.1",
37
+ "tailwind-merge": "^3.2.0"
38
+ },
39
+ "devDependencies": {
40
+ "@ladle/react": "^5.0.2",
41
+ "@tailwindcss/forms": "^0.5.10",
42
+ "@types/node": "^22.14.1",
43
+ "@types/react": "^19.1.2",
44
+ "autoprefixer": "^10.4.21",
45
+ "date-fns": "^4.1.0",
46
+ "emoji-dictionary": "^1.0.12",
47
+ "postcss": "^8.5.4",
48
+ "postcss-cli": "^11.0.1",
49
+ "tailwindcss": "^4.1.8",
50
+ "typescript": "^5.8.3",
51
+ "vite-plugin-svgr": "^4.3.0",
52
+ "tsup": "^8.0.0",
53
+ "next": "^15.3.0"
18
54
  }
19
- },
20
- "scripts": {
21
- "test": "echo \"Error: no test specified\" && exit 1",
22
- "dev": "npx ladle serve",
23
- "build": "tsup src/index.ts --dts --format esm,cjs --out-dir dist && npm run build:css",
24
- "build:css": "postcss src/index.css -o dist/style.css"
25
- },
26
- "keywords": [],
27
- "author": "",
28
- "license": "ISC",
29
- "description": "",
30
- "dependencies": {
31
- "@tailwindcss/line-clamp": "^0.4.4",
32
- "@tailwindcss/postcss": "^4.1.4",
33
- "@tailwindcss/typography": "^0.5.16",
34
- "clsx": "^2.1.1",
35
- "next": "^15.3.0",
36
- "react": "^19.1.0",
37
- "react-dom": "^19.1.0",
38
- "react-markdown": "^10.1.0",
39
- "remark-gfm": "^4.0.1",
40
- "tailwind-merge": "^3.2.0"
41
- },
42
- "devDependencies": {
43
- "@ladle/react": "^5.0.2",
44
- "@types/node": "^22.14.1",
45
- "@types/react": "^19.1.2",
46
- "autoprefixer": "^10.4.21",
47
- "date-fns": "^4.1.0",
48
- "emoji-dictionary": "^1.0.12",
49
- "postcss": "^8.5.4",
50
- "postcss-cli": "^11.0.1",
51
- "tailwindcss": "^4.1.8",
52
- "tsup": "^8.5.0",
53
- "typescript": "^5.8.3",
54
- "vite-plugin-svgr": "^4.3.0"
55
- }
56
- }
55
+ }