@momentum-ui/web-components 2.14.4 → 2.14.6
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-14.js +1 -1
- package/dist/chunks/md-29.js +22 -22
- package/dist/chunks/md-31.js +1 -1
- package/dist/chunks/md-38.js +1 -1
- package/dist/chunks/md-44.js +1 -1
- package/dist/chunks/md-49.js +1 -1
- package/dist/chunks/md-66.js +1 -1
- package/dist/chunks/md-7.js +1 -1
- package/dist/chunks/md-81.js +21 -19
- package/dist/chunks/md-82.js +13 -3
- package/dist/chunks/md-85.js +1 -1
- package/dist/types/components/table/Table.d.ts +3 -1
- package/dist/types/components/table-advanced/TableAdvanced.d.ts +2 -1
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
*
|
|
7
7
|
*/
|
|
8
8
|
import { LitElement, PropertyValues } from "lit-element";
|
|
9
|
+
import { nothing, TemplateResult } from "lit-html";
|
|
9
10
|
import Papa from "papaparse";
|
|
10
11
|
export declare const formatType: readonly ["number", "default"];
|
|
11
12
|
type Warn = {
|
|
@@ -43,7 +44,8 @@ export declare namespace Table {
|
|
|
43
44
|
"md-table--stripped": boolean;
|
|
44
45
|
"md-table--sorting": boolean;
|
|
45
46
|
};
|
|
46
|
-
|
|
47
|
+
getSortTemplate(key: any): TemplateResult | typeof nothing;
|
|
48
|
+
render(): TemplateResult;
|
|
47
49
|
}
|
|
48
50
|
}
|
|
49
51
|
declare global {
|
|
@@ -9,7 +9,7 @@ import "@/components/button/Button";
|
|
|
9
9
|
import "@/components/icon/Icon";
|
|
10
10
|
import "@/components/menu-overlay/MenuOverlay";
|
|
11
11
|
import { LitElement, PropertyValues } from "lit-element";
|
|
12
|
-
import { TemplateResult } from "lit-html";
|
|
12
|
+
import { nothing, TemplateResult } from "lit-html";
|
|
13
13
|
import { Evt, TemplateCallback, TemplateInfo } from "./src/decorators";
|
|
14
14
|
import { Filter } from "./src/filter";
|
|
15
15
|
export declare namespace TableAdvanced {
|
|
@@ -65,6 +65,7 @@ export declare namespace TableAdvanced {
|
|
|
65
65
|
private onResize;
|
|
66
66
|
render(): TemplateResult;
|
|
67
67
|
private renderHead;
|
|
68
|
+
sortIconTemplate(sortOrder: SortOrder): TemplateResult | typeof nothing;
|
|
68
69
|
private renderCol;
|
|
69
70
|
private renderColDrag;
|
|
70
71
|
private renderColResize;
|