@gem-sdk/core 1.9.21 → 1.9.22

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.
@@ -172,8 +172,8 @@ const composeBorderCss = (borderV)=>{
172
172
  return '';
173
173
  }
174
174
  return `${border ? `border-style: ${border};` : ''}
175
- ${width ? `border-width: ${width};` : undefined}
176
- ${color ? `border-color: ${colors.getSingleColorVariable(color)};` : undefined}
175
+ ${width ? `border-width: ${width};` : ''}
176
+ ${color ? `border-color: ${colors.getSingleColorVariable(color)};` : ''}
177
177
  `;
178
178
  };
179
179
 
@@ -170,8 +170,8 @@ const composeBorderCss = (borderV)=>{
170
170
  return '';
171
171
  }
172
172
  return `${border ? `border-style: ${border};` : ''}
173
- ${width ? `border-width: ${width};` : undefined}
174
- ${color ? `border-color: ${getSingleColorVariable(color)};` : undefined}
173
+ ${width ? `border-width: ${width};` : ''}
174
+ ${color ? `border-color: ${getSingleColorVariable(color)};` : ''}
175
175
  `;
176
176
  };
177
177
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "1.9.21",
3
+ "version": "1.9.22",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",