kempo-css 1.3.10 → 1.3.12
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/.github/workflows/publish.yml +3 -0
- package/.github/workflows/test.yml +26 -0
- package/CHANGELOG.md +86 -0
- package/package.json +1 -1
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
name: Run Unit Tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
test:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@v4
|
|
13
|
+
with:
|
|
14
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
|
15
|
+
|
|
16
|
+
- uses: actions/setup-node@v4
|
|
17
|
+
with:
|
|
18
|
+
node-version: '20.x'
|
|
19
|
+
|
|
20
|
+
- run: npm ci
|
|
21
|
+
|
|
22
|
+
- name: Install Xvfb
|
|
23
|
+
run: sudo apt-get install -y xvfb
|
|
24
|
+
|
|
25
|
+
- name: Run Unit Tests
|
|
26
|
+
run: xvfb-run npm test
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## [1.3.10] - 2026-02-26
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- Added `!important` to color utility classes for higher specificity
|
|
9
|
+
|
|
10
|
+
## [1.3.3] - 2026-01-30
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Fixed checkboxes and radio button styling
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- Moved dependencies to devDependencies (not needed for consumers, only development)
|
|
17
|
+
- CI workflow improvements for NPM publishing
|
|
18
|
+
|
|
19
|
+
> Versions 1.3.4–1.3.9 were published on the same day as CI/CD workflow fixes for NPM publishing; no CSS or feature changes.
|
|
20
|
+
|
|
21
|
+
## [1.3.2] - 2025-12-01
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
- Changed license to MIT for jsDelivr compatibility
|
|
25
|
+
|
|
26
|
+
## [1.3.1] - 2025-12-01
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
- Fixed build output
|
|
30
|
+
|
|
31
|
+
## [1.3.0] - 2025-11-30
|
|
32
|
+
|
|
33
|
+
### Added
|
|
34
|
+
- Added elevation utility classes
|
|
35
|
+
- Added more drop shadow options
|
|
36
|
+
|
|
37
|
+
## [1.2.0] - 2025-11-29
|
|
38
|
+
|
|
39
|
+
### Fixed
|
|
40
|
+
- Fixed drop shadow utilities
|
|
41
|
+
|
|
42
|
+
### Added
|
|
43
|
+
- Added unit tests for drop shadows
|
|
44
|
+
|
|
45
|
+
## [1.1.0] - 2025-11-26
|
|
46
|
+
|
|
47
|
+
### Added
|
|
48
|
+
- Added section navigation to theme-editor sidemenu
|
|
49
|
+
- Removed kempo-ui dependency, now serving from CDN instead
|
|
50
|
+
|
|
51
|
+
## [1.0.9] - 2025-11-26
|
|
52
|
+
|
|
53
|
+
### Added
|
|
54
|
+
- Theme builder / theme editor
|
|
55
|
+
|
|
56
|
+
## [1.0.8] - 2025-10-29
|
|
57
|
+
|
|
58
|
+
### Added
|
|
59
|
+
- Added LICENSE file
|
|
60
|
+
|
|
61
|
+
## [1.0.7] - 2025-10-29
|
|
62
|
+
|
|
63
|
+
### Added
|
|
64
|
+
- Added icon support
|
|
65
|
+
- Added `no-scroll` utility class
|
|
66
|
+
- Started theme builder component
|
|
67
|
+
|
|
68
|
+
## [1.0.6] - 2025-10-01
|
|
69
|
+
|
|
70
|
+
### Changed
|
|
71
|
+
- Made select element options match the active theme
|
|
72
|
+
|
|
73
|
+
## [1.0.5] - 2025-08-22
|
|
74
|
+
|
|
75
|
+
### Added
|
|
76
|
+
- Initial release published to NPM
|
|
77
|
+
- Base CSS reset and theme system
|
|
78
|
+
- Typography utilities
|
|
79
|
+
- Color utilities
|
|
80
|
+
- Spacing utilities
|
|
81
|
+
- Flexbox and grid layout utilities
|
|
82
|
+
- Button styles
|
|
83
|
+
- Form styles
|
|
84
|
+
- Table styles
|
|
85
|
+
- Documentation site
|
|
86
|
+
- GitHub Actions workflow for automated NPM publishing
|