@ember-eui/core 4.2.2 → 4.2.5
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/CHANGELOG.md +20 -0
- package/addon/components/eui-accordion/index.hbs +2 -2
- package/addon/components/eui-avatar/index.hbs +1 -1
- package/addon/components/eui-badge/index.hbs +2 -2
- package/addon/components/eui-beta-badge/index.hbs +1 -1
- package/addon/components/eui-button-content/index.hbs +1 -1
- package/addon/components/eui-button-icon/index.hbs +2 -2
- package/addon/components/eui-call-out/index.hbs +7 -2
- package/addon/components/eui-card/index.hbs +1 -1
- package/addon/components/eui-combo-box/index.hbs +2 -2
- package/addon/components/eui-combo-box/index.ts +13 -2
- package/addon/components/eui-file-picker/index.hbs +2 -3
- package/addon/components/eui-form-control-layout-clear-button/index.hbs +1 -1
- package/addon/components/eui-form-control-layout-custom-icon/index.hbs +2 -2
- package/addon/components/eui-header-logo/index.hbs +1 -1
- package/addon/components/eui-header-section-item-button/index.hbs +1 -1
- package/addon/components/eui-icon/index.hbs +18 -21
- package/addon/components/eui-icon-tip/index.hbs +1 -2
- package/addon/components/eui-image/index.hbs +1 -1
- package/addon/components/eui-list-group-item/index.hbs +3 -3
- package/addon/components/eui-markdown-format/markdown-tooltip/index.hbs +1 -1
- package/addon/components/eui-side-nav/index.hbs +1 -1
- package/addon/components/eui-side-nav-item/button/index.hbs +1 -1
- package/addon/components/eui-step/eui-step-number/index.hbs +3 -3
- package/addon/components/eui-switch/index.hbs +2 -2
- package/addon/components/eui-toast/index.hbs +1 -1
- package/addon/components/eui-tool-tip/index.ts +13 -7
- package/addon/styles/ember-eui.css +19 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
### Master
|
|
4
4
|
|
|
5
|
+
### 4.2.5
|
|
6
|
+
🐛 Bug / Fixes
|
|
7
|
+
`@ember-eui/core`
|
|
8
|
+
- `<EuiIcon />` for now use @iconClasses to pass down classes when using svg-jar
|
|
9
|
+
|
|
10
|
+
### 4.2.4
|
|
11
|
+
🐛 Bug / Fixes
|
|
12
|
+
`@ember-eui/core`
|
|
13
|
+
- `<EuiIcon />` Drop wrapping svg div, add futurist css override
|
|
14
|
+
### 4.2.3
|
|
15
|
+
🐛 Bug / Fixes
|
|
16
|
+
`@ember-eui/core`
|
|
17
|
+
- Cherry pick 1.6.x fix commit hash https://github.com/prysmex/ember-eui/commit/c4b8a4a259f6b86c2be516fd7427f5e48b28cecd
|
|
18
|
+
- Use next for updating the attachTo for `<EuiToolTip />`
|
|
19
|
+
|
|
5
20
|
### 4.2.2
|
|
6
21
|
🐛 Bug / Fixes
|
|
7
22
|
`@ember-eui/core`
|
|
@@ -119,6 +134,11 @@ bump @embroider 1.3.0 regenerating yarn.lock, this finally enables staticCompone
|
|
|
119
134
|
💥 Breaking change
|
|
120
135
|
`@ember-eui/core`
|
|
121
136
|
- Deprecate `ember-svg-jar` `hbs` strategy for now, just use stock `ember-svg-jar`
|
|
137
|
+
|
|
138
|
+
### 1.6.10
|
|
139
|
+
🐛 Bug / Fixes
|
|
140
|
+
`@ember-eui/core`
|
|
141
|
+
- `<EuiComboBox />` fixes to `onCreateOption`
|
|
122
142
|
### 1.6.7
|
|
123
143
|
🐛 Bug / Fixes
|
|
124
144
|
`@ember-eui/core`
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
}}
|
|
24
24
|
>
|
|
25
25
|
<EuiIcon
|
|
26
|
-
|
|
26
|
+
@iconClasses={{class-names
|
|
27
27
|
"euiAccordion__icon"
|
|
28
28
|
(if this.isOpen "euiAccordion__icon-isOpen")
|
|
29
29
|
}}
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
{{on "click" this.onToggle}}
|
|
60
60
|
>
|
|
61
61
|
<EuiIcon
|
|
62
|
-
|
|
62
|
+
@iconClasses={{class-names
|
|
63
63
|
"euiAccordion__icon"
|
|
64
64
|
(if this.isOpen "euiAccordion__icon-isOpen")
|
|
65
65
|
}}
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
{{on "click" (optional @iconOnClick)}}
|
|
99
99
|
>
|
|
100
100
|
<EuiIcon
|
|
101
|
-
|
|
101
|
+
@iconClasses={{class-names "euiBadge__icon" @closeButtonProps.iconClasses}}
|
|
102
102
|
@type={{@iconType}}
|
|
103
103
|
data-selected-index={{@closeButtonProps.dataSelectedIconIndex}}
|
|
104
104
|
@size={{if (has-block) "s" "m"}}
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
<EuiIcon
|
|
110
110
|
@type={{@iconType}}
|
|
111
111
|
@size={{if (has-block) "s" "m"}}
|
|
112
|
-
|
|
112
|
+
@iconClasses="euiBadge__icon"
|
|
113
113
|
/>
|
|
114
114
|
{{/if}}
|
|
115
115
|
</span>
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<EuiLoadingSpinner class="euiButtonContent__spinner" @size="m" />
|
|
10
10
|
{{else if @iconType}}
|
|
11
11
|
<EuiIcon
|
|
12
|
-
|
|
12
|
+
@iconClasses="euiButtonContent__icon {{@iconClasses}}"
|
|
13
13
|
@type={{@iconType}}
|
|
14
14
|
@size="m"
|
|
15
15
|
@useSvg={{@useSvg}}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
>
|
|
8
8
|
{{#if @iconType}}
|
|
9
9
|
<EuiIcon
|
|
10
|
-
|
|
10
|
+
@iconClasses="euiButtonIcon__icon {{@iconClasses}}"
|
|
11
11
|
@type={{@iconType}}
|
|
12
12
|
@size={{arg-or-default @iconSize "m"}}
|
|
13
13
|
@useSvg={{@useSvg}}
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
>
|
|
27
27
|
{{#if @iconType}}
|
|
28
28
|
<EuiIcon
|
|
29
|
-
|
|
29
|
+
@iconClasses="euiButtonIcon__icon {{@iconClasses}}"
|
|
30
30
|
@type={{@iconType}}
|
|
31
31
|
@size={{@iconSize}}
|
|
32
32
|
@useSvg={{@useSvg}}
|
|
@@ -9,7 +9,12 @@
|
|
|
9
9
|
{{#if (or @title (has-block "title"))}}
|
|
10
10
|
<div class="euiCallOutHeader">
|
|
11
11
|
{{#if @iconType}}
|
|
12
|
-
<EuiIcon
|
|
12
|
+
<EuiIcon
|
|
13
|
+
@iconClasses="euiCallOutHeader__icon"
|
|
14
|
+
@type={{@iconType}}
|
|
15
|
+
@size="m"
|
|
16
|
+
aria-hidden="true"
|
|
17
|
+
/>
|
|
13
18
|
{{/if}}
|
|
14
19
|
{{#if @heading}}
|
|
15
20
|
<TextBlock @tagName={{@heading}} class="euiCallOutHeader__title">
|
|
@@ -35,4 +40,4 @@
|
|
|
35
40
|
{{yield to="body"}}
|
|
36
41
|
</EuiText>
|
|
37
42
|
{{/if}}
|
|
38
|
-
</div>
|
|
43
|
+
</div>
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
singleSelection=@singleSelection
|
|
26
26
|
onClose=@removeTag
|
|
27
27
|
onCreateOption=(if
|
|
28
|
-
@onCreateOption
|
|
28
|
+
@onCreateOption this.onCreateOption
|
|
29
29
|
)
|
|
30
30
|
}}
|
|
31
31
|
@matcher={{@matcher}}
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
(component
|
|
76
76
|
"eui-combo-box/create-option"
|
|
77
77
|
customOptionText=@customOptionText
|
|
78
|
-
onCreateOption=
|
|
78
|
+
onCreateOption=this.onCreateOption
|
|
79
79
|
select=this.select
|
|
80
80
|
)
|
|
81
81
|
(component "eui-combo-box/no-matches-message")
|
|
@@ -7,6 +7,7 @@ import { isEqual } from '@ember/utils';
|
|
|
7
7
|
|
|
8
8
|
interface EuiComboBoxArgs {
|
|
9
9
|
singleSelection: boolean;
|
|
10
|
+
onCreateOption?: (search: string) => boolean | undefined;
|
|
10
11
|
}
|
|
11
12
|
|
|
12
13
|
interface Select {
|
|
@@ -64,9 +65,19 @@ export default class EuiComboBoxComponent extends Component<EuiComboBoxArgs> {
|
|
|
64
65
|
|
|
65
66
|
@action
|
|
66
67
|
onCreateOption() {
|
|
67
|
-
let
|
|
68
|
+
let option;
|
|
69
|
+
if (
|
|
70
|
+
this.args.onCreateOption &&
|
|
71
|
+
typeof this.args.onCreateOption === 'function'
|
|
72
|
+
) {
|
|
73
|
+
// The `onCreateOption` function can be used to sanitize the input or explicitly return `false` to reject the input
|
|
74
|
+
option = this.args.onCreateOption(this.select.searchText);
|
|
75
|
+
if (option === false) {
|
|
76
|
+
return;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
let search = option || this.select.searchText;
|
|
68
80
|
this.select.actions.search('');
|
|
69
|
-
this.select.actions.select(search);
|
|
70
81
|
this.select.actions.close();
|
|
71
82
|
return search;
|
|
72
83
|
}
|
|
@@ -30,7 +30,6 @@
|
|
|
30
30
|
class="euiFilePicker__input"
|
|
31
31
|
disabled={{@disabled}}
|
|
32
32
|
aria-describedby={{promptId}}
|
|
33
|
-
...attributes
|
|
34
33
|
{{on "dragover" this.showDrop}}
|
|
35
34
|
{{on "dragleave" this.hideDrop}}
|
|
36
35
|
{{on "drop" this.hideDrop}}
|
|
@@ -40,7 +39,7 @@
|
|
|
40
39
|
/>
|
|
41
40
|
<div class="euiFilePicker__prompt" id={{promptId}}>
|
|
42
41
|
<EuiIcon
|
|
43
|
-
|
|
42
|
+
@iconClasses="euiFilePicker__icon"
|
|
44
43
|
@type="importAction"
|
|
45
44
|
@size={{if true "m" "l"}}
|
|
46
45
|
aria-hidden="true"
|
|
@@ -58,7 +57,7 @@
|
|
|
58
57
|
class="euiFilePicker__clearButton"
|
|
59
58
|
{{on "click" this.removeFiles}}
|
|
60
59
|
>
|
|
61
|
-
<EuiIcon
|
|
60
|
+
<EuiIcon @iconClasses="euiFilePicker__clearIcon" @type="cross" />
|
|
62
61
|
</button>
|
|
63
62
|
{{else}}
|
|
64
63
|
<EuiButtonEmpty
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
{{on "click" @onClick}}
|
|
7
7
|
>
|
|
8
8
|
<EuiIcon
|
|
9
|
-
|
|
9
|
+
@iconClasses="euiFormControlLayoutCustomIcon__icon"
|
|
10
10
|
@type={{@type}}
|
|
11
11
|
@size={{@size}}
|
|
12
12
|
aria-hidden="true"
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
{{else}}
|
|
16
16
|
<span class="euiFormControlLayoutCustomIcon" ...attributes>
|
|
17
17
|
<EuiIcon
|
|
18
|
-
|
|
18
|
+
@iconClasses="euiFormControlLayoutCustomIcon__icon"
|
|
19
19
|
@type={{@type}}
|
|
20
20
|
@size={{@size}}
|
|
21
21
|
aria-hidden="true"
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
{{#if @notification}}
|
|
9
9
|
{{#if (eq @notification true)}}
|
|
10
10
|
<EuiIcon
|
|
11
|
-
|
|
11
|
+
@iconClasses="euiHeaderSectionItemButton__notification euiHeaderSectionItemButton__notification--dot"
|
|
12
12
|
@color={{arg-or-default @notificationColor "accent"}}
|
|
13
13
|
@type="dot"
|
|
14
14
|
@size="l"
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
{{!template-lint-disable}}
|
|
5
5
|
<IconComponent
|
|
6
6
|
class={{class-names
|
|
7
|
+
@iconClasses
|
|
7
8
|
this.optionalColorClass
|
|
8
9
|
(if this.isAppIcon "euiIcon--app")
|
|
9
10
|
componentName="EuiIcon"
|
|
@@ -23,6 +24,7 @@
|
|
|
23
24
|
<img
|
|
24
25
|
src={{this.icon}}
|
|
25
26
|
class={{class-names
|
|
27
|
+
@iconClasses
|
|
26
28
|
this.optionalColorClass
|
|
27
29
|
(if this.isAppIcon "euiIcon--app")
|
|
28
30
|
componentName="EuiIcon"
|
|
@@ -33,26 +35,21 @@
|
|
|
33
35
|
...attributes
|
|
34
36
|
/>
|
|
35
37
|
{{else}}
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
this.
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
aria-labelledby=(if @aria-labelledby @aria-labelledby this.titleId)
|
|
53
|
-
tabindex=this.tabIndex
|
|
54
|
-
style=this.optionalCustomStyles
|
|
55
|
-
}}
|
|
56
|
-
</div>
|
|
38
|
+
{{svg-jar
|
|
39
|
+
this.icon
|
|
40
|
+
class=(class-names
|
|
41
|
+
@iconClasses
|
|
42
|
+
this.optionalColorClass
|
|
43
|
+
(if this.isAppIcon "euiIcon--app")
|
|
44
|
+
componentName="EuiIcon"
|
|
45
|
+
size=this.size
|
|
46
|
+
)
|
|
47
|
+
role="image"
|
|
48
|
+
aria-hidden=(if this.isAriaHidden "true")
|
|
49
|
+
aria-label=(if @aria-label @aria-label this.titleId)
|
|
50
|
+
aria-labelledby=(if @aria-labelledby @aria-labelledby this.titleId)
|
|
51
|
+
tabindex=this.tabIndex
|
|
52
|
+
style=this.optionalCustomStyles
|
|
53
|
+
}}
|
|
57
54
|
{{/if}}
|
|
58
55
|
{{/if}}
|
|
@@ -11,11 +11,10 @@
|
|
|
11
11
|
<:anchor>
|
|
12
12
|
<EuiIcon
|
|
13
13
|
tabindex="0"
|
|
14
|
-
|
|
14
|
+
@iconClasses={{@iconProps.className}}
|
|
15
15
|
@type={{arg-or-default @type "questionInCircle"}}
|
|
16
16
|
@color={{@color}}
|
|
17
17
|
@size={{@size}}
|
|
18
|
-
...attributes
|
|
19
18
|
aria-label={{arg-or-default @ariaLabel "Info"}}
|
|
20
19
|
/>
|
|
21
20
|
</:anchor>
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
...attributes
|
|
19
19
|
>
|
|
20
20
|
{{#if @iconType}}
|
|
21
|
-
<EuiIcon
|
|
21
|
+
<EuiIcon @iconClasses="euiListGroupItem__icon" @type={{@iconType}} />
|
|
22
22
|
{{/if}}
|
|
23
23
|
<span class="euiListGroupItem__label">
|
|
24
24
|
{{#if (has-block)}}
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
...attributes
|
|
38
38
|
>
|
|
39
39
|
{{#if @iconType}}
|
|
40
|
-
<EuiIcon
|
|
40
|
+
<EuiIcon @iconClasses="euiListGroupItem__icon" @type={{@iconType}} />
|
|
41
41
|
{{/if}}
|
|
42
42
|
<span class="euiListGroupItem__label">
|
|
43
43
|
{{#if (has-block)}}
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
{{else}}
|
|
51
51
|
<span class="euiListGroupItem__text" ...attributes>
|
|
52
52
|
{{#if @iconType}}
|
|
53
|
-
<EuiIcon
|
|
53
|
+
<EuiIcon @iconClasses="euiListGroupItem__icon" @type={{@iconType}} />
|
|
54
54
|
{{/if}}
|
|
55
55
|
<span class="euiListGroupItem__label">
|
|
56
56
|
{{#if (has-block)}}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<EuiToolTip @content={{@node.tooltipText}}>
|
|
3
3
|
<span>
|
|
4
4
|
<strong>{{@node.content}}</strong>
|
|
5
|
-
<EuiIcon @type="questionInCircle"
|
|
5
|
+
<EuiIcon @type="questionInCircle" @iconClasses="euiMarkdownTooltip__icon" />
|
|
6
6
|
</span>
|
|
7
7
|
</EuiToolTip>
|
|
8
8
|
</span>
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<span class="euiSideNav__mobileTitle">
|
|
9
9
|
{{@mobileTitle}}
|
|
10
10
|
</span>
|
|
11
|
-
<EuiIcon
|
|
11
|
+
<EuiIcon @iconClasses="euiSideNav__mobileIcon" @type="apps" @size="m" aria-hidden="true" />
|
|
12
12
|
</span>
|
|
13
13
|
</button>
|
|
14
14
|
<div class="euiSideNav__content">
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
...attributes
|
|
9
9
|
>
|
|
10
10
|
{{#if (eq @status "complete")}}
|
|
11
|
-
<EuiIcon
|
|
11
|
+
<EuiIcon @iconClasses="euiStepNumber__icon" @type="check" @size={{iconSize}} />
|
|
12
12
|
{{else if (eq @status "warning")}}
|
|
13
|
-
<EuiIcon
|
|
13
|
+
<EuiIcon @iconClasses="euiStepNumber__icon" @type="alert" @size={{iconSize}} />
|
|
14
14
|
{{else if (eq @status "danger")}}
|
|
15
|
-
<EuiIcon
|
|
15
|
+
<EuiIcon @iconClasses="euiStepNumber__icon" @type="cross" @size={{iconSize}} />
|
|
16
16
|
{{else if (eq @status "loading")}}
|
|
17
17
|
<EuiLoadingSpinner class="euiStepNumber__loader" @size={{if (eq iconSize "s") "l" "xl"}} />
|
|
18
18
|
{{else}}
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
<span class="euiSwitch__thumb"></span>
|
|
30
30
|
<span class="euiSwitch__track">
|
|
31
31
|
{{#unless @compressed}}
|
|
32
|
-
<EuiIcon @type="cross" @size="m"
|
|
32
|
+
<EuiIcon @type="cross" @size="m" @iconClasses="euiSwitch__icon" />
|
|
33
33
|
<EuiIcon
|
|
34
34
|
@type="check"
|
|
35
35
|
@size="m"
|
|
36
|
-
|
|
36
|
+
@iconClasses="euiSwitch__icon euiSwitch__icon--checked"
|
|
37
37
|
/>
|
|
38
38
|
{{/unless}}
|
|
39
39
|
</span>
|
|
@@ -5,7 +5,7 @@ import { uniqueId } from '../../helpers/unique-id';
|
|
|
5
5
|
import { tracked, cached } from '@glimmer/tracking';
|
|
6
6
|
import { findPopoverPosition } from '../../utils/popover';
|
|
7
7
|
import { keys } from '../../utils/keys';
|
|
8
|
-
import { later, cancel, scheduleOnce } from '@ember/runloop';
|
|
8
|
+
import { later, cancel, scheduleOnce, next } from '@ember/runloop';
|
|
9
9
|
|
|
10
10
|
export type ToolTipPositions = 'top' | 'right' | 'bottom' | 'left';
|
|
11
11
|
|
|
@@ -113,9 +113,11 @@ export default class EuiToolTip extends Component<EuiTooltipArgs> {
|
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
if (this.args.attachTo && this.args.attachTo !== this._attachTo) {
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
116
|
+
next(() => {
|
|
117
|
+
this.removeAttachToHandlers();
|
|
118
|
+
this._attachTo = this.args.attachTo;
|
|
119
|
+
this.setupAttachToHandlers();
|
|
120
|
+
});
|
|
119
121
|
}
|
|
120
122
|
}
|
|
121
123
|
|
|
@@ -246,13 +248,16 @@ export default class EuiToolTip extends Component<EuiTooltipArgs> {
|
|
|
246
248
|
}
|
|
247
249
|
});
|
|
248
250
|
|
|
249
|
-
const windowWidth =
|
|
251
|
+
const windowWidth =
|
|
252
|
+
document.documentElement.clientWidth || window.innerWidth;
|
|
250
253
|
const useRightValue = windowWidth / 2 < left;
|
|
251
254
|
|
|
252
255
|
const toolTipStyles: ToolTipStyles = {
|
|
253
256
|
top: `${top}px`,
|
|
254
257
|
left: useRightValue ? 'auto' : `${left}px`,
|
|
255
|
-
right: useRightValue
|
|
258
|
+
right: useRightValue
|
|
259
|
+
? `${windowWidth - left - this.popover.offsetWidth}px`
|
|
260
|
+
: 'auto'
|
|
256
261
|
};
|
|
257
262
|
|
|
258
263
|
this.visible = true;
|
|
@@ -299,7 +304,8 @@ export default class EuiToolTip extends Component<EuiTooltipArgs> {
|
|
|
299
304
|
// left the anchor for a non-child.
|
|
300
305
|
if (
|
|
301
306
|
this._anchor === event.relatedTarget ||
|
|
302
|
-
(this._anchor != null &&
|
|
307
|
+
(this._anchor != null &&
|
|
308
|
+
!this._anchor.contains(event.relatedTarget as Node))
|
|
303
309
|
) {
|
|
304
310
|
this.hideToolTip();
|
|
305
311
|
}
|
|
@@ -1,5 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/*
|
|
2
|
+
@override
|
|
3
|
+
.euiAvatar for future css
|
|
4
|
+
*/
|
|
5
|
+
.euiAvatar {
|
|
6
|
+
-webkit-flex-shrink: 0;
|
|
7
|
+
flex-shrink: 0;
|
|
8
|
+
display: -webkit-inline-flex;
|
|
9
|
+
display: inline-flex;
|
|
10
|
+
-webkit-justify-content: center;
|
|
11
|
+
justify-content: center;
|
|
12
|
+
-webkit-align-items: center;
|
|
13
|
+
align-items: center;
|
|
14
|
+
background-size: cover;
|
|
15
|
+
text-align: center;
|
|
16
|
+
vertical-align: middle;
|
|
17
|
+
overflow-x: hidden;
|
|
18
|
+
font-weight: 500;
|
|
3
19
|
}
|
|
4
20
|
|
|
5
21
|
.euiMarkdownEditor--fullHeight {
|
|
@@ -12,4 +28,4 @@
|
|
|
12
28
|
|
|
13
29
|
.euiMarkdownEditor--isPreviewing .euiMarkdownEditor__toggleContainer {
|
|
14
30
|
display: none;
|
|
15
|
-
}
|
|
31
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember-eui/core",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.5",
|
|
4
4
|
"description": "Ember Components for Elastic UI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon",
|
|
@@ -176,5 +176,5 @@
|
|
|
176
176
|
"volta": {
|
|
177
177
|
"extends": "../../package.json"
|
|
178
178
|
},
|
|
179
|
-
"gitHead": "
|
|
179
|
+
"gitHead": "734349b17f552bf40db786c1b38270abcdce3952"
|
|
180
180
|
}
|