herum-shared 0.1.49 → 0.1.51

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.
@@ -309,6 +309,8 @@ declare const regexExpressions: {
309
309
  chromeVersionRegex: RegExp;
310
310
  removeSpacesRegex: RegExp;
311
311
  phoneNumberTenDigits: RegExp;
312
+ trailingSlashes: RegExp;
313
+ leadingAndTrailingSlashes: RegExp;
312
314
  };
313
315
 
314
316
  declare const resourceFileTypes: {
@@ -62,6 +62,7 @@ type EnvironmentConfig = {
62
62
  siteServerPath: string;
63
63
  filesDisplayServerPath?: string;
64
64
  s3ServerPath: string;
65
+ bucketPlaceholderKey: string;
65
66
  userAction: string;
66
67
  lessonSocketBackend: string;
67
68
  keyboardEventsLocalSocketPath: string;
@@ -2430,7 +2430,7 @@ class HerumRadioButtonComponent {
2430
2430
  }
2431
2431
  this.selectedOptionId = value.id;
2432
2432
  this.type = value.type;
2433
- this.isBlocked = value.hasOwnProperty('isBlocked') ? !!value.isBlocked : false;
2433
+ this.isBlocked = value.isBlocked ?? this.isBlocked;
2434
2434
  }
2435
2435
  registerOnChange(fn) {
2436
2436
  this.onChange = fn;