web-input-material 0.0.435 → 0.0.437
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/CircularSpinner.bundle.js +19 -19
- package/components/CircularSpinner.js +1 -1
- package/components/CircularSpinner.ts +1 -5
- package/components/FileInput.bundle.js +18 -18
- package/components/FileInput.js +1 -1
- package/components/FileInput.ts +1 -5
- package/components/GenericAnimate.bundle.js +6 -6
- package/components/GenericAnimate.js +1 -1
- package/components/GenericAnimate.ts +0 -4
- package/components/GenericInputs.bundle.js +18 -18
- package/components/GenericInputs.js +1 -1
- package/components/GenericInputs.ts +1 -5
- package/components/GenericInterval.ts +1 -5
- package/components/RequireableCheckbox.bundle.js +13 -13
- package/components/RequireableCheckbox.js +1 -1
- package/components/RequireableCheckbox.ts +1 -5
- package/components/SliderInput.bundle.js +24 -24
- package/components/SliderInput.d.ts +1 -1
- package/components/SliderInput.js +1 -1
- package/components/SliderInput.ts +4 -6
- package/components/TabBar.ts +3 -7
- package/components/TabItem.ts +1 -5
- package/components/Tabs.bundle.js +20 -89
- package/components/Tabs.js +1 -1
- package/components/TextInput.bundle.js +18 -18
- package/components/TextInput.js +1 -1
- package/components/TextInput.ts +1 -5
- package/declarations.d.ts +1 -5
- package/index.bundle.js +31 -31
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +51 -47
package/components/FileInput.ts
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
endregion
|
|
18
18
|
*/
|
|
19
19
|
// region imports
|
|
20
|
-
import {boolean, string} from 'clientnode/property-types'
|
|
20
|
+
import {boolean, string} from 'clientnode/dist/property-types'
|
|
21
21
|
import ReactFileInput from 'react-input-material/dist/components/FileInput'
|
|
22
22
|
import wrapAsWebComponent from 'web-component-wrapper'
|
|
23
23
|
import {WebComponentAPI} from 'web-component-wrapper/type'
|
|
@@ -52,7 +52,3 @@ export const FileInput:WebComponentAPI<typeof ReactFileInput> =
|
|
|
52
52
|
)
|
|
53
53
|
|
|
54
54
|
export default FileInput
|
|
55
|
-
// region vim modline
|
|
56
|
-
// vim: set tabstop=4 shiftwidth=4 expandtab:
|
|
57
|
-
// vim: foldmethod=marker foldmarker=region,endregion:
|
|
58
|
-
// endregion
|