@steeze-ui/svelte-icon
Advanced tools
Comparing version 1.5.0 to 1.6.0
@@ -1,21 +0,12 @@ | ||
import { SvelteComponentTyped } from "svelte"; | ||
/// <reference types="svelte" /> | ||
type $$ComponentProps = { | ||
src: IconSource; | ||
size: string; | ||
theme: string; | ||
title: string | undefined; | ||
[key: string]: any; | ||
}; | ||
import type { IconSource } from './index.js'; | ||
declare const __propDef: { | ||
props: { | ||
[x: string]: any; | ||
src: IconSource; | ||
size?: string | undefined; | ||
theme?: string | undefined; | ||
title?: string | undefined; | ||
}; | ||
events: { | ||
[evt: string]: CustomEvent<any>; | ||
}; | ||
slots: {}; | ||
}; | ||
export type IconProps = typeof __propDef.props; | ||
export type IconEvents = typeof __propDef.events; | ||
export type IconSlots = typeof __propDef.slots; | ||
export default class Icon extends SvelteComponentTyped<IconProps, IconEvents, IconSlots> { | ||
} | ||
export {}; | ||
declare const Icon: import("svelte").Component<$$ComponentProps, {}, "">; | ||
type Icon = ReturnType<typeof Icon>; | ||
export default Icon; |
134
package.json
{ | ||
"name": "@steeze-ui/svelte-icon", | ||
"version": "1.5.0", | ||
"svelte": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
"import": "./dist/index.js", | ||
"svelte": "./dist/index.js" | ||
} | ||
}, | ||
"files": [ | ||
"dist", | ||
"!dist/**/*.test.*", | ||
"!dist/**/*.spec.*" | ||
], | ||
"peerDependencies": { | ||
"svelte": "^4.0.0" | ||
}, | ||
"devDependencies": { | ||
"@steeze-ui/heroicons": "^2.2.2", | ||
"@sveltejs/adapter-auto": "^2.1.0", | ||
"@sveltejs/kit": "^1.20.5", | ||
"@sveltejs/package": "^2.1.0", | ||
"prettier": "^2.8.8", | ||
"prettier-plugin-svelte": "^2.10.1", | ||
"publint": "^0.1.12", | ||
"svelte": "^4.0.0", | ||
"svelte-check": "^3.4.4", | ||
"tslib": "^2.5.3", | ||
"typescript": "^5.1.3", | ||
"vite": "^4.3.9" | ||
}, | ||
"publishConfig": { | ||
"access": "public", | ||
"registry": "https://registry.npmjs.org/" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/steeze-ui/icons.git", | ||
"directory": "packages/components/svelte-icon" | ||
}, | ||
"keywords": [ | ||
"svelte", | ||
"component", | ||
"icon", | ||
"icons", | ||
"steeze" | ||
], | ||
"author": "Justin Voitel <mail@justinv.me>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/steeze-ui/icons/issues" | ||
}, | ||
"homepage": "https://github.com/steeze-ui/icons#readme", | ||
"scripts": { | ||
"dev": "vite dev", | ||
"build": "npm run package", | ||
"preview": "vite preview", | ||
"package": "svelte-kit sync && svelte-package && publint", | ||
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", | ||
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", | ||
"lint": "prettier --plugin-search-dir . --check .", | ||
"format": "prettier --plugin-search-dir . --write ." | ||
} | ||
"name": "@steeze-ui/svelte-icon", | ||
"version": "1.6.0", | ||
"scripts": { | ||
"dev": "vite dev", | ||
"build": "npm run package", | ||
"preview": "vite preview", | ||
"package": "svelte-kit sync && svelte-package && publint", | ||
"prepublishOnly": "npm run package", | ||
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", | ||
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", | ||
"lint": "prettier --plugin-search-dir . --check .", | ||
"format": "prettier --plugin-search-dir . --write ." | ||
}, | ||
"svelte": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
"import": "./dist/index.js", | ||
"default": "./dist/index.js" | ||
} | ||
}, | ||
"files": [ | ||
"dist", | ||
"!dist/**/*.test.*", | ||
"!dist/**/*.spec.*" | ||
], | ||
"peerDependencies": { | ||
"svelte": "^5.0.0" | ||
}, | ||
"devDependencies": { | ||
"@steeze-ui/heroicons": "^2.4.0", | ||
"@sveltejs/adapter-auto": "^2.1.0", | ||
"@sveltejs/kit": "^2.0.0", | ||
"@sveltejs/package": "^2.3.4", | ||
"@sveltejs/vite-plugin-svelte": "^4.0.1", | ||
"prettier": "^3.2.2", | ||
"prettier-plugin-svelte": "^3.2.8", | ||
"publint": "^0.1.12", | ||
"svelte": "^5.2.2", | ||
"svelte-check": "^4.0.0", | ||
"tslib": "^2.5.3", | ||
"typescript": "^5.1.3", | ||
"vite": "^5.0.3" | ||
}, | ||
"publishConfig": { | ||
"access": "public", | ||
"registry": "https://registry.npmjs.org/" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/steeze-ui/icons.git", | ||
"directory": "packages/components/svelte-icon" | ||
}, | ||
"keywords": [ | ||
"svelte", | ||
"component", | ||
"icon", | ||
"icons", | ||
"steeze" | ||
], | ||
"author": "Justin Voitel <mail@justinv.me>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/steeze-ui/icons/issues" | ||
}, | ||
"homepage": "https://github.com/steeze-ui/icons#readme" | ||
} |
Sorry, the diff of this file is not supported yet
5176
13
22