@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/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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seeqdev/qomponents",
3
- "version": "0.0.105",
3
+ "version": "0.0.107",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "types": "dist/index.js",