styleframe 2.5.1 → 3.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,49 @@
1
1
  # styleframe
2
2
 
3
+ ## 3.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [#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.
8
+
9
+ ### Minor Changes
10
+
11
+ - [#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
12
+ - Add `@`-prefixed string reference shorthand for inline token references in declarations (e.g., `"@color.primary"`)
13
+ - Fix keyframes object API outputting `[object Object]` by parsing percentage, `from`, and `to` keys as nested selectors
14
+ - Prevent namespace double-prepending for `@`-prefixed values in utilities and defaults
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [[`266f961`](https://github.com/styleframe-dev/styleframe/commit/266f96143e9ffb47e0e6326d0e5e7cc9d974ab83), [`ffe6764`](https://github.com/styleframe-dev/styleframe/commit/ffe6764a2e6c84d5b3cfdf431bf11f17a3f3f118)]:
19
+ - @styleframe/core@3.0.0
20
+ - @styleframe/transpiler@3.0.0
21
+ - @styleframe/loader@3.0.0
22
+ - @styleframe/cli@3.0.0
23
+ - @styleframe/plugin@3.0.0
24
+
25
+ ## 2.6.0
26
+
27
+ ### Minor Changes
28
+
29
+ - [#83](https://github.com/styleframe-dev/styleframe/pull/83) [`6deddfd`](https://github.com/styleframe-dev/styleframe/commit/6deddfd7a97df13a7fcb865dbf088995f79bd4f3) Thanks [@alexgrozav](https://github.com/alexgrozav)! - Add Figma plugin for syncing Styleframe variables with Figma variables and CLI commands for Figma import/export
30
+
31
+ - [#105](https://github.com/styleframe-dev/styleframe/pull/105) [`b109ac1`](https://github.com/styleframe-dev/styleframe/commit/b109ac148d837ae0a060c34f0236338bf4deca36) Thanks [@alexgrozav](https://github.com/alexgrozav)! - Add multiplier support to spacing utilities (margin, padding, gap, space) with @-prefixed numeric values that generate calc() expressions based on a base spacing variable
32
+
33
+ ### Patch Changes
34
+
35
+ - Updated dependencies [[`6deddfd`](https://github.com/styleframe-dev/styleframe/commit/6deddfd7a97df13a7fcb865dbf088995f79bd4f3)]:
36
+ - @styleframe/cli@2.4.0
37
+
38
+ ## 2.5.2
39
+
40
+ ### Patch Changes
41
+
42
+ - [#102](https://github.com/styleframe-dev/styleframe/pull/102) [`90c3ae8`](https://github.com/styleframe-dev/styleframe/commit/90c3ae8dd19a688f88d1b362af6bef732de988d6) Thanks [@alexgrozav](https://github.com/alexgrozav)! - Add `@styleframe/license` dependency and move runtime to production dependencies in init command
43
+
44
+ - Updated dependencies [[`90c3ae8`](https://github.com/styleframe-dev/styleframe/commit/90c3ae8dd19a688f88d1b362af6bef732de988d6)]:
45
+ - @styleframe/cli@2.3.3
46
+
3
47
  ## 2.5.1
4
48
 
5
49
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "styleframe",
3
- "version": "2.5.1",
3
+ "version": "3.0.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": "^2.3.2",
87
+ "@styleframe/cli": "^3.0.0",
88
88
  "@styleframe/license": "^2.0.2"
89
89
  },
90
90
  "peerDependencies": {
91
- "@styleframe/plugin": "^2.4.0",
92
- "@styleframe/core": "^2.6.0",
93
- "@styleframe/loader": "^2.4.0",
94
- "@styleframe/transpiler": "^2.6.0"
91
+ "@styleframe/plugin": "^3.0.0",
92
+ "@styleframe/core": "^3.0.0",
93
+ "@styleframe/loader": "^3.0.0",
94
+ "@styleframe/transpiler": "^3.0.0"
95
95
  },
96
96
  "devDependencies": {
97
- "@styleframe/config-typescript": "^2",
98
- "@styleframe/cli": "^2.3.2",
99
- "@styleframe/plugin": "^2.4.0",
100
- "@styleframe/core": "^2.6.0",
101
- "@styleframe/loader": "^2.4.0",
102
- "@styleframe/transpiler": "^2.6.0",
97
+ "@styleframe/config-typescript": "^3.0.0",
98
+ "@styleframe/cli": "^3.0.0",
99
+ "@styleframe/plugin": "^3.0.0",
100
+ "@styleframe/core": "^3.0.0",
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",