web-input-material 0.0.294 → 0.0.296
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.js +1 -1
- package/components/CircularSpinner.ts +1 -1
- package/components/FileInput.d.ts +1 -1
- package/components/FileInput.js +1 -1
- package/components/FileInput.ts +1 -1
- package/components/GenericAnimate.d.ts +1 -1
- package/components/GenericAnimate.js +1 -1
- package/components/GenericAnimate.ts +2 -1
- package/components/GenericInput.d.ts +1 -1
- package/components/GenericInput.js +1 -1
- package/components/GenericInput.minimal.input-bundle.js +13 -13
- package/components/GenericInput.ts +2 -1
- package/components/GenericInputs.d.ts +1 -1
- package/components/GenericInputs.js +1 -1
- package/components/GenericInputs.ts +1 -1
- package/components/GenericInterval.d.ts +1 -1
- package/components/GenericInterval.ts +1 -1
- package/components/RequireableCheckbox.d.ts +1 -1
- package/components/RequireableCheckbox.js +1 -1
- package/components/RequireableCheckbox.ts +1 -1
- package/components/SliderInput.js +1 -1
- package/components/SliderInput.ts +2 -2
- package/components/TabBar.ts +1 -1
- package/components/TabItem.ts +1 -1
- package/components/Tabs.js +1 -1
- package/index.js +1 -1
- package/package.json +8 -9
- package/type.d.ts +1 -1
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
*/
|
|
19
19
|
// region imports
|
|
20
20
|
import {boolean, string} from 'clientnode/property-types'
|
|
21
|
-
import ReactGenericInput from
|
|
21
|
+
import ReactGenericInput from
|
|
22
|
+
'react-input-material/dist/components/GenericInput'
|
|
22
23
|
import wrapAsWebComponent from 'web-component-wrapper'
|
|
23
24
|
import {WebComponentAPI} from 'web-component-wrapper/type'
|
|
24
25
|
// endregion
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import ReactInputs from 'react-input-material/components/Inputs';
|
|
1
|
+
import ReactInputs from 'react-input-material/dist/components/Inputs';
|
|
2
2
|
import { WebComponentAPI } from 'web-component-wrapper/type';
|
|
3
3
|
export declare const GenericInputs: WebComponentAPI<typeof ReactInputs>;
|
|
4
4
|
export default GenericInputs;
|