@seeqdev/qomponents 0.0.64 → 0.0.65
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/ButtonWithDropdown/ButtonWithDropdown.js +19 -14
- package/dist/ButtonWithDropdown/ButtonWithDropdown.js.map +1 -1
- package/dist/ButtonWithDropdown/ButtonWithDropdown.stories.js +6 -6
- package/dist/ButtonWithDropdown/ButtonWithDropdown.stories.js.map +1 -1
- package/dist/ButtonWithDropdown/ButtonWithDropdown.test.js +1 -1
- package/dist/ButtonWithDropdown/ButtonWithDropdown.test.js.map +1 -1
- package/dist/ButtonWithPopover/ButtonWithPopover.js +12 -3
- package/dist/ButtonWithPopover/ButtonWithPopover.js.map +1 -1
- package/dist/ButtonWithPopover/ButtonWithPopover.stories.js +7 -7
- package/dist/ButtonWithPopover/ButtonWithPopover.stories.js.map +1 -1
- package/dist/ButtonWithPopover/ButtonWithPopover.test.js +1 -1
- package/dist/ButtonWithPopover/ButtonWithPopover.test.js.map +1 -1
- package/dist/ButtonWithPopover/ButtonWithPopover.types.d.ts +2 -0
- package/dist/Checkbox/Checkbox.js +2 -4
- package/dist/Checkbox/Checkbox.js.map +1 -1
- package/dist/Checkbox/Checkbox.stories.js +5 -7
- package/dist/Checkbox/Checkbox.stories.js.map +1 -1
- package/dist/Icon/Icon.js +11 -3
- package/dist/Icon/Icon.js.map +1 -1
- package/dist/index.esm.js +2018 -376
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2018 -376
- package/dist/index.js.map +1 -1
- package/dist/styles.css +28 -10
- package/package.json +2 -1
- package/dist/Tooltip/qTip.utilities.js +0 -11
- package/dist/Tooltip/qTip.utilities.js.map +0 -1
package/dist/styles.css
CHANGED
|
@@ -1945,8 +1945,8 @@ ol,
|
|
|
1945
1945
|
margin-top: 0.5rem;
|
|
1946
1946
|
}
|
|
1947
1947
|
|
|
1948
|
-
.tw-mt-\[-
|
|
1949
|
-
margin-top: -
|
|
1948
|
+
.tw-mt-\[-7px\] {
|
|
1949
|
+
margin-top: -7px;
|
|
1950
1950
|
}
|
|
1951
1951
|
|
|
1952
1952
|
.tw-inline-block {
|
|
@@ -1977,6 +1977,10 @@ ol,
|
|
|
1977
1977
|
height: 10px;
|
|
1978
1978
|
}
|
|
1979
1979
|
|
|
1980
|
+
.tw-h-\[15px\] {
|
|
1981
|
+
height: 15px;
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1980
1984
|
.tw-h-\[1px\] {
|
|
1981
1985
|
height: 1px;
|
|
1982
1986
|
}
|
|
@@ -1989,10 +1993,6 @@ ol,
|
|
|
1989
1993
|
height: 45px;
|
|
1990
1994
|
}
|
|
1991
1995
|
|
|
1992
|
-
.tw-h-\[6px\] {
|
|
1993
|
-
height: 6px;
|
|
1994
|
-
}
|
|
1995
|
-
|
|
1996
1996
|
.tw-h-full {
|
|
1997
1997
|
height: 100%;
|
|
1998
1998
|
}
|
|
@@ -2017,6 +2017,10 @@ ol,
|
|
|
2017
2017
|
width: 10px;
|
|
2018
2018
|
}
|
|
2019
2019
|
|
|
2020
|
+
.tw-w-\[15px\] {
|
|
2021
|
+
width: 15px;
|
|
2022
|
+
}
|
|
2023
|
+
|
|
2020
2024
|
.tw-w-\[18px\] {
|
|
2021
2025
|
width: 18px;
|
|
2022
2026
|
}
|
|
@@ -2025,10 +2029,6 @@ ol,
|
|
|
2025
2029
|
width: 200px;
|
|
2026
2030
|
}
|
|
2027
2031
|
|
|
2028
|
-
.tw-w-\[6px\] {
|
|
2029
|
-
width: 6px;
|
|
2030
|
-
}
|
|
2031
|
-
|
|
2032
2032
|
.tw-w-full {
|
|
2033
2033
|
width: 100%;
|
|
2034
2034
|
}
|
|
@@ -2585,6 +2585,10 @@ ol,
|
|
|
2585
2585
|
padding-right: 0.375rem;
|
|
2586
2586
|
}
|
|
2587
2587
|
|
|
2588
|
+
.tw-pt-2 {
|
|
2589
|
+
padding-top: 0.5rem;
|
|
2590
|
+
}
|
|
2591
|
+
|
|
2588
2592
|
.tw-text-left {
|
|
2589
2593
|
text-align: left;
|
|
2590
2594
|
}
|
|
@@ -2632,6 +2636,10 @@ ol,
|
|
|
2632
2636
|
line-height: 1rem;
|
|
2633
2637
|
}
|
|
2634
2638
|
|
|
2639
|
+
.tw-font-bold {
|
|
2640
|
+
font-weight: 700;
|
|
2641
|
+
}
|
|
2642
|
+
|
|
2635
2643
|
.tw-font-medium {
|
|
2636
2644
|
font-weight: 500;
|
|
2637
2645
|
}
|
|
@@ -3291,6 +3299,11 @@ ol,
|
|
|
3291
3299
|
color: rgb(var(--sq-disabled-gray));
|
|
3292
3300
|
}
|
|
3293
3301
|
|
|
3302
|
+
.tw-dark .dark\:tw-border-gray-500 {
|
|
3303
|
+
--tw-border-opacity: 1;
|
|
3304
|
+
border-color: rgb(107 114 128 / var(--tw-border-opacity));
|
|
3305
|
+
}
|
|
3306
|
+
|
|
3294
3307
|
.tw-dark .dark\:tw-border-gray-700 {
|
|
3295
3308
|
--tw-border-opacity: 1;
|
|
3296
3309
|
border-color: rgb(55 65 81 / var(--tw-border-opacity));
|
|
@@ -3321,6 +3334,11 @@ ol,
|
|
|
3321
3334
|
border-bottom-color: rgb(var(--sq-color-dark));
|
|
3322
3335
|
}
|
|
3323
3336
|
|
|
3337
|
+
.tw-dark .dark\:tw-bg-gray-500 {
|
|
3338
|
+
--tw-bg-opacity: 1;
|
|
3339
|
+
background-color: rgb(107 114 128 / var(--tw-bg-opacity));
|
|
3340
|
+
}
|
|
3341
|
+
|
|
3324
3342
|
.tw-dark .dark\:tw-bg-gray-700 {
|
|
3325
3343
|
--tw-bg-opacity: 1;
|
|
3326
3344
|
background-color: rgb(55 65 81 / var(--tw-bg-opacity));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seeqdev/qomponents",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.65",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.js",
|
|
@@ -75,6 +75,7 @@
|
|
|
75
75
|
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
76
76
|
"@radix-ui/react-popover": "1.0.7",
|
|
77
77
|
"@radix-ui/react-tabs": "1.0.4",
|
|
78
|
+
"@radix-ui/react-hover-card": "1.0.4",
|
|
78
79
|
"dompurify": "^3.0.5",
|
|
79
80
|
"postcss": "8.4.21",
|
|
80
81
|
"react-select": "5.7.3",
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { DEFAULT_TOOL_TIP_DELAY } from './Tooltip.types';
|
|
2
|
-
export const getQTipData = ({ tooltip, tooltipPlacement, isHtmlTooltip, tooltipTestId, tooltipDelay = DEFAULT_TOOL_TIP_DELAY, }) => tooltip
|
|
3
|
-
? {
|
|
4
|
-
'data-qtip-text': tooltip,
|
|
5
|
-
'data-qtip-placement': tooltipPlacement,
|
|
6
|
-
'data-qtip-is-html': isHtmlTooltip,
|
|
7
|
-
'data-qtip-testid': tooltipTestId,
|
|
8
|
-
'data-qtip-delay': tooltipDelay,
|
|
9
|
-
}
|
|
10
|
-
: undefined;
|
|
11
|
-
//# sourceMappingURL=qTip.utilities.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"qTip.utilities.js","sourceRoot":"","sources":["../../src/Tooltip/qTip.utilities.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,sBAAsB,EAAyB,MAAM,iBAAiB,CAAC;AAEhF,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,EAC1B,OAAO,EACP,gBAAgB,EAChB,aAAa,EACb,aAAa,EACb,YAAY,GAAG,sBAAsB,GACf,EAAkC,EAAE,CAC1D,OAAO;IACL,CAAC,CAAC;QACE,gBAAgB,EAAE,OAAO;QACzB,qBAAqB,EAAE,gBAAgB;QACvC,mBAAmB,EAAE,aAAa;QAClC,kBAAkB,EAAE,aAAa;QACjC,iBAAiB,EAAE,YAAY;KAChC;IACH,CAAC,CAAC,SAAS,CAAC"}
|