@seyuna/postcss 1.0.0-canary.4 → 1.0.0-canary.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 +7 -0
- package/dist/functions/index.js +2 -2
- package/dist/functions/sc.d.ts +1 -0
- package/dist/functions/{color.js → sc.js} +2 -2
- package/package.json +1 -1
- package/src/functions/index.ts +2 -2
- package/src/functions/{color.ts → sc.ts} +1 -1
- package/dist/functions/color.d.ts +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [1.0.0-canary.5](https://github.com/seyuna-corp/seyuna-postcss/compare/v1.0.0-canary.4...v1.0.0-canary.5) (2025-08-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* changed color function name to sc to avoid conflicts with the default css color() function ([a46e96c](https://github.com/seyuna-corp/seyuna-postcss/commit/a46e96c74839f930d39a2c273c822a689a942783))
|
|
7
|
+
|
|
1
8
|
# [1.0.0-canary.4](https://github.com/seyuna-corp/seyuna-postcss/compare/v1.0.0-canary.3...v1.0.0-canary.4) (2025-08-24)
|
|
2
9
|
|
|
3
10
|
|
package/dist/functions/index.js
CHANGED
|
@@ -4,9 +4,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.functions = void 0;
|
|
7
|
-
const
|
|
7
|
+
const sc_1 = __importDefault(require("./sc"));
|
|
8
8
|
const spacing_1 = __importDefault(require("./spacing"));
|
|
9
9
|
exports.functions = {
|
|
10
|
-
|
|
10
|
+
sc: sc_1.default,
|
|
11
11
|
spacing: spacing_1.default,
|
|
12
12
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function sc(name: string, alpha?: string, lightness?: string, chroma?: string): string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.default =
|
|
4
|
-
function
|
|
3
|
+
exports.default = sc;
|
|
4
|
+
function sc(name, alpha, lightness, chroma) {
|
|
5
5
|
let a = "1";
|
|
6
6
|
let l = "var(--lightness)";
|
|
7
7
|
let c = "var(--chroma)";
|
package/package.json
CHANGED
package/src/functions/index.ts
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function color(name: string, alpha?: string, lightness?: string, chroma?: string): string;
|