@seeqdev/qomponents 0.0.20 → 0.0.21
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/Button/Button.js +12 -4
- package/dist/Button/Button.js.map +1 -1
- package/dist/Button/Button.types.d.ts +4 -0
- package/dist/Icon/Icon.js +41 -34
- package/dist/Icon/Icon.js.map +1 -1
- package/dist/Icon/Icon.types.d.ts +4 -6
- package/dist/TextArea/TextArea.js +10 -4
- package/dist/TextArea/TextArea.js.map +1 -1
- package/dist/TextField/TextField.js +10 -4
- package/dist/TextField/TextField.js.map +1 -1
- package/dist/Tooltip/QTip.stories.d.ts +5 -0
- package/dist/Tooltip/QTip.stories.js +40 -0
- package/dist/Tooltip/QTip.stories.js.map +1 -0
- package/dist/Tooltip/QTip.types.d.ts +13 -0
- package/dist/Tooltip/QTip.types.js +2 -0
- package/dist/Tooltip/QTip.types.js.map +1 -0
- package/dist/Tooltip/QTipPerformance.stories.d.ts +5 -0
- package/dist/Tooltip/QTipPerformance.stories.js +30 -0
- package/dist/Tooltip/QTipPerformance.stories.js.map +1 -0
- package/dist/Tooltip/Qtip.d.ts +25 -0
- package/dist/Tooltip/Qtip.js +146 -0
- package/dist/Tooltip/Qtip.js.map +1 -0
- package/dist/Tooltip/Tooltip.d.ts +7 -1
- package/dist/Tooltip/Tooltip.js +7 -1
- package/dist/Tooltip/Tooltip.js.map +1 -1
- package/dist/Tooltip/TooltipPerformance.stories.d.ts +5 -0
- package/dist/Tooltip/TooltipPerformance.stories.js +30 -0
- package/dist/Tooltip/TooltipPerformance.stories.js.map +1 -0
- package/dist/Tooltip/index.d.ts +2 -1
- package/dist/Tooltip/index.js +2 -1
- package/dist/Tooltip/index.js.map +1 -1
- package/dist/example/src/Example.tsx +109 -100
- package/dist/example/src/index.css +55 -46
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js +3127 -215
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3127 -214
- package/dist/index.js.map +1 -1
- package/dist/styles.css +46 -1
- package/package.json +7 -2
- package/dist/example/package-lock.json +0 -3369
package/dist/styles.css
CHANGED
|
@@ -1704,6 +1704,18 @@ ol, ul, menu {
|
|
|
1704
1704
|
background-color: currentColor;
|
|
1705
1705
|
}
|
|
1706
1706
|
|
|
1707
|
+
.tw-pointer-events-none {
|
|
1708
|
+
pointer-events: none;
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
.tw-visible {
|
|
1712
|
+
visibility: visible;
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1715
|
+
.tw-invisible {
|
|
1716
|
+
visibility: hidden;
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1707
1719
|
.tw-absolute {
|
|
1708
1720
|
position: absolute;
|
|
1709
1721
|
}
|
|
@@ -1748,6 +1760,10 @@ ol, ul, menu {
|
|
|
1748
1760
|
z-index: 50;
|
|
1749
1761
|
}
|
|
1750
1762
|
|
|
1763
|
+
.tw-z-\[9999\] {
|
|
1764
|
+
z-index: 9999;
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1751
1767
|
.tw-m-0 {
|
|
1752
1768
|
margin: 0px;
|
|
1753
1769
|
}
|
|
@@ -1796,6 +1812,10 @@ ol, ul, menu {
|
|
|
1796
1812
|
height: 0.875rem;
|
|
1797
1813
|
}
|
|
1798
1814
|
|
|
1815
|
+
.tw-h-\[10px\] {
|
|
1816
|
+
height: 10px;
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1799
1819
|
.tw-h-inputs {
|
|
1800
1820
|
height: 34px;
|
|
1801
1821
|
}
|
|
@@ -1808,6 +1828,10 @@ ol, ul, menu {
|
|
|
1808
1828
|
width: 0.875rem;
|
|
1809
1829
|
}
|
|
1810
1830
|
|
|
1831
|
+
.tw-w-\[10px\] {
|
|
1832
|
+
width: 10px;
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1811
1835
|
.tw-w-\[200px\] {
|
|
1812
1836
|
width: 200px;
|
|
1813
1837
|
}
|
|
@@ -1847,6 +1871,11 @@ ol, ul, menu {
|
|
|
1847
1871
|
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));
|
|
1848
1872
|
}
|
|
1849
1873
|
|
|
1874
|
+
.tw-rotate-45 {
|
|
1875
|
+
--tw-rotate: 45deg;
|
|
1876
|
+
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));
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1850
1879
|
.tw-cursor-not-allowed {
|
|
1851
1880
|
cursor: not-allowed;
|
|
1852
1881
|
}
|
|
@@ -1879,6 +1908,10 @@ ol, ul, menu {
|
|
|
1879
1908
|
gap: 1rem;
|
|
1880
1909
|
}
|
|
1881
1910
|
|
|
1911
|
+
.tw-overflow-hidden {
|
|
1912
|
+
overflow: hidden;
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1882
1915
|
.tw-whitespace-nowrap {
|
|
1883
1916
|
white-space: nowrap;
|
|
1884
1917
|
}
|
|
@@ -2189,6 +2222,19 @@ ol, ul, menu {
|
|
|
2189
2222
|
background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" fill="black" xmlns="http://www.w3.org/2000/svg"><path d="M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z"/></svg>');
|
|
2190
2223
|
}
|
|
2191
2224
|
|
|
2225
|
+
@keyframes fadeIn {
|
|
2226
|
+
0% {
|
|
2227
|
+
opacity: 0;
|
|
2228
|
+
}
|
|
2229
|
+
100% {
|
|
2230
|
+
opacity: 1;
|
|
2231
|
+
}
|
|
2232
|
+
}
|
|
2233
|
+
|
|
2234
|
+
.fade-in {
|
|
2235
|
+
animation: fadeIn 500ms;
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2192
2238
|
.before\:tw-absolute::before {
|
|
2193
2239
|
content: var(--tw-content);
|
|
2194
2240
|
position: absolute;
|
|
@@ -2591,4 +2637,3 @@ ol, ul, menu {
|
|
|
2591
2637
|
--tw-text-opacity: 1;
|
|
2592
2638
|
color: rgb(var(--sq-color-dark-dark));
|
|
2593
2639
|
}
|
|
2594
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seeqdev/qomponents",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.21",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.js",
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"@testing-library/jest-dom": "5.16.5",
|
|
42
42
|
"@testing-library/react": "14.0.0",
|
|
43
43
|
"@testing-library/user-event": "14.4.3",
|
|
44
|
+
"@types/dompurify": "^3.0.2",
|
|
44
45
|
"@types/jest": "29.4.0",
|
|
45
46
|
"@types/react": "18.0.27",
|
|
46
47
|
"@types/react-dom": "18.0.11",
|
|
@@ -55,6 +56,7 @@
|
|
|
55
56
|
"postcss-import": "15.1.0",
|
|
56
57
|
"react": "18.2.0",
|
|
57
58
|
"react-dom": "18.2.0",
|
|
59
|
+
"@react-types/shared": "3.19.0",
|
|
58
60
|
"rollup": "3.17.2",
|
|
59
61
|
"rollup-plugin-copy": "3.4.0",
|
|
60
62
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
@@ -67,7 +69,10 @@
|
|
|
67
69
|
"typescript-strict-plugin": "2.1.0"
|
|
68
70
|
},
|
|
69
71
|
"dependencies": {
|
|
72
|
+
"@floating-ui/dom": "^1.5.1",
|
|
73
|
+
"dompurify": "^3.0.5",
|
|
70
74
|
"postcss": "8.4.21",
|
|
71
|
-
"react-select": "5.7.3"
|
|
75
|
+
"react-select": "5.7.3",
|
|
76
|
+
"rooks": "7.14.1"
|
|
72
77
|
}
|
|
73
78
|
}
|