@momentum-ui/web-components 2.14.5 → 2.14.7
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/assets/styles/fonts.css +10 -10
- package/dist/chunks/md-1.js +1 -1
- package/dist/chunks/md-14.js +1 -1
- package/dist/chunks/md-22.js +1 -1
- package/dist/chunks/md-27.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-50.js +1 -1
- package/dist/chunks/md-59.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/combobox/ComboBox.d.ts +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 +3 -3
|
@@ -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):
|
|
191
|
+
getCustomContent(option: string | OptionMember): import("lit-element").TemplateResult | DocumentFragment;
|
|
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 { 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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@momentum-ui/web-components",
|
|
3
|
-
"version": "2.14.
|
|
3
|
+
"version": "2.14.7",
|
|
4
4
|
"author": "Yana Harris",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "https://github.com/momentum-design/momentum-ui.git",
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"@interactjs/interact": "1.10.3",
|
|
14
14
|
"@interactjs/modifiers": "1.10.3",
|
|
15
15
|
"@interactjs/utils": "1.10.3",
|
|
16
|
-
"@momentum-design/icons": "0.0.
|
|
17
|
-
"@momentum-design/tokens": "0.0.
|
|
16
|
+
"@momentum-design/icons": "0.0.166",
|
|
17
|
+
"@momentum-design/tokens": "0.0.95",
|
|
18
18
|
"@popperjs/core": "^2.4.4",
|
|
19
19
|
"country-codes-list": "1.6.8",
|
|
20
20
|
"country-flags-svg": "1.1.4",
|