web-input-material 0.0.489 → 0.0.490

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.
@@ -47,7 +47,16 @@ export const FileInput: WebComponentAPI<typeof ReactFileInput> =
47
47
  invalidRequired: boolean,
48
48
 
49
49
  name: string
50
- }
50
+ },
51
+ /*
52
+ NOTE: When this configuration is enabled the following error
53
+ occurs:
54
+ installHook.js:1 Warning: Attempted to synchronously unmount a
55
+ root while React was already rendering. React cannot finish
56
+ unmounting the root until the current render has completed,
57
+ which may lead to a race condition.
58
+ */
59
+ unmountOnDisconnect: false
51
60
  }
52
61
  )
53
62
 
@@ -29,9 +29,11 @@ export const TabItem: WebComponentAPI<typeof Tab> =
29
29
  wrapAsWebComponent<typeof Tab>(
30
30
  createWrapConfigurationsComponent<typeof Tab>(Tab) as typeof Tab,
31
31
  'TabItem',
32
- {propTypes: {
33
- stacked: boolean, theme: string, themeConfiguration: object
34
- }}
32
+ {
33
+ propTypes: {
34
+ stacked: boolean, theme: string, themeConfiguration: object
35
+ }
36
+ }
35
37
  )
36
38
 
37
39
  export default TabItem