An open API service providing repository metadata for many open source software ecosystems.

GitHub / nativescript-vue / nativescript-vue

Native mobile applications using Vue and NativeScript.

JSON API: http://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nativescript-vue%2Fnativescript-vue
PURL: pkg:github/nativescript-vue/nativescript-vue

Stars: 5,570
Forks: 245
Open issues: 31

License: mit
Language: TypeScript
Size: 25.4 MB
Dependencies parsed at: Pending

Created at: over 8 years ago
Updated at: 15 days ago
Pushed at: 2 months ago
Last synced at: 13 days ago

Commit Stats

Commits: 75
Authors: 6
Mean commits per author: 12.5
Development Distribution Score: 0.147
More commit stats: https://commits.ecosyste.ms/hosts/GitHub/repositories/nativescript-vue/nativescript-vue

Topics: android, ios, native, nativescript, nativescript-plugin, nativescript-vue, vue

Funding Links https://github.com/sponsors/rigor789, https://patreon.com/rigor789

Releases
3.0.0

3.0.0

What’s Changed

New Contributors

Full Changelog: https://github.com/nativescript-vue/nativescript-vue/compare/3.0.0-rc.3...3.0.0

5 months ago
Download
3.0.0-rc.3

3.0.0-rc.3

What’s Changed

Full Changelog: https://github.com/nativescript-vue/nativescript-vue/compare/3.0.0-rc.2...3.0.0-rc.3

6 months ago
Download
3.0.0-rc.2

3.0.0-rc.2

$showModal changes

If a closeCallback is passed to the $showModal options, it will now be called with all the arguments passed to $modal.close or $closeModal. Previously this was never called.

The props types are automatically inferred unless there’s a first generic passed in.

/* Without a generic */
$showModal(Home, {
  props: {
     // this infers props/events from the "Home" component and provides intellisense.
  },
  closeCallback(data, ...args) {
    // data type is any
    // args type is any[]
  }
}).then(data => {
  // data type is any
});
/* With a generic */
type Example = { foo: string; };
$showModal<Example>(Home, {
  props: {
    // this is `any` because we explicitly passed in `<Example>` as the generic above.
  }
  closeCallback(data, ...args) {
    // data type is Example
    // args type is any[]
    // this is called with the closeModal data + additional args
  }
}).then(data => { 
  // data type is Example
  // this is called with only the 1st argument passed to closeModal because promises can't resolve multiple values.
});

$navigateTo changes

Similarly to $showModal the type of props is now inferred.

Full Changelog: https://github.com/nativescript-vue/nativescript-vue/compare/3.0.0-rc.1...3.0.0-rc.2

over 1 year ago
Download
3.0.0-rc.1

3.0.0-rc.1

What’s Changed

New Contributors

Full Changelog: https://github.com/nativescript-vue/nativescript-vue/commits/3.0.0-rc.1

over 1 year ago
Download
v2.9.3

v2.9.3

2.9.3 (2022-08-09)

Features

  • template-compiler: include sfc tag locations (792e6ba)
about 3 years ago
Download
v2.9.1

v2.9.1

2.9.1 (2022-03-08)

Bug Fixes

over 3 years ago
Download
v2.9.0

v2.9.0

2.9.0 (2021-04-01)

Features

over 4 years ago
Download
v2.8.4

v2.8.4

2.8.4 (2021-03-10)

Bug Fixes

  • child of NavigationEntry key generated in render (#813) (#814) (ee47fc1)
  • incorrect nextSibling of prevSibling in appendChild/insertBefore (#811) (5156f20), closes #809 #809
over 4 years ago
Download
v2.7.2

v2.7.2

2.7.2 (2021-02-10)

Bug Fixes

  • patchTemplate should flush pending callbacks (#790) (199a31a)
over 4 years ago
Download
v2.8.3

v2.8.3

2.8.3 (2020-11-24)

Bug Fixes

  • patchTemplate should flush pending callbacks (9125286)
over 4 years ago
Download