@umbraco-ui/uui-table 1.16.0 → 1.17.0-rc.0
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/lib/index.js
CHANGED
|
@@ -34,9 +34,9 @@ export declare class UUITableWithSelectionExampleElement extends LitElement {
|
|
|
34
34
|
private _sortingHandler;
|
|
35
35
|
private _isSelected;
|
|
36
36
|
connectedCallback(): void;
|
|
37
|
-
renderHeaderCellTemplate(column: TableColumn): import("lit
|
|
38
|
-
protected renderRowTemplate: (item: TableItem) => import("lit
|
|
39
|
-
render(): import("lit
|
|
37
|
+
renderHeaderCellTemplate(column: TableColumn): import("lit").TemplateResult<1>;
|
|
38
|
+
protected renderRowTemplate: (item: TableItem) => import("lit").TemplateResult<1>;
|
|
39
|
+
render(): import("lit").TemplateResult<1>;
|
|
40
40
|
static styles: import("lit").CSSResult[];
|
|
41
41
|
}
|
|
42
42
|
export {};
|
|
@@ -32,7 +32,7 @@ export declare class UUITableCellElement extends LitElement {
|
|
|
32
32
|
connectedCallback(): void;
|
|
33
33
|
disconnectedCallback(): void;
|
|
34
34
|
updated(changedProperties: Map<string | number | symbol, unknown>): void;
|
|
35
|
-
render(): import("lit
|
|
35
|
+
render(): import("lit").TemplateResult<1>;
|
|
36
36
|
static styles: import("lit").CSSResult[];
|
|
37
37
|
}
|
|
38
38
|
declare global {
|
|
@@ -6,7 +6,7 @@ import { LitElement } from 'lit';
|
|
|
6
6
|
*/
|
|
7
7
|
export declare class UUITableHeadElement extends LitElement {
|
|
8
8
|
connectedCallback(): void;
|
|
9
|
-
render(): import("lit
|
|
9
|
+
render(): import("lit").TemplateResult<1>;
|
|
10
10
|
static styles: import("lit").CSSResult[];
|
|
11
11
|
}
|
|
12
12
|
declare global {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
-
declare const UUITableRowElement_base: (new (...args: any[]) => import("
|
|
2
|
+
declare const UUITableRowElement_base: (new (...args: any[]) => import("packages/uui-base/lib").SelectOnlyMixinInterface) & (new (...args: any[]) => import("packages/uui-base/lib").SelectableMixinInterface) & typeof LitElement;
|
|
3
3
|
/**
|
|
4
4
|
* Table row element with option to set is as selectable. Parent for uui-table-cell. Must be a child of uui-table.
|
|
5
5
|
* @element uui-table-row
|
|
@@ -12,7 +12,7 @@ export declare class UUITableRowElement extends UUITableRowElement_base {
|
|
|
12
12
|
private slotCellNodes?;
|
|
13
13
|
protected updated(changedProperties: Map<string | number | symbol, unknown>): void;
|
|
14
14
|
private updateChildSelectOnly;
|
|
15
|
-
render(): import("lit
|
|
15
|
+
render(): import("lit").TemplateResult<1>;
|
|
16
16
|
static styles: import("lit").CSSResult[];
|
|
17
17
|
}
|
|
18
18
|
declare global {
|
|
@@ -6,7 +6,7 @@ import { LitElement } from 'lit';
|
|
|
6
6
|
*/
|
|
7
7
|
export declare class UUITableElement extends LitElement {
|
|
8
8
|
connectedCallback(): void;
|
|
9
|
-
render(): import("lit
|
|
9
|
+
render(): import("lit").TemplateResult<1>;
|
|
10
10
|
static styles: import("lit").CSSResult[];
|
|
11
11
|
}
|
|
12
12
|
declare global {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-table",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.0-rc.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"custom-elements.json"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@umbraco-ui/uui-base": "1.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.17.0-rc.0"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "npm run analyze && tsc --build && rollup -c rollup.config.js",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
43
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-table",
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "028e20bd07ebf02164589b086e746c9cc587409c"
|
|
45
45
|
}
|