nuvox 0.1.2 → 0.1.3

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.
@@ -3167,6 +3167,9 @@
3167
3167
  .nx-slider--xl .nx-slider__track {
3168
3168
  block-size: 8px;
3169
3169
  }
3170
+ .nx-slider--with-value-label {
3171
+ margin-block-start: 32px;
3172
+ }
3170
3173
  .nx-slider__range {
3171
3174
  position: absolute;
3172
3175
  inset-block: 0;
@@ -4286,14 +4289,16 @@
4286
4289
  /* src/react/Carousel.css */
4287
4290
  .nx-carousel {
4288
4291
  position: relative;
4289
- display: flex;
4290
- flex-direction: column;
4292
+ display: grid;
4293
+ grid-auto-rows: auto;
4291
4294
  gap: 10px;
4292
4295
  }
4293
4296
  .nx-carousel__viewport {
4294
4297
  position: relative;
4295
4298
  overflow: hidden;
4296
4299
  border-radius: var(--radius-lg, 12px);
4300
+ grid-row: 1;
4301
+ grid-column: 1;
4297
4302
  }
4298
4303
  .nx-carousel__viewport:focus-visible {
4299
4304
  outline: none;
@@ -4321,6 +4326,8 @@
4321
4326
  }
4322
4327
  .nx-carousel__button {
4323
4328
  position: absolute;
4329
+ grid-row: 1;
4330
+ grid-column: 1;
4324
4331
  top: 50%;
4325
4332
  transform: translateY(-50%);
4326
4333
  display: inline-flex;
@@ -5548,6 +5555,9 @@
5548
5555
  width: 32px;
5549
5556
  height: 32px;
5550
5557
  }
5558
+ [data-theme=neobrutalism] .nx-rating__star-icon {
5559
+ stroke: #000000;
5560
+ }
5551
5561
 
5552
5562
  /* src/react/OTPInput.css */
5553
5563
  .nx-otp-input {