@seeqdev/qomponents 0.0.106 → 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/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 +16 -17
- package/dist/InputGroup/InputGroup.js.map +1 -1
- package/dist/InputGroup/InputGroup.stories.d.ts +5 -0
- package/dist/InputGroup/InputGroup.stories.js +102 -26
- package/dist/InputGroup/InputGroup.stories.js.map +1 -1
- package/dist/InputGroup/InputGroup.test.d.ts +1 -1
- package/dist/InputGroup/InputGroup.test.js +12 -9
- package/dist/InputGroup/InputGroup.test.js.map +1 -1
- package/dist/InputGroup/InputGroup.types.d.ts +20 -0
- package/dist/InputGroup/index.d.ts +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 +41 -17
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +41 -16
- package/dist/index.js.map +1 -1
- package/dist/styles.css +43 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1957,6 +1957,10 @@ ol,
|
|
|
1957
1957
|
margin-left: 1rem;
|
|
1958
1958
|
}
|
|
1959
1959
|
|
|
1960
|
+
.tw-ml-\[-1px\] {
|
|
1961
|
+
margin-left: -1px;
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1960
1964
|
.tw-ml-\[3px\] {
|
|
1961
1965
|
margin-left: 3px;
|
|
1962
1966
|
}
|
|
@@ -2277,6 +2281,10 @@ ol,
|
|
|
2277
2281
|
align-items: center;
|
|
2278
2282
|
}
|
|
2279
2283
|
|
|
2284
|
+
.tw-items-stretch {
|
|
2285
|
+
align-items: stretch;
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2280
2288
|
.tw-justify-start {
|
|
2281
2289
|
justify-content: flex-start;
|
|
2282
2290
|
}
|
|
@@ -2345,6 +2353,10 @@ ol,
|
|
|
2345
2353
|
border-radius: 0.375rem;
|
|
2346
2354
|
}
|
|
2347
2355
|
|
|
2356
|
+
.tw-rounded-none {
|
|
2357
|
+
border-radius: 0px;
|
|
2358
|
+
}
|
|
2359
|
+
|
|
2348
2360
|
.tw-rounded-sm {
|
|
2349
2361
|
border-radius: 3px;
|
|
2350
2362
|
}
|
|
@@ -2354,11 +2366,21 @@ ol,
|
|
|
2354
2366
|
border-bottom-left-radius: 0.25rem;
|
|
2355
2367
|
}
|
|
2356
2368
|
|
|
2369
|
+
.tw-rounded-l-none {
|
|
2370
|
+
border-top-left-radius: 0px;
|
|
2371
|
+
border-bottom-left-radius: 0px;
|
|
2372
|
+
}
|
|
2373
|
+
|
|
2357
2374
|
.tw-rounded-l-sm {
|
|
2358
2375
|
border-top-left-radius: 3px;
|
|
2359
2376
|
border-bottom-left-radius: 3px;
|
|
2360
2377
|
}
|
|
2361
2378
|
|
|
2379
|
+
.tw-rounded-r-none {
|
|
2380
|
+
border-top-right-radius: 0px;
|
|
2381
|
+
border-bottom-right-radius: 0px;
|
|
2382
|
+
}
|
|
2383
|
+
|
|
2362
2384
|
.tw-rounded-r-sm {
|
|
2363
2385
|
border-top-right-radius: 3px;
|
|
2364
2386
|
border-bottom-right-radius: 3px;
|
|
@@ -3127,6 +3149,15 @@ ol,
|
|
|
3127
3149
|
content: var(--tw-content);
|
|
3128
3150
|
}
|
|
3129
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
|
+
|
|
3130
3161
|
.last\:tw-border-r-0:last-child {
|
|
3131
3162
|
border-right-width: 0px;
|
|
3132
3163
|
}
|
|
@@ -3236,6 +3267,18 @@ ol,
|
|
|
3236
3267
|
border-color: rgb(var(--sq-color-dark));
|
|
3237
3268
|
}
|
|
3238
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
|
+
|
|
3239
3282
|
.focus\:tw-border-l:focus {
|
|
3240
3283
|
border-left-width: 1px;
|
|
3241
3284
|
}
|