@duyluonganduin/acl-web-components 0.0.11 → 0.0.13

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.
@@ -202,6 +202,9 @@ export declare class AnduinModal extends LitElement {
202
202
  private dispatch;
203
203
  private onOverlayClick;
204
204
  private onClose;
205
+ private onAnduinClose;
206
+ connectedCallback(): void;
207
+ disconnectedCallback(): void;
205
208
  render(): TemplateResult<1>;
206
209
  }
207
210
 
@@ -246,6 +249,31 @@ export declare class AnduinProgress extends LitElement {
246
249
  render(): TemplateResult<1>;
247
250
  }
248
251
 
252
+ export declare class AnduinRadio extends LitElement {
253
+ static styles: CSSResult;
254
+ checked: boolean;
255
+ disabled: boolean;
256
+ readonly: boolean;
257
+ value: string;
258
+ name: string;
259
+ inputid: string;
260
+ connectedCallback(): void;
261
+ private _select;
262
+ private _onInputChange;
263
+ render(): TemplateResult<1>;
264
+ }
265
+
266
+ export declare class AnduinRadioGroup extends LitElement {
267
+ static styles: CSSResult;
268
+ value: string;
269
+ name: string;
270
+ orientation: 'vertical' | 'horizontal';
271
+ connectedCallback(): void;
272
+ disconnectedCallback(): void;
273
+ private _onRadioChange;
274
+ render(): TemplateResult<1>;
275
+ }
276
+
249
277
  export declare class AnduinSkeleton extends LitElement {
250
278
  static styles: CSSResult;
251
279
  effect: string;
@@ -463,6 +491,10 @@ export declare const MENU_ITEM_CLICK = "anduin-menu-item:click";
463
491
 
464
492
  export declare const POPOVER_CLOSE = "anduin-popover:close";
465
493
 
494
+ export declare const RADIO_CHANGE = "anduin-radio:change";
495
+
496
+ export declare const RADIO_GROUP_CHANGE = "anduin-radio-group:change";
497
+
466
498
  export declare function resolveFileIcon(type: string, size: 16 | 24 | 32): FileIconDef | null;
467
499
 
468
500
  export declare const TAB_CHANGE = "anduin-tab:change";