@momentum-ui/web-components 3.0.0-alpha.2 → 3.0.0-alpha.3
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/591.js +1 -1
- package/dist/8028.js +1 -1
- package/dist/8210.js +1 -1
- package/dist/comp/md-advance-list-entry.js +5 -5
- package/dist/comp/md-avatar-entry.js +1 -1
- package/dist/comp/md-checkbox-entry.js +2 -2
- package/dist/comp/md-icon-entry.js +3 -3
- package/dist/comp/md-radiogroup-entry.js +2 -2
- package/dist/comp/md-tabs-entry.js +1 -1
- package/dist/comp/md-theme-entry.js +1 -1
- package/dist/index-entry.js +120 -120
- package/dist/types/components/advance-list/AdvanceList.d.ts +2 -2
- package/dist/types/components/avatar/Avatar.d.ts +2 -1
- package/dist/types/components/checkbox/Checkbox.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/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,7 +20,6 @@ export declare namespace AdvanceList {
|
|
|
20
20
|
disabledItems: string[];
|
|
21
21
|
totalRecords: number;
|
|
22
22
|
isNonSelectable: boolean;
|
|
23
|
-
lists?: HTMLDivElement[];
|
|
24
23
|
listContainer?: HTMLDivElement;
|
|
25
24
|
private scrollIndex;
|
|
26
25
|
activeId: string;
|
|
@@ -31,7 +30,8 @@ export declare namespace AdvanceList {
|
|
|
31
30
|
private getStyles;
|
|
32
31
|
disconnectedCallback(): void;
|
|
33
32
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
|
34
|
-
|
|
33
|
+
protected willUpdate(changedProperties: PropertyValues): void;
|
|
34
|
+
protected updated(changedProperties: PropertyValues): void;
|
|
35
35
|
setCheckboxAttributes(isSelected: boolean, wrapper: HTMLElement): void;
|
|
36
36
|
updateWrapperAttributes(wrapper: HTMLElement, isSelected: boolean): void;
|
|
37
37
|
protected updateSelectedState(): void;
|
|
@@ -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;
|
|
@@ -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
|
}
|
|
@@ -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;
|