* Remove the raw value data from sessionStorage or the cookie depending on what the browser is supporting. * @private
()
| 6288 | * @private |
| 6289 | */ |
| 6290 | _removeValueFromPersistentStorage() { |
| 6291 | if (this.settings.saveValueToSessionStorage) { |
| 6292 | sessionStorage.removeItem(this.rawValueStorageName); |
| 6293 | } |
| 6294 | } |
| 6295 | |
| 6296 | /** |
| 6297 | * Get the default value from the html `value` attribute. |