@uxland/primary-shell 6.0.1 → 6.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uxland/primary-shell",
3
- "version": "6.0.1",
3
+ "version": "6.0.3",
4
4
  "description": "Primaria Shell",
5
5
  "author": "UXLand <dev@uxland.es>",
6
6
  "homepage": "https://github.com/uxland/harmonix/tree/app#readme",
@@ -26,7 +26,7 @@
26
26
  },
27
27
  "dependencies": {
28
28
  "@uxland/harmonix": "^1.1.1",
29
- "@uxland/harmonix-adapters": "^1.2.1"
29
+ "@uxland/harmonix-adapters": "^1.2.2"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@primaria/plugins-core": "^1.0.14",
@@ -124,7 +124,11 @@ export class ActivityHistoryTimeline extends LitElement {
124
124
  });
125
125
 
126
126
  if (closestIndex !== -1 && this._virtualizer) {
127
- this._virtualizer[virtualizerRef].element(closestIndex).scrollIntoView();
127
+ this._virtualizer[virtualizerRef].element(closestIndex).scrollIntoView({
128
+ block: "nearest",
129
+ inline: "nearest",
130
+ behavior: "smooth",
131
+ });
128
132
  }
129
133
  }
130
134
  }