styleframe 3.2.0 → 3.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.
- package/CHANGELOG.md +43 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# styleframe
|
|
2
2
|
|
|
3
|
+
## 3.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#154](https://github.com/styleframe-dev/styleframe/pull/154) [`352f10c`](https://github.com/styleframe-dev/styleframe/commit/352f10c958ac12b7dde245657f3ae8d548e9378b) Thanks [@alexgrozav](https://github.com/alexgrozav)! - Update color palette for accessibility and show hex values in swatches
|
|
8
|
+
- Revise base color values to OKLCH-aligned accessible colors for both light and dark modes
|
|
9
|
+
- Remove per-color `text.on-*` tokens in favor of a single `colorTextInverted` reference
|
|
10
|
+
- Display computed hex values inside color swatch previews
|
|
11
|
+
- Add `color.<name>` labels below each swatch with monospace styling
|
|
12
|
+
|
|
13
|
+
- [#149](https://github.com/styleframe-dev/styleframe/pull/149) [`b9e54ed`](https://github.com/styleframe-dev/styleframe/commit/b9e54eda1acbf1b1b256f96bf6306dc300602618) Thanks [@alexgrozav](https://github.com/alexgrozav)! - Flatten design tokens preset result and rename variable composables
|
|
14
|
+
- Rename all variable composables from `use{Name}` to `use{Name}DesignTokens` for clearer naming
|
|
15
|
+
- Flatten `useDesignTokensPreset` result so variables are directly destructurable instead of nested by domain
|
|
16
|
+
- Add OKLCH gamut mapping utilities for color processing
|
|
17
|
+
- Add color reference value support so colors can reference generated shade/tint variants
|
|
18
|
+
- Add border, transition, and animation utility implementations
|
|
19
|
+
|
|
20
|
+
- [#155](https://github.com/styleframe-dev/styleframe/pull/155) [`cc4f170`](https://github.com/styleframe-dev/styleframe/commit/cc4f170c56ad2e246b94ab4d64b7f6c3097c7223) Thanks [@alexgrozav](https://github.com/alexgrozav)! - Refactor recipes, improve modifier at-rule support, and forward variables through modifier factories
|
|
21
|
+
- Refactor recipes and utilities with improved color theming composables
|
|
22
|
+
- Add at-rule support for modifiers (e.g. media preference modifiers)
|
|
23
|
+
- Forward variables and children through all modifier factory functions
|
|
24
|
+
- Restructure docs for components, utilities, and modifiers into composable subdirectories
|
|
25
|
+
- Add Button composable recipe documentation
|
|
26
|
+
- Update plugin scanner for improved recipe handling
|
|
27
|
+
|
|
28
|
+
- [#151](https://github.com/styleframe-dev/styleframe/pull/151) [`6a18eeb`](https://github.com/styleframe-dev/styleframe/commit/6a18eeb5e36d9f66ef48f2e107d2b6ff65b2a792) Thanks [@alexgrozav](https://github.com/alexgrozav)! - Rename colorLightness to colorLevel across theme, docs, and storybook
|
|
29
|
+
- Rename `colorLightness` value to `colorLevel` for clearer terminology
|
|
30
|
+
- Rename `useColorLightnessDesignTokens` to `useColorLevelDesignTokens`
|
|
31
|
+
- Update all color-related design token references from lightness to level
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- [#152](https://github.com/styleframe-dev/styleframe/pull/152) [`d7f4405`](https://github.com/styleframe-dev/styleframe/commit/d7f440585c942842b20bd97e2781131d28c3ee08) Thanks [@alexgrozav](https://github.com/alexgrozav)! - Reorganize composable documentation into dedicated subdirectories
|
|
36
|
+
- Move design token, utility, and modifier composable docs into `02.composables/` subdirectories
|
|
37
|
+
- Update content to use "composable" terminology consistently
|
|
38
|
+
- Add animations composable documentation page
|
|
39
|
+
- Split transitions-animation into separate transitions and animations pages
|
|
40
|
+
|
|
41
|
+
- Updated dependencies [[`cc4f170`](https://github.com/styleframe-dev/styleframe/commit/cc4f170c56ad2e246b94ab4d64b7f6c3097c7223)]:
|
|
42
|
+
- @styleframe/core@3.2.0
|
|
43
|
+
- @styleframe/transpiler@3.1.0
|
|
44
|
+
- @styleframe/plugin@3.2.0
|
|
45
|
+
|
|
3
46
|
## 3.2.0
|
|
4
47
|
|
|
5
48
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "styleframe",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"bin": {
|
|
5
5
|
"styleframe": "./dist/cli.cjs"
|
|
6
6
|
},
|
|
@@ -88,18 +88,18 @@
|
|
|
88
88
|
"@styleframe/license": "^2.0.2"
|
|
89
89
|
},
|
|
90
90
|
"peerDependencies": {
|
|
91
|
-
"@styleframe/plugin": "^3.
|
|
92
|
-
"@styleframe/core": "^3.
|
|
91
|
+
"@styleframe/plugin": "^3.2.0",
|
|
92
|
+
"@styleframe/core": "^3.2.0",
|
|
93
93
|
"@styleframe/loader": "^3.0.0",
|
|
94
|
-
"@styleframe/transpiler": "^3.0
|
|
94
|
+
"@styleframe/transpiler": "^3.1.0"
|
|
95
95
|
},
|
|
96
96
|
"devDependencies": {
|
|
97
97
|
"@styleframe/config-typescript": "^3.0.0",
|
|
98
98
|
"@styleframe/cli": "^3.0.0",
|
|
99
|
-
"@styleframe/plugin": "^3.
|
|
100
|
-
"@styleframe/core": "^3.
|
|
99
|
+
"@styleframe/plugin": "^3.2.0",
|
|
100
|
+
"@styleframe/core": "^3.2.0",
|
|
101
101
|
"@styleframe/loader": "^3.0.0",
|
|
102
|
-
"@styleframe/transpiler": "^3.0
|
|
102
|
+
"@styleframe/transpiler": "^3.1.0",
|
|
103
103
|
"@types/node": "^22.15.17",
|
|
104
104
|
"@vitest/coverage-v8": "^3.2.4",
|
|
105
105
|
"bumpp": "^10.1.0",
|