km-card-layout-core 0.1.9 → 0.1.10

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/index.js CHANGED
@@ -232,8 +232,6 @@ const buildWrapperStyle = (el, unit) => {
232
232
  height: (0, exports.addUnit)(abs.height, unit),
233
233
  zIndex: abs.zIndex,
234
234
  boxSizing: 'border-box',
235
- display: 'flex',
236
- alignItems: 'center',
237
235
  }, unit);
238
236
  };
239
237
  const buildPanelContentStyle = (el, unit) => (0, exports.styleObjectToString)({
package/index.ts CHANGED
@@ -265,8 +265,6 @@ const buildWrapperStyle = (el: CardElement, unit: 'px' | 'rpx'): string => {
265
265
  height: addUnit(abs.height, unit),
266
266
  zIndex: abs.zIndex,
267
267
  boxSizing: 'border-box',
268
- display: 'flex',
269
- alignItems: 'center',
270
268
  },
271
269
  unit
272
270
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "km-card-layout-core",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Shared render helpers for CardMaster layout JSON (binding resolution, layout normalization).",
5
5
  "main": "dist/index.js",
6
6
  "types": "types.d.ts",