styleframe 2.6.0 → 3.1.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 +39 -0
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# styleframe
|
|
2
2
|
|
|
3
|
+
## 3.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#121](https://github.com/styleframe-dev/styleframe/pull/121) [`0242bd6`](https://github.com/styleframe-dev/styleframe/commit/0242bd65028cfc9216ed56e06d52de75ceff4d4b) Thanks [@alexgrozav](https://github.com/alexgrozav)! - Add utility modifier composables with auto-registration in useUtilitiesPreset
|
|
8
|
+
- Add 68 modifiers across 8 categories: pseudo-states, form states, structural, pseudo-elements, media preferences, ARIA states, directional, and other states
|
|
9
|
+
- Each modifier is individually importable (e.g., `useHoverModifier`, `useDisabledModifier`)
|
|
10
|
+
- Grouped composables available for convenience (e.g., `usePseudoStateModifiers`)
|
|
11
|
+
- Per-category configuration to enable/disable modifier groups via `ModifiersConfig`
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#120](https://github.com/styleframe-dev/styleframe/pull/120) [`fa48802`](https://github.com/styleframe-dev/styleframe/commit/fa488027d32956e20fa26dc92ee1a3b3583671ad) Thanks [@alexgrozav](https://github.com/alexgrozav)! - Add hash-based utility class names for arbitrary CSS values containing whitespace. Values like `transition: 'all 0.3s ease'` now produce valid CSS class names using a deterministic hash (e.g., `_transition:2f7a3b1`) instead of invalid bracket notation with spaces.
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [[`fa48802`](https://github.com/styleframe-dev/styleframe/commit/fa488027d32956e20fa26dc92ee1a3b3583671ad)]:
|
|
18
|
+
- @styleframe/core@3.0.1
|
|
19
|
+
|
|
20
|
+
## 3.0.0
|
|
21
|
+
|
|
22
|
+
### Major Changes
|
|
23
|
+
|
|
24
|
+
- [#117](https://github.com/styleframe-dev/styleframe/pull/117) [`ffe6764`](https://github.com/styleframe-dev/styleframe/commit/ffe6764a2e6c84d5b3cfdf431bf11f17a3f3f118) Thanks [@alexgrozav](https://github.com/alexgrozav)! - Introduce global Styleframe single-instance architecture. Extension files (`*.styleframe.ts`) now share the same instance created in `styleframe.config.ts` instead of creating independent instances. This is a breaking change that affects how styles are imported and composed across files.
|
|
25
|
+
|
|
26
|
+
### Minor Changes
|
|
27
|
+
|
|
28
|
+
- [#81](https://github.com/styleframe-dev/styleframe/pull/81) [`266f961`](https://github.com/styleframe-dev/styleframe/commit/266f96143e9ffb47e0e6326d0e5e7cc9d974ab83) Thanks [@alexgrozav](https://github.com/alexgrozav)! - Add @-prefixed string reference shorthand and fix keyframes object API
|
|
29
|
+
- Add `@`-prefixed string reference shorthand for inline token references in declarations (e.g., `"@color.primary"`)
|
|
30
|
+
- Fix keyframes object API outputting `[object Object]` by parsing percentage, `from`, and `to` keys as nested selectors
|
|
31
|
+
- Prevent namespace double-prepending for `@`-prefixed values in utilities and defaults
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- Updated dependencies [[`266f961`](https://github.com/styleframe-dev/styleframe/commit/266f96143e9ffb47e0e6326d0e5e7cc9d974ab83), [`ffe6764`](https://github.com/styleframe-dev/styleframe/commit/ffe6764a2e6c84d5b3cfdf431bf11f17a3f3f118)]:
|
|
36
|
+
- @styleframe/core@3.0.0
|
|
37
|
+
- @styleframe/transpiler@3.0.0
|
|
38
|
+
- @styleframe/loader@3.0.0
|
|
39
|
+
- @styleframe/cli@3.0.0
|
|
40
|
+
- @styleframe/plugin@3.0.0
|
|
41
|
+
|
|
3
42
|
## 2.6.0
|
|
4
43
|
|
|
5
44
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "styleframe",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"bin": {
|
|
5
5
|
"styleframe": "./dist/cli.cjs"
|
|
6
6
|
},
|
|
@@ -84,22 +84,22 @@
|
|
|
84
84
|
"access": "public"
|
|
85
85
|
},
|
|
86
86
|
"dependencies": {
|
|
87
|
-
"@styleframe/cli": "^
|
|
87
|
+
"@styleframe/cli": "^3.0.0",
|
|
88
88
|
"@styleframe/license": "^2.0.2"
|
|
89
89
|
},
|
|
90
90
|
"peerDependencies": {
|
|
91
|
-
"@styleframe/plugin": "^
|
|
92
|
-
"@styleframe/core": "^
|
|
93
|
-
"@styleframe/loader": "^
|
|
94
|
-
"@styleframe/transpiler": "^
|
|
91
|
+
"@styleframe/plugin": "^3.0.0",
|
|
92
|
+
"@styleframe/core": "^3.0.1",
|
|
93
|
+
"@styleframe/loader": "^3.0.0",
|
|
94
|
+
"@styleframe/transpiler": "^3.0.0"
|
|
95
95
|
},
|
|
96
96
|
"devDependencies": {
|
|
97
|
-
"@styleframe/config-typescript": "^
|
|
98
|
-
"@styleframe/cli": "^
|
|
99
|
-
"@styleframe/plugin": "^
|
|
100
|
-
"@styleframe/core": "^
|
|
101
|
-
"@styleframe/loader": "^
|
|
102
|
-
"@styleframe/transpiler": "^
|
|
97
|
+
"@styleframe/config-typescript": "^3.0.0",
|
|
98
|
+
"@styleframe/cli": "^3.0.0",
|
|
99
|
+
"@styleframe/plugin": "^3.0.0",
|
|
100
|
+
"@styleframe/core": "^3.0.1",
|
|
101
|
+
"@styleframe/loader": "^3.0.0",
|
|
102
|
+
"@styleframe/transpiler": "^3.0.0",
|
|
103
103
|
"@types/node": "^22.15.17",
|
|
104
104
|
"@vitest/coverage-v8": "^3.2.4",
|
|
105
105
|
"bumpp": "^10.1.0",
|