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.
- package/dist/client/index.d.cts +1 -1
- package/dist/client/index.d.ts +1 -1
- package/dist/{log-TRYALTmf.d.cts → log-ERvLs2Dx.d.cts} +1 -1
- package/dist/{log-TRYALTmf.d.ts → log-ERvLs2Dx.d.ts} +1 -1
- package/dist/react/index.d.cts +4 -4
- package/dist/react/index.d.ts +4 -4
- package/dist/server/index.d.cts +1 -1
- package/dist/server/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/client/index.d.cts
CHANGED
|
@@ -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-
|
|
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
|
/**
|
package/dist/client/index.d.ts
CHANGED
|
@@ -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-
|
|
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 = {
|
package/dist/react/index.d.cts
CHANGED
|
@@ -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">) | ({
|
package/dist/react/index.d.ts
CHANGED
|
@@ -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">) | ({
|
package/dist/server/index.d.cts
CHANGED
|
@@ -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-
|
|
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
|
/**
|
package/dist/server/index.d.ts
CHANGED
|
@@ -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-
|
|
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
|
/**
|