@seeqdev/qomponents 0.0.40 → 0.0.42
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/FontCustom.woff +0 -0
- package/dist/FontCustom.woff2 +0 -0
- package/dist/Tabs/Tabs.d.ts +4 -0
- package/dist/Tabs/Tabs.stories.d.ts +5 -0
- package/dist/Tabs/Tabs.test.d.ts +1 -0
- package/dist/Tabs/Tabs.types.d.ts +18 -0
- package/dist/Tabs/index.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +480 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +480 -0
- package/dist/index.js.map +1 -1
- package/dist/styles.css +111 -29
- package/package.json +2 -1
package/dist/styles.css
CHANGED
|
@@ -100,34 +100,6 @@
|
|
|
100
100
|
width: 1.25em;
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
-
.fc-toggle-off:before {
|
|
104
|
-
content: "\e9aa";
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.fc-toggle-on:before {
|
|
108
|
-
content: "\e9ab";
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.fc-autosize-all-cells:before {
|
|
112
|
-
content: "\e9a8";
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
.fc-autosize-cell2:before {
|
|
116
|
-
content: "\e9a9";
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
.fc-filter-remove:before {
|
|
120
|
-
content: "\e9a7";
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.fc-pdf-cog:before {
|
|
124
|
-
content: "\e9a5";
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
.fc-pdf-file:before {
|
|
128
|
-
content: "\e9a6";
|
|
129
|
-
}
|
|
130
|
-
|
|
131
103
|
.fc-marker:before {
|
|
132
104
|
content: "\a961";
|
|
133
105
|
}
|
|
@@ -584,7 +556,7 @@
|
|
|
584
556
|
content: "\e96e";
|
|
585
557
|
}
|
|
586
558
|
|
|
587
|
-
.fc-
|
|
559
|
+
.fc-usage:before {
|
|
588
560
|
content: "\e96f";
|
|
589
561
|
}
|
|
590
562
|
|
|
@@ -800,6 +772,34 @@
|
|
|
800
772
|
content: "\e9a4";
|
|
801
773
|
}
|
|
802
774
|
|
|
775
|
+
.fc-pdf-cog:before {
|
|
776
|
+
content: "\e9a5";
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
.fc-pdf-file:before {
|
|
780
|
+
content: "\e9a6";
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.fc-filter-remove:before {
|
|
784
|
+
content: "\e9a7";
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.fc-autosize-all-cells:before {
|
|
788
|
+
content: "\e9a8";
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.fc-autosize-cell2:before {
|
|
792
|
+
content: "\e9a9";
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.fc-toggle-off:before {
|
|
796
|
+
content: "\e9aa";
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.fc-toggle-on:before {
|
|
800
|
+
content: "\e9ab";
|
|
801
|
+
}
|
|
802
|
+
|
|
803
803
|
.fc-short-dash:before {
|
|
804
804
|
content: "\f901";
|
|
805
805
|
}
|
|
@@ -1820,6 +1820,14 @@ ol,
|
|
|
1820
1820
|
margin-top: -0.125rem;
|
|
1821
1821
|
}
|
|
1822
1822
|
|
|
1823
|
+
.tw-mb-5 {
|
|
1824
|
+
margin-bottom: 1.25rem;
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1827
|
+
.tw-mb-8 {
|
|
1828
|
+
margin-bottom: 2rem;
|
|
1829
|
+
}
|
|
1830
|
+
|
|
1823
1831
|
.tw-ml-1 {
|
|
1824
1832
|
margin-left: 0.25rem;
|
|
1825
1833
|
}
|
|
@@ -1840,6 +1848,10 @@ ol,
|
|
|
1840
1848
|
margin-right: 0.5rem;
|
|
1841
1849
|
}
|
|
1842
1850
|
|
|
1851
|
+
.tw-mr-\[7px\] {
|
|
1852
|
+
margin-right: 7px;
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1843
1855
|
.tw-inline-block {
|
|
1844
1856
|
display: inline-block;
|
|
1845
1857
|
}
|
|
@@ -1868,6 +1880,10 @@ ol,
|
|
|
1868
1880
|
height: 10px;
|
|
1869
1881
|
}
|
|
1870
1882
|
|
|
1883
|
+
.tw-h-\[45px\] {
|
|
1884
|
+
height: 45px;
|
|
1885
|
+
}
|
|
1886
|
+
|
|
1871
1887
|
.tw-h-inputs {
|
|
1872
1888
|
height: 34px;
|
|
1873
1889
|
}
|
|
@@ -1888,11 +1904,19 @@ ol,
|
|
|
1888
1904
|
width: 200px;
|
|
1889
1905
|
}
|
|
1890
1906
|
|
|
1907
|
+
.tw-min-w-\[300px\] {
|
|
1908
|
+
min-width: 300px;
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1891
1911
|
.tw-min-w-fit {
|
|
1892
1912
|
min-width: -moz-fit-content;
|
|
1893
1913
|
min-width: fit-content;
|
|
1894
1914
|
}
|
|
1895
1915
|
|
|
1916
|
+
.tw-flex-1 {
|
|
1917
|
+
flex: 1 1 0%;
|
|
1918
|
+
}
|
|
1919
|
+
|
|
1896
1920
|
.-tw-translate-x-1\/2 {
|
|
1897
1921
|
--tw-translate-x: -50%;
|
|
1898
1922
|
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));
|
|
@@ -1960,10 +1984,18 @@ ol,
|
|
|
1960
1984
|
align-items: center;
|
|
1961
1985
|
}
|
|
1962
1986
|
|
|
1987
|
+
.tw-justify-center {
|
|
1988
|
+
justify-content: center;
|
|
1989
|
+
}
|
|
1990
|
+
|
|
1963
1991
|
.tw-gap-4 {
|
|
1964
1992
|
gap: 1rem;
|
|
1965
1993
|
}
|
|
1966
1994
|
|
|
1995
|
+
.tw-gap-\[2px\] {
|
|
1996
|
+
gap: 2px;
|
|
1997
|
+
}
|
|
1998
|
+
|
|
1967
1999
|
.tw-overflow-hidden {
|
|
1968
2000
|
overflow: hidden;
|
|
1969
2001
|
}
|
|
@@ -2012,6 +2044,14 @@ ol,
|
|
|
2012
2044
|
border-width: 1px;
|
|
2013
2045
|
}
|
|
2014
2046
|
|
|
2047
|
+
.tw-border-b-\[1px\] {
|
|
2048
|
+
border-bottom-width: 1px;
|
|
2049
|
+
}
|
|
2050
|
+
|
|
2051
|
+
.tw-border-b-\[3px\] {
|
|
2052
|
+
border-bottom-width: 3px;
|
|
2053
|
+
}
|
|
2054
|
+
|
|
2015
2055
|
.tw-border-l-0 {
|
|
2016
2056
|
border-left-width: 0px;
|
|
2017
2057
|
}
|
|
@@ -2062,6 +2102,11 @@ ol,
|
|
|
2062
2102
|
border-color: transparent;
|
|
2063
2103
|
}
|
|
2064
2104
|
|
|
2105
|
+
.tw-border-b-sq-color-dark {
|
|
2106
|
+
--tw-border-opacity: 1;
|
|
2107
|
+
border-bottom-color: rgb(var(--sq-color-dark));
|
|
2108
|
+
}
|
|
2109
|
+
|
|
2065
2110
|
.tw-bg-black {
|
|
2066
2111
|
--tw-bg-opacity: 1;
|
|
2067
2112
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
@@ -2229,6 +2274,14 @@ ol,
|
|
|
2229
2274
|
font-size: 10px;
|
|
2230
2275
|
}
|
|
2231
2276
|
|
|
2277
|
+
.tw-text-\[14px\] {
|
|
2278
|
+
font-size: 14px;
|
|
2279
|
+
}
|
|
2280
|
+
|
|
2281
|
+
.tw-text-\[15px\] {
|
|
2282
|
+
font-size: 15px;
|
|
2283
|
+
}
|
|
2284
|
+
|
|
2232
2285
|
.tw-text-\[8px\] {
|
|
2233
2286
|
font-size: 8px;
|
|
2234
2287
|
}
|
|
@@ -2248,6 +2301,10 @@ ol,
|
|
|
2248
2301
|
line-height: 1rem;
|
|
2249
2302
|
}
|
|
2250
2303
|
|
|
2304
|
+
.tw-font-medium {
|
|
2305
|
+
font-weight: 500;
|
|
2306
|
+
}
|
|
2307
|
+
|
|
2251
2308
|
.tw-leading-normal {
|
|
2252
2309
|
line-height: 1.5;
|
|
2253
2310
|
}
|
|
@@ -2257,6 +2314,11 @@ ol,
|
|
|
2257
2314
|
color: rgb(156 163 175 / var(--tw-text-opacity));
|
|
2258
2315
|
}
|
|
2259
2316
|
|
|
2317
|
+
.tw-text-gray-500 {
|
|
2318
|
+
--tw-text-opacity: 1;
|
|
2319
|
+
color: rgb(107 114 128 / var(--tw-text-opacity));
|
|
2320
|
+
}
|
|
2321
|
+
|
|
2260
2322
|
.tw-text-sq-color-dark {
|
|
2261
2323
|
--tw-text-opacity: 1;
|
|
2262
2324
|
color: rgb(var(--sq-color-dark));
|
|
@@ -2687,6 +2749,11 @@ ol,
|
|
|
2687
2749
|
opacity: 1;
|
|
2688
2750
|
}
|
|
2689
2751
|
|
|
2752
|
+
.tw-dark .dark\:tw-border-gray-700 {
|
|
2753
|
+
--tw-border-opacity: 1;
|
|
2754
|
+
border-color: rgb(55 65 81 / var(--tw-border-opacity));
|
|
2755
|
+
}
|
|
2756
|
+
|
|
2690
2757
|
.tw-dark .dark\:tw-border-sq-color-dark {
|
|
2691
2758
|
--tw-border-opacity: 1;
|
|
2692
2759
|
border-color: rgb(var(--sq-color-dark));
|
|
@@ -2707,6 +2774,11 @@ ol,
|
|
|
2707
2774
|
border-color: rgb(var(--sq-icon-dark));
|
|
2708
2775
|
}
|
|
2709
2776
|
|
|
2777
|
+
.tw-dark .dark\:tw-border-b-sq-color-dark {
|
|
2778
|
+
--tw-border-opacity: 1;
|
|
2779
|
+
border-bottom-color: rgb(var(--sq-color-dark));
|
|
2780
|
+
}
|
|
2781
|
+
|
|
2710
2782
|
.tw-dark .dark\:tw-bg-gray-700 {
|
|
2711
2783
|
--tw-bg-opacity: 1;
|
|
2712
2784
|
background-color: rgb(55 65 81 / var(--tw-bg-opacity));
|
|
@@ -2772,6 +2844,11 @@ ol,
|
|
|
2772
2844
|
color: rgb(var(--sq-link-dark));
|
|
2773
2845
|
}
|
|
2774
2846
|
|
|
2847
|
+
.tw-dark .dark\:tw-text-sq-white {
|
|
2848
|
+
--tw-text-opacity: 1;
|
|
2849
|
+
color: rgb(var(--sq-white));
|
|
2850
|
+
}
|
|
2851
|
+
|
|
2775
2852
|
.tw-dark .dark\:tw-text-white {
|
|
2776
2853
|
--tw-text-opacity: 1;
|
|
2777
2854
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
@@ -2827,6 +2904,11 @@ ol,
|
|
|
2827
2904
|
background-color: rgb(var(--sq-link-dark));
|
|
2828
2905
|
}
|
|
2829
2906
|
|
|
2907
|
+
.tw-dark .hover\:dark\:tw-bg-gray-700:hover {
|
|
2908
|
+
--tw-bg-opacity: 1;
|
|
2909
|
+
background-color: rgb(55 65 81 / var(--tw-bg-opacity));
|
|
2910
|
+
}
|
|
2911
|
+
|
|
2830
2912
|
.tw-dark .dark\:hover\:tw-text-sq-color-dark-dark:hover {
|
|
2831
2913
|
--tw-text-opacity: 1;
|
|
2832
2914
|
color: rgb(var(--sq-color-dark-dark));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seeqdev/qomponents",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.42",
|
|
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-tabs": "1.0.4",
|
|
73
74
|
"@radix-ui/react-popover": "1.0.7",
|
|
74
75
|
"dompurify": "^3.0.5",
|
|
75
76
|
"postcss": "8.4.21",
|