@seeqdev/qomponents 0.0.110 → 0.0.112
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/InputGroup/InputGroup.types.d.ts +19 -4
- package/dist/Slider/Slider.d.ts +6 -6
- package/dist/Slider/Slider.stories.d.ts +5 -5
- package/dist/Slider/Slider.test.d.ts +1 -1
- package/dist/Slider/Slider.types.d.ts +16 -13
- package/dist/Slider/index.d.ts +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +975 -43
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +974 -41
- package/dist/index.js.map +1 -1
- package/dist/styles.css +75 -10
- package/package.json +2 -1
package/dist/styles.css
CHANGED
|
@@ -1578,7 +1578,7 @@ video {
|
|
|
1578
1578
|
|
|
1579
1579
|
.color_datalab {
|
|
1580
1580
|
--sq-color-dark: 242, 103, 34;
|
|
1581
|
-
--sq-color-dark-dark:
|
|
1581
|
+
--sq-color-dark-dark: 244, 123, 62;
|
|
1582
1582
|
--sq-color-light: 237, 247, 246;
|
|
1583
1583
|
--sq-color-highlight: 244, 123, 62;
|
|
1584
1584
|
--sq-icon: 242, 103, 34;
|
|
@@ -1592,7 +1592,7 @@ video {
|
|
|
1592
1592
|
|
|
1593
1593
|
.color_vantage {
|
|
1594
1594
|
--sq-color-dark: 120, 73, 169;
|
|
1595
|
-
--sq-color-dark-dark:
|
|
1595
|
+
--sq-color-dark-dark: 172, 119, 225;
|
|
1596
1596
|
--sq-color-light: 163, 95, 236;
|
|
1597
1597
|
--sq-color-highlight: 175, 149, 201;
|
|
1598
1598
|
--sq-icon: 172, 119, 225;
|
|
@@ -2001,6 +2001,10 @@ ol,
|
|
|
2001
2001
|
margin-top: -7px;
|
|
2002
2002
|
}
|
|
2003
2003
|
|
|
2004
|
+
.tw-block {
|
|
2005
|
+
display: block;
|
|
2006
|
+
}
|
|
2007
|
+
|
|
2004
2008
|
.tw-inline-block {
|
|
2005
2009
|
display: inline-block;
|
|
2006
2010
|
}
|
|
@@ -2033,6 +2037,10 @@ ol,
|
|
|
2033
2037
|
height: 0.875rem;
|
|
2034
2038
|
}
|
|
2035
2039
|
|
|
2040
|
+
.tw-h-5 {
|
|
2041
|
+
height: 1.25rem;
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2036
2044
|
.tw-h-8 {
|
|
2037
2045
|
height: 2rem;
|
|
2038
2046
|
}
|
|
@@ -2061,6 +2069,10 @@ ol,
|
|
|
2061
2069
|
height: 45px;
|
|
2062
2070
|
}
|
|
2063
2071
|
|
|
2072
|
+
.tw-h-\[5px\] {
|
|
2073
|
+
height: 5px;
|
|
2074
|
+
}
|
|
2075
|
+
|
|
2064
2076
|
.tw-h-full {
|
|
2065
2077
|
height: 100%;
|
|
2066
2078
|
}
|
|
@@ -2183,6 +2195,10 @@ ol,
|
|
|
2183
2195
|
flex-grow: 1;
|
|
2184
2196
|
}
|
|
2185
2197
|
|
|
2198
|
+
.tw-grow {
|
|
2199
|
+
flex-grow: 1;
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2186
2202
|
.-tw-translate-x-1\/2 {
|
|
2187
2203
|
--tw-translate-x: -50%;
|
|
2188
2204
|
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));
|
|
@@ -2251,6 +2267,10 @@ ol,
|
|
|
2251
2267
|
cursor: pointer;
|
|
2252
2268
|
}
|
|
2253
2269
|
|
|
2270
|
+
.tw-touch-none {
|
|
2271
|
+
touch-action: none;
|
|
2272
|
+
}
|
|
2273
|
+
|
|
2254
2274
|
.tw-select-none {
|
|
2255
2275
|
-webkit-user-select: none;
|
|
2256
2276
|
-moz-user-select: none;
|
|
@@ -2285,10 +2305,6 @@ ol,
|
|
|
2285
2305
|
align-items: center;
|
|
2286
2306
|
}
|
|
2287
2307
|
|
|
2288
|
-
.tw-items-stretch {
|
|
2289
|
-
align-items: stretch;
|
|
2290
|
-
}
|
|
2291
|
-
|
|
2292
2308
|
.tw-justify-start {
|
|
2293
2309
|
justify-content: flex-start;
|
|
2294
2310
|
}
|
|
@@ -2349,6 +2365,10 @@ ol,
|
|
|
2349
2365
|
border-radius: 3px;
|
|
2350
2366
|
}
|
|
2351
2367
|
|
|
2368
|
+
.tw-rounded-\[4px\] {
|
|
2369
|
+
border-radius: 4px;
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2352
2372
|
.tw-rounded-full {
|
|
2353
2373
|
border-radius: 9999px;
|
|
2354
2374
|
}
|
|
@@ -2509,6 +2529,16 @@ ol,
|
|
|
2509
2529
|
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
2510
2530
|
}
|
|
2511
2531
|
|
|
2532
|
+
.tw-bg-green-400 {
|
|
2533
|
+
--tw-bg-opacity: 1;
|
|
2534
|
+
background-color: rgb(74 222 128 / var(--tw-bg-opacity));
|
|
2535
|
+
}
|
|
2536
|
+
|
|
2537
|
+
.tw-bg-red-400 {
|
|
2538
|
+
--tw-bg-opacity: 1;
|
|
2539
|
+
background-color: rgb(248 113 113 / var(--tw-bg-opacity));
|
|
2540
|
+
}
|
|
2541
|
+
|
|
2512
2542
|
.tw-bg-sq-bg-warning-color {
|
|
2513
2543
|
--tw-bg-opacity: 1;
|
|
2514
2544
|
background-color: rgb(var(--sq-bg-warning-color));
|
|
@@ -2961,6 +2991,14 @@ ol,
|
|
|
2961
2991
|
outline-offset: 2px;
|
|
2962
2992
|
}
|
|
2963
2993
|
|
|
2994
|
+
.tw-transition {
|
|
2995
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
2996
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
2997
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
|
|
2998
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2999
|
+
transition-duration: 150ms;
|
|
3000
|
+
}
|
|
3001
|
+
|
|
2964
3002
|
.tw-transition-transform {
|
|
2965
3003
|
transition-property: transform;
|
|
2966
3004
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -2975,6 +3013,10 @@ ol,
|
|
|
2975
3013
|
transition-duration: 660ms;
|
|
2976
3014
|
}
|
|
2977
3015
|
|
|
3016
|
+
.tw-ease-in-out {
|
|
3017
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3018
|
+
}
|
|
3019
|
+
|
|
2978
3020
|
/* Heads up! Before these colors can be used you must also add them to the tailwind.config.cjs! */
|
|
2979
3021
|
|
|
2980
3022
|
/* Make sure to keep these colors in sync with the webserver/_custom_variables.scss values to ensure cohesive UIs */
|
|
@@ -3182,10 +3224,6 @@ ol,
|
|
|
3182
3224
|
border-bottom-right-radius: 3px;
|
|
3183
3225
|
}
|
|
3184
3226
|
|
|
3185
|
-
.last\:tw-border:last-child {
|
|
3186
|
-
border-width: 1px;
|
|
3187
|
-
}
|
|
3188
|
-
|
|
3189
3227
|
.last\:tw-border-r-0:last-child {
|
|
3190
3228
|
border-right-width: 0px;
|
|
3191
3229
|
}
|
|
@@ -3356,6 +3394,18 @@ ol,
|
|
|
3356
3394
|
outline-offset: 2px;
|
|
3357
3395
|
}
|
|
3358
3396
|
|
|
3397
|
+
.active\:tw-z-30:active {
|
|
3398
|
+
z-index: 30;
|
|
3399
|
+
}
|
|
3400
|
+
|
|
3401
|
+
.active\:tw-z-50:active {
|
|
3402
|
+
z-index: 50;
|
|
3403
|
+
}
|
|
3404
|
+
|
|
3405
|
+
.active\:tw-border:active {
|
|
3406
|
+
border-width: 1px;
|
|
3407
|
+
}
|
|
3408
|
+
|
|
3359
3409
|
.active\:tw-border-l:active {
|
|
3360
3410
|
border-left-width: 1px;
|
|
3361
3411
|
}
|
|
@@ -3369,6 +3419,11 @@ ol,
|
|
|
3369
3419
|
border-color: rgb(var(--sq-color-dark));
|
|
3370
3420
|
}
|
|
3371
3421
|
|
|
3422
|
+
.active\:tw-bg-sq-color-dark-dark:active {
|
|
3423
|
+
--tw-bg-opacity: 1;
|
|
3424
|
+
background-color: rgb(var(--sq-color-dark-dark));
|
|
3425
|
+
}
|
|
3426
|
+
|
|
3372
3427
|
.active\:tw-bg-sq-dark-gray:active {
|
|
3373
3428
|
--tw-bg-opacity: 1;
|
|
3374
3429
|
background-color: rgb(var(--sq-dark-gray));
|
|
@@ -3419,6 +3474,11 @@ ol,
|
|
|
3419
3474
|
opacity: 1;
|
|
3420
3475
|
}
|
|
3421
3476
|
|
|
3477
|
+
.aria-disabled\:tw-bg-sq-dark-gray[aria-disabled="true"] {
|
|
3478
|
+
--tw-bg-opacity: 1;
|
|
3479
|
+
background-color: rgb(var(--sq-dark-gray));
|
|
3480
|
+
}
|
|
3481
|
+
|
|
3422
3482
|
.data-\[disabled\]\:tw-pointer-events-none[data-disabled] {
|
|
3423
3483
|
pointer-events: none;
|
|
3424
3484
|
}
|
|
@@ -3770,3 +3830,8 @@ ol,
|
|
|
3770
3830
|
--tw-text-opacity: 1;
|
|
3771
3831
|
color: rgba(var(--sq-dark-text), 0.3);
|
|
3772
3832
|
}
|
|
3833
|
+
|
|
3834
|
+
.tw-dark .dark\:aria-disabled\:tw-bg-sq-dark-disabled-gray[aria-disabled="true"] {
|
|
3835
|
+
--tw-bg-opacity: 1;
|
|
3836
|
+
background-color: rgb(var(--sq-dark-disabled-gray));
|
|
3837
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seeqdev/qomponents",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.112",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.js",
|
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
"@radix-ui/react-dialog": "1.0.5",
|
|
75
75
|
"@radix-ui/react-dropdown-menu": "2.0.6",
|
|
76
76
|
"@radix-ui/react-popover": "1.0.7",
|
|
77
|
+
"@radix-ui/react-slider": "1.2.2",
|
|
77
78
|
"@radix-ui/react-progress": "1.1.1",
|
|
78
79
|
"@radix-ui/react-tabs": "1.0.4",
|
|
79
80
|
"dompurify": "3.2.3",
|