@momentum-design/components 0.129.44 → 0.129.46
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 +280 -280
- package/dist/browser/index.js.map +4 -4
- package/dist/components/button/button.component.d.ts +9 -1
- package/dist/components/button/button.component.js +13 -2
- package/dist/components/dialog/dialog.component.d.ts +1 -1
- package/dist/components/dialog/dialog.component.js +1 -1
- package/dist/components/popover/popover.component.d.ts +2 -2
- package/dist/components/popover/popover.component.js +24 -23
- package/dist/components/text/text.component.d.ts +11 -2
- package/dist/components/text/text.component.js +17 -2
- package/dist/components/tooltip/tooltip.component.d.ts +12 -1
- package/dist/components/tooltip/tooltip.component.js +23 -0
- package/dist/components/tooltip/tooltip.constants.d.ts +1 -0
- package/dist/components/tooltip/tooltip.constants.js +1 -0
- package/dist/custom-elements.json +151 -4125
- package/dist/utils/dom.d.ts +91 -0
- package/dist/utils/dom.js +171 -0
- package/dist/utils/mixins/OverflowMixin.d.ts +7 -0
- package/dist/utils/mixins/OverflowMixin.js +23 -0
- package/dist/utils/mixins/{FocusTrapMixin.d.ts → focus/FocusTrapMixin.d.ts} +2 -2
- package/dist/utils/mixins/focus/FocusTrapMixin.js +190 -0
- package/dist/utils/mixins/focus/FocusTrapStack.d.ts +32 -0
- package/dist/utils/mixins/focus/FocusTrapStack.js +69 -0
- package/package.json +1 -1
- package/dist/utils/mixins/FocusTrapMixin.js +0 -418
|
@@ -3,7 +3,7 @@ import { CSSResult } from 'lit';
|
|
|
3
3
|
import type { RoleType } from '../../utils/roles';
|
|
4
4
|
import Buttonsimple from '../buttonsimple/buttonsimple.component';
|
|
5
5
|
import type { IconButtonSize, PillButtonSize } from './button.types';
|
|
6
|
-
declare const Button_base: import("../../utils/mixins/index.types").Constructor<import("../../utils/mixins/ButtonComponentMixin").ButtonComponentMixinInterface> & typeof Buttonsimple;
|
|
6
|
+
declare const Button_base: import("../../utils/mixins/index.types").Constructor<import("../../utils/mixins/OverflowMixin").OverflowMixinInterface> & import("../../utils/mixins/index.types").Constructor<import("../../utils/mixins/ButtonComponentMixin").ButtonComponentMixinInterface> & typeof Buttonsimple;
|
|
7
7
|
/**
|
|
8
8
|
* `mdc-button` is a component that can be configured in various ways to suit different use cases.
|
|
9
9
|
*
|
|
@@ -68,6 +68,10 @@ declare const Button_base: import("../../utils/mixins/index.types").Constructor<
|
|
|
68
68
|
* @cssproperty --mdc-button-line-height - Line height of the button text
|
|
69
69
|
*/
|
|
70
70
|
declare class Button extends Button_base {
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
74
|
+
protected buttonTextPart: HTMLSlotElement;
|
|
71
75
|
/**
|
|
72
76
|
* Specifies the size of the button in pixels. Available sizes depend on the button type:
|
|
73
77
|
*
|
|
@@ -119,6 +123,10 @@ declare class Button extends Button_base {
|
|
|
119
123
|
* @internal
|
|
120
124
|
*/
|
|
121
125
|
private postfixFilledIconName?;
|
|
126
|
+
/**
|
|
127
|
+
* @internal
|
|
128
|
+
*/
|
|
129
|
+
protected get overflowElement(): HTMLElement;
|
|
122
130
|
update(changedProperties: PropertyValues): void;
|
|
123
131
|
/**
|
|
124
132
|
* Modifies the icon name based on the active state.
|
|
@@ -8,10 +8,11 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
8
8
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
9
|
};
|
|
10
10
|
import { html } from 'lit';
|
|
11
|
-
import { property, state } from 'lit/decorators.js';
|
|
11
|
+
import { property, query, state } from 'lit/decorators.js';
|
|
12
12
|
import { ButtonComponentMixin } from '../../utils/mixins/ButtonComponentMixin';
|
|
13
13
|
import { ROLE } from '../../utils/roles';
|
|
14
14
|
import Buttonsimple from '../buttonsimple/buttonsimple.component';
|
|
15
|
+
import { OverflowMixin } from '../../utils/mixins/OverflowMixin';
|
|
15
16
|
import { DEFAULTS } from './button.constants';
|
|
16
17
|
import styles from './button.styles';
|
|
17
18
|
import { getIconNameWithoutStyle } from './button.utils';
|
|
@@ -78,7 +79,7 @@ import { getIconNameWithoutStyle } from './button.utils';
|
|
|
78
79
|
* @cssproperty --mdc-button-postfix-icon-size - Size of the postfix icon
|
|
79
80
|
* @cssproperty --mdc-button-line-height - Line height of the button text
|
|
80
81
|
*/
|
|
81
|
-
class Button extends ButtonComponentMixin(Buttonsimple) {
|
|
82
|
+
class Button extends OverflowMixin(ButtonComponentMixin(Buttonsimple)) {
|
|
82
83
|
constructor() {
|
|
83
84
|
super(...arguments);
|
|
84
85
|
/**
|
|
@@ -125,6 +126,12 @@ class Button extends ButtonComponentMixin(Buttonsimple) {
|
|
|
125
126
|
*/
|
|
126
127
|
this.role = ROLE.BUTTON;
|
|
127
128
|
}
|
|
129
|
+
/**
|
|
130
|
+
* @internal
|
|
131
|
+
*/
|
|
132
|
+
get overflowElement() {
|
|
133
|
+
return this.buttonTextPart;
|
|
134
|
+
}
|
|
128
135
|
update(changedProperties) {
|
|
129
136
|
super.update(changedProperties);
|
|
130
137
|
if (changedProperties.has('active')) {
|
|
@@ -195,6 +202,10 @@ class Button extends ButtonComponentMixin(Buttonsimple) {
|
|
|
195
202
|
}
|
|
196
203
|
}
|
|
197
204
|
Button.styles = [...Buttonsimple.styles, ...styles];
|
|
205
|
+
__decorate([
|
|
206
|
+
query('slot[part="button-text"]'),
|
|
207
|
+
__metadata("design:type", HTMLSlotElement)
|
|
208
|
+
], Button.prototype, "buttonTextPart", void 0);
|
|
198
209
|
__decorate([
|
|
199
210
|
property({ type: Number }),
|
|
200
211
|
__metadata("design:type", Number)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CSSResult, PropertyValues, nothing } from 'lit';
|
|
2
2
|
import { Component } from '../../models';
|
|
3
3
|
import type { DialogRole, DialogSize, DialogVariant } from './dialog.types';
|
|
4
|
-
declare const Dialog_base: import("../../utils/mixins/index.types").Constructor<Component & import("../../utils/mixins/BackdropMixin").BackdropMixinInterface> & import("../../utils/mixins/index.types").Constructor<Component & import("../../utils/mixins/PreventScrollMixin").PreventScrollMixinInterface> & import("../../utils/mixins/index.types").Constructor<Component & import("../../utils/mixins/FocusTrapMixin").FocusTrapClassInterface> & import("../../utils/mixins/index.types").Constructor<import("../../utils/mixins/FooterMixin").FooterMixinInterface> & typeof Component;
|
|
4
|
+
declare const Dialog_base: import("../../utils/mixins/index.types").Constructor<Component & import("../../utils/mixins/BackdropMixin").BackdropMixinInterface> & import("../../utils/mixins/index.types").Constructor<Component & import("../../utils/mixins/PreventScrollMixin").PreventScrollMixinInterface> & import("../../utils/mixins/index.types").Constructor<Component & import("../../utils/mixins/focus/FocusTrapMixin").FocusTrapClassInterface> & import("../../utils/mixins/index.types").Constructor<import("../../utils/mixins/FooterMixin").FooterMixinInterface> & typeof Component;
|
|
5
5
|
/**
|
|
6
6
|
* Dialog component is a modal dialog that can be used to display information or prompt the user for input.
|
|
7
7
|
* It can be used to create custom dialogs where content for the body and footer actions is provided by the consumer.
|
|
@@ -11,7 +11,7 @@ import { html, nothing } from 'lit';
|
|
|
11
11
|
import { ifDefined } from 'lit/directives/if-defined.js';
|
|
12
12
|
import { property } from 'lit/decorators.js';
|
|
13
13
|
import { Component } from '../../models';
|
|
14
|
-
import { FocusTrapMixin } from '../../utils/mixins/FocusTrapMixin';
|
|
14
|
+
import { FocusTrapMixin } from '../../utils/mixins/focus/FocusTrapMixin';
|
|
15
15
|
import { PreventScrollMixin } from '../../utils/mixins/PreventScrollMixin';
|
|
16
16
|
import { TYPE, VALID_TEXT_TAGS } from '../text/text.constants';
|
|
17
17
|
import { BUTTON_VARIANTS, ICON_BUTTON_SIZES } from '../button/button.constants';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CSSResult, PropertyValues } from 'lit';
|
|
2
2
|
import { Component } from '../../models';
|
|
3
3
|
import type { PopoverBoundaryRoot, PopoverColor, PopoverPlacement, PopoverStrategy, PopoverTrigger } from './popover.types';
|
|
4
|
-
declare const Popover_base: import("../../utils/mixins/index.types").Constructor<import("../../utils/mixins/KeyToActionMixin").KeyToActionInterface> & import("../../utils/mixins/index.types").Constructor<Component & import("../../utils/mixins/BackdropMixin").BackdropMixinInterface> & import("../../utils/mixins/index.types").Constructor<Component & import("../../utils/mixins/PreventScrollMixin").PreventScrollMixinInterface> & import("../../utils/mixins/index.types").Constructor<Component & import("../../utils/mixins/FocusTrapMixin").FocusTrapClassInterface> & typeof Component;
|
|
4
|
+
declare const Popover_base: import("../../utils/mixins/index.types").Constructor<import("../../utils/mixins/KeyToActionMixin").KeyToActionInterface> & import("../../utils/mixins/index.types").Constructor<Component & import("../../utils/mixins/BackdropMixin").BackdropMixinInterface> & import("../../utils/mixins/index.types").Constructor<Component & import("../../utils/mixins/PreventScrollMixin").PreventScrollMixinInterface> & import("../../utils/mixins/index.types").Constructor<Component & import("../../utils/mixins/focus/FocusTrapMixin").FocusTrapClassInterface> & typeof Component;
|
|
5
5
|
/**
|
|
6
6
|
* Popover is generic overlay which can be triggered by any actionable element.
|
|
7
7
|
*
|
|
@@ -478,7 +478,7 @@ declare class Popover extends Popover_base {
|
|
|
478
478
|
/**
|
|
479
479
|
* Shows the popover.
|
|
480
480
|
*/
|
|
481
|
-
show
|
|
481
|
+
show(): void;
|
|
482
482
|
/**
|
|
483
483
|
* Hides the popover.
|
|
484
484
|
*/
|
|
@@ -14,7 +14,7 @@ import { property } from 'lit/decorators.js';
|
|
|
14
14
|
import { ifDefined } from 'lit/directives/if-defined.js';
|
|
15
15
|
import { Component } from '../../models';
|
|
16
16
|
import { BackdropMixin } from '../../utils/mixins/BackdropMixin';
|
|
17
|
-
import { FocusTrapMixin } from '../../utils/mixins/FocusTrapMixin';
|
|
17
|
+
import { FocusTrapMixin } from '../../utils/mixins/focus/FocusTrapMixin';
|
|
18
18
|
import { PreventScrollMixin } from '../../utils/mixins/PreventScrollMixin';
|
|
19
19
|
import { Timers } from '../../utils/controllers/Timers';
|
|
20
20
|
import { ACTIONS, KeyToActionMixin } from '../../utils/mixins/KeyToActionMixin';
|
|
@@ -614,28 +614,6 @@ class Popover extends KeyToActionMixin(BackdropMixin(PreventScrollMixin(FocusTra
|
|
|
614
614
|
this.timers.clearTimeout(TIMEOUTS.HOVER);
|
|
615
615
|
this.timers.clearTimeout(TIMEOUTS.CLOSE);
|
|
616
616
|
};
|
|
617
|
-
/**
|
|
618
|
-
* Shows the popover.
|
|
619
|
-
*/
|
|
620
|
-
this.show = () => {
|
|
621
|
-
if (this.shouldSuppressOpening) {
|
|
622
|
-
return;
|
|
623
|
-
}
|
|
624
|
-
this.cancelCloseDelay();
|
|
625
|
-
if (this.visible) {
|
|
626
|
-
return;
|
|
627
|
-
}
|
|
628
|
-
const callback = () => {
|
|
629
|
-
this.visible = true;
|
|
630
|
-
};
|
|
631
|
-
if (this.openDelay > 0) {
|
|
632
|
-
this.timers.setTimeout(TIMEOUTS.OPEN, callback, this.openDelay);
|
|
633
|
-
}
|
|
634
|
-
else {
|
|
635
|
-
this.timers.clearTimeout(TIMEOUTS.OPEN);
|
|
636
|
-
callback();
|
|
637
|
-
}
|
|
638
|
-
};
|
|
639
617
|
/**
|
|
640
618
|
* Hides the popover.
|
|
641
619
|
*/
|
|
@@ -746,6 +724,7 @@ class Popover extends KeyToActionMixin(BackdropMixin(PreventScrollMixin(FocusTra
|
|
|
746
724
|
animationFrame: this.animationFrame,
|
|
747
725
|
});
|
|
748
726
|
};
|
|
727
|
+
this.show = this.show.bind(this);
|
|
749
728
|
this.utils = new PopoverUtils(this);
|
|
750
729
|
this.parseTrigger();
|
|
751
730
|
[this.openDelay, this.closeDelay] = this.utils.setupDelay();
|
|
@@ -931,6 +910,28 @@ class Popover extends KeyToActionMixin(BackdropMixin(PreventScrollMixin(FocusTra
|
|
|
931
910
|
PopoverEventManager.onHidePopover(this);
|
|
932
911
|
}
|
|
933
912
|
}
|
|
913
|
+
/**
|
|
914
|
+
* Shows the popover.
|
|
915
|
+
*/
|
|
916
|
+
show() {
|
|
917
|
+
if (this.shouldSuppressOpening) {
|
|
918
|
+
return;
|
|
919
|
+
}
|
|
920
|
+
this.cancelCloseDelay();
|
|
921
|
+
if (this.visible) {
|
|
922
|
+
return;
|
|
923
|
+
}
|
|
924
|
+
const callback = () => {
|
|
925
|
+
this.visible = true;
|
|
926
|
+
};
|
|
927
|
+
if (this.openDelay > 0) {
|
|
928
|
+
this.timers.setTimeout(TIMEOUTS.OPEN, callback, this.openDelay);
|
|
929
|
+
}
|
|
930
|
+
else {
|
|
931
|
+
this.timers.clearTimeout(TIMEOUTS.OPEN);
|
|
932
|
+
callback();
|
|
933
|
+
}
|
|
934
|
+
}
|
|
934
935
|
isEventFromTrigger(event) {
|
|
935
936
|
var _a;
|
|
936
937
|
if (!this.triggerID)
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { CSSResult } from 'lit';
|
|
2
2
|
import { Component } from '../../models';
|
|
3
3
|
import type { TextType, TagName } from './text.types';
|
|
4
|
+
declare const Text_base: import("../../utils/mixins/index.types").Constructor<import("../../utils/mixins/OverflowMixin").OverflowMixinInterface> & typeof Component;
|
|
4
5
|
/**
|
|
5
6
|
* Text component for creating styled text elements.
|
|
6
7
|
* It has to be mounted within the ThemeProvider to access color and font tokens.
|
|
@@ -19,7 +20,11 @@ import type { TextType, TagName } from './text.types';
|
|
|
19
20
|
*
|
|
20
21
|
* @csspart text - The text element
|
|
21
22
|
*/
|
|
22
|
-
declare class Text extends
|
|
23
|
+
declare class Text extends Text_base {
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
private textPartElement;
|
|
23
28
|
/**
|
|
24
29
|
* Specifies the text style to be applied.
|
|
25
30
|
*
|
|
@@ -77,7 +82,11 @@ declare class Text extends Component {
|
|
|
77
82
|
* For instance, setting this attribute to `h2` will render the text element as an `h2` element.
|
|
78
83
|
* Note that the styling is determined by the `type` attribute.
|
|
79
84
|
*/
|
|
80
|
-
tagname
|
|
85
|
+
tagname: TagName;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
protected get overflowElement(): HTMLElement;
|
|
81
90
|
render(): import("lit-html").TemplateResult<1>;
|
|
82
91
|
static styles: Array<CSSResult>;
|
|
83
92
|
}
|
|
@@ -8,8 +8,9 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
8
8
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
9
|
};
|
|
10
10
|
import { html } from 'lit';
|
|
11
|
-
import { property } from 'lit/decorators.js';
|
|
11
|
+
import { property, query } from 'lit/decorators.js';
|
|
12
12
|
import { Component } from '../../models';
|
|
13
|
+
import { OverflowMixin } from '../../utils/mixins/OverflowMixin';
|
|
13
14
|
import styles from './text.styles';
|
|
14
15
|
import { DEFAULTS, VALID_TEXT_TAGS } from './text.constants';
|
|
15
16
|
/**
|
|
@@ -30,7 +31,7 @@ import { DEFAULTS, VALID_TEXT_TAGS } from './text.constants';
|
|
|
30
31
|
*
|
|
31
32
|
* @csspart text - The text element
|
|
32
33
|
*/
|
|
33
|
-
class Text extends Component {
|
|
34
|
+
class Text extends OverflowMixin(Component) {
|
|
34
35
|
constructor() {
|
|
35
36
|
super(...arguments);
|
|
36
37
|
/**
|
|
@@ -92,6 +93,16 @@ class Text extends Component {
|
|
|
92
93
|
*/
|
|
93
94
|
this.tagname = DEFAULTS.TEXT_ELEMENT_TAGNAME;
|
|
94
95
|
}
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
99
|
+
get overflowElement() {
|
|
100
|
+
// span and small are inline elements therefore we need to return the host element itself
|
|
101
|
+
if ([VALID_TEXT_TAGS.SPAN, VALID_TEXT_TAGS.SMALL].includes(this.tagname)) {
|
|
102
|
+
return this;
|
|
103
|
+
}
|
|
104
|
+
return this.textPartElement;
|
|
105
|
+
}
|
|
95
106
|
render() {
|
|
96
107
|
// Lit does not support dynamically changing values for the tag name of a custom element.
|
|
97
108
|
// Read more: https://lit.dev/docs/templates/expressions/#invalid-locations
|
|
@@ -121,6 +132,10 @@ class Text extends Component {
|
|
|
121
132
|
}
|
|
122
133
|
}
|
|
123
134
|
Text.styles = [...Component.styles, ...styles];
|
|
135
|
+
__decorate([
|
|
136
|
+
query(`[part='${DEFAULTS.CSS_PART_TEXT}']`),
|
|
137
|
+
__metadata("design:type", HTMLElement)
|
|
138
|
+
], Text.prototype, "textPartElement", void 0);
|
|
124
139
|
__decorate([
|
|
125
140
|
property({ attribute: 'type', reflect: true, type: String }),
|
|
126
141
|
__metadata("design:type", String)
|
|
@@ -38,6 +38,16 @@ declare class Tooltip extends Popover {
|
|
|
38
38
|
* @default 'description'
|
|
39
39
|
*/
|
|
40
40
|
tooltipType: TooltipType;
|
|
41
|
+
/**
|
|
42
|
+
* If true, the tooltip will only be shown when the trigger element's content is overflowing on the x-axis.
|
|
43
|
+
*
|
|
44
|
+
* Supports the following components:
|
|
45
|
+
* - mdc-button
|
|
46
|
+
* - mdc-text
|
|
47
|
+
*
|
|
48
|
+
* @default false
|
|
49
|
+
*/
|
|
50
|
+
onlyShowWhenTriggerOverflows: boolean;
|
|
41
51
|
connectedCallback(): void;
|
|
42
52
|
/**
|
|
43
53
|
* Sets the type attribute for the tooltip component.
|
|
@@ -61,7 +71,8 @@ declare class Tooltip extends Popover {
|
|
|
61
71
|
* @param changedProperties - The changed properties.
|
|
62
72
|
*/
|
|
63
73
|
private onTooltipTypeUpdated;
|
|
64
|
-
update(changedProperties: PropertyValues): Promise<void>;
|
|
74
|
+
update(changedProperties: PropertyValues<this>): Promise<void>;
|
|
75
|
+
show(): void;
|
|
65
76
|
static styles: Array<CSSResult>;
|
|
66
77
|
}
|
|
67
78
|
export default Tooltip;
|
|
@@ -12,6 +12,7 @@ import { v4 as uuidv4 } from 'uuid';
|
|
|
12
12
|
import { ROLE } from '../../utils/roles';
|
|
13
13
|
import Popover from '../popover/popover.component';
|
|
14
14
|
import { DEFAULTS as POPOVER_DEFAULTS, POPOVER_PLACEMENT } from '../popover/popover.constants';
|
|
15
|
+
import { hasOverflowMixin } from '../../utils/dom';
|
|
15
16
|
import { DEFAULTS, TOOLTIP_TYPES } from './tooltip.constants';
|
|
16
17
|
import styles from './tooltip.styles';
|
|
17
18
|
/**
|
|
@@ -52,6 +53,16 @@ class Tooltip extends Popover {
|
|
|
52
53
|
* @default 'description'
|
|
53
54
|
*/
|
|
54
55
|
this.tooltipType = DEFAULTS.TOOLTIP_TYPE;
|
|
56
|
+
/**
|
|
57
|
+
* If true, the tooltip will only be shown when the trigger element's content is overflowing on the x-axis.
|
|
58
|
+
*
|
|
59
|
+
* Supports the following components:
|
|
60
|
+
* - mdc-button
|
|
61
|
+
* - mdc-text
|
|
62
|
+
*
|
|
63
|
+
* @default false
|
|
64
|
+
*/
|
|
65
|
+
this.onlyShowWhenTriggerOverflows = DEFAULTS.ONLY_SHOW_WHEN_TRIGGER_OVERFLOWS;
|
|
55
66
|
}
|
|
56
67
|
connectedCallback() {
|
|
57
68
|
super.connectedCallback();
|
|
@@ -165,10 +176,22 @@ class Tooltip extends Popover {
|
|
|
165
176
|
this.onTooltipTypeUpdated(changedProperties);
|
|
166
177
|
}
|
|
167
178
|
}
|
|
179
|
+
show() {
|
|
180
|
+
if (this.onlyShowWhenTriggerOverflows && this.triggerElement && hasOverflowMixin(this.triggerElement)) {
|
|
181
|
+
if (!this.triggerElement.isWidthOverflowing()) {
|
|
182
|
+
return;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
super.show();
|
|
186
|
+
}
|
|
168
187
|
}
|
|
169
188
|
Tooltip.styles = [...Popover.styles, ...styles];
|
|
170
189
|
__decorate([
|
|
171
190
|
property({ type: String, attribute: 'tooltip-type', reflect: true }),
|
|
172
191
|
__metadata("design:type", String)
|
|
173
192
|
], Tooltip.prototype, "tooltipType", void 0);
|
|
193
|
+
__decorate([
|
|
194
|
+
property({ type: Boolean, attribute: 'only-show-when-trigger-overflows', reflect: true }),
|
|
195
|
+
__metadata("design:type", Boolean)
|
|
196
|
+
], Tooltip.prototype, "onlyShowWhenTriggerOverflows", void 0);
|
|
174
197
|
export default Tooltip;
|