lightning-base-components 1.28.12-alpha → 1.28.13-alpha

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": "lightning-base-components",
3
- "version": "1.28.12-alpha",
3
+ "version": "1.28.13-alpha",
4
4
  "license": "MIT",
5
5
  "files": [
6
6
  "external",
@@ -296,7 +296,7 @@ export default class LightningCombobox extends LightningShadowBaseClass {
296
296
  this.updateValidity();
297
297
  }
298
298
  updateValidity() {
299
- if (!features.enableComboboxElementInternals) {
299
+ if (!features.enableComboboxElementInternals || import.meta.env.SSR) {
300
300
  return;
301
301
  }
302
302
  const baseCombobox = this.getBaseComboboxElement();