@6thbridge/hexa 0.0.97 → 0.0.99

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/output.css CHANGED
@@ -2213,6 +2213,11 @@
2213
2213
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
2214
2214
  }
2215
2215
 
2216
+ .text-gray-800{
2217
+ --tw-text-opacity: 1;
2218
+ color: rgb(31 41 55 / var(--tw-text-opacity, 1));
2219
+ }
2220
+
2216
2221
  .text-gray-900{
2217
2222
  --tw-text-opacity: 1;
2218
2223
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
@@ -2842,6 +2847,10 @@ input:-webkit-autofill:active {
2842
2847
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
2843
2848
  }
2844
2849
 
2850
+ .hover\:bg-gray-200\/50:hover{
2851
+ background-color: rgb(229 231 235 / 0.5);
2852
+ }
2853
+
2845
2854
  .hover\:bg-gray-50:hover{
2846
2855
  --tw-bg-opacity: 1;
2847
2856
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
@@ -3120,6 +3129,34 @@ input:-webkit-autofill:active {
3120
3129
  pointer-events: none;
3121
3130
  }
3122
3131
 
3132
+ @keyframes accordion-up{
3133
+ from{
3134
+ height: var(--radix-accordion-content-height);
3135
+ }
3136
+
3137
+ to{
3138
+ height: 0;
3139
+ }
3140
+ }
3141
+
3142
+ .data-\[state\=closed\]\:animate-accordion-up[data-state="closed"]{
3143
+ animation: accordion-up 0.2s ease-out;
3144
+ }
3145
+
3146
+ @keyframes accordion-down{
3147
+ from{
3148
+ height: 0;
3149
+ }
3150
+
3151
+ to{
3152
+ height: var(--radix-accordion-content-height);
3153
+ }
3154
+ }
3155
+
3156
+ .data-\[state\=open\]\:animate-accordion-down[data-state="open"]{
3157
+ animation: accordion-down 0.2s ease-out;
3158
+ }
3159
+
3123
3160
  .data-\[selected\=true\]\:bg-primary-accent[data-selected="true"]{
3124
3161
  background-color: var(--color-primary-accent);
3125
3162
  }
@@ -3129,6 +3166,10 @@ input:-webkit-autofill:active {
3129
3166
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
3130
3167
  }
3131
3168
 
3169
+ .data-\[state\=open\]\:bg-gray-200\/50[data-state="open"]{
3170
+ background-color: rgb(229 231 235 / 0.5);
3171
+ }
3172
+
3132
3173
  .data-\[disabled\=true\]\:opacity-50[data-disabled="true"]{
3133
3174
  opacity: 0.5;
3134
3175
  }
@@ -3258,6 +3299,11 @@ input:-webkit-autofill:active {
3258
3299
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1)) !important;
3259
3300
  }
3260
3301
 
3302
+ .group[data-state="open"] .group-data-\[state\=open\]\:rotate-180{
3303
+ --tw-rotate: 180deg;
3304
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3305
+ }
3306
+
3261
3307
  .group[data-state="active"] .group-data-\[state\=active\]\:font-medium{
3262
3308
  font-weight: 500;
3263
3309
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@6thbridge/hexa",
3
- "version": "0.0.97",
3
+ "version": "0.0.99",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/DexlerNG/payfusion-component-library.git",
@@ -36,16 +36,17 @@
36
36
  "jest": "30.4.1",
37
37
  "postcss": "8.5.14",
38
38
  "prettier": "3.8.3",
39
+ "react": "19.2.6",
40
+ "react-dom": "19.2.6",
39
41
  "tailwindcss": "3.4.18",
40
42
  "ts-jest": "29.4.10",
41
43
  "tsup": "8.5.0",
42
44
  "typescript": "6.0.2",
43
45
  "typescript-eslint": "8.60.1",
44
- "vite": "8.0.15",
45
- "react": "19.2.6",
46
- "react-dom": "19.2.6"
46
+ "vite": "8.0.15"
47
47
  },
48
48
  "dependencies": {
49
+ "@radix-ui/react-accordion": "1.2.13",
49
50
  "@radix-ui/react-checkbox": "1.3.3",
50
51
  "@radix-ui/react-dialog": "1.1.15",
51
52
  "@radix-ui/react-dismissable-layer": "1.1.11",
@@ -24,6 +24,20 @@ module.exports = {
24
24
  fontFamily: {
25
25
  sans: ["GT Walsheim Pro", "sans-serif"],
26
26
  },
27
+ keyframes: {
28
+ "accordion-down": {
29
+ from: { height: "0" },
30
+ to: { height: "var(--radix-accordion-content-height)" },
31
+ },
32
+ "accordion-up": {
33
+ from: { height: "var(--radix-accordion-content-height)" },
34
+ to: { height: "0" },
35
+ },
36
+ },
37
+ animation: {
38
+ "accordion-down": "accordion-down 0.2s ease-out",
39
+ "accordion-up": "accordion-up 0.2s ease-out",
40
+ },
27
41
  },
28
42
  },
29
43
  plugins: [require("tailwindcss-animate")],