@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.
- package/dist/acl-web-components.cjs +1 -1531
- package/dist/acl-web-components.d.ts +32 -0
- package/dist/acl-web-components.js +71 -4325
- package/dist/anduin-toast-B-9dgTkL.cjs +1653 -0
- package/dist/anduin-toast-ovQqFluZ.js +4529 -0
- package/dist/jsx.d.ts +366 -0
- package/dist/react.cjs +1 -0
- package/dist/react.d.ts +616 -347
- package/dist/react.js +109 -0
- package/package.json +20 -3
|
@@ -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";
|