@duyluonganduin/acl-web-components 0.0.2 → 0.0.4

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.
@@ -136,6 +136,38 @@ export declare class AnduinLoadingState extends LitElement {
136
136
  render(): TemplateResult<1>;
137
137
  }
138
138
 
139
+ export declare class AnduinMenu extends LitElement {
140
+ static styles: CSSResult;
141
+ open: boolean;
142
+ placement: 'bottom-start' | 'bottom-end' | 'bottom' | 'top-start' | 'top-end' | 'top';
143
+ private _onTriggerClick;
144
+ private _onOutsideClick;
145
+ private _onItemClick;
146
+ connectedCallback(): void;
147
+ disconnectedCallback(): void;
148
+ render(): TemplateResult<1>;
149
+ }
150
+
151
+ export declare class AnduinMenuItem extends LitElement {
152
+ static styles: CSSResult;
153
+ icon: string;
154
+ variant: 'default' | 'danger';
155
+ disabled: boolean;
156
+ private _onClick;
157
+ render(): TemplateResult<1>;
158
+ }
159
+
160
+ export declare class AnduinPopover extends LitElement {
161
+ static styles: CSSResult;
162
+ open: boolean;
163
+ placement: 'bottom-start' | 'bottom-end' | 'bottom' | 'top-start' | 'top-end' | 'top';
164
+ private _onTriggerClick;
165
+ private _onOutsideClick;
166
+ connectedCallback(): void;
167
+ disconnectedCallback(): void;
168
+ render(): TemplateResult<1>;
169
+ }
170
+
139
171
  export declare class AnduinProgress extends LitElement {
140
172
  static styles: CSSResult;
141
173
  percent: string;
@@ -198,6 +230,8 @@ export declare class AnduinTabTrigger extends LitElement {
198
230
  value: string;
199
231
  startIcon: string;
200
232
  disabled: boolean;
233
+ showBadge: boolean;
234
+ badgeCount: string;
201
235
  private isActive;
202
236
  connectedCallback(): void;
203
237
  private onClick;
@@ -312,6 +346,8 @@ export declare function getBadgeVariantClass(variant: string): string;
312
346
 
313
347
  export declare const INPUT_CHANGE = "anduin-input:change";
314
348
 
349
+ export declare const MENU_ITEM_CLICK = "anduin-menu-item:click";
350
+
315
351
  export declare const TAB_CHANGE = "anduin-tab:change";
316
352
 
317
353
  export declare const TAB_TRIGGER_CLICK = "anduin-tab:trigger-click";