flinker-dom 1.1.7 → 1.1.8
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/esm/components.js
CHANGED
|
@@ -382,7 +382,6 @@ export const btn = () => {
|
|
|
382
382
|
export class LinkBtn extends Button {
|
|
383
383
|
didDomUpdate() {
|
|
384
384
|
super.didDomUpdate();
|
|
385
|
-
this.props.href && this.dom.setAttribute('href', this.props.href);
|
|
386
385
|
this.props.target && this.dom.setAttribute('target', this.props.target);
|
|
387
386
|
}
|
|
388
387
|
}
|
package/dist/esm/processor.js
CHANGED
|
@@ -82,7 +82,6 @@ export declare class Button<P extends ButtonProps> extends Text<P> {
|
|
|
82
82
|
}
|
|
83
83
|
export declare const btn: <P extends ButtonProps>() => Button<P>;
|
|
84
84
|
export interface LinkProps extends ButtonProps {
|
|
85
|
-
href?: string;
|
|
86
85
|
target?: '_self' | '_blank' | '_parent';
|
|
87
86
|
}
|
|
88
87
|
export declare class LinkBtn<P extends LinkProps> extends Button<P> {
|