Skip to content

Commit

Permalink
webflow: Added Dropdown types
Browse files Browse the repository at this point in the history
  • Loading branch information
alexiglesias93 committed Nov 12, 2021
1 parent 811d038 commit 7c78934
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@finsweet/ts-utils",
"version": "0.24.0",
"version": "0.24.1",
"description": "Typescript utils for custom Webflow projects.",
"main": "index.ts",
"module": "index.ts",
Expand Down
7 changes: 7 additions & 0 deletions types/WebflowElements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,10 @@ export type TabPaneElement = HTMLDivElement;
* Rich Text Block
*/
export type RichTextBlockElement = HTMLDivElement;

/**
* Dropdowns
*/
export type Dropdown = HTMLDivElement;
export type DropdownToggle = HTMLDivElement;
export type DropdownList = HTMLElement;

0 comments on commit 7c78934

Please sign in to comment.