qt-ui-kit 1.0.111 → 1.0.113

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
@@ -229,12 +229,18 @@
229
229
  .top-1\/2 {
230
230
  top: calc(1/2 * 100%);
231
231
  }
232
+ .top-\[2px\] {
233
+ top: 2px;
234
+ }
232
235
  .top-\[140\%\] {
233
236
  top: 140%;
234
237
  }
235
238
  .right-\[-6px\] {
236
239
  right: -6px;
237
240
  }
241
+ .right-\[-7px\] {
242
+ right: -7px;
243
+ }
238
244
  .right-\[56\%\] {
239
245
  right: 56%;
240
246
  }
@@ -256,6 +262,9 @@
256
262
  .z-10 {
257
263
  z-index: 10;
258
264
  }
265
+ .z-999 {
266
+ z-index: 999;
267
+ }
259
268
  .col-span-2 {
260
269
  grid-column: span 2 / span 2;
261
270
  }
@@ -298,6 +307,9 @@
298
307
  -webkit-box-orient: horizontal;
299
308
  -webkit-line-clamp: unset;
300
309
  }
310
+ .block {
311
+ display: block;
312
+ }
301
313
  .flex {
302
314
  display: flex;
303
315
  }
@@ -307,6 +319,9 @@
307
319
  .inline-block {
308
320
  display: inline-block;
309
321
  }
322
+ .table {
323
+ display: table;
324
+ }
310
325
  .h-3\.5 {
311
326
  height: calc(var(--spacing) * 3.5);
312
327
  }
@@ -412,6 +427,9 @@
412
427
  .min-w-\[40px\] {
413
428
  min-width: 40px;
414
429
  }
430
+ .min-w-\[58px\] {
431
+ min-width: 58px;
432
+ }
415
433
  .flex-1 {
416
434
  flex: 1;
417
435
  }
@@ -424,6 +442,9 @@
424
442
  .grow {
425
443
  flex-grow: 1;
426
444
  }
445
+ .border-collapse {
446
+ border-collapse: collapse;
447
+ }
427
448
  .-translate-x-1\/2 {
428
449
  --tw-translate-x: calc(calc(1/2 * 100%) * -1);
429
450
  translate: var(--tw-translate-x) var(--tw-translate-y);
@@ -496,6 +517,12 @@
496
517
  .items-center {
497
518
  align-items: center;
498
519
  }
520
+ .justify-center {
521
+ justify-content: center;
522
+ }
523
+ .gap-0 {
524
+ gap: calc(var(--spacing) * 0);
525
+ }
499
526
  .gap-0\.5 {
500
527
  gap: calc(var(--spacing) * 0.5);
501
528
  }
@@ -534,8 +561,8 @@
534
561
  margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
535
562
  }
536
563
  }
537
- .overflow-auto {
538
- overflow: auto;
564
+ .overflow-x-hidden {
565
+ overflow-x: hidden;
539
566
  }
540
567
  .overflow-y-auto {
541
568
  overflow-y: auto;
@@ -661,6 +688,12 @@
661
688
  .border-transparent {
662
689
  border-color: transparent;
663
690
  }
691
+ .border-white {
692
+ border-color: var(--color-white);
693
+ }
694
+ .bg-\[\#545454\] {
695
+ background-color: #545454;
696
+ }
664
697
  .bg-black {
665
698
  background-color: var(--color-black);
666
699
  }
@@ -715,6 +748,9 @@
715
748
  .p-4 {
716
749
  padding: calc(var(--spacing) * 4);
717
750
  }
751
+ .p-\[0\] {
752
+ padding: 0;
753
+ }
718
754
  .p-\[45px\] {
719
755
  padding: 45px;
720
756
  }
@@ -748,6 +784,9 @@
748
784
  .pt-2 {
749
785
  padding-top: calc(var(--spacing) * 2);
750
786
  }
787
+ .pt-\[15px\] {
788
+ padding-top: 15px;
789
+ }
751
790
  .pr-2 {
752
791
  padding-right: calc(var(--spacing) * 2);
753
792
  }
@@ -777,9 +816,16 @@
777
816
  .text-\[0\.7rem\] {
778
817
  font-size: 0.7rem;
779
818
  }
819
+ .text-\[8px\] {
820
+ font-size: 8px;
821
+ }
780
822
  .text-\[9px\] {
781
823
  font-size: 9px;
782
824
  }
825
+ .leading-none {
826
+ --tw-leading: 1;
827
+ line-height: 1;
828
+ }
783
829
  .font-bold {
784
830
  --tw-font-weight: var(--font-weight-bold);
785
831
  font-weight: var(--font-weight-bold);
@@ -871,9 +917,6 @@
871
917
  -moz-user-select: none;
872
918
  user-select: none;
873
919
  }
874
- .\[scrollbar-gutter\:stable\] {
875
- scrollbar-gutter: stable;
876
- }
877
920
  .placeholder\:text-gray-400 {
878
921
  &::-moz-placeholder {
879
922
  color: var(--color-gray-400);
@@ -1152,6 +1195,10 @@
1152
1195
  inherits: false;
1153
1196
  initial-value: solid;
1154
1197
  }
1198
+ @property --tw-leading {
1199
+ syntax: "*";
1200
+ inherits: false;
1201
+ }
1155
1202
  @property --tw-font-weight {
1156
1203
  syntax: "*";
1157
1204
  inherits: false;
@@ -1291,6 +1338,7 @@
1291
1338
  --tw-skew-y: initial;
1292
1339
  --tw-space-y-reverse: 0;
1293
1340
  --tw-border-style: solid;
1341
+ --tw-leading: initial;
1294
1342
  --tw-font-weight: initial;
1295
1343
  --tw-tracking: initial;
1296
1344
  --tw-shadow: 0 0 #0000;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qt-ui-kit",
3
- "version": "1.0.111",
3
+ "version": "1.0.113",
4
4
  "description": "Reusable component library with Tailwind v4 and custom CSS",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -17,22 +17,25 @@
17
17
  ],
18
18
  "scripts": {
19
19
  "dev": "npx ladle serve",
20
+ "watch": "tsup --watch --onSuccess \"npm run build:css\"",
20
21
  "build:css": "postcss src/index.css -o dist/style.css",
21
- "build": "tsup",
22
+ "build": "tsup && npm run build:css",
22
23
  "prepublishOnly": "npm run build && npm run build:css",
23
24
  "test": "echo \"Error: no test specified\" && exit 1"
24
25
  },
25
26
  "keywords": [],
26
27
  "author": "",
27
28
  "license": "ISC",
29
+ "peerDependencies": {
30
+ "react": "^19.0.0",
31
+ "react-dom": "^19.0.0"
32
+ },
28
33
  "dependencies": {
29
34
  "@tailwindcss/line-clamp": "^0.4.4",
30
35
  "@tailwindcss/postcss": "^4.1.4",
31
36
  "@tailwindcss/typography": "^0.5.16",
32
37
  "clsx": "^2.1.1",
33
38
  "dompurify": "^3.2.6",
34
- "react": "^19.1.0",
35
- "react-dom": "^19.1.0",
36
39
  "react-markdown": "^10.1.0",
37
40
  "rehype-raw": "^7.0.0",
38
41
  "remark-gfm": "^4.0.1",