@octaviaflow/themes 1.0.1 → 2.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.
- package/CHANGELOG.md +70 -0
- package/es/index.js +4981 -0
- package/lib/index.js +2404 -2618
- package/package.json +13 -14
- package/scss/generated/_button-tokens.scss +115 -0
- package/scss/generated/_content-switcher-tokens.scss +30 -0
- package/scss/generated/_notification-tokens.scss +77 -0
- package/scss/generated/_status-tokens.scss +75 -0
- package/scss/generated/_tag-tokens.scss +289 -0
- package/scss/generated/_themes.scss +604 -0
- package/scss/generated/_tokens.scss +443 -0
- package/src/__tests__/themes-test.js +26 -0
- package/src/__tests__/themes.test.js +26 -0
- package/src/__tests__/tools-test.js +34 -0
- package/src/__tests__/tools.test.js +34 -0
- package/src/component-tokens/content-switcher/index.js +8 -0
- package/src/component-tokens/content-switcher/tokens.js +31 -0
- package/src/component-tokens/status/index.js +8 -0
- package/src/component-tokens/status/tokens.js +91 -0
- package/src/tokens/__tests__/Token-test.js +50 -0
- package/src/tokens/__tests__/TokenFormat-test.js +32 -0
- package/src/tokens/__tests__/TokenGroup-test.js +166 -0
- package/src/tokens/__tests__/TokenSet-test.js +111 -0
- package/src/tokens/__tests__/__snapshots__/v11-test.js.snap +291 -0
- package/src/tokens/__tests__/metadata-test.js +1674 -0
- package/src/tokens/__tests__/v11-test.js +36 -0
- package/src/v10/__tests__/themes-test.js +32 -0
- package/src/v10/__tests__/tokens-test.js +23 -0
- package/telemetry.yml +12 -8
- package/umd/index.js +5421 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to `@octaviaflow/themes` will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [2.0.0] - 2026-02-07
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Major version bump to 2.0.0 for unified OctaviaFlow Design System release
|
|
13
|
+
- Updated all internal dependency references to ^2.0.0
|
|
14
|
+
- Replaced workspace protocol references with explicit version ranges
|
|
15
|
+
|
|
16
|
+
## [1.1.3] - 2026-02-07
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Synchronized version to 1.1.3 across all OctaviaFlow Design System packages
|
|
21
|
+
- Aligned package versioning for unified release
|
|
22
|
+
|
|
23
|
+
## [1.1.0] - 2026-02-05
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
|
|
27
|
+
- Modern CLI output with colored text and progress indicators using `chalk` and `ora`
|
|
28
|
+
- Real-time progress tracking during SCSS file generation
|
|
29
|
+
- File-by-file generation status with visual feedback
|
|
30
|
+
- Enhanced error messages with colored output and stack traces
|
|
31
|
+
|
|
32
|
+
### Changed
|
|
33
|
+
|
|
34
|
+
- Replaced `fs-extra` with native Node.js `fs/promises` for better performance
|
|
35
|
+
- Improved build script with modern async/await patterns
|
|
36
|
+
- Enhanced developer experience with emoji indicators and color-coded messages
|
|
37
|
+
|
|
38
|
+
### Removed
|
|
39
|
+
|
|
40
|
+
- Dependency on `fs-extra` (replaced with native fs)
|
|
41
|
+
- Dependency on `@octaviaflow/cli-reporter` (replaced with chalk/ora)
|
|
42
|
+
|
|
43
|
+
### Dependencies
|
|
44
|
+
|
|
45
|
+
- Added `chalk@4.1.2` for colored terminal output
|
|
46
|
+
- Added `ora@5.4.1` for elegant spinners
|
|
47
|
+
- Removed `fs-extra@^11.0.0`
|
|
48
|
+
- Removed `@octaviaflow/cli-reporter@^1.0.0`
|
|
49
|
+
|
|
50
|
+
### Performance
|
|
51
|
+
|
|
52
|
+
- Faster build times with native fs operations
|
|
53
|
+
- Reduced dependency tree size
|
|
54
|
+
|
|
55
|
+
## [1.0.1] - 2025-11-11
|
|
56
|
+
|
|
57
|
+
### Fixed
|
|
58
|
+
|
|
59
|
+
- Initial release fixes and improvements
|
|
60
|
+
|
|
61
|
+
## [1.0.0] - 2025-11-11
|
|
62
|
+
|
|
63
|
+
### Added
|
|
64
|
+
|
|
65
|
+
- Initial release of @octaviaflow/themes
|
|
66
|
+
- Theme system for OctaviaFlow Design System
|
|
67
|
+
- Support for multiple color themes (white, g10, g90, g100)
|
|
68
|
+
- Component tokens for buttons, tags, notifications, status, and content switcher
|
|
69
|
+
- SCSS generation from JavaScript tokens
|
|
70
|
+
- ES modules, CommonJS, and UMD bundle support
|