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.
- package/components/CheckboxInput.bundle.js +1 -1
- package/components/CheckboxInput.js +1 -1
- package/components/CheckboxInput.ts +10 -1
- package/components/CircularSpinner.ts +12 -10
- package/components/FileInput.bundle.js +1 -1
- package/components/FileInput.js +1 -1
- package/components/FileInput.ts +10 -1
- package/components/TabItem.ts +5 -3
- package/index.bundle.js +1 -1
- package/index.js +1 -1
- package/package.json +2 -2
package/components/FileInput.ts
CHANGED
|
@@ -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
|
|
package/components/TabItem.ts
CHANGED
|
@@ -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
|
-
{
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
{
|
|
33
|
+
propTypes: {
|
|
34
|
+
stacked: boolean, theme: string, themeConfiguration: object
|
|
35
|
+
}
|
|
36
|
+
}
|
|
35
37
|
)
|
|
36
38
|
|
|
37
39
|
export default TabItem
|