carbon-components-svelte
Advanced tools
Comparing version 0.83.0 to 0.84.0
{ | ||
"name": "carbon-components-svelte", | ||
"version": "0.83.0", | ||
"version": "0.84.0", | ||
"license": "Apache-2.0", | ||
@@ -17,2 +17,6 @@ "description": "Svelte implementation of the Carbon Design System", | ||
}, | ||
"./src/*.js": { | ||
"types": "./types/*.d.ts", | ||
"import": "./src/*.js" | ||
}, | ||
"./src/*": { | ||
@@ -19,0 +23,0 @@ "types": "./types/*.d.ts", |
@@ -44,2 +44,3 @@ import type { SvelteComponentTyped } from "svelte"; | ||
* Specify the icon to render | ||
* Alternatively, use the named slot "icon" (e.g., `<Icon slot="icon" size="{20}" />`) | ||
* @default undefined | ||
@@ -136,3 +137,4 @@ */ | ||
}; | ||
icon: {}; | ||
} | ||
> {} |
import type { SvelteComponentTyped } from "svelte"; | ||
import type { SvelteHTMLElements } from "svelte/elements"; | ||
import type { ButtonProps } from "../Button/Button.svelte"; | ||
type RestProps = SvelteHTMLElements["button"]; | ||
export interface HeaderGlobalActionProps extends RestProps { | ||
export interface HeaderGlobalActionProps extends ButtonProps { | ||
/** | ||
@@ -23,5 +21,3 @@ * Set to `true` to use the active variant | ||
*/ | ||
ref?: null | HTMLButtonElement; | ||
[key: `data-${string}`]: any; | ||
ref?: HTMLButtonElement; | ||
} | ||
@@ -32,3 +28,3 @@ | ||
{ click: WindowEventMap["click"] }, | ||
{ default: {} } | ||
{} | ||
> {} |
Sorry, the diff of this file is too big to display
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7072555
73529