@momentum-ui/web-components 2.16.9 → 2.16.11
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/chunks/md-6.js +5 -5
- package/dist/chunks/md-8.js +4 -4
- package/dist/chunks/md-87.js +2 -2
- package/dist/chunks/md-89.js +1 -1
- package/dist/types/components/button/Button.d.ts +5 -0
- package/dist/types/components/combobox/ComboBox.d.ts +1 -1
- package/dist/types/components/icon/Icon.d.ts +1 -1
- package/dist/types/components/tabs/Tabs.d.ts +1 -0
- package/dist/types/components/theme/Theme.d.ts +1 -1
- package/dist/types/components/timepicker/TimePicker.d.ts +1 -1
- package/package.json +1 -1
|
@@ -104,7 +104,12 @@ export declare namespace Button {
|
|
|
104
104
|
iconTemplate: () => import("lit-element").TemplateResult;
|
|
105
105
|
textTemplate: () => {};
|
|
106
106
|
childrenTemplate(): import("lit-element").TemplateResult;
|
|
107
|
+
get computedAriaExpand(): "true" | "false" | undefined;
|
|
107
108
|
buttonTemplate(tag: Button.Tag): {};
|
|
109
|
+
get buttonContainerClassMap(): {
|
|
110
|
+
"md-button__container": boolean;
|
|
111
|
+
"md-button__container--small": boolean;
|
|
112
|
+
};
|
|
108
113
|
render(): import("lit-element").TemplateResult;
|
|
109
114
|
}
|
|
110
115
|
}
|
|
@@ -204,7 +204,7 @@ export declare namespace ComboBox {
|
|
|
204
204
|
checkForVirtualScroll(): boolean;
|
|
205
205
|
rangeChanged(): void;
|
|
206
206
|
getCustomErrorContent(): DocumentFragment;
|
|
207
|
-
getCustomContent(option: string | OptionMember):
|
|
207
|
+
getCustomContent(option: string | OptionMember): TemplateResult | DocumentFragment;
|
|
208
208
|
renderGroupLabelHeader(option: OptionMember, optionIndex: number): TemplateResult;
|
|
209
209
|
renderWithoutVirtualScroll(): import("lit-html").DirectiveFn;
|
|
210
210
|
highlightingSearchedText(option: OptionMember | string): TemplateResult[];
|
|
@@ -147,7 +147,7 @@ export declare namespace Icon {
|
|
|
147
147
|
* ```
|
|
148
148
|
*/
|
|
149
149
|
iconSet: IconSet;
|
|
150
|
-
private static designLookup;
|
|
150
|
+
private static readonly designLookup;
|
|
151
151
|
private svgIcon;
|
|
152
152
|
isPath(importedIcon: string): boolean;
|
|
153
153
|
decodeIfBase64EncodedSvg(data: string): string;
|
|
@@ -49,7 +49,7 @@ export declare namespace Theme {
|
|
|
49
49
|
virtualReference: HTMLDivElement;
|
|
50
50
|
private placement;
|
|
51
51
|
private popperInstance;
|
|
52
|
-
private eventListeners;
|
|
52
|
+
private readonly eventListeners;
|
|
53
53
|
private currentPopperClone;
|
|
54
54
|
private setTheme;
|
|
55
55
|
getStyleElement(): HTMLStyleElement;
|
|
@@ -37,7 +37,7 @@ export declare namespace TimePicker {
|
|
|
37
37
|
handleTimeBlur(event: CustomEvent, unit: TimePicker.TimeUnit): void;
|
|
38
38
|
static get styles(): import("lit-element").CSSResult[];
|
|
39
39
|
formatTimeUnit: (unit: TimePicker.TimeUnit) => void;
|
|
40
|
-
messageType: (isValid: boolean) => "
|
|
40
|
+
messageType: (isValid: boolean) => "" | "error";
|
|
41
41
|
generateTimeBox: (unit: TimePicker.TimeUnit) => import("lit-element").TemplateResult;
|
|
42
42
|
generateAmPmComboBox: () => import("lit-element").TemplateResult;
|
|
43
43
|
render(): import("lit-element").TemplateResult;
|