Socket
Socket
Sign inDemoInstall

svelte-kanban

Package Overview
Dependencies
198
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.934 to 0.0.951

2

components/AddColumnBtn.svelte.d.ts

@@ -5,2 +5,4 @@ import { SvelteComponentTyped } from "svelte";

theme: any;
fontPrimary: any;
secondary: any;
};

@@ -7,0 +9,0 @@ events: {

@@ -10,2 +10,5 @@ import { SvelteComponentTyped } from "svelte";

theme: any;
secondary: any;
fontPrimary: any;
fontSecondary: any;
};

@@ -12,0 +15,0 @@ events: {

@@ -6,2 +6,3 @@ import { SvelteComponentTyped } from "svelte";

bool_show_options: any;
fontPrimary: any;
};

@@ -8,0 +9,0 @@ events: {

10

Kanban.svelte.d.ts

@@ -5,7 +5,7 @@ import { SvelteComponentTyped } from "svelte";

theme?: string;
primary?: string;
secondary?: string;
third?: string;
fontPrimary?: string;
fontSecondary?: string;
primary?: any;
secondary?: any;
third?: any;
fontPrimary?: any;
fontSecondary?: any;
lang?: string;

@@ -12,0 +12,0 @@ minimalist?: boolean;

{
"name": "svelte-kanban",
"version": "0.0.934",
"version": "0.0.951",
"repository": {

@@ -38,20 +38,20 @@ "type": "git",

"devDependencies": {
"@sveltejs/kit": "next",
"@sveltejs/kit": "^1.0.0-next.294",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"autoprefixer": "^10.3.7",
"cssnano": "^5.0.8",
"autoprefixer": "^10.4.2",
"cssnano": "^5.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^3.2.1",
"postcss": "^8.3.9",
"postcss-load-config": "^3.1.0",
"prettier": "^2.4.1",
"prettier-plugin-svelte": "^2.4.0",
"svelte": "^3.42.6",
"svelte-check": "^2.2.6",
"svelte-preprocess": "^4.9.8",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^3.4.1",
"postcss": "^8.4.8",
"postcss-load-config": "^3.1.3",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.6.0",
"svelte": "^3.46.4",
"svelte-check": "^2.4.5",
"svelte-preprocess": "^4.10.4",
"tailwindcss": "^2.2.16",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
"typescript": "^4.6.2"
},

@@ -61,5 +61,5 @@ "type": "module",

"node-sass": "^6.0.1",
"svelte2tsx": "^0.4.10"
"svelte2tsx": "^0.4.14"
},
"svelte": "./Kanban.svelte"
}

@@ -58,6 +58,6 @@ <h1 align="center">

## Styling props (* : available atm)
## Styling props (update 08/03/2022 : AVAILABLE /!\)
| name | default | description |
| :--------------- | :--------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `theme*` | 'light' | string: specify the theme you want to used light/dark |
| `theme` | 'light' | string: specify the theme you want to used light/dark|
| `primary` | `null` | string : if you want to specify the primary background color (behind the kanbans columns / card background)|

@@ -75,4 +75,4 @@ | `secondary` | `null` | string : if you want to specify the secondary background color (kanbans columns)|

| `columnRemove` | `{ position:number, name:string }` | Triggers when a column is removed. |
| `columnAdd` | `{ position: number }` | Triggers when a column is moved. |
| `columnMoved` | `{ old_pos:number, new_pos:number }` | Triggers when a column is added. |
| `columnAdd` | `{ position: number }` | Triggers when a column is added. |
| `columnMoved` | `{ old_pos:number, new_pos:number }` | Triggers when a column is moved. |
| `cardDragStart` | `{card:number, col:number, event:Event}` | Triggers when a card start being dragged. `col` = position of the column, `card` = position of the card in the column, `event`: mousedown event props |

@@ -79,0 +79,0 @@ | `cardDragMove` | `{card:number, col:number, event:Event}` | Triggers every time the card is moving (ie on every mousemove) |

import { writable } from 'svelte/store';
import {Lang} from '../class/Lang';
import {Lang} from '$lib/class/Lang';

@@ -4,0 +4,0 @@ export const number_of_slots = writable(0);

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc