@momentum-ui/web-components 3.2.3 → 3.2.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.
- package/dist/comp/md-accordion-entry.js +2 -2
- package/dist/comp/md-accordion-item-entry.js +4 -3
- package/dist/esm/comp/md-accordion-entry.js +2 -2
- package/dist/esm/comp/md-accordion-item-entry.js +4 -3
- package/dist/esm/index-entry.js +5 -4
- package/dist/index-entry.js +27 -26
- package/dist/types/components/accordion/Accordion.d.ts +2 -0
- package/dist/types/components/accordion/Accordion.stories.d.ts +1 -0
- package/dist/types/components/accordion/AccordionItem.d.ts +2 -1
- package/dist/types/components/form/index.d.ts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ export declare namespace Accordion {
|
|
|
5
5
|
export class ELEMENT extends ELEMENT_base {
|
|
6
6
|
multiple: boolean;
|
|
7
7
|
suppressContainerFocus: boolean;
|
|
8
|
+
doubleClickToExpand: boolean;
|
|
8
9
|
accordionItemSlotElement: HTMLSlotElement;
|
|
9
10
|
get slotItem(): HTMLSlotElement;
|
|
10
11
|
filterSlotted(): HTMLElement[];
|
|
@@ -18,6 +19,7 @@ export declare namespace Accordion {
|
|
|
18
19
|
private removeFocusAccordionItems;
|
|
19
20
|
handleKeyDown(event: CustomEvent<AccordionItem.AccordionEvent>): void;
|
|
20
21
|
handleClick(event: CustomEvent<AccordionItem.AccordionEvent>): void;
|
|
22
|
+
private propagateDoubleClickSetting;
|
|
21
23
|
protected updated(changedProperties: PropertyValues): void;
|
|
22
24
|
connectedCallback(): void;
|
|
23
25
|
disconnectedCallback(): void;
|
|
@@ -18,6 +18,7 @@ export declare namespace AccordionItem {
|
|
|
18
18
|
private readonly uniqueId;
|
|
19
19
|
label: string;
|
|
20
20
|
disabled: boolean;
|
|
21
|
+
doubleClickToExpand: boolean;
|
|
21
22
|
get expanded(): boolean;
|
|
22
23
|
set expanded(value: boolean);
|
|
23
24
|
get level(): number;
|
|
@@ -28,7 +29,7 @@ export declare namespace AccordionItem {
|
|
|
28
29
|
private notifyAccordionFocus;
|
|
29
30
|
protected firstUpdated(changedProperties: PropertyValues): void;
|
|
30
31
|
static get styles(): import("lit").CSSResult[];
|
|
31
|
-
|
|
32
|
+
private handleClickEvent;
|
|
32
33
|
handleKeyDown(event: KeyboardEvent): void;
|
|
33
34
|
render(): import("lit-html").TemplateResult<1>;
|
|
34
35
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AbstractControl, ValidationError } from "./Form.types";
|
|
1
|
+
export { AbstractControl, Subscription, ValidationError, ValidatorFn } from "./Form.types";
|
|
2
2
|
export { FormArray } from "./FormArray";
|
|
3
3
|
export { FormControl } from "./FormControl";
|
|
4
4
|
export { FormGroup } from "./FormGroup";
|
package/dist/types/index.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ export { Favorite } from "./components/favorite/Favorite";
|
|
|
47
47
|
export { FloatingButtonActionGroup, FloatingButtonBar, FloatingButtonBarAction } from "./components/floating-button-bar/FloatingButtonBar";
|
|
48
48
|
export { FloatingMinimizedModal } from "./components/floating-modal/FloatingMinimizedModal";
|
|
49
49
|
export { FloatingModal } from "./components/floating-modal/FloatingModal";
|
|
50
|
-
export { AbstractControl, FormArray, FormControl, FormGroup, ValidationError,
|
|
50
|
+
export { AbstractControl, ArrayValidators, FormArray, FormControl, FormGroup, Subscription, ValidationError, ValidatorFn, Validators } from "./components/form";
|
|
51
51
|
export { Form } from "./components/form/Form";
|
|
52
52
|
export { Grabber } from "./components/grabber/Grabber";
|
|
53
53
|
export { HelpText } from "./components/help-text/HelpText";
|