@duyluonganduin/acl-web-components 0.0.3 → 0.0.5

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;
@@ -167,6 +199,7 @@ export declare class AnduinTabContent extends LitElement {
167
199
  value: string;
168
200
  private isActive;
169
201
  connectedCallback(): void;
202
+ updated(changed: Map<string, unknown>): void;
170
203
  render(): TemplateResult<1>;
171
204
  }
172
205
 
@@ -174,6 +207,7 @@ export declare class AnduinTabs extends LitElement {
174
207
  static styles: CSSResult;
175
208
  defaultValue: string;
176
209
  value: string;
210
+ fill: boolean;
177
211
  connectedCallback(): void;
178
212
  updated(changed: Map<string, unknown>): void;
179
213
  private broadcastValueChanged;
@@ -198,6 +232,8 @@ export declare class AnduinTabTrigger extends LitElement {
198
232
  value: string;
199
233
  startIcon: string;
200
234
  disabled: boolean;
235
+ showBadge: boolean;
236
+ badgeCount: string;
201
237
  private isActive;
202
238
  connectedCallback(): void;
203
239
  private onClick;
@@ -312,6 +348,8 @@ export declare function getBadgeVariantClass(variant: string): string;
312
348
 
313
349
  export declare const INPUT_CHANGE = "anduin-input:change";
314
350
 
351
+ export declare const MENU_ITEM_CLICK = "anduin-menu-item:click";
352
+
315
353
  export declare const TAB_CHANGE = "anduin-tab:change";
316
354
 
317
355
  export declare const TAB_TRIGGER_CLICK = "anduin-tab:trigger-click";