@momentum-ui/web-components 3.0.0-beta.8 → 3.0.0-beta.9
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/6408.js +1 -1
- package/dist/comp/md-input-entry.js +1 -1
- package/dist/index-entry.js +48 -48
- package/dist/types/components/avatar/Avatar.d.ts +3 -3
- package/dist/types/components/badge/Badge.d.ts +1 -1
- package/dist/types/components/button/Button.d.ts +2 -2
- package/dist/types/components/chip/Chip.d.ts +3 -3
- package/dist/types/components/combobox/ComboBox.d.ts +3 -3
- package/dist/types/components/dropdown/Dropdown.d.ts +2 -2
- package/dist/types/components/editable-textfield/EditableTextfield.d.ts +1 -1
- package/dist/types/components/input/Input.d.ts +5 -5
- package/dist/types/components/taskitem/TaskItem.utils.d.ts +1 -1
- package/dist/types/internal-components/color-table/ColorTable.d.ts +1 -1
- package/package.json +1 -1
|
@@ -75,7 +75,7 @@ export declare namespace Avatar {
|
|
|
75
75
|
private get chatIconSize();
|
|
76
76
|
private get presenceSize();
|
|
77
77
|
private get iconSize();
|
|
78
|
-
get renderIsTyping():
|
|
78
|
+
get renderIsTyping(): import("lit").TemplateResult<1> | typeof nothing;
|
|
79
79
|
private get avatarLetter();
|
|
80
80
|
private get avatarIcon();
|
|
81
81
|
private get avatarImage();
|
|
@@ -85,8 +85,8 @@ export declare namespace Avatar {
|
|
|
85
85
|
handleKeyDown(event: KeyboardEvent): void;
|
|
86
86
|
handleClick(event: MouseEvent): void;
|
|
87
87
|
private getBrandOrDesignIconSet;
|
|
88
|
-
get avatarContent():
|
|
89
|
-
renderPresence():
|
|
88
|
+
get avatarContent(): import("lit").TemplateResult<1> | typeof nothing;
|
|
89
|
+
renderPresence(): import("lit").TemplateResult<1> | typeof nothing;
|
|
90
90
|
private renderAvatarContent;
|
|
91
91
|
render(): import("lit").TemplateResult<1>;
|
|
92
92
|
}
|
|
@@ -31,7 +31,7 @@ export declare namespace Badge {
|
|
|
31
31
|
renderTextColor: () => string | typeof nothing;
|
|
32
32
|
renderHeight: () => string | typeof nothing;
|
|
33
33
|
renderWidth: () => string | typeof nothing;
|
|
34
|
-
getStyles: () =>
|
|
34
|
+
getStyles: () => import("lit").TemplateResult<1> | typeof nothing;
|
|
35
35
|
static get styles(): import("lit").CSSResult[];
|
|
36
36
|
private get computedAriaHiddenSplits();
|
|
37
37
|
private get computedTabIndex();
|
|
@@ -129,10 +129,10 @@ export declare namespace Button {
|
|
|
129
129
|
get slottedText(): string | null | undefined;
|
|
130
130
|
get hasIcon(): boolean;
|
|
131
131
|
iconTemplate: () => import("lit").TemplateResult<1>;
|
|
132
|
-
textTemplate: () =>
|
|
132
|
+
textTemplate: () => import("lit").TemplateResult<1> | typeof nothing;
|
|
133
133
|
childrenTemplate(): import("lit").TemplateResult<1>;
|
|
134
134
|
get computedAriaExpand(): "true" | "false" | undefined;
|
|
135
|
-
buttonTemplate(tag: Button.Tag):
|
|
135
|
+
buttonTemplate(tag: Button.Tag): import("lit").TemplateResult<1> | typeof nothing;
|
|
136
136
|
get buttonContainerClassMap(): {
|
|
137
137
|
"md-button__container": boolean;
|
|
138
138
|
"md-button__container--small": boolean;
|
|
@@ -54,10 +54,10 @@ export declare namespace Chip {
|
|
|
54
54
|
protected renderBgColor: () => string | typeof nothing;
|
|
55
55
|
protected renderTextColor: () => string | typeof nothing;
|
|
56
56
|
protected renderHeight: () => string | typeof nothing;
|
|
57
|
-
protected getStyles: () =>
|
|
57
|
+
protected getStyles: () => import("lit").TemplateResult<1> | typeof nothing;
|
|
58
58
|
static get styles(): import("lit").CSSResult[];
|
|
59
|
-
protected loadingTemplate():
|
|
60
|
-
protected iconTemplate():
|
|
59
|
+
protected loadingTemplate(): import("lit").TemplateResult<1> | typeof nothing;
|
|
60
|
+
protected iconTemplate(): import("lit").TemplateResult<1> | typeof nothing;
|
|
61
61
|
getToolTipContent(): string;
|
|
62
62
|
private get textContentClassMap();
|
|
63
63
|
private get textContentTemplate();
|
|
@@ -199,7 +199,7 @@ export declare namespace ComboBox {
|
|
|
199
199
|
arrowButtonTemplate(): TemplateResult<1>;
|
|
200
200
|
groupArrowButtonTemplate(data: string): TemplateResult<1>;
|
|
201
201
|
getSelectAllOption(): TemplateResult<1>;
|
|
202
|
-
getSelctedCount(): typeof nothing
|
|
202
|
+
getSelctedCount(): TemplateResult<1> | typeof nothing;
|
|
203
203
|
checkForVirtualScroll(): boolean;
|
|
204
204
|
rangeChanged(): void;
|
|
205
205
|
getCustomErrorContent(): DocumentFragment;
|
|
@@ -210,8 +210,8 @@ export declare namespace ComboBox {
|
|
|
210
210
|
addStyle(): import("lit-html/development/directive").DirectiveResult<typeof import("lit/directives/style-map.js").StyleMapDirective>;
|
|
211
211
|
renderItem(option: OptionMember | string, index: number): TemplateResult;
|
|
212
212
|
inputTitle(): string;
|
|
213
|
-
helpTextTemplate(): typeof nothing
|
|
214
|
-
messagesTemplate(): typeof nothing
|
|
213
|
+
helpTextTemplate(): TemplateResult<1> | typeof nothing;
|
|
214
|
+
messagesTemplate(): TemplateResult<1> | typeof nothing;
|
|
215
215
|
get newArrowButtonTemplate(): TemplateResult<1>;
|
|
216
216
|
get renderNewMomentumArrow(): TemplateResult;
|
|
217
217
|
get renderTrailingInputControls(): TemplateResult;
|
|
@@ -138,8 +138,8 @@ export declare namespace Dropdown {
|
|
|
138
138
|
};
|
|
139
139
|
handleInput(event: Event): void;
|
|
140
140
|
private notifyInputValueChanged;
|
|
141
|
-
helpTextTemplate():
|
|
142
|
-
messagesTemplate():
|
|
141
|
+
helpTextTemplate(): import("lit").TemplateResult<1> | typeof nothing;
|
|
142
|
+
messagesTemplate(): import("lit").TemplateResult<1> | typeof nothing;
|
|
143
143
|
iconTemplate(): import("lit").TemplateResult<1>;
|
|
144
144
|
clearButtonTemplate(): import("lit").TemplateResult<1>;
|
|
145
145
|
arrowButtonTemplate(): import("lit").TemplateResult<1>;
|
|
@@ -40,7 +40,7 @@ export declare namespace EditableTextfield {
|
|
|
40
40
|
showAlert(): void;
|
|
41
41
|
static get styles(): CSSResultArray;
|
|
42
42
|
get overflowStyles(): string | false | 0;
|
|
43
|
-
messagesTemplate():
|
|
43
|
+
messagesTemplate(): import("lit").TemplateResult<1> | typeof nothing;
|
|
44
44
|
render(): import("lit").TemplateResult<1>;
|
|
45
45
|
}
|
|
46
46
|
}
|
|
@@ -161,15 +161,15 @@ export declare namespace Input {
|
|
|
161
161
|
get ariaExpandedValue(): "true" | "false" | undefined;
|
|
162
162
|
get hasRightIcon(): boolean;
|
|
163
163
|
inputTemplate(): import("lit").TemplateResult<1>;
|
|
164
|
-
inputLeftTemplate():
|
|
164
|
+
inputLeftTemplate(): import("lit").TemplateResult<1> | typeof nothing;
|
|
165
165
|
private get inputRightTemplateClassMap();
|
|
166
166
|
inputRightTemplate(): import("lit").TemplateResult<1> | undefined;
|
|
167
167
|
private get comboBoxButtonTemplate();
|
|
168
168
|
private characterCountLabelTemplate;
|
|
169
|
-
secondaryLabelTemplate():
|
|
170
|
-
helpTextTemplate():
|
|
171
|
-
messagesTemplate():
|
|
172
|
-
labelTemplate():
|
|
169
|
+
secondaryLabelTemplate(): import("lit").TemplateResult<1> | typeof nothing;
|
|
170
|
+
helpTextTemplate(): import("lit").TemplateResult<1> | typeof nothing;
|
|
171
|
+
messagesTemplate(): import("lit").TemplateResult<1> | typeof nothing;
|
|
172
|
+
labelTemplate(): import("lit").TemplateResult<1> | typeof nothing;
|
|
173
173
|
static get styles(): import("lit").CSSResult[];
|
|
174
174
|
render(): import("lit").TemplateResult<1>;
|
|
175
175
|
}
|
|
@@ -5,4 +5,4 @@ export declare const getChannelAvatar: (selected: boolean, status: string | null
|
|
|
5
5
|
export declare const renderTaskType: (mediaType: string, selected: boolean, status: string | null, iconSrc: string) => TemplateResult<1>;
|
|
6
6
|
export declare const renderStatus: (status: string) => TemplateResult<1>;
|
|
7
7
|
export declare const renderLegacyTaskType: (mediaType: string, selected: boolean, iconSrc: string) => TemplateResult<1>;
|
|
8
|
-
export declare const renderChatCount: (quantity: number, isRestyle: boolean, element: HTMLElement) => typeof nothing
|
|
8
|
+
export declare const renderChatCount: (quantity: number, isRestyle: boolean, element: HTMLElement) => TemplateResult<1> | typeof nothing;
|
|
@@ -3,7 +3,7 @@ import { LitElement, nothing, PropertyValues } from "lit";
|
|
|
3
3
|
export declare class ColorTableSandbox extends LitElement {
|
|
4
4
|
private colorTokenTableData;
|
|
5
5
|
firstUpdated(changedProperties: PropertyValues): void;
|
|
6
|
-
renderColorTable():
|
|
6
|
+
renderColorTable(): import("lit").TemplateResult<1> | typeof nothing;
|
|
7
7
|
static get styles(): import("lit").CSSResult[];
|
|
8
8
|
render(): import("lit").TemplateResult<1>;
|
|
9
9
|
}
|