ember-attacher 3.3.0 → 4.0.0-beta.2

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 (41) hide show
  1. package/addon-main.js +2 -0
  2. package/dist/_app_/components/attach-popover.js +1 -0
  3. package/dist/_app_/components/attach-tooltip.js +1 -0
  4. package/dist/_app_/components/basic-attacher.js +1 -0
  5. package/dist/components/attach-popover.js +11 -0
  6. package/dist/components/attach-popover.js.map +1 -0
  7. package/dist/components/attach-tooltip.js +37 -0
  8. package/dist/components/attach-tooltip.js.map +1 -0
  9. package/{addon/components/attach-popover.js → dist/components/basic-attacher.js} +35 -18
  10. package/dist/components/basic-attacher.js.map +1 -0
  11. package/{addon → dist}/defaults.js +5 -1
  12. package/dist/defaults.js.map +1 -0
  13. package/{addon-test-support/is-visible.js → dist/test-support/index.js} +5 -1
  14. package/dist/test-support/index.js.map +1 -0
  15. package/package.json +39 -76
  16. package/.idea/codeStyles/Project.xml +0 -32
  17. package/.idea/codeStyles/codeStyleConfig.xml +0 -5
  18. package/.idea/ember-attacher.iml +0 -31
  19. package/.idea/inspectionProfiles/Project_Default.xml +0 -6
  20. package/.idea/material_theme_project_new.xml +0 -13
  21. package/.idea/modules.xml +0 -8
  22. package/.idea/vcs.xml +0 -6
  23. package/CHANGELOG.md +0 -729
  24. package/README.md +0 -321
  25. package/RELEASE.md +0 -65
  26. package/addon/-debug/helpers.js +0 -23
  27. package/addon/components/attach-tooltip.js +0 -38
  28. package/addon/styles/_mixins.scss +0 -107
  29. package/addon/styles/addon.sass +0 -5
  30. package/addon/styles/addon.scss +0 -5
  31. package/addon/styles/ember-attacher.scss +0 -137
  32. package/addon/styles/themes.scss +0 -16
  33. package/addon/styles/variables.scss +0 -3
  34. package/addon/templates/components/attach-popover.hbs +0 -29
  35. package/addon-test-support/index.js +0 -1
  36. package/app/components/attach-popover.js +0 -1
  37. package/app/components/attach-tooltip.js +0 -1
  38. package/app/templates/components/attach-popover.js +0 -1
  39. package/config/flexi.js +0 -37
  40. package/docs/upgrade-guide-2.0.md +0 -43
  41. package/index.js +0 -81
package/addon-main.js ADDED
@@ -0,0 +1,2 @@
1
+ const { addonV1Shim } = require('@embroider/addon-shim');
2
+ module.exports = addonV1Shim(__dirname);
@@ -0,0 +1 @@
1
+ export { default } from "ember-attacher/components/attach-popover";
@@ -0,0 +1 @@
1
+ export { default } from "ember-attacher/components/attach-tooltip";
@@ -0,0 +1 @@
1
+ export { default } from "ember-attacher/components/basic-attacher";
@@ -0,0 +1,11 @@
1
+
2
+ import Component from '@glimmer/component';
3
+
4
+ class AttachPopover extends Component {
5
+ get ariaRole() {
6
+ return this.args.ariaRole || 'dialog';
7
+ }
8
+ }
9
+
10
+ export { AttachPopover as default };
11
+ //# sourceMappingURL=attach-popover.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"attach-popover.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -0,0 +1,37 @@
1
+
2
+ import Component from '@glimmer/component';
3
+ import { action } from '@ember/object';
4
+ import DEFAULTS from '../defaults.js';
5
+ import { getOwner } from '@ember/application';
6
+
7
+ class AttachTooltip extends Component {
8
+ get ariaRole() {
9
+ return this.args.ariaRole || 'tooltip';
10
+ }
11
+
12
+ get additionalClass() {
13
+ const { tooltip, tooltipClass } = getOwner(this).resolveRegistration('config:environment').emberAttacher || {};
14
+
15
+ return tooltip?.tooltipClass ?? tooltipClass ?? DEFAULTS.tooltipClass;
16
+ }
17
+
18
+ @action
19
+ onInitializeAttacher(currentTarget, id) {
20
+ if (currentTarget?.getAttribute('aria-describedby') != id) {
21
+ const oldTarget = document.querySelector(`[aria-describedby="${id}"]`);
22
+
23
+ oldTarget?.removeAttribute('aria-describedby');
24
+ currentTarget?.setAttribute('aria-describedby', id);
25
+ }
26
+ }
27
+
28
+ @action
29
+ onWillDestroy(currentTarget) {
30
+ if (currentTarget) {
31
+ currentTarget.removeAttribute('aria-describedby');
32
+ }
33
+ }
34
+ }
35
+
36
+ export { AttachTooltip as default };
37
+ //# sourceMappingURL=attach-tooltip.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"attach-tooltip.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -1,20 +1,20 @@
1
+
1
2
  import { action } from '@ember/object';
2
3
  import Component from '@glimmer/component';
3
- import { cancel, debounce, later, next, run } from '@ember/runloop';
4
+ import { later, cancel, next, debounce, run } from '@ember/runloop';
4
5
  import { getOwner } from '@ember/application';
5
6
  import { guidFor } from '@ember/object/internals';
6
7
  import { htmlSafe, isHTMLSafe } from '@ember/template';
7
- import { stripInProduction } from 'ember-attacher/-debug/helpers';
8
- import { warn, assert } from '@ember/debug';
8
+ import { warn, assert, runInDebug } from '@ember/debug';
9
9
  import { isEmpty, typeOf } from '@ember/utils';
10
- import { autoUpdate, computePosition, arrow, flip, limitShift, shift } from '@floating-ui/dom';
10
+ import { flip, shift, limitShift, arrow, autoUpdate, computePosition } from '@floating-ui/dom';
11
11
  import { buildWaiter } from '@ember/test-waiters';
12
12
  import { tracked } from '@glimmer/tracking';
13
- import DEFAULTS from '../defaults';
13
+ import DEFAULTS from '../defaults.js';
14
14
 
15
- const animationTestWaiter = buildWaiter('attach-popover');
15
+ const animationTestWaiter = buildWaiter('basic-attacher');
16
16
 
17
- export default class AttachPopover extends Component {
17
+ class BasicAttacher extends Component {
18
18
  @tracked parentNotFound = true;
19
19
  @tracked parentElement = null;
20
20
  @tracked _isStartingAnimation = false;
@@ -24,7 +24,6 @@ export default class AttachPopover extends Component {
24
24
  @tracked _mustRender = false;
25
25
  @tracked _transitionDuration = 0;
26
26
  _floatingElement = null;
27
- configKey = 'popover';
28
27
 
29
28
  /**
30
29
  * ================== PUBLIC CONFIG OPTIONS ==================
@@ -117,6 +116,10 @@ export default class AttachPopover extends Component {
117
116
  return this.args.useCapture ?? this._config.useCapture ?? DEFAULTS.useCapture;
118
117
  }
119
118
 
119
+ get configKey() {
120
+ return this.args.configKey || 'popover';
121
+ }
122
+
120
123
  get isFillAnimation() {
121
124
  return this.animation === 'fill';
122
125
  }
@@ -125,6 +128,11 @@ export default class AttachPopover extends Component {
125
128
  return (this.renderInPlace || this._currentTarget) && (!this.lazyRender || this._mustRender);
126
129
  }
127
130
 
131
+ get shouldRenderFloatingElement() {
132
+ // Always render the floating element unless lazyRender is true and we haven't been triggered yet
133
+ return !this.lazyRender || this._mustRender;
134
+ }
135
+
128
136
  get id() {
129
137
  return this.args.id || `${guidFor(this)}-floating`;
130
138
  }
@@ -144,8 +152,9 @@ export default class AttachPopover extends Component {
144
152
  get _class() {
145
153
  const showOrHideClass = `ember-attacher-${this._isStartingAnimation ? 'show' : 'hide'}`;
146
154
  const arrowClass = `ember-attacher-${this.arrow ? 'with' : 'without'}-arrow`;
147
-
148
- return [`ember-attacher-${this.animation}`, this.class || '', showOrHideClass, arrowClass].filter(Boolean).join(' ');
155
+ const baseClass = this.class || '';
156
+ const additionalClass = this.args.additionalClass || '';
157
+ return [`ember-attacher-${this.animation}`, baseClass, additionalClass, showOrHideClass, arrowClass].filter(Boolean).join(' ');
149
158
  }
150
159
 
151
160
  get _style() {
@@ -200,7 +209,7 @@ export default class AttachPopover extends Component {
200
209
  }
201
210
 
202
211
  if (this.overflowPadding !== false && !middleware.find(name => name === 'shift')) {
203
- middleware.push(shift({ limiter: limitShift(), padding: this.overflowPadding }))
212
+ middleware.push(shift({ limiter: limitShift(), padding: this.overflowPadding }));
204
213
  }
205
214
 
206
215
  if (this.arrow && this._arrowElement && !middleware.find(name => name === 'arrow')) {
@@ -221,7 +230,7 @@ export default class AttachPopover extends Component {
221
230
  floatingElementContainer = maybeContainer;
222
231
  } else if (typeof maybeContainer === 'string') {
223
232
  const selector = maybeContainer;
224
- const possibleContainers = self.document.querySelectorAll(selector);
233
+ const possibleContainers = document.querySelectorAll(selector);
225
234
 
226
235
  assert(`floatingElementContainer selector "${selector}" found `
227
236
  + `${possibleContainers.length} possible containers when there should be exactly 1`, possibleContainers.length === 1);
@@ -233,9 +242,9 @@ export default class AttachPopover extends Component {
233
242
  }
234
243
 
235
244
  get _renderInPlace() {
236
- // self.document is undefined in Fastboot, so we have to render in
245
+ // document is undefined in Fastboot, so we have to render in
237
246
  // place for the floating element to show up at all.
238
- return self.document ? !!this.renderInPlace : true;
247
+ return typeof document !== 'undefined' ? !!this.renderInPlace : true;
239
248
  }
240
249
 
241
250
  _setIsVisibleAfterDelay(isVisible, delay) {
@@ -301,7 +310,7 @@ export default class AttachPopover extends Component {
301
310
 
302
311
  @action
303
312
  _ensureArgumentsAreValid() {
304
- stripInProduction(() => {
313
+ runInDebug(() => {
305
314
  if (this.arrow && this.isFillAnimation) {
306
315
  warn('Animation: \'fill\' is not compatible with arrow: true', { id: 70015 });
307
316
  }
@@ -315,7 +324,6 @@ export default class AttachPopover extends Component {
315
324
  });
316
325
  }
317
326
 
318
-
319
327
  constructor() {
320
328
  super(...arguments);
321
329
 
@@ -363,6 +371,9 @@ export default class AttachPopover extends Component {
363
371
  // call this._show() to make sure its position is updated for a potentially new target.
364
372
  this._show();
365
373
  }
374
+
375
+ // Call hook for subclasses to add their own initialization logic
376
+ this.args.onInitializeAttacher?.(this._currentTarget, this.id);
366
377
  }
367
378
 
368
379
  _addListenersForShowEvents() {
@@ -384,6 +395,9 @@ export default class AttachPopover extends Component {
384
395
  cancel(this._delayedVisibilityToggle);
385
396
 
386
397
  this._removeEventListeners();
398
+
399
+ // Call hook for cleanup
400
+ this.args.onWillDestroy?.(this._currentTarget, this.id);
387
401
  }
388
402
 
389
403
  _removeEventListeners() {
@@ -838,10 +852,13 @@ export default class AttachPopover extends Component {
838
852
 
839
853
  cancelAnimationFrame(this._animationTimeout);
840
854
 
841
- stripInProduction(() => {
855
+ runInDebug(() => {
842
856
  if (animationTestWaiter.items?.get(this._animationTimeout)) {
843
857
  animationTestWaiter.endAsync(this._animationTimeout);
844
858
  }
845
- })
859
+ });
846
860
  }
847
861
  }
862
+
863
+ export { BasicAttacher as default };
864
+ //# sourceMappingURL=basic-attacher.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"basic-attacher.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -1,4 +1,5 @@
1
- export default {
1
+
2
+ var DEFAULTS = {
2
3
  animation: 'fill',
3
4
  arrow: false,
4
5
  autoUpdate: false,
@@ -23,3 +24,6 @@ export default {
23
24
  useCapture: false,
24
25
  overflowPadding: 5
25
26
  };
27
+
28
+ export { DEFAULTS as default };
29
+ //# sourceMappingURL=defaults.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"defaults.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -1,4 +1,5 @@
1
- export function isVisible(selector, contextEl) {
1
+
2
+ function isVisible(selector, contextEl) {
2
3
  const attachment = typeof(selector) === 'string' ? getAttachment(selector, contextEl) : selector;
3
4
 
4
5
  return getComputedStyle(attachment).display !== 'none';
@@ -28,3 +29,6 @@ function getAttachment(selectorOrElement = '', contextEl) {
28
29
 
29
30
  return result;
30
31
  }
32
+
33
+ export { isVisible };
34
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,12 +1,22 @@
1
1
  {
2
2
  "name": "ember-attacher",
3
- "version": "3.3.0",
3
+ "version": "4.0.0-beta.2",
4
4
  "description": "Tooltips and popovers for Ember.js apps",
5
5
  "keywords": [
6
6
  "ember-addon",
7
7
  "tooltips",
8
8
  "popovers"
9
9
  ],
10
+ "exports": {
11
+ ".": "./dist/index.js",
12
+ "./*": "./dist/*",
13
+ "./test-support": "./dist/test-support/index.js",
14
+ "./addon-main.js": "./addon-main.js"
15
+ },
16
+ "files": [
17
+ "addon-main.js",
18
+ "dist"
19
+ ],
10
20
  "repository": "https://github.com/tylerturdenpants/ember-attacher",
11
21
  "license": "MIT",
12
22
  "author": {
@@ -18,68 +28,11 @@
18
28
  "doc": "doc",
19
29
  "test": "tests"
20
30
  },
21
- "scripts": {
22
- "build": "ember build",
23
- "deploy": "ember build && ember github-pages:commit --message \"Deploy gh-pages from commit $(git rev-parse HEAD)\" && git push origin gh-pages:gh-pages",
24
- "release": "release-it",
25
- "lint:js": "eslint .",
26
- "lint": "eslint .",
27
- "start": "ember serve",
28
- "test": "ember test",
29
- "test:all": "ember try:each"
30
- },
31
31
  "dependencies": {
32
32
  "@ember/test-waiters": "^3.1.0",
33
- "@floating-ui/dom": "^1.6.12",
34
- "babel-plugin-filter-imports": "^4.0.0",
35
- "broccoli-funnel": "~3.0.8",
36
- "ember-auto-import": "^2.7.2",
37
- "ember-cli-babel": "^8.2.0",
38
- "ember-cli-htmlbars": "^6.3.0",
39
- "ember-cli-sass": "^11.0.1",
40
- "ember-maybe-in-element": "^2.1.0",
41
- "sass": "^1.72.0"
42
- },
43
- "devDependencies": {
44
- "@babel/core": "^7.24.0",
45
- "@babel/eslint-parser": "^7.26.10",
46
- "@babel/helper-get-function-arity": "^7.16.7",
47
- "@babel/plugin-proposal-private-property-in-object": "^7.21.11",
48
- "@ember/optional-features": "^2.0.0",
49
- "@ember/render-modifiers": "^2.0.5",
50
- "@ember/string": "^3.1.1",
51
- "@ember/test-helpers": "~2.9.4",
52
- "@embroider/test-setup": "^3.0.0",
53
- "@glimmer/component": "^1.1.2",
54
- "@glimmer/tracking": "^1.1.2",
55
- "@html-next/flexi-default-styles": "^3.0.0-alpha.1",
56
- "@release-it-plugins/lerna-changelog": "^6.1.0",
57
- "babel-plugin-dynamic-import-node": "^2.3.3",
58
- "broccoli-asset-rev": "^3.0.0",
59
- "ember-cli": "~4.12.1",
60
- "ember-cli-dependency-checker": "~3.3.2",
61
- "ember-cli-github-pages": "^0.2.2",
62
- "ember-cli-inject-live-reload": "~2.1.0",
63
- "ember-cli-sri": "^2.1.1",
64
- "ember-cli-terser": "^4.0.2",
65
- "ember-load-initializers": "^2.1.2",
66
- "ember-qunit": "^6.2.0",
67
- "ember-resolver": "~11.0.1",
68
- "ember-source": "~4.12.3",
69
- "ember-source-channel-url": "^3.0.0",
70
- "ember-svg-jar": "^2.6.0",
71
- "ember-truth-helpers": "^4.0.3",
72
- "ember-try": "~3.0.0",
73
- "eslint": "~8.57.0",
74
- "eslint-plugin-decorator-position": "^5.0.2",
75
- "eslint-plugin-ember": "~11.11.1",
76
- "eslint-plugin-n": "^16.6.0",
77
- "flexi": "^3.0.0-alpha.1",
78
- "loader.js": "^4.7.0",
79
- "qunit": "~2.20.1",
80
- "qunit-dom": "~3.0.0",
81
- "release-it": "~15.11.0",
82
- "webpack": "~5.96.1"
33
+ "@embroider/addon-shim": "^1.10.0",
34
+ "@floating-ui/dom": "^1.7.2",
35
+ "ember-maybe-in-element": "^2.1.0"
83
36
  },
84
37
  "engines": {
85
38
  "node": "16.* || >= 18"
@@ -88,23 +41,33 @@
88
41
  "edition": "octane"
89
42
  },
90
43
  "ember-addon": {
91
- "configPath": "tests/dummy/config",
92
- "demoURL": "https://tylerturdenpants.github.io/ember-attacher/"
44
+ "main": "addon-main.js",
45
+ "type": "addon",
46
+ "version": 2,
47
+ "demoURL": "https://tylerturdenpants.github.io/ember-attacher/",
48
+ "app-js": {
49
+ "./components/attach-popover.js": "./dist/_app_/components/attach-popover.js",
50
+ "./components/attach-tooltip.js": "./dist/_app_/components/attach-tooltip.js",
51
+ "./components/basic-attacher.js": "./dist/_app_/components/basic-attacher.js"
52
+ }
93
53
  },
94
54
  "publishConfig": {
95
55
  "registry": "https://registry.npmjs.org"
96
56
  },
97
- "release-it": {
98
- "plugins": {
99
- "@release-it-plugins/lerna-changelog": {
100
- "infile": "CHANGELOG.md"
101
- }
102
- },
103
- "git": {
104
- "tagName": "v${version}"
105
- },
106
- "github": {
107
- "release": true
108
- }
57
+ "devDependencies": {
58
+ "@babel/core": "^7.28.0",
59
+ "@babel/plugin-proposal-decorators": "^7.28.0",
60
+ "@babel/plugin-transform-class-properties": "^7.27.1",
61
+ "@embroider/addon-dev": "^8.1.0",
62
+ "@release-it-plugins/lerna-changelog": "^6.1.0",
63
+ "@rollup/plugin-babel": "^6.0.4",
64
+ "release-it": "^17.0.0",
65
+ "release-it-pnpm": "^4.6.6",
66
+ "rollup": "^4.44.1"
67
+ },
68
+ "scripts": {
69
+ "build": "rollup --config rollup.config.mjs",
70
+ "start": "rollup --config rollup.config.mjs --watch",
71
+ "lint": "eslint ."
109
72
  }
110
- }
73
+ }
@@ -1,32 +0,0 @@
1
- <component name="ProjectCodeStyleConfiguration">
2
- <code_scheme name="Project" version="173">
3
- <option name="OTHER_INDENT_OPTIONS">
4
- <value>
5
- <option name="INDENT_SIZE" value="2" />
6
- <option name="TAB_SIZE" value="2" />
7
- </value>
8
- </option>
9
- <HTMLCodeStyleSettings>
10
- <option name="HTML_SPACE_INSIDE_EMPTY_TAG" value="true" />
11
- </HTMLCodeStyleSettings>
12
- <JSCodeStyleSettings version="0">
13
- <option name="USE_DOUBLE_QUOTES" value="false" />
14
- <option name="FORCE_QUOTE_STYlE" value="true" />
15
- <option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
16
- <option name="SPACES_WITHIN_IMPORTS" value="true" />
17
- </JSCodeStyleSettings>
18
- <TypeScriptCodeStyleSettings version="0">
19
- <option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
20
- <option name="SPACES_WITHIN_IMPORTS" value="true" />
21
- </TypeScriptCodeStyleSettings>
22
- <codeStyleSettings language="JavaScript">
23
- <option name="INDENT_CASE_FROM_SWITCH" value="false" />
24
- <option name="ALIGN_MULTILINE_PARAMETERS" value="false" />
25
- <option name="ALIGN_MULTILINE_FOR" value="false" />
26
- <indentOptions>
27
- <option name="INDENT_SIZE" value="2" />
28
- <option name="CONTINUATION_INDENT_SIZE" value="2" />
29
- </indentOptions>
30
- </codeStyleSettings>
31
- </code_scheme>
32
- </component>
@@ -1,5 +0,0 @@
1
- <component name="ProjectCodeStyleConfiguration">
2
- <state>
3
- <option name="USE_PER_PROJECT_SETTINGS" value="true" />
4
- </state>
5
- </component>
@@ -1,31 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="WEB_MODULE" version="4">
3
- <component name="ModuleRunConfigurationManager">
4
- <shared />
5
- </component>
6
- <component name="NewModuleRootManager">
7
- <content url="file://$MODULE_DIR$">
8
- <sourceFolder url="file://$MODULE_DIR$/addon/addon" isTestSource="false" />
9
- <sourceFolder url="file://$MODULE_DIR$/addon/app" isTestSource="false" />
10
- <sourceFolder url="file://$MODULE_DIR$/public" isTestSource="false" />
11
- <sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
12
- <sourceFolder url="file://$MODULE_DIR$/test-app/app" isTestSource="true" />
13
- <sourceFolder url="file://$MODULE_DIR$/test-app/app" isTestSource="true" />
14
- <sourceFolder url="file://$MODULE_DIR$/test-app/tests" isTestSource="true" />
15
- <sourceFolder url="file://$MODULE_DIR$/test-app/tests/acceptance" isTestSource="true" />
16
- <sourceFolder url="file://$MODULE_DIR$/test-app/tests/acceptance" isTestSource="true" />
17
- <sourceFolder url="file://$MODULE_DIR$/test-app/tests/integration" isTestSource="true" />
18
- <sourceFolder url="file://$MODULE_DIR$/test-app/tests/integration" isTestSource="true" />
19
- <sourceFolder url="file://$MODULE_DIR$/test-app/tests/unit" isTestSource="true" />
20
- <sourceFolder url="file://$MODULE_DIR$/test-app/tests/unit" isTestSource="true" />
21
- <excludeFolder url="file://$MODULE_DIR$/.bower_components.ember-try" />
22
- <excludeFolder url="file://$MODULE_DIR$/.node_modules.ember-try" />
23
- <excludeFolder url="file://$MODULE_DIR$/.tmp" />
24
- <excludeFolder url="file://$MODULE_DIR$/dist" />
25
- <excludeFolder url="file://$MODULE_DIR$/temp" />
26
- <excludeFolder url="file://$MODULE_DIR$/tmp" />
27
- </content>
28
- <orderEntry type="inheritedJdk" />
29
- <orderEntry type="sourceFolder" forTests="false" />
30
- </component>
31
- </module>
@@ -1,6 +0,0 @@
1
- <component name="InspectionProjectProfileManager">
2
- <profile version="1.0">
3
- <option name="myName" value="Project Default" />
4
- <inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
5
- </profile>
6
- </component>
@@ -1,13 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="MaterialThemeProjectNewConfig">
4
- <option name="metadata">
5
- <MTProjectMetadataState>
6
- <option name="migrated" value="true" />
7
- <option name="pristineConfig" value="false" />
8
- <option name="userId" value="5b08c17b:17c50dc6df3:-8000" />
9
- <option name="version" value="8.13.2" />
10
- </MTProjectMetadataState>
11
- </option>
12
- </component>
13
- </project>
package/.idea/modules.xml DELETED
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectModuleManager">
4
- <modules>
5
- <module fileurl="file://$PROJECT_DIR$/.idea/ember-attacher.iml" filepath="$PROJECT_DIR$/.idea/ember-attacher.iml" />
6
- </modules>
7
- </component>
8
- </project>
package/.idea/vcs.xml DELETED
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="" vcs="Git" />
5
- </component>
6
- </project>