@splunk/themes 0.23.0 → 0.24.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 +5 -0
  2. package/package.json +3 -1
package/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Change Log
2
2
  ============
3
3
 
4
+ 0.24.0 - May 6, 2025
5
+ ----------
6
+ Bug Fixes:
7
+ * Added `main` and `types` properties to package.json (SUI-7464).
8
+
4
9
  0.23.0 - February 5, 2025
5
10
  ----------
6
11
  Bug Fixes:
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@splunk/themes",
3
- "version": "0.23.0",
3
+ "version": "0.24.0",
4
4
  "description": "Theme variables and mixins for the Splunk design language",
5
+ "main": "./index.js",
6
+ "types": "./types/index.d.ts",
5
7
  "scripts": {
6
8
  "babel": "babel src -d . --ignore src/babel-plugin-base64-png,src/tests --ignore \"**/docs\" --extensions .js,.ts,.tsx",
7
9
  "build": "cross-env NODE_ENV=production yarn babel && yarn types:build",