@momentum-ui/web-components 2.14.1 → 2.14.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/chunks/md-31.js +1 -1
- package/dist/chunks/md-71.js +1 -1
- package/dist/chunks/md-73.js +3 -3
- package/dist/chunks/md-82.js +1 -1
- package/dist/chunks/md-83.js +9 -9
- package/dist/chunks/md-85.js +1 -1
- package/dist/types/components/combobox/ComboBox.d.ts +1 -1
- package/dist/types/components/table/Table.d.ts +2 -10
- package/dist/types/components/timepicker/TimePicker.d.ts +1 -1
- package/dist/types/internal-components/color-table/ColorTable.d.ts +1 -5
- package/package.json +1 -1
|
@@ -188,7 +188,7 @@ export declare namespace ComboBox {
|
|
|
188
188
|
checkForVirtualScroll(): boolean;
|
|
189
189
|
rangeChanged(): void;
|
|
190
190
|
getCustomErrorContent(): DocumentFragment;
|
|
191
|
-
getCustomContent(option: string | OptionMember): import("lit-element").TemplateResult
|
|
191
|
+
getCustomContent(option: string | OptionMember): DocumentFragment | import("lit-element").TemplateResult;
|
|
192
192
|
renderGroupLabelHeader(option: OptionMember, optionIndex: number): import("lit-element").TemplateResult;
|
|
193
193
|
renderWithoutVirtualScroll(): import("lit-html").DirectiveFn;
|
|
194
194
|
highlightingSearchedText(option: OptionMember | string): import("lit-element").TemplateResult[];
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
*
|
|
7
7
|
*/
|
|
8
8
|
import { LitElement, PropertyValues } from "lit-element";
|
|
9
|
+
import Papa from "papaparse";
|
|
9
10
|
export declare const formatType: readonly ["number", "default"];
|
|
10
11
|
type Warn = {
|
|
11
12
|
[key: number]: any;
|
|
@@ -29,16 +30,7 @@ export declare namespace Table {
|
|
|
29
30
|
rowTable?: HTMLTableRowElement[];
|
|
30
31
|
headerRow: any;
|
|
31
32
|
results: any;
|
|
32
|
-
config:
|
|
33
|
-
quoteChar: string;
|
|
34
|
-
escapeChar: string;
|
|
35
|
-
header: boolean;
|
|
36
|
-
preview: number;
|
|
37
|
-
comments: boolean;
|
|
38
|
-
step: undefined;
|
|
39
|
-
complete: undefined;
|
|
40
|
-
download: boolean;
|
|
41
|
-
};
|
|
33
|
+
config: Papa.ParseConfig;
|
|
42
34
|
connectedCallback(): void;
|
|
43
35
|
get rowItem(): HTMLTableRowElement[] | undefined;
|
|
44
36
|
linkCellItems(): void;
|
|
@@ -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;
|
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
import "@/components/table-advanced/TableAdvanced";
|
|
2
2
|
import { LitElement, PropertyValues } from "lit-element";
|
|
3
|
-
import { TableAdvanced } from "@/components/table-advanced/TableAdvanced";
|
|
4
3
|
export declare class ColorTableSandbox extends LitElement {
|
|
5
|
-
colorTokenTableData
|
|
6
|
-
config: TableAdvanced.Config;
|
|
7
|
-
data: TableAdvanced.Data;
|
|
8
|
-
} | undefined;
|
|
4
|
+
private colorTokenTableData;
|
|
9
5
|
firstUpdated(changedProperties: PropertyValues): void;
|
|
10
6
|
renderColorTable(): {};
|
|
11
7
|
static get styles(): import("lit-element").CSSResult[];
|