@momentum-ui/web-components 3.0.0-alpha.2 → 3.0.0-alpha.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.
- package/dist/1200.js +1 -1
- package/dist/1323.js +1 -1
- package/dist/2555.js +7 -7
- package/dist/6273.js +2 -2
- package/dist/6396.js +1 -5
- package/dist/6408.js +2 -2
- package/dist/8028.js +1 -1
- package/dist/8345.js +1 -1
- package/dist/comp/md-advance-list-entry.js +11 -11
- package/dist/comp/md-alert-banner-entry.js +7 -7
- package/dist/comp/md-alert-entry.js +2 -8
- package/dist/comp/md-audio-player-entry.js +8 -8
- package/dist/comp/md-avatar-entry.js +1 -1
- package/dist/comp/md-checkbox-entry.js +2 -2
- package/dist/comp/md-coachmark-popover-entry.js +4 -4
- package/dist/comp/md-country-code-picker-entry.js +1 -1
- package/dist/comp/md-datepicker-entry.js +2 -2
- package/dist/comp/md-dropdown-entry.js +1 -1
- package/dist/comp/md-floating-minimize-entry.js +2 -2
- package/dist/comp/md-floating-modal-entry.js +2 -2
- package/dist/comp/md-grabber-entry.js +6 -6
- package/dist/comp/md-icon-entry.js +3 -3
- package/dist/comp/md-input-entry.js +2 -2
- package/dist/comp/md-label-entry.js +1 -5
- package/dist/comp/md-menu-overlay-entry.js +1 -1
- package/dist/comp/md-modal-entry.js +7 -7
- package/dist/comp/md-phone-input-entry.js +5 -5
- package/dist/comp/md-popover-entry.js +4 -4
- package/dist/comp/md-radiogroup-entry.js +2 -2
- package/dist/comp/md-tabs-entry.js +4 -4
- package/dist/comp/md-task-item-entry.js +1 -1
- package/dist/comp/md-theme-entry.js +1 -1
- package/dist/comp/md-timepicker-entry.js +4 -4
- package/dist/index-entry.js +170 -180
- package/dist/types/components/advance-list/AdvanceList.d.ts +3 -2
- package/dist/types/components/alert-banner/AlertBanner.d.ts +1 -0
- package/dist/types/components/avatar/Avatar.d.ts +2 -1
- package/dist/types/components/checkbox/Checkbox.d.ts +1 -1
- package/dist/types/components/combobox/ComboBox.d.ts +1 -1
- package/dist/types/components/form/index.d.ts +5 -6
- package/dist/types/components/grabber/Grabber.d.ts +1 -1
- package/dist/types/components/popover/Popover.d.ts +4 -0
- package/dist/types/components/popover/Popover.utils.d.ts +4 -0
- package/dist/types/components/radio/RadioGroup.d.ts +1 -1
- package/dist/types/components/tabs/Tabs.d.ts +1 -0
- package/dist/types/components/theme/Theme.d.ts +1 -0
- package/package.json +1 -1
|
@@ -20,8 +20,8 @@ export declare namespace AdvanceList {
|
|
|
20
20
|
disabledItems: string[];
|
|
21
21
|
totalRecords: number;
|
|
22
22
|
isNonSelectable: boolean;
|
|
23
|
-
lists?: HTMLDivElement[];
|
|
24
23
|
listContainer?: HTMLDivElement;
|
|
24
|
+
virtualizer?: any;
|
|
25
25
|
private scrollIndex;
|
|
26
26
|
activeId: string;
|
|
27
27
|
selectedItemsIds: string[];
|
|
@@ -31,7 +31,8 @@ export declare namespace AdvanceList {
|
|
|
31
31
|
private getStyles;
|
|
32
32
|
disconnectedCallback(): void;
|
|
33
33
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
|
34
|
-
|
|
34
|
+
protected willUpdate(changedProperties: PropertyValues): void;
|
|
35
|
+
protected updated(changedProperties: PropertyValues): void;
|
|
35
36
|
setCheckboxAttributes(isSelected: boolean, wrapper: HTMLElement): void;
|
|
36
37
|
updateWrapperAttributes(wrapper: HTMLElement, isSelected: boolean): void;
|
|
37
38
|
protected updateSelectedState(): void;
|
|
@@ -25,6 +25,7 @@ export declare namespace AlertBanner {
|
|
|
25
25
|
alignment: AlertBanner.Alignment;
|
|
26
26
|
connectedCallback(): void;
|
|
27
27
|
onHide(): void;
|
|
28
|
+
onRefreshClick(): void;
|
|
28
29
|
handleKeyDown(event: KeyboardEvent): void;
|
|
29
30
|
private get isLeadingAlignment();
|
|
30
31
|
static get styles(): CSSResultArray;
|
|
@@ -63,7 +63,8 @@ export declare namespace Avatar {
|
|
|
63
63
|
static get styles(): import("lit").CSSResult[];
|
|
64
64
|
private isPresenceType;
|
|
65
65
|
firstUpdated(): void;
|
|
66
|
-
|
|
66
|
+
protected willUpdate(changedProperties: PropertyValues): void;
|
|
67
|
+
protected updated(changedProperties: PropertyValues): void;
|
|
67
68
|
private get avatarClassMap();
|
|
68
69
|
private get avatarLetterClassMap();
|
|
69
70
|
private get avatarStyleMap();
|
|
@@ -41,7 +41,7 @@ export declare namespace Checkbox {
|
|
|
41
41
|
protected firstUpdated(changedProperties: PropertyValues): void;
|
|
42
42
|
connectedCallback(): void;
|
|
43
43
|
disconnectedCallback(): void;
|
|
44
|
-
protected
|
|
44
|
+
protected willUpdate(changedProperties: PropertyValues): void;
|
|
45
45
|
protected updated(changedProperties: PropertyValues): void;
|
|
46
46
|
private get checkboxIconName();
|
|
47
47
|
private checkboxIconTemplate;
|
|
@@ -203,7 +203,7 @@ export declare namespace ComboBox {
|
|
|
203
203
|
checkForVirtualScroll(): boolean;
|
|
204
204
|
rangeChanged(): void;
|
|
205
205
|
getCustomErrorContent(): DocumentFragment;
|
|
206
|
-
getCustomContent(option: string | OptionMember):
|
|
206
|
+
getCustomContent(option: string | OptionMember): TemplateResult<1> | DocumentFragment;
|
|
207
207
|
renderGroupLabelHeader(option: OptionMember, optionIndex: number): TemplateResult<1>;
|
|
208
208
|
renderWithoutVirtualScroll(): unknown;
|
|
209
209
|
highlightingSearchedText(option: OptionMember | string): TemplateResult<1>[];
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
6
|
-
export { ValidationError } from './Form.types';
|
|
1
|
+
export { AbstractControl, ValidationError } from "./Form.types";
|
|
2
|
+
export { FormArray } from "./FormArray";
|
|
3
|
+
export { FormControl } from "./FormControl";
|
|
4
|
+
export { FormGroup } from "./FormGroup";
|
|
5
|
+
export { Validators } from "./validators";
|
|
@@ -83,7 +83,7 @@ export declare namespace Grabber {
|
|
|
83
83
|
};
|
|
84
84
|
private get grabberContainerClassMap();
|
|
85
85
|
private get isRtl();
|
|
86
|
-
get iconName(): "
|
|
86
|
+
get iconName(): "arrow-up-bold" | "arrow-down-bold" | "list-menu-bold" | "arrow-right-bold" | "arrow-left-bold";
|
|
87
87
|
get iconSize(): "10" | "12";
|
|
88
88
|
render(): import("lit").TemplateResult<1>;
|
|
89
89
|
}
|
|
@@ -326,6 +326,10 @@ export declare class Popover extends Popover_base {
|
|
|
326
326
|
private readonly onTriggerClick;
|
|
327
327
|
private isRectOverTrigger;
|
|
328
328
|
private isMouseOverTrigger;
|
|
329
|
+
/**
|
|
330
|
+
* Override setFocusableElements to include trigger element when using appendTo.
|
|
331
|
+
*/
|
|
332
|
+
setFocusableElements(): void;
|
|
329
333
|
/**
|
|
330
334
|
* Sets the focusable elements inside the popover.
|
|
331
335
|
*/
|
|
@@ -30,6 +30,10 @@ export declare class PopoverUtils {
|
|
|
30
30
|
* @param isOpen Whether the popover is being opened (true) or closed (false)
|
|
31
31
|
*/
|
|
32
32
|
handleAppendTo(isOpen: boolean): void;
|
|
33
|
+
/**
|
|
34
|
+
* Re-attaches focus/blur event listeners for any components with FocusMixin after DOM move.
|
|
35
|
+
*/
|
|
36
|
+
private reattachFocusListeners;
|
|
33
37
|
/**
|
|
34
38
|
* Sets up the accessibility attributes for the popover.
|
|
35
39
|
*/
|
|
@@ -17,7 +17,7 @@ export declare namespace RadioGroup {
|
|
|
17
17
|
get disabled(): boolean;
|
|
18
18
|
set disabled(value: boolean);
|
|
19
19
|
protected firstUpdated(changedProperties: PropertyValues): void;
|
|
20
|
-
protected
|
|
20
|
+
protected willUpdate(changedProperties: PropertyValues): void;
|
|
21
21
|
get selectedRadioValue(): string;
|
|
22
22
|
private notifySelectedChange;
|
|
23
23
|
connectedCallback(): void;
|
|
@@ -134,6 +134,7 @@ export declare namespace Tabs {
|
|
|
134
134
|
disconnectedCallback(): void;
|
|
135
135
|
protected firstUpdated(changedProperties: PropertyValues): void;
|
|
136
136
|
private onDirectionChanged;
|
|
137
|
+
protected willUpdate(changedProperties: PropertyValues): void;
|
|
137
138
|
protected updated(changedProperties: PropertyValues): void;
|
|
138
139
|
private scrollTabs;
|
|
139
140
|
private get moreMenuButtonTemplate();
|
|
@@ -60,6 +60,7 @@ export declare namespace Theme {
|
|
|
60
60
|
private setVirtualReferencePosition;
|
|
61
61
|
private initVirtualElements;
|
|
62
62
|
private setVirtualSlotContent;
|
|
63
|
+
protected willUpdate(changedProperties: PropertyValues): void;
|
|
63
64
|
protected updated(changedProperties: PropertyValues): void;
|
|
64
65
|
handleVirtualTooltipCreate(event: CustomEvent<TooltipEvent>): void;
|
|
65
66
|
private startContinuousPositionTracking;
|