@ember-eui/core 4.2.3 → 4.2.4
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 +4 -0
- package/addon/components/eui-icon/index.hbs +15 -21
- package/addon/styles/ember-eui.css +19 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -33,26 +33,20 @@
|
|
|
33
33
|
...attributes
|
|
34
34
|
/>
|
|
35
35
|
{{else}}
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
aria-label=(if @aria-label @aria-label this.titleId)
|
|
52
|
-
aria-labelledby=(if @aria-labelledby @aria-labelledby this.titleId)
|
|
53
|
-
tabindex=this.tabIndex
|
|
54
|
-
style=this.optionalCustomStyles
|
|
55
|
-
}}
|
|
56
|
-
</div>
|
|
36
|
+
{{svg-jar
|
|
37
|
+
this.icon
|
|
38
|
+
class=(class-names
|
|
39
|
+
this.optionalColorClass
|
|
40
|
+
(if this.isAppIcon "euiIcon--app")
|
|
41
|
+
componentName="EuiIcon"
|
|
42
|
+
size=this.size
|
|
43
|
+
)
|
|
44
|
+
role="image"
|
|
45
|
+
aria-hidden=(if this.isAriaHidden "true")
|
|
46
|
+
aria-label=(if @aria-label @aria-label this.titleId)
|
|
47
|
+
aria-labelledby=(if @aria-labelledby @aria-labelledby this.titleId)
|
|
48
|
+
tabindex=this.tabIndex
|
|
49
|
+
style=this.optionalCustomStyles
|
|
50
|
+
}}
|
|
57
51
|
{{/if}}
|
|
58
52
|
{{/if}}
|
|
@@ -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.4",
|
|
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": "129e8ad0a68528eddbb628ca3772c7297d48621c"
|
|
180
180
|
}
|