@teachinglab/omd 0.2.10 → 0.3.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.
@@ -375,9 +375,11 @@ export class omdStepVisualizerInteractiveSteps {
375
375
  alignItems: 'flex-start !important'
376
376
  };
377
377
 
378
- // Add drop shadow if requested
379
- if (this.stylingOptions.dropShadow) {
380
- baseStyles.boxShadow = '0 2px 8px rgba(0,0,0,0.15)';
378
+ // Add drop shadow if requested - but NOT to individual step boxes
379
+ // The drop shadow should only be on the outer background rectangle
380
+ // Remove any previous drop shadow from individual steps
381
+ if (stepBox.div) {
382
+ stepBox.div.style.boxShadow = 'none';
381
383
  }
382
384
 
383
385
  // Set font family if specified
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teachinglab/omd",
3
- "version": "0.2.10",
3
+ "version": "0.3.0",
4
4
  "description": "omd",
5
5
  "main": "./index.js",
6
6
  "module": "./index.js",