@cakemail-org/ui-components-v2 2.0.88 → 2.0.89

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/dist/cjs/index.js CHANGED
@@ -2756,7 +2756,7 @@ function modelToJson(model) {
2756
2756
  obj[key] = value;
2757
2757
  }
2758
2758
  }
2759
- else if (value) {
2759
+ else if (value != null) {
2760
2760
  obj[key] = value;
2761
2761
  }
2762
2762
  });
package/dist/esm/index.js CHANGED
@@ -2736,7 +2736,7 @@ function modelToJson(model) {
2736
2736
  obj[key] = value;
2737
2737
  }
2738
2738
  }
2739
- else if (value) {
2739
+ else if (value != null) {
2740
2740
  obj[key] = value;
2741
2741
  }
2742
2742
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cakemail-org/ui-components-v2",
3
- "version": "2.0.88",
3
+ "version": "2.0.89",
4
4
  "description": "ui library kit made with material UI",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",