@momentum-design/components 0.48.0 → 0.49.0

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.
Files changed (66) hide show
  1. package/dist/browser/index.js.map +2 -2
  2. package/dist/components/alertchip/alertchip.types.d.ts +1 -1
  3. package/dist/components/avatar/avatar.types.d.ts +3 -2
  4. package/dist/components/badge/badge.types.d.ts +3 -2
  5. package/dist/components/brandvisual/brandvisual.types.d.ts +5 -1
  6. package/dist/components/bullet/bullet.types.d.ts +1 -1
  7. package/dist/components/button/button.component.d.ts +0 -5
  8. package/dist/components/button/button.component.js +0 -5
  9. package/dist/components/button/button.types.d.ts +1 -1
  10. package/dist/components/buttonsimple/buttonsimple.types.d.ts +7 -1
  11. package/dist/components/checkbox/checkbox.types.d.ts +5 -0
  12. package/dist/components/checkbox/checkbox.types.js +1 -0
  13. package/dist/components/chip/chip.types.d.ts +1 -1
  14. package/dist/components/divider/divider.types.d.ts +1 -1
  15. package/dist/components/formfieldwrapper/formfieldwrapper.types.d.ts +1 -1
  16. package/dist/components/input/input.types.d.ts +7 -1
  17. package/dist/components/inputchip/inputchip.types.d.ts +4 -0
  18. package/dist/components/inputchip/inputchip.types.js +1 -0
  19. package/dist/components/link/link.types.d.ts +1 -1
  20. package/dist/components/listitem/listitem.types.d.ts +7 -1
  21. package/dist/components/marker/marker.types.d.ts +2 -2
  22. package/dist/components/popover/popover.types.d.ts +10 -3
  23. package/dist/components/presence/presence.types.d.ts +3 -2
  24. package/dist/components/progressbar/progressbar.types.d.ts +2 -1
  25. package/dist/components/radio/radio.types.d.ts +5 -0
  26. package/dist/components/radio/radio.types.js +1 -0
  27. package/dist/components/screenreaderannouncer/screenreaderannouncer.types.d.ts +2 -1
  28. package/dist/components/spinner/spinner.types.d.ts +1 -1
  29. package/dist/components/tab/tab.types.d.ts +5 -1
  30. package/dist/components/text/text.types.d.ts +3 -2
  31. package/dist/components/textarea/textarea.types.d.ts +8 -1
  32. package/dist/components/toggle/toggle.types.d.ts +5 -1
  33. package/dist/components/tooltip/tooltip.types.d.ts +2 -1
  34. package/dist/components/virtualizedlist/virtualizedlist.types.d.ts +6 -2
  35. package/dist/custom-elements.json +244 -315
  36. package/dist/react/alertchip/index.d.ts +5 -4
  37. package/dist/react/avatarbutton/index.d.ts +5 -4
  38. package/dist/react/brandvisual/index.d.ts +3 -2
  39. package/dist/react/button/index.d.ts +5 -9
  40. package/dist/react/button/index.js +0 -5
  41. package/dist/react/buttonsimple/index.d.ts +5 -4
  42. package/dist/react/checkbox/index.d.ts +3 -3
  43. package/dist/react/checkbox/index.js +0 -1
  44. package/dist/react/chip/index.d.ts +5 -4
  45. package/dist/react/coachmark/index.d.ts +5 -4
  46. package/dist/react/filterchip/index.d.ts +5 -4
  47. package/dist/react/index.d.ts +1 -1
  48. package/dist/react/index.js +1 -1
  49. package/dist/react/input/index.d.ts +5 -5
  50. package/dist/react/input/index.js +0 -1
  51. package/dist/react/inputchip/index.d.ts +2 -1
  52. package/dist/react/listitem/index.d.ts +5 -4
  53. package/dist/react/option/index.d.ts +5 -4
  54. package/dist/react/popover/index.d.ts +5 -4
  55. package/dist/react/radio/index.d.ts +3 -3
  56. package/dist/react/radio/index.js +0 -1
  57. package/dist/react/searchfield/index.d.ts +5 -5
  58. package/dist/react/searchfield/index.js +0 -1
  59. package/dist/react/tab/index.d.ts +5 -4
  60. package/dist/react/textarea/index.d.ts +6 -6
  61. package/dist/react/textarea/index.js +0 -1
  62. package/dist/react/toggle/index.d.ts +3 -3
  63. package/dist/react/toggle/index.js +0 -1
  64. package/dist/react/tooltip/index.d.ts +5 -4
  65. package/dist/react/virtualizedlist/index.d.ts +2 -1
  66. package/package.json +1 -1
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/alertchip';
2
3
  /**
3
4
  * mdc-alertchip component is an interactive chip that consumers can use to represent an alert.
@@ -19,9 +20,9 @@ import Component from '../../components/alertchip';
19
20
  *
20
21
  */
21
22
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
22
- onClick: string;
23
- onKeyDown: string;
24
- onKeyUp: string;
25
- onFocus: string;
23
+ onClick: EventName<MouseEvent>;
24
+ onKeyDown: EventName<KeyboardEvent>;
25
+ onKeyUp: EventName<KeyboardEvent>;
26
+ onFocus: EventName<FocusEvent>;
26
27
  }>;
27
28
  export default reactWrapper;
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/avatarbutton';
2
3
  /**
3
4
  * The `mdc-avatarbutton` component is an interactable version of the `mdc-avatar` component.
@@ -15,9 +16,9 @@ import Component from '../../components/avatarbutton';
15
16
  * @tagname mdc-avatarbutton
16
17
  */
17
18
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
18
- onClick: string;
19
- onKeyDown: string;
20
- onKeyUp: string;
21
- onFocus: string;
19
+ onClick: EventName<MouseEvent>;
20
+ onKeyDown: EventName<KeyboardEvent>;
21
+ onKeyUp: EventName<KeyboardEvent>;
22
+ onFocus: EventName<FocusEvent>;
22
23
  }>;
23
24
  export default reactWrapper;
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/brandvisual';
2
3
  /**
3
4
  * The `mdc-brandvisual` component is responsible for rendering logos dynamically & ensures they are
@@ -17,7 +18,7 @@ import Component from '../../components/brandvisual';
17
18
  *
18
19
  */
19
20
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
20
- onLoad: string;
21
- onError: string;
21
+ onLoad: EventName<Event>;
22
+ onError: EventName<Event>;
22
23
  }>;
23
24
  export default reactWrapper;
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/button';
2
3
  /**
3
4
  * `mdc-button` is a component that can be configured in various ways to suit different use cases.
@@ -27,19 +28,14 @@ import Component from '../../components/button';
27
28
  *
28
29
  * @dependency mdc-icon
29
30
  *
30
- * @event click - (React: onClick) This event is dispatched when the button is clicked.
31
- * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the button.
32
- * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the button.
33
- * @event focus - (React: onFocus) This event is dispatched when the button receives focus.
34
- *
35
31
  * @tagname mdc-button
36
32
  *
37
33
  * @slot - Text label of the button.
38
34
  */
39
35
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
40
- onClick: string;
41
- onKeyDown: string;
42
- onKeyUp: string;
43
- onFocus: string;
36
+ onClick: EventName<MouseEvent>;
37
+ onKeyDown: EventName<KeyboardEvent>;
38
+ onKeyUp: EventName<KeyboardEvent>;
39
+ onFocus: EventName<FocusEvent>;
44
40
  }>;
45
41
  export default reactWrapper;
@@ -30,11 +30,6 @@ import { TAG_NAME } from '../../components/button/button.constants';
30
30
  *
31
31
  * @dependency mdc-icon
32
32
  *
33
- * @event click - (React: onClick) This event is dispatched when the button is clicked.
34
- * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the button.
35
- * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the button.
36
- * @event focus - (React: onFocus) This event is dispatched when the button receives focus.
37
- *
38
33
  * @tagname mdc-button
39
34
  *
40
35
  * @slot - Text label of the button.
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/buttonsimple';
2
3
  /**
3
4
  * `mdc-buttonsimple` is a component that can be configured in various ways to suit different use cases.
@@ -12,9 +13,9 @@ import Component from '../../components/buttonsimple';
12
13
  * @tagname mdc-buttonsimple
13
14
  */
14
15
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
15
- onClick: string;
16
- onKeyDown: string;
17
- onKeyUp: string;
18
- onFocus: string;
16
+ onClick: EventName<MouseEvent>;
17
+ onKeyDown: EventName<KeyboardEvent>;
18
+ onKeyUp: EventName<KeyboardEvent>;
19
+ onFocus: EventName<FocusEvent>;
19
20
  }>;
20
21
  export default reactWrapper;
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/checkbox';
2
3
  /**
3
4
  * Checkboxes allow users to select multiple options from a list or turn an item/feature on or off.
@@ -29,8 +30,7 @@ import Component from '../../components/checkbox';
29
30
  * @cssproperty --mdc-checkbox-pressed-icon-color - Background color for a selected checkbox when pressed.
30
31
  */
31
32
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
32
- undefined: string;
33
- onChange: string;
34
- onFocus: string;
33
+ onChange: EventName<Event>;
34
+ onFocus: EventName<FocusEvent>;
35
35
  }>;
36
36
  export default reactWrapper;
@@ -36,7 +36,6 @@ const reactWrapper = createComponent({
36
36
  elementClass: Component,
37
37
  react: React,
38
38
  events: {
39
- undefined: 'undefined',
40
39
  onChange: 'change',
41
40
  onFocus: 'focus',
42
41
  },
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/chip';
2
3
  /**
3
4
  * mdc-chip is an interactive element that can be used to represent a chip. It supports a leading icon along with label.
@@ -20,9 +21,9 @@ import Component from '../../components/chip';
20
21
  *
21
22
  */
22
23
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
23
- onClick: string;
24
- onKeyDown: string;
25
- onKeyUp: string;
26
- onFocus: string;
24
+ onClick: EventName<MouseEvent>;
25
+ onKeyDown: EventName<KeyboardEvent>;
26
+ onKeyUp: EventName<KeyboardEvent>;
27
+ onFocus: EventName<FocusEvent>;
27
28
  }>;
28
29
  export default reactWrapper;
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/coachmark';
2
3
  /**
3
4
  * Coachmark component based on top of the popover component,
@@ -26,9 +27,9 @@ import Component from '../../components/coachmark';
26
27
  *
27
28
  */
28
29
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
29
- onShown: string;
30
- onHidden: string;
31
- onCreated: string;
32
- onDestroyed: string;
30
+ onShown: EventName<Event>;
31
+ onHidden: EventName<Event>;
32
+ onCreated: EventName<Event>;
33
+ onDestroyed: EventName<Event>;
33
34
  }>;
34
35
  export default reactWrapper;
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/filterchip';
2
3
  /**
3
4
  * mdc-filterchip component is an interactive chip that consumers can use to select or deselect.
@@ -9,9 +10,9 @@ import Component from '../../components/filterchip';
9
10
  *
10
11
  */
11
12
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
12
- onClick: string;
13
- onKeyDown: string;
14
- onKeyUp: string;
15
- onFocus: string;
13
+ onClick: EventName<MouseEvent>;
14
+ onKeyDown: EventName<KeyboardEvent>;
15
+ onKeyUp: EventName<KeyboardEvent>;
16
+ onFocus: EventName<FocusEvent>;
16
17
  }>;
17
18
  export default reactWrapper;
@@ -2,9 +2,9 @@ export { default as AlertChip } from './alertchip';
2
2
  export { default as Appheader } from './appheader';
3
3
  export { default as Avatar } from './avatar';
4
4
  export { default as AvatarButton } from './avatarbutton';
5
+ export { default as Badge } from './badge';
5
6
  export { default as Brandvisual } from './brandvisual';
6
7
  export { default as Bullet } from './bullet';
7
- export { default as Badge } from './badge';
8
8
  export { default as Button } from './button';
9
9
  export { default as Buttonsimple } from './buttonsimple';
10
10
  export { default as Checkbox } from './checkbox';
@@ -2,9 +2,9 @@ export { default as AlertChip } from './alertchip';
2
2
  export { default as Appheader } from './appheader';
3
3
  export { default as Avatar } from './avatar';
4
4
  export { default as AvatarButton } from './avatarbutton';
5
+ export { default as Badge } from './badge';
5
6
  export { default as Brandvisual } from './brandvisual';
6
7
  export { default as Bullet } from './bullet';
7
- export { default as Badge } from './badge';
8
8
  export { default as Button } from './button';
9
9
  export { default as Buttonsimple } from './buttonsimple';
10
10
  export { default as Checkbox } from './checkbox';
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/input';
2
3
  /**
3
4
  * mdc-input is a component that allows users to input text.
@@ -41,10 +42,9 @@ import Component from '../../components/input';
41
42
  *
42
43
  */
43
44
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
44
- undefined: string;
45
- onInput: string;
46
- onChange: string;
47
- onFocus: string;
48
- onBlur: string;
45
+ onInput: EventName<InputEvent>;
46
+ onChange: EventName<Event>;
47
+ onFocus: EventName<FocusEvent>;
48
+ onBlur: EventName<FocusEvent>;
49
49
  }>;
50
50
  export default reactWrapper;
@@ -48,7 +48,6 @@ const reactWrapper = createComponent({
48
48
  elementClass: Component,
49
49
  react: React,
50
50
  events: {
51
- undefined: 'undefined',
52
51
  onInput: 'input',
53
52
  onChange: 'change',
54
53
  onFocus: 'focus',
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/inputchip';
2
3
  /**
3
4
  * mdc-inputchip component is an interactive chip that consumers can use to represent an input.
@@ -20,6 +21,6 @@ import Component from '../../components/inputchip';
20
21
  *
21
22
  */
22
23
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
23
- onRemove: string;
24
+ onRemove: EventName<Event>;
24
25
  }>;
25
26
  export default reactWrapper;
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/listitem';
2
3
  /**
3
4
  * mdc-listitem component is used to display a label with different types of controls.
@@ -37,9 +38,9 @@ import Component from '../../components/listitem';
37
38
  * @event focus - (React: onFocus) This event is dispatched when the listitem receives focus.
38
39
  */
39
40
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
40
- onClick: string;
41
- onKeyDown: string;
42
- onKeyUp: string;
43
- onFocus: string;
41
+ onClick: EventName<MouseEvent>;
42
+ onKeyDown: EventName<KeyboardEvent>;
43
+ onKeyUp: EventName<KeyboardEvent>;
44
+ onFocus: EventName<FocusEvent>;
44
45
  }>;
45
46
  export default reactWrapper;
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/option';
2
3
  /**
3
4
  * option component, which is used as a list item in a select component.<br/>
@@ -13,9 +14,9 @@ import Component from '../../components/option';
13
14
  * @event focus - (React: onFocus) This event is dispatched when the option receives focus.
14
15
  */
15
16
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
16
- onClick: string;
17
- onKeyDown: string;
18
- onKeyUp: string;
19
- onFocus: string;
17
+ onClick: EventName<MouseEvent>;
18
+ onKeyDown: EventName<KeyboardEvent>;
19
+ onKeyUp: EventName<KeyboardEvent>;
20
+ onFocus: EventName<FocusEvent>;
20
21
  }>;
21
22
  export default reactWrapper;
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/popover';
2
3
  /**
3
4
  * Popover component is a lightweight floating UI element that displays additional content when triggered.
@@ -28,9 +29,9 @@ import Component from '../../components/popover';
28
29
  *
29
30
  */
30
31
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
31
- onShown: string;
32
- onHidden: string;
33
- onCreated: string;
34
- onDestroyed: string;
32
+ onShown: EventName<Event>;
33
+ onHidden: EventName<Event>;
34
+ onCreated: EventName<Event>;
35
+ onDestroyed: EventName<Event>;
35
36
  }>;
36
37
  export default reactWrapper;
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/radio';
2
3
  /**
3
4
  * Radio allow users to select single options from a list or turn an item/feature on or off.
@@ -30,8 +31,7 @@ import Component from '../../components/radio';
30
31
  *
31
32
  */
32
33
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
33
- undefined: string;
34
- onChange: string;
35
- onFocus: string;
34
+ onChange: EventName<Event>;
35
+ onFocus: EventName<FocusEvent>;
36
36
  }>;
37
37
  export default reactWrapper;
@@ -37,7 +37,6 @@ const reactWrapper = createComponent({
37
37
  elementClass: Component,
38
38
  react: React,
39
39
  events: {
40
- undefined: 'undefined',
41
40
  onChange: 'change',
42
41
  onFocus: 'focus',
43
42
  },
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/searchfield';
2
3
  /**
3
4
  * searchfield component is used as an input field for search functionality.
@@ -12,10 +13,9 @@ import Component from '../../components/searchfield';
12
13
  *
13
14
  */
14
15
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
15
- undefined: string;
16
- onInput: string;
17
- onChange: string;
18
- onFocus: string;
19
- onBlur: string;
16
+ onInput: EventName<InputEvent>;
17
+ onChange: EventName<Event>;
18
+ onFocus: EventName<FocusEvent>;
19
+ onBlur: EventName<FocusEvent>;
20
20
  }>;
21
21
  export default reactWrapper;
@@ -19,7 +19,6 @@ const reactWrapper = createComponent({
19
19
  elementClass: Component,
20
20
  react: React,
21
21
  events: {
22
- undefined: 'undefined',
23
22
  onInput: 'input',
24
23
  onChange: 'change',
25
24
  onFocus: 'focus',
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/tab';
2
3
  /**
3
4
  * `mdc-tab` is Tab component to be used within the Tabgroup.
@@ -89,9 +90,9 @@ import Component from '../../components/tab';
89
90
  * @cssproperty --mdc-tab-pill-inactive-color-disabled - Text and icon color for inactive pill tab in disabled state.
90
91
  */
91
92
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
92
- onClick: string;
93
- onKeyDown: string;
94
- onKeyUp: string;
95
- onFocus: string;
93
+ onClick: EventName<MouseEvent>;
94
+ onKeyDown: EventName<KeyboardEvent>;
95
+ onKeyUp: EventName<KeyboardEvent>;
96
+ onFocus: EventName<FocusEvent>;
96
97
  }>;
97
98
  export default reactWrapper;
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/textarea';
2
3
  /**
3
4
  * mdc-textarea component, which is used to get the multi-line text input from the user.
@@ -49,11 +50,10 @@ import Component from '../../components/textarea';
49
50
  * @cssproperty --mdc-textarea-focused-border-color - Border color for the textarea container when focused
50
51
  */
51
52
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
52
- onLimitExceeded: string;
53
- undefined: string;
54
- onInput: string;
55
- onChange: string;
56
- onFocus: string;
57
- onBlur: string;
53
+ onLimitExceeded: EventName<Event>;
54
+ onInput: EventName<InputEvent>;
55
+ onChange: EventName<Event>;
56
+ onFocus: EventName<FocusEvent>;
57
+ onBlur: EventName<FocusEvent>;
58
58
  }>;
59
59
  export default reactWrapper;
@@ -57,7 +57,6 @@ const reactWrapper = createComponent({
57
57
  react: React,
58
58
  events: {
59
59
  onLimitExceeded: 'limitexceeded',
60
- undefined: 'undefined',
61
60
  onInput: 'input',
62
61
  onChange: 'change',
63
62
  onFocus: 'focus',
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/toggle';
2
3
  /**
3
4
  * Toggle Component is an interactive control used to switch between two mutually exclusive options,
@@ -36,8 +37,7 @@ import Component from '../../components/toggle';
36
37
  *
37
38
  */
38
39
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
39
- undefined: string;
40
- onChange: string;
41
- onFocus: string;
40
+ onChange: EventName<Event>;
41
+ onFocus: EventName<FocusEvent>;
42
42
  }>;
43
43
  export default reactWrapper;
@@ -43,7 +43,6 @@ const reactWrapper = createComponent({
43
43
  elementClass: Component,
44
44
  react: React,
45
45
  events: {
46
- undefined: 'undefined',
47
46
  onChange: 'change',
48
47
  onFocus: 'focus',
49
48
  },
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/tooltip';
2
3
  /**
3
4
  * A tooltip is triggered by mouse hover or by keyboard focus
@@ -19,9 +20,9 @@ import Component from '../../components/tooltip';
19
20
  *
20
21
  */
21
22
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
22
- onShown: string;
23
- onHidden: string;
24
- onCreated: string;
25
- onDestroyed: string;
23
+ onShown: EventName<Event>;
24
+ onHidden: EventName<Event>;
25
+ onCreated: EventName<Event>;
26
+ onDestroyed: EventName<Event>;
26
27
  }>;
27
28
  export default reactWrapper;
@@ -1,3 +1,4 @@
1
+ import { type EventName } from '@lit/react';
1
2
  import Component from '../../components/virtualizedlist';
2
3
  /**
3
4
  * `mdc-virtualizedlist` component for creating custom virtualized lists.
@@ -14,6 +15,6 @@ import Component from '../../components/virtualizedlist';
14
15
  * @slot - Client side List with nested list items.
15
16
  */
16
17
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
17
- onScroll: string;
18
+ onScroll: EventName<Event>;
18
19
  }>;
19
20
  export default reactWrapper;
package/package.json CHANGED
@@ -39,5 +39,5 @@
39
39
  "lit": "^3.2.0",
40
40
  "uuid": "^11.0.5"
41
41
  },
42
- "version": "0.48.0"
42
+ "version": "0.49.0"
43
43
  }