@arbor-css/preset 0.0.49 → 0.0.52
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/LICENSE.md +7 -0
- package/dist/arborPreset.d.ts +364 -3
- package/dist/arborPreset.d.ts.map +1 -1
- package/dist/arborPreset.js +152 -67
- package/dist/arborPreset.js.map +1 -1
- package/dist/arborPreset.test.d.ts +2 -0
- package/dist/arborPreset.test.d.ts.map +1 -0
- package/dist/arborPreset.test.js +31 -0
- package/dist/arborPreset.test.js.map +1 -0
- package/dist/config.d.ts +30 -6
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +12 -1
- package/dist/config.js.map +1 -1
- package/dist/createArborPreset.d.ts +22 -10
- package/dist/createArborPreset.d.ts.map +1 -1
- package/dist/createArborPreset.js +97 -62
- package/dist/createArborPreset.js.map +1 -1
- package/dist/functions.d.ts +10 -0
- package/dist/functions.d.ts.map +1 -0
- package/dist/functions.js +32 -0
- package/dist/functions.js.map +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +17 -12
|
@@ -1,69 +1,104 @@
|
|
|
1
1
|
import { compileColors, defaultDarkScheme, defaultLightScheme, } from '@arbor-css/colors';
|
|
2
|
-
import {
|
|
2
|
+
import { createFunctionFactory } from '@arbor-css/functions';
|
|
3
|
+
import { createGlobalContext, createGlobals, } from '@arbor-css/globals';
|
|
3
4
|
import { createPrimitives } from '@arbor-css/primitives';
|
|
4
|
-
import { compileShadows } from '@arbor-css/shadows';
|
|
5
|
-
import { compileSpacing } from '@arbor-css/spacing';
|
|
6
|
-
import { compileTypography } from '@arbor-css/typography';
|
|
5
|
+
import { compileShadows, } from '@arbor-css/shadows';
|
|
6
|
+
import { compileSpacing, } from '@arbor-css/spacing';
|
|
7
|
+
import { compileTypography, } from '@arbor-css/typography';
|
|
7
8
|
import { deepMerge } from '@arbor-css/util';
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
light: defaultLightScheme,
|
|
16
|
-
dark: defaultDarkScheme,
|
|
17
|
-
...inputConfig.colors.schemes,
|
|
18
|
-
},
|
|
19
|
-
},
|
|
20
|
-
};
|
|
21
|
-
const globals = createGlobals(config.globals ?? {});
|
|
22
|
-
const colors = compileColors({
|
|
23
|
-
ranges: config.colors.ranges,
|
|
24
|
-
schemes: config.colors.schemes,
|
|
25
|
-
globals,
|
|
26
|
-
});
|
|
27
|
-
const typography = compileTypography({
|
|
28
|
-
...config.typography,
|
|
29
|
-
globals,
|
|
30
|
-
});
|
|
31
|
-
const spacing = compileSpacing({
|
|
32
|
-
...config.spacing,
|
|
33
|
-
globals,
|
|
34
|
-
});
|
|
35
|
-
const shadows = compileShadows({
|
|
36
|
-
...config.shadows,
|
|
37
|
-
globals,
|
|
38
|
-
});
|
|
39
|
-
const primitives = createPrimitives({
|
|
40
|
-
colors,
|
|
41
|
-
typography,
|
|
42
|
-
spacing,
|
|
43
|
-
shadows,
|
|
44
|
-
globals,
|
|
45
|
-
defaultScheme: config.colors.defaultScheme,
|
|
46
|
-
schemeTags: config.colors.schemeTags,
|
|
9
|
+
import { createArborModeSchema, createArborModeValues, } from './arborPreset.js';
|
|
10
|
+
import { definePreset } from './config.js';
|
|
11
|
+
import { createPresetFunctions } from './functions.js';
|
|
12
|
+
export function createArbor(config = {}) {
|
|
13
|
+
const context = createGlobalContext(config);
|
|
14
|
+
const modeSchema = createArborModeSchema({
|
|
15
|
+
createToken: context.createToken,
|
|
47
16
|
});
|
|
48
|
-
const
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
17
|
+
const builtinFunctions = createPresetFunctions(context.$systemTokens, createFunctionFactory({
|
|
18
|
+
tokenPrefix: context.tokenPrefix,
|
|
19
|
+
}));
|
|
20
|
+
return {
|
|
21
|
+
context,
|
|
22
|
+
preset: (inputConfig) => {
|
|
23
|
+
const normalizedConfig = {
|
|
24
|
+
...inputConfig,
|
|
25
|
+
tokenPrefix: context.tokenPrefix,
|
|
26
|
+
colors: {
|
|
27
|
+
...inputConfig.colors,
|
|
28
|
+
schemes: {
|
|
29
|
+
light: defaultLightScheme,
|
|
30
|
+
dark: defaultDarkScheme,
|
|
31
|
+
...inputConfig.colors.schemes,
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
};
|
|
35
|
+
const globals = createGlobals(normalizedConfig.globals ?? {});
|
|
36
|
+
const colors = compileColors({
|
|
37
|
+
ranges: normalizedConfig.colors.ranges,
|
|
38
|
+
schemes: normalizedConfig.colors.schemes,
|
|
39
|
+
context,
|
|
40
|
+
});
|
|
41
|
+
const typography = compileTypography({
|
|
42
|
+
...normalizedConfig.typography,
|
|
43
|
+
context,
|
|
44
|
+
});
|
|
45
|
+
const spacing = compileSpacing({
|
|
46
|
+
...normalizedConfig.spacing,
|
|
47
|
+
context,
|
|
48
|
+
});
|
|
49
|
+
const shadows = compileShadows({
|
|
50
|
+
...normalizedConfig.shadows,
|
|
51
|
+
context,
|
|
52
|
+
});
|
|
53
|
+
const primitives = createPrimitives({
|
|
54
|
+
colors,
|
|
55
|
+
typography,
|
|
56
|
+
spacing,
|
|
57
|
+
shadows,
|
|
58
|
+
globals,
|
|
59
|
+
defaultScheme: normalizedConfig.colors.defaultScheme,
|
|
60
|
+
schemeTags: normalizedConfig.colors.schemeTags,
|
|
61
|
+
createToken: context.createToken,
|
|
62
|
+
});
|
|
63
|
+
const baseModeValues = deepMerge(createArborModeValues({
|
|
64
|
+
mainColor: normalizedConfig.colors.mainColor,
|
|
65
|
+
primitives,
|
|
66
|
+
modeSchema,
|
|
67
|
+
globalProps: context.$systemTokens.globals,
|
|
68
|
+
}), normalizedConfig.baseMode ?? {});
|
|
69
|
+
const baseMode = modeSchema.createBase(baseModeValues);
|
|
70
|
+
const modes = {
|
|
71
|
+
base: baseMode,
|
|
72
|
+
};
|
|
73
|
+
const functions = {
|
|
74
|
+
...builtinFunctions,
|
|
75
|
+
...normalizedConfig.functions,
|
|
76
|
+
};
|
|
77
|
+
const preset = definePreset({
|
|
78
|
+
primitives,
|
|
79
|
+
modes,
|
|
80
|
+
functions,
|
|
81
|
+
systemProps: context.$systemTokens,
|
|
82
|
+
meta: {
|
|
83
|
+
config: normalizedConfig,
|
|
84
|
+
},
|
|
85
|
+
context,
|
|
86
|
+
});
|
|
87
|
+
preset.withMode = (name, mode) => {
|
|
88
|
+
modes[name] = modeSchema.createPartial(name, mode(preset));
|
|
89
|
+
return preset;
|
|
90
|
+
};
|
|
91
|
+
preset.meta = {
|
|
92
|
+
tokenPrefix: context.tokenPrefix,
|
|
93
|
+
config: normalizedConfig,
|
|
94
|
+
};
|
|
95
|
+
return preset;
|
|
96
|
+
},
|
|
66
97
|
};
|
|
67
|
-
|
|
98
|
+
}
|
|
99
|
+
export function createArborPreset(inputConfig) {
|
|
100
|
+
return createArbor({
|
|
101
|
+
tokenPrefix: inputConfig.tokenPrefix,
|
|
102
|
+
}).preset(inputConfig);
|
|
68
103
|
}
|
|
69
104
|
//# sourceMappingURL=createArborPreset.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createArborPreset.js","sourceRoot":"","sources":["../src/createArborPreset.ts"],"names":[],"mappings":"AAAA,OAAO,EAEN,aAAa,EAEb,iBAAiB,EACjB,kBAAkB,GAElB,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAE,aAAa,
|
|
1
|
+
{"version":3,"file":"createArborPreset.js","sourceRoot":"","sources":["../src/createArborPreset.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CreateFunction } from '@arbor-css/functions';
|
|
2
|
+
import { SystemTokens } from '@arbor-css/globals';
|
|
3
|
+
export declare function createPresetFunctions(systemProps: SystemTokens, createFunctionValue: CreateFunction): {
|
|
4
|
+
readonly lightenColor: import("@arbor-css/functions").ArborFunction<readonly ["--color", "--step"]>;
|
|
5
|
+
readonly darkenColor: import("@arbor-css/functions").ArborFunction<readonly ["--color", "--step"]>;
|
|
6
|
+
readonly desaturateColor: import("@arbor-css/functions").ArborFunction<readonly ["--color", "--step"]>;
|
|
7
|
+
readonly saturateColor: import("@arbor-css/functions").ArborFunction<readonly ["--color", "--step"]>;
|
|
8
|
+
};
|
|
9
|
+
export type BuiltinFunctions = ReturnType<typeof createPresetFunctions>;
|
|
10
|
+
//# sourceMappingURL=functions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"functions.d.ts","sourceRoot":"","sources":["../src/functions.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAkBlD,wBAAgB,qBAAqB,CACpC,WAAW,EAAE,YAAY,EACzB,mBAAmB,EAAE,cAAc;;;;;EAoCnC;AAED,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,qBAAqB,CAAC,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
function lightDarkAlterations(css, systemProps, { light, dark, step, }) {
|
|
2
|
+
return css `calc(1 + ${step} * (${[systemProps.scheme.whenLight, 1]} * ${light}) + (${[systemProps.scheme.whenDark, 1]} * ${dark}))`;
|
|
3
|
+
}
|
|
4
|
+
export function createPresetFunctions(systemProps, createFunctionValue) {
|
|
5
|
+
const lightenColor = createFunctionValue('lighten-color', {
|
|
6
|
+
description: 'Lightens a color by a specified "step" value',
|
|
7
|
+
parameters: ['--color', '--step'],
|
|
8
|
+
definition: (css, color, step) => css `oklch(from ${color} calc(l * ${lightDarkAlterations(css, systemProps, { light: 0.02, dark: -0.07, step })}) calc(c * ${lightDarkAlterations(css, systemProps, { light: -0.1, dark: -0.03, step })}) h)`,
|
|
9
|
+
});
|
|
10
|
+
const darkenColor = createFunctionValue('darken-color', {
|
|
11
|
+
description: 'Darkens a color by a specified "step" value',
|
|
12
|
+
parameters: ['--color', '--step'],
|
|
13
|
+
definition: (css, color, step) => css `oklch(from ${color} calc(l * ${lightDarkAlterations(css, systemProps, { light: -0.02, dark: 0.12, step })}) calc(c * ${lightDarkAlterations(css, systemProps, { light: 0.01, dark: -0.09, step })}) h)`,
|
|
14
|
+
});
|
|
15
|
+
const desaturateColor = createFunctionValue('desaturate-color', {
|
|
16
|
+
description: 'Desaturates a color by a specified "step" value',
|
|
17
|
+
parameters: ['--color', '--step'],
|
|
18
|
+
definition: (css, color, step) => css `oklch(from ${color} l calc(c * (1 + ${[systemProps.scheme.whenLight, 1]} * 0.05 * ${step})) h)`,
|
|
19
|
+
});
|
|
20
|
+
const saturateColor = createFunctionValue('saturate-color', {
|
|
21
|
+
description: 'Saturates a color by a specified "step" value',
|
|
22
|
+
parameters: ['--color', '--step'],
|
|
23
|
+
definition: (css, color, step) => css `oklch(from ${color} l calc(c * (1 + ${[systemProps.scheme.whenLight, 1]} * -0.05 * ${step})) h)`,
|
|
24
|
+
});
|
|
25
|
+
return {
|
|
26
|
+
lightenColor,
|
|
27
|
+
darkenColor,
|
|
28
|
+
desaturateColor,
|
|
29
|
+
saturateColor,
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
//# sourceMappingURL=functions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"functions.js","sourceRoot":"","sources":["../src/functions.ts"],"names":[],"mappings":"AAIA,SAAS,oBAAoB,CAC5B,GAAQ,EACR,WAAyB,EACzB,EACC,KAAK,EACL,IAAI,EACJ,IAAI,GAKJ;IAED,OAAO,GAAG,CAAA,YAAY,IAAI,OAAO,CAAC,WAAW,CAAC,MAAM,CAAC,SAAS,EAAE,CAAC,CAAC,MAAM,KAAK,QAAQ,CAAC,WAAW,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC,CAAC,MAAM,IAAI,IAAI,CAAC;AACrI,CAAC;AAED,MAAM,UAAU,qBAAqB,CACpC,WAAyB,EACzB,mBAAmC;IAEnC,MAAM,YAAY,GAAG,mBAAmB,CAAC,eAAe,EAAE;QACzD,WAAW,EAAE,8CAA8C;QAC3D,UAAU,EAAE,CAAC,SAAS,EAAE,QAAQ,CAAU;QAC1C,UAAU,EAAE,CAAC,GAAG,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE,CAChC,GAAG,CAAA,cAAc,KAAK,aAAa,oBAAoB,CAAC,GAAG,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,CAAC,cAAc,oBAAoB,CAAC,GAAG,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,CAAC,GAAG,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,CAAC,MAAM;KAC5M,CAAC,CAAC;IAEH,MAAM,WAAW,GAAG,mBAAmB,CAAC,cAAc,EAAE;QACvD,WAAW,EAAE,6CAA6C;QAC1D,UAAU,EAAE,CAAC,SAAS,EAAE,QAAQ,CAAU;QAC1C,UAAU,EAAE,CAAC,GAAG,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE,CAChC,GAAG,CAAA,cAAc,KAAK,aAAa,oBAAoB,CAAC,GAAG,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,cAAc,oBAAoB,CAAC,GAAG,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,CAAC,MAAM;KAC5M,CAAC,CAAC;IAEH,MAAM,eAAe,GAAG,mBAAmB,CAAC,kBAAkB,EAAE;QAC/D,WAAW,EAAE,iDAAiD;QAC9D,UAAU,EAAE,CAAC,SAAS,EAAE,QAAQ,CAAU;QAC1C,UAAU,EAAE,CAAC,GAAG,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE,CAChC,GAAG,CAAA,cAAc,KAAK,oBAAoB,CAAC,WAAW,CAAC,MAAM,CAAC,SAAS,EAAE,CAAC,CAAC,aAAa,IAAI,OAAO;KACpG,CAAC,CAAC;IAEH,MAAM,aAAa,GAAG,mBAAmB,CAAC,gBAAgB,EAAE;QAC3D,WAAW,EAAE,+CAA+C;QAC5D,UAAU,EAAE,CAAC,SAAS,EAAE,QAAQ,CAAU;QAC1C,UAAU,EAAE,CAAC,GAAG,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE,CAChC,GAAG,CAAA,cAAc,KAAK,oBAAoB,CAAC,WAAW,CAAC,MAAM,CAAC,SAAS,EAAE,CAAC,CAAC,cAAc,IAAI,OAAO;KACrG,CAAC,CAAC;IAEH,OAAO;QACN,YAAY;QACZ,WAAW;QACX,eAAe;QACf,aAAa;KACJ,CAAC;AACZ,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from '@arbor-css/colors';
|
|
2
|
-
export {
|
|
2
|
+
export { createGlobalProps, createGlobals, createSystemProps, defaultGlobals, type GlobalConfigProps, type GlobalConfig as PrimitiveGlobals, } from '@arbor-css/globals';
|
|
3
3
|
export * from '@arbor-css/modes';
|
|
4
4
|
export * from '@arbor-css/shadows';
|
|
5
5
|
export * from '@arbor-css/spacing';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,OAAO,EACN,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,OAAO,EACN,iBAAiB,EACjB,aAAa,EACb,iBAAiB,EACjB,cAAc,EACd,KAAK,iBAAiB,EACtB,KAAK,YAAY,IAAI,gBAAgB,GACrC,MAAM,oBAAoB,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,wBAAwB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from '@arbor-css/colors';
|
|
2
|
-
export {
|
|
2
|
+
export { createGlobals, defaultGlobals, } from '@arbor-css/globals';
|
|
3
3
|
export * from '@arbor-css/modes';
|
|
4
4
|
export * from '@arbor-css/shadows';
|
|
5
5
|
export * from '@arbor-css/spacing';
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,OAAO,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,OAAO,EAEN,aAAa,EAEb,cAAc,GAGd,MAAM,oBAAoB,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,wBAAwB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arbor-css/preset",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.52",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -27,21 +27,26 @@
|
|
|
27
27
|
},
|
|
28
28
|
"sideEffects": false,
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"typescript": "^6.0.3"
|
|
30
|
+
"typescript": "^6.0.3",
|
|
31
|
+
"vitest": "^4.1.5"
|
|
31
32
|
},
|
|
32
33
|
"dependencies": {
|
|
33
|
-
"@arbor-css/colors": "0.0.
|
|
34
|
-
"@arbor-css/globals": "0.0.
|
|
35
|
-
"@arbor-css/
|
|
36
|
-
"@arbor-css/
|
|
37
|
-
"@arbor-css/
|
|
38
|
-
"@arbor-css/
|
|
39
|
-
"@arbor-css/
|
|
40
|
-
"@arbor-css/
|
|
41
|
-
"@arbor-css/
|
|
34
|
+
"@arbor-css/colors": "0.0.52",
|
|
35
|
+
"@arbor-css/globals": "0.0.52",
|
|
36
|
+
"@arbor-css/primitives": "0.0.52",
|
|
37
|
+
"@arbor-css/shadows": "0.0.52",
|
|
38
|
+
"@arbor-css/modes": "0.0.52",
|
|
39
|
+
"@arbor-css/spacing": "0.0.52",
|
|
40
|
+
"@arbor-css/tokens": "0.0.52",
|
|
41
|
+
"@arbor-css/typography": "0.0.52",
|
|
42
|
+
"@arbor-css/functions": "0.0.52",
|
|
43
|
+
"@arbor-css/calc": "0.0.52",
|
|
44
|
+
"@arbor-css/util": "0.0.52"
|
|
42
45
|
},
|
|
43
46
|
"scripts": {
|
|
44
47
|
"build": "tsc",
|
|
45
|
-
"dev": "tsc -w --preserveWatchOutput"
|
|
48
|
+
"dev": "tsc -w --preserveWatchOutput",
|
|
49
|
+
"test": "vitest",
|
|
50
|
+
"test:ci": "vitest --run"
|
|
46
51
|
}
|
|
47
52
|
}
|