@visulima/colorize 2.0.0-alpha.4 → 2.0.0-alpha.5
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 +25 -0
- package/LICENSE.md +1 -1
- package/dist/ansi-codes.d.mts +1 -1
- package/dist/colorize.browser.d.mts +1 -1
- package/dist/colorize.server.d.mts +1 -1
- package/dist/css-code.d.mts +1 -1
- package/dist/index.browser.d.mts +3 -3
- package/dist/index.browser.mjs +1 -1
- package/dist/index.server.d.mts +3 -3
- package/dist/index.server.mjs +1 -1
- package/dist/util/convert-hex-to-rgb.d.mts +1 -1
- package/package.json +2 -2
- /package/dist/packem_shared/{Colorize-BenP3bFn.mjs → Colorize-BenP3bFn.js} +0 -0
- /package/dist/packem_shared/{Colorize-Ca9CXTcj.mjs → Colorize-Ca9CXTcj.js} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
## @visulima/colorize [2.0.0-alpha.5](https://github.com/visulima/visulima/compare/@visulima/colorize@2.0.0-alpha.4...@visulima/colorize@2.0.0-alpha.5) (2026-03-06)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **colorize:** update packem to 2.0.0-alpha.54 ([61e248b](https://github.com/visulima/visulima/commit/61e248be63d5e3ad069aae06d5f0a76e5ca58600))
|
|
6
|
+
|
|
7
|
+
### Documentation
|
|
8
|
+
|
|
9
|
+
* **object,redact,colorize,path,fs:** add comprehensive Fumadocs documentation ([19c3840](https://github.com/visulima/visulima/commit/19c384041db855e1c2de41ce2067458b39737565))
|
|
10
|
+
|
|
11
|
+
### Miscellaneous Chores
|
|
12
|
+
|
|
13
|
+
* **colorize:** update dependencies ([9da1353](https://github.com/visulima/visulima/commit/9da1353fc7c6c61b511ceb2988f5ae2a6a598d45))
|
|
14
|
+
* **colorize:** update dependencies ([1d995c9](https://github.com/visulima/visulima/commit/1d995c97607a5c95ac208758e957a62180e27072))
|
|
15
|
+
* move top-level examples into their respective packages ([3bf7105](https://github.com/visulima/visulima/commit/3bf7105a56db6383ae65d5e28dea9a2c18af791a))
|
|
16
|
+
* moved examples ([bb07290](https://github.com/visulima/visulima/commit/bb07290fba65a83aaad8f0ef62d1c244d1610002))
|
|
17
|
+
* **terminal:** update dependencies ([a5bb91a](https://github.com/visulima/visulima/commit/a5bb91a66f2be2ade485d586156a54c347a23cc9))
|
|
18
|
+
* update lock file maintenance ([d83e716](https://github.com/visulima/visulima/commit/d83e71697b75d24704185b66bb521a934d2db02d))
|
|
19
|
+
* year update ([47f4105](https://github.com/visulima/visulima/commit/47f410596ce7190cfea36a073db32e0cec50bbcd))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Dependencies
|
|
23
|
+
|
|
24
|
+
* **@visulima/is-ansi-color-supported:** upgraded to 3.0.0-alpha.5
|
|
25
|
+
|
|
1
26
|
## @visulima/colorize [2.0.0-alpha.4](https://github.com/visulima/visulima/compare/@visulima/colorize@2.0.0-alpha.3...@visulima/colorize@2.0.0-alpha.4) (2025-12-27)
|
|
2
27
|
|
|
3
28
|
### Bug Fixes
|
package/LICENSE.md
CHANGED
package/dist/ansi-codes.d.mts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) 2023, webdiscus
|
|
7
7
|
*/
|
|
8
|
-
import type { AnsiColors, AnsiStyles, ColorData, ColorValueHex } from "./types.d.
|
|
8
|
+
import type { AnsiColors, AnsiStyles, ColorData, ColorValueHex } from "./types.d.ts";
|
|
9
9
|
export declare const baseStyles: Required<Record<AnsiStyles, ColorData>>;
|
|
10
10
|
export declare const baseColors: Required<Record<AnsiColors, ColorData>>;
|
|
11
11
|
export declare const styleMethods: {
|
package/dist/css-code.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AnsiColors, AnsiStyles } from "./types.d.
|
|
1
|
+
import type { AnsiColors, AnsiStyles } from "./types.d.ts";
|
|
2
2
|
export declare const baseStyles: Required<Record<AnsiStyles, string>>;
|
|
3
3
|
export declare const baseColors: Required<Record<AnsiColors, string>>;
|
|
4
4
|
export declare const styleMethods: {
|
package/dist/index.browser.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ColorizeType, ColorValueHex } from "./types.d.
|
|
1
|
+
import type { ColorizeType, ColorValueHex } from "./types.d.ts";
|
|
2
2
|
declare const _default: ColorizeType;
|
|
3
3
|
export default _default;
|
|
4
4
|
export declare const ansi256: (code: number) => ColorizeType;
|
|
@@ -57,5 +57,5 @@ export declare const white: ColorizeType;
|
|
|
57
57
|
export declare const whiteBright: ColorizeType;
|
|
58
58
|
export declare const yellow: ColorizeType;
|
|
59
59
|
export declare const yellowBright: ColorizeType;
|
|
60
|
-
export { default as Colorize } from "./colorize.d.
|
|
61
|
-
export type { AnsiColors, AnsiStyles, ColorizeType } from "./types.d.
|
|
60
|
+
export { default as Colorize } from "./colorize.d.ts";
|
|
61
|
+
export type { AnsiColors, AnsiStyles, ColorizeType } from "./types.d.ts";
|
package/dist/index.browser.mjs
CHANGED
package/dist/index.server.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ColorizeType, ColorValueHex } from "./types.d.
|
|
1
|
+
import type { ColorizeType, ColorValueHex } from "./types.d.ts";
|
|
2
2
|
declare const _default: ColorizeType;
|
|
3
3
|
export default _default;
|
|
4
4
|
export declare const ansi256: (code: number) => ColorizeType;
|
|
@@ -57,5 +57,5 @@ export declare const white: ColorizeType;
|
|
|
57
57
|
export declare const whiteBright: ColorizeType;
|
|
58
58
|
export declare const yellow: ColorizeType;
|
|
59
59
|
export declare const yellowBright: ColorizeType;
|
|
60
|
-
export { default as Colorize } from "./colorize.d.
|
|
61
|
-
export type { AnsiColors, AnsiStyles, ColorizeType } from "./types.d.
|
|
60
|
+
export { default as Colorize } from "./colorize.d.ts";
|
|
61
|
+
export type { AnsiColors, AnsiStyles, ColorizeType } from "./types.d.ts";
|
package/dist/index.server.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/colorize",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.5",
|
|
4
4
|
"description": "Terminal and Console string styling done right.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"256",
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"LICENSE.md"
|
|
166
166
|
],
|
|
167
167
|
"dependencies": {
|
|
168
|
-
"@visulima/is-ansi-color-supported": "3.0.0-alpha.
|
|
168
|
+
"@visulima/is-ansi-color-supported": "3.0.0-alpha.5"
|
|
169
169
|
},
|
|
170
170
|
"engines": {
|
|
171
171
|
"node": ">=22.13 <=25.x"
|
|
File without changes
|
|
File without changes
|