@fluid-topics/ft-button 0.1.17 → 0.1.18
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/build/ft-button.d.ts +2 -2
- package/build/ft-button.inline-styles.js +613 -0
- package/build/ft-button.js +8 -9
- package/build/ft-button.light.js +249 -307
- package/build/ft-button.min.js +282 -330
- package/build/index.d.ts +2 -0
- package/build/index.js +5 -0
- package/build/inline-styles.d.ts +2 -0
- package/build/inline-styles.js +4 -0
- package/package.json +9 -9
package/build/ft-button.d.ts
CHANGED
|
@@ -44,8 +44,8 @@ export declare class FtButton extends FtLitElement implements FtButtonProperties
|
|
|
44
44
|
tooltipPosition: Position;
|
|
45
45
|
private button?;
|
|
46
46
|
private slottedContent?;
|
|
47
|
-
|
|
48
|
-
protected
|
|
47
|
+
static get styles(): import("lit").CSSResult[];
|
|
48
|
+
protected render(): HTMLTemplateResult;
|
|
49
49
|
private addTooltip;
|
|
50
50
|
private resolveIcon;
|
|
51
51
|
onclick: (e: MouseEvent) => void;
|