Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: angular-ui/ui-router
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.26
Choose a base ref
...
head repository: angular-ui/ui-router
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.27
Choose a head ref

Commits on Apr 29, 2020

  1. Copy the full SHA
    c91488a View commit details

Commits on Apr 30, 2020

  1. chore(deps): bump jquery from 3.4.1 to 3.5.0

    Bumps [jquery](https://github.com/jquery/jquery) from 3.4.1 to 3.5.0.
    - [Release notes](https://github.com/jquery/jquery/releases)
    - [Commits](jquery/jquery@3.4.1...3.5.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and christopherthielen committed Apr 30, 2020
    Copy the full SHA
    2184613 View commit details

Commits on May 9, 2020

  1. Copy the full SHA
    bd346e5 View commit details
  2. Copy the full SHA
    c795a68 View commit details
  3. Copy the full SHA
    5b4d5a5 View commit details
  4. Copy the full SHA
    5d774db View commit details
  5. Copy the full SHA
    58c0a31 View commit details

Commits on May 10, 2020

  1. Copy the full SHA
    dd1426d View commit details

Commits on May 11, 2020

  1. Copy the full SHA
    9af8d67 View commit details

Commits on May 17, 2020

  1. Copy the full SHA
    b4c88e7 View commit details

Commits on May 18, 2020

  1. Copy the full SHA
    f22a2d5 View commit details
  2. Copy the full SHA
    93523fa View commit details

Commits on May 24, 2020

  1. Copy the full SHA
    b41c594 View commit details
  2. Copy the full SHA
    ae32900 View commit details
  3. Copy the full SHA
    fda6800 View commit details
  4. Copy the full SHA
    22932c1 View commit details
  5. test: Migrate from karma/jasmine to jest

    Why? karma had an entire webpack config baked in and due to webpack depending on an old version of chokidar, tests kept failing.  Decided to bite the bullet and remove karma+jasmine+webpack from the project.
    christopherthielen authored and mergify[bot] committed May 24, 2020
    Copy the full SHA
    677a62c View commit details
  6. chore(docs): downgrade publish scripts so docs build doesn't fail (no…

    …te: docs are not generated correctly for a while now. need to investigate)
    christopherthielen authored and mergify[bot] committed May 24, 2020
    Copy the full SHA
    25bbb19 View commit details

Commits on May 25, 2020

  1. Copy the full SHA
    6325af8 View commit details

Commits on Jul 17, 2020

  1. chore: Set urlService.config._decodeParams to false for compat with u…

    …pcoming @uirouter/core 6.0.6 release
    christopherthielen committed Jul 17, 2020
    Copy the full SHA
    3370a4a View commit details
  2. Copy the full SHA
    c2cf210 View commit details
  3. Copy the full SHA
    943bd56 View commit details

Commits on Jul 18, 2020

  1. Copy the full SHA
    61e9c66 View commit details
  2. test: check-peer-dependencies in CI (#3811)

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
    christopherthielen and mergify[bot] authored Jul 18, 2020
    Copy the full SHA
    bc04aeb View commit details

Commits on Jul 20, 2020

  1. Copy the full SHA
    db4e63f View commit details
  2. Copy the full SHA
    eea7de7 View commit details
  3. Copy the full SHA
    5a48eab View commit details
  4. Copy the full SHA
    e4991a5 View commit details

Commits on Jul 21, 2020

  1. Copy the full SHA
    4f9a607 View commit details
  2. Copy the full SHA
    df24513 View commit details
  3. 1.0.27

    christopherthielen committed Jul 21, 2020
    Copy the full SHA
    cd9f484 View commit details
Showing with 50,143 additions and 4,562 deletions.
  1. +19 −24 .github/workflows/ci.yml
  2. +64 −0 .github/workflows/update_dependencies.yml
  3. +6 −8 .mergify.yml
  4. +23 −0 CHANGELOG.md
  5. +1 −1 bower.json
  6. +21 −6 downstream_projects.json
  7. +17 −0 jest.config.js
  8. +2 −2 karma.conf.js
  9. +62 −30 package.json
  10. +6 −6 rollup.config.js
  11. +23 −25 src/directives/stateDirectives.ts
  12. +18 −21 src/directives/viewDirective.ts
  13. +2 −2 src/interface.ts
  14. +2 −2 src/legacy/resolveService.ts
  15. +9 −9 src/legacy/stateEvents.ts
  16. +3 −3 src/locationServices.ts
  17. +14 −11 src/services.ts
  18. +3 −6 src/stateFilters.ts
  19. +3 −3 src/statebuilders/views.ts
  20. +7 −9 src/templateFactory.ts
  21. +1 −1 src/urlRouterProvider.ts
  22. +4 −4 src/viewScroll.ts
  23. +13 −13 test/angular/1.6/angular-animate.js
  24. +40 −14 test/angular/1.6/angular-mocks.js
  25. +1,192 −567 test/angular/1.6/angular.js
  26. +4,272 −0 test/angular/1.7/angular-animate.js
  27. +3,757 −0 test/angular/1.7/angular-mocks.js
  28. +36,431 −0 test/angular/1.7/angular.js
  29. +9 −0 test/angular/jest-angular.js
  30. +0 −9 test/index.js
  31. +9 −0 test/jest.init.ts
  32. +18 −16 test/ng1StateBuilderSpec.ts
  33. +115 −112 test/resolveSpec.ts
  34. +2 −2 test/servicesSpec.ts
  35. +117 −118 test/stateDirectivesSpec.ts
  36. +47 −44 test/stateEventsSpec.ts
  37. +14 −19 test/stateFiltersSpec.ts
  38. +340 −332 test/stateSpec.ts
  39. +13 −13 test/templateFactorySpec.ts
  40. 0 test/{typescript2.2 → typescript/2.2}/index.ts
  41. 0 test/{typescript2.2 → typescript/2.2}/package.json
  42. 0 test/{typescript2.2 → typescript/2.2}/tsconfig.json
  43. 0 test/{typescript2.3 → typescript/2.3}/index.ts
  44. 0 test/{typescript2.3 → typescript/2.3}/package.json
  45. 0 test/{typescript2.3 → typescript/2.3}/tsconfig.json
  46. 0 test/{typescript2.4 → typescript/2.4}/index.ts
  47. 0 test/{typescript2.4 → typescript/2.4}/package.json
  48. 0 test/{typescript2.4 → typescript/2.4}/tsconfig.json
  49. 0 test/{typescript2.5 → typescript/2.5}/index.ts
  50. 0 test/{typescript2.5 → typescript/2.5}/package.json
  51. 0 test/{typescript2.5 → typescript/2.5}/tsconfig.json
  52. 0 test/{typescript2.6 → typescript/2.6}/index.ts
  53. +1 −6 test/{typescript2.6 → typescript/2.6}/package.json
  54. 0 test/{typescript2.6 → typescript/2.6}/tsconfig.json
  55. +2 −0 test/typescript/2.7/index.ts
  56. +11 −0 test/typescript/2.7/package.json
  57. +12 −0 test/typescript/2.7/tsconfig.json
  58. +2 −0 test/typescript/2.8/index.ts
  59. +11 −0 test/typescript/2.8/package.json
  60. +12 −0 test/typescript/2.8/tsconfig.json
  61. +2 −0 test/typescript/2.9/index.ts
  62. +11 −0 test/typescript/2.9/package.json
  63. +12 −0 test/typescript/2.9/tsconfig.json
  64. +2 −0 test/typescript/3.0/index.ts
  65. +11 −0 test/typescript/3.0/package.json
  66. +12 −0 test/typescript/3.0/tsconfig.json
  67. +2 −0 test/typescript/3.1/index.ts
  68. +11 −0 test/typescript/3.1/package.json
  69. +12 −0 test/typescript/3.1/tsconfig.json
  70. +2 −0 test/typescript/3.2/index.ts
  71. +11 −0 test/typescript/3.2/package.json
  72. +12 −0 test/typescript/3.2/tsconfig.json
  73. +2 −0 test/typescript/3.3/index.ts
  74. +11 −0 test/typescript/3.3/package.json
  75. +12 −0 test/typescript/3.3/tsconfig.json
  76. +2 −0 test/typescript/3.4/index.ts
  77. +11 −0 test/typescript/3.4/package.json
  78. +12 −0 test/typescript/3.4/tsconfig.json
  79. +2 −0 test/typescript/3.5/index.ts
  80. +11 −0 test/typescript/3.5/package.json
  81. +12 −0 test/typescript/3.5/tsconfig.json
  82. +2 −0 test/typescript/3.6/index.ts
  83. +11 −0 test/typescript/3.6/package.json
  84. +12 −0 test/typescript/3.6/tsconfig.json
  85. +2 −0 test/typescript/3.7/index.ts
  86. +11 −0 test/typescript/3.7/package.json
  87. +12 −0 test/typescript/3.7/tsconfig.json
  88. +2 −0 test/typescript/3.8/index.ts
  89. +11 −0 test/typescript/3.8/package.json
  90. +12 −0 test/typescript/3.8/tsconfig.json
  91. +2 −0 test/typescript/3.9/index.ts
  92. +11 −0 test/typescript/3.9/package.json
  93. +12 −0 test/typescript/3.9/tsconfig.json
  94. +17 −0 test/typescript/mktest.sh
  95. +2 −0 test/typescript/template/index.ts
  96. +11 −0 test/typescript/template/package.json
  97. +12 −0 test/typescript/template/tsconfig.json
  98. +0 −1 test/typescript2.2/.gitignore
  99. +0 −1 test/typescript2.3/.gitignore
  100. +0 −1 test/typescript2.4/.gitignore
  101. +0 −1 test/typescript2.5/.gitignore
  102. +0 −1 test/typescript2.6/.gitignore
  103. +222 −183 test/urlMatcherFactorySpec.ts
  104. +62 −61 test/urlRouterSpec.ts
  105. +0 −5 test/util/index.ts
  106. +0 −46 test/util/matchers.ts
  107. +0 −8 test/util/matchers.types.d.ts
  108. +0 −55 test/util/testUtils.ts
  109. +16 −15 test/util/testUtilsNg1.ts
  110. +174 −194 test/viewDirectiveSpec.ts
  111. +18 −19 test/viewHookSpec.ts
  112. +9 −11 test/viewScrollSpec.ts
  113. +11 −12 test/viewSpec.ts
  114. +13 −0 tsconfig.docgen.json
  115. +0 −33 tsconfig.typedoc.json
  116. +8 −0 typedoc.json
  117. +2,543 −2,477 yarn.lock
43 changes: 19 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,39 +1,34 @@
name: 'CI: UIRouter for AngularJS'
name: 'CI'

on: [push]
on:
push:
branches:
- master
pull_request:

jobs:
test:
name: Unit Tests
ci:
needs: [test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: yarn install --pure-lockfile
- name: Run Tests
run: yarn test
- run: true

docs:
name: Docs can be generated
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: yarn install --pure-lockfile
- name: Generate Docs
run: yarn docs

test_downstream:
name: Downstream projects still work
test:
name: yarn ${{ matrix.yarncmd }}
runs-on: ubuntu-latest
strategy:
matrix:
yarncmd: ['test', 'test:downstream', 'docs']
steps:
- uses: actions/checkout@v2
- name: Prepare to Test Downstream Projects
- name: Configure Environment
run: |
npm config set scripts-prepend-node-path auto
git config --global user.email uirouter@github.actions
git config --global user.name uirouter_github_actions
- name: Install Dependencies
run: yarn install --pure-lockfile
- name: Test Downstream Projects
run: yarn test:downstream
- name: Check Peer Dependencies
run: npx check-peer-dependencies
- name: Run yarn ${{ matrix.yarncmd }}
run: yarn ${{ matrix.yarncmd }}
64 changes: 64 additions & 0 deletions .github/workflows/update_dependencies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# This workflow requires a personal access token for uirouterbot
name: Weekly Dependency Bumps
on:
repository_dispatch:
types: [update_dependencies]
schedule:
- cron: '0 20 * * 0'

jobs:
upgrade-dependencies:
runs-on: ubuntu-latest
name: Update dependencies
strategy:
matrix:
excludes: ['']
deptype: ['dependencies', 'devDependencies']
latest: [false]
steps:
- uses: actions/checkout@v2
- run: |
git config user.name uirouterbot
git config user.password ${{ secrets.UIROUTERBOT_PAT }}
git remote set-url origin $(git remote get-url origin | sed -e 's/ui-router/uirouterbot/')
git fetch --unshallow -p origin
- name: Update dependencies
id: upgrade
uses: ui-router/publish-scripts/actions/upgrade@actions-upgrade-v1.0.3
with:
excludes: ${{ matrix.excludes }}
deptype: ${{ matrix.deptype }}
latest: ${{ matrix.latest }}
- name: Create Pull Request
id: cpr
if: ${{ steps.upgrade.outputs.upgrades != '' }}
# the following hash is from https://github.com/peter-evans/create-pull-request/releases/tag/v2.7.0
uses: peter-evans/create-pull-request@340e629d2f63059fb3e3f15437e92cfbc7acd85b
with:
token: ${{ secrets.UIROUTERBOT_PAT }}
request-to-parent: true
branch-suffix: 'random'
commit-message: 'chore(package): Update ${{ steps.upgrade.outputs.upgradecount }} ${{ matrix.deptype }} to ${{ steps.upgrade.outputs.upgradestrategy }}'
title: 'chore(package): Update ${{ steps.upgrade.outputs.upgradecount }} ${{ matrix.deptype }} to ${{ steps.upgrade.outputs.upgradestrategy }}'
body: |
chore(package): Update ${{ steps.upgrade.outputs.upgradecount }} ${{ matrix.deptype }} to ${{ steps.upgrade.outputs.upgradestrategy }}
```
${{ steps.upgrade.outputs.upgrades }}
```
Auto-generated by [create-pull-request][1]
[1]: https://github.com/peter-evans/create-pull-request
- name: Apply Merge Label
if: ${{ steps.cpr.outputs.pr_number != '' }}
uses: actions/github-script@0.9.0
with:
github-token: ${{ secrets.UIROUTERBOT_PAT }}
script: |
await github.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: ${{ steps.cpr.outputs.pr_number }},
labels: ['ready to squash and merge']
});
14 changes: 6 additions & 8 deletions .mergify.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
pull_request_rules:
- name: Automatically squash and merge on CI success
- name: Auto Squash and Merge
conditions:
- status-success=Unit Tests
- status-success=Docs can be generated
- status-success=Downstream projects still work
- base=master
- status-success=ci
- 'label=ready to squash and merge'
actions:
delete_head_branch: {}
merge:
method: squash
strict: smart
- name: Automatically rebase and merge on CI success
- name: Auto Rebase and Merge
conditions:
- status-success=Unit Tests
- status-success=Docs can be generated
- status-success=Downstream projects still work
- base=master
- status-success=ci
- 'label=ready to rebase and merge'
actions:
delete_head_branch: {}
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
## 1.0.27 (2020-07-21)
[Compare `@uirouter/angularjs` versions 1.0.26 and 1.0.27](https://github.com/angular-ui/ui-router/compare/1.0.26...1.0.27)

### Bug Fixes

* make augmented StateRegistry.register overload better match the signature in core ([db4e63f](https://github.com/angular-ui/ui-router/commit/db4e63f))


---

### Updated `@uirouter/core` from 6.0.5 to 6.0.6


Changelog for `@uirouter/core`:


[Compare `@uirouter/core` versions 6.0.5 and 6.0.6](https://github.com/ui-router/core/compare/6.0.5...6.0.6)

### Bug Fixes

* **params:** Bi-directionally en/decode path and search params. ([#618](https://github.com/ui-router/core/issues/618)) ([89e99cd](https://github.com/ui-router/core/commit/89e99cd))


## 1.0.26 (2020-04-29)
[Compare `@uirouter/angularjs` versions 1.0.25 and 1.0.26](https://github.com/angular-ui/ui-router/compare/1.0.25...1.0.26)

2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -17,5 +17,5 @@
"test",
"src"
],
"version": "1.0.25"
"version": "1.0.26"
}
27 changes: 21 additions & 6 deletions downstream_projects.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
{
"sample-app-angularjs": "https://github.com/ui-router/sample-app-angularjs.git",
"typescript2.2": "./test/typescript2.2",
"typescript2.3": "./test/typescript2.3",
"typescript2.4": "./test/typescript2.4",
"typescript2.5": "./test/typescript2.5",
"typescript2.6": "./test/typescript2.6"
"typescript": {
"typescript2.2": "./test/typescript/2.2",
"typescript2.3": "./test/typescript/2.3",
"typescript2.4": "./test/typescript/2.4",
"typescript2.5": "./test/typescript/2.5",
"typescript2.6": "./test/typescript/2.6",
"typescript2.8": "./test/typescript/2.8",
"typescript2.7": "./test/typescript/2.7",
"typescript2.9": "./test/typescript/2.9",
"typescript3.0": "./test/typescript/3.0",
"typescript3.1": "./test/typescript/3.1",
"typescript3.2": "./test/typescript/3.2",
"typescript3.3": "./test/typescript/3.3",
"typescript3.4": "./test/typescript/3.4",
"typescript3.5": "./test/typescript/3.5",
"typescript3.6": "./test/typescript/3.6",
"typescript3.7": "./test/typescript/3.7",
"typescript3.8": "./test/typescript/3.8",
"typescript3.9": "./test/typescript/3.9"
},
"sample-app-angularjs": "https://github.com/ui-router/sample-app-angularjs.git"
}
17 changes: 17 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
const NG = process.env.NG || '1.7';

console.log(`Testing with AngularJS ${NG}`);

module.exports = {
preset: 'ts-jest',
testEnvironment: 'jsdom',
roots: ['src', 'test'],
testMatch: ['**/__tests__/**/*.[jt]s?(x)', '**/?(*.)+(spec|test).[jt]s?(x)', '**/?*Spec.[jt]s'],
setupFilesAfterEnv: ['./test/jest.init.ts'],
moduleNameMapper: {
'^angular$': '<rootDir>/test/angular/jest-angular.js',
'^jest-angular-import$': `<rootDir>/test/angular/${NG}/angular.js`,
'^angular-animate$': `<rootDir>/test/angular/${NG}/angular-animate.js`,
'^angular-mocks$': `<rootDir>/test/angular/${NG}/angular-mocks.js`,
},
};
4 changes: 2 additions & 2 deletions karma.conf.js
Original file line number Diff line number Diff line change
@@ -24,14 +24,14 @@ function karmaServedFiles(ngVersion) {
];
}

var angularFiles = angular(ngVersion).map(function(pattern) {
var angularFiles = angular(ngVersion).map(function (pattern) {
return { watched: false, included: true, nocache: true, pattern: pattern };
});

return angularFiles.concat('test/index.js');
}

module.exports = function(config) {
module.exports = function (config) {
var ngVersion = config.ngversion || DEFAULT_NG_VERSION;

config.set({
92 changes: 62 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uirouter/angularjs",
"description": "State-based routing for AngularJS 1.x",
"version": "1.0.26",
"version": "1.0.27",
"scripts": {
"clean": "shx rm -rf lib lib-esm _doc build release *.log",
"compile": "tsc && tsc -m es6 --outDir lib-esm && npm run fixdts",
@@ -15,15 +15,17 @@
"bundle_router": "rollup -c --environment ROUTER && rollup -c --environment ROUTER,MINIFY",
"bundle_events": "rollup -c --environment EVENTS && rollup -c --environment EVENTS,MINIFY",
"bundle_resolve": "rollup -c --environment RESOLVE && rollup -c --environment RESOLVE,MINIFY",
"test": "tsc && npm run test:ng16 && npm run test:ng15 && npm run test:ng14 && npm run test:ng13 && npm run test:ng12",
"test:ng12": "karma start --ngversion 1.2",
"test:ng13": "karma start --ngversion 1.3",
"test:ng14": "karma start --ngversion 1.4",
"test:ng15": "karma start --ngversion 1.5",
"test:ng16": "karma start --ngversion 1.6",
"test": "tsc && NG=1.7 jest && NG=1.6 jest && NG=1.5 jest && NG=1.4 jest && NG=1.3 jest && NG=1.2 jest",
"test:debug": "node --inspect ./node_modules/.bin/jest --runInBand --watch",
"test:ng12": "NG=1.2 jest",
"test:ng13": "NG=1.3 jest",
"test:ng14": "NG=1.4 jest",
"test:ng15": "NG=1.5 jest",
"test:ng16": "NG=1.6 jest",
"test:ng17": "NG=1.7 jest",
"test:downstream": "test_downstream_projects",
"watch": "karma start --singleRun=false --autoWatch=true --autoWatchInterval=1",
"debug": "karma start --singleRun=false --autoWatch=true --autoWatchInterval=1 --browsers=Chrome",
"watch": "jest --watch",
"debug": "npm run test:debug",
"docs": "generate_docs",
"docs:publish": "generate_docs && publish_docs",
"release": "release --deps @uirouter/core && node ./scripts/npm_angular_ui_router_release.js && node ./scripts/bower_release.js",
@@ -72,7 +74,7 @@
"module": "lib-esm/index.js",
"typings": "lib/index.d.ts",
"dependencies": {
"@uirouter/core": "6.0.5"
"@uirouter/core": "6.0.6"
},
"peerDependencies": {
"angular": ">=1.2.0"
@@ -81,35 +83,65 @@
"@types/angular": "1.6.57",
"@types/angular-animate": "^1.5.10",
"@types/angular-mocks": "^1.7.0",
"@types/jasmine": "^3.5.10",
"@uirouter/publish-scripts": "^2.3.45",
"dts-downlevel": "^0.3.0",
"fork-ts-checker-webpack-plugin": "^4.1.3",
"@types/jest": "^26.0.5",
"@uirouter/publish-scripts": "2.5.3",
"angular": "1.8.0",
"bufferutil": "4.0.1",
"canvas": "2.6.1",
"dts-downlevel": "^0.4.0",
"husky": "^4.2.5",
"jasmine-core": "^3.5.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-super-dots-reporter": "^0.2.0",
"karma-webpack": "^4.0.2",
"lodash": "^4.17.15",
"jest": "^26.0.1",
"lodash": "^4.17.19",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rollup": "^1.27.14",
"rollup": "^2.22.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.5.0",
"rollup-plugin-uglify": "^6.0.4",
"ts-loader": "^7.0.1",
"tslint": "^6.1.2",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^6.1.0",
"ts-jest": "^26.0.0",
"tslint": "5.20.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.6.4",
"webpack": "^4.43.0"
"typescript": "^3.9.7",
"utf-8-validate": "5.0.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"docgen": {
"publishDir": "_ng1_docs",
"navigation": {
"": [
"UIRouter"
],
"Services": [
"StateService",
"StateRegistry",
"TransitionService",
"UrlService",
"UrlConfig",
"UrlRules"
],
"Interfaces": [
"Ng1StateDeclaration"
],
"Components": [
"uiView",
"UISref",
"UISrefActive"
],
"Other": [
"Transition",
"Trace"
]
},
"include": [
{
"pkg": "@uirouter/core",
"repo": "https://github.com/ui-router/core",
"branch": "master"
}
]
}
}
Loading