@seeqdev/qomponents 0.0.53 → 0.0.55

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/styles.css CHANGED
@@ -100,6 +100,10 @@
100
100
  width: 1.25em;
101
101
  }
102
102
 
103
+ .fc-genai-chat:before {
104
+ content: "\e9ae";
105
+ }
106
+
103
107
  .fc-formula-ai:before {
104
108
  content: "\e901";
105
109
  }
@@ -808,10 +812,6 @@
808
812
  content: "\e9ad";
809
813
  }
810
814
 
811
- .fc-genai-chat:before {
812
- content: "\e9ae";
813
- }
814
-
815
815
  .fc-short-dash:before {
816
816
  content: "\f901";
817
817
  }
@@ -1908,6 +1908,10 @@ ol,
1908
1908
  margin-right: 1.25rem;
1909
1909
  }
1910
1910
 
1911
+ .tw-mr-\[0\.5rem\] {
1912
+ margin-right: 0.5rem;
1913
+ }
1914
+
1911
1915
  .tw-mr-\[7px\] {
1912
1916
  margin-right: 7px;
1913
1917
  }
@@ -2090,6 +2094,10 @@ ol,
2090
2094
  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));
2091
2095
  }
2092
2096
 
2097
+ .tw-cursor-default {
2098
+ cursor: default;
2099
+ }
2100
+
2093
2101
  .tw-cursor-not-allowed {
2094
2102
  cursor: not-allowed;
2095
2103
  }
@@ -2442,6 +2450,11 @@ ol,
2442
2450
  padding-bottom: 0.25rem;
2443
2451
  }
2444
2452
 
2453
+ .tw-py-2 {
2454
+ padding-top: 0.5rem;
2455
+ padding-bottom: 0.5rem;
2456
+ }
2457
+
2445
2458
  .tw-py-4 {
2446
2459
  padding-top: 1rem;
2447
2460
  padding-bottom: 1rem;
@@ -2493,6 +2506,14 @@ ol,
2493
2506
  font-size: 10px;
2494
2507
  }
2495
2508
 
2509
+ .tw-text-\[12px\] {
2510
+ font-size: 12px;
2511
+ }
2512
+
2513
+ .tw-text-\[13px\] {
2514
+ font-size: 13px;
2515
+ }
2516
+
2496
2517
  .tw-text-\[14px\] {
2497
2518
  font-size: 14px;
2498
2519
  }
@@ -3053,6 +3074,36 @@ ol,
3053
3074
  opacity: 1;
3054
3075
  }
3055
3076
 
3077
+ @keyframes tw-slideUp {
3078
+
3079
+ from {
3080
+ height: var(--radix-accordion-content-height);
3081
+ }
3082
+
3083
+ to {
3084
+ height: 0px;
3085
+ }
3086
+ }
3087
+
3088
+ .data-\[state\=closed\]\:tw-animate-slideUp[data-state=closed] {
3089
+ animation: tw-slideUp 0.3s ease-in-out;
3090
+ }
3091
+
3092
+ @keyframes tw-slideDown {
3093
+
3094
+ from {
3095
+ height: 0px;
3096
+ }
3097
+
3098
+ to {
3099
+ height: var(--radix-accordion-content-height);
3100
+ }
3101
+ }
3102
+
3103
+ .data-\[state\=open\]\:tw-animate-slideDown[data-state=open] {
3104
+ animation: tw-slideDown 0.3s ease-in-out;
3105
+ }
3106
+
3056
3107
  .tw-dark .dark\:tw-border-gray-700 {
3057
3108
  --tw-border-opacity: 1;
3058
3109
  border-color: rgb(55 65 81 / var(--tw-border-opacity));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seeqdev/qomponents",
3
- "version": "0.0.53",
3
+ "version": "0.0.55",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "types": "dist/index.js",
@@ -70,6 +70,7 @@
70
70
  },
71
71
  "dependencies": {
72
72
  "@floating-ui/dom": "^1.5.1",
73
+ "@radix-ui/react-accordion": "1.1.2",
73
74
  "@radix-ui/react-tabs": "1.0.4",
74
75
  "@radix-ui/react-popover": "1.0.7",
75
76
  "@radix-ui/react-dialog": "1.0.5",