ember-attacher 3.2.0 → 4.0.0-beta.1
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/dist/_app_/components/attach-popover.js +1 -0
- package/dist/_app_/components/attach-tooltip.js +1 -0
- package/dist/_app_/components/basic-attacher.js +1 -0
- package/dist/components/attach-popover.js +11 -0
- package/dist/components/attach-popover.js.map +1 -0
- package/dist/components/attach-tooltip.js +37 -0
- package/dist/components/attach-tooltip.js.map +1 -0
- package/{addon/components/attach-popover.js → dist/components/basic-attacher.js} +35 -18
- package/dist/components/basic-attacher.js.map +1 -0
- package/{addon → dist}/defaults.js +5 -1
- package/dist/defaults.js.map +1 -0
- package/{addon-test-support/is-visible.js → dist/test-support/index.js} +5 -1
- package/dist/test-support/index.js.map +1 -0
- package/package.json +39 -76
- package/.idea/ember-attacher.iml +0 -29
- package/.idea/inspectionProfiles/Project_Default.xml +0 -6
- package/.idea/material_theme_project_new.xml +0 -13
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
- package/CHANGELOG.md +0 -727
- package/README.md +0 -321
- package/RELEASE.md +0 -65
- package/addon/-debug/helpers.js +0 -23
- package/addon/components/attach-tooltip.js +0 -38
- package/addon/styles/_mixins.scss +0 -107
- package/addon/styles/addon.sass +0 -5
- package/addon/styles/addon.scss +0 -5
- package/addon/styles/ember-attacher.scss +0 -137
- package/addon/styles/themes.scss +0 -16
- package/addon/styles/variables.scss +0 -3
- package/addon/templates/components/attach-popover.hbs +0 -29
- package/addon-test-support/index.js +0 -1
- package/app/components/attach-popover.js +0 -1
- package/app/components/attach-tooltip.js +0 -1
- package/app/templates/components/attach-popover.js +0 -1
- package/config/flexi.js +0 -37
- package/docs/upgrade-guide-2.0.md +0 -43
- package/index.js +0 -81
|
@@ -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 @@
|
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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('
|
|
15
|
+
const animationTestWaiter = buildWaiter('basic-attacher');
|
|
16
16
|
|
|
17
|
-
|
|
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
|
-
|
|
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 =
|
|
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
|
-
//
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
+
"version": "4.0.0-beta.1",
|
|
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
|
-
"@floating-ui/dom": "^1.6.12",
|
|
33
|
-
"babel-plugin-filter-imports": "^4.0.0",
|
|
34
|
-
"broccoli-funnel": "~3.0.8",
|
|
35
|
-
"ember-auto-import": "^2.7.2",
|
|
36
|
-
"ember-cli-babel": "^8.2.0",
|
|
37
|
-
"ember-cli-htmlbars": "^6.3.0",
|
|
38
|
-
"ember-cli-sass": "^11.0.1",
|
|
39
|
-
"ember-maybe-in-element": "^2.1.0",
|
|
40
|
-
"sass": "^1.72.0"
|
|
41
|
-
},
|
|
42
|
-
"devDependencies": {
|
|
43
|
-
"@babel/core": "^7.23.7",
|
|
44
|
-
"@babel/eslint-parser": "^7.23.10",
|
|
45
|
-
"@babel/helper-get-function-arity": "^7.16.7",
|
|
46
|
-
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
|
47
|
-
"@ember/optional-features": "^2.0.0",
|
|
48
|
-
"@ember/render-modifiers": "^2.0.5",
|
|
49
|
-
"@ember/string": "^3.1.1",
|
|
50
|
-
"@ember/test-helpers": "~2.9.4",
|
|
51
32
|
"@ember/test-waiters": "^3.1.0",
|
|
52
|
-
"@embroider/
|
|
53
|
-
"@
|
|
54
|
-
"
|
|
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
|
-
"
|
|
92
|
-
"
|
|
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
|
-
"
|
|
98
|
-
"
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
"
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
"
|
|
107
|
-
|
|
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
|
+
}
|
package/.idea/ember-attacher.iml
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="WEB_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager">
|
|
4
|
-
<content url="file://$MODULE_DIR$">
|
|
5
|
-
<sourceFolder url="file://$MODULE_DIR$/addon" isTestSource="false" />
|
|
6
|
-
<sourceFolder url="file://$MODULE_DIR$/app" isTestSource="false" />
|
|
7
|
-
<sourceFolder url="file://$MODULE_DIR$/public" isTestSource="false" />
|
|
8
|
-
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
|
9
|
-
<sourceFolder url="file://$MODULE_DIR$/test-app" isTestSource="true" />
|
|
10
|
-
<sourceFolder url="file://$MODULE_DIR$/test-app/app" isTestSource="true" />
|
|
11
|
-
<sourceFolder url="file://$MODULE_DIR$/test-app/tests/acceptance" isTestSource="true" />
|
|
12
|
-
<sourceFolder url="file://$MODULE_DIR$/test-app/tests/integration" isTestSource="true" />
|
|
13
|
-
<sourceFolder url="file://$MODULE_DIR$/test-app/tests/unit" isTestSource="true" />
|
|
14
|
-
<sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="true" />
|
|
15
|
-
<sourceFolder url="file://$MODULE_DIR$/tests/acceptance" isTestSource="true" />
|
|
16
|
-
<sourceFolder url="file://$MODULE_DIR$/tests/dummy/app" isTestSource="true" />
|
|
17
|
-
<sourceFolder url="file://$MODULE_DIR$/tests/integration" isTestSource="true" />
|
|
18
|
-
<sourceFolder url="file://$MODULE_DIR$/tests/unit" isTestSource="true" />
|
|
19
|
-
<excludeFolder url="file://$MODULE_DIR$/.bower_components.ember-try" />
|
|
20
|
-
<excludeFolder url="file://$MODULE_DIR$/.node_modules.ember-try" />
|
|
21
|
-
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
|
|
22
|
-
<excludeFolder url="file://$MODULE_DIR$/dist" />
|
|
23
|
-
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
|
24
|
-
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
|
25
|
-
</content>
|
|
26
|
-
<orderEntry type="inheritedJdk" />
|
|
27
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
28
|
-
</component>
|
|
29
|
-
</module>
|
|
@@ -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>
|