Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
dayspan-vuetify
Advanced tools
A collection of components for Schedules and Calendars in DaySpan using Vuetify
A collection of components for Schedules and Calendars in DaySpan using Vuetify
This library strives to offer all the functionality any modern calendar app could support, and more. Not only can this be used for calendar apps, but any application where the user wishes to control when events should occur within a system.
Click here for a full app example
Every feature of the library can be toggled with local and global settings, and all text can be localized.
This library is nearing functional completion (documentation on every component, prop, event, slot, method will have to wait) but is still subject to the occasional small change in API.
Install with npm install --save dayspan-vuetify
This library works best with Vuetify >= 1.1.9
import DaySpanVuetify from 'dayspan-vuetify'
Vue.use( DaySpanVuetify, {
// options is vue definition, the resulting reactive component is stored in components as this.$dayspan or Vue.$dayspan
data: {
// data or computed to override
},
computed: {
// data or computed to override
},
methods: {
// methods to override
}
});
To see what options can be passed to the plugin, checkout this file.
Once done, you can access components like ds-event
, ds-calendar
, and ds-calendar-app
from any component (they are registered globally).
Checkout dayspan-vuetify-example for an example of a calendar app which saves events to localStorage.
Install with npm install --save dayspan-vuetify
import Vue from 'vue'
import Vuetify from 'vuetify'
import DaySpanVuetify from 'dayspan-vuetify'
import App from './App.vue'
import 'vuetify/dist/vuetify.min.css'
import 'material-design-icons-iconfont/dist/material-design-icons.css'
import 'dayspan-vuetify/dist/lib/dayspan-vuetify.min.css'
Vue.config.productionTip = false
Vue.use(Vuetify);
Vue.use(DaySpanVuetify, {
methods: {
getDefaultEventColor: () => '#1976d2'
}
});
new Vue({
el: '#app',
render: h => h(App)
})
<template>
<v-app id="dayspan" v-cloak>
<ds-calendar-app :calendar="calendar"></ds-calendar-app>
</v-app>
</template>
<script>
import { Calendar } from 'dayspan';
export default {
name: 'app',
data: () => ({
calendar: Calendar.months()
})
}
</script>
<style>
body, html, #app, #dayspan {
font-family: Roboto, sans-serif;
width: 100%;
height: 100%;
}
</style>
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons' rel="stylesheet">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>You Calendar App Title</title>
<style> [v-cloak] { display: none; } </style>
</head>
<body>
<div id="app"></div>
<!-- built files should be auto injected -->
</body>
</html>
This library supports multiple locales but the build only comes with en-us/en. The following code shows you how to add locales, changing the current locale, and updating a given locale:
// You can access $dayspan via Vue.$dayspan or this.$dayspan inside a component.
$dayspan.setLocale('en'); // if en does not exist, this will have no affect
$dayspan.setLocale('fr', true); // true was passed, so if the locale does not exist an error is thrown
$dayspan.locales; // map of locale names to locale values
// A locale is really just an object that overrides the values you specify found in $dayspan. A locale does not need to specify all possible values, just ones that should be overriden when setLocale is called.
$dayspan.addLocale('es', {
promptLabels: {
// Are you sure you want to remove this event?
actionRemove: '¿Estás seguro de que quieres eliminar este evento?'
}
});
// Update locale (merge changes into locale)
$dayspan.updateLocale('en', {
patterns: {
lastDay: (day) => 'Final day of the month'
}
});
import fr from 'dayspan-vuetify/src/locales/fr';
import Vue from 'vue';
// dayspan-vuetify should already be loaded at this point
Vue.$dayspan.addLocales(['fr', 'fr-CA', 'fr-BE', 'fr-CH', 'fr-FR', 'fr-LU', 'fr-MC'], fr);
import nl from 'dayspan-vuetify/src/locales/nl';
import Vue from 'vue';
// dayspan-vuetify should already be loaded at this point
Vue.$dayspan.addLocales(['nl', 'nl-NL', 'nl-BE'], nl);
import ca from 'dayspan-vuetify/src/locales/ca';
import Vue from 'vue';
// dayspan-vuetify should already be loaded at this point
Vue.$dayspan.addLocales(['ca', 'ca-ES'], ca);
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
# build for production and view the bundle analyzer report
npm run build --report
For detailed explanation on how things work, checkout the guide and docs for vue-loader.
FAQs
A collection of components for Schedules and Calendars in DaySpan using Vuetify
The npm package dayspan-vuetify receives a total of 677 weekly downloads. As such, dayspan-vuetify popularity was classified as not popular.
We found that dayspan-vuetify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.