@momentum-ui/web-components 3.2.15 → 3.2.17

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.
@@ -52,10 +52,10 @@ export declare namespace Chip {
52
52
  protected renderBgColor: () => string | typeof nothing;
53
53
  protected renderTextColor: () => string | typeof nothing;
54
54
  protected renderHeight: () => string | typeof nothing;
55
- protected getStyles: () => import("lit-html").TemplateResult<1> | typeof nothing;
55
+ protected getStyles: () => typeof nothing | import("lit-html").TemplateResult<1>;
56
56
  static get styles(): import("lit").CSSResult[];
57
- protected loadingTemplate(): import("lit-html").TemplateResult<1> | typeof nothing;
58
- protected iconTemplate(): import("lit-html").TemplateResult<1> | typeof nothing;
57
+ protected loadingTemplate(): typeof nothing | import("lit-html").TemplateResult<1>;
58
+ protected iconTemplate(): typeof nothing | import("lit-html").TemplateResult<1>;
59
59
  getToolTipContent(): string;
60
60
  private get textContentClassMap();
61
61
  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(): TemplateResult<1> | typeof nothing;
202
+ getSelctedCount(): typeof nothing | TemplateResult<1>;
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/directive.js").DirectiveResult<typeof import("lit-html/directives/style-map.js").StyleMapDirective>;
211
211
  renderItem(option: OptionMember | string, index: number): TemplateResult;
212
212
  inputTitle(): string;
213
- helpTextTemplate(): TemplateResult<1> | typeof nothing;
214
- messagesTemplate(): TemplateResult<1> | typeof nothing;
213
+ helpTextTemplate(): typeof nothing | TemplateResult<1>;
214
+ messagesTemplate(): typeof nothing | TemplateResult<1>;
215
215
  get newArrowButtonTemplate(): TemplateResult<1>;
216
216
  get renderNewMomentumArrow(): TemplateResult;
217
217
  get renderTrailingInputControls(): TemplateResult;
@@ -139,8 +139,8 @@ export declare namespace Dropdown {
139
139
  };
140
140
  handleInput(event: Event): void;
141
141
  private notifyInputValueChanged;
142
- helpTextTemplate(): import("lit-html").TemplateResult<1> | typeof nothing;
143
- messagesTemplate(): import("lit-html").TemplateResult<1> | typeof nothing;
142
+ helpTextTemplate(): typeof nothing | import("lit-html").TemplateResult<1>;
143
+ messagesTemplate(): typeof nothing | import("lit-html").TemplateResult<1>;
144
144
  iconTemplate(): import("lit-html").TemplateResult<1>;
145
145
  clearButtonTemplate(): import("lit-html").TemplateResult<1>;
146
146
  arrowButtonTemplate(): import("lit-html").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(): import("lit-html").TemplateResult<1> | typeof nothing;
43
+ messagesTemplate(): typeof nothing | import("lit-html").TemplateResult<1>;
44
44
  render(): import("lit-html").TemplateResult<1>;
45
45
  }
46
46
  }
@@ -166,15 +166,15 @@ export declare namespace Input {
166
166
  get hasRightIcon(): boolean;
167
167
  private get effectiveAriaLabel();
168
168
  inputTemplate(): import("lit-html").TemplateResult<1>;
169
- inputLeftTemplate(): import("lit-html").TemplateResult<1> | typeof nothing;
169
+ inputLeftTemplate(): typeof nothing | import("lit-html").TemplateResult<1>;
170
170
  private get inputRightTemplateClassMap();
171
171
  inputRightTemplate(): import("lit-html").TemplateResult<1> | undefined;
172
172
  private get comboBoxButtonTemplate();
173
173
  private characterCountLabelTemplate;
174
- secondaryLabelTemplate(): import("lit-html").TemplateResult<1> | typeof nothing;
175
- helpTextTemplate(): import("lit-html").TemplateResult<1> | typeof nothing;
176
- messagesTemplate(): import("lit-html").TemplateResult<1> | typeof nothing;
177
- labelTemplate(): import("lit-html").TemplateResult<1> | typeof nothing;
174
+ secondaryLabelTemplate(): typeof nothing | import("lit-html").TemplateResult<1>;
175
+ helpTextTemplate(): typeof nothing | import("lit-html").TemplateResult<1>;
176
+ messagesTemplate(): typeof nothing | import("lit-html").TemplateResult<1>;
177
+ labelTemplate(): typeof nothing | import("lit-html").TemplateResult<1>;
178
178
  static get styles(): import("lit").CSSResult[];
179
179
  render(): import("lit-html").TemplateResult<1>;
180
180
  }
@@ -23,7 +23,7 @@ export declare namespace Radio {
23
23
  private get inputAriaLabel();
24
24
  static get styles(): import("lit").CSSResult[];
25
25
  private get helpTextClassMap();
26
- messagesTemplate(): import("lit-html").TemplateResult<1> | typeof nothing;
26
+ messagesTemplate(): typeof nothing | import("lit-html").TemplateResult<1>;
27
27
  render(): import("lit-html").TemplateResult<1>;
28
28
  }
29
29
  export {};
@@ -43,6 +43,7 @@ export declare namespace TableAdvanced {
43
43
  tableRaws?: HTMLTableRowElement[];
44
44
  disconnectedCallback(): void;
45
45
  connectedCallback(): void;
46
+ protected willUpdate(changedProperties: PropertyValues): void;
46
47
  protected update(changedProperties: PropertyValues): void;
47
48
  private updateTableData;
48
49
  private updateTableConfig;
@@ -6,5 +6,5 @@ export declare const getChannelAvatar: (selected: boolean, status: string | null
6
6
  export declare const renderTaskType: (mediaType: string, selected: boolean, status: string | null, iconSrc: string) => TemplateResult<1>;
7
7
  export declare const renderStatus: (status: string) => TemplateResult<1>;
8
8
  export declare const renderLegacyTaskType: (mediaType: string, selected: boolean, iconSrc: string) => TemplateResult<1>;
9
- export declare const renderChatCount: (quantity: number, isRestyle: boolean, element: HTMLElement) => TemplateResult<1> | typeof nothing;
9
+ export declare const renderChatCount: (quantity: number, isRestyle: boolean, element: HTMLElement) => typeof nothing | TemplateResult<1>;
10
10
  export {};
@@ -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(): import("lit-html").TemplateResult<1> | typeof nothing;
6
+ renderColorTable(): typeof nothing | import("lit-html").TemplateResult<1>;
7
7
  static get styles(): import("lit").CSSResult[];
8
8
  render(): import("lit-html").TemplateResult<1>;
9
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momentum-ui/web-components",
3
- "version": "3.2.15",
3
+ "version": "3.2.17",
4
4
  "author": "Yana Harris",
5
5
  "license": "MIT",
6
6
  "repository": "https://github.com/momentum-design/momentum-ui.git",