web-input-material 0.0.288 → 0.0.289

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,3 +1,4 @@
1
1
  import { WebComponentAPI } from 'web-component-wrapper/type';
2
- export declare const CircularSpinner: WebComponentAPI;
2
+ import { CircularProgress } from '@rmwc/circular-progress';
3
+ export declare const CircularSpinner: WebComponentAPI<typeof CircularProgress>;
3
4
  export default CircularSpinner;
@@ -27,21 +27,24 @@ import wrapAsWebComponent from 'web-component-wrapper'
27
27
  import {WebComponentAPI} from 'web-component-wrapper/type'
28
28
  import {CircularProgress} from '@rmwc/circular-progress'
29
29
  // endregion
30
- export const CircularSpinner:WebComponentAPI = wrapAsWebComponent<
31
- typeof CircularProgress
32
- >(
33
- createWrapConfigurationsComponent<typeof CircularProgress>(
34
- CircularProgress, {withReference: false}
35
- ) as typeof CircularProgress,
36
- 'CircularSpinner',
37
- {propTypes: {
38
- size: oneOfType(
39
- [oneOf(['xsmall', 'small', 'medium', 'large', 'xlarge']), number]
40
- ),
41
- theme: string,
42
- themeConfiguration: object
43
- }}
44
- )
30
+ export const CircularSpinner:WebComponentAPI<typeof CircularProgress> =
31
+ wrapAsWebComponent<typeof CircularProgress>(
32
+ createWrapConfigurationsComponent<typeof CircularProgress>(
33
+ CircularProgress, {withReference: false}
34
+ ) as typeof CircularProgress,
35
+ 'CircularSpinner',
36
+ {propTypes: {
37
+ size: oneOfType(
38
+ [
39
+ oneOf(['xsmall', 'small', 'medium', 'large', 'xlarge']),
40
+ number
41
+ ]
42
+ ),
43
+ theme: string,
44
+ themeConfiguration: object
45
+ }}
46
+ )
47
+
45
48
  export default CircularSpinner
46
49
  // region vim modline
47
50
  // vim: set tabstop=4 shiftwidth=4 expandtab:
@@ -1,3 +1,4 @@
1
+ import ReactFileInput from 'react-input-material/components/FileInput';
1
2
  import { WebComponentAPI } from 'web-component-wrapper/type';
2
- export declare const FileInput: WebComponentAPI;
3
+ export declare const FileInput: WebComponentAPI<typeof ReactFileInput>;
3
4
  export default FileInput;