npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

mad_dateschedule

v0.5.4

Published

(```) <date-schedule-table :disabled="disabled" v-model="list" :edit_ranger="edit_ranger" :initdate="initdate"> </date-schedule-table> (```)

Readme

DataSchedule2 说明文档

运行集成环境

cd test && vue ui

发布组件

cd test && webpack && npm version xx.xx.xx && npm publish

应用实例

<date-schedule-table 
	:include_today="true"  
	:disabled="disabled" 
	v-model="list" 
	:edit_ranger="edit_ranger" 
	:initdate="initdate"> 
</date-schedule-table>

组件按装

     npm install mad_dateschedule --save-dev

参数说明

组件参数 v-model/value (必要参数,如果没有数据,可以传入[])

v-model/value 需要传入到日期表格里面的数据。如果没有需要传入的数据。则v-model/value 为[] v-model/value 需要传入时,数据格式 如下

[
    ....{
	id:moment().add(i,"day").format("YYYY-MM-DD"),
	date:moment().add(i,"day"),
	component_data:{
	    clicks:Math.ceil(Math.random()*10000),
	    impressions:Math.ceil(Math.random()*10000),
	    budget:Math.ceil(Math.random()*10000).toFixed(2)
	}
    }....
]
	

组件参数 edit_ranger (非必要参数 默认为 [])

日期表格中的数据那些日期表格中的数据可以编辑
格式如下

    [
      ...{id:"2012-12-12"}...
    ]

组件参数 initdate ="2020-12-12" (非必要参数)

    日期表格中的初始化日期,默认为当天日期

组件参数 disabled (非必要参数,默认为 false)

是否禁用掉所有的日期表格操作

组件参数 include_today(非必要参数 默认为true)

组件的操作是否禁用 当天的数据