@momentum-ui/web-components 3.0.0-beta.7 → 3.0.0-beta.8

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.
@@ -138,8 +138,8 @@ export declare namespace Dropdown {
138
138
  };
139
139
  handleInput(event: Event): void;
140
140
  private notifyInputValueChanged;
141
- helpTextTemplate(): import("lit").TemplateResult<1> | typeof nothing;
142
- messagesTemplate(): import("lit").TemplateResult<1> | typeof nothing;
141
+ helpTextTemplate(): typeof nothing | import("lit").TemplateResult<1>;
142
+ messagesTemplate(): typeof nothing | import("lit").TemplateResult<1>;
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(): import("lit").TemplateResult<1> | typeof nothing;
43
+ messagesTemplate(): typeof nothing | import("lit").TemplateResult<1>;
44
44
  render(): import("lit").TemplateResult<1>;
45
45
  }
46
46
  }
@@ -108,6 +108,7 @@ export declare namespace Input {
108
108
  showDropdown: boolean;
109
109
  dropdownExpanded: boolean;
110
110
  dropdownAriaLabel: string;
111
+ displayCharacterCount: boolean;
111
112
  input: HTMLInputElement;
112
113
  private isEditing;
113
114
  private readonly inputSectionRightSlot;
@@ -160,14 +161,15 @@ export declare namespace Input {
160
161
  get ariaExpandedValue(): "true" | "false" | undefined;
161
162
  get hasRightIcon(): boolean;
162
163
  inputTemplate(): import("lit").TemplateResult<1>;
163
- inputLeftTemplate(): import("lit").TemplateResult<1> | typeof nothing;
164
+ inputLeftTemplate(): typeof nothing | import("lit").TemplateResult<1>;
164
165
  private get inputRightTemplateClassMap();
165
166
  inputRightTemplate(): import("lit").TemplateResult<1> | undefined;
166
167
  private get comboBoxButtonTemplate();
167
- secondaryLabelTemplate(): import("lit").TemplateResult<1> | typeof nothing;
168
- helpTextTemplate(): import("lit").TemplateResult<1> | typeof nothing;
169
- messagesTemplate(): import("lit").TemplateResult<1> | typeof nothing;
170
- labelTemplate(): import("lit").TemplateResult<1> | typeof nothing;
168
+ private characterCountLabelTemplate;
169
+ secondaryLabelTemplate(): typeof nothing | import("lit").TemplateResult<1>;
170
+ helpTextTemplate(): typeof nothing | import("lit").TemplateResult<1>;
171
+ messagesTemplate(): typeof nothing | import("lit").TemplateResult<1>;
172
+ labelTemplate(): typeof nothing | import("lit").TemplateResult<1>;
171
173
  static get styles(): import("lit").CSSResult[];
172
174
  render(): import("lit").TemplateResult<1>;
173
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) => TemplateResult<1> | typeof nothing;
8
+ export declare const renderChatCount: (quantity: number, isRestyle: boolean, element: HTMLElement) => typeof nothing | TemplateResult<1>;
@@ -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").TemplateResult<1> | typeof nothing;
6
+ renderColorTable(): typeof nothing | import("lit").TemplateResult<1>;
7
7
  static get styles(): import("lit").CSSResult[];
8
8
  render(): import("lit").TemplateResult<1>;
9
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momentum-ui/web-components",
3
- "version": "3.0.0-beta.7",
3
+ "version": "3.0.0-beta.8",
4
4
  "author": "Yana Harris",
5
5
  "license": "MIT",
6
6
  "repository": "https://github.com/momentum-design/momentum-ui.git",