cekat-ui 1.2.5 → 1.2.7

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
  }
@@ -1131,10 +1139,6 @@ body{
1131
1139
  width: 320px;
1132
1140
  }
1133
1141
 
1134
- .w-\[500px\]{
1135
- width: 500px;
1136
- }
1137
-
1138
1142
  .w-\[92px\]{
1139
1143
  width: 92px;
1140
1144
  }
@@ -1316,6 +1320,10 @@ body{
1316
1320
  list-style-type: disc;
1317
1321
  }
1318
1322
 
1323
+ .grid-cols-4{
1324
+ grid-template-columns: repeat(4, minmax(0, 1fr));
1325
+ }
1326
+
1319
1327
  .flex-row{
1320
1328
  flex-direction: row;
1321
1329
  }
@@ -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
  }
@@ -2884,6 +2901,11 @@ body{
2884
2901
  color: rgb(53 56 205 / var(--tw-text-opacity, 1));
2885
2902
  }
2886
2903
 
2904
+ .text-info-700{
2905
+ --tw-text-opacity: 1;
2906
+ color: rgb(8 59 164 / var(--tw-text-opacity, 1));
2907
+ }
2908
+
2887
2909
  .text-light-100{
2888
2910
  --tw-text-opacity: 1;
2889
2911
  color: rgb(242 244 247 / var(--tw-text-opacity, 1));
@@ -3199,6 +3221,11 @@ body{
3199
3221
  border-color: rgb(8 33 76 / var(--tw-border-opacity, 1));
3200
3222
  }
3201
3223
 
3224
+ .hover\:border-x-transparent:hover{
3225
+ border-left-color: #FFFFFF00;
3226
+ border-right-color: #FFFFFF00;
3227
+ }
3228
+
3202
3229
  .hover\:bg-black\/5:hover{
3203
3230
  background-color: rgb(0 0 0 / 0.05);
3204
3231
  }
@@ -3218,6 +3245,11 @@ body{
3218
3245
  background-color: rgb(131 9 36 / var(--tw-bg-opacity, 1));
3219
3246
  }
3220
3247
 
3248
+ .hover\:bg-info-100:hover{
3249
+ --tw-bg-opacity: 1;
3250
+ background-color: rgb(206 233 253 / var(--tw-bg-opacity, 1));
3251
+ }
3252
+
3221
3253
  .hover\:bg-info-500:hover{
3222
3254
  --tw-bg-opacity: 1;
3223
3255
  background-color: rgb(16 104 229 / var(--tw-bg-opacity, 1));
@@ -3312,6 +3344,11 @@ body{
3312
3344
  color: rgb(8 33 76 / var(--tw-text-opacity, 1));
3313
3345
  }
3314
3346
 
3347
+ .hover\:text-red-700:hover{
3348
+ --tw-text-opacity: 1;
3349
+ color: rgb(185 28 28 / var(--tw-text-opacity, 1));
3350
+ }
3351
+
3315
3352
  .hover\:shadow-sm:hover{
3316
3353
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
3317
3354
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cekat-ui",
3
- "version": "1.2.5",
3
+ "version": "1.2.7",
4
4
  "description": "Cekat UI Component Library",
5
5
  "main": "dist/index.umd.js",
6
6
  "module": "dist/index.es.js",
@@ -40,11 +40,13 @@
40
40
  "class-variance-authority": "^0.7.1",
41
41
  "clsx": "^2.1.1",
42
42
  "react": "18.3.1",
43
+ "react-aria-components": "^1.20.0",
43
44
  "react-dom": "18.3.1",
44
45
  "tailwind-merge": "^3.6.0"
45
46
  },
46
47
  "devDependencies": {
47
- "@storybook/react-vite": "^10.1.9",
48
+ "@storybook/addon-docs": "^10.1.9",
49
+ "@storybook/react-vite": "^10.5.6",
48
50
  "@types/node": "^25.0.8",
49
51
  "@types/react": "^18",
50
52
  "@types/react-dom": "^18",
@@ -52,7 +54,7 @@
52
54
  "autoprefixer": "^10.4.23",
53
55
  "postcss": "^8.5.6",
54
56
  "rollup": "^3.29.5",
55
- "storybook": "^10.1.9",
57
+ "storybook": "^10.5.6",
56
58
  "tailwindcss": "3.4.17",
57
59
  "typescript": "^5.9.3",
58
60
  "vite": "^7.3.0",