@visulima/is-ansi-color-supported 2.3.3 → 2.3.4
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/CHANGELOG.md +11 -0
- package/dist/color-spaces.d.cts +4 -0
- package/dist/color-spaces.d.mts +4 -0
- package/dist/color-spaces.d.ts +4 -0
- package/dist/is-color-supported.browser.d.cts +5 -7
- package/dist/is-color-supported.browser.d.mts +5 -7
- package/dist/is-color-supported.browser.d.ts +5 -7
- package/dist/is-color-supported.edge-light.d.cts +5 -12
- package/dist/is-color-supported.edge-light.d.mts +5 -12
- package/dist/is-color-supported.edge-light.d.ts +5 -12
- package/dist/is-color-supported.server.d.cts +5 -7
- package/dist/is-color-supported.server.d.mts +5 -7
- package/dist/is-color-supported.server.d.ts +5 -7
- package/dist/types.d.cts +8 -0
- package/dist/types.d.mts +8 -0
- package/dist/types.d.ts +8 -0
- package/package.json +1 -1
- package/dist/packem_shared/color-spaces-D2e_XOjQ.d.cts +0 -9
- package/dist/packem_shared/color-spaces-D2e_XOjQ.d.mts +0 -9
- package/dist/packem_shared/color-spaces-D2e_XOjQ.d.ts +0 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## @visulima/is-ansi-color-supported [2.3.4](https://github.com/visulima/visulima/compare/@visulima/is-ansi-color-supported@2.3.3...@visulima/is-ansi-color-supported@2.3.4) (2025-11-12)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* update package configurations and TypeScript definitions ([b59aa59](https://github.com/visulima/visulima/commit/b59aa59dac1508216b944f4b917fb4a7ab1f70a4))
|
|
6
|
+
|
|
7
|
+
### Miscellaneous Chores
|
|
8
|
+
|
|
9
|
+
* Add jsr file to all packages for release ([#565](https://github.com/visulima/visulima/issues/565)) ([ec91652](https://github.com/visulima/visulima/commit/ec91652b4e4112adf14ba152c1239a7703ba425a))
|
|
10
|
+
* update license files and clean up TypeScript definitions ([fe668cc](https://github.com/visulima/visulima/commit/fe668cc26de23591d4df54a0954455ebbe31b22d))
|
|
11
|
+
|
|
1
12
|
## @visulima/is-ansi-color-supported [2.3.3](https://github.com/visulima/visulima/compare/@visulima/is-ansi-color-supported@2.3.2...@visulima/is-ansi-color-supported@2.3.3) (2025-11-07)
|
|
2
13
|
|
|
3
14
|
### Bug Fixes
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
export { ColorSupportLevel, isStderrColorSupported, isStdoutColorSupported };
|
|
1
|
+
import type { ColorSupportLevel } from "./types.d.cts";
|
|
2
|
+
export declare const isStdoutColorSupported: () => ColorSupportLevel;
|
|
3
|
+
export declare const isStderrColorSupported: () => ColorSupportLevel;
|
|
4
|
+
export { SPACE_16_COLORS, SPACE_256_COLORS, SPACE_MONO, SPACE_TRUE_COLORS } from "./color-spaces.d.cts";
|
|
5
|
+
export type { ColorSupportLevel } from "./types.d.cts";
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
export { ColorSupportLevel, isStderrColorSupported, isStdoutColorSupported };
|
|
1
|
+
import type { ColorSupportLevel } from "./types.d.mts";
|
|
2
|
+
export declare const isStdoutColorSupported: () => ColorSupportLevel;
|
|
3
|
+
export declare const isStderrColorSupported: () => ColorSupportLevel;
|
|
4
|
+
export { SPACE_16_COLORS, SPACE_256_COLORS, SPACE_MONO, SPACE_TRUE_COLORS } from "./color-spaces.d.mts";
|
|
5
|
+
export type { ColorSupportLevel } from "./types.d.mts";
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
export { ColorSupportLevel, isStderrColorSupported, isStdoutColorSupported };
|
|
1
|
+
import type { ColorSupportLevel } from "./types.d.ts";
|
|
2
|
+
export declare const isStdoutColorSupported: () => ColorSupportLevel;
|
|
3
|
+
export declare const isStderrColorSupported: () => ColorSupportLevel;
|
|
4
|
+
export { SPACE_16_COLORS, SPACE_256_COLORS, SPACE_MONO, SPACE_TRUE_COLORS } from "./color-spaces.d.ts";
|
|
5
|
+
export type { ColorSupportLevel } from "./types.d.ts";
|
|
@@ -1,12 +1,5 @@
|
|
|
1
|
-
type ColorSupportLevel
|
|
2
|
-
|
|
3
|
-
declare const
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
declare const SPACE_TRUE_COLORS = 3;
|
|
7
|
-
|
|
8
|
-
declare const isStdoutColorSupported: () => ColorSupportLevel;
|
|
9
|
-
declare const isStderrColorSupported: () => ColorSupportLevel;
|
|
10
|
-
|
|
11
|
-
export { SPACE_16_COLORS, SPACE_256_COLORS, SPACE_MONO, SPACE_TRUE_COLORS, isStderrColorSupported, isStdoutColorSupported };
|
|
12
|
-
export type { ColorSupportLevel };
|
|
1
|
+
import type { ColorSupportLevel } from "./types.d.cts";
|
|
2
|
+
export declare const isStdoutColorSupported: () => ColorSupportLevel;
|
|
3
|
+
export declare const isStderrColorSupported: () => ColorSupportLevel;
|
|
4
|
+
export { SPACE_16_COLORS, SPACE_256_COLORS, SPACE_MONO, SPACE_TRUE_COLORS } from "./color-spaces.d.cts";
|
|
5
|
+
export type { ColorSupportLevel } from "./types.d.cts";
|
|
@@ -1,12 +1,5 @@
|
|
|
1
|
-
type ColorSupportLevel
|
|
2
|
-
|
|
3
|
-
declare const
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
declare const SPACE_TRUE_COLORS = 3;
|
|
7
|
-
|
|
8
|
-
declare const isStdoutColorSupported: () => ColorSupportLevel;
|
|
9
|
-
declare const isStderrColorSupported: () => ColorSupportLevel;
|
|
10
|
-
|
|
11
|
-
export { SPACE_16_COLORS, SPACE_256_COLORS, SPACE_MONO, SPACE_TRUE_COLORS, isStderrColorSupported, isStdoutColorSupported };
|
|
12
|
-
export type { ColorSupportLevel };
|
|
1
|
+
import type { ColorSupportLevel } from "./types.d.mts";
|
|
2
|
+
export declare const isStdoutColorSupported: () => ColorSupportLevel;
|
|
3
|
+
export declare const isStderrColorSupported: () => ColorSupportLevel;
|
|
4
|
+
export { SPACE_16_COLORS, SPACE_256_COLORS, SPACE_MONO, SPACE_TRUE_COLORS } from "./color-spaces.d.mts";
|
|
5
|
+
export type { ColorSupportLevel } from "./types.d.mts";
|
|
@@ -1,12 +1,5 @@
|
|
|
1
|
-
type ColorSupportLevel
|
|
2
|
-
|
|
3
|
-
declare const
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
declare const SPACE_TRUE_COLORS = 3;
|
|
7
|
-
|
|
8
|
-
declare const isStdoutColorSupported: () => ColorSupportLevel;
|
|
9
|
-
declare const isStderrColorSupported: () => ColorSupportLevel;
|
|
10
|
-
|
|
11
|
-
export { SPACE_16_COLORS, SPACE_256_COLORS, SPACE_MONO, SPACE_TRUE_COLORS, isStderrColorSupported, isStdoutColorSupported };
|
|
12
|
-
export type { ColorSupportLevel };
|
|
1
|
+
import type { ColorSupportLevel } from "./types.d.ts";
|
|
2
|
+
export declare const isStdoutColorSupported: () => ColorSupportLevel;
|
|
3
|
+
export declare const isStderrColorSupported: () => ColorSupportLevel;
|
|
4
|
+
export { SPACE_16_COLORS, SPACE_256_COLORS, SPACE_MONO, SPACE_TRUE_COLORS } from "./color-spaces.d.ts";
|
|
5
|
+
export type { ColorSupportLevel } from "./types.d.ts";
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
export { ColorSupportLevel, isStderrColorSupported, isStdoutColorSupported };
|
|
1
|
+
import type { ColorSupportLevel } from "./types.d.cts";
|
|
2
|
+
export declare const isStdoutColorSupported: () => ColorSupportLevel;
|
|
3
|
+
export declare const isStderrColorSupported: () => ColorSupportLevel;
|
|
4
|
+
export { SPACE_16_COLORS, SPACE_256_COLORS, SPACE_MONO, SPACE_TRUE_COLORS } from "./color-spaces.d.cts";
|
|
5
|
+
export type { ColorSupportLevel } from "./types.d.cts";
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
export { ColorSupportLevel, isStderrColorSupported, isStdoutColorSupported };
|
|
1
|
+
import type { ColorSupportLevel } from "./types.d.mts";
|
|
2
|
+
export declare const isStdoutColorSupported: () => ColorSupportLevel;
|
|
3
|
+
export declare const isStderrColorSupported: () => ColorSupportLevel;
|
|
4
|
+
export { SPACE_16_COLORS, SPACE_256_COLORS, SPACE_MONO, SPACE_TRUE_COLORS } from "./color-spaces.d.mts";
|
|
5
|
+
export type { ColorSupportLevel } from "./types.d.mts";
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
export { ColorSupportLevel, isStderrColorSupported, isStdoutColorSupported };
|
|
1
|
+
import type { ColorSupportLevel } from "./types.d.ts";
|
|
2
|
+
export declare const isStdoutColorSupported: () => ColorSupportLevel;
|
|
3
|
+
export declare const isStderrColorSupported: () => ColorSupportLevel;
|
|
4
|
+
export { SPACE_16_COLORS, SPACE_256_COLORS, SPACE_MONO, SPACE_TRUE_COLORS } from "./color-spaces.d.ts";
|
|
5
|
+
export type { ColorSupportLevel } from "./types.d.ts";
|
package/dist/types.d.cts
ADDED
package/dist/types.d.mts
ADDED
package/dist/types.d.ts
ADDED
package/package.json
CHANGED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
type ColorSupportLevel = 0 | 1 | 2 | 3;
|
|
2
|
-
|
|
3
|
-
declare const SPACE_MONO = 0;
|
|
4
|
-
declare const SPACE_16_COLORS = 1;
|
|
5
|
-
declare const SPACE_256_COLORS = 2;
|
|
6
|
-
declare const SPACE_TRUE_COLORS = 3;
|
|
7
|
-
|
|
8
|
-
export { SPACE_16_COLORS as S, SPACE_256_COLORS as a, SPACE_MONO as b, SPACE_TRUE_COLORS as c };
|
|
9
|
-
export type { ColorSupportLevel as C };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
type ColorSupportLevel = 0 | 1 | 2 | 3;
|
|
2
|
-
|
|
3
|
-
declare const SPACE_MONO = 0;
|
|
4
|
-
declare const SPACE_16_COLORS = 1;
|
|
5
|
-
declare const SPACE_256_COLORS = 2;
|
|
6
|
-
declare const SPACE_TRUE_COLORS = 3;
|
|
7
|
-
|
|
8
|
-
export { SPACE_16_COLORS as S, SPACE_256_COLORS as a, SPACE_MONO as b, SPACE_TRUE_COLORS as c };
|
|
9
|
-
export type { ColorSupportLevel as C };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
type ColorSupportLevel = 0 | 1 | 2 | 3;
|
|
2
|
-
|
|
3
|
-
declare const SPACE_MONO = 0;
|
|
4
|
-
declare const SPACE_16_COLORS = 1;
|
|
5
|
-
declare const SPACE_256_COLORS = 2;
|
|
6
|
-
declare const SPACE_TRUE_COLORS = 3;
|
|
7
|
-
|
|
8
|
-
export { SPACE_16_COLORS as S, SPACE_256_COLORS as a, SPACE_MONO as b, SPACE_TRUE_COLORS as c };
|
|
9
|
-
export type { ColorSupportLevel as C };
|