Skip to content

Commit

Permalink
[update] added drawer d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduardo Ferreira committed Apr 29, 2021
1 parent 290d27f commit 63aaf14
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/drawer/kor-drawer.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { LitElement } from 'lit-element';
/**
* @prop {String} label - If set, defines the text label.
* @prop {String} icon - If set, defines the icon shown close to the label.
* @prop {'left'|'right'|'top'|'bottom'} position - Defines the position of the component in the screen. Possible values are left, right, top and bottom.
* @prop {'row'|'column'} flexDirection - Defines the direction in which the slotted content flows (e.g. top to bottom or left to right). Possible values are column and row.
* @prop {'left'|'right'|'top'|'bottom'} position - Defines the position of the component in the screen. Possible values are `left`, `right`, `top` and `bottom`.
* @prop {'row'|'column'} flexDirection - Defines the direction in which the slotted content flows (e.g. top to bottom or left to right). Possible values are `column` and `row`.
* @prop {String} height - Defines the height of the container (not the overlay).
* @prop {String} width - Defines the width of the container (not the overlay).
* @prop {Boolean} visible - If set to true, displays the component on top of the screen.
Expand All @@ -17,10 +17,10 @@ import { LitElement } from 'lit-element';
export declare class korDrawer extends LitElement {
label: any;
icon: any;
position: string;
position: 'left' | 'right' | 'top' | 'bottom';
height: string;
width: string;
flexDirection: string;
flexDirection: 'row' | 'column';
visible: boolean;
sticky: any;
/** @ignore */
Expand Down

0 comments on commit 63aaf14

Please sign in to comment.