@homebound/beam 2.193.0 → 2.194.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/dist/Css.js +4 -4
  2. package/package.json +1 -1
package/dist/Css.js CHANGED
@@ -1000,9 +1000,9 @@ var Palette;
1000
1000
  exports.Css = new CssBuilder({ rules: {}, enabled: true, important: false, selector: undefined });
1001
1001
  exports.print = "@media print";
1002
1002
  exports.sm = "@media screen and (max-width:599px)";
1003
- exports.md = "@media screen and (min-width:600px) and (max-width:959px)";
1004
- exports.smOrMd = "@media screen and (max-width:959px)";
1003
+ exports.md = "@media screen and (min-width:600px) and (max-width:1024px)";
1004
+ exports.smOrMd = "@media screen and (max-width:1024px)";
1005
1005
  exports.mdAndUp = "@media screen and (min-width:600px)";
1006
- exports.mdAndDown = "@media screen and (max-width:959px)";
1007
- exports.lg = "@media screen and (min-width:960px)";
1006
+ exports.mdAndDown = "@media screen and (max-width:1024px)";
1007
+ exports.lg = "@media screen and (min-width:1025px)";
1008
1008
  exports.mdOrLg = "@media screen and (min-width:600px)";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homebound/beam",
3
- "version": "2.193.0",
3
+ "version": "2.194.0",
4
4
  "author": "Homebound",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",