web-input-material 0.0.496 → 0.0.497
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 +9 -9
- package/components/CheckboxInput.d.ts +1 -1
- package/components/CheckboxInput.js +1 -1
- package/components/CheckboxInput.ts +2 -2
- package/components/CircularSpinner.bundle.js +9 -9
- package/components/CircularSpinner.js +1 -1
- package/components/CircularSpinner.ts +3 -3
- package/components/FileInput.bundle.js +15 -15
- package/components/FileInput.d.ts +1 -1
- package/components/FileInput.js +1 -1
- package/components/FileInput.ts +2 -2
- package/components/GenericAnimate.bundle.js +5 -5
- package/components/GenericAnimate.ts +1 -1
- package/components/GenericInputs.bundle.js +25 -25
- package/components/GenericInputs.d.ts +1 -1
- package/components/GenericInputs.js +1 -1
- package/components/GenericInputs.ts +2 -2
- package/components/IntervalInput.d.ts +1 -1
- package/components/IntervalInput.ts +2 -2
- package/components/SliderInput.bundle.js +14 -14
- package/components/SliderInput.js +1 -1
- package/components/SliderInput.ts +2 -2
- package/components/TabBar.ts +4 -6
- package/components/TabItem.ts +4 -5
- package/components/Tabs.bundle.js +12 -12
- package/components/Tabs.js +1 -1
- package/components/TextInput.bundle.js +25 -25
- package/components/TextInput.d.ts +1 -1
- package/components/TextInput.js +1 -1
- package/components/TextInput.ts +2 -2
- package/index.bundle.js +20 -20
- package/index.js +1 -1
- package/package.json +11 -11
- package/type.d.ts +1 -1
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
*/
|
|
19
19
|
// region imports
|
|
20
20
|
import {boolean, string} from 'clientnode/property-types'
|
|
21
|
-
import ReactInputs from 'react-input-material/
|
|
21
|
+
import ReactInputs from 'react-input-material/components/Inputs'
|
|
22
22
|
import wrapAsWebComponent from 'web-component-wrapper'
|
|
23
23
|
import {WebComponentAPI} from 'web-component-wrapper/type'
|
|
24
24
|
// endregion
|
|
25
25
|
export const GenericInputs: WebComponentAPI<typeof ReactInputs> =
|
|
26
|
-
wrapAsWebComponent
|
|
26
|
+
wrapAsWebComponent(
|
|
27
27
|
ReactInputs,
|
|
28
28
|
'GenericInputs',
|
|
29
29
|
{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import Interval from 'react-input-material/
|
|
1
|
+
import Interval from 'react-input-material/components/Interval';
|
|
2
2
|
import { WebComponentAPI } from 'web-component-wrapper/type';
|
|
3
3
|
export declare const IntervalInput: WebComponentAPI<typeof Interval>;
|
|
4
4
|
export default IntervalInput;
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
*/
|
|
19
19
|
// region imports
|
|
20
20
|
import {boolean, string} from 'clientnode/property-types'
|
|
21
|
-
import Interval from 'react-input-material/
|
|
21
|
+
import Interval from 'react-input-material/components/Interval'
|
|
22
22
|
import wrapAsWebComponent from 'web-component-wrapper'
|
|
23
23
|
import {WebComponentAPI} from 'web-component-wrapper/type'
|
|
24
24
|
// endregion
|
|
25
25
|
export const IntervalInput: WebComponentAPI<typeof Interval> =
|
|
26
|
-
wrapAsWebComponent
|
|
26
|
+
wrapAsWebComponent(
|
|
27
27
|
Interval,
|
|
28
28
|
'IntervalInput',
|
|
29
29
|
{
|