@seeqdev/qomponents 0.0.105 → 0.0.107
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/Alert/Alert.js +3 -3
- package/dist/Alert/Alert.js.map +1 -1
- package/dist/Alert/Alert.test.js +1 -1
- package/dist/Alert/Alert.test.js.map +1 -1
- package/dist/Button/Button.js +5 -3
- package/dist/Button/Button.js.map +1 -1
- package/dist/InputGroup/InputGroup.d.ts +7 -0
- package/dist/InputGroup/InputGroup.js +26 -0
- package/dist/InputGroup/InputGroup.js.map +1 -0
- package/dist/InputGroup/InputGroup.stories.d.ts +5 -0
- package/dist/InputGroup/InputGroup.stories.js +142 -0
- package/dist/InputGroup/InputGroup.stories.js.map +1 -0
- package/dist/InputGroup/InputGroup.test.d.ts +1 -0
- package/dist/InputGroup/InputGroup.test.js +43 -0
- package/dist/InputGroup/InputGroup.test.js.map +1 -0
- package/dist/InputGroup/InputGroup.types.d.ts +20 -0
- package/dist/InputGroup/InputGroup.types.js +2 -0
- package/dist/InputGroup/InputGroup.types.js.map +1 -0
- package/dist/InputGroup/index.d.ts +1 -0
- package/dist/InputGroup/index.js +2 -0
- package/dist/InputGroup/index.js.map +1 -0
- package/dist/TextField/TextField.js +4 -2
- package/dist/TextField/TextField.js.map +1 -1
- package/dist/TextField/TextField.stories.js +8 -2
- package/dist/TextField/TextField.stories.js.map +1 -1
- package/dist/TextField/TextField.types.d.ts +2 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +43 -19
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +43 -18
- package/dist/index.js.map +1 -1
- package/dist/styles.css +49 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1532,6 +1532,7 @@ video {
|
|
|
1532
1532
|
--sq-darkish-gray: 183, 183, 183;
|
|
1533
1533
|
--sq-danger-color: 217, 83, 79;
|
|
1534
1534
|
--sq-warning-color: 240, 173, 78;
|
|
1535
|
+
--sq-bg-warning-color: 255, 243, 205;
|
|
1535
1536
|
--sq-success-color: 114, 192, 44;
|
|
1536
1537
|
--sq-icon: 4, 145, 194;
|
|
1537
1538
|
--sq-link: 42, 92, 132;
|
|
@@ -1956,6 +1957,10 @@ ol,
|
|
|
1956
1957
|
margin-left: 1rem;
|
|
1957
1958
|
}
|
|
1958
1959
|
|
|
1960
|
+
.tw-ml-\[-1px\] {
|
|
1961
|
+
margin-left: -1px;
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1959
1964
|
.tw-ml-\[3px\] {
|
|
1960
1965
|
margin-left: 3px;
|
|
1961
1966
|
}
|
|
@@ -2276,6 +2281,10 @@ ol,
|
|
|
2276
2281
|
align-items: center;
|
|
2277
2282
|
}
|
|
2278
2283
|
|
|
2284
|
+
.tw-items-stretch {
|
|
2285
|
+
align-items: stretch;
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2279
2288
|
.tw-justify-start {
|
|
2280
2289
|
justify-content: flex-start;
|
|
2281
2290
|
}
|
|
@@ -2344,6 +2353,10 @@ ol,
|
|
|
2344
2353
|
border-radius: 0.375rem;
|
|
2345
2354
|
}
|
|
2346
2355
|
|
|
2356
|
+
.tw-rounded-none {
|
|
2357
|
+
border-radius: 0px;
|
|
2358
|
+
}
|
|
2359
|
+
|
|
2347
2360
|
.tw-rounded-sm {
|
|
2348
2361
|
border-radius: 3px;
|
|
2349
2362
|
}
|
|
@@ -2353,11 +2366,21 @@ ol,
|
|
|
2353
2366
|
border-bottom-left-radius: 0.25rem;
|
|
2354
2367
|
}
|
|
2355
2368
|
|
|
2369
|
+
.tw-rounded-l-none {
|
|
2370
|
+
border-top-left-radius: 0px;
|
|
2371
|
+
border-bottom-left-radius: 0px;
|
|
2372
|
+
}
|
|
2373
|
+
|
|
2356
2374
|
.tw-rounded-l-sm {
|
|
2357
2375
|
border-top-left-radius: 3px;
|
|
2358
2376
|
border-bottom-left-radius: 3px;
|
|
2359
2377
|
}
|
|
2360
2378
|
|
|
2379
|
+
.tw-rounded-r-none {
|
|
2380
|
+
border-top-right-radius: 0px;
|
|
2381
|
+
border-bottom-right-radius: 0px;
|
|
2382
|
+
}
|
|
2383
|
+
|
|
2361
2384
|
.tw-rounded-r-sm {
|
|
2362
2385
|
border-top-right-radius: 3px;
|
|
2363
2386
|
border-bottom-right-radius: 3px;
|
|
@@ -2478,6 +2501,11 @@ ol,
|
|
|
2478
2501
|
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
2479
2502
|
}
|
|
2480
2503
|
|
|
2504
|
+
.tw-bg-sq-bg-warning-color {
|
|
2505
|
+
--tw-bg-opacity: 1;
|
|
2506
|
+
background-color: rgb(var(--sq-bg-warning-color));
|
|
2507
|
+
}
|
|
2508
|
+
|
|
2481
2509
|
.tw-bg-sq-color-dark {
|
|
2482
2510
|
--tw-bg-opacity: 1;
|
|
2483
2511
|
background-color: rgb(var(--sq-color-dark));
|
|
@@ -3121,6 +3149,15 @@ ol,
|
|
|
3121
3149
|
content: var(--tw-content);
|
|
3122
3150
|
}
|
|
3123
3151
|
|
|
3152
|
+
.last\:tw-rounded-r-sm:last-child {
|
|
3153
|
+
border-top-right-radius: 3px;
|
|
3154
|
+
border-bottom-right-radius: 3px;
|
|
3155
|
+
}
|
|
3156
|
+
|
|
3157
|
+
.last\:tw-border:last-child {
|
|
3158
|
+
border-width: 1px;
|
|
3159
|
+
}
|
|
3160
|
+
|
|
3124
3161
|
.last\:tw-border-r-0:last-child {
|
|
3125
3162
|
border-right-width: 0px;
|
|
3126
3163
|
}
|
|
@@ -3230,6 +3267,18 @@ ol,
|
|
|
3230
3267
|
border-color: rgb(var(--sq-color-dark));
|
|
3231
3268
|
}
|
|
3232
3269
|
|
|
3270
|
+
.focus\:tw-z-30:focus {
|
|
3271
|
+
z-index: 30;
|
|
3272
|
+
}
|
|
3273
|
+
|
|
3274
|
+
.focus\:tw-z-40:focus {
|
|
3275
|
+
z-index: 40;
|
|
3276
|
+
}
|
|
3277
|
+
|
|
3278
|
+
.focus\:tw-border:focus {
|
|
3279
|
+
border-width: 1px;
|
|
3280
|
+
}
|
|
3281
|
+
|
|
3233
3282
|
.focus\:tw-border-l:focus {
|
|
3234
3283
|
border-left-width: 1px;
|
|
3235
3284
|
}
|