Skip to content

Commit

Permalink
feat: remove deprecated alias for ActionParams on ESLAlert, ESLPanel,…
Browse files Browse the repository at this point in the history
… ESLPopup, ESLTooltip
  • Loading branch information
dshovchko committed Dec 13, 2024
1 parent 14b7b72 commit 4c99720
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 12 deletions.
3 changes: 0 additions & 3 deletions src/modules/esl-alert/core/esl-alert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ export interface ESLAlertActionParams extends ESLToggleableRequestDetails {
hideTime?: number;
}

/** @deprecated alias, use {@link ESLAlertActionParams} instead. Will be removed in v5.0.0. */
export type AlertActionParams = ESLAlertActionParams;

/**
* ESLAlert component
* @author Julia Murashko, Alexey Stsefanovich (ala'n)
Expand Down
3 changes: 0 additions & 3 deletions src/modules/esl-panel/core/esl-panel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ export interface ESLPanelActionParams extends ESLToggleableActionParams {
noAnimate?: boolean;
}

/** @deprecated alias, use {@link ESLPanelActionParams} instead. Will be removed in v5.0.0. */
export type PanelActionParams = ESLPanelActionParams;

/**
* ESLPanel component
* @author Julia Murashko
Expand Down
3 changes: 0 additions & 3 deletions src/modules/esl-popup/core/esl-popup-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ export interface ESLPopupActionParams extends ESLToggleableActionParams {
extraStyle?: string;
}

/** @deprecated alias, use {@link ESLPopupActionParams} instead, will be removed in v5.0.0 */
export type PopupActionParams = ESLPopupActionParams;

export type ProxiedParams = Required<ESLPopupActionParams>;

/** List of ESLPopupActionParams keys */
Expand Down
3 changes: 0 additions & 3 deletions src/modules/esl-tooltip/core/esl-tooltip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ export const KEYSOF_TOOLTIP_ACTION_PARAMS: string[] = [
'lang',
'disableArrow'] as const;

/** @deprecated alias, use {@link ESLTooltipActionParams} instead. Will be removed in v5.0.0. */
export type TooltipActionParams = ESLTooltipActionParams;

@ExportNs('Tooltip')
export class ESLTooltip extends ESLPopup {
static override is = 'esl-tooltip';
Expand Down

0 comments on commit 4c99720

Please sign in to comment.