koval-ui 0.15.1 → 0.15.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -94,7 +94,7 @@ showEllipsis?: boolean | undefined;
|
|
|
94
94
|
* import Link from 'next/link'
|
|
95
95
|
* <Breadcrumbs linkComponent={Link} />
|
|
96
96
|
*/
|
|
97
|
-
linkComponent
|
|
97
|
+
linkComponent?: FC<LinkProps> | undefined;
|
|
98
98
|
} & RefAttributes<HTMLDivElement>>;
|
|
99
99
|
|
|
100
100
|
export declare const Button: ForwardRefExoticComponent<DataAttributes & AriaAttributes & {
|
|
@@ -541,13 +541,13 @@ sandbox?: SandboxConfig | undefined;
|
|
|
541
541
|
/**
|
|
542
542
|
* Provide a callback to capture iframe loaded event.
|
|
543
543
|
*/
|
|
544
|
-
onLoad
|
|
544
|
+
onLoad?: ((event: SyntheticEvent<HTMLIFrameElement>) => void) | undefined;
|
|
545
545
|
/**
|
|
546
546
|
* Provide a PermissionsConfig object.
|
|
547
547
|
* @see PermissionsConfig
|
|
548
548
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/allow
|
|
549
549
|
*/
|
|
550
|
-
permissions
|
|
550
|
+
permissions?: PermissionsConfig | undefined;
|
|
551
551
|
/**
|
|
552
552
|
* Enable to render border around iframe
|
|
553
553
|
*/
|