ember-nav-stack 6.1.2 → 7.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/README.md +165 -21
- package/addon-main.cjs +4 -0
- package/dist/_app_/components/nav-stack-inner-wrapper.js +1 -0
- package/dist/_app_/components/nav-stack.js +1 -0
- package/dist/_app_/components/to-nav-stack.js +1 -0
- package/dist/_app_/helpers/nav-layer-indices.js +1 -0
- package/dist/_app_/modifiers/back-swipe.js +1 -0
- package/dist/_app_/services/gesture.js +1 -0
- package/dist/_app_/services/nav-stacks.js +1 -0
- package/dist/_app_/templates/stackable.js +1 -0
- package/dist/back-swipe-gesture.js +261 -0
- package/dist/back-swipe-gesture.js.map +1 -0
- package/dist/components/nav-stack-inner-wrapper.js +10 -0
- package/dist/components/nav-stack-inner-wrapper.js.map +1 -0
- package/dist/components/nav-stack.js +700 -0
- package/dist/components/nav-stack.js.map +1 -0
- package/dist/components/to-nav-stack.js +22 -0
- package/dist/components/to-nav-stack.js.map +1 -0
- package/dist/helpers/nav-layer-indices.js +21 -0
- package/dist/helpers/nav-layer-indices.js.map +1 -0
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -0
- package/dist/modifiers/back-swipe.js +40 -0
- package/dist/modifiers/back-swipe.js.map +1 -0
- package/dist/routes/stackable-route.js +99 -0
- package/dist/routes/stackable-route.js.map +1 -0
- package/{addon → dist}/services/gesture.js +7 -9
- package/dist/services/gesture.js.map +1 -0
- package/dist/services/nav-stacks.js +137 -0
- package/dist/services/nav-stacks.js.map +1 -0
- package/dist/styles/nav-stack.css +399 -0
- package/dist/templates/stackable.js +8 -0
- package/dist/templates/stackable.js.map +1 -0
- package/{addon-test-support → dist/test-support}/in-viewport.js +7 -10
- package/dist/test-support/in-viewport.js.map +1 -0
- package/dist/test-support/index.js +2 -0
- package/dist/test-support/index.js.map +1 -0
- package/{addon → dist}/utils/animation.js +17 -40
- package/dist/utils/animation.js.map +1 -0
- package/{addon → dist}/utils/back-swipe-recognizer.js +29 -49
- package/dist/utils/back-swipe-recognizer.js.map +1 -0
- package/dist/utils/clone-store.js +88 -0
- package/dist/utils/clone-store.js.map +1 -0
- package/dist/utils/component.js +121 -0
- package/dist/utils/component.js.map +1 -0
- package/dist/utils/header-style.js +46 -0
- package/dist/utils/header-style.js.map +1 -0
- package/dist/utils/transition-decision.js +71 -0
- package/dist/utils/transition-decision.js.map +1 -0
- package/dist/utils/waiter-state.js +130 -0
- package/dist/utils/waiter-state.js.map +1 -0
- package/package.json +79 -91
- package/.vscode/settings.json +0 -2
- package/CHANGELOG.md +0 -208
- package/MODULE_REPORT.md +0 -27
- package/RELEASE.md +0 -54
- package/addon/components/nav-stack/component.js +0 -690
- package/addon/components/nav-stack/template.hbs +0 -37
- package/addon/components/to-nav-stack.js +0 -32
- package/addon/helpers/nav-layer-indices.js +0 -29
- package/addon/routes/stackable-route.js +0 -61
- package/addon/services/nav-stacks.js +0 -157
- package/addon/utils/component.js +0 -40
- package/app/components/nav-stack/component.js +0 -1
- package/app/components/nav-stack/template.js +0 -1
- package/app/components/to-nav-stack.js +0 -1
- package/app/helpers/nav-layer-indices.js +0 -1
- package/app/services/gesture.js +0 -1
- package/app/services/nav-stacks.js +0 -1
- package/app/styles/nav-stack.scss +0 -117
- package/app/templates/stackable.hbs +0 -8
- package/app/utils/animation.js +0 -1
- package/config/deploy.js +0 -29
- package/config/environment.js +0 -5
- package/config/release.js +0 -21
- package/docs/ember-nav-stack-waiters-plan.md +0 -125
- package/index.js +0 -15
- package/tsconfig.json +0 -6
- package/vendor/wobble-shim.js +0 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-nav-stack",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "7.1.0",
|
|
4
|
+
"description": "An Ember addon providing iOS-style navigation stacks with swipe-back gesture support.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
7
7
|
],
|
|
@@ -11,115 +11,103 @@
|
|
|
11
11
|
},
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"author": "",
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
14
|
+
"exports": {
|
|
15
|
+
".": "./dist/index.js",
|
|
16
|
+
"./*": "./dist/*.js",
|
|
17
|
+
"./test-support": "./dist/test-support/index.js",
|
|
18
|
+
"./test-support/*": "./dist/test-support/*.js",
|
|
19
|
+
"./styles/*": "./dist/styles/*",
|
|
20
|
+
"./addon-main.js": "./addon-main.cjs"
|
|
17
21
|
},
|
|
22
|
+
"typesVersions": {
|
|
23
|
+
"*": {
|
|
24
|
+
"test-support": [
|
|
25
|
+
"./declarations/test-support/index.d.ts"
|
|
26
|
+
],
|
|
27
|
+
"test-support/*": [
|
|
28
|
+
"./declarations/test-support/*.d.ts"
|
|
29
|
+
]
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"addon-main.cjs",
|
|
34
|
+
"declarations",
|
|
35
|
+
"dist"
|
|
36
|
+
],
|
|
18
37
|
"scripts": {
|
|
19
|
-
"build": "
|
|
20
|
-
"
|
|
21
|
-
"lint
|
|
22
|
-
"lint:
|
|
23
|
-
"lint:
|
|
38
|
+
"build": "rollup --config",
|
|
39
|
+
"format": "prettier . --cache --write",
|
|
40
|
+
"lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
|
|
41
|
+
"lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" --prefixColors auto && pnpm run format",
|
|
42
|
+
"lint:format": "prettier . --cache --check",
|
|
43
|
+
"lint:hbs": "ember-template-lint . --no-error-on-unmatched-pattern",
|
|
44
|
+
"lint:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern",
|
|
24
45
|
"lint:js": "eslint . --cache",
|
|
25
|
-
"release": "release-it",
|
|
26
46
|
"lint:js:fix": "eslint . --fix",
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"test
|
|
30
|
-
"test:ember-compatibility": "ember try:each"
|
|
47
|
+
"prepack": "rollup --config",
|
|
48
|
+
"start": "rollup --config --watch",
|
|
49
|
+
"test": "echo 'A v2 addon does not have tests, run tests in test-app'"
|
|
31
50
|
},
|
|
32
51
|
"dependencies": {
|
|
33
|
-
"@
|
|
52
|
+
"@embroider/addon-shim": "^1.8.9",
|
|
53
|
+
"@embroider/macros": "^1.16.0",
|
|
34
54
|
"@ember/render-modifiers": "^2.1.0",
|
|
35
|
-
"ember-
|
|
36
|
-
"ember-cli-babel": "^7.26.11",
|
|
37
|
-
"ember-cli-htmlbars": "^6.3.0",
|
|
38
|
-
"ember-decorators": "6.1.1",
|
|
55
|
+
"@ember/test-waiters": "^3.1.0",
|
|
39
56
|
"ember-math-helpers": "^3.0.0",
|
|
57
|
+
"ember-modifier": "^4.2.0",
|
|
40
58
|
"ember-truth-helpers": "^4.0.3",
|
|
59
|
+
"decorator-transforms": "^2.2.2",
|
|
41
60
|
"hammerjs": "^2.0.8",
|
|
42
61
|
"macro-decorators": "^0.1.2",
|
|
43
|
-
"webpack": "5",
|
|
44
62
|
"wobble": "^1.5.1"
|
|
45
63
|
},
|
|
46
|
-
"
|
|
47
|
-
"@ember/
|
|
48
|
-
"
|
|
49
|
-
"@ember/test-waiters": "^3.0.2",
|
|
50
|
-
"@embroider/test-setup": "^0.48.1",
|
|
51
|
-
"@glimmer/component": "^1.1.2",
|
|
52
|
-
"@glimmer/tracking": "^1.1.2",
|
|
53
|
-
"babel-eslint": "^10.1.0",
|
|
54
|
-
"broccoli-asset-rev": "^3.0.0",
|
|
55
|
-
"ember-cli": "~3.28.6",
|
|
56
|
-
"ember-cli-dependency-checker": "^3.3.2",
|
|
57
|
-
"ember-cli-deploy": "^2.0.0",
|
|
58
|
-
"ember-cli-deploy-build": "^3.0.0",
|
|
59
|
-
"ember-cli-deploy-git": "^1.3.4",
|
|
60
|
-
"ember-cli-deprecation-workflow": "^2.1.0",
|
|
61
|
-
"ember-cli-inject-live-reload": "^2.1.0",
|
|
62
|
-
"ember-cli-sass": "^11.0.1",
|
|
63
|
-
"ember-cli-sri": "^2.1.1",
|
|
64
|
-
"ember-cli-terser": "^4.0.2",
|
|
65
|
-
"ember-disable-prototype-extensions": "^1.1.3",
|
|
66
|
-
"ember-export-application-global": "^2.0.1",
|
|
67
|
-
"ember-load-initializers": "^2.1.2",
|
|
68
|
-
"ember-maybe-import-regenerator": "^1.0.0",
|
|
69
|
-
"ember-page-title": "^8.0.0",
|
|
70
|
-
"ember-qunit": "^5.1.5",
|
|
71
|
-
"ember-resolver": "^11.0.1",
|
|
72
|
-
"ember-set-helper": "^2.0.1",
|
|
73
|
-
"ember-simulant-test-helpers": "^0.3.2",
|
|
74
|
-
"ember-source": "~3.28.8",
|
|
75
|
-
"ember-source-channel-url": "^3.0.0",
|
|
76
|
-
"ember-template-lint": "^5.13.0",
|
|
77
|
-
"ember-try": "^3.0.0",
|
|
78
|
-
"eslint": "^7.32.0",
|
|
79
|
-
"eslint-config-prettier": "^9.0.0",
|
|
80
|
-
"eslint-plugin-ember": "^10.5.8",
|
|
81
|
-
"eslint-plugin-node": "^11.1.0",
|
|
82
|
-
"eslint-plugin-prettier": "^5.0.0",
|
|
83
|
-
"eslint-plugin-qunit": "^6.2.0",
|
|
84
|
-
"loader.js": "^4.7.0",
|
|
85
|
-
"npm-run-all": "^4.1.5",
|
|
86
|
-
"prettier": "^3.0.2",
|
|
87
|
-
"qunit": "^2.19.4",
|
|
88
|
-
"qunit-dom": "^2.0.0",
|
|
89
|
-
"release-it": "^13.7.2",
|
|
90
|
-
"release-it-lerna-changelog": "^2.4.0",
|
|
91
|
-
"sass": "^1.66.1"
|
|
64
|
+
"peerDependencies": {
|
|
65
|
+
"@ember/test-helpers": ">= 2.6.0",
|
|
66
|
+
"ember-source": ">= 4.12.0"
|
|
92
67
|
},
|
|
93
|
-
"
|
|
94
|
-
"
|
|
68
|
+
"peerDependenciesMeta": {
|
|
69
|
+
"@ember/test-helpers": {
|
|
70
|
+
"optional": true
|
|
71
|
+
}
|
|
95
72
|
},
|
|
96
|
-
"
|
|
97
|
-
"
|
|
73
|
+
"devDependencies": {
|
|
74
|
+
"@babel/core": "^7.25.2",
|
|
75
|
+
"@babel/eslint-parser": "^7.25.1",
|
|
76
|
+
"@babel/runtime": "^7.25.6",
|
|
77
|
+
"@embroider/addon-dev": "^7.1.0",
|
|
78
|
+
"@eslint/js": "^9.17.0",
|
|
79
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
80
|
+
"babel-plugin-ember-template-compilation": "^2.2.5",
|
|
81
|
+
"concurrently": "^9.0.1",
|
|
82
|
+
"ember-source": "~5.12.0",
|
|
83
|
+
"ember-template-lint": "^6.0.0",
|
|
84
|
+
"eslint": "^9.17.0",
|
|
85
|
+
"eslint-config-prettier": "^9.1.0",
|
|
86
|
+
"eslint-plugin-ember": "^12.3.3",
|
|
87
|
+
"eslint-plugin-import": "^2.31.0",
|
|
88
|
+
"eslint-plugin-n": "^17.15.1",
|
|
89
|
+
"globals": "^15.14.0",
|
|
90
|
+
"prettier": "^3.4.2",
|
|
91
|
+
"prettier-plugin-ember-template-tag": "^2.0.4",
|
|
92
|
+
"rollup": "^4.22.5",
|
|
93
|
+
"rollup-plugin-copy": "^3.5.0"
|
|
98
94
|
},
|
|
99
95
|
"ember": {
|
|
100
96
|
"edition": "octane"
|
|
101
97
|
},
|
|
102
98
|
"ember-addon": {
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
"
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
"
|
|
115
|
-
},
|
|
116
|
-
"github": {
|
|
117
|
-
"release": true,
|
|
118
|
-
"tokenRef": "GITHUB_AUTH"
|
|
99
|
+
"version": 2,
|
|
100
|
+
"type": "addon",
|
|
101
|
+
"main": "addon-main.cjs",
|
|
102
|
+
"app-js": {
|
|
103
|
+
"./components/nav-stack-inner-wrapper.js": "./dist/_app_/components/nav-stack-inner-wrapper.js",
|
|
104
|
+
"./components/nav-stack.js": "./dist/_app_/components/nav-stack.js",
|
|
105
|
+
"./components/to-nav-stack.js": "./dist/_app_/components/to-nav-stack.js",
|
|
106
|
+
"./helpers/nav-layer-indices.js": "./dist/_app_/helpers/nav-layer-indices.js",
|
|
107
|
+
"./modifiers/back-swipe.js": "./dist/_app_/modifiers/back-swipe.js",
|
|
108
|
+
"./services/gesture.js": "./dist/_app_/services/gesture.js",
|
|
109
|
+
"./services/nav-stacks.js": "./dist/_app_/services/nav-stacks.js",
|
|
110
|
+
"./templates/stackable.js": "./dist/_app_/templates/stackable.js"
|
|
119
111
|
}
|
|
120
|
-
},
|
|
121
|
-
"volta": {
|
|
122
|
-
"node": "16.20.2",
|
|
123
|
-
"yarn": "1.22.10"
|
|
124
112
|
}
|
|
125
113
|
}
|
package/.vscode/settings.json
DELETED
package/CHANGELOG.md
DELETED
|
@@ -1,208 +0,0 @@
|
|
|
1
|
-
## v6.1.2 (2026-05-11)
|
|
2
|
-
|
|
3
|
-
#### :bug: Bug Fix
|
|
4
|
-
* [#78](https://github.com/yapplabs/ember-nav-stack/pull/78) Fix back button disappearing after completed back-swipe ([@lukemelia](https://github.com/lukemelia))
|
|
5
|
-
|
|
6
|
-
#### Committers: 1
|
|
7
|
-
- Luke Melia ([@lukemelia](https://github.com/lukemelia))
|
|
8
|
-
|
|
9
|
-
## v6.1.1 (2025-12-02)
|
|
10
|
-
|
|
11
|
-
## v6.1.0 (2025-10-30)
|
|
12
|
-
|
|
13
|
-
## v6.0.3 (2024-03-01)
|
|
14
|
-
|
|
15
|
-
## v6.0.2 (2023-12-15)
|
|
16
|
-
|
|
17
|
-
## v6.0.1 (2023-12-15)
|
|
18
|
-
|
|
19
|
-
#### :bug: Bug Fix
|
|
20
|
-
* [#74](https://github.com/yapplabs/ember-nav-stack/pull/74) Add some more checks to make sure element is not destroyed before accessing it ([@lukemelia](https://github.com/lukemelia))
|
|
21
|
-
* [#73](https://github.com/yapplabs/ember-nav-stack/pull/73) Avoid trying to access this.element when component has been torn down ([@lukemelia](https://github.com/lukemelia))
|
|
22
|
-
|
|
23
|
-
#### Committers: 1
|
|
24
|
-
- Luke Melia ([@lukemelia](https://github.com/lukemelia))
|
|
25
|
-
|
|
26
|
-
## v6.0.0 (2023-12-03)
|
|
27
|
-
|
|
28
|
-
#### :boom: Breaking Change
|
|
29
|
-
* [#71](https://github.com/yapplabs/ember-nav-stack/pull/71) Update to ember 3.28 and address deprecations ([@lukemelia](https://github.com/lukemelia))
|
|
30
|
-
|
|
31
|
-
#### :house: Internal
|
|
32
|
-
* [#71](https://github.com/yapplabs/ember-nav-stack/pull/71) Update to ember 3.28 and address deprecations ([@lukemelia](https://github.com/lukemelia))
|
|
33
|
-
|
|
34
|
-
#### Committers: 1
|
|
35
|
-
- Luke Melia ([@lukemelia](https://github.com/lukemelia))
|
|
36
|
-
|
|
37
|
-
## v5.0.1 (2023-11-30)
|
|
38
|
-
|
|
39
|
-
## v5.0.0 (2023-09-19)
|
|
40
|
-
|
|
41
|
-
#### :rocket: Enhancement
|
|
42
|
-
* [#70](https://github.com/yapplabs/ember-nav-stack/pull/70) Update to ember 3.24 ([@lukemelia](https://github.com/lukemelia))
|
|
43
|
-
|
|
44
|
-
#### Committers: 1
|
|
45
|
-
- Luke Melia ([@lukemelia](https://github.com/lukemelia))
|
|
46
|
-
|
|
47
|
-
## v4.3.3 (2021-02-08)
|
|
48
|
-
|
|
49
|
-
## v4.3.2 (2021-02-05)
|
|
50
|
-
|
|
51
|
-
## v4.3.1 (2020-10-21)
|
|
52
|
-
|
|
53
|
-
## v4.3.0 (2020-06-16)
|
|
54
|
-
|
|
55
|
-
#### :rocket: Enhancement
|
|
56
|
-
* [#45](https://github.com/yapplabs/ember-nav-stack/pull/45) Refactor <NavStack> to add an extension point for the logic of identifying the current root component ([@lukemelia](https://github.com/lukemelia))
|
|
57
|
-
|
|
58
|
-
#### :bug: Bug Fix
|
|
59
|
-
* [#44](https://github.com/yapplabs/ember-nav-stack/pull/44) Ensure that the back action fired after a back gesture animation completes runs within a run loop ([@lukemelia](https://github.com/lukemelia))
|
|
60
|
-
|
|
61
|
-
#### :house: Internal
|
|
62
|
-
* [#43](https://github.com/yapplabs/ember-nav-stack/pull/43) Bump websocket-extensions from 0.1.3 to 0.1.4 ([@dependabot[bot]](https://github.com/apps/dependabot))
|
|
63
|
-
* [#46](https://github.com/yapplabs/ember-nav-stack/pull/46) Improve hammer handling in <VerticalPanDetectorPane> in dummy app ([@lukemelia](https://github.com/lukemelia))
|
|
64
|
-
|
|
65
|
-
#### Committers: 1
|
|
66
|
-
- Luke Melia ([@lukemelia](https://github.com/lukemelia))
|
|
67
|
-
|
|
68
|
-
## v4.1.0 (2020-05-18)
|
|
69
|
-
|
|
70
|
-
#### :rocket: Enhancement
|
|
71
|
-
* [#40](https://github.com/yapplabs/ember-nav-stack/pull/40) No animation when transitioning to a page deep under another root component ([@lukemelia](https://github.com/lukemelia))
|
|
72
|
-
|
|
73
|
-
#### :house: Internal
|
|
74
|
-
* [#37](https://github.com/yapplabs/ember-nav-stack/pull/37) Bump acorn from 5.7.3 to 5.7.4 ([@dependabot[bot]](https://github.com/apps/dependabot))
|
|
75
|
-
* [#41](https://github.com/yapplabs/ember-nav-stack/pull/41) Bump jquery from 3.4.1 to 3.5.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
|
|
76
|
-
* [#42](https://github.com/yapplabs/ember-nav-stack/pull/42) Use release-it instead of ember-cli-release-tag ([@lukemelia](https://github.com/lukemelia))
|
|
77
|
-
|
|
78
|
-
#### Committers: 1
|
|
79
|
-
- Luke Melia ([@lukemelia](https://github.com/lukemelia))
|
|
80
|
-
|
|
81
|
-
# Change Log
|
|
82
|
-
|
|
83
|
-
## [2.0.9](https://github.com/yapplabs/ember-nav-stack/tree/2.0.9) (2019-03-26)
|
|
84
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v2.0.8...2.0.9)
|
|
85
|
-
|
|
86
|
-
**Merged pull requests:**
|
|
87
|
-
|
|
88
|
-
- Make cloned element cleanup more resilient [\#18](https://github.com/yapplabs/ember-nav-stack/pull/18) ([lukemelia](https://github.com/lukemelia))
|
|
89
|
-
|
|
90
|
-
## [v2.0.8](https://github.com/yapplabs/ember-nav-stack/tree/v2.0.8) (2019-01-11)
|
|
91
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v2.0.7...v2.0.8)
|
|
92
|
-
|
|
93
|
-
**Merged pull requests:**
|
|
94
|
-
|
|
95
|
-
- Android 4 compatibility [\#17](https://github.com/yapplabs/ember-nav-stack/pull/17) ([lukemelia](https://github.com/lukemelia))
|
|
96
|
-
|
|
97
|
-
## [v2.0.7](https://github.com/yapplabs/ember-nav-stack/tree/v2.0.7) (2018-12-14)
|
|
98
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v2.0.6...v2.0.7)
|
|
99
|
-
|
|
100
|
-
**Merged pull requests:**
|
|
101
|
-
|
|
102
|
-
- Make preferRecognizer helpers search the entire parent hierarchy and … [\#16](https://github.com/yapplabs/ember-nav-stack/pull/16) ([lukemelia](https://github.com/lukemelia))
|
|
103
|
-
|
|
104
|
-
## [v2.0.6](https://github.com/yapplabs/ember-nav-stack/tree/v2.0.6) (2018-12-10)
|
|
105
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v2.0.5...v2.0.6)
|
|
106
|
-
|
|
107
|
-
**Merged pull requests:**
|
|
108
|
-
|
|
109
|
-
- Fix edge case when no post-pan spring physics are needed because pan leaves element in exactly the right spot. [\#15](https://github.com/yapplabs/ember-nav-stack/pull/15) ([lukemelia](https://github.com/lukemelia))
|
|
110
|
-
|
|
111
|
-
## [v2.0.5](https://github.com/yapplabs/ember-nav-stack/tree/v2.0.5) (2018-12-08)
|
|
112
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v2.0.4...v2.0.5)
|
|
113
|
-
|
|
114
|
-
## [v2.0.4](https://github.com/yapplabs/ember-nav-stack/tree/v2.0.4) (2018-12-05)
|
|
115
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v2.0.3...v2.0.4)
|
|
116
|
-
|
|
117
|
-
## [v2.0.3](https://github.com/yapplabs/ember-nav-stack/tree/v2.0.3) (2018-12-05)
|
|
118
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v2.0.2...v2.0.3)
|
|
119
|
-
|
|
120
|
-
## [v2.0.2](https://github.com/yapplabs/ember-nav-stack/tree/v2.0.2) (2018-12-04)
|
|
121
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v2.0.1...v2.0.2)
|
|
122
|
-
|
|
123
|
-
**Merged pull requests:**
|
|
124
|
-
|
|
125
|
-
- Don't allow double swipes [\#14](https://github.com/yapplabs/ember-nav-stack/pull/14) ([lukemelia](https://github.com/lukemelia))
|
|
126
|
-
|
|
127
|
-
## [v2.0.1](https://github.com/yapplabs/ember-nav-stack/tree/v2.0.1) (2018-11-30)
|
|
128
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v2.0.0...v2.0.1)
|
|
129
|
-
|
|
130
|
-
**Merged pull requests:**
|
|
131
|
-
|
|
132
|
-
- Test coverage [\#13](https://github.com/yapplabs/ember-nav-stack/pull/13) ([lukemelia](https://github.com/lukemelia))
|
|
133
|
-
|
|
134
|
-
## [v2.0.0](https://github.com/yapplabs/ember-nav-stack/tree/v2.0.0) (2018-11-28)
|
|
135
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v1.0.0...v2.0.0)
|
|
136
|
-
|
|
137
|
-
**Merged pull requests:**
|
|
138
|
-
|
|
139
|
-
- Edge cases [\#12](https://github.com/yapplabs/ember-nav-stack/pull/12) ([lukemelia](https://github.com/lukemelia))
|
|
140
|
-
|
|
141
|
-
## [v1.0.0](https://github.com/yapplabs/ember-nav-stack/tree/v1.0.0) (2018-11-15)
|
|
142
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v0.2.11...v1.0.0)
|
|
143
|
-
|
|
144
|
-
**Merged pull requests:**
|
|
145
|
-
|
|
146
|
-
- Add swipe to go back interaction [\#11](https://github.com/yapplabs/ember-nav-stack/pull/11) ([lukemelia](https://github.com/lukemelia))
|
|
147
|
-
- Upgrade ember and friends [\#10](https://github.com/yapplabs/ember-nav-stack/pull/10) ([lukemelia](https://github.com/lukemelia))
|
|
148
|
-
- Add repository info to package.json [\#9](https://github.com/yapplabs/ember-nav-stack/pull/9) ([HaleyWardo](https://github.com/HaleyWardo))
|
|
149
|
-
|
|
150
|
-
## [v0.2.11](https://github.com/yapplabs/ember-nav-stack/tree/v0.2.11) (2018-10-10)
|
|
151
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v0.2.10...v0.2.11)
|
|
152
|
-
|
|
153
|
-
## [v0.2.10](https://github.com/yapplabs/ember-nav-stack/tree/v0.2.10) (2018-10-01)
|
|
154
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v0.2.9...v0.2.10)
|
|
155
|
-
|
|
156
|
-
## [v0.2.9](https://github.com/yapplabs/ember-nav-stack/tree/v0.2.9) (2018-06-22)
|
|
157
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v0.2.8...v0.2.9)
|
|
158
|
-
|
|
159
|
-
## [v0.2.8](https://github.com/yapplabs/ember-nav-stack/tree/v0.2.8) (2018-02-06)
|
|
160
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v0.2.7...v0.2.8)
|
|
161
|
-
|
|
162
|
-
**Merged pull requests:**
|
|
163
|
-
|
|
164
|
-
- Eliminate animation duration during tests [\#7](https://github.com/yapplabs/ember-nav-stack/pull/7) ([mattmcmanus](https://github.com/mattmcmanus))
|
|
165
|
-
|
|
166
|
-
## [v0.2.7](https://github.com/yapplabs/ember-nav-stack/tree/v0.2.7) (2018-01-16)
|
|
167
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v0.2.6...v0.2.7)
|
|
168
|
-
|
|
169
|
-
## [v0.2.6](https://github.com/yapplabs/ember-nav-stack/tree/v0.2.6) (2018-01-11)
|
|
170
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v0.2.5...v0.2.6)
|
|
171
|
-
|
|
172
|
-
## [v0.2.5](https://github.com/yapplabs/ember-nav-stack/tree/v0.2.5) (2018-01-10)
|
|
173
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v0.2.4...v0.2.5)
|
|
174
|
-
|
|
175
|
-
## [v0.2.4](https://github.com/yapplabs/ember-nav-stack/tree/v0.2.4) (2018-01-10)
|
|
176
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v0.2.3...v0.2.4)
|
|
177
|
-
|
|
178
|
-
## [v0.2.3](https://github.com/yapplabs/ember-nav-stack/tree/v0.2.3) (2018-01-09)
|
|
179
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v0.2.2...v0.2.3)
|
|
180
|
-
|
|
181
|
-
**Merged pull requests:**
|
|
182
|
-
|
|
183
|
-
- Sync up header and body animations [\#4](https://github.com/yapplabs/ember-nav-stack/pull/4) ([mattmcmanus](https://github.com/mattmcmanus))
|
|
184
|
-
|
|
185
|
-
## [v0.2.2](https://github.com/yapplabs/ember-nav-stack/tree/v0.2.2) (2018-01-09)
|
|
186
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v0.2.1...v0.2.2)
|
|
187
|
-
|
|
188
|
-
## [v0.2.1](https://github.com/yapplabs/ember-nav-stack/tree/v0.2.1) (2018-01-09)
|
|
189
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v0.2.0...v0.2.1)
|
|
190
|
-
|
|
191
|
-
## [v0.2.0](https://github.com/yapplabs/ember-nav-stack/tree/v0.2.0) (2018-01-09)
|
|
192
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v0.1.1...v0.2.0)
|
|
193
|
-
|
|
194
|
-
**Merged pull requests:**
|
|
195
|
-
|
|
196
|
-
- Ensure each NavStack Layer renders on own layer [\#3](https://github.com/yapplabs/ember-nav-stack/pull/3) ([mattmcmanus](https://github.com/mattmcmanus))
|
|
197
|
-
|
|
198
|
-
## [v0.1.1](https://github.com/yapplabs/ember-nav-stack/tree/v0.1.1) (2018-01-08)
|
|
199
|
-
[Full Changelog](https://github.com/yapplabs/ember-nav-stack/compare/v0.1.0...v0.1.1)
|
|
200
|
-
|
|
201
|
-
**Merged pull requests:**
|
|
202
|
-
|
|
203
|
-
- Animate using css instead of liquid fire [\#2](https://github.com/yapplabs/ember-nav-stack/pull/2) ([mattmcmanus](https://github.com/mattmcmanus))
|
|
204
|
-
|
|
205
|
-
## [v0.1.0](https://github.com/yapplabs/ember-nav-stack/tree/v0.1.0) (2018-01-08)
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
package/MODULE_REPORT.md
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
## Module Report
|
|
2
|
-
### Unknown Global
|
|
3
|
-
|
|
4
|
-
**Global**: `Ember.testing`
|
|
5
|
-
|
|
6
|
-
**Location**: `addon/utils/animation.js` at line 7
|
|
7
|
-
|
|
8
|
-
```js
|
|
9
|
-
import RSVP from 'rsvp';
|
|
10
|
-
import Ember from 'ember';
|
|
11
|
-
const { testing } = Ember;
|
|
12
|
-
/**
|
|
13
|
-
* @private
|
|
14
|
-
```
|
|
15
|
-
|
|
16
|
-
### Unknown Global
|
|
17
|
-
|
|
18
|
-
**Global**: `Ember.testing`
|
|
19
|
-
|
|
20
|
-
**Location**: `addon/transitions/slide-title.js` at line 2
|
|
21
|
-
|
|
22
|
-
```js
|
|
23
|
-
import Ember from 'ember';
|
|
24
|
-
const { testing } = Ember;
|
|
25
|
-
import { Promise, animate } from 'liquid-fire';
|
|
26
|
-
|
|
27
|
-
```
|
package/RELEASE.md
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
# Release
|
|
2
|
-
|
|
3
|
-
Releases are mostly automated using
|
|
4
|
-
[release-it](https://github.com/release-it/release-it/) and
|
|
5
|
-
[lerna-changelog](https://github.com/lerna/lerna-changelog/).
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
## Preparation
|
|
9
|
-
|
|
10
|
-
Since the majority of the actual release process is automated, the primary
|
|
11
|
-
remaining task prior to releasing is confirming that all pull requests that
|
|
12
|
-
have been merged since the last release have been labeled with the appropriate
|
|
13
|
-
`lerna-changelog` labels and the titles have been updated to ensure they
|
|
14
|
-
represent something that would make sense to our users. Some great information
|
|
15
|
-
on why this is important can be found at
|
|
16
|
-
[keepachangelog.com](https://keepachangelog.com/en/1.0.0/), but the overall
|
|
17
|
-
guiding principle here is that changelogs are for humans, not machines.
|
|
18
|
-
|
|
19
|
-
When reviewing merged PR's the labels to be used are:
|
|
20
|
-
|
|
21
|
-
* breaking - Used when the PR is considered a breaking change.
|
|
22
|
-
* enhancement - Used when the PR adds a new feature or enhancement.
|
|
23
|
-
* bug - Used when the PR fixes a bug included in a previous release.
|
|
24
|
-
* documentation - Used when the PR adds or updates documentation.
|
|
25
|
-
* internal - Used for internal changes that still require a mention in the
|
|
26
|
-
changelog/release notes.
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
## Release
|
|
30
|
-
|
|
31
|
-
Once the prep work is completed, the actual release is straight forward:
|
|
32
|
-
|
|
33
|
-
* First, ensure that you have installed your projects dependencies:
|
|
34
|
-
|
|
35
|
-
```
|
|
36
|
-
yarn install
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
* And last (but not least 😁) do your release. It requires a
|
|
40
|
-
[GitHub personal access token](https://github.com/settings/tokens) as
|
|
41
|
-
`$GITHUB_AUTH` environment variable. Only "repo" access is needed; no "admin"
|
|
42
|
-
or other scopes are required.
|
|
43
|
-
|
|
44
|
-
```
|
|
45
|
-
export GITHUB_AUTH="f941e0..."
|
|
46
|
-
yarn run release
|
|
47
|
-
```
|
|
48
|
-
|
|
49
|
-
[release-it](https://github.com/release-it/release-it/) manages the actual
|
|
50
|
-
release process. It will prompt you to to choose the version number after which
|
|
51
|
-
you will have the chance to hand tweak the changelog to be used (for the
|
|
52
|
-
`CHANGELOG.md` and GitHub release), then `release-it` continues on to tagging,
|
|
53
|
-
pushing the tag and commits, etc.
|
|
54
|
-
|