Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

flowbite-svelte

Package Overview
Dependencies
Maintainers
2
Versions
417
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flowbite-svelte - npm Package Compare versions

Comparing version 0.36.4 to 0.36.5

dist/device-mockup/DefaultMockup.svelte

23

dist/device-mockup/Android.svelte.d.ts

@@ -1,17 +0,9 @@

/** @typedef {typeof __propDef.props} AndroidProps */
/** @typedef {typeof __propDef.events} AndroidEvents */
/** @typedef {typeof __propDef.slots} AndroidSlots */
export default class Android extends SvelteComponentTyped<{
[x: string]: never;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type AndroidProps = typeof __propDef.props;
export type AndroidEvents = typeof __propDef.events;
export type AndroidSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: never;
androidTop?: string | undefined;
androidLeftTop?: string | undefined;
androidLeftMid?: string | undefined;
androidLeftBot?: string | undefined;
androidRight?: string | undefined;
};

@@ -23,3 +15,8 @@ events: {

};
export type AndroidProps = typeof __propDef.props;
export type AndroidEvents = typeof __propDef.events;
export type AndroidSlots = typeof __propDef.slots;
export default class Android extends SvelteComponentTyped<AndroidProps, AndroidEvents, AndroidSlots> {
}
export {};
//# sourceMappingURL=Android.svelte.d.ts.map

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

device?: "default" | "ios" | "android" | "tablet" | "laptop" | "desktop" | "smartwatch" | undefined;
defaultDiv?: string | undefined;
defaultSlot?: string | undefined;
iosDiv?: string | undefined;
iosSlot?: string | undefined;
androidDiv?: string | undefined;
androidSlot?: string | undefined;
tabletDiv?: string | undefined;
tabletSlot?: string | undefined;
laptopDiv?: string | undefined;
laptopSlot?: string | undefined;
destopDiv?: string | undefined;
desktopSlot?: string | undefined;
smartwatchDiv?: string | undefined;
smartwatchSlot?: string | undefined;
androidTop: string;
androidLeftTop: string;
androidLeftMid: string;
androidLeftBot: string;
androidRight: string;
defaultTop: string;
defaultLeftTop: string;
defaultLeftBot: string;
defaultRight: string;
iosTop: string;
iosLeftTop: string;
iosLeftBot: string;
iosRight: string;
smartRightTop: string;
smartRightBot: string;
smartTop?: string | undefined;
smartBot?: string | undefined;
smartwatchInner?: string | undefined;
tabletLeftTop: string;
tabletLeftMid: string;
tabletLeftBot: string;
tabletRight: string;
laptopInner?: string | undefined;
laptopBot?: string | undefined;
laptopBotCen?: string | undefined;
desktopInner?: string | undefined;
desktopBot?: string | undefined;
desktopBotUnder?: string | undefined;
};

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

@@ -1,17 +0,8 @@

/** @typedef {typeof __propDef.props} IosProps */
/** @typedef {typeof __propDef.events} IosEvents */
/** @typedef {typeof __propDef.slots} IosSlots */
export default class Ios extends SvelteComponentTyped<{
[x: string]: never;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type IosProps = typeof __propDef.props;
export type IosEvents = typeof __propDef.events;
export type IosSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: never;
iosTop?: string | undefined;
iosLeftTop?: string | undefined;
iosLeftBot?: string | undefined;
iosRight?: string | undefined;
};

@@ -23,3 +14,8 @@ events: {

};
export type IosProps = typeof __propDef.props;
export type IosEvents = typeof __propDef.events;
export type IosSlots = typeof __propDef.slots;
export default class Ios extends SvelteComponentTyped<IosProps, IosEvents, IosSlots> {
}
export {};
//# sourceMappingURL=Ios.svelte.d.ts.map

@@ -1,17 +0,8 @@

/** @typedef {typeof __propDef.props} TabletProps */
/** @typedef {typeof __propDef.events} TabletEvents */
/** @typedef {typeof __propDef.slots} TabletSlots */
export default class Tablet extends SvelteComponentTyped<{
[x: string]: never;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type TabletProps = typeof __propDef.props;
export type TabletEvents = typeof __propDef.events;
export type TabletSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: never;
tabletLeftTop?: string | undefined;
tabletLeftMid?: string | undefined;
tabletLeftBot?: string | undefined;
tabletRight?: string | undefined;
};

@@ -23,3 +14,8 @@ events: {

};
export type TabletProps = typeof __propDef.props;
export type TabletEvents = typeof __propDef.events;
export type TabletSlots = typeof __propDef.slots;
export default class Tablet extends SvelteComponentTyped<TabletProps, TabletEvents, TabletSlots> {
}
export {};
//# sourceMappingURL=Tablet.svelte.d.ts.map

@@ -13,4 +13,4 @@ export const clickOutside = (node, callback) => {

document.removeEventListener('click', handleClick, true);
},
}
};
};
let n = Date.now();
export default function() {
return (++n).toString(36);
export default function () {
return (++n).toString(36);
}
{
"name": "flowbite-svelte",
"version": "0.36.4",
"version": "0.36.5",
"description": "Flowbite components for Svelte",

@@ -20,3 +20,3 @@ "main": "dist/index.js",

"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package && publint",
"prepublishOnly": "npm run add-exports && npm run write-package-json && npm run package && publint",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",

@@ -39,2 +39,3 @@ "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",

"devDependencies": {
"@docsearch/js": "^3.3.5",
"@playwright/test": "^1.34.0",

@@ -47,3 +48,3 @@ "@sveltejs/adapter-vercel": "^3.0.0",

"autoprefixer": "^10.4.14",
"createprops": "^0.6.1",
"createprops": "^0.5.5",
"esbuild": "0.17.19",

@@ -116,3 +117,2 @@ "eslint": "^8.41.0",

"dependencies": {
"@docsearch/js": "^3.3.5",
"@popperjs/core": "^2.11.7",

@@ -235,5 +235,5 @@ "classnames": "^2.3.2",

},
"./Default.svelte": {
"types": "./dist/device-mockup/Default.svelte.d.ts",
"svelte": "./dist/device-mockup/Default.svelte"
"./DefaultMockup.svelte": {
"types": "./dist/device-mockup/DefaultMockup.svelte.d.ts",
"svelte": "./dist/device-mockup/DefaultMockup.svelte"
},

@@ -248,5 +248,5 @@ "./DeviceMockup.svelte": {

},
"./SmartWatch.svelte": {
"types": "./dist/device-mockup/SmartWatch.svelte.d.ts",
"svelte": "./dist/device-mockup/SmartWatch.svelte"
"./Smartwatch.svelte": {
"types": "./dist/device-mockup/Smartwatch.svelte.d.ts",
"svelte": "./dist/device-mockup/Smartwatch.svelte"
},

@@ -253,0 +253,0 @@ "./Tablet.svelte": {

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

# FLOWBITE-SVELTE
# FLOWBITE-SVELTE

@@ -513,2 +513,2 @@ [![npm version](https://badgen.net/npm/v/flowbite-svelte)](https://www.npmjs.com/package/flowbite-svelte)

Flowbite Svelte is open-source under the [MIT License](https://flowbite-svelte.com/docs/pages/license).
Flowbite Svelte is open-source under the [MIT License](https://flowbite-svelte.com/docs/pages/license).

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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