]> git.ipfire.org Git - thirdparty/vuejs/router.git/log
thirdparty/vuejs/router.git
4 years agodocs: add config for ads
Eduardo San Martin Morote [Thu, 17 Sep 2020 18:43:54 +0000 (20:43 +0200)] 
docs: add config for ads

4 years agodocs: add carbonads
Eduardo San Martin Morote [Tue, 15 Sep 2020 13:18:54 +0000 (15:18 +0200)] 
docs: add carbonads

4 years agodocs: fix links and add dynamic route matching
Eduardo San Martin Morote [Tue, 15 Sep 2020 13:17:29 +0000 (15:17 +0200)] 
docs: fix links and add dynamic route matching

4 years agobuild(deps-dev): bump @microsoft/api-documenter from 7.8.42 to 7.8.47
dependabot-preview[bot] [Mon, 14 Sep 2020 19:49:34 +0000 (19:49 +0000)] 
build(deps-dev): bump @microsoft/api-documenter from 7.8.42 to 7.8.47

Bumps [@microsoft/api-documenter](https://github.com/microsoft/rushstack) from 7.8.42 to 7.8.47.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/compare/@microsoft/api-documenter_v7.8.42...@microsoft/api-documenter_v7.8.47)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
4 years agobuild(deps-dev): bump nightwatch from 1.4.1 to 1.4.2
dependabot-preview[bot] [Mon, 14 Sep 2020 19:47:59 +0000 (19:47 +0000)] 
build(deps-dev): bump nightwatch from 1.4.1 to 1.4.2

Bumps [nightwatch](https://github.com/nightwatchjs/nightwatch) from 1.4.1 to 1.4.2.
- [Release notes](https://github.com/nightwatchjs/nightwatch/releases)
- [Commits](https://github.com/nightwatchjs/nightwatch/compare/v1.4.1...v1.4.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
4 years agodocs: codesandbox links
Eduardo San Martin Morote [Mon, 14 Sep 2020 12:18:02 +0000 (14:18 +0200)] 
docs: codesandbox links

4 years agodocs(api): add route location normalized
Eduardo San Martin Morote [Mon, 14 Sep 2020 10:19:06 +0000 (12:19 +0200)] 
docs(api): add route location normalized

4 years agodocs(api): fix links
Eduardo San Martin Morote [Mon, 14 Sep 2020 09:56:53 +0000 (11:56 +0200)] 
docs(api): fix links

4 years agodocs(api): more docs
Eduardo San Martin Morote [Mon, 14 Sep 2020 09:06:24 +0000 (11:06 +0200)] 
docs(api): more docs

4 years agochore: add sample go to playground
Eduardo San Martin Morote [Fri, 11 Sep 2020 16:40:30 +0000 (18:40 +0200)] 
chore: add sample go to playground

4 years agofeat(router): remove partial Promise from router.go
Eduardo San Martin Morote [Fri, 11 Sep 2020 16:23:02 +0000 (18:23 +0200)] 
feat(router): remove partial Promise from router.go

BREAKING CHANGE: The `router.go()` methods doesn't return anything
(like in Vue 3) anymore. The existing implementation was wrong as it
would resolve the promise for the following navigation if `router.go()`
was called with something that wasn't possible e.g. `router.go(-20)`
right after entering the application would not do anything. Even worse,
the promise returned by that call would resolve **after the next
navigation**. There is no proper native API to implement this
promise-based api properly, but one can write a version that should work
in most scenarios by setting up multiple hooks right before calling
`router.go()`:
```js
export function go(delta) {
  return new Promise((resolve, reject) => {
    function popStateListener() {
      clearTimeout(timeout)
    }
    window.addEventListener('popstate', popStateListener)

    function clearHooks() {
      removeAfterEach()
      removeOnError()
      window.removeEventListener('popstate', popStateListener)
    }

    // if the popstate event is not called, consider this a failure
    const timeout = setTimeout(() => {
      clearHooks()
      reject(new Error('Failed to use router.go()'))
      // It's unclear of what value would always work here
    }, 10)

    setImmediate

    const removeAfterEach = router.afterEach((_to, _from, failure) => {
      clearHooks()
      resolve(failure)
    })
    const removeOnError = router.onError(err => {
      clearHooks()
      reject(err)
    })

    router.go(delta)
  })
}
```

4 years agodocs(api): navigation guard
Eduardo San Martin Morote [Fri, 11 Sep 2020 16:15:45 +0000 (18:15 +0200)] 
docs(api): navigation guard

4 years agodocs(api): routerecord.props
Eduardo San Martin Morote [Fri, 11 Sep 2020 15:26:27 +0000 (17:26 +0200)] 
docs(api): routerecord.props

4 years agobuild(deps): [security] bump node-fetch from 2.6.0 to 2.6.1
dependabot-preview[bot] [Fri, 11 Sep 2020 15:10:18 +0000 (15:10 +0000)] 
build(deps): [security] bump node-fetch from 2.6.0 to 2.6.1

Bumps [node-fetch](https://github.com/bitinn/node-fetch) from 2.6.0 to 2.6.1. **This update includes a security fix.**
- [Release notes](https://github.com/bitinn/node-fetch/releases)
- [Changelog](https://github.com/node-fetch/node-fetch/blob/master/docs/CHANGELOG.md)
- [Commits](https://github.com/bitinn/node-fetch/compare/v2.6.0...v2.6.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
4 years agodocs(api): formatted version of RouteRecordRaw
Eduardo San Martin Morote [Fri, 11 Sep 2020 15:04:38 +0000 (17:04 +0200)] 
docs(api): formatted version of RouteRecordRaw

4 years agorefactor(types): remove redundant type
Eduardo San Martin Morote [Fri, 11 Sep 2020 13:24:37 +0000 (15:24 +0200)] 
refactor(types): remove redundant type

4 years agofix(types): fix types for redirect records
Eduardo San Martin Morote [Fri, 11 Sep 2020 13:24:01 +0000 (15:24 +0200)] 
fix(types): fix types for redirect records

4 years agotest: fix typings
Eduardo San Martin Morote [Fri, 11 Sep 2020 13:23:31 +0000 (15:23 +0200)] 
test: fix typings

4 years agodocs: hash encoding
Eduardo San Martin Morote [Fri, 11 Sep 2020 11:32:34 +0000 (13:32 +0200)] 
docs: hash encoding

4 years agorefactor(matcher): better error message
Eduardo San Martin Morote [Fri, 11 Sep 2020 11:14:55 +0000 (13:14 +0200)] 
refactor(matcher): better error message

4 years agofix(history): gracefully handle empty state
Eduardo San Martin Morote [Fri, 11 Sep 2020 10:07:35 +0000 (12:07 +0200)] 
fix(history): gracefully handle empty state

Close #366

4 years agofeat(warn): point to scrollBehavior in message
Eduardo San Martin Morote [Fri, 11 Sep 2020 10:01:42 +0000 (12:01 +0200)] 
feat(warn): point to scrollBehavior in message

4 years agotest(e2e): fix interface rename
Eduardo San Martin Morote [Fri, 11 Sep 2020 10:00:59 +0000 (12:00 +0200)] 
test(e2e): fix interface rename

4 years agodocs: add note about history.replaceState
Eduardo San Martin Morote [Fri, 11 Sep 2020 09:39:06 +0000 (11:39 +0200)] 
docs: add note about history.replaceState

Related to #366

4 years agodocs: more types
Eduardo San Martin Morote [Thu, 10 Sep 2020 15:48:26 +0000 (17:48 +0200)] 
docs: more types

4 years agofix(types): explicit types on navigate
Eduardo San Martin Morote [Thu, 10 Sep 2020 15:40:28 +0000 (17:40 +0200)] 
fix(types): explicit types on navigate

4 years agodocs: more ts doc
Eduardo San Martin Morote [Thu, 10 Sep 2020 15:28:07 +0000 (17:28 +0200)] 
docs: more ts doc

4 years agorefactor(types): Rename ScrollBehavior to RouterScrollBehavior
Eduardo San Martin Morote [Thu, 10 Sep 2020 15:24:30 +0000 (17:24 +0200)] 
refactor(types): Rename ScrollBehavior to RouterScrollBehavior

BREAKING CHANGE: there is already an existing type named `ScrollBehavior`,
so we are renaming our type to avoid any confusions and allow the user
to use both types at the same type (which given what the existing
`ScrollBehavior` type is designed for, will likely happen).

4 years agochore: remove empty file
Eduardo San Martin Morote [Thu, 10 Sep 2020 15:20:34 +0000 (17:20 +0200)] 
chore: remove empty file

4 years agofix(types): better type for navigate
Eduardo San Martin Morote [Wed, 9 Sep 2020 12:43:03 +0000 (14:43 +0200)] 
fix(types): better type for navigate

4 years agodocs(api): fix links
Eduardo San Martin Morote [Wed, 9 Sep 2020 12:29:23 +0000 (14:29 +0200)] 
docs(api): fix links

4 years agodocs: add route matching section
Eduardo San Martin Morote [Wed, 9 Sep 2020 12:07:05 +0000 (14:07 +0200)] 
docs: add route matching section

4 years agorefactor: move computed above
Eduardo San Martin Morote [Wed, 9 Sep 2020 12:06:49 +0000 (14:06 +0200)] 
refactor: move computed above

4 years agodocs(api): types
Eduardo San Martin Morote [Tue, 8 Sep 2020 16:25:20 +0000 (18:25 +0200)] 
docs(api): types

4 years agodocs(api): add missing functions
Eduardo San Martin Morote [Tue, 8 Sep 2020 16:11:31 +0000 (18:11 +0200)] 
docs(api): add missing functions

4 years agodocs(api): add history functions
Eduardo San Martin Morote [Tue, 8 Sep 2020 15:48:55 +0000 (17:48 +0200)] 
docs(api): add history functions

4 years agodocs(api): add router-view
Eduardo San Martin Morote [Tue, 8 Sep 2020 14:13:54 +0000 (16:13 +0200)] 
docs(api): add router-view

4 years agodocs(api): add router-link
Eduardo San Martin Morote [Tue, 8 Sep 2020 14:10:39 +0000 (16:10 +0200)] 
docs(api): add router-link

4 years agodocs(api): initial auto generated version of docs
Eduardo San Martin Morote [Tue, 8 Sep 2020 12:56:08 +0000 (14:56 +0200)] 
docs(api): initial auto generated version of docs

still needs to be re organized, but it is a nice base using api-docs-gen :)

4 years agodocs(api): adding docs to source code
Eduardo San Martin Morote [Tue, 8 Sep 2020 12:55:14 +0000 (14:55 +0200)] 
docs(api): adding docs to source code

4 years agodocs: add missing isReady breaking change
Eduardo San Martin Morote [Tue, 8 Sep 2020 12:11:28 +0000 (14:11 +0200)] 
docs: add missing isReady breaking change

4 years agodocs: wip useLink
Eduardo San Martin Morote [Tue, 8 Sep 2020 10:49:52 +0000 (12:49 +0200)] 
docs: wip useLink

4 years agobuild(deps-dev): bump rollup from 2.26.9 to 2.26.10
dependabot-preview[bot] [Mon, 7 Sep 2020 20:04:23 +0000 (20:04 +0000)] 
build(deps-dev): bump rollup from 2.26.9 to 2.26.10

Bumps [rollup](https://github.com/rollup/rollup) from 2.26.9 to 2.26.10.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v2.26.9...v2.26.10)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
4 years agobuild(deps-dev): bump nightwatch from 1.3.7 to 1.4.1
dependabot-preview[bot] [Mon, 7 Sep 2020 19:52:16 +0000 (19:52 +0000)] 
build(deps-dev): bump nightwatch from 1.3.7 to 1.4.1

Bumps [nightwatch](https://github.com/nightwatchjs/nightwatch) from 1.3.7 to 1.4.1.
- [Release notes](https://github.com/nightwatchjs/nightwatch/releases)
- [Commits](https://github.com/nightwatchjs/nightwatch/compare/v1.3.7...v1.4.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
4 years agobuild(deps-dev): bump rollup-plugin-terser from 7.0.1 to 7.0.2
dependabot-preview[bot] [Mon, 7 Sep 2020 19:51:43 +0000 (19:51 +0000)] 
build(deps-dev): bump rollup-plugin-terser from 7.0.1 to 7.0.2

Bumps [rollup-plugin-terser](https://github.com/TrySound/rollup-plugin-terser) from 7.0.1 to 7.0.2.
- [Release notes](https://github.com/TrySound/rollup-plugin-terser/releases)
- [Commits](https://github.com/TrySound/rollup-plugin-terser/compare/v7.0.1...v7.0.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
4 years agobuild(deps-dev): bump @microsoft/api-documenter from 7.8.36 to 7.8.42
dependabot-preview[bot] [Mon, 7 Sep 2020 19:51:13 +0000 (19:51 +0000)] 
build(deps-dev): bump @microsoft/api-documenter from 7.8.36 to 7.8.42

Bumps [@microsoft/api-documenter](https://github.com/microsoft/rushstack) from 7.8.36 to 7.8.42.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/compare/@microsoft/api-documenter_v7.8.36...@microsoft/api-documenter_v7.8.42)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
4 years agobuild(deps-dev): bump size-limit and @size-limit/preset-small-lib
dependabot-preview[bot] [Mon, 7 Sep 2020 19:49:49 +0000 (19:49 +0000)] 
build(deps-dev): bump size-limit and @size-limit/preset-small-lib

Bumps [size-limit](https://github.com/ai/size-limit) and [@size-limit/preset-small-lib](https://github.com/ai/size-limit). These dependencies needed to be updated together.

Updates `size-limit` from 4.5.7 to 4.6.0
- [Release notes](https://github.com/ai/size-limit/releases)
- [Changelog](https://github.com/ai/size-limit/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ai/size-limit/compare/4.5.7...4.6.0)

Updates `@size-limit/preset-small-lib` from 4.5.7 to 4.6.0
- [Release notes](https://github.com/ai/size-limit/releases)
- [Changelog](https://github.com/ai/size-limit/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ai/size-limit/compare/4.5.7...4.6.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
4 years agobuild(deps): [security] bump http-proxy from 1.18.0 to 1.18.1
dependabot-preview[bot] [Sat, 5 Sep 2020 17:02:46 +0000 (17:02 +0000)] 
build(deps): [security] bump http-proxy from 1.18.0 to 1.18.1

Bumps [http-proxy](https://github.com/http-party/node-http-proxy) from 1.18.0 to 1.18.1. **This update includes a security fix.**
- [Release notes](https://github.com/http-party/node-http-proxy/releases)
- [Changelog](https://github.com/http-party/node-http-proxy/blob/master/CHANGELOG.md)
- [Commits](https://github.com/http-party/node-http-proxy/compare/1.18.0...1.18.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
4 years agodocs: extending RouterLink
Eduardo San Martin Morote [Sat, 5 Sep 2020 14:29:40 +0000 (16:29 +0200)] 
docs: extending RouterLink

4 years agotest: test about extending RouterLink
Eduardo San Martin Morote [Sat, 5 Sep 2020 14:29:25 +0000 (16:29 +0200)] 
test: test about extending RouterLink

4 years agodocs: normalize links
Eduardo San Martin Morote [Sat, 5 Sep 2020 12:37:16 +0000 (14:37 +0200)] 
docs: normalize links

4 years agochore: add blank lines readme [skip ci]
Eduardo San Martin Morote [Sat, 5 Sep 2020 12:36:58 +0000 (14:36 +0200)] 
chore: add blank lines readme [skip ci]

4 years agodocs: add composition api page
Eduardo San Martin Morote [Sat, 5 Sep 2020 11:51:58 +0000 (13:51 +0200)] 
docs: add composition api page

4 years agofeat(types): allow extending meta fields (#407)
Eduardo San Martin Morote [Sat, 5 Sep 2020 10:54:20 +0000 (12:54 +0200)] 
feat(types): allow extending meta fields (#407)

4 years agodocs: migration guide [skip ci]
Eduardo San Martin Morote [Thu, 3 Sep 2020 16:11:28 +0000 (18:11 +0200)] 
docs: migration guide [skip ci]

4 years agodocs: migration guide wip
Eduardo San Martin Morote [Thu, 3 Sep 2020 14:03:01 +0000 (16:03 +0200)] 
docs: migration guide wip

4 years agochore: up deps
Eduardo San Martin Morote [Thu, 3 Sep 2020 09:21:32 +0000 (11:21 +0200)] 
chore: up deps

4 years agodocs: adapt watch usage [skip ci]
Eduardo San Martin Morote [Wed, 2 Sep 2020 16:09:35 +0000 (18:09 +0200)] 
docs: adapt watch usage [skip ci]

4 years agofix(warn): correctly warn against unused next
Eduardo San Martin Morote [Wed, 2 Sep 2020 16:01:14 +0000 (18:01 +0200)] 
fix(warn): correctly warn against unused next

4 years agorelease: v4.0.0-beta.9 v4.0.0-beta.9
Eduardo San Martin Morote [Tue, 1 Sep 2020 17:53:17 +0000 (19:53 +0200)] 
release: v4.0.0-beta.9

4 years agobuild: remove postinstall
Eduardo San Martin Morote [Tue, 1 Sep 2020 17:51:17 +0000 (19:51 +0200)] 
build: remove postinstall

Close #450

4 years agobuild: fix version in dist files [skip ci]
Eduardo San Martin Morote [Tue, 1 Sep 2020 16:46:10 +0000 (18:46 +0200)] 
build: fix version in dist files [skip ci]

4 years agorelease: v4.0.0-beta.8 v4.0.0-beta.8
Eduardo San Martin Morote [Tue, 1 Sep 2020 16:44:24 +0000 (18:44 +0200)] 
release: v4.0.0-beta.8

4 years agodocs: add note about pathToRegexpOptions [skip ci]
Eduardo San Martin Morote [Tue, 1 Sep 2020 16:05:04 +0000 (18:05 +0200)] 
docs: add note about pathToRegexpOptions [skip ci]

4 years agofix(router-view): reuse saved instances in different records (#446)
Eduardo San Martin Morote [Tue, 1 Sep 2020 15:15:46 +0000 (17:15 +0200)] 
fix(router-view): reuse saved instances in different records (#446)

BREAKING CHANGE: `onBeforeRouteLeave` and `onBeforeRouteUpdate` used to
    have access to the component instance through `instance.proxy` but given
    that:
    1. It has been marked as `internal` (https://github.com/vuejs/vue-next/pull/1849)
    2. When using `setup`, all variables are accessible on the scope (and
       should be accessed that way because the code minimizes better)
    It has been removed to prevent wrong usage and lighten Vue Router

4 years agotest: add navigation type tests
Eduardo San Martin Morote [Tue, 1 Sep 2020 08:27:55 +0000 (10:27 +0200)] 
test: add navigation type tests

4 years agochore: remove patreon
Eduardo San Martin Morote [Tue, 1 Sep 2020 08:20:25 +0000 (10:20 +0200)] 
chore: remove patreon

4 years agochore: todos
Eduardo San Martin Morote [Tue, 1 Sep 2020 08:19:26 +0000 (10:19 +0200)] 
chore: todos

4 years agochore: up typescript
Eduardo San Martin Morote [Tue, 1 Sep 2020 08:00:23 +0000 (10:00 +0200)] 
chore: up typescript

4 years agodocs: transitions
Eduardo San Martin Morote [Mon, 31 Aug 2020 16:58:02 +0000 (18:58 +0200)] 
docs: transitions

4 years agodocs: fetching and meta
Eduardo San Martin Morote [Mon, 31 Aug 2020 16:23:19 +0000 (18:23 +0200)] 
docs: fetching and meta

4 years agodocs: navigation guards
Eduardo San Martin Morote [Mon, 31 Aug 2020 16:06:32 +0000 (18:06 +0200)] 
docs: navigation guards

4 years agodocs: lazy loading
Eduardo San Martin Morote [Mon, 31 Aug 2020 14:17:46 +0000 (16:17 +0200)] 
docs: lazy loading

4 years agotest: delete duplicate test case (#449)
ruige24601 [Tue, 1 Sep 2020 07:35:28 +0000 (15:35 +0800)] 
test: delete duplicate test case (#449)

4 years agofix(types): allow components defined via defineComponent (#421)
Eduardo San Martin Morote [Mon, 31 Aug 2020 09:11:16 +0000 (11:11 +0200)] 
fix(types): allow components defined via defineComponent (#421)

Co-authored-by: cexbrayat <cedric@ninja-squad.com>
4 years agochore: up deps
Eduardo San Martin Morote [Mon, 31 Aug 2020 08:47:24 +0000 (10:47 +0200)] 
chore: up deps

4 years agodocs: should build docs
Eduardo San Martin Morote [Thu, 27 Aug 2020 14:15:10 +0000 (16:15 +0200)] 
docs: should build docs

4 years agobuild(docs): use script for netlify
Eduardo San Martin Morote [Thu, 27 Aug 2020 14:11:32 +0000 (16:11 +0200)] 
build(docs): use script for netlify

4 years agodocs: fix command
Eduardo San Martin Morote [Thu, 27 Aug 2020 13:57:45 +0000 (15:57 +0200)] 
docs: fix command

4 years agodocs: add netlify.toml
Eduardo San Martin Morote [Thu, 27 Aug 2020 13:54:27 +0000 (15:54 +0200)] 
docs: add netlify.toml

4 years agodocs: use patch-package to patch vite
Eduardo San Martin Morote [Thu, 27 Aug 2020 13:46:20 +0000 (15:46 +0200)] 
docs: use patch-package to patch vite

4 years agochore: up deps
Eduardo San Martin Morote [Thu, 27 Aug 2020 13:19:39 +0000 (15:19 +0200)] 
chore: up deps

4 years agodocs: add docs with vitepress
Eduardo San Martin Morote [Tue, 25 Aug 2020 19:23:51 +0000 (21:23 +0200)] 
docs: add docs with vitepress

4 years agorefactor: fix older edge dev builds
Eduardo San Martin Morote [Mon, 24 Aug 2020 14:29:03 +0000 (16:29 +0200)] 
refactor: fix older edge dev builds

Co-authored-by: BenoitRanque <ranque.benoit@gmail.com>
4 years agochore: add comment [skip ci]
Eduardo San Martin Morote [Mon, 24 Aug 2020 13:26:09 +0000 (15:26 +0200)] 
chore: add comment [skip ci]

4 years agorefactor: avoid double filtering of arrays for guards
Eduardo San Martin Morote [Mon, 24 Aug 2020 13:21:34 +0000 (15:21 +0200)] 
refactor: avoid double filtering of arrays for guards

4 years agorefactor: replace spread with assign
Eduardo San Martin Morote [Mon, 24 Aug 2020 13:05:10 +0000 (15:05 +0200)] 
refactor: replace spread with assign

4 years agobuild(deps-dev): bump jest from 26.4.0 to 26.4.2
dependabot-preview[bot] [Mon, 24 Aug 2020 07:34:48 +0000 (07:34 +0000)] 
build(deps-dev): bump jest from 26.4.0 to 26.4.2

Bumps [jest](https://github.com/facebook/jest) from 26.4.0 to 26.4.2.
- [Release notes](https://github.com/facebook/jest/releases)
- [Changelog](https://github.com/facebook/jest/blob/master/CHANGELOG.md)
- [Commits](https://github.com/facebook/jest/compare/v26.4.0...v26.4.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
4 years agobuild(deps-dev): bump size-limit and @size-limit/preset-small-lib
dependabot-preview[bot] [Mon, 24 Aug 2020 07:21:10 +0000 (07:21 +0000)] 
build(deps-dev): bump size-limit and @size-limit/preset-small-lib

Bumps [size-limit](https://github.com/ai/size-limit) and [@size-limit/preset-small-lib](https://github.com/ai/size-limit). These dependencies needed to be updated together.

Updates `size-limit` from 4.5.6 to 4.5.7
- [Release notes](https://github.com/ai/size-limit/releases)
- [Changelog](https://github.com/ai/size-limit/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ai/size-limit/compare/4.5.6...4.5.7)

Updates `@size-limit/preset-small-lib` from 4.5.6 to 4.5.7
- [Release notes](https://github.com/ai/size-limit/releases)
- [Changelog](https://github.com/ai/size-limit/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ai/size-limit/compare/4.5.6...4.5.7)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
4 years agobuild(deps-dev): bump rollup from 2.26.3 to 2.26.5
dependabot-preview[bot] [Mon, 24 Aug 2020 07:20:04 +0000 (07:20 +0000)] 
build(deps-dev): bump rollup from 2.26.3 to 2.26.5

Bumps [rollup](https://github.com/rollup/rollup) from 2.26.3 to 2.26.5.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v2.26.3...v2.26.5)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
4 years agobuild(deps-dev): bump ts-jest from 26.1.4 to 26.2.0
dependabot-preview[bot] [Mon, 24 Aug 2020 07:13:52 +0000 (07:13 +0000)] 
build(deps-dev): bump ts-jest from 26.1.4 to 26.2.0

Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 26.1.4 to 26.2.0.
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md)
- [Commits](https://github.com/kulshekhar/ts-jest/compare/v26.1.4...v26.2.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
4 years agobuild(deps-dev): bump @microsoft/api-documenter from 7.8.27 to 7.8.33
dependabot-preview[bot] [Mon, 24 Aug 2020 07:13:27 +0000 (07:13 +0000)] 
build(deps-dev): bump @microsoft/api-documenter from 7.8.27 to 7.8.33

Bumps [@microsoft/api-documenter](https://github.com/microsoft/rushstack) from 7.8.27 to 7.8.33.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/compare/@microsoft/api-documenter_v7.8.27...@microsoft/api-documenter_v7.8.33)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
4 years agorefactor(types): jsx attrs types
Eduardo San Martin Morote [Sun, 23 Aug 2020 11:01:32 +0000 (13:01 +0200)] 
refactor(types): jsx attrs types

4 years agofix(types): add HTML attributes for JSX
Eduardo San Martin Morote [Sun, 23 Aug 2020 10:27:29 +0000 (12:27 +0200)] 
fix(types): add HTML attributes for JSX

Close #435

4 years agorelease: v4.0.0-beta.7 v4.0.0-beta.7
Eduardo San Martin Morote [Wed, 19 Aug 2020 13:19:52 +0000 (15:19 +0200)] 
release: v4.0.0-beta.7

4 years agobuild(deps-dev): bump jest from 26.2.2 to 26.4.0
dependabot-preview[bot] [Mon, 17 Aug 2020 09:41:09 +0000 (09:41 +0000)] 
build(deps-dev): bump jest from 26.2.2 to 26.4.0

Bumps [jest](https://github.com/facebook/jest) from 26.2.2 to 26.4.0.
- [Release notes](https://github.com/facebook/jest/releases)
- [Changelog](https://github.com/facebook/jest/blob/master/CHANGELOG.md)
- [Commits](https://github.com/facebook/jest/compare/v26.2.2...v26.4.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
4 years agobuild(deps-dev): bump rollup from 2.23.1 to 2.26.3
dependabot-preview[bot] [Mon, 17 Aug 2020 09:41:11 +0000 (09:41 +0000)] 
build(deps-dev): bump rollup from 2.23.1 to 2.26.3

Bumps [rollup](https://github.com/rollup/rollup) from 2.23.1 to 2.26.3.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v2.23.1...v2.26.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
4 years agobuild(deps-dev): bump @microsoft/api-documenter from 7.8.22 to 7.8.27
dependabot-preview[bot] [Mon, 17 Aug 2020 09:19:55 +0000 (09:19 +0000)] 
build(deps-dev): bump @microsoft/api-documenter from 7.8.22 to 7.8.27

Bumps [@microsoft/api-documenter](https://github.com/microsoft/rushstack) from 7.8.22 to 7.8.27.
- [Release notes](https://github.com/microsoft/rushstack/releases)
- [Commits](https://github.com/microsoft/rushstack/compare/@microsoft/api-documenter_v7.8.22...@microsoft/api-documenter_v7.8.27)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
4 years agobuild(deps-dev): bump @types/jest from 26.0.9 to 26.0.10
dependabot-preview[bot] [Mon, 17 Aug 2020 09:18:07 +0000 (09:18 +0000)] 
build(deps-dev): bump @types/jest from 26.0.9 to 26.0.10

Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 26.0.9 to 26.0.10.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
4 years agobuild(deps-dev): bump vue-loader from 16.0.0-beta.4 to 16.0.0-beta.5
dependabot-preview[bot] [Mon, 17 Aug 2020 09:17:12 +0000 (09:17 +0000)] 
build(deps-dev): bump vue-loader from 16.0.0-beta.4 to 16.0.0-beta.5

Bumps [vue-loader](https://github.com/vuejs/vue-loader) from 16.0.0-beta.4 to 16.0.0-beta.5.
- [Release notes](https://github.com/vuejs/vue-loader/releases)
- [Changelog](https://github.com/vuejs/vue-loader/blob/master/CHANGELOG.md)
- [Commits](https://github.com/vuejs/vue-loader/compare/v16.0.0-beta.4...v16.0.0-beta.5)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>