@@ -211,7 +211,9 @@ PrecisionInput.defaultProps = {
211
211
max: Number.MAX_SAFE_INTEGER,
212
212
theme: light,
213
213
labelPosition: 'top',
214
- precision: 2
214
+ precision: 2,
215
+ persisted_props: ['value'],
216
+ persistence_type: 'local'
215
217
};
216
218
217
219
PrecisionInput.propTypes = {
@@ -293,7 +295,34 @@ PrecisionInput.propTypes = {
293
295
* Dash-assigned callback that gets fired when selected
294
296
* value changes.
295
297
*/
296
- setProps: PropTypes.func
298
+ setProps: PropTypes.func,
299
+
300
+ /**
301
+ * Used to allow user interactions in this component to be persisted when
302
+ * the component - or the page - is refreshed. If `persisted` is truthy and
303
+ * hasn't changed from its previous value, a `value` that the user has
304
+ * changed while using the app will keep that change, as long as
305
+ * the new `value` also matches what was given originally.
306
+ * Used in conjunction with `persistence_type`.
307
+ */
308
+ persistence: PropTypes.oneOfType([PropTypes.bool, PropTypes.string, PropTypes.number]),
309
+
310
+ /**
311
+ * Properties whose user interactions will persist after refreshing the
312
+ * component or the page. Since only `value` is allowed this prop can
313
+ * normally be ignored.
314
+ */
315
+ persisted_props: PropTypes.arrayOf(PropTypes.oneOf(['value'])),
316
+
317
+ /**
318
+ * Where persisted user changes will be stored:
319
+ * memory: only kept in memory, reset on page refresh.
320
+ * local: window.localStorage, data is kept after the browser quit.
321
+ * session: window.sessionStorage, data is cleared once the browser quit.
322
+ */
323
+ persistence_type: PropTypes.oneOf(['local', 'session', 'memory'])
297
324
};
298
325
299
- export default withTheme(PrecisionInput);
326
+ const ThemedPrecisionInput = withTheme(PrecisionInput);
327
+ ThemedPrecisionInput.defaultProps = PrecisionInput.defaultProps;
328
+ export default ThemedPrecisionInput;
0 commit comments