Socket
Socket
Sign inDemoInstall

chronocraft-scroller-vue

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chronocraft-scroller-vue - npm Package Compare versions

Comparing version 0.0.7 to 0.0.8

dist/chronoscrollervue-browser.min.js

75

dist/cjs/index.js

@@ -1,67 +0,14 @@

'use strict';Object.defineProperty(exports,'__esModule',{value:true});var Scroller=require('./Scroller-e189c219.js'),index=require('./index-86602ac3.js'),TestWorld=require('./TestWorld-cbf4a4cd.js');require('vue');/* import { App as Application } from "vue";
import Scroller from "./Scroller.vue";
import { registerComponent } from "./../../utils/plugins/index";
// chronocraft-scroller-vue
// A VueJS 3.0 building template to create your own components library
// https://github.com/yannisraft/chronocraft-scroller-vue.git
// v0.0.20
// undefined License
const Plugin = {
install(vue: Application) {
registerComponent(vue, Scroller);
}
};
// use(Plugin);
export default Plugin;
export { Scroller }; */
const Plugin$1 = {
install(vue) {
index.r(vue, Scroller.s);
'use strict';Object.defineProperty(exports,'__esModule',{value:true});var TimeClock=require('./TimeClock-e56decd6.js'),CountDownTimer=require('./CountDownTimer-9d38ea6a.js');require('vue'),require('./style-inject.es-23948a6b.js');var components=/*#__PURE__*/Object.freeze({__proto__:null,TimeClock:TimeClock.s,CountDownTimer:CountDownTimer.s});const Plugin = {
install(app) {
Object.entries(components).forEach(([componentName, component]) => {
app.component(componentName, component);
});
}
};const Plugin = {
install(vue) {
index.r(vue, TestWorld.s);
}
};//export { default as Scroller } from './scroller';
var components=/*#__PURE__*/Object.freeze({__proto__:null,Scroller:Plugin$1,TestWorld:Plugin});/* eslint-disable */
const install = (instance) => {
for (let componentKey in components) {
instance.use((components)[componentKey]);
}
};
/* import { App as Application, Plugin } from "vue";
import * as components from "./components/index";
import { setVueInstance } from "./utils/config/index";
const install: Exclude<Plugin["install"], undefined> = (
instance: Application
) => {
setVueInstance(instance);
for (const componentKey in components) {
instance.use((components as any)[componentKey]);
}
};
export default install;
export * from "./components";
export * from './utilities'; */
/* import { App as Application, Plugin } from "vue";
import * as components from './components';
const Plugin: Plugin = {
install(app: Application) {
Object.entries(components).forEach(([componentName, component]) => {
app.component(componentName, component);
});
}
}
// Default export is library as a whole, registered via Vue.use()
export default Plugin;
// Allow component use individually
export * from './components';
export * from './utilities'; */exports.Scroller=Plugin$1;exports.TestWorld=Plugin;exports["default"]=install;
};exports.TimeClock=TimeClock.s;exports.CountDownTimer=CountDownTimer.s;exports["default"]=Plugin;

@@ -1,85 +0,29 @@

import { s as script } from './Scroller-62252d13.js';
import { r as registerComponent } from './index-2dd02089.js';
import { s as script$1 } from './TestWorld-228142dd.js';
import 'vue';
/* import { App as Application } from "vue";
import Scroller from "./Scroller.vue";
// chronocraft-scroller-vue
// A VueJS 3.0 building template to create your own components library
// https://github.com/yannisraft/chronocraft-scroller-vue.git
// v0.0.20
// undefined License
import { registerComponent } from "./../../utils/plugins/index";
import { s as script } from './TimeClock-b431594d.js';
export { s as TimeClock } from './TimeClock-b431594d.js';
import { s as script$1 } from './CountDownTimer-714d8fe7.js';
export { s as CountDownTimer } from './CountDownTimer-714d8fe7.js';
import 'vue';
import './style-inject.es-6bf23337.js';
const Plugin = {
install(vue: Application) {
registerComponent(vue, Scroller);
}
};
// use(Plugin);
export default Plugin;
export { Scroller }; */
const Plugin$1 = {
install(vue) {
registerComponent(vue, script);
}
};
const Plugin = {
install(vue) {
registerComponent(vue, script$1);
}
};
//export { default as Scroller } from './scroller';
var components = /*#__PURE__*/Object.freeze({
__proto__: null,
Scroller: Plugin$1,
TestWorld: Plugin
TimeClock: script,
CountDownTimer: script$1
});
/* eslint-disable */
const install = (instance) => {
for (let componentKey in components) {
instance.use((components)[componentKey]);
const Plugin = {
install(app) {
Object.entries(components).forEach(([componentName, component]) => {
app.component(componentName, component);
});
}
};
/* import { App as Application, Plugin } from "vue";
import * as components from "./components/index";
import { setVueInstance } from "./utils/config/index";
const install: Exclude<Plugin["install"], undefined> = (
instance: Application
) => {
setVueInstance(instance);
for (const componentKey in components) {
instance.use((components as any)[componentKey]);
}
};
export default install;
export * from "./components";
export * from './utilities'; */
/* import { App as Application, Plugin } from "vue";
import * as components from './components';
const Plugin: Plugin = {
install(app: Application) {
Object.entries(components).forEach(([componentName, component]) => {
app.component(componentName, component);
});
}
}
// Default export is library as a whole, registered via Vue.use()
export default Plugin;
// Allow component use individually
export * from './components';
export * from './utilities'; */
export { Plugin$1 as Scroller, Plugin as TestWorld, install as default };
export { Plugin as default };
{
"name": "chronocraft-scroller-vue",
"version": "0.0.7",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"unpkg": "dist/vuelib.min.js",
"types": "types/index.d.ts",
"files": [
"dist",
"src",
"types/*.d.ts"
],
"sideEffects": [
"*.css",
"*.scss"
],
"config": {
"commitizen": {
"path": "git-cz"
}
},
"scripts": {
"cz": "git-cz",
"serve": "vue-cli-service serve",
"lint": "vue-cli-service lint",
"build:types": "tsc --build tsconfigtypes.json",
"build:es": "rimraf dist && cross-env NODE_ENV=production rollup --config rollup.config.js --format es && yarn build:types",
"build:js": "rimraf dist && cross-env NODE_ENV=production rollup --config rollup.config.js && yarn build:types",
"build:js_css": "rimraf dist && cross-env NODE_ENV=production SEP_CSS=true rollup --config rollup.config.js && yarn build:types"
},
"dependencies": {
"core-js": "^3.6.5",
"sass-loader": "^10.1.1",
"vue": "^3.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "7.12.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-image": "^2.0.5",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-url": "^5.0.1",
"@typescript-eslint/eslint-plugin": "2.33.0",
"@typescript-eslint/parser": "2.33.0",
"@vue/cli-plugin-babel": "4.5.0",
"@vue/cli-plugin-eslint": "4.5.0",
"@vue/cli-plugin-typescript": "4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-prettier": "6.0.0",
"@vue/eslint-config-typescript": "5.0.2",
"autoprefixer": "^9.7.8",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-vue": "^7.1.0",
"git-cz": "^4.7.4",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"postcss": "^8.0.0",
"postcss-import": "12.0.1",
"postcss-inline-svg": "^4.1.0",
"postcss-loader": "^4.0.4",
"postcss-nested": "^4.2.1",
"postcss-simple-vars": "5.0.2",
"postcss-url": "^8.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.30.0",
"rollup-plugin-css-only": "^2.1.0",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "0.28.0",
"rollup-plugin-vue": "^6.0.0-beta.10",
"sass": "^1.49.4",
"typescript": "^4.3.5",
"vue-cli-plugin-webpack-bundle-analyzer": "^2.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"keywords": [
"scroller",
"smooth",
"scrollable",
"infinite",
"draggable",
"cal",
"scroll",
"cal",
"bidirectional",
"scrolling"
],
"license": "MIT",
"homepage": "https://github.com/yannisraft/chronocraft-scroller-vue"
"name": "chronocraft-scroller-vue",
"buildname": "chronoscrollervue",
"version": "0.0.8",
"description": "A Vue 3 Dynamic and Versatile High Performance Infinite Scroller Component",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"unpkg": "dist/chronocraft-scroller-vue.min.js",
"files": [
"dist/*",
"src"
],
"sideEffects": [
"*.css",
"*.scss"
],
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js",
"build:css": "cross-env NODE_ENV=production SEP_CSS=true rollup -c rollup.config.js",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "https://github.com/yannisraft/chronocraft-scroller-vue.git"
},
"peerDependencies": {
"core-js": "^3.6.5",
"vue": "^3.2.30"
},
"dependencies": {
"core-js": "^3.6.5",
"vue": "^3.2.30"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.0.1",
"@rollup/plugin-url": "^6.1.0",
"@types/jest": "^27.0.1",
"@vue/cli-plugin-babel": "~5.0.0-rc.2",
"@vue/cli-plugin-e2e-cypress": "~5.0.0-rc.2",
"@vue/cli-plugin-typescript": "~5.0.0-rc.2",
"@vue/cli-plugin-unit-jest": "~5.0.0-rc.2",
"@vue/cli-service": "~5.0.0-rc.2",
"@vue/test-utils": "^2.0.0-0",
"@vue/vue3-jest": "^27.0.0-alpha.1",
"autoprefixer": "^10.4.2",
"babel-jest": "^27.0.6",
"cross-env": "^7.0.3",
"cypress": "^8.3.0",
"jest": "^27.0.5",
"postcss": "^8.4.6",
"postcss-import": "^14.0.2",
"postcss-inline-svg": "^5.0.0",
"postcss-loader": "^6.2.1",
"postcss-nested": "^5.0.6",
"postcss-simple-vars": "^6.0.3",
"postcss-url": "^10.1.3",
"rollup": "^2.67.1",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"rollup-plugin-vue": "^6.0.0",
"ts-jest": "^27.0.4",
"typescript": "~4.1.5",
"vuepress": "^2.0.0-beta.35"
}
}

@@ -0,0 +0,0 @@ # A Vue 3 Dynamic and Versatile High Performance Infinite Scroller Component

@@ -1,6 +0,2 @@

//export { default as Scroller } from './scroller';
import Scroller from "./scroller";
import TestWorld from "./testworld";
export { Scroller, TestWorld };
export { default as TimeClock } from './TimeClock';
export { default as CountDownTimer } from './CountDownTimer';

@@ -1,55 +0,15 @@

/* eslint-disable */
import * as components from "./components/index"
const install = (instance) => {
for (let componentKey in components) {
instance.use((components)[componentKey])
}
}
export default install
export * from './components'
/* import { App as Application, Plugin } from "vue";
import * as components from "./components/index";
import { setVueInstance } from "./utils/config/index";
const install: Exclude<Plugin["install"], undefined> = (
instance: Application
) => {
setVueInstance(instance);
for (const componentKey in components) {
instance.use((components as any)[componentKey]);
}
};
export default install;
export * from "./components";
export * from './utilities'; */
/* import { App as Application, Plugin } from "vue";
import { App as Application, Plugin } from "vue";
import * as components from './components';
const Plugin: Plugin = {
install(app: Application) {
Object.entries(components).forEach(([componentName, component]) => {
app.component(componentName, component);
});
install(app: Application) {
Object.entries(components).forEach(([componentName, component]) => {
app.component(componentName, component);
});
}
}
}
// Default export is library as a whole, registered via Vue.use()
export default Plugin;
export default Plugin
// Allow component use individually
export * from './components';
export * from './utilities'; */
export * from './components';

@@ -1,6 +0,4 @@

import { createApp,h } from "vue";
import App from "./App.vue";
import { createApp } from 'vue'
import App from './App.vue'
createApp({
render: ()=>h(App)
}).mount("#app");
createApp(App).mount('#app')

@@ -0,1 +1,2 @@

/* eslint-disable */
declare module '*.vue' {

@@ -2,0 +3,0 @@ import type { DefineComponent } from 'vue'

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc