@momentum-design/components 0.96.1 → 0.96.3

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 (36) hide show
  1. package/dist/browser/index.js +74 -74
  2. package/dist/browser/index.js.map +4 -4
  3. package/dist/components/button/button.component.d.ts +2 -1
  4. package/dist/components/button/button.component.js +3 -2
  5. package/dist/components/button/button.constants.d.ts +6 -6
  6. package/dist/components/buttongroup/buttongroup.constants.d.ts +3 -3
  7. package/dist/components/buttonsimple/buttonsimple.component.d.ts +2 -1
  8. package/dist/components/buttonsimple/buttonsimple.component.js +3 -3
  9. package/dist/components/buttonsimple/buttonsimple.constants.d.ts +4 -4
  10. package/dist/components/buttonsimple/buttonsimple.constants.js +2 -1
  11. package/dist/components/card/card.constants.d.ts +9 -9
  12. package/dist/components/cardcheckbox/cardcheckbox.constants.d.ts +3 -3
  13. package/dist/components/chip/chip.constants.d.ts +5 -5
  14. package/dist/components/chip/chip.constants.js +2 -1
  15. package/dist/components/coachmark/coachmark.constants.d.ts +5 -5
  16. package/dist/components/filterchip/filterchip.constants.d.ts +2 -2
  17. package/dist/components/formfieldwrapper/formfieldwrapper.constants.d.ts +3 -3
  18. package/dist/components/input/input.constants.d.ts +10 -10
  19. package/dist/components/inputchip/inputchip.constants.d.ts +3 -3
  20. package/dist/components/link/link.constants.d.ts +1 -1
  21. package/dist/components/linkbutton/linkbutton.constants.d.ts +4 -4
  22. package/dist/components/linksimple/linksimple.constants.d.ts +2 -2
  23. package/dist/components/menubar/menubar.constants.d.ts +1 -1
  24. package/dist/components/menupopover/menupopover.constants.d.ts +2 -2
  25. package/dist/components/searchfield/searchfield.constants.d.ts +4 -4
  26. package/dist/components/skeleton/skeleton.constants.d.ts +1 -1
  27. package/dist/components/spinner/spinner.component.d.ts +1 -1
  28. package/dist/components/spinner/spinner.constants.d.ts +3 -3
  29. package/dist/components/statictoggle/statictoggle.constants.d.ts +1 -1
  30. package/dist/components/textarea/textarea.component.d.ts +2 -2
  31. package/dist/components/textarea/textarea.constants.d.ts +4 -4
  32. package/dist/components/toggletip/toggletip.constants.d.ts +6 -6
  33. package/dist/components/tooltip/tooltip.constants.d.ts +6 -6
  34. package/dist/components/virtualizedlist/virtualizedlist.constants.d.ts +3 -3
  35. package/dist/custom-elements.json +56 -8
  36. package/package.json +1 -1
@@ -1,5 +1,6 @@
1
1
  import type { PropertyValues } from 'lit';
2
2
  import { CSSResult } from 'lit';
3
+ import type { RoleType } from '../../utils/roles';
3
4
  import Buttonsimple from '../buttonsimple/buttonsimple.component';
4
5
  import type { IconButtonSize, PillButtonSize } from './button.types';
5
6
  declare const Button_base: import("../../utils/mixins/index.types").Constructor<import("../../utils/mixins/ButtonComponentMixin").ButtonComponentMixinInterface> & typeof Buttonsimple;
@@ -59,7 +60,7 @@ declare class Button extends Button_base {
59
60
  * - Custom behaviors are implemented that require a specific ARIA role for accessibility purposes.
60
61
  * @default button
61
62
  */
62
- role: string;
63
+ role: RoleType;
63
64
  /**
64
65
  * @internal
65
66
  */
@@ -10,6 +10,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
10
10
  import { html } from 'lit';
11
11
  import { property, state } from 'lit/decorators.js';
12
12
  import { ButtonComponentMixin } from '../../utils/mixins/ButtonComponentMixin';
13
+ import { ROLE } from '../../utils/roles';
13
14
  import Buttonsimple from '../buttonsimple/buttonsimple.component';
14
15
  import { DEFAULTS } from './button.constants';
15
16
  import styles from './button.styles';
@@ -72,7 +73,7 @@ class Button extends ButtonComponentMixin(Buttonsimple) {
72
73
  * - Custom behaviors are implemented that require a specific ARIA role for accessibility purposes.
73
74
  * @default button
74
75
  */
75
- this.role = 'button';
76
+ this.role = ROLE.BUTTON;
76
77
  }
77
78
  update(changedProperties) {
78
79
  super.update(changedProperties);
@@ -150,7 +151,7 @@ __decorate([
150
151
  ], Button.prototype, "inverted", void 0);
151
152
  __decorate([
152
153
  property({ type: String, reflect: true }),
153
- __metadata("design:type", Object)
154
+ __metadata("design:type", String)
154
155
  ], Button.prototype, "role", void 0);
155
156
  __decorate([
156
157
  state(),
@@ -33,11 +33,11 @@ declare const BUTTON_TYPE_INTERNAL: {
33
33
  readonly PILL_WITH_ICON: "pill-with-icon";
34
34
  };
35
35
  declare const DEFAULTS: {
36
- VARIANT: "primary";
37
- SIZE: 32;
38
- COLOR: "default";
39
- TYPE_INTERNAL: "icon";
40
- TYPE: "button";
41
- INVERTED: boolean;
36
+ readonly VARIANT: "primary";
37
+ readonly SIZE: 32;
38
+ readonly COLOR: "default";
39
+ readonly TYPE_INTERNAL: "icon";
40
+ readonly TYPE: "button";
41
+ readonly INVERTED: false;
42
42
  };
43
43
  export { TAG_NAME, DEFAULTS, BUTTON_VARIANTS, PILL_BUTTON_SIZES, ICON_BUTTON_SIZES, BUTTON_COLORS, BUTTON_TYPE_INTERNAL, BUTTON_TYPE, };
@@ -14,8 +14,8 @@ declare const BUTTON_GROUP_VARIANT: {
14
14
  readonly SECONDARY: "secondary";
15
15
  };
16
16
  declare const DEFAULTS: {
17
- SIZE: 28;
18
- VARIANT: "primary";
19
- ORIENTATION: "horizontal";
17
+ readonly SIZE: 28;
18
+ readonly VARIANT: "primary";
19
+ readonly ORIENTATION: "horizontal";
20
20
  };
21
21
  export { TAG_NAME, DEFAULTS, BUTTON_GROUP_SIZE, BUTTON_GROUP_ORIENTATION, BUTTON_GROUP_VARIANT };
@@ -1,6 +1,7 @@
1
1
  import type { PropertyValues } from 'lit';
2
2
  import { CSSResult } from 'lit';
3
3
  import { Component } from '../../models';
4
+ import type { RoleType } from '../../utils/roles';
4
5
  import type { ButtonSize, ButtonType } from './buttonsimple.types';
5
6
  declare const Buttonsimple_base: import("../../utils/mixins/index.types").Constructor<import("../../utils/mixins/AutoFocusMixin").AutoFocusMixinInterface> & import("../../utils/mixins/index.types").Constructor<import("../../utils/mixins/TabIndexMixin").TabIndexMixinInterface> & import("../../utils/mixins/index.types").Constructor<import("../../utils/mixins/DisabledMixin").DisabledMixinInterface> & typeof Component;
6
7
  /**
@@ -48,7 +49,7 @@ declare class Buttonsimple extends Buttonsimple_base {
48
49
  * - Custom behaviors are implemented that require a specific ARIA role for accessibility purposes.
49
50
  * @default button
50
51
  */
51
- role: string;
52
+ role: RoleType;
52
53
  /**
53
54
  * This property defines the ARIA state key, which will be toggled when the
54
55
  * Button is set to `active`.
@@ -10,10 +10,10 @@ var __metadata = (this && this.__metadata) || function (k, v) {
10
10
  import { html } from 'lit';
11
11
  import { property } from 'lit/decorators.js';
12
12
  import { Component } from '../../models';
13
+ import { KEYS } from '../../utils/keys';
14
+ import { AutoFocusMixin } from '../../utils/mixins/AutoFocusMixin';
13
15
  import { DisabledMixin } from '../../utils/mixins/DisabledMixin';
14
16
  import { TabIndexMixin } from '../../utils/mixins/TabIndexMixin';
15
- import { AutoFocusMixin } from '../../utils/mixins/AutoFocusMixin';
16
- import { KEYS } from '../../utils/keys';
17
17
  import { BUTTON_TYPE, DEFAULTS } from './buttonsimple.constants';
18
18
  import styles from './buttonsimple.styles';
19
19
  /**
@@ -230,7 +230,7 @@ __decorate([
230
230
  ], Buttonsimple.prototype, "size", void 0);
231
231
  __decorate([
232
232
  property({ type: String, reflect: true }),
233
- __metadata("design:type", Object)
233
+ __metadata("design:type", String)
234
234
  ], Buttonsimple.prototype, "role", void 0);
235
235
  __decorate([
236
236
  property({ type: String, reflect: true }),
@@ -21,9 +21,9 @@ declare const BUTTON_TYPE: {
21
21
  readonly RESET: "reset";
22
22
  };
23
23
  declare const DEFAULTS: {
24
- SIZE: 32;
25
- TYPE: "button";
26
- ROLE: string;
27
- ARIA_STATE_KEY: string;
24
+ readonly SIZE: 32;
25
+ readonly TYPE: "button";
26
+ readonly ROLE: "button";
27
+ readonly ARIA_STATE_KEY: "aria-pressed";
28
28
  };
29
29
  export { TAG_NAME, DEFAULTS, BUTTON_TYPE, BUTTON_SIZES };
@@ -1,4 +1,5 @@
1
1
  import utils from '../../utils/tag-name';
2
+ import { ROLE } from '../../utils/roles';
2
3
  const TAG_NAME = utils.constructTagName('buttonsimple');
3
4
  const BUTTON_SIZES = {
4
5
  12: 12,
@@ -24,7 +25,7 @@ const BUTTON_TYPE = {
24
25
  const DEFAULTS = {
25
26
  SIZE: BUTTON_SIZES[32],
26
27
  TYPE: BUTTON_TYPE.BUTTON,
27
- ROLE: 'button',
28
+ ROLE: ROLE.BUTTON,
28
29
  ARIA_STATE_KEY: 'aria-pressed',
29
30
  };
30
31
  export { TAG_NAME, DEFAULTS, BUTTON_TYPE, BUTTON_SIZES };
@@ -9,14 +9,14 @@ declare const ORIENTATIONS: {
9
9
  readonly VERTICAL: "vertical";
10
10
  };
11
11
  declare const DEFAULTS: {
12
- VARIANT: "border";
13
- ORIENTATION: "vertical";
14
- TITLE_TYPE: "heading-small-bold";
15
- SUBTITLE_TYPE: "body-midsize-medium";
16
- TAGNAME: "span";
17
- ICON_SIZE: number;
18
- ICON_LENGTH_UNIT: string;
19
- LINK: "mdc-link";
20
- BUTTON: "mdc-button";
12
+ readonly VARIANT: "border";
13
+ readonly ORIENTATION: "vertical";
14
+ readonly TITLE_TYPE: "heading-small-bold";
15
+ readonly SUBTITLE_TYPE: "body-midsize-medium";
16
+ readonly TAGNAME: "span";
17
+ readonly ICON_SIZE: 1.5;
18
+ readonly ICON_LENGTH_UNIT: "rem";
19
+ readonly LINK: "mdc-link";
20
+ readonly BUTTON: "mdc-button";
21
21
  };
22
22
  export { TAG_NAME, DEFAULTS, VARIANTS, ORIENTATIONS };
@@ -8,8 +8,8 @@ declare const SELECTION_TYPE: {
8
8
  readonly CHECKBOX: "checkbox";
9
9
  };
10
10
  declare const DEFAULTS: {
11
- SELECTION_TYPE: "check";
12
- ICON_SIZE: number;
13
- ICON_LENGTH_UNIT: string;
11
+ readonly SELECTION_TYPE: "check";
12
+ readonly ICON_SIZE: 1.5;
13
+ readonly ICON_LENGTH_UNIT: "rem";
14
14
  };
15
15
  export { TAG_NAME, DEFAULTS, SELECTION_TYPE, CHECK_MARK };
@@ -12,10 +12,10 @@ declare const COLOR: {
12
12
  readonly VIOLET: "violet";
13
13
  };
14
14
  declare const DEFAULTS: {
15
- COLOR: "default";
16
- TEXT_TYPE: "body-midsize-regular";
17
- TAG_NAME: "span";
18
- SIZE: 24;
19
- ROLE: string;
15
+ readonly COLOR: "default";
16
+ readonly TEXT_TYPE: "body-midsize-regular";
17
+ readonly TAG_NAME: "span";
18
+ readonly SIZE: 24;
19
+ readonly ROLE: "button";
20
20
  };
21
21
  export { TAG_NAME, COLOR, DEFAULTS };
@@ -1,3 +1,4 @@
1
+ import { ROLE } from '../../utils/roles';
1
2
  import utils from '../../utils/tag-name';
2
3
  import { BUTTON_SIZES } from '../buttonsimple/buttonsimple.constants';
3
4
  import { TYPE, VALID_TEXT_TAGS } from '../text/text.constants';
@@ -19,6 +20,6 @@ const DEFAULTS = {
19
20
  TEXT_TYPE: TYPE.BODY_MIDSIZE_REGULAR,
20
21
  TAG_NAME: VALID_TEXT_TAGS.SPAN,
21
22
  SIZE: BUTTON_SIZES[24],
22
- ROLE: 'button',
23
+ ROLE: ROLE.BUTTON,
23
24
  };
24
25
  export { TAG_NAME, COLOR, DEFAULTS };
@@ -1,9 +1,9 @@
1
1
  declare const TAG_NAME: "mdc-coachmark";
2
2
  declare const DEFAULTS: {
3
- COLOR: "contrast";
4
- TRIGGER: "manual";
5
- ARROW: boolean;
6
- CLOSE_BUTTON: boolean;
7
- DISABLE_ARIA_EXPANDED: boolean;
3
+ readonly COLOR: "contrast";
4
+ readonly TRIGGER: "manual";
5
+ readonly ARROW: true;
6
+ readonly CLOSE_BUTTON: true;
7
+ readonly DISABLE_ARIA_EXPANDED: true;
8
8
  };
9
9
  export { TAG_NAME, DEFAULTS };
@@ -1,6 +1,6 @@
1
1
  declare const TAG_NAME: "mdc-filterchip";
2
2
  declare const DEFAULTS: {
3
- ICON_NAME: "check-bold";
4
- COLOR: "default";
3
+ readonly ICON_NAME: "check-bold";
4
+ readonly COLOR: "default";
5
5
  };
6
6
  export { TAG_NAME, DEFAULTS };
@@ -15,8 +15,8 @@ declare const DEFAULTS: {
15
15
  readonly TOGGLETIP_PLACEMENT: "top";
16
16
  };
17
17
  declare const MDC_TEXT_OPTIONS: {
18
- TAGNAME: "span";
19
- TYPE: "body-midsize-regular";
20
- HEADER_TYPE: "body-midsize-bold";
18
+ readonly TAGNAME: "span";
19
+ readonly TYPE: "body-midsize-regular";
20
+ readonly HEADER_TYPE: "body-midsize-bold";
21
21
  };
22
22
  export { TAG_NAME, VALIDATION, DEFAULTS, MDC_TEXT_OPTIONS };
@@ -21,15 +21,15 @@ declare const PREFIX_TEXT_OPTIONS: {
21
21
  VALIDATION: "error";
22
22
  };
23
23
  declare const DEFAULTS: {
24
- VALIDATION: "default";
25
- ICON_SIZE_VALUE: number;
26
- ICON_SIZE_UNIT: string;
27
- CLEAR_BUTTON_ICON: "cancel-bold";
28
- CLEAR_BUTTON_VARIANT: "tertiary";
29
- CLEAR_BUTTON_SIZE: 20;
30
- PREFIX_TEXT_TYPE: "body-midsize-regular";
31
- PREFIX_TEXT_TAG: "span";
32
- AUTO_COMPLETE: "off";
33
- INPUT_TYPE: "text";
24
+ readonly VALIDATION: "default";
25
+ readonly ICON_SIZE_VALUE: 1;
26
+ readonly ICON_SIZE_UNIT: "rem";
27
+ readonly CLEAR_BUTTON_ICON: "cancel-bold";
28
+ readonly CLEAR_BUTTON_VARIANT: "tertiary";
29
+ readonly CLEAR_BUTTON_SIZE: 20;
30
+ readonly PREFIX_TEXT_TYPE: "body-midsize-regular";
31
+ readonly PREFIX_TEXT_TAG: "span";
32
+ readonly AUTO_COMPLETE: "off";
33
+ readonly INPUT_TYPE: "text";
34
34
  };
35
35
  export { TAG_NAME, PREFIX_TEXT_OPTIONS, AUTO_CAPITALIZE, AUTO_COMPLETE, INPUT_TYPE, DEFAULTS };
@@ -1,7 +1,7 @@
1
1
  declare const TAG_NAME: "mdc-inputchip";
2
2
  declare const DEFAULTS: {
3
- TEXT_TYPE: "body-midsize-regular";
4
- TAG_NAME: "span";
5
- CLOSE_ICON: "cancel-bold";
3
+ readonly TEXT_TYPE: "body-midsize-regular";
4
+ readonly TAG_NAME: "span";
5
+ readonly CLOSE_ICON: "cancel-bold";
6
6
  };
7
7
  export { TAG_NAME, DEFAULTS };
@@ -10,6 +10,6 @@ declare const LINK_ICON_SIZES: {
10
10
  readonly SMALL: 0.75;
11
11
  };
12
12
  declare const DEFAULTS: {
13
- LINK_SIZE: "large";
13
+ readonly LINK_SIZE: "large";
14
14
  };
15
15
  export { DEFAULTS, LINK_ICON_SIZES, LINK_SIZES, TAG_NAME };
@@ -5,9 +5,9 @@ declare const LINKBUTTON_SIZES: {
5
5
  readonly 16: 16;
6
6
  };
7
7
  declare const DEFAULTS: {
8
- SIZE: 16;
9
- ROLE: "button";
10
- INLINE: boolean;
11
- INVERTED: boolean;
8
+ readonly SIZE: 16;
9
+ readonly ROLE: "button";
10
+ readonly INLINE: false;
11
+ readonly INVERTED: false;
12
12
  };
13
13
  export { TAG_NAME, LINKBUTTON_SIZES, DEFAULTS };
@@ -1,6 +1,6 @@
1
1
  declare const TAG_NAME: "mdc-linksimple";
2
2
  declare const DEFAULTS: {
3
- INLINE: boolean;
4
- INVERTED: boolean;
3
+ readonly INLINE: false;
4
+ readonly INVERTED: false;
5
5
  };
6
6
  export { DEFAULTS, TAG_NAME };
@@ -1,5 +1,5 @@
1
1
  declare const TAG_NAME: "mdc-menubar";
2
2
  declare const DEFAULTS: {
3
- ORIENTATION: string;
3
+ readonly ORIENTATION: "vertical";
4
4
  };
5
5
  export { TAG_NAME, DEFAULTS };
@@ -1,6 +1,6 @@
1
1
  declare const TAG_NAME: "mdc-menupopover";
2
2
  declare const DEFAULTS: {
3
- PLACEMENT: "bottom-start";
4
- ORIENTATION: string;
3
+ readonly PLACEMENT: "bottom-start";
4
+ readonly ORIENTATION: "vertical";
5
5
  };
6
6
  export { TAG_NAME, DEFAULTS };
@@ -1,8 +1,8 @@
1
1
  declare const TAG_NAME: "mdc-searchfield";
2
2
  declare const DEFAULTS: {
3
- TYPE: "search";
4
- ICON: "search-bold";
5
- CLOSE_BTN: boolean;
6
- INPUT_CHIP_TAG: "mdc-inputchip";
3
+ readonly TYPE: "search";
4
+ readonly ICON: "search-bold";
5
+ readonly CLOSE_BTN: true;
6
+ readonly INPUT_CHIP_TAG: "mdc-inputchip";
7
7
  };
8
8
  export { TAG_NAME, DEFAULTS };
@@ -6,6 +6,6 @@ declare const SKELETON_VARIANTS: {
6
6
  readonly ROUNDED: "rounded";
7
7
  };
8
8
  declare const DEFAULTS: {
9
- VARIANT: "rectangular";
9
+ readonly VARIANT: "rectangular";
10
10
  };
11
11
  export { TAG_NAME, SKELETON_VARIANTS, DEFAULTS };
@@ -42,7 +42,7 @@ declare class Spinner extends Component {
42
42
  * The spinner color can be inverted by setting the inverted attribute to true.
43
43
  * @default false
44
44
  */
45
- inverted: boolean;
45
+ inverted: false;
46
46
  /**
47
47
  * Size of the spinner.
48
48
  * Acceptable values include:
@@ -9,8 +9,8 @@ declare const SPINNER_VARIANT: {
9
9
  readonly BUTTON: "button";
10
10
  };
11
11
  declare const DEFAULTS: {
12
- VARIANT: "standalone";
13
- SIZE: "midsize";
14
- INVERTED: boolean;
12
+ readonly VARIANT: "standalone";
13
+ readonly SIZE: "midsize";
14
+ readonly INVERTED: false;
15
15
  };
16
16
  export { TAG_NAME, SPINNER_SIZES, SPINNER_VARIANT, DEFAULTS };
@@ -12,6 +12,6 @@ declare const ICON_SIZE_IN_REM: {
12
12
  readonly default: 1.25;
13
13
  };
14
14
  declare const DEFAULTS: {
15
- SIZE: "default";
15
+ readonly SIZE: "default";
16
16
  };
17
17
  export { TAG_NAME, ICON_SIZE_IN_REM, DEFAULTS, TOGGLE_SIZE, ICON_NAME };
@@ -66,12 +66,12 @@ declare class Textarea extends Textarea_base {
66
66
  * The rows attribute specifies the visible number of lines in a text area.
67
67
  * @default 5
68
68
  */
69
- rows: number;
69
+ rows: 5;
70
70
  /**
71
71
  * The cols attribute specifies the visible number of lines in a text area.
72
72
  * @default 40
73
73
  */
74
- cols: number;
74
+ cols: 40;
75
75
  /**
76
76
  * The wrap attribute specifies how the text in a text area is to be wrapped when submitted in a form.
77
77
  * @default 'soft'
@@ -8,9 +8,9 @@ declare const AUTO_COMPLETE: {
8
8
  readonly ON: "on";
9
9
  };
10
10
  declare const DEFAULTS: {
11
- CHARACTER_COUNTER_TYPE: "body-midsize-regular";
12
- ROWS: number;
13
- COLS: number;
14
- WRAP: "soft";
11
+ readonly CHARACTER_COUNTER_TYPE: "body-midsize-regular";
12
+ readonly ROWS: 5;
13
+ readonly COLS: 40;
14
+ readonly WRAP: "soft";
15
15
  };
16
16
  export { TAG_NAME, WRAP, AUTO_COMPLETE, DEFAULTS };
@@ -1,10 +1,10 @@
1
1
  declare const TAG_NAME: "mdc-toggletip";
2
2
  declare const DEFAULTS: {
3
- CLOSE_BUTTON: boolean;
4
- CLOSE_BUTTON_ARIA_LABEL: string;
5
- OFFSET: number;
6
- PLACEMENT: "top";
7
- CLICK: "click";
8
- SHOW_ARROW: boolean;
3
+ readonly CLOSE_BUTTON: true;
4
+ readonly CLOSE_BUTTON_ARIA_LABEL: "Close";
5
+ readonly OFFSET: 4;
6
+ readonly PLACEMENT: "top";
7
+ readonly CLICK: "click";
8
+ readonly SHOW_ARROW: true;
9
9
  };
10
10
  export { DEFAULTS, TAG_NAME };
@@ -5,11 +5,11 @@ declare const TOOLTIP_TYPES: {
5
5
  NONE: string;
6
6
  };
7
7
  declare const DEFAULTS: {
8
- BACKDROP: boolean;
9
- DELAY: string;
10
- OFFSET: number;
11
- PLACEMENT: "top";
12
- SHOW_ARROW: boolean;
13
- TOOLTIP_TYPE: string;
8
+ readonly BACKDROP: false;
9
+ readonly DELAY: "0,0";
10
+ readonly OFFSET: 4;
11
+ readonly PLACEMENT: "top";
12
+ readonly SHOW_ARROW: true;
13
+ readonly TOOLTIP_TYPE: string;
14
14
  };
15
15
  export { DEFAULTS, TAG_NAME, TOOLTIP_TYPES };
@@ -1,9 +1,9 @@
1
1
  declare const TAG_NAME: "mdc-virtualizedlist";
2
2
  declare const VIRTUALIZED_WRAPPER_TAG_NAME: "mdc-virtualizedwrapper";
3
3
  declare const DEFAULTS: {
4
- VIRTUALIZER_PROPS: {
5
- count: number;
6
- estimateSize: () => number;
4
+ readonly VIRTUALIZER_PROPS: {
5
+ readonly count: 0;
6
+ readonly estimateSize: () => number;
7
7
  };
8
8
  };
9
9
  export { TAG_NAME, DEFAULTS, VIRTUALIZED_WRAPPER_TAG_NAME };