@fluid-topics/ft-button 1.3.31 → 1.3.33

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.
@@ -47,7 +47,7 @@ export declare class FtBaseButton extends FtBaseButton_base implements FtBaseBut
47
47
  private addTooltipIfNeeded;
48
48
  private resolveIcon;
49
49
  focus(): void;
50
- focusWithoutTooltip(): void;
50
+ showTooltip(): void;
51
51
  showTemporaryTooltip(text: string, duration: number): Promise<void> | undefined;
52
52
  private setTooltipManual;
53
53
  click(): void;
@@ -113,11 +113,9 @@ class FtBaseButton extends toFtFormComponent(FtLitElement) {
113
113
  var _a;
114
114
  (_a = this.button) === null || _a === void 0 ? void 0 : _a.focus();
115
115
  }
116
- focusWithoutTooltip() {
116
+ showTooltip() {
117
117
  var _a;
118
- this.setTooltipManual(true);
119
- (_a = this.button) === null || _a === void 0 ? void 0 : _a.focus();
120
- this.setTooltipManual(false);
118
+ (_a = this.tooltip) === null || _a === void 0 ? void 0 : _a.show();
121
119
  }
122
120
  showTemporaryTooltip(text, duration) {
123
121
  var _a;