@seeqdev/qomponents 0.0.54 → 0.0.56
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/Accordion/Accordion.d.ts +4 -0
- package/dist/Accordion/Accordion.stories.d.ts +5 -0
- package/dist/Accordion/Accordion.test.d.ts +1 -0
- package/dist/Accordion/Accordion.types.d.ts +20 -0
- package/dist/Accordion/index.d.ts +1 -0
- package/dist/FontCustom.woff +0 -0
- package/dist/FontCustom.woff2 +0 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +398 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +398 -0
- package/dist/index.js.map +1 -1
- package/dist/styles.css +55 -0
- package/package.json +2 -1
package/dist/styles.css
CHANGED
|
@@ -100,6 +100,10 @@
|
|
|
100
100
|
width: 1.25em;
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
+
.fc-workbook-ai:before {
|
|
104
|
+
content: "\e9af";
|
|
105
|
+
}
|
|
106
|
+
|
|
103
107
|
.fc-genai-chat:before {
|
|
104
108
|
content: "\e9ae";
|
|
105
109
|
}
|
|
@@ -1908,6 +1912,10 @@ ol,
|
|
|
1908
1912
|
margin-right: 1.25rem;
|
|
1909
1913
|
}
|
|
1910
1914
|
|
|
1915
|
+
.tw-mr-\[0\.5rem\] {
|
|
1916
|
+
margin-right: 0.5rem;
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1911
1919
|
.tw-mr-\[7px\] {
|
|
1912
1920
|
margin-right: 7px;
|
|
1913
1921
|
}
|
|
@@ -2090,6 +2098,10 @@ ol,
|
|
|
2090
2098
|
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
2099
|
}
|
|
2092
2100
|
|
|
2101
|
+
.tw-cursor-default {
|
|
2102
|
+
cursor: default;
|
|
2103
|
+
}
|
|
2104
|
+
|
|
2093
2105
|
.tw-cursor-not-allowed {
|
|
2094
2106
|
cursor: not-allowed;
|
|
2095
2107
|
}
|
|
@@ -2442,6 +2454,11 @@ ol,
|
|
|
2442
2454
|
padding-bottom: 0.25rem;
|
|
2443
2455
|
}
|
|
2444
2456
|
|
|
2457
|
+
.tw-py-2 {
|
|
2458
|
+
padding-top: 0.5rem;
|
|
2459
|
+
padding-bottom: 0.5rem;
|
|
2460
|
+
}
|
|
2461
|
+
|
|
2445
2462
|
.tw-py-4 {
|
|
2446
2463
|
padding-top: 1rem;
|
|
2447
2464
|
padding-bottom: 1rem;
|
|
@@ -2493,6 +2510,14 @@ ol,
|
|
|
2493
2510
|
font-size: 10px;
|
|
2494
2511
|
}
|
|
2495
2512
|
|
|
2513
|
+
.tw-text-\[12px\] {
|
|
2514
|
+
font-size: 12px;
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2517
|
+
.tw-text-\[13px\] {
|
|
2518
|
+
font-size: 13px;
|
|
2519
|
+
}
|
|
2520
|
+
|
|
2496
2521
|
.tw-text-\[14px\] {
|
|
2497
2522
|
font-size: 14px;
|
|
2498
2523
|
}
|
|
@@ -3053,6 +3078,36 @@ ol,
|
|
|
3053
3078
|
opacity: 1;
|
|
3054
3079
|
}
|
|
3055
3080
|
|
|
3081
|
+
@keyframes tw-slideUp {
|
|
3082
|
+
|
|
3083
|
+
from {
|
|
3084
|
+
height: var(--radix-accordion-content-height);
|
|
3085
|
+
}
|
|
3086
|
+
|
|
3087
|
+
to {
|
|
3088
|
+
height: 0px;
|
|
3089
|
+
}
|
|
3090
|
+
}
|
|
3091
|
+
|
|
3092
|
+
.data-\[state\=closed\]\:tw-animate-slideUp[data-state=closed] {
|
|
3093
|
+
animation: tw-slideUp 0.3s ease-in-out;
|
|
3094
|
+
}
|
|
3095
|
+
|
|
3096
|
+
@keyframes tw-slideDown {
|
|
3097
|
+
|
|
3098
|
+
from {
|
|
3099
|
+
height: 0px;
|
|
3100
|
+
}
|
|
3101
|
+
|
|
3102
|
+
to {
|
|
3103
|
+
height: var(--radix-accordion-content-height);
|
|
3104
|
+
}
|
|
3105
|
+
}
|
|
3106
|
+
|
|
3107
|
+
.data-\[state\=open\]\:tw-animate-slideDown[data-state=open] {
|
|
3108
|
+
animation: tw-slideDown 0.3s ease-in-out;
|
|
3109
|
+
}
|
|
3110
|
+
|
|
3056
3111
|
.tw-dark .dark\:tw-border-gray-700 {
|
|
3057
3112
|
--tw-border-opacity: 1;
|
|
3058
3113
|
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.
|
|
3
|
+
"version": "0.0.56",
|
|
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",
|