@nswds/app 1.78.4 → 1.78.6

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/globals.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.13 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  @layer theme, base, components, utilities;
4
4
  @layer theme {
@@ -955,7 +955,7 @@
955
955
  --tw-prose-invert-quote-borders: oklch(37.3% 0.034 259.733);
956
956
  --tw-prose-invert-captions: oklch(70.7% 0.022 261.325);
957
957
  --tw-prose-invert-kbd: #fff;
958
- --tw-prose-invert-kbd-shadows: rgb(255, 255, 255 / 10%);
958
+ --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);
959
959
  --tw-prose-invert-code: #fff;
960
960
  --tw-prose-invert-pre-code: oklch(87.2% 0.01 258.338);
961
961
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
@@ -2304,7 +2304,7 @@
2304
2304
  border-radius: var(--radius-md);
2305
2305
  }
2306
2306
  .rounded-none {
2307
- border-radius: 0;
2307
+ border-radius: 0 !important;
2308
2308
  }
2309
2309
  .rounded-sm {
2310
2310
  border-radius: var(--radius-sm);
@@ -7377,7 +7377,7 @@
7377
7377
  }
7378
7378
  .data-\[range-middle\=true\]\:rounded-none {
7379
7379
  &[data-range-middle="true"] {
7380
- border-radius: 0;
7380
+ border-radius: 0 !important;
7381
7381
  }
7382
7382
  }
7383
7383
  .data-\[range-middle\=true\]\:bg-accent {
@@ -7423,7 +7423,7 @@
7423
7423
  }
7424
7424
  .data-\[selected\=true\]\:rounded-none {
7425
7425
  &[data-selected="true"] {
7426
- border-radius: 0;
7426
+ border-radius: 0 !important;
7427
7427
  }
7428
7428
  }
7429
7429
  .data-\[selected\=true\]\:bg-primary-800\/10 {
package/dist/index.cjs CHANGED
@@ -17527,7 +17527,7 @@ function FormatToggle({ format, setFormat }) {
17527
17527
 
17528
17528
  // package.json
17529
17529
  var package_default = {
17530
- version: "1.78.0"};
17530
+ version: "1.78.5"};
17531
17531
  var SluggerContext = React5__namespace.default.createContext(null);
17532
17532
  function flattenText(nodes) {
17533
17533
  if (nodes == null || typeof nodes === "boolean") return "";
@@ -21023,6 +21023,10 @@ var JSAnimation = class extends WithPromise {
21023
21023
  get duration() {
21024
21024
  return millisecondsToSeconds(this.calculatedDuration);
21025
21025
  }
21026
+ get iterationDuration() {
21027
+ const { delay: delay2 = 0 } = this.options || {};
21028
+ return this.duration + millisecondsToSeconds(delay2);
21029
+ }
21026
21030
  get time() {
21027
21031
  return millisecondsToSeconds(this.currentTime);
21028
21032
  }
@@ -21578,6 +21582,10 @@ var NativeAnimation = class extends WithPromise {
21578
21582
  const duration = this.animation.effect?.getComputedTiming?.().duration || 0;
21579
21583
  return millisecondsToSeconds(Number(duration));
21580
21584
  }
21585
+ get iterationDuration() {
21586
+ const { delay: delay2 = 0 } = this.options || {};
21587
+ return this.duration + millisecondsToSeconds(delay2);
21588
+ }
21581
21589
  get time() {
21582
21590
  return millisecondsToSeconds(Number(this.animation.currentTime) || 0);
21583
21591
  }
@@ -21719,7 +21727,7 @@ function canAnimate(keyframes2, name, type, velocity) {
21719
21727
  // node_modules/motion-dom/dist/es/animation/utils/make-animation-instant.mjs
21720
21728
  function makeAnimationInstant(options) {
21721
21729
  options.duration = 0;
21722
- options.type === "keyframes";
21730
+ options.type = "keyframes";
21723
21731
  }
21724
21732
 
21725
21733
  // node_modules/motion-dom/dist/es/animation/waapi/supports/waapi.mjs
@@ -21826,6 +21834,9 @@ var AsyncMotionValueAnimation = class extends WithPromise {
21826
21834
  get duration() {
21827
21835
  return this.animation.duration;
21828
21836
  }
21837
+ get iterationDuration() {
21838
+ return this.animation.iterationDuration;
21839
+ }
21829
21840
  get time() {
21830
21841
  return this.animation.time;
21831
21842
  }