web-input-material 0.0.473 → 0.0.474
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 +283 -0
- package/components/CheckboxInput.d.ts +4 -0
- package/components/{RequireableCheckbox.js → CheckboxInput.js} +1 -1
- package/components/{RequireableCheckbox.ts → CheckboxInput.ts} +5 -5
- package/components/CircularSpinner.bundle.js +6 -6
- package/components/CircularSpinner.js +1 -1
- package/components/CircularSpinner.ts +1 -1
- package/components/FileInput.bundle.js +12 -12
- package/components/FileInput.js +1 -1
- package/components/GenericAnimate.bundle.js +4 -4
- package/components/GenericAnimate.js +1 -1
- package/components/GenericInputs.bundle.js +12 -12
- package/components/GenericInputs.js +1 -1
- package/components/{GenericInterval.d.ts → IntervalInput.d.ts} +2 -2
- package/components/{GenericInterval.ts → IntervalInput.ts} +10 -8
- package/components/SliderInput.bundle.js +9 -9
- package/components/SliderInput.js +1 -1
- package/components/SliderInput.ts +1 -1
- package/components/TabBar.ts +1 -1
- package/components/TabItem.ts +1 -1
- package/components/Tabs.bundle.js +12 -12
- package/components/Tabs.js +1 -1
- package/components/TextInput.bundle.js +12 -12
- package/components/TextInput.js +1 -1
- package/components/TextInput.ts +7 -5
- package/index.bundle.js +20 -20
- package/index.d.ts +2 -2
- package/index.js +1 -1
- package/package.json +28 -28
- package/components/RequireableCheckbox.bundle.js +0 -283
- package/components/RequireableCheckbox.d.ts +0 -4
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import Interval from 'react-input-material/dist/components/Interval';
|
|
2
2
|
import { WebComponentAPI } from 'web-component-wrapper/type';
|
|
3
|
-
export declare const
|
|
4
|
-
export default
|
|
3
|
+
export declare const IntervalInput: WebComponentAPI<typeof Interval>;
|
|
4
|
+
export default IntervalInput;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// #!/usr/bin/env babel-node
|
|
2
2
|
// -*- coding: utf-8 -*-
|
|
3
|
-
/** @module
|
|
3
|
+
/** @module IntervalInput */
|
|
4
4
|
'use strict'
|
|
5
5
|
/* !
|
|
6
6
|
region header
|
|
@@ -22,26 +22,28 @@ import Interval from 'react-input-material/dist/components/Interval'
|
|
|
22
22
|
import wrapAsWebComponent from 'web-component-wrapper'
|
|
23
23
|
import {WebComponentAPI} from 'web-component-wrapper/type'
|
|
24
24
|
// endregion
|
|
25
|
-
export const
|
|
25
|
+
export const IntervalInput: WebComponentAPI<typeof Interval> =
|
|
26
26
|
wrapAsWebComponent<typeof Interval>(
|
|
27
27
|
Interval,
|
|
28
|
-
'
|
|
28
|
+
'IntervalInput',
|
|
29
29
|
{
|
|
30
30
|
eventToPropertyMapping: {onChange: true},
|
|
31
31
|
internalProperties: {enforceUncontrolled: true},
|
|
32
32
|
propertiesToReflectAsAttributes: {
|
|
33
33
|
dirty: boolean,
|
|
34
34
|
focused: boolean,
|
|
35
|
-
invalid: boolean,
|
|
36
|
-
invalidRequired: boolean,
|
|
37
|
-
name: string,
|
|
38
35
|
pristine: boolean,
|
|
39
36
|
touched: boolean,
|
|
40
37
|
untouched: boolean,
|
|
38
|
+
visited: boolean,
|
|
39
|
+
|
|
40
|
+
invalid: boolean,
|
|
41
|
+
invalidRequired: boolean,
|
|
41
42
|
valid: boolean,
|
|
42
|
-
|
|
43
|
+
|
|
44
|
+
name: string
|
|
43
45
|
}
|
|
44
46
|
}
|
|
45
47
|
)
|
|
46
48
|
|
|
47
|
-
export default
|
|
49
|
+
export default IntervalInput
|