@ember-eui/core 3.0.0 → 4.0.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.
Files changed (28) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/README.md +2 -3
  3. package/addon/components/eui-button/index.hbs +2 -0
  4. package/addon/components/eui-button-content/index.hbs +1 -0
  5. package/addon/components/eui-button-empty/index.hbs +2 -0
  6. package/addon/components/eui-button-icon/index.hbs +2 -0
  7. package/addon/components/eui-combo-box/index.hbs +1 -5
  8. package/addon/components/eui-combo-box/options/index.hbs +10 -5
  9. package/addon/components/eui-combo-box/trigger/index.hbs +2 -2
  10. package/addon/components/eui-icon/index.hbs +19 -2
  11. package/addon/components/eui-icon/index.ts +0 -2
  12. package/addon/components/eui-list-group-item/index.hbs +1 -1
  13. package/addon/components/eui-markdown-editor/index.ts +14 -2
  14. package/addon/components/eui-markdown-editor-footer/icons/markdown-logo/index.d.ts +4 -0
  15. package/addon/components/eui-markdown-editor-footer/icons/markdown-logo/index.hbs +16 -0
  16. package/addon/components/eui-markdown-editor-footer/index.hbs +3 -1
  17. package/addon/components/eui-markdown-editor-footer/index.ts +0 -12
  18. package/addon/components/eui-markdown-editor-toolbar/icons/markdown-checkmark/index.d.ts +4 -0
  19. package/addon/components/eui-markdown-editor-toolbar/icons/markdown-checkmark/index.hbs +16 -0
  20. package/addon/components/eui-markdown-editor-toolbar/index.hbs +6 -1
  21. package/addon/components/eui-markdown-editor-toolbar/index.ts +5 -9
  22. package/addon/components/eui-markdown-format/index.hbs +13 -3
  23. package/app/components/eui-markdown-editor-footer/icons/markdown-logo/index.js +1 -0
  24. package/app/components/eui-markdown-editor-toolbar/icons/markdown-checkmark/index.js +1 -0
  25. package/package.json +24 -24
  26. package/app/components/eui-text-field/index.js +0 -1
  27. package/public/markdown-checkmark.svg +0 -3
  28. package/public/markdown-logo.svg +0 -3
package/CHANGELOG.md CHANGED
@@ -2,6 +2,40 @@
2
2
 
3
3
  ### Master
4
4
 
5
+ ### 4.0.0
6
+ 💥 Breaking change
7
+ `@ember-eui/*`
8
+ - Your application must depend on `ember-auto-import` > v2.0.0, please refer to the [migration guides](https://github.com/ef4/ember-auto-import/blob/main/docs/upgrade-guide-2.0.md)
9
+
10
+ 🚀 Enhancements
11
+ `@ember-eui/*`
12
+ - ember v4.1.0 support!
13
+
14
+ 🏠 Internal
15
+ `@ember-eui/*`
16
+ - `ember-cli-update` on all packages for ember >v4.1.0
17
+ - Update ember-cli-typescript
18
+ - Update docs dependencies for ember 4 support
19
+
20
+ ### 3.1.0
21
+ 🚀 Enhancements
22
+ `@ember-eui/*`
23
+ - Embroider ready, in order to use staticComponents you need to have `@embroider` > 1.2.0
24
+
25
+ 🐛 Bug / Fixes
26
+ `@ember-eui/core`
27
+ - `<EuiMarkdownFormat />` and `<EuiMarkdownEditor />` styling bugs and double render issues fixed
28
+
29
+ ### 3.0.2
30
+ `@ember-eui/core`
31
+ 🐛 Bug / Fixes
32
+ - Fix `<EuiMarkdownEditor />` icons compatibility with ember-source < 3.27
33
+
34
+ ### 3.0.1
35
+ `@ember-eui/core`
36
+ 🚀 Enhancements
37
+ - No longer need to add icons from public icons in ember-eui/core
38
+
5
39
  ### 3.0.0
6
40
  💥 Breaking change
7
41
  `@ember-eui/*`
package/README.md CHANGED
@@ -15,7 +15,6 @@ var app = new EmberApp(defaults, {
15
15
  svgJar: {
16
16
  sourceDirs: [
17
17
  'public/assets',
18
- '../node_modules/@ember-eui/core/public',
19
18
  'node_modules/@elastic/eui/lib/components/icon',
20
19
  ],
21
20
  },
@@ -26,8 +25,8 @@ var app = new EmberApp(defaults, {
26
25
 
27
26
  ## Compatibility
28
27
 
29
- * Ember.js v3.20 or above
30
- * Ember CLI v3.20 or above
28
+ * Ember.js v3.24 or above
29
+ * Ember CLI v3.24 or above
31
30
  * Node.js v12 or above
32
31
 
33
32
 
@@ -21,6 +21,7 @@
21
21
  @iconSide={{@iconSide}}
22
22
  @iconClasses={{@iconClasses}}
23
23
  @useSvg={{@useSvg}}
24
+ @useComponent={{@useComponent}}
24
25
  @textClasses={{class-names "euiButton__text" @textClasses}}
25
26
  >
26
27
  {{yield}}
@@ -48,6 +49,7 @@
48
49
  @iconSide={{@iconSide}}
49
50
  @iconClasses={{@iconClasses}}
50
51
  @useSvg={{@useSvg}}
52
+ @useComponent={{@useComponent}}
51
53
  @textClasses={{class-names "euiButton__text" @textClasses}}
52
54
  >
53
55
  {{yield}}
@@ -13,6 +13,7 @@
13
13
  @type={{@iconType}}
14
14
  @size="m"
15
15
  @useSvg={{@useSvg}}
16
+ @useComponent={{@useComponent}}
16
17
  />
17
18
  {{/if}}
18
19
  <span class={{@textClasses}}>
@@ -18,6 +18,7 @@
18
18
  @iconSide={{@iconSide}}
19
19
  @iconClasses={{@iconClasses}}
20
20
  @useSvg={{@useSvg}}
21
+ @useComponent={{@useComponent}}
21
22
  @textClasses={{class-names "euiButtonEmpty__text" @textClasses}}
22
23
  >
23
24
  {{yield}}
@@ -44,6 +45,7 @@
44
45
  @iconSide={{@iconSide}}
45
46
  @iconClasses={{@iconClasses}}
46
47
  @useSvg={{@useSvg}}
48
+ @useComponent={{@useComponent}}
47
49
  @textClasses={{class-names "euiButtonEmpty__text" @textClasses}}
48
50
  >
49
51
  {{yield}}
@@ -11,6 +11,7 @@
11
11
  @type={{@iconType}}
12
12
  @size={{arg-or-default @iconSize "m"}}
13
13
  @useSvg={{@useSvg}}
14
+ @useComponent={{@useComponent}}
14
15
  aria-hidden="true"
15
16
  />
16
17
  {{/if}}
@@ -29,6 +30,7 @@
29
30
  @type={{@iconType}}
30
31
  @size={{@iconSize}}
31
32
  @useSvg={{@useSvg}}
33
+ @useComponent={{@useComponent}}
32
34
  aria-hidden="true"
33
35
  />
34
36
  {{/if}}
@@ -54,11 +54,7 @@
54
54
  @allowClear={{@isClearable}}
55
55
  @loadingMessage={{@loadingMessage}}
56
56
  @selectedItemComponent={{@selectedItemComponent}}
57
- @beforeOptionsComponent={{if
58
- @beforeOptionsComponent
59
- @beforeOptionsComponent
60
- null
61
- }}
57
+ @beforeOptionsComponent={{@beforeOptionsComponent}}
62
58
  @placeholder={{@placeholder}}
63
59
  @searchPlaceholder={{@searchPlaceholder}}
64
60
  @optionsComponent={{component "eui-combo-box/options" rowHeight=@rowHeight}}
@@ -1,4 +1,4 @@
1
- {{#let (component @groupComponent) as |Group|}}
1
+ {{#let (component (ensure-safe-component @groupComponent)) as |Group|}}
2
2
  {{#if @select.loading}}
3
3
  <EuiText @size="xs" class="euiComboBoxOptionsList__empty">
4
4
  <EuiFlexGroup @gutterSize="s" @justifyContent="center">
@@ -23,7 +23,8 @@
23
23
  aria-controls="ember-power-select-trigger-{{@select.uniqueId}}"
24
24
  ...attributes
25
25
  {{did-insert this.addHandlers}}
26
- {{will-destroy this.removeHandlers}} as |opt index|
26
+ {{will-destroy this.removeHandlers}}
27
+ as |opt index|
27
28
  >
28
29
  {{! template-lint-enable }}
29
30
  {{#if (ember-power-select-is-group opt)}}
@@ -31,10 +32,14 @@
31
32
  {{else}}
32
33
  <li
33
34
  class="euiFilterSelectItem
34
- {{if (eq opt @select.highlighted) " euiFilterSelectItem-isFocused"
35
- }}"
36
- aria-selected="{{ember-power-select-is-selected opt @select.selected
35
+ {{if
36
+ (eq opt @select.highlighted)
37
+ ' euiFilterSelectItem-isFocused'
37
38
  }}"
39
+ aria-selected="{{ember-power-select-is-selected
40
+ opt
41
+ @select.selected
42
+ }}"
38
43
  aria-disabled={{if opt.disabled "true"}}
39
44
  aria-current="{{eq opt @select.highlighted}}"
40
45
  data-option-index="{{index}}"
@@ -38,7 +38,7 @@
38
38
  {{#each @select.selected as |opt idx|}}
39
39
  {{#if @selectedItemComponent}}
40
40
  {{component
41
- @selectedItemComponent
41
+ (ensure-safe-component @selectedItemComponent)
42
42
  extra=@extra
43
43
  option=opt
44
44
  select=@select
@@ -48,7 +48,7 @@
48
48
  class="ember-power-select-multiple-option
49
49
  {{if
50
50
  opt.disabled
51
- "ember-power-select-multiple-option--disabled"
51
+ 'ember-power-select-multiple-option--disabled'
52
52
  }}"
53
53
  @option={{opt}}
54
54
  @onClose={{if
@@ -1,6 +1,23 @@
1
- {{#if this.icon.inner}}
1
+ {{#if @useComponent}}
2
2
  {{! has the shape of a curried component }}
3
- {{component this.icon}}
3
+ {{#let (component (ensure-safe-component this.icon)) as |IconComponent|}}
4
+ {{!template-lint-disable}}
5
+ <IconComponent
6
+ class={{class-names
7
+ this.optionalColorClass
8
+ (if this.isAppIcon "euiIcon--app")
9
+ componentName="EuiIcon"
10
+ size=this.size
11
+ }}
12
+ role="image"
13
+ aria-hidden={{if this.isAriaHidden "true"}}
14
+ aria-label={{if @aria-label @aria-label this.titleId}}
15
+ aria-labelledby={{if @aria-labelledby @aria-labelledby this.titleId}}
16
+ tabindex={{this.tabIndex}}
17
+ style={{this.optionalCustomStyles}}
18
+ ...attributes
19
+ />
20
+ {{/let}}
4
21
  {{else}}
5
22
  {{#if this.useImage}}
6
23
  <img
@@ -29,8 +29,6 @@ type IconColor = string | NamedColor;
29
29
 
30
30
  export type IconSize = keyof typeof sizeToClassNameMap;
31
31
 
32
- // const SVG_PREI : string | undefined = config['ember-eui'].svgPath || 'svg/assets';
33
-
34
32
  export type EuiIconArgs = CommonArgs & {
35
33
  /**
36
34
  * `Enum` is any of the named icons listed in the docs, `string` is usually a URL to an SVG file, and `elementType` is any Ember Icon SVG component
@@ -62,6 +62,6 @@
62
62
  </span>
63
63
  {{/if}}
64
64
  {{#if @extraAction}}
65
- {{component @extraAction}}
65
+ {{component (ensure-safe-component @extraAction)}}
66
66
  {{/if}}
67
67
  </li>
@@ -20,6 +20,7 @@ import {
20
20
  EuiMarkdownAstNode
21
21
  } from '../../utils/markdown/markdown-types';
22
22
  import { Processor } from 'unified';
23
+ import { scheduleOnce } from '@ember/runloop';
23
24
 
24
25
  export interface EuiMarkdownEditorArgs {
25
26
  initialViewMode?: string;
@@ -119,7 +120,11 @@ export default class EuiMarkdownEditorComponent extends Component<EuiMarkdownEdi
119
120
  const resizedTextareaHeight =
120
121
  this.textareaRef.offsetHeight + this.editorFooterHeight;
121
122
 
122
- this.currentHeight = resizedTextareaHeight;
123
+ const update = () => {
124
+ this.currentHeight = resizedTextareaHeight;
125
+ };
126
+
127
+ scheduleOnce('afterRender', this, update);
123
128
  }
124
129
  }
125
130
 
@@ -144,7 +149,13 @@ export default class EuiMarkdownEditorComponent extends Component<EuiMarkdownEdi
144
149
  // then add an extra pixel for safety and because the scrollHeight value is rounded
145
150
  const extraHeight = borderWidth + marginWidth + 1;
146
151
 
147
- this.currentHeight = previewRef.scrollHeight + extraHeight;
152
+ const update = () => {
153
+ if (previewRef) {
154
+ this.currentHeight = previewRef.scrollHeight + extraHeight;
155
+ }
156
+ };
157
+
158
+ scheduleOnce('afterRender', this, update);
148
159
  }
149
160
  }
150
161
  }
@@ -188,6 +199,7 @@ export default class EuiMarkdownEditorComponent extends Component<EuiMarkdownEdi
188
199
  };
189
200
 
190
201
  function identityCompiler(this: Processor) {
202
+ //eslint-disable-next-line
191
203
  this.Compiler = Compiler;
192
204
  }
193
205
  return unified().use(this.parsingPluginList).use(identityCompiler);
@@ -0,0 +1,4 @@
1
+ import templateOnlyComponent from '@ember/component/template-only';
2
+
3
+ export type EuiMarkdownEditorToolbarIconsMarkdownLogo =
4
+ typeof templateOnlyComponent;
@@ -0,0 +1,16 @@
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="26"
4
+ height="16"
5
+ fill="none"
6
+ viewBox="0 0 26 16"
7
+ aria-labelledby={{@titleId}}
8
+ ...attributes
9
+ >
10
+ {{#if @title}}
11
+ <title id={{@titleId}}>{{@title}}</title>
12
+ {{/if}}
13
+ <path
14
+ d="M1.25 1.875c0-.345.28-.625.625-.625h22.25c.345 0 .625.28.625.625v12.25c0 .345-.28.625-.625.625H1.875a.625.625 0 01-.625-.625V1.875zM1.875 0C.839 0 0 .84 0 1.875v12.25C0 15.161.84 16 1.875 16h22.25C25.16 16 26 15.16 26 14.125V1.875C26 .839 25.16 0 24.125 0H1.875zM3.75 3.75v8.5h2.5V7.375l2.5 3.125 2.5-3.125v4.875h2.5v-8.5h-2.5l-2.5 3.125-2.5-3.125h-2.5zm11.875 4.375l3.75 4.125 3.75-4.125h-2.5V3.75h-2.5v4.375h-2.5z"
15
+ ></path>
16
+ </svg>
@@ -5,6 +5,7 @@
5
5
  {{! pending implementation}}
6
6
  <EuiButtonIcon
7
7
  @iconType={{component "eui-loading-spinner"}}
8
+ @useComponent={{true}}
8
9
  {{! aria-label={ariaLabels.uploadingFiles} }}
9
10
  />
10
11
  {{/if}}
@@ -29,7 +30,8 @@
29
30
  </div>
30
31
  <EuiButtonIcon
31
32
  class="euiMarkdownEditorFooter__help"
32
- @iconType={{this.markdownLogo}}
33
+ @iconType={{component "eui-markdown-editor-footer/icons/markdown-logo"}}
34
+ @useComponent={{true}}
33
35
  @color="text"
34
36
  @useSvg={{true}}
35
37
  {{! aria-label={ariaLabels.showMarkdownHelp} }}
@@ -1,21 +1,9 @@
1
1
  import Component from '@glimmer/component';
2
2
  import { tracked } from '@glimmer/tracking';
3
- import { getOwner } from '@ember/application';
4
3
 
5
4
  export interface EuiMarkdownEditorFooterArgs {}
6
5
 
7
6
  export default class EuiMarkdownEditorFooterComponent extends Component<EuiMarkdownEditorFooterArgs> {
8
7
  @tracked isPopoverOpen = false;
9
8
  @tracked isShowingHelp = false;
10
-
11
- get svgPath() {
12
- //@ts-ignore
13
- const config = getOwner(this).resolveRegistration('config:environment');
14
- const svgPath = config?.['@ember-eui/core']?.svgPath || 'svg/';
15
- return svgPath;
16
- }
17
-
18
- get markdownLogo() {
19
- return `${this.svgPath}markdown-logo`;
20
- }
21
9
  }
@@ -0,0 +1,4 @@
1
+ import templateOnlyComponent from '@ember/component/template-only';
2
+
3
+ export type EuiMarkdownEditorToolbarIconsMarkdownCheckmark =
4
+ typeof templateOnlyComponent;
@@ -0,0 +1,16 @@
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="16"
4
+ height="16"
5
+ fill="none"
6
+ viewBox="0 0 16 16"
7
+ aria-labelledby={{@titleId}}
8
+ ...attributes
9
+ >
10
+ {{#if @title}}
11
+ <title id={{@titleId}}>{{@title}}</title>
12
+ {{/if}}
13
+ <path
14
+ d="M11.828 13H4.172A1.173 1.173 0 013 11.828V4.172C3 3.526 3.526 3 4.172 3h7.656C12.474 3 13 3.526 13 4.172v7.656c0 .646-.526 1.172-1.172 1.172zM4.172 3.781a.391.391 0 00-.39.39v7.657c0 .216.175.39.39.39h7.656a.39.39 0 00.39-.39V4.172a.391.391 0 00-.39-.39H4.172zm7.244 2.175l-.582-.521L7.22 9.469 5.125 7.476l-.539.566 2.68 2.548 4.15-4.634z"
15
+ ></path>
16
+ </svg>
@@ -18,7 +18,12 @@
18
18
  <EuiButtonIcon
19
19
  @color="text"
20
20
  {{on "click" (fn this.handleMdButtonClick item.id)}}
21
- @iconType={{item.iconType}}
21
+ @iconType={{if
22
+ item.iconType.component
23
+ (component (ensure-safe-component item.iconType.component))
24
+ item.iconType
25
+ }}
26
+ @useComponent={{item.iconType.component}}
22
27
  aria-label={{item.label}}
23
28
  @useSvg={{item.useSvg}}
24
29
  @isDisabled={{this.isPreviewing}}
@@ -3,7 +3,7 @@ import { action } from '@ember/object';
3
3
  import type MarkdownActions from '../../utils/markdown/markdown-actions';
4
4
  import { MODE_VIEWING } from '../../utils/markdown/markdown-modes';
5
5
  import { cached } from '@glimmer/tracking';
6
- import { getOwner } from '@ember/application';
6
+
7
7
  import { Plugin } from 'unified';
8
8
 
9
9
  export interface EuiMarkdownEditorToolbarArgs {
@@ -29,13 +29,6 @@ export default class EuiMarkdownEditorToolbarComponent extends Component<EuiMark
29
29
  }
30
30
  ];
31
31
 
32
- get svgPath() {
33
- //@ts-ignore
34
- const config = getOwner(this).resolveRegistration('config:environment');
35
- const svgPath = config?.['@ember-eui/core']?.svgPath || 'svg/';
36
- return svgPath;
37
- }
38
-
39
32
  @cached
40
33
  get listButtons() {
41
34
  return [
@@ -56,7 +49,10 @@ export default class EuiMarkdownEditorToolbarComponent extends Component<EuiMark
56
49
  label: 'Task list',
57
50
  name: 'tl',
58
51
  useSvg: true,
59
- iconType: `${this.svgPath}markdown-checkmark`
52
+ iconType: {
53
+ // this should't be needed when we drop support for 3.24.0
54
+ component: 'eui-markdown-editor-toolbar/icons/markdown-checkmark'
55
+ }
60
56
  }
61
57
  ];
62
58
  }
@@ -1,9 +1,19 @@
1
1
  {{! This hbs was inspired by https://github.com/ampatspell/ember-cli-remark-static/blob/v3.0.5/addon/components/remark.hbs }}
2
- <div class="euiMarkdownFormat">
2
+ <EuiText
3
+ class="euiMarkdownFormat"
4
+ @color={{@color}}
5
+ @grow={{@grow}}
6
+ @size={{@textSize}}
7
+ @textAlign={{@textAlign}}
8
+ ...attributes
9
+ >
3
10
  {{this.result.element}}
4
11
  {{#each this.result.components as |CompNode|}}
5
12
  {{#in-element CompNode.element}}
6
- {{#let (component CompNode.componentName) as |DynamicComponent|}}
13
+ {{#let
14
+ (component (ensure-safe-component CompNode.componentName))
15
+ as |DynamicComponent|
16
+ }}
7
17
  <DynamicComponent
8
18
  @replaceNode={{optional @replaceNode}}
9
19
  @node={{CompNode}}
@@ -11,4 +21,4 @@
11
21
  {{/let}}
12
22
  {{/in-element}}
13
23
  {{/each}}
14
- </div>
24
+ </EuiText>
@@ -0,0 +1 @@
1
+ export { default } from '@ember-eui/core/components/eui-markdown-editor-footer/icons/markdown-logo';
@@ -0,0 +1 @@
1
+ export { default } from '@ember-eui/core/components/eui-markdown-editor-toolbar/icons/markdown-checkmark';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ember-eui/core",
3
- "version": "3.0.0",
3
+ "version": "4.0.0",
4
4
  "description": "Ember Components for Elastic UI",
5
5
  "keywords": [
6
6
  "ember-addon",
@@ -53,20 +53,19 @@
53
53
  "dependencies": {
54
54
  "@elastic/eui": "31.0.0",
55
55
  "@ember/render-modifiers": "^2.0.4",
56
- "@html-next/vertical-collection": "^2.1.0",
56
+ "@html-next/vertical-collection": "html-next/vertical-collection#v3.0.0-0",
57
57
  "@types/lodash-es": "^4.17.4",
58
58
  "chroma-js": "^2.1.0",
59
- "ember-auto-import": "^1.11.3",
59
+ "ember-auto-import": "^2.2.4",
60
60
  "ember-cached-decorator-polyfill": "^0.1.1",
61
- "ember-cli-babel": "^7.26.6",
62
- "ember-cli-htmlbars": "^5.7.1",
61
+ "ember-cli-babel": "^7.26.11",
62
+ "ember-cli-htmlbars": "^6.0.1",
63
63
  "ember-cli-typescript": "4.2.1",
64
64
  "ember-composable-helpers": "^4.4.1",
65
65
  "ember-element-helper": "^0.5.5",
66
66
  "ember-focus-trap": "^0.7.0",
67
- "ember-href-to": "^4.1.0",
68
67
  "ember-in-element-polyfill": "^1.0.0",
69
- "ember-keyboard": "^6.0.2",
68
+ "ember-keyboard": "^7.0.1",
70
69
  "ember-math-helpers": "^2.15.0",
71
70
  "ember-modifier": "^2.1.2",
72
71
  "ember-named-blocks-polyfill": "^0.2.3",
@@ -95,6 +94,7 @@
95
94
  "@ember/optional-features": "^2.0.0",
96
95
  "@ember/test-helpers": "^2.6.0",
97
96
  "@embroider/test-setup": "^1.0.0",
97
+ "@embroider/util": "^1.2.0",
98
98
  "@glimmer/component": "^1.0.4",
99
99
  "@glimmer/tracking": "^1.0.4",
100
100
  "@types/ember": "^3.16.0",
@@ -122,7 +122,7 @@
122
122
  "@types/rsvp": "^4.0.4",
123
123
  "babel-eslint": "^10.1.0",
124
124
  "broccoli-asset-rev": "^3.0.0",
125
- "ember-cli": "~3.28.0",
125
+ "ember-cli": "~4.1.1",
126
126
  "ember-cli-dependency-checker": "^3.2.0",
127
127
  "ember-cli-inject-live-reload": "^2.1.0",
128
128
  "ember-cli-netlify": "^0.4.1",
@@ -134,28 +134,28 @@
134
134
  "ember-export-application-global": "^2.0.1",
135
135
  "ember-get-config": "~1.0.2",
136
136
  "ember-load-initializers": "^2.1.2",
137
- "ember-maybe-import-regenerator": "^0.1.6",
138
- "ember-page-title": "^6.2.2",
139
- "ember-qunit": "^5.1.4",
140
- "ember-resolver": "^8.0.2",
141
- "ember-source": "~3.28.0",
137
+ "ember-page-title": "^7.0.0",
138
+ "ember-qunit": "^5.1.5",
139
+ "ember-resolver": "^8.0.3",
140
+ "ember-source": "~4.1.0",
142
141
  "ember-source-channel-url": "^3.0.0",
143
- "ember-template-lint": "^3.6.0",
144
- "ember-try": "^1.4.0",
142
+ "ember-template-lint": "^3.15.0",
143
+ "ember-try": "^2.0.0",
145
144
  "eslint": "^7.32.0",
146
145
  "eslint-config-prettier": "^8.3.0",
147
- "eslint-plugin-ember": "^10.5.4",
146
+ "eslint-plugin-ember": "^10.5.8",
148
147
  "eslint-plugin-node": "^11.1.0",
149
- "eslint-plugin-prettier": "^3.4.1",
150
- "eslint-plugin-qunit": "^6.2.0",
148
+ "eslint-plugin-prettier": "^4.0.0",
149
+ "eslint-plugin-qunit": "^7.2.0",
151
150
  "loader.js": "^4.7.0",
152
151
  "lodash-es": "^4.17.21",
153
152
  "mdast-util-to-hast": "^10.0.0",
154
153
  "npm-run-all": "^4.1.5",
155
- "prettier": "^2.3.2",
156
- "qunit": "^2.16.0",
157
- "qunit-dom": "^1.6.0",
158
- "typescript": "^4.5.5"
154
+ "prettier": "^2.5.1",
155
+ "qunit": "^2.17.2",
156
+ "qunit-dom": "^2.0.0",
157
+ "typescript": "^4.5.5",
158
+ "webpack": "^5.65.0"
159
159
  },
160
160
  "publishConfig": {
161
161
  "access": "public"
@@ -170,7 +170,7 @@
170
170
  "configPath": "tests/dummy/config"
171
171
  },
172
172
  "volta": {
173
- "node": "12.22.1"
173
+ "extends": "../../package.json"
174
174
  },
175
- "gitHead": "24ca3b05bb2ffb838ab452bb5b2a9794fd8a993f"
175
+ "gitHead": "7df0f767d3009cb7b110539c60260dd848fc2ac3"
176
176
  }
@@ -1 +0,0 @@
1
- export { default } from '@ember-eui/core/components/eui-text-field';
@@ -1,3 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
2
- <path d="M11.828 13H4.172A1.173 1.173 0 013 11.828V4.172C3 3.526 3.526 3 4.172 3h7.656C12.474 3 13 3.526 13 4.172v7.656c0 .646-.526 1.172-1.172 1.172zM4.172 3.781a.391.391 0 00-.39.39v7.657c0 .216.175.39.39.39h7.656a.39.39 0 00.39-.39V4.172a.391.391 0 00-.39-.39H4.172zm7.244 2.175l-.582-.521L7.22 9.469 5.125 7.476l-.539.566 2.68 2.548 4.15-4.634z" />
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="26" height="16" fill="none" viewBox="0 0 26 16">
2
- <path d="M1.25 1.875c0-.345.28-.625.625-.625h22.25c.345 0 .625.28.625.625v12.25c0 .345-.28.625-.625.625H1.875a.625.625 0 01-.625-.625V1.875zM1.875 0C.839 0 0 .84 0 1.875v12.25C0 15.161.84 16 1.875 16h22.25C25.16 16 26 15.16 26 14.125V1.875C26 .839 25.16 0 24.125 0H1.875zM3.75 3.75v8.5h2.5V7.375l2.5 3.125 2.5-3.125v4.875h2.5v-8.5h-2.5l-2.5 3.125-2.5-3.125h-2.5zm11.875 4.375l3.75 4.125 3.75-4.125h-2.5V3.75h-2.5v4.375h-2.5z" />
3
- </svg>