cekat-ui 1.2.4 → 1.2.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
@@ -935,6 +935,10 @@ body{
935
935
  height: 0.375rem;
936
936
  }
937
937
 
938
+ .h-10{
939
+ height: 2.5rem;
940
+ }
941
+
938
942
  .h-11{
939
943
  height: 2.75rem;
940
944
  }
@@ -1091,6 +1095,10 @@ body{
1091
1095
  width: 0.75rem;
1092
1096
  }
1093
1097
 
1098
+ .w-32{
1099
+ width: 8rem;
1100
+ }
1101
+
1094
1102
  .w-4{
1095
1103
  width: 1rem;
1096
1104
  }
@@ -1525,6 +1533,11 @@ body{
1525
1533
  border-width: 8px;
1526
1534
  }
1527
1535
 
1536
+ .border-x{
1537
+ border-left-width: 1px;
1538
+ border-right-width: 1px;
1539
+ }
1540
+
1528
1541
  .border-x-8{
1529
1542
  border-left-width: 8px;
1530
1543
  border-right-width: 8px;
@@ -2569,6 +2582,10 @@ body{
2569
2582
  padding-right: 9px;
2570
2583
  }
2571
2584
 
2585
+ .pt-3{
2586
+ padding-top: 0.75rem;
2587
+ }
2588
+
2572
2589
  .pt-4{
2573
2590
  padding-top: 1rem;
2574
2591
  }
@@ -3199,6 +3216,11 @@ body{
3199
3216
  border-color: rgb(8 33 76 / var(--tw-border-opacity, 1));
3200
3217
  }
3201
3218
 
3219
+ .hover\:border-x-transparent:hover{
3220
+ border-left-color: #FFFFFF00;
3221
+ border-right-color: #FFFFFF00;
3222
+ }
3223
+
3202
3224
  .hover\:bg-black\/5:hover{
3203
3225
  background-color: rgb(0 0 0 / 0.05);
3204
3226
  }
@@ -3218,6 +3240,11 @@ body{
3218
3240
  background-color: rgb(131 9 36 / var(--tw-bg-opacity, 1));
3219
3241
  }
3220
3242
 
3243
+ .hover\:bg-info-500:hover{
3244
+ --tw-bg-opacity: 1;
3245
+ background-color: rgb(16 104 229 / var(--tw-bg-opacity, 1));
3246
+ }
3247
+
3221
3248
  .hover\:bg-light-100:hover{
3222
3249
  --tw-bg-opacity: 1;
3223
3250
  background-color: rgb(242 244 247 / var(--tw-bg-opacity, 1));
@@ -3267,6 +3294,11 @@ body{
3267
3294
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
3268
3295
  }
3269
3296
 
3297
+ .hover\:text-black:hover{
3298
+ --tw-text-opacity: 1;
3299
+ color: rgb(0 0 0 / var(--tw-text-opacity, 1));
3300
+ }
3301
+
3270
3302
  .hover\:text-error-800:hover{
3271
3303
  --tw-text-opacity: 1;
3272
3304
  color: rgb(131 9 36 / var(--tw-text-opacity, 1));
@@ -0,0 +1,2 @@
1
+ import { ClassValue } from 'clsx';
2
+ export declare function cn(...inputs: ClassValue[]): string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cekat-ui",
3
- "version": "1.2.4",
3
+ "version": "1.2.6",
4
4
  "description": "Cekat UI Component Library",
5
5
  "main": "dist/index.umd.js",
6
6
  "module": "dist/index.es.js",
@@ -40,7 +40,8 @@
40
40
  "class-variance-authority": "^0.7.1",
41
41
  "clsx": "^2.1.1",
42
42
  "react": "18.3.1",
43
- "react-dom": "18.3.1"
43
+ "react-dom": "18.3.1",
44
+ "tailwind-merge": "^3.6.0"
44
45
  },
45
46
  "devDependencies": {
46
47
  "@storybook/react-vite": "^10.1.9",
@@ -57,4 +58,4 @@
57
58
  "vite": "^7.3.0",
58
59
  "vite-plugin-dts": "^4.5.4"
59
60
  }
60
- }
61
+ }