@ember-eui/core 4.0.7 → 4.1.0
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
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
### Master
|
|
4
4
|
|
|
5
|
+
### 4.1.0
|
|
6
|
+
🐛 Bug / Fixes
|
|
7
|
+
`@ember-eui/core`
|
|
8
|
+
- @html-next/vertical-collection depend on npm released version 3.0.0-1
|
|
9
|
+
|
|
10
|
+
🚀 Enhancements
|
|
11
|
+
`@ember-eui/*`
|
|
12
|
+
bump @embroider 1.3.0 regenerating yarn.lock, this finally enables staticComponents flag!
|
|
13
|
+
|
|
14
|
+
### 4.0.9
|
|
15
|
+
🐛 Bug / Fixes
|
|
16
|
+
`@ember-eui/core`
|
|
17
|
+
- `<EuiIcon>` added hardcoded styling meanwhile we add back svgs to hbs components
|
|
18
|
+
|
|
19
|
+
### 4.0.8
|
|
20
|
+
🐛 Bug / Fixes
|
|
21
|
+
`@ember-eui/pikaday`
|
|
22
|
+
- Make component much more flexible for easier extending or composition
|
|
23
|
+
|
|
5
24
|
### 4.0.7
|
|
6
25
|
🐛 Bug / Fixes
|
|
7
26
|
`@ember-eui/core`
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
{{#each @select.selected as |opt idx|}}
|
|
37
37
|
{{#if @selectedItemComponent}}
|
|
38
38
|
{{component
|
|
39
|
-
@selectedItemComponent
|
|
39
|
+
(ensure-safe-component @selectedItemComponent)
|
|
40
40
|
extra=@extra
|
|
41
41
|
option=opt
|
|
42
42
|
select=@select
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
class="ember-power-select-multiple-option
|
|
47
47
|
{{if
|
|
48
48
|
opt.disabled
|
|
49
|
-
|
|
49
|
+
'ember-power-select-multiple-option--disabled'
|
|
50
50
|
}}"
|
|
51
51
|
@option={{opt}}
|
|
52
52
|
@onClose={{if
|
|
@@ -1,28 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
-webkit-flex-shrink: 0;
|
|
4
|
-
flex-shrink: 0;
|
|
5
|
-
display: -webkit-inline-flex;
|
|
6
|
-
display: inline-flex;
|
|
7
|
-
-webkit-justify-content: center;
|
|
8
|
-
justify-content: center;
|
|
9
|
-
-webkit-align-items: center;
|
|
10
|
-
align-items: center;
|
|
11
|
-
background-size: cover;
|
|
12
|
-
text-align: center;
|
|
13
|
-
vertical-align: middle;
|
|
14
|
-
overflow-x: hidden;
|
|
15
|
-
font-weight: 500;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.euiMarkdownEditor--fullHeight {
|
|
19
|
-
display: -webkit-flex;
|
|
20
|
-
display: flex;
|
|
21
|
-
-webkit-flex-direction: column;
|
|
22
|
-
flex-direction: column;
|
|
23
|
-
height: 100%;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.euiMarkdownEditor--isPreviewing .euiMarkdownEditor__toggleContainer {
|
|
27
|
-
display: none;
|
|
1
|
+
.euiIcon {
|
|
2
|
+
line-height: 1; /* added while we support back hbs svgs components */
|
|
28
3
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember-eui/core",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "Ember Components for Elastic UI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon",
|
|
@@ -53,11 +53,11 @@
|
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@elastic/eui": "31.0.0",
|
|
55
55
|
"@ember/render-modifiers": "^2.0.4",
|
|
56
|
-
"@html-next/vertical-collection": "
|
|
56
|
+
"@html-next/vertical-collection": "3.0.0-1",
|
|
57
57
|
"@types/lodash-es": "^4.17.4",
|
|
58
58
|
"chroma-js": "^2.1.0",
|
|
59
59
|
"ember-auto-import": "^2.2.4",
|
|
60
|
-
"ember-cached-decorator-polyfill": "^0.1.
|
|
60
|
+
"ember-cached-decorator-polyfill": "^0.1.4",
|
|
61
61
|
"ember-cli-babel": "^7.26.11",
|
|
62
62
|
"ember-cli-htmlbars": "^6.0.1",
|
|
63
63
|
"ember-cli-typescript": "4.2.1",
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"@ember/optional-features": "^2.0.0",
|
|
96
96
|
"@ember/test-helpers": "^2.6.0",
|
|
97
97
|
"@embroider/test-setup": "^1.0.0",
|
|
98
|
-
"@embroider/util": "^1.
|
|
98
|
+
"@embroider/util": "^1.3.0",
|
|
99
99
|
"@glimmer/component": "^1.0.4",
|
|
100
100
|
"@glimmer/tracking": "^1.0.4",
|
|
101
101
|
"@types/ember": "^3.16.0",
|
|
@@ -175,5 +175,5 @@
|
|
|
175
175
|
"volta": {
|
|
176
176
|
"extends": "../../package.json"
|
|
177
177
|
},
|
|
178
|
-
"gitHead": "
|
|
178
|
+
"gitHead": "ce506cfece96738979e6bd9bcec919330df77115"
|
|
179
179
|
}
|