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.
@@ -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
  }
@@ -29,7 +29,6 @@ const abbreviations = {
29
29
  'font-weight': 'FW',
30
30
  'gap': 'G',
31
31
  'height': 'H',
32
- 'href': 'HR',
33
32
  'justify-content': 'J',
34
33
  'left': 'L',
35
34
  'letter-spacing': 'LS',
@@ -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> {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "flinker-dom",
3
3
  "description": "Free TypeScript library for writing frontend apps",
4
- "version": "1.1.7",
4
+ "version": "1.1.8",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/Dittner/FlinkerDOM.git"