@geotab/zenith 1.24.0 → 1.24.1

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/README.md +2 -2
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -40,9 +40,9 @@ Zenith library provides components defined in Zenith Design System. It includes
40
40
 
41
41
  ## Change log
42
42
 
43
- ### 1.24.0
43
+ ### 1.24.1
44
44
 
45
- * * Create `Summary` component
45
+ * Create `Summary` component
46
46
  * Create `Mobile banner` and fix DriveApp banner paddings
47
47
  * Create context provider for buttons in `Header`
48
48
  * Allow `Pill` to be used without text
package/package.json CHANGED
@@ -1,10 +1,12 @@
1
1
  {
2
2
  "name": "@geotab/zenith",
3
- "version": "1.24.0",
3
+ "version": "1.24.1",
4
4
  "description": "Zenith components library on React",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
- "sideEffects": false,
7
+ "sideEffects": [
8
+ "**/*.css"
9
+ ],
8
10
  "module": "dist/index.js",
9
11
  "scripts": {
10
12
  "test": "npm run clean && npm run test-build && jest",