qstd 0.2.8 → 0.2.9

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.
@@ -1,4 +1,4 @@
1
- export { d as Dict, f as Flow, i as Int, l as List, a as Log, m as Money, r as Random, s as Str, t as Time } from '../log-TRYALTmf.cjs';
1
+ export { d as Dict, f as Flow, i as Int, l as List, a as Log, m as Money, r as Random, s as Str, t as Time } from '../log-ERvLs2Dx.cjs';
2
2
  import 'date-fns';
3
3
 
4
4
  /**
@@ -1,4 +1,4 @@
1
- export { d as Dict, f as Flow, i as Int, l as List, a as Log, m as Money, r as Random, s as Str, t as Time } from '../log-TRYALTmf.js';
1
+ export { d as Dict, f as Flow, i as Int, l as List, a as Log, m as Money, r as Random, s as Str, t as Time } from '../log-ERvLs2Dx.js';
2
2
  import 'date-fns';
3
3
 
4
4
  /**
@@ -256,7 +256,7 @@ type DurationOptions = {
256
256
  * formatDuration(45300, { format: "fractional" }) // "45.3s"
257
257
  * formatDuration(64400, { format: "fractional" }) // "1m 4.4s"
258
258
  */
259
- declare const formatDuration: (ms: number | null, options?: DurationOptions) => string;
259
+ declare const formatDuration: (ms: number | null | undefined, options?: DurationOptions) => string;
260
260
  type DateInput = Date | string | number;
261
261
  type DateFormatStyle = "iso" | "short" | "medium" | "long" | "relative" | "year";
262
262
  type DateOptions = {
@@ -256,7 +256,7 @@ type DurationOptions = {
256
256
  * formatDuration(45300, { format: "fractional" }) // "45.3s"
257
257
  * formatDuration(64400, { format: "fractional" }) // "1m 4.4s"
258
258
  */
259
- declare const formatDuration: (ms: number | null, options?: DurationOptions) => string;
259
+ declare const formatDuration: (ms: number | null | undefined, options?: DurationOptions) => string;
260
260
  type DateInput = Date | string | number;
261
261
  type DateFormatStyle = "iso" | "short" | "medium" | "long" | "relative" | "year";
262
262
  type DateOptions = {
@@ -20747,20 +20747,20 @@ type BlockquoteBlockProps = SharedBlockProps & HTMLProps<"blockquote"> & {
20747
20747
  type PreBlockProps = SharedBlockProps & HTMLProps<"pre"> & {
20748
20748
  is: "pre";
20749
20749
  };
20750
- type FormBlockProps = SharedBlockProps & HTMLProps<"form"> & (({
20750
+ type FormBlockProps = SharedBlockProps & HTMLProps<"form"> & ({
20751
20751
  is: "form";
20752
20752
  as?: undefined;
20753
- }) | ({
20753
+ } | ({
20754
20754
  is: "form";
20755
20755
  as: "label";
20756
20756
  } & HTMLProps<"label">) | ({
20757
20757
  is: "form";
20758
20758
  as: "legend";
20759
20759
  } & HTMLProps<"legend">));
20760
- type TableBlockProps = SharedBlockProps & HTMLProps<"table"> & (({
20760
+ type TableBlockProps = SharedBlockProps & HTMLProps<"table"> & ({
20761
20761
  is: "table";
20762
20762
  as?: undefined;
20763
- }) | ({
20763
+ } | ({
20764
20764
  is: "table";
20765
20765
  as: "tr";
20766
20766
  } & HTMLProps<"tr">) | ({
@@ -20747,20 +20747,20 @@ type BlockquoteBlockProps = SharedBlockProps & HTMLProps<"blockquote"> & {
20747
20747
  type PreBlockProps = SharedBlockProps & HTMLProps<"pre"> & {
20748
20748
  is: "pre";
20749
20749
  };
20750
- type FormBlockProps = SharedBlockProps & HTMLProps<"form"> & (({
20750
+ type FormBlockProps = SharedBlockProps & HTMLProps<"form"> & ({
20751
20751
  is: "form";
20752
20752
  as?: undefined;
20753
- }) | ({
20753
+ } | ({
20754
20754
  is: "form";
20755
20755
  as: "label";
20756
20756
  } & HTMLProps<"label">) | ({
20757
20757
  is: "form";
20758
20758
  as: "legend";
20759
20759
  } & HTMLProps<"legend">));
20760
- type TableBlockProps = SharedBlockProps & HTMLProps<"table"> & (({
20760
+ type TableBlockProps = SharedBlockProps & HTMLProps<"table"> & ({
20761
20761
  is: "table";
20762
20762
  as?: undefined;
20763
- }) | ({
20763
+ } | ({
20764
20764
  is: "table";
20765
20765
  as: "tr";
20766
20766
  } & HTMLProps<"tr">) | ({
@@ -1,4 +1,4 @@
1
- export { d as Dict, f as Flow, i as Int, l as List, a as Log, m as Money, r as Random, s as Str, t as Time } from '../log-TRYALTmf.cjs';
1
+ export { d as Dict, f as Flow, i as Int, l as List, a as Log, m as Money, r as Random, s as Str, t as Time } from '../log-ERvLs2Dx.cjs';
2
2
  import 'date-fns';
3
3
 
4
4
  /**
@@ -1,4 +1,4 @@
1
- export { d as Dict, f as Flow, i as Int, l as List, a as Log, m as Money, r as Random, s as Str, t as Time } from '../log-TRYALTmf.js';
1
+ export { d as Dict, f as Flow, i as Int, l as List, a as Log, m as Money, r as Random, s as Str, t as Time } from '../log-ERvLs2Dx.js';
2
2
  import 'date-fns';
3
3
 
4
4
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qstd",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "Standard Block component and utilities library with Panda CSS",
5
5
  "author": "malin1",
6
6
  "license": "MIT",