@momentum-ui/web-components 2.14.1 → 2.14.2
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/table/Table.d.ts +2 -10
- package/dist/types/internal-components/color-table/ColorTable.d.ts +1 -5
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -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[];
|