@bpmn-nova/studio 0.3.5-preview → 0.3.7-preview

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/shell.js CHANGED
@@ -1034,7 +1034,7 @@ export class BpmnStudioShell {
1034
1034
  ui: Object.freeze({ ...this._config.ui, regions: Object.freeze(normalizeStudioRegions(regions, this._config.ui.regions)) }),
1035
1035
  });
1036
1036
  }
1037
- if (changed || regions?.right === 'default') this._applyRegions();
1037
+ if (changed || regions?.right === 'default') this._applyRegions({ fit: false });
1038
1038
  return this.getRegions();
1039
1039
  }
1040
1040
  _isSidebarHidden(side) {
package/dist/styles.css CHANGED
@@ -938,6 +938,11 @@ button.mb-runtime-action-summary:hover, button.mb-runtime-action-summary:focus-v
938
938
  .mb-runtime-timeline-content { min-width: 0; display: grid; gap: 4px; }
939
939
  .mb-runtime-timeline-card { width: 100%; min-width: 0; overflow: visible; border: 0; border-radius: 0; display: grid; color: inherit; background: transparent; box-shadow: none; }
940
940
  .mb-runtime-timeline-card-main { width: 100%; min-width: 0; border: 0; border-radius: 8px; padding: 5px 7px; display: grid; gap: 3px; color: inherit; background: transparent; text-align: left; font: inherit; cursor: pointer; transition: background-color .14s ease, box-shadow .14s ease; }
941
+ .mb-runtime-timeline-card-main.has-avatars { grid-template-columns: auto minmax(0, 1fr); align-items: start; column-gap: 8px; }
942
+ .mb-runtime-timeline-card-copy { min-width: 0; display: grid; gap: 3px; }
943
+ .mb-runtime-timeline-avatars { display: flex; align-items: center; margin-top: 2px; }
944
+ .mb-runtime-timeline-avatars .mb-runtime-details-avatar + .mb-runtime-details-avatar { margin-left: -8px; box-shadow: 0 0 0 2px var(--nova-color-surface, #fff); }
945
+ .mb-runtime-timeline-avatar-more { font-size: var(--nova-font-size-xs, 10px); }
941
946
  .mb-runtime-timeline-card-main:hover { background: var(--nova-color-primary-soft, #f5f6ff); }
942
947
  .mb-runtime-timeline-card-main:focus-visible { outline: none; background: var(--nova-color-primary-soft, #f5f6ff); box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--nova-color-primary) 22%, transparent); }
943
948
  .mb-runtime-timeline-card-main:active { background: color-mix(in srgb, var(--nova-color-primary-soft) 84%, var(--nova-color-primary)); }