stain 1.0.0 → 1.3.0

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.
@@ -0,0 +1,116 @@
1
+ /** @about
2
+ @file: types.ts
3
+
4
+ import type {
5
+ EmptyObject,
6
+ StrNum,
7
+ TupleN,
8
+ ColorSpace,
9
+ StyleKeys,
10
+ XtermKeysFactory,
11
+ AnsiCodeTuple,
12
+ StyleState,
13
+ StainBase,
14
+ StainAnsi,
15
+ StainXterm,
16
+ } from './types.ts'
17
+
18
+ *** */
19
+ /**
20
+ * empty object utility type for representing no keys
21
+ */
22
+ export type EmptyObject = Record<never, never>;
23
+ /**
24
+ * string or number shorthand
25
+ */
26
+ export type StrNum = string | number;
27
+ /**
28
+ * helper to make tuple of N elements of type T
29
+ * @template N - tuple length (number literal type)
30
+ * @template T - element type (default: string)
31
+ */
32
+ export type TupleN<N extends number, T = string, Acc extends T[] = []> = Acc['length'] extends N ? Acc : TupleN<N, T, [...Acc, T]>;
33
+ /**
34
+ * color support level
35
+ * @default 2
36
+ * @see {@link https://nodejs.org/api/cli.html#force_color1-2-3|Node.js FORCE_COLOR docs}
37
+ */
38
+ export type ColorSpace = 0 | 1 | 2;
39
+ /**
40
+ * Style state keys
41
+ * fg=foreground; bg=background;
42
+ * ft=font; ue=underline; ie=inverse; re=reset;
43
+ * pr=previous (internal state)
44
+ */
45
+ export type StyleKeys = 'fg' | 'bg' | 'ft' | 'ue' | 'ie' | 're' | 'pr';
46
+ /**
47
+ * Generate xterms: x0 to x255
48
+ */
49
+ export type XtermKeysFactory<N extends number, Acc extends string[] = []> = Acc['length'] extends N ? Acc[number] : XtermKeysFactory<N, [...Acc, `x${Acc['length']}`]>;
50
+ /**
51
+ * tuple describing ansi on and off codes with optional flag for custom or xterm usage
52
+ * @typedef {readonly [number, number, number?]} AnsiCodeTuple
53
+ * on index 0 is the open code
54
+ * off index 1 is the close code
55
+ * isCustom index 2 indicates xterm or custom when truthy
56
+ */
57
+ export type AnsiCodeTuple = [on: number, off: number, isCustom?: number];
58
+ /**
59
+ * partial style state map for assembling ansi sequences
60
+ * keys may include fg bg ft ue ie re pr
61
+ */
62
+ export type StyleState = Partial<Record<StyleKeys, AnsiCodeTuple>>;
63
+ /**
64
+ * base named colors supported by ansi
65
+ */
66
+ export type StainBase = 'black' | 'blue' | 'cyan' | 'green' | 'purple' | 'red' | 'white' | 'yellow';
67
+ /**
68
+ * named ansi colors including intense variants prefixed with i (ired for bright red)
69
+ */
70
+ export type StainAnsi = StainBase | `i${StainBase}`;
71
+ /**
72
+ * xterm color keys generated as x0..x255
73
+ */
74
+ export type StainXterm = XtermKeysFactory<256>;
75
+ /**
76
+ * chainable stain api type
77
+ * callable to format input into a string and exposes chainable style and color properties
78
+ * includes bg bold dim normal reset underline inverse and color names
79
+ * includes xterm colors when enabled and custom colors from options
80
+ * @template C extends Record<string, number> custom color map type
81
+ * @template X extends boolean whether xterm is enabled
82
+ */
83
+ export type Stain<C extends Record<string, number> = EmptyObject, X extends boolean = false> = ((...args: any[]) => string) & {
84
+ bg: Stain<C, X>;
85
+ bold: Stain<C, X>;
86
+ dim: Stain<C, X>;
87
+ normal: Stain<C, X>;
88
+ reset: Stain<C, X>;
89
+ underline: Stain<C, X>;
90
+ inverse: Stain<C, X>;
91
+ } & {
92
+ [K in StainAnsi]: Stain<C, X>;
93
+ } & (X extends true ? {
94
+ [K in StainXterm]: Stain<C, X>;
95
+ } : EmptyObject) & (keyof C extends never ? EmptyObject : {
96
+ [K in keyof C]: Stain<C, X>;
97
+ });
98
+ /**
99
+ * options for creating a stain instance
100
+ * @template C extends Record<string, number> custom color map type
101
+ * @property {(...args: any[]) => string} [format] custom formatter for args to string
102
+ * @property {boolean} [noColor] disable color output
103
+ * @property {boolean} [xterm] enable xterm 256 color support
104
+ * @property {C} [colors] custom color name to code map
105
+ * @property {boolean} [simpleEscape] use faster simpler escape without nested handling
106
+ * @property {ColorSpace} [colorSpace] force color space, used primarly for testing
107
+ */
108
+ export type StainOpts<C extends Record<string, number> = EmptyObject> = {
109
+ format?: (...args: any[]) => string;
110
+ noColor?: boolean;
111
+ xterm?: boolean;
112
+ colors?: C;
113
+ simpleEscape?: boolean;
114
+ colorSpace?: ColorSpace;
115
+ };
116
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1,116 @@
1
+ /** @about
2
+ @file: types.ts
3
+
4
+ import type {
5
+ EmptyObject,
6
+ StrNum,
7
+ TupleN,
8
+ ColorSpace,
9
+ StyleKeys,
10
+ XtermKeysFactory,
11
+ AnsiCodeTuple,
12
+ StyleState,
13
+ StainBase,
14
+ StainAnsi,
15
+ StainXterm,
16
+ } from './types.ts'
17
+
18
+ *** */
19
+ /**
20
+ * empty object utility type for representing no keys
21
+ */
22
+ export type EmptyObject = Record<never, never>;
23
+ /**
24
+ * string or number shorthand
25
+ */
26
+ export type StrNum = string | number;
27
+ /**
28
+ * helper to make tuple of N elements of type T
29
+ * @template N - tuple length (number literal type)
30
+ * @template T - element type (default: string)
31
+ */
32
+ export type TupleN<N extends number, T = string, Acc extends T[] = []> = Acc['length'] extends N ? Acc : TupleN<N, T, [...Acc, T]>;
33
+ /**
34
+ * color support level
35
+ * @default 2
36
+ * @see {@link https://nodejs.org/api/cli.html#force_color1-2-3|Node.js FORCE_COLOR docs}
37
+ */
38
+ export type ColorSpace = 0 | 1 | 2;
39
+ /**
40
+ * Style state keys
41
+ * fg=foreground; bg=background;
42
+ * ft=font; ue=underline; ie=inverse; re=reset;
43
+ * pr=previous (internal state)
44
+ */
45
+ export type StyleKeys = 'fg' | 'bg' | 'ft' | 'ue' | 'ie' | 're' | 'pr';
46
+ /**
47
+ * Generate xterms: x0 to x255
48
+ */
49
+ export type XtermKeysFactory<N extends number, Acc extends string[] = []> = Acc['length'] extends N ? Acc[number] : XtermKeysFactory<N, [...Acc, `x${Acc['length']}`]>;
50
+ /**
51
+ * tuple describing ansi on and off codes with optional flag for custom or xterm usage
52
+ * @typedef {readonly [number, number, number?]} AnsiCodeTuple
53
+ * on index 0 is the open code
54
+ * off index 1 is the close code
55
+ * isCustom index 2 indicates xterm or custom when truthy
56
+ */
57
+ export type AnsiCodeTuple = [on: number, off: number, isCustom?: number];
58
+ /**
59
+ * partial style state map for assembling ansi sequences
60
+ * keys may include fg bg ft ue ie re pr
61
+ */
62
+ export type StyleState = Partial<Record<StyleKeys, AnsiCodeTuple>>;
63
+ /**
64
+ * base named colors supported by ansi
65
+ */
66
+ export type StainBase = 'black' | 'blue' | 'cyan' | 'green' | 'purple' | 'red' | 'white' | 'yellow';
67
+ /**
68
+ * named ansi colors including intense variants prefixed with i (ired for bright red)
69
+ */
70
+ export type StainAnsi = StainBase | `i${StainBase}`;
71
+ /**
72
+ * xterm color keys generated as x0..x255
73
+ */
74
+ export type StainXterm = XtermKeysFactory<256>;
75
+ /**
76
+ * chainable stain api type
77
+ * callable to format input into a string and exposes chainable style and color properties
78
+ * includes bg bold dim normal reset underline inverse and color names
79
+ * includes xterm colors when enabled and custom colors from options
80
+ * @template C extends Record<string, number> custom color map type
81
+ * @template X extends boolean whether xterm is enabled
82
+ */
83
+ export type Stain<C extends Record<string, number> = EmptyObject, X extends boolean = false> = ((...args: any[]) => string) & {
84
+ bg: Stain<C, X>;
85
+ bold: Stain<C, X>;
86
+ dim: Stain<C, X>;
87
+ normal: Stain<C, X>;
88
+ reset: Stain<C, X>;
89
+ underline: Stain<C, X>;
90
+ inverse: Stain<C, X>;
91
+ } & {
92
+ [K in StainAnsi]: Stain<C, X>;
93
+ } & (X extends true ? {
94
+ [K in StainXterm]: Stain<C, X>;
95
+ } : EmptyObject) & (keyof C extends never ? EmptyObject : {
96
+ [K in keyof C]: Stain<C, X>;
97
+ });
98
+ /**
99
+ * options for creating a stain instance
100
+ * @template C extends Record<string, number> custom color map type
101
+ * @property {(...args: any[]) => string} [format] custom formatter for args to string
102
+ * @property {boolean} [noColor] disable color output
103
+ * @property {boolean} [xterm] enable xterm 256 color support
104
+ * @property {C} [colors] custom color name to code map
105
+ * @property {boolean} [simpleEscape] use faster simpler escape without nested handling
106
+ * @property {ColorSpace} [colorSpace] force color space, used primarly for testing
107
+ */
108
+ export type StainOpts<C extends Record<string, number> = EmptyObject> = {
109
+ format?: (...args: any[]) => string;
110
+ noColor?: boolean;
111
+ xterm?: boolean;
112
+ colors?: C;
113
+ simpleEscape?: boolean;
114
+ colorSpace?: ColorSpace;
115
+ };
116
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1,116 @@
1
+ /** @about
2
+ @file: types.ts
3
+
4
+ import type {
5
+ EmptyObject,
6
+ StrNum,
7
+ TupleN,
8
+ ColorSpace,
9
+ StyleKeys,
10
+ XtermKeysFactory,
11
+ AnsiCodeTuple,
12
+ StyleState,
13
+ StainBase,
14
+ StainAnsi,
15
+ StainXterm,
16
+ } from './types.ts'
17
+
18
+ *** */
19
+ /**
20
+ * empty object utility type for representing no keys
21
+ */
22
+ export type EmptyObject = Record<never, never>;
23
+ /**
24
+ * string or number shorthand
25
+ */
26
+ export type StrNum = string | number;
27
+ /**
28
+ * helper to make tuple of N elements of type T
29
+ * @template N - tuple length (number literal type)
30
+ * @template T - element type (default: string)
31
+ */
32
+ export type TupleN<N extends number, T = string, Acc extends T[] = []> = Acc['length'] extends N ? Acc : TupleN<N, T, [...Acc, T]>;
33
+ /**
34
+ * color support level
35
+ * @default 2
36
+ * @see {@link https://nodejs.org/api/cli.html#force_color1-2-3|Node.js FORCE_COLOR docs}
37
+ */
38
+ export type ColorSpace = 0 | 1 | 2;
39
+ /**
40
+ * Style state keys
41
+ * fg=foreground; bg=background;
42
+ * ft=font; ue=underline; ie=inverse; re=reset;
43
+ * pr=previous (internal state)
44
+ */
45
+ export type StyleKeys = 'fg' | 'bg' | 'ft' | 'ue' | 'ie' | 're' | 'pr';
46
+ /**
47
+ * Generate xterms: x0 to x255
48
+ */
49
+ export type XtermKeysFactory<N extends number, Acc extends string[] = []> = Acc['length'] extends N ? Acc[number] : XtermKeysFactory<N, [...Acc, `x${Acc['length']}`]>;
50
+ /**
51
+ * tuple describing ansi on and off codes with optional flag for custom or xterm usage
52
+ * @typedef {readonly [number, number, number?]} AnsiCodeTuple
53
+ * on index 0 is the open code
54
+ * off index 1 is the close code
55
+ * isCustom index 2 indicates xterm or custom when truthy
56
+ */
57
+ export type AnsiCodeTuple = [on: number, off: number, isCustom?: number];
58
+ /**
59
+ * partial style state map for assembling ansi sequences
60
+ * keys may include fg bg ft ue ie re pr
61
+ */
62
+ export type StyleState = Partial<Record<StyleKeys, AnsiCodeTuple>>;
63
+ /**
64
+ * base named colors supported by ansi
65
+ */
66
+ export type StainBase = 'black' | 'blue' | 'cyan' | 'green' | 'purple' | 'red' | 'white' | 'yellow';
67
+ /**
68
+ * named ansi colors including intense variants prefixed with i (ired for bright red)
69
+ */
70
+ export type StainAnsi = StainBase | `i${StainBase}`;
71
+ /**
72
+ * xterm color keys generated as x0..x255
73
+ */
74
+ export type StainXterm = XtermKeysFactory<256>;
75
+ /**
76
+ * chainable stain api type
77
+ * callable to format input into a string and exposes chainable style and color properties
78
+ * includes bg bold dim normal reset underline inverse and color names
79
+ * includes xterm colors when enabled and custom colors from options
80
+ * @template C extends Record<string, number> custom color map type
81
+ * @template X extends boolean whether xterm is enabled
82
+ */
83
+ export type Stain<C extends Record<string, number> = EmptyObject, X extends boolean = false> = ((...args: any[]) => string) & {
84
+ bg: Stain<C, X>;
85
+ bold: Stain<C, X>;
86
+ dim: Stain<C, X>;
87
+ normal: Stain<C, X>;
88
+ reset: Stain<C, X>;
89
+ underline: Stain<C, X>;
90
+ inverse: Stain<C, X>;
91
+ } & {
92
+ [K in StainAnsi]: Stain<C, X>;
93
+ } & (X extends true ? {
94
+ [K in StainXterm]: Stain<C, X>;
95
+ } : EmptyObject) & (keyof C extends never ? EmptyObject : {
96
+ [K in keyof C]: Stain<C, X>;
97
+ });
98
+ /**
99
+ * options for creating a stain instance
100
+ * @template C extends Record<string, number> custom color map type
101
+ * @property {(...args: any[]) => string} [format] custom formatter for args to string
102
+ * @property {boolean} [noColor] disable color output
103
+ * @property {boolean} [xterm] enable xterm 256 color support
104
+ * @property {C} [colors] custom color name to code map
105
+ * @property {boolean} [simpleEscape] use faster simpler escape without nested handling
106
+ * @property {ColorSpace} [colorSpace] force color space, used primarly for testing
107
+ */
108
+ export type StainOpts<C extends Record<string, number> = EmptyObject> = {
109
+ format?: (...args: any[]) => string;
110
+ noColor?: boolean;
111
+ xterm?: boolean;
112
+ colors?: C;
113
+ simpleEscape?: boolean;
114
+ colorSpace?: ColorSpace;
115
+ };
116
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,19 @@
1
+ import type { ColorSpace } from './types.ts';
2
+ /**
3
+ * converts an XTerm 8bit (256-color) index to the best 4bit value
4
+ * @param {number} n - xterm index
5
+ * @param {0 | 1} [isBg=0] - if bg
6
+ * @return {number}
7
+ */
8
+ export declare const xtermTo4Bit: (n: number, isBg?: 0 | 1) => number;
9
+ /**
10
+ * get basic binary 0 color space
11
+ * 0=no-color, 1=16, 2=256
12
+ * @implements nodejs.org/api/cli.html#force_color1-2-3
13
+ * @param {string[]} argv - argv cli/arguments
14
+ * @param {NodeJS.ProcessEnv} env - ENV variables
15
+ * @param {typeof globalThis} gthis - globalThis
16
+ * @return {ColorSpace}
17
+ */
18
+ export declare const getColorSpace: (argv?: string[], env?: NodeJS.ProcessEnv, gthis?: typeof globalThis) => ColorSpace;
19
+ //# sourceMappingURL=utils.d.ts.map
@@ -0,0 +1,19 @@
1
+ import type { ColorSpace } from './types.ts';
2
+ /**
3
+ * converts an XTerm 8bit (256-color) index to the best 4bit value
4
+ * @param {number} n - xterm index
5
+ * @param {0 | 1} [isBg=0] - if bg
6
+ * @return {number}
7
+ */
8
+ export declare const xtermTo4Bit: (n: number, isBg?: 0 | 1) => number;
9
+ /**
10
+ * get basic binary 0 color space
11
+ * 0=no-color, 1=16, 2=256
12
+ * @implements nodejs.org/api/cli.html#force_color1-2-3
13
+ * @param {string[]} argv - argv cli/arguments
14
+ * @param {NodeJS.ProcessEnv} env - ENV variables
15
+ * @param {typeof globalThis} gthis - globalThis
16
+ * @return {ColorSpace}
17
+ */
18
+ export declare const getColorSpace: (argv?: string[], env?: NodeJS.ProcessEnv, gthis?: typeof globalThis) => ColorSpace;
19
+ //# sourceMappingURL=utils.d.ts.map
@@ -0,0 +1,19 @@
1
+ import type { ColorSpace } from './types.ts';
2
+ /**
3
+ * converts an XTerm 8bit (256-color) index to the best 4bit value
4
+ * @param {number} n - xterm index
5
+ * @param {0 | 1} [isBg=0] - if bg
6
+ * @return {number}
7
+ */
8
+ export declare const xtermTo4Bit: (n: number, isBg?: 0 | 1) => number;
9
+ /**
10
+ * get basic binary 0 color space
11
+ * 0=no-color, 1=16, 2=256
12
+ * @implements nodejs.org/api/cli.html#force_color1-2-3
13
+ * @param {string[]} argv - argv cli/arguments
14
+ * @param {NodeJS.ProcessEnv} env - ENV variables
15
+ * @param {typeof globalThis} gthis - globalThis
16
+ * @return {ColorSpace}
17
+ */
18
+ export declare const getColorSpace: (argv?: string[], env?: NodeJS.ProcessEnv, gthis?: typeof globalThis) => ColorSpace;
19
+ //# sourceMappingURL=utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AAkBA,OAAO,KAAK,EACV,UAAU,EACX,MAAM,YAAY,CAAC;AA6BpB;;;;;GAKG;AACH,eAAO,MAAM,WAAW,GAAI,GAAG,MAAM,EAAE,OAAM,CAAC,GAAG,CAAK,KAAG,MAsBxD,CAAC;AAGF;;;;;;;;GAQG;AACH,eAAO,MAAM,aAAa,GACxB,OAAO,MAAM,EAAE,EACf,MAAM,MAAM,CAAC,UAAU,EACvB,QAAQ,OAAO,UAAU,KACxB,UAiDF,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stain",
3
- "version": "1.0.0",
3
+ "version": "1.3.0",
4
4
  "description": "Fluent, flexible, and fast ANSI styling that adds color to your terminal",
5
5
  "homepage": "https://github.com/fetchTe/stain",
6
6
  "license": "MIT",