@momentum-design/components 0.96.0 → 0.96.2
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/dist/browser/index.js +74 -74
- package/dist/browser/index.js.map +4 -4
- package/dist/components/button/button.component.d.ts +2 -1
- package/dist/components/button/button.component.js +3 -2
- package/dist/components/button/button.constants.d.ts +6 -6
- package/dist/components/buttongroup/buttongroup.constants.d.ts +3 -3
- package/dist/components/buttonsimple/buttonsimple.component.d.ts +2 -1
- package/dist/components/buttonsimple/buttonsimple.component.js +3 -3
- package/dist/components/buttonsimple/buttonsimple.constants.d.ts +4 -4
- package/dist/components/buttonsimple/buttonsimple.constants.js +2 -1
- package/dist/components/card/card.constants.d.ts +9 -9
- package/dist/components/cardcheckbox/cardcheckbox.constants.d.ts +3 -3
- package/dist/components/chip/chip.constants.d.ts +5 -5
- package/dist/components/chip/chip.constants.js +2 -1
- package/dist/components/coachmark/coachmark.constants.d.ts +5 -5
- package/dist/components/filterchip/filterchip.constants.d.ts +2 -2
- package/dist/components/formfieldwrapper/formfieldwrapper.constants.d.ts +3 -3
- package/dist/components/input/input.constants.d.ts +10 -10
- package/dist/components/inputchip/inputchip.constants.d.ts +3 -3
- package/dist/components/link/link.constants.d.ts +1 -1
- package/dist/components/linkbutton/linkbutton.constants.d.ts +4 -4
- package/dist/components/linksimple/linksimple.constants.d.ts +2 -2
- package/dist/components/menubar/menubar.constants.d.ts +1 -1
- package/dist/components/menupopover/menupopover.constants.d.ts +2 -2
- package/dist/components/searchfield/searchfield.constants.d.ts +4 -4
- package/dist/components/skeleton/skeleton.constants.d.ts +1 -1
- package/dist/components/spinner/spinner.component.d.ts +1 -1
- package/dist/components/spinner/spinner.constants.d.ts +3 -3
- package/dist/components/statictoggle/statictoggle.constants.d.ts +1 -1
- package/dist/components/textarea/textarea.component.d.ts +2 -2
- package/dist/components/textarea/textarea.constants.d.ts +4 -4
- package/dist/components/toggletip/toggletip.constants.d.ts +6 -6
- package/dist/components/tooltip/tooltip.constants.d.ts +6 -6
- package/dist/components/virtualizedlist/virtualizedlist.constants.d.ts +3 -3
- package/dist/custom-elements.json +1929 -1881
- package/dist/react/index.d.ts +2 -2
- package/dist/react/index.js +2 -2
- 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:
|
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 =
|
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",
|
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:
|
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:
|
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",
|
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:
|
27
|
-
ARIA_STATE_KEY:
|
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:
|
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:
|
18
|
-
ICON_LENGTH_UNIT:
|
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:
|
13
|
-
ICON_LENGTH_UNIT:
|
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:
|
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:
|
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:
|
6
|
-
CLOSE_BUTTON:
|
7
|
-
DISABLE_ARIA_EXPANDED:
|
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 };
|
@@ -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:
|
26
|
-
ICON_SIZE_UNIT:
|
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 };
|
@@ -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:
|
11
|
-
INVERTED:
|
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,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:
|
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 };
|
@@ -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:
|
12
|
+
readonly VARIANT: "standalone";
|
13
|
+
readonly SIZE: "midsize";
|
14
|
+
readonly INVERTED: false;
|
15
15
|
};
|
16
16
|
export { TAG_NAME, SPINNER_SIZES, SPINNER_VARIANT, DEFAULTS };
|
@@ -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:
|
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:
|
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:
|
13
|
-
COLS:
|
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:
|
4
|
-
CLOSE_BUTTON_ARIA_LABEL:
|
5
|
-
OFFSET:
|
6
|
-
PLACEMENT: "top";
|
7
|
-
CLICK: "click";
|
8
|
-
SHOW_ARROW:
|
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:
|
9
|
-
DELAY:
|
10
|
-
OFFSET:
|
11
|
-
PLACEMENT: "top";
|
12
|
-
SHOW_ARROW:
|
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:
|
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 };
|