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.
@@ -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 GenericInterval: WebComponentAPI<typeof Interval>;
4
- export default GenericInterval;
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 GenericInterval */
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 GenericInterval: WebComponentAPI<typeof Interval> =
25
+ export const IntervalInput: WebComponentAPI<typeof Interval> =
26
26
  wrapAsWebComponent<typeof Interval>(
27
27
  Interval,
28
- 'GenericInterval',
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
- visited: boolean
43
+
44
+ name: string
43
45
  }
44
46
  }
45
47
  )
46
48
 
47
- export default GenericInterval
49
+ export default IntervalInput